.hide {
    display: none;
}


/* .displaydate {
    display: none;
} */

.list {
    border: 1px solid #000;
    padding-bottom: 5px;
}

.list .row {
    border: 1px solid #000;
    overflow: auto;
}

.list .heading {
    background: #0f9cf3;
    color: #fff;
    text-transform: capitalize;
}
.teach_name{
    padding: 10px;
}

.col1 {
    float: left;
    width: 17%;
}

.col2 {
    overflow: auto;
    margin-bottom: 5px;
}

.minhr,
.setminhr,
.setdatehr,
.dayhr {
    border: 1px solid #000;
    padding: 5px;
    display: inline-block;
    margin: 10px;
    cursor: pointer;
}

.minhr.checked,
.setminhr.checked,
.setdatehr.checked,
.dayhr.checked {
    background-color:#6fd088;
    color: #fff;
}

.mybtn {
    padding: 10px;
    height: 2.5em;
    font-size: 12pt;
    font-weight: bold;
    background: #007bff;
    border-radius: 2px;
    border: 1px solid #007bff;
    color: white;
    border-radius: 10px;
}

.mybtnclose {
    background: #f32f53;
    border-radius: 10px;
    border: 1px solid #f32f53;
    padding: 5px;
    padding-right: 15px;
    padding-left: 15px;
}

.attendancerecord {
    text-align: left;
    position: fixed;
    top: 35%;
    left: 35%;
    bottom: 50%;
    height: 340px;
    z-index: 5000;
    width: 500px;
    background: white;
    border: 3px solid darkblue;
    padding: 0px !important;
    display: none;
}

.attendancerecord h3 {
    background-color: steelblue;
    color: white;
    padding: 4px;
}

.attendancerecord div {
    padding: 10px;
}

.makeupresult {
    color: red;
}

.newclasspopup {
    text-align: left;
    /*top: 35%;
            left: 35%;
            bottom: 50%;
            height: 400px;*/
    top: 35%;
    left: 50%;
    min-width: 600px;
    overflow: auto;
    background: white;
    padding: 2px !important;
}


}
.newclasspopup h3 {
    background-color: steelblue;
    color: white;
    padding: 4px;
}
.newclasspopup div {
    padding: 10px;
}
.ui-dialog {
    left: 30% !important;
    top: 20% !important;
}
.tab {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
}
.sec th {
    padding-left: 2px;
    padding-right: 2px;
}

/* Style the buttons that are used to open the tab content */
.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
}

/* Change background color of buttons on hover */
.tab button:hover {
    background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
    background-color: #ccc;
}
.tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
}
.timingresult {
    display: flex;
    justify-content: center;
}
.avail_label{
    display:none;
    padding-top: 12px;
    padding-bottom: 12px;
}
span.availmessage {
    font-weight: bold;
    padding:8px;
}

/* CSS Loader when loading class details */
.loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 100px;
    height: 100px;
    -webkit-animation: spin 2s linear infinite;
    /* Safari */
    
    animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    
    100% {
        -webkit-transform: rotate(360deg);
    }
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    
    100% {
        transform: rotate(360deg);
    }
}

