.crisp-launcher-btn {
    display: block;
    cursor: wait;
    border-radius: 50px 0 0;
    position: fixed;
    z-index: 500;
    right: 0;
    bottom: 0;
    background: #a7b7ca;
    padding: 25px 10px 0 18px;
    transition: opacity 0.2s, background-color 0.3s;
}
.crisp-launcher-btn.is-unavailable {
    background: #999;
}
.crisp-launcher-btn.is-active,
.crisp-launcher-btn.is-available {
    background: #28a52d;
    cursor: pointer;
}
.crisp-launcher-btn:hover {
    opacity: 0.8;
}
.crisp-launcher-btn svg {
    width: 35px;
    height: 30px;
}
.crisp-launcher-btn:not(.is-active) svg {
    /* animation: crisp-anim 3s linear infinite reverse; */
}
@keyframes crisp-anim {
    0%   { transform: rotate(-10deg); }
    25%  { transform: rotate(0deg); }
    50%  { transform: rotate(10deg); }
    75%  { transform: rotate(0deg); }
    100% { transform: rotate(-10deg); }
}

/* Unread badge */
.crisp-launcher-badge {
    position: absolute;
    top: 15px;
    left: 39px;
    min-width: 22px;
    height: 22px;
    line-height: 18px;
    padding: 0 5px;
    border-radius: 10px;
    background: #f44336;
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    text-align: center;
    font-family: Arial, sans-serif;
    border: 2px solid #28a52d;
}

/* iFrame */
.crisp-chat-iframe {
    position: fixed;
    bottom: 68px;
    right: 0;
    width: 400px;
    height: 760px;
    max-width: 100vw;
    max-height: calc(100vh - 68px);
    z-index: 10001;
    border: none;
    border-radius: 26px;
    display: none;
    background: white;
    box-shadow: 0 10px 2px 0 #00000000, 0 4px 20px 0 #00000054 !important;
}
.crisp-chat-iframe.is-active {
    display: block;
}
@media (max-width: 478px) {
    .crisp-chat-iframe {
        width: 100vw;
        z-index: 10002;
    }
}
