.modal,
.modal-box {
    z-index: 20000;
}

.modal-sandbox {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: transparent;
}

.modal {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgb(0,0,0);
    background: rgba(0,0,0,.8);
    overflow: auto;
}

.modal-box {
    position: relative;
    width: 670px;
    margin: 50px auto;
    animation-name: modalbox;
    animation-duration: .3s;
    animation-timing-function: ease-out;
}

.modal-header {
    padding: 20px 40px;
    background: #ffffff;
    color: #000000;
    font-size: 20px;
    font-weight: 500;
}




.modal-body {
    background: #ffffff;
    padding: 5px 30px 20px 30px;
}


    .modal-body td {
        font-size: 15px;
    }


    .modal-body th {
        font-size: 17px;
    }


.modaltextbox1 {
    width: 90%;
    padding: 9px 20px;
    margin: 8px 0;
    box-sizing: border-box;
    border: 1px solid #383737;
    border-radius: 4px;
}


.modal-body tr.thhead {
    background: #00bbff;
    color: #fff;
    font-size: 13px;
    padding: 7px 5px;
}

.modal-body tr.trbody {
    background: #fff;
    color: #383837;
    font-size: 13px;
    padding: 7px 5px;
}



/* Close Button */
.close-modal {
    float: right;
    text-align: right;
    cursor: pointer;
    font-size: 18px;
}



/* Animation */
@-webkit-keyframes modalbox {
    0% {
        top: -250px;
        opacity: 0;
    }

    100% {
        top: 0;
        opacity: 1;
    }
}

@keyframes modalbox {
    0% {
        top: -250px;
        opacity: 0;
    }

    100% {
        top: 0;
        opacity: 1;
    }
}

