html.with-opened-popup {
    overflow: hidden;
}
.r-popup {
    display: none;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
}
.r-popup__body-wrp {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}
.r-popup__body {
    background-color: #fff;
    position: relative;
    z-index: 1;
    min-width: 300px;
    padding: 20px;
    max-height: 90svh;
    overflow-y: auto;
}
.r-popup__body .btn-primary {
    border-radius: 0;
    background-color: var(--theme-color-second);
}
.r-popup__body .form-control {
    border-radius: 0;
}
.r-popup__body .form-control:focus {
    box-shadow: none;
}
.r-popup__title {
    margin: 20px 0;
    text-align: center;
    font-size: 24px;
}
.r-popup__title > div {
    font-size: 16px;
}
.r-popup__content {
    margin: 20px 0;
}
.r-popup__close {
    display: flex;
    width: 30px;
    height: 30px;
    position: absolute;
    opacity: 0.4;
    right: 6px;
    top: 6px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.r-popup__close:hover {
    opacity: 0.6;
}
.r-popup__close img {
    width: 20px;
    height: 20px;
}
.r-popup__overlay {
    background-color: #000;
    opacity: 0.3;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}
.r-popup .asl_w_container {
    min-width: 360px;
}
