.modals {
    position: relative;
}

.modals .modal {
    position: relative;
    margin-bottom: 30px !important;
}

.modals .modal .modal-content {
    display: none;
}

.modalJs {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    opacity: 0;
    background-color: white;
    transition: 0.3s 0.3s, opacity 0.3s;
}

.modalJs.open {
    width: 100%;
    opacity: 1;
    transition: 0.3s, opacity 0.3s 0.3s;
}

.modalJs .closer {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 4rem;
    line-height: 0.5;
    color: var(--orange);
    cursor: pointer;
    z-index: 999;
}

.modalJs h4 {
    padding-right: 40px !important;
}
