@import url('https://fonts.googleapis.com/css2?family=Padauk:wght@400;700&family=Poppins:wght@400;600;900&family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap');

body{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    background-color: #fffafb;
    font-family: 'Padauk','Poppins','Zen Old Mincho', serif;
}

*{
    list-style: none;
    margin: 0;
    padding: 0;
}

:root {
    --primary-color: #28a745;
    --secondary-color: rgba(40, 167, 69, 0.25);
    --warning-color: #e5c121;
    --sec-warn-color: rgba(189, 158, 20, 0.25);
}

/* .test{
    background-color: var(--primary-color) !important;
} */

.bgImg{
    min-width: 80px;
    height: 80px;
    border-radius: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 90%;
}
.studentFormPageLogo{
    width: 200px;
    height: 150px;
    background-size: 100%;
    border-radius: 0px;
}
.form-control:focus, .unComplete {
    border-color: var(--warning-color);
    box-shadow: 0 0 0 0.2rem var(--sec-warn-color);
} 
.completed{
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem var(--secondary-color);
}
.radioStyle:checked{
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem var(--secondary-color);
}
a{
    text-decoration: none;
}
.menu-container{
    height: 60px;
    width: 100%;
    display: none !important;
}
.line{
    height: 5px;
    background-color: black;
    margin-bottom: 5px;
    border-radius: 5px;
}
.line1, .line3{
    width: 28px;
}
.line2{
    width: 20px;
}
.sideBar{
    position: relative;
    background-color: #fff;
}
.offcanvasStyle{
    width: 300px !important;
}

.user-img{
    width: 113.38582677px;
    height: 151.18110236px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
/* td{
    min-width: 100px;
    font-size: 15px;
} */

/* td:first-child{
    width: 30px;
} */

/* scrollbar */

::-webkit-scrollbar {
    width: 0px;
    height: 10px;
  }
  
  ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey; 
    border-radius: 10px;
    margin-bottom: 5px;
  }
   
  ::-webkit-scrollbar-thumb {
    background: rgb(202, 199, 199); 
    border-radius: 10px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: rgb(202, 199, 199); 
  }


/* dataTable */
table.dataTable thead .sorting, 
table.dataTable thead .sorting_asc, 
table.dataTable thead .sorting_desc {
    background : none;
}
table.dataTable thead>tr>th.sorting:before, table.dataTable thead>tr>th.sorting:after, table.dataTable thead>tr>th.sorting_asc:before, table.dataTable thead>tr>th.sorting_asc:after, table.dataTable thead>tr>th.sorting_desc:before, table.dataTable thead>tr>th.sorting_desc:after, table.dataTable thead>tr>th.sorting_asc_disabled:before, table.dataTable thead>tr>th.sorting_asc_disabled:after, table.dataTable thead>tr>th.sorting_desc_disabled:before, table.dataTable thead>tr>th.sorting_desc_disabled:after, table.dataTable thead>tr>td.sorting:before, table.dataTable thead>tr>td.sorting:after, table.dataTable thead>tr>td.sorting_asc:before, table.dataTable thead>tr>td.sorting_asc:after, table.dataTable thead>tr>td.sorting_desc:before, table.dataTable thead>tr>td.sorting_desc:after, table.dataTable thead>tr>td.sorting_asc_disabled:before, table.dataTable thead>tr>td.sorting_asc_disabled:after, table.dataTable thead>tr>td.sorting_desc_disabled:before, table.dataTable thead>tr>td.sorting_desc_disabled:after{
    font-size: 0.6em;
}
.form-check-input:focus {
    box-shadow: none;
    outline: none;
  }
@media only screen and (max-width: 1650px) {

    .sideBar{
        width: 0px;
        display: none;
    }
    .mainSection{
        width: 100% !important;
    }
    .menu-container{
        display: flex !important;
    }
}
/* @media only screen and (max-width: 1400px) {
    .offcanvas{
        min-width: 25% !important;
    }
} */

/* For loader */
#loading-spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.5); /* Add a semi-transparent gray overlay */
  }
  
  .spinner {
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
  }
  
  @-webkit-keyframes spin {
    0% {
      -webkit-transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
    }
  }
  
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

