.section-modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(28, 28, 32, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    max-height: 0;
    z-index: 9999;
}

.section-modal.show {
    max-height: 100vh;
    padding: 45px;
}

.section-modal .modal-wrap {
    background: #EEEEEE;
    width: 100%;
    max-width: 1350px;
    min-height: 150px;
    position: relative;
    opacity: 0;
    max-height: 0;
    margin-top: -100px;
    transition: all 0.1s;
}

.section-modal.show .modal-wrap {
    opacity: 1;
    max-height: 100vh;
    margin-top: 0;
    transition: opacity 0.4s, margin-top 0.2s;
    overflow: auto;
}

.section-modal .modal-wrap__close_button {
    width: 18px;
    height: 18px;
    position: absolute;
    top: 30px;
    right: 30px;
    cursor: pointer;
    background: url("../img/close-ico.svg") center center / cover;
    transition: all 0.3s ease-out;
    z-index: 10;
}

.section-modal .modal-wrap__close_button:hover {
    opacity: 0.4;
}
