.modal-full {
    position: fixed;
    top: 0;
    left: 0;
    width: 100lvw;
    min-height: 100lvh;
    background: white;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    overflow: hidden;
}

.modal-full.active {
    opacity: 1;
    visibility: visible;
}

.modal-full-close {

    position: absolute;
    top: 20px;
    display: block;
    font-size: 14px;
    right: 30px;
    color: black;
    z-index: 2;
    cursor: pointer;

}

.modal-full-close .close-text {
    text-transform: uppercase;
}

.modal-full-content {
    flex-grow: 1;
    overflow-y: auto;
    padding: 0;
    margin: 0;
    height: 100%;
    box-sizing: border-box;
}

.modal-full-footer {
    padding: 20px 32px;
    text-align: right;
    border-top: 1px solid #ddd;
}