/* Start custom Tawk chat button styles */
a.gotop {
    display: none !important;
}

.whatsapp-float-btn {
    position: fixed;
    bottom: calc(20px + 96px + 10px);
    right: 20px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.tcg-chat-now-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    border: 0;
    padding: 0;
    background: none;
    cursor: pointer;
    z-index: 10000;
}

.tcg-chat-now-btn img {
    display: block;
}

.tcg-chat-now-btn.is-loading {
    width: 90px;
    height: 90px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.tcg-chat-now-btn.is-loading img {
    display: none;
}

.tcg-chat-loading {
    display: none;
}

.tcg-chat-now-btn.is-loading .tcg-chat-loading {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 34px;
    height: 34px;
    margin: -17px 0 0 -17px;
    animation: tcgChatLoading 2.6s linear infinite;
}

.tcg-chat-loading i {
    position: absolute;
    top: 1px;
    left: 15px;
    width: 4px;
    height: 8px;
    background: #222;
    border-radius: 3px;
    transform-origin: 2px 16px;
}

.tcg-chat-loading i:nth-child(1) {
    transform: rotate(0deg);
    opacity: 1;
}

.tcg-chat-loading i:nth-child(2) {
    transform: rotate(30deg);
    opacity: 0.9;
}

.tcg-chat-loading i:nth-child(3) {
    transform: rotate(60deg);
    opacity: 0.8;
}

.tcg-chat-loading i:nth-child(4) {
    transform: rotate(90deg);
    opacity: 0.7;
}

.tcg-chat-loading i:nth-child(5) {
    transform: rotate(120deg);
    opacity: 0.6;
}

.tcg-chat-loading i:nth-child(6) {
    transform: rotate(150deg);
    opacity: 0.5;
}

.tcg-chat-loading i:nth-child(7) {
    transform: rotate(180deg);
    opacity: 0.4;
}

.tcg-chat-loading i:nth-child(8) {
    transform: rotate(210deg);
    opacity: 0.32;
}

.tcg-chat-loading i:nth-child(9) {
    transform: rotate(240deg);
    opacity: 0.26;
}

.tcg-chat-loading i:nth-child(10) {
    transform: rotate(270deg);
    opacity: 0.2;
}

.tcg-chat-loading i:nth-child(11) {
    transform: rotate(300deg);
    opacity: 0.16;
}

.tcg-chat-loading i:nth-child(12) {
    transform: rotate(330deg);
    opacity: 0.12;
}

@keyframes tcgChatLoading {
    to {
        transform: rotate(360deg);
    }
}

@media screen and (max-width: 600px) {
    .tcg-chat-now-btn {
        right: 10px;
        bottom: 64px;
    }

    .tcg-chat-now-btn img {
        width: 20vw;
        max-width: 96px;
        height: auto;
    }

    .tcg-chat-now-btn.is-loading {
        width: 20vw;
        height: 20vw;
        max-width: 96px;
        max-height: 96px;
    }

    .whatsapp-float-btn {
        bottom: calc(44px + 20vw + 10px);
        right: 10px;
    }
    .whatsapp-float-btn img {
        width: 20vw;
        max-width: 98px;
        height: auto;
    }
}

@media screen and (max-width:512px) {
    .whatsapp-float-btn {
        bottom: calc(64px + 20vw + 10px);
    }
}
/* End custom Tawk chat button styles */