/* ==========================================
   МОДАЛЬНОЕ ОКНО АРЕНДЫ SSA
========================================== */

.ssa-modal {

    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    background: rgba(0, 0, 0, 0.65);

    opacity: 0;
    visibility: hidden;

    transition: 0.35s;

    z-index: 99999;

}

/* Активное состояние */

.ssa-modal.active {

    opacity: 1;
    visibility: visible;

}


/* ==========================================
   Окно
========================================== */

.ssa-window {

    width: 600px;
    max-width: 90%;

    padding: 40px;

    background: #ffffff;

    border-radius: 20px;

    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);

    position: relative;

    transform: translateY(40px);

    transition: 0.35s;

}

.ssa-modal.active .ssa-window {

    transform: translateY(0);

}


/* ==========================================
   Кнопка закрытия
========================================== */

.ssa-close {

    position: absolute;

    top: 15px;
    right: 20px;

    font-size: 34px;

    color: #999999;

    cursor: pointer;

}

.ssa-close:hover {

    color: #d32f2f;

}


/* ==========================================
   Карточка выбранной техники
========================================== */

.ssa-machine-card {

    margin: 25px 0;
    padding: 20px;

    background: #f7f9fc;

    border: 1px solid #dde5ef;
    border-radius: 12px;

}

.ssa-machine-title {

    margin-bottom: 15px;

    font-size: 15px;
    font-weight: 700;

    color: #1f3d72;

}

.ssa-machine-description {

    font-size: 20px;
    font-weight: 600;
    line-height: 1.8;

    color: #17396b;

}


/* ==========================================
   Сообщение об успешной отправке
========================================== */

.ssa-success {

    display: none;

    padding: 20px;
    margin-bottom: 15px;

    text-align: center;

    background: #e8f7ed;

    border: 1px solid #3bb54a;
    border-radius: 10px;

    color: #247a32;

    font-weight: 600;

}

.ssa-success-icon {

    width: 60px;
    height: 60px;

    margin: 0 auto 20px;

    border-radius: 50%;

    background: #28a745;

    color: #ffffff;

    font-size: 40px;
    font-weight: bold;
    line-height: 60px;

}

.ssa-success h3 {

    margin-bottom: 15px;

    font-size: 24px;

    color: #1d3557;

}

.ssa-success p {

    line-height: 1.5;

    color: #555555;

}


/* ==========================================
   Кнопка закрытия после отправки
========================================== */

.ssa-close-success {

    margin-top: 20px;

    padding: 12px 30px;

    border: none;
    border-radius: 8px;

    background: #0057d9;

    color: #ffffff;

    font-weight: bold;

    cursor: pointer;

}

.ssa-close-success:hover {

    background: #003f9e;

}