.vbrfg-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.52);
    opacity: 1;
    transition: opacity 0.18s ease;
}

.vbrfg-popup-overlay.vbrfg-popup-closing {
    opacity: 0;
}

.vbrfg-popup {
    position: relative;
    width: min(100%, 460px);
    padding: 34px 30px 30px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.24);
    text-align: center;
}

.vbrfg-popup-close {
    position: absolute;
    top: 8px;
    right: 12px;
    padding: 4px 8px;
    border: 0;
    background: transparent;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    transform: scale(1.5);
    color: #111; !important;
}
.vbrfg-popup-close:hover, .vbrfg-popup-close:focus, .vbrfg-popup-close:focus-visible  {
    background: transparent !important;
    color: #111; !important;
    outline: none !important;
}

.vbrfg-popup-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 14px;
    border: 2px solid #B2BE9E;
    border-radius: 50%;
    font-size: 28px;
    background: #B2BE9E;
}

.vbrfg-popup h2 {
    margin: 0 0 12px;
    font-size: 25px;
    line-height: 1.2;
}

.vbrfg-popup p {
    margin: 0 0 22px;
    font-size: 16px;
    line-height: 1.55;
}

.vbrfg-popup-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 10px 24px;
    border: 0;
    border-radius: 3px;
    background: #111;
    color: #fff;
    font: inherit;
    cursor: pointer;
}

@media (max-width: 480px) {
    .vbrfg-popup {
        padding: 32px 22px 24px;
    }

    .vbrfg-popup h2 {
        font-size: 22px;
    }
}
