#zendesk-widget-custom, #zendesk-widget-custom div {
    all: unset;
}

#zendesk-widget-custom div.zd-base-icon {
    min-width: 20px;
    min-height: 20px;
    height: 20px;
    width: 20px;
    vertical-align: middle;
    padding-right: 8px;
    display: inline-block;
    pointer-events: none !important;
}

#zendesk-widget-custom div.zd-icon-loader { display: none; }
#zendesk-widget-custom div.zd-icon-loader div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #fff transparent transparent transparent;
}

#zendesk-widget-custom div.zd-icon-loader div:nth-child(1) { animation-delay: -0.45s; }
#zendesk-widget-custom div.zd-icon-loader div:nth-child(2) { animation-delay: -0.3s; }
#zendesk-widget-custom div.zd-icon-loader div:nth-child(3) { animation-delay: -0.15s; }
@keyframes lds-ring {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#zendesk-widget-custom div.zd-icon-default svg { display: block; }

#zendesk-widget-custom div.zd-button {
    background-color: #20b2bb;
    color: #ffffff;
    padding: 13px 22px;
    border-radius: 13986px;
    bottom: 0;
    font-size: 15px;
    cursor: pointer;
    display: inline-block;
}

#zendesk-widget-custom div.zd-label {
    display: inline-block;
    font-size: 15px;
    line-height: 17px;
    font-weight: 700;
    vertical-align: middle;
    pointer-events: none !important;
}

#zendesk-widget-custom {
    color: #1a1a1a;
    font-size: 14px;
    line-height: 16px;
    border: medium none;
    background: transparent none repeat scroll 0% 0%;
    z-index: 999998;
    transform: translateZ(0px);
    position: fixed;
    animation: 750ms cubic-bezier(0.645, 0.045, 0.355, 1) 0s onLoadAnimation;
    height: 50px;
    max-height: 551px;
    min-height: 50px;
    margin: 10px 20px;
    left: 0;
    bottom: 0;
    font-family: system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,Arial,sans-serif;
}

@keyframes onLoadAnimation {
    0% { opacity: 0; transform: translateY(100%); }
    100% { opacity: 1; transform: translateY(0); }
}

@media only screen and (max-width: 600px) {
    #zendesk-widget-custom div.zd-label {
        display: none;
    }

    #zendesk-widget-custom div.zd-base-icon {
        padding-right: 0;
    }
}