#bvvs-floating-icon {
    position: fixed;
    left: 20px;
    bottom: 20px;
    background:  #1f3c88;
    color: #fff;
    font-size: 26px;
    padding: 12px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 9999;
}
#bvvs-floating-icon:hover {
    background: #b71c1c;
}

#bvvs-popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 9998;
}

#bvvs-popup-box {
    background: #fff;
    width: 600px;
    max-width: 95%;
    margin: 8% auto;
    padding: 20px;
    border-radius: 8px;
    position: relative;
}

.bvvs-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
}

.bvvs-notice-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 12px;
    padding-bottom: 10px;
}

@keyframes bvvs-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(181, 136, 99, 0.75); /* light brown */
    }
    70% {
        box-shadow: 0 0 0 14px rgba(181, 136, 99, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(181, 136, 99, 0);
    }
}

#bvvs-floating-icon {
    animation: bvvs-pulse 2.8s infinite;
}


@media (max-width: 768px) {

    #bvvs-popup-box {
        margin: 15% auto;
        padding: 15px;
    }

    .bvvs-notice-title {
    color: #7a4a21 !important;  /* brown */
    font-weight: 600;
}


    .bvvs-notice-content img {
        max-width: 100%;
        height: auto;
        display: block;
        margin-top: 8px;
    }
}

#bvvs-popup-overlay h4.bvvs-notice-title.vc_custom_heading {
    color: #8b5a2b !important;
}