.whatsapp-btn-container {
    z-index: 1000;
    position: fixed;
    right: 30px;
    opacity: 0;
    bottom: -50px;
    padding: 24px;
    animation: fade-up 1000ms forwards;
    animation-delay: 1000ms;
}

@keyframes fade-up {
    100% {
        bottom: 24px;
        opacity: 1;
    }
}

.whatsapp-icon {
    position: relative;
    color: #ffff;
    top: -15px;
    left: 7px;
}

.whatsapp-btn {
    width: 75px;
    height: 75px;
    padding: 10px;
    background: #25d366;
    border-radius: 50%;
}

.whatsapp-btn-container .whatsapp-btn, .whatsapp-dialog-container .whatsapp-btn {
    font-size: 48px;
    display: inline-block;
    transition: all 400ms;
}

.whatsapp-btn-container .whatsapp-btn:hover, .whatsapp-dialog-container .whatsapp-btn:hover {
    transform: scale(1.2);
}

.whatsapp-dialog-container span {
    position: absolute;
    top: 0px;
    left: -370px;
    transition: all 0ms;
}

.whatsapp-dialog-container {
    z-index: 1000;
    position: fixed;
    right: 0px;
    bottom: 0px;
    padding: 24px;
    animation: fade-up 1000ms forwards;
    animation-delay: 1000ms;
}


.joinchat--chatbox .joinchat__button {
    background: var(#25d366);
    transition: background .2s linear;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 30%);
}
.joinchat__button {
    display: flex;
    flex-direction: row;
    position: absolute;
    z-index: 2;
    bottom: -100px;
    right: 15px;
    height: 60px;
    min-width: 60px;
    max-width: 95vw;
    background: #25d366;
    color: inherit;
    border-radius: calc(60px/2);
    box-shadow: 1px 6px 24px 0 rgb(7 94 84 / 24%);
    cursor: pointer;
    transition: background .2s linear;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    will-change: background-color,width;
}

.joinchat__header {
    position: relative;
    flex-shrink: 0;
    height: 70px;
    line-height: 70px;
    padding: 0 26px;
    margin: 0;
    background: #00881b;
    text-align: left;

    font: normal normal normal 16px/1.625em -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Open Sans,Helvetica Neue,sans-serif;
    font-style: normal;
    font-variant-ligatures: normal;
    font-variant-caps: normal;
    font-variant-numeric: normal;
    font-variant-east-asian: normal;
    font-weight: normal;
    font-stretch: normal;
    font-size: 16px;
    line-height: 1.625em;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    letter-spacing: 0;
}

.joinchat__message:before {
    content: "";
    display: block;
    position: absolute;
    bottom: 20px;
    left: -15px;
    width: 17px;
    height: 25px;
    background: inherit;
    clip-path: polygon(100% 0%, 100% 35%, 0% 50%, 0% 50%);
}

.joinchat__copy {
    font-size: 11px;
    line-height: 18px;
    color: #ffff !important;
    text-decoration: none!important;
    fill: currentColor;
    opacity: .8;

    position: relative;
    top: -5px;
}

.joinchat__close {
    position: absolute;
    top: 50%;
    right: 24px;
    width: 34px;
    height: 34px;
    margin-top: -16px;
    border-radius: 50%;
    background: rgba(0,0,0,.4) url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M24 2.4L21.6 0 12 9.6 2.4 0 0 2.4 9.6 12 0 21.6 2.4 24l9.6-9.6 9.6 9.6 2.4-2.4-9.6-9.6L24 2.4z'/%3E%3C/svg%3E") 50% no-repeat;
    background-size: 12px;
    cursor: pointer;
    transition: background-color .3s ease-out;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

svg.Joinchat-name {
    fill: #ffff;
}

.joinchat__message {
    position: relative;
    min-height: 60px;
    padding: 17px 20px;
    margin: 0 26px 26px;
    border-radius: 32px;
    background: #505050;
    color: #d8d8d8;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,.3));
    transform: translateZ(0);

    font: normal normal normal 16px/1.625em -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Open Sans,Helvetica Neue,sans-serif;
    font-style: normal;
    font-variant-ligatures: normal;
    font-variant-caps: normal;
    font-variant-numeric: normal;
    font-variant-east-asian: normal;
    font-weight: normal;
    font-stretch: normal;
    font-size: 16px;
    line-height: 1.625em;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    letter-spacing: 0;
}

.joinchat__box {
    display: flex;
    flex-direction: column;
    position: relative;
    bottom: -125px;
    right: 5px;
    z-index: 1;
    width: 60vw;
    max-width: 400px;
    min-height: 170px;
    max-height: 60vw;
    border-radius: 32px;
    border-top-left-radius: 32px;
    border-top-right-radius: 32px;
    border-bottom-right-radius: 32px;
    border-bottom-left-radius: 32px;
    background: transparent;
    box-shadow: 0 2px 6px 0 rgb(0 0 0 / 50%);
    text-align: left;
    overflow: hidden;
    transition: opacity .4s ease-out,transform 0ms linear .3s;
}

.joinchat__box__scroll {
    padding: 20px 0 70px;
    padding-bottom: 70px;
    background: #1a1a1a;
    overflow-x: hidden;
    overflow-y: auto;
    will-change: scroll-position;
}

.joinchat--chatbox .joinchat__tooltip {
    display: none;
}
.joinchat__tooltip {
    position: absolute;
    top: 14px;
    right: 76px;
    max-width: calc(100vw - 105px);
    height: 32px;
    padding: 0 14px;
    border: none;
    border-radius: 16px;
    background: #fff;
    color: rgba(0,0,0,.8);
    line-height: 31px;
    white-space: nowrap;
    opacity: 0;
    filter: drop-shadow(0 1px 4px rgba(0,0,0,.4));
    transform: translateZ(0);
    pointer-events: none;
}

.joinchat--chatbox .joinchat__button__sendtext {
    margin: 15px;
    color: #ffff;
    padding: 0 4px 0 24px;
    max-width: 200px;
    opacity: 1;
    transition: max-width .2s linear,opacity .4s ease-out .2s;
}

svg.Joinchat-name {
    width: 100px;
    height: 25px;
    margin-top: 20px;
}

.joinchat__button__sendtext {
    padding: 0;
    max-width: 0;
    font-weight: 600;
    line-height: var(--btn);
    white-space: nowrap;
    opacity: 0;
    overflow: hidden;
    transition: none;

    font: normal normal normal 16px/1.625em -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Open Sans,Helvetica Neue,sans-serif;
    font-style: normal;
    font-variant-ligatures: normal;
    font-variant-caps: normal;
    font-variant-numeric: normal;
    font-variant-east-asian: normal;
    font-weight: normal;
    font-stretch: normal;
    font-size: 16px;
    line-height: 1.625em;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    letter-spacing: 0;
}

.whatsapp-button-icon {
    color: #ffff;
    height: 30px;
    width: 30px;
}

.whatsapp-button-container {
    position: relative;
    top: 15px;
    left: -15px;
    width: 50px;
    font-size: 32px;
}