.modal {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: all 0.6s;
    visibility: hidden;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

.modal.faded {
    visibility: visible;
    opacity: 1;
}

.modal-container {
    box-sizing: border-box;
    width: 890px;
    max-height: 871px;
    background-color: var(--white);
    opacity: 0;
    transform: translateY(-100px);
    transition: all 0.3s;
    visibility: hidden;
    z-index: 2;
}

.modal-container.faded {
    transform: translateY(0px);
    opacity: 1;
    visibility: visible;
}


.modal__header {
    height: 59px;
}

.modal__body {
    box-sizing: border-box;
    overflow-y: auto;
    max-height: 740px;
}

.modal__footer {
    height: 72px;
}