body.withoutScroll {
    overflow-y: hidden;
    width: 100%;
}

body.withoutScroll .main-content {
    filter: contrast(0.5);
}

.popupWindow {
    visibility: hidden;

    position: fixed;
    top: 180px;
    bottom: 100px;
    left: 50%;
    transform: translate(-50%);
    width: 1000px;
    min-height: auto;
    max-height: none;

    box-shadow: 0 0 1.25rem 0 rgba(0, 0, 0, 0.2);

    right: 1%;
    text-align: left;
    color: black;
    z-index: 1000;
    background: #ffffff;
    border: 0.0625rem solid #d2d2d2;
    border-radius: 0.5rem;

    overflow: hidden;
}

.popupWindow .popup-close {
    display: block;
    cursor: pointer;
    background-image: url('/Templates/MTBP2025/images/icons/popup-close.svg');
    background-size: 30px 30px;
    width: 30px;
    height: 30px;
    position: fixed;
    right: 20px;
    top: 20px;
}

.popupWindow .popup-close:hover {
    filter: invert(1);
}

.popupWindow .popup-loader {
    display: block;
    margin: 30px auto;
}

.popupWindow .popup-content {
    overflow-y: auto;
    height: 100%;
    padding: 2.5rem;
}

.popupWindow.show {
    visibility: visible;
    -webkit-animation: fadeIn 500ms;
    animation: fadeIn 500ms
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}