.modal {
    display: none;
    position: fixed;
    z-index: 200;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(255, 255, 255, 0.9);
}

.modal-schedule {
    display: none;
    position: fixed;
    z-index: 200;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    /* background-color: rgba(255, 255, 255, 0.9); */
}

.modal-progress {
    display: none;
    position: fixed;
    z-index: 200;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    /* background-color: rgba(255, 255, 255, 0.9); */
}

.modal-job-content {
    background-color: #fefefe;
    margin: 2% auto;
    /* 2% from the top and centered */
    padding: 20px;
    border: 1px solid lightgrey;
    width: 90%;
    min-height: 700px;
}

.modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    /* 2% from the top and centered */
    padding: 20px;
    border: 1px solid lightgrey;
    width: 50%;
    min-height: 400px;
}

.modal-schedule-content {
    background-color: #fefefe;
    margin: 1% auto;
    /* 2% from the top and centered */
    padding-top: 20px;
    border: 1px solid lightgrey;
    width: 600px;
    height: 750px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.5) 0px 5px 10px;
    overflow-y: auto;
    /* box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; */
}

.modal-kpi-content {
    background-color: #fefefe;
    margin: 1% auto;
    /* 2% from the top and centered */
    padding-top: 20px;
    border: 1px solid lightgrey;
    width: 600px;
    height: 650px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.5) 0px 5px 10px;
    overflow-y: auto;
    /* box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; */
}

.modal-progress-content {
    background-color: #fefefe;
    margin: 1% auto;
    /* 2% from the top and centered */
    padding-top: 20px;
    border: 1px solid lightgrey;
    width: 650px;
    height: 670px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.5) 0px 5px 10px;
    overflow-y: auto;
    /* box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; */
}

.header-modal {
    background-color: #DCDCDC;
    height: 50px;
    margin-top: -20px;
    border-top-left-radius: 10px 10px;
    /* border-top-right-radius: 10px 10px; */
}

.close-modal-schedule {
    color: red;
    z-index: 1;
    font-size: 26px;
    font-weight: bold;
    margin-top: 8px;
    padding-right: 15px;
}

.close-modal-schedule:hover {
    /* color: black; */
    text-decoration: none;
    cursor: pointer;
}

.close-modal {
    color: #aaa;
    z-index: 1;
    font-size: 28px;
    font-weight: bold;
    margin-left: 98%;
    margin-top: -15px;
}

.close-modal:hover {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modal-box {
    min-height: 330px;
    border: lightgrey solid thin;
}

@media screen and (max-width: 992px) {
    .modal-content {
        width: 80%;
    }
}

@media screen and (max-width: 768px) {
    .modal-content {
        width: 90%;
        margin-top: 10% auto;
    }
    .modal-schedule-content {
        width: 450px;
    }
}