@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 87, 34, 0.7);
    }

    70% {
        transform: scale(1.1);
        box-shadow: 0 0 10px 10px rgba(255, 87, 34, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 87, 34, 0);
    }
}

/* Style the close button */
.popup_close {
    background-color: #f44336;
    color: white;
    border: none;
    padding: 10px 20px;
    margin-top: 20px;
    cursor: pointer;
}

.popup_close:hover {
    background-color: #d32f2f;
}

#popup_chat_ai_vgtech {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 100%;
    background-color: #000000eb;
    height: 100%;
    align-content: center;
	z-index: 999999;
}

#close_ai_popup_chat {
    margin-top: 0 !important;
    position: absolute;
    right: -25px;
    top: -15px;
    height: 40px;
    width: 40px;
    text-align: center;
    font-size: 27px;
    padding: 0 !important;
    background-color: var(--e-global-color-primary);
    color: var(--e-global-color-primary);
}

#close_ai_popup_chat:hover {
    background-color: #FAC896;
    border-color: #FAC896;
}

#close_ai_popup_chat i {
    color: #fff;
}

#icon_open_popup_ai_chat {
    display: block;
    position: fixed;
    width: 50px;
    height: 50px;
    z-index: 9999;
    bottom: 3%;
    right: 15px;
    padding: 3px 6px;
    border-radius: 50%;
    background-color: #FF5722;
    /* Màu nền */
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    /* Hiệu ứng nhấp nháy */
    font-size: 0px !important;
    line-height: 0 !important;
}

#icon_open_popup_ai_chat img {
    height: 35px;
    width: 35px;
    margin-top: 4px;
    border-radius: 50%;
}

#icon_open_popup_ai_chat_img {
    width: 100%;
    display: none;
    padding: 3px 6px;
    border-radius: 50%;
    background-color: #FF5722;
    /* Màu nền */
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    /* Hiệu ứng nhấp nháy */
}

#icon_open_popup_ai_chat_img img {
    height: 45px;
    width: 45px;
    border-radius: 50%;
}

@media(max-width: 880px) {

    #popup_chat_ai_vgtech {
        z-index: 9999999;
        padding: 30px 10px 0px;
        overflow: auto;
    }

    #popup_chat_ai_vgtech .chat_title {
        font-size: 24px;
    }

    #icon_open_popup_ai_chat {
        display: none;
        position: fixed;
        z-index: 9999;
        bottom: 3%;
        right: 15px;
        padding: 3px 6px;
        border-radius: 50%;
        background-color: #FF5722;
        /* Màu nền */
        transition: all 0.3s ease;
        animation: pulse 2s infinite;
        /* Hiệu ứng nhấp nháy */
    }

    #icon_open_popup_ai_chat img {
        height: 50px;
        width: 50px;
        border-radius: 50%;
    }

}

@media(max-width: 480px) {
    #icon_open_popup_ai_chat_img {
        height: 37.5px;
        display: block;
        font-size: 0px !important;
        line-height: 0 !important;
    }

    #icon_open_popup_ai_chat_img img {
        height: 25px;
        width: 25px;
        border-radius: 50%;
        margin-top: 3px;
    }
}