.modal-overlay {
    position: fixed;
    top: 0;
    width: 100%;
    height: 140vh;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    width: 100%;
    height: 140vh;
    z-index: 1200000;
}
.modal-content {
    float: right;
    position: relative;
    width: 100%;
    padding: 70px 60px;
}
.modal-close {
    padding: 10px;
    height: 42px;
    width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    background-color: #00ac94;
    font-size: 20px;
    color: white;
    cursor: pointer;
    z-index: 2;
}


.modal-close:hover {
    background-color: #007e6d;
    color: white;
}

.modal-position {
    display: flex;
    position: absolute;
    top: 35%;
    left: 50%;
    width: 95%;
    max-width: 1100px;
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: white;
}


.modal .select2 {
    border: 1px solid #e4eaec;
    border-radius: 3px;
}