﻿.modal.modal2024 {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 9999;  
}

.modal2024 .modal-shadow {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
}

.modal2024 .modal-body {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 48px 32px;
    background: linear-gradient(270deg, #EDEEF9 1.23%, #F2F9FC 100%);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    width: 95%;
    max-width: 786px;
}

.modal2024 .modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    border: none;
    outline: 0;
    font-size: 32px;
    background: transparent;
    cursor: pointer;
    color: #000;
}

.modal2024 .modal-text {
    margin-bottom: 32px;
}

    .modal-text p, .common-popup-text, .page .common-popup-text {
        font-weight: 400;
        font-size: 22px;
        line-height: 1.2;
        text-align: center;
        color: #1A1A1A;
        margin: 0;
    }

.common-popup-error .common-popup-text, .page .common-popup-error .common-popup-text {
    color: darkred;
}

.modal2024 .modal-buttons-wrapper {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.modal2024 .modal-button {
    display: block;
    cursor: pointer;
    padding: 15px 20px;
    background: #FF6505;
    border: 1px solid #FF6505;
    border-radius: 4px;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.2;
    color: #FFFFFF;
}

.corp-button-org {
    background: transparent;
    color: #FF6505;
    transition: 0.3s;
}

.modal2024 .modal-button:hover {
    background: #d04f00;
    color: #FFFFFF;
    transition: 0.3s;
}

@media (max-width: 480px) {
    .modal2024 .modal-buttons-wrapper {
        flex-direction: column;
    }
}

.modal2024 .loader-wrapper {
    display: none;
    position: relative;
    margin-top: 10px;
    height: 32px;
}

.modal2024.modal .loader {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0;
    width: 30px;
    height: 30px;
    border: 1px solid #004677;
    border-left-color: transparent;
    border-radius: 50%;
    animation-name: loader;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    z-index: inherit;
    /*display: inherit;*/
}

.modal2024.modal .loader-wrapper .loader {
    display: inherit;
}

    @keyframes loader {
        from {
            transform: rotate(0);
        }

        to {
            transform: rotate(360deg);
        }
    }

    .close-loader-wrapper {
        position: absolute;
        display: none;
        width: 20px;
        height: 20px;
        top: 0;
        right: 20px;    
    }

    .close-loader-wrapper .loader {
        width: 15px;
        height: 15px;
        display: inherit;
    }

.js-cart-go-to-cart{
    display: none;
}
