/* BMH Popup Modal - Match Package Modal Close Button Style */

#bmhPopupModal .btn-close {
    background: #E83F00 !important;
    font-size: 36px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: none !important;
    padding: 0 !important;
    width: 40px !important;
    height: 40px !important;
    color: white !important;
    opacity: 1 !important;
}

#bmhPopupModal .btn-close:hover {
    background: #d73925;
    opacity: 1;
}

#bmhPopupModal .btn-close:focus {
    box-shadow: 0 0 0 0.25rem rgba(231, 63, 0, 0.25);
}

/* Print styles - hide popup when printing */
@media print {
    #bmhPopupModal {
        display: none !important;
    }
}