html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.custom-btn {
    font-weight: bold;
    cursor: none !important;
    color: #198754;
    border: 1px solid #198754;
    padding: 7px;
    border-radius: 10px;
    background: white;
}

.GradeHexTh {
    color: darkslateblue;
    display: none;
}

.GradeTh {
    color: darkgoldenrod;
    display: none;
}

.InTimeTh {
    color: green
}

.OutTimeTh {
    color: darkred
}

.SeniorityTh {
    color: darkred;
    display: none;
}

.loader-mn {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(76 76 76 / 19%);
    z-index: 9999999;
}

.txtt {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    color: white;
    margin: auto;
    width: 100px;
    height: 100px;
    text-align: center;
    font-size: 31px;
    padding-top: 135px;
    text-shadow: 1px 1px 1px black;
    font-weight: 600;
}

.modalLoader {
    display: none;
}

.loader {
    border: 16px solid #ffffff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    border-top: 16px solid #0052db;
    border-bottom: 16px solid #fbd806;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 0;
    bottom: 0;
    border-left: 16px solid #ed3a3a;
    border-right: 16px solid #009b28;
}

.innerLoader {
    border: 16px solid #ffffff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    border-top: 10px solid #0052db;
    border-bottom: 10px solid #fbd806;
    width: 60px;
    height: 60px;
    -webkit-animation: spinRev 1.5s linear infinite reverse;
    animation: spinRev 1.5s linear infinite reverse;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 0;
    bottom: 0;
    border-left: 10px solid #ed3a3a;
    border-right: 10px solid #009b28;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@-webkit-keyframes spinRev {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(-360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes spinRev {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}
