/*стили  в /html/css/custom.css */

.popupWrap{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.4);
}
.popupWrap__body {
    background: #FFFFFF;
    width: 708px;
    min-height: 336px;
    overflow-y: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 30px 25px 33px 25px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 10px;
    scrollbar-color: var(--c-darkred) #d3d3d3;
    scrollbar-width: thin;
    gap: 25px;
    position: relative;
    flex-direction: column;
    justify-content: center;
}

.modal__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100%;    backdrop-filter: blur(5px);

}
.popupWrap__body .modal__close {
    position: absolute;
    width: 32px;
    height: 32px;
    opacity: 0.8;
    right: 25px;
    top:25px;
    cursor: pointer;
}
.popupWrap__body .modal__close:after, .popupWrap__body .modal__close:before {
    position: absolute;
    left: 15px;
    content: ' ';
    height: 33px;
    width: 3px;
    background-color: #333;
}
.popupWrap__body .modal__close:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.popupWrap__body .modal__close:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.popupWrap__body .modal__title {
    font-family: 'Inter Bold 18pt';
    font-weight: 700;
    font-size: 23px;
    leading-trim: Cap height;
    line-height: 114.99999999999999%;
    letter-spacing: -2%;
    vertical-align: bottom;
    text-align: center;

}