#call-tip {
    display: none;
    position: fixed;
    z-index: 9999999;
    padding: 10px 14px;
    bottom: 83px;
    right: 20px;
    gap: 8px;
    border-radius: 8px;
    background: hsl(192.55deg 96.76% 48.43%);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    color: #FFFFFF;
    font-size: 14px;
    transition: opacity 0.5s ease;
}

#call-tip.show {
    display: flex;
    animation: bounceIn 0.8s forwards;
}

@keyframes bounceIn {
    0% {
        transform: translateY(50px) scale(0.8);
        opacity: 0;
    }

    50% {
        transform: translateY(-10px) scale(1.05);
        opacity: 1;
    }

    70% {
        transform: translateY(5px) scale(0.95);
    }

    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

#call-tip-close {
    display: block;
    width: 20px;
    height: 20px;
    background: #04c1f3;
    cursor: pointer;
    font-weight: 500 !important;
    color: #333333;
    z-index: 1;
    text-align: center;
    margin: 1px 0px 0px 0px;
}

#call-tip:before {
    display: block;
    position: absolute;
    content: '';
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid #04c1f3;
    transform: rotate(90deg);
    bottom: -13px;
    right: 20px;
}

@media (max-width: 768px) {
    #call-tip {
        bottom: 80px;
        right: 83px;
        font-size: 13px
    }

    #call-tip:before {
        display: block;
        position: absolute;
        content: '';
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-left: 10px solid #04c1f3;
        transform: rotate(0deg);
        bottom: 10px;
        right: -8px;
    }

    .single-product #call-tip {
        bottom: 185px;
        right: 95px;
        font-size: 13px
    }

    .single-product #call-tip:before {
        display: block;
        position: absolute;
        content: '';
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-left: 10px solid #04c1f3;
        transform: rotate(0deg);
        bottom: 10px;
        right: -8px;
    }
}

.webphone_button {
    display: block;
    background: #ff8300;
    border: 3px solid #04c1f3 !important;
    font-size: 23px;
    color: #fff;
    padding: 0px !important;
    margin: 0px;
    width: 50px;
    height: 50px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    border-radius: 100% !important;
    z-index: 9999;
}

@media (max-width: 768px) {
    .webphone_button {
        bottom: 70px;
        right: 20px;
    }

    .single-product .webphone_button {
        bottom: 180px;
        right: 30px;
    }
}

.webphone_button span {
    display: block;
    animation-name: tada;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
}

@keyframes tada {
    0% {
        transform: rotateY(1, 1, 1);
    }

    10%, 20% {
        transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    }

    30%, 50%, 70%, 90% {
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }

    40%, 60%, 80% {
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }

    100% {
        transform: scale3d(1, 1, 1);
    }
}

#__webphone_iframe__ {
    display: none;
    width: 242px !important;
    height: 454px !important;
    position: fixed;
    overflow: hidden;
    bottom: 75px;
    right: 0;
    border: 0;
    z-index: 99999;
    padding: 0;
    margin: 0;
}

@media (max-width: 768px) {
    #__webphone_iframe__ {
        bottom: 115px;
        right: 5px;
    }

    .single-product #__webphone_iframe__ {
        bottom: 220px;
        right: 15px;
    }
}


/* Force all visible text weight */
body, body *, button, input, textarea, select, option, label, a, p, span, div, h1, h2, h3, h4, h5, h6, small, strong, b, em {
    font-weight: 500 !important;
}
