.shadow {
    opacity: .7;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #000;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
}

.window__close {
    position: absolute;
    top: 7px;
    right: 7px;
    cursor: pointer;
}

.payment-exit {
    margin: 30px 0;
}

.window.payment-exit__popup {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 50%;
    left: 50%;
    max-width: 452px;
    max-height: 100%;
    height: auto !important;
    margin-top: 0 !important;
    margin-left: 0 !important;
    transform: translate(-50%, -50%);
    padding: 55px 25px;
    background-color: #f4f4f4;
    overflow: auto;
}

.payment-exit__title {
    margin-bottom: 20px;
    color: #2b5f93;
    font-weight: bold;
    font-size: 19px;
    line-height: 28px;
    text-align: center;
}

.payment-exit__buttons {
    display: flex;
    justify-content: center;
}

.payment-exit__buttons .payment-exit__button {
    width: 186px;
    padding: 10px;
    font-weight: bold;
    transition: 0.3s;
}

.payment-exit__buttons .payment-exit__button_close:not(:hover) {
    color: #2b5f93 !important;
    border-color: #317DD3 !important;
    background: rgba(0, 0, 0, 0) !important;
}

.payment-exit__buttons .payment-exit__button:hover {
    background-color: #317DD3;
    border-color: #317DD3;
    color: white;
}

.payment-exit__button:not(:first-child) {
    margin-left: 15px;
}

@media (max-width: 767px) {
    .window.payment-exit__popup {
        top: 50% !important;
        left: 50% !important;
        width: calc(100% - 10px) !important;
        max-width: 350px;
    }

    .payment-exit__buttons .payment-exit__button {
        padding: 5px;
    }
}
