@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

body,
html {
  overflow-x: hidden;
}
/* body,html{
    width: 100%;
} */
body {
  margin: 0;
  padding: 0;
  font-family: "Urbanist", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  font-weight: normal;
  font-style: normal;
  color: var(--text-clr);
  font-size: 16px;
  line-height: 1.5;
  background-color: var(--white);
  scroll-behavior: smooth;
}
:root {
  scroll-behavior: inherit;
  --primary-clr: #660000;
  --secondary-clr: #C0C0C0;
  --border-clr: #6A6A6A;
  --text-clr: #000606;
  --green-clr: #00A65A;
  --red-clr: #DE2A0E;
  --yellow-clr: #DFA510;
  --white: #fff;
  --black: #000;
}
button{
    border: 0;
    background: transparent;
    padding: 0;
    margin: 0;
}
b,
strong {
  font-weight: 700;
}
ul,ol{
  margin: 0;
  padding: 0;
  list-style: none;
}
p {
  margin: 0 0 15px 0;
}

p:last-child {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 25px 0;
  padding: 0;
  color: var(--text-clr);
  font-weight: 700;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}

h1,.h1-title {
  font-weight: 700;
  font-size: 100px;
  line-height: 1;
}

h2,
.h2-title {
  font-weight: 700;
  font-size: 50px;
  line-height: 1;
}

h3,
.h3-title {
  font-weight: 700;
  font-size: 25px;
  line-height: 1;
}

h4,
.h4-title {
  font-size: 24px;
  line-height: 1.2;
}

h5,
.h5-title {
  font-size: 20px;
  line-height: 1.2;
}

a {
    display: inline-flex;
    margin: 0;
    padding: 0;
    text-decoration: none !important;
    outline: none !important;
    color: var(--text-clr);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

a:hover {
  color: var(--new-blue-clr);
}

img {
  max-width: 100%;
}
.input-grp.h48 input:not([type='submit']){
    height: 48px;
}
input[type="text"],
input[type="tel"],
input[type="password"],
input[type="email"],
input[type="url"],
select {
    background-color: transparent;
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 4px;
    color: var(--text-clr);
    border: 1px solid var(--border-clr);
    height: 58px;
    padding: 5px 12px;
    outline: none !important;
    font-size: 16px;
}
textarea {
    background-color: transparent;
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 4px;
    color: var(--text-clr);
    border: 1px solid var(--secondary-clr);
    height: 58px;
    padding: 5px 12px;
    outline: none !important;
    font-size: 16px;
}
select {
    background-color: transparent;
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 4px;
    color: var(--text-clr);
    border: 1px solid var(--secondary-clr);
    height: 58px;
    padding: 5px 12px;
    outline: none !important;
    font-size: 16px;
}
select::-ms-expand {
  display: none;
}
input[type="submit"] , button[type="submit"],.btn-submit{
    background: var(--primary-clr);
    color: var(--white);
    height: 58px;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 4px;
    padding-left: 25px;
    padding-right: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    border: 1px solid var(--primary-clr);
    outline: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all ease-in-out .3s;
    -ms-transition: all ease-in-out .3s;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.login-flow button[type="submit"],.login-flow .btn-submit{
    width: 100%;
}
button[type="submit"] i,.btn-submit i{
    transform: rotate(-45deg);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all ease-in-out .3s;
    -ms-transition: all ease-in-out .3s;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
input[type="submit"]:hover,button[type="submit"]:hover ,.btn-submit:hover{
    background: transparent;
    color: var(--text-clr);
}
button[type="submit"]:hover i,.btn-submit:hover i{
    transform: none;
}
::-webkit-input-placeholder {
  opacity: .7;
  color: var(--text-clr);
}
:-ms-input-placeholder {
  opacity: .7;
  color: var(--text-clr);
}
::-moz-placeholder {
  opacity: .7;
  color: var(--text-clr);
}
:-moz-placeholder {
  opacity: .7;
  color: var(--text-clr);
}
.input-group{
    position: relative;
    margin-bottom: 24px;
}
.input-group:last-child{
    margin-bottom: 0;
}
.password-wrapper input{
    padding-right: 40px;
}
.password-wrapper .toggle-password-visibility{
    position: absolute;
    width: 40px;
    height: 100%;
    top: 0;
    right: 0;
    z-index: 2;
    background: transparent;
    padding: 0;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    color: var(--text-clr);
    opacity: 0.7;
}

/* images alignment for wordpress content pages */
.alignright {
  float: right;
  margin: 0 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 0 20px 20px 0;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  float: none;
  clear: both;
}

/* custom checkbox */

.form_input_check label {
  position: relative;
  margin: 0;
  padding-left: 40px;
  display: inline-block;
}

.form_input_check label span {
  margin: 0;
  padding: 0;
}

.form_input_check label input[type="checkbox"] {
  visibility: hidden;
  display: none;
}

.form_input_check label input[type="checkbox"] + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  width: 22px;
  height: 22px;
  border: 1px solid #3e3e42;
  background: transparent;
}

.form_input_check label input[type="checkbox"] + span::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  width: 22px;
  height: 22px;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  background: url(images/tick.svg) no-repeat center center;
  background-size: 15px;
}

.form_input_check label input[type="checkbox"]:not(:checked) + span::after {
  opacity: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
      transform: scale(0);
}

/* .form_input_check input[type="checkbox"]:checked + span::before {
      
    } */

.form_input_check label input[type="checkbox"]:checked + span:after {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
      transform: scale(1);
}

/* custom radio */

.form_input_radio label {
  position: relative;
  margin: 0;
  padding-left: 30px;
  display: inline-block;
}

.form_input_radio label span {
  margin: 0;
  padding: 0;
}

.form_input_radio label input[type="radio"] {
  visibility: hidden;
  display: none;
}

.form_input_radio label input[type="radio"] + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border: 2px solid #000000;
  border-radius: 100%;
  background: #fff;
}

.form_input_radio label input[type="radio"] + span::after {
  content: "";
  width: 12px;
  height: 12px;
  background: #4b0049;
  position: absolute;
  top: 6px;
  left: 5px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.form_input_radio label input[type="radio"]:not(:checked) + span::after {
  opacity: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
      transform: scale(0);
}

/* .form_input_radio input[type="radio"]:checked + span::before {
      
    } */

.form_input_radio label input[type="radio"]:checked + span:after {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
      transform: scale(1);
}

/* custom radio end */

/* Login Flow Begin */

.toggle-password-visibility{
    padding: 0;
    font-size: 16px;
    color: var(--black);
}
.login-flow .login-flow-left-wrp{
    width: 47%;
}
.login-flow .login-right-wrp{
    width: 53%;
}
.login-panel{
    padding: 30px 40px;
    border-radius: 10px;
    background: rgba(102, 0, 0, .04);
    box-shadow: 0 4px 10px rgba(0, 0, 0, .11);
}
.login-panel-outer{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
    padding: 0 80px 0 0;
}
.logo{
    width: 200px;
    padding-left: 25px;
    margin-bottom: 40px;
    pointer-events: all;
}
.logo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.login-flow{
    position: relative;
    padding-bottom: 100px;
}
.login-flow::before{
    content: "";
    position: absolute;
    width: 5000px;
    height: 100%;
    top: 0;
    right: 53%;
    background: #f5f5f5;
    z-index: -1;
    pointer-events: none;
}
.tablist-container{
    display: flex;
    align-items: center;
    border-radius: 5px;
    margin: 24px 0 20px;
    overflow: hidden;
}
.tablist-container button{
    background: transparent;
    border: 0;
    padding: 5px 12px;
    margin: 0;
    width: calc(100% / 3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: var(--text-clr);
    transition: all ease-in-out .3s;
    background: var(--secondary-clr);
    border-right: 1px solid var(--primary-clr);
}
.tablist-container button:last-child{
    border-right: 0;
}
.tablist-container button:hover,.tablist-container button.active{
    color: var(--white);
    background: var(--primary-clr);
}
.tablist-container button img{
    transition: all ease-in-out .3s;
}
.tablist-container button:hover img,.tablist-container button.active img{
    filter: brightness(0) invert(1);
}
.has-texture{
    position: relative;
    overflow: hidden;
}
.textures{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    z-index: 1;
    pointer-events: none;
}
.textures .texture{
    max-height: 500px;
    width: 100%;
    z-index: -1;
    pointer-events: none;
    position: absolute;
}
.textures .texture-1{
    left: -440px;
    top: -214px;
    max-width: 637px;
}
.textures .texture-2{
    right: -261px;
    bottom: -252px;
    max-width: 920px;
    margin-left: auto;
}
.login-flow-inr{
    padding: 70px 0;
}
.login-heading{
    font-size: 24px;
    font-weight: 600;
    color: rgba(0, 0, 0, .86);
    margin-bottom: 20px;
}
.login-flow-right{
    padding: 65px 50px 50px 120px;
    position: relative;
}
.login-flow-right::before{
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 65%;
    background: transparent;
    border: 2px solid var(--primary-clr);
    border-radius: 16px;
    z-index: -1;
}
.lfr-logo-cover{
    width: 100%;
    height: 480px;
    background: var(--secondary-clr);
    border-radius: 16px;
    position: relative;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lfr-logo-cover::before{
    content: "";
    position: absolute;
    left: -11px;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    height: 242px;
    border-radius: 50%;
    background: var(--primary-clr);
    z-index: -1;
    filter: blur(118.8px);
}
.lfr-logo-cover::after{
    content: "";
    position: absolute;
    right: -25px;
    top: 25px;
    background: transparent;
    border: 10px solid var(--primary-clr);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    z-index: 1;
}
.login-lg-cover-texture{
    content: "";
    position: absolute;
    left: -25px;
    top: 25px;
    width: 52px;
    height: 52px;
    object-fit: contain;
    z-index: 1;
}
.login-flow{
    min-height: 100vh;
    display: flex;
    align-items: center;
}
.company-info-label{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid var(--primary-clr);
}
.company-info-label >*{
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
    font-size: 16px;
    font-weight: 500;
    padding: 0 10px;
    border-right: 1px solid var(--text-clr);
}
.company-info-label >*:last-child{
    border-right: 0;
}
.company-info-label >* >*{
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
    color: var(--primary-clr);
    font-weight: 600;
}
.otp-container input {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.5rem;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 4px;
    -moz-appearance: textfield;
    appearance: textfield;
  }
  .otp-container input::-webkit-outer-spin-button,
  .otp-container input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
    display: none;
}
.otp-container{
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.otp-container input{
    flex: auto;
    width: 70px;
    height: 70px;
    border-radius: 10px;
    border-color: var(--border-clr);
}
.resend-code{
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 20px;
}
.resend-code button{
    border: 0;
    color: var(--primary-clr);
    border-bottom: 1px solid var(--primary-clr);
    border-radius: 0;
    background: transparent;
    padding: 0;
    margin: 0;
    width: auto !important;
    height: auto;
    display: inline-block;
}
.popwrp .modal-content{
    padding: 50px;
    border-radius: 20px;
    text-align: center;
}
.popwrp .modal-icon{
    margin: 0 auto 25px;
}
.popwrp .sec-head.head-center{
    text-align: center;
}
/* .popwrp .sec-head{
    margin-bottom: 25px;
} */
.popwrp .sec-head h2{
    font-size: 40px;
    margin-bottom: 15px;
}
.popwrp .sec-head p{
    margin-bottom: 30px;
}

/* End Of Login Flow */



/* Global Css Begin */

.light-bg{
    background: #F4F4F4;
}
.w65{
    width: calc(65% - 12px);
}
.w55{
    width: calc(55% - 12px);
}
.w45{
    width: calc(45% - 12px);
}
.w35{
    width: calc(35% - 12px);
}
h1,.h1-title{
    font-size: 24px;
    margin-bottom: 15px;
}
.green-txt{
    color: var(--green-clr);
}
.tbl-text-primary table td,.txt-primary{
    color: var(--primary-clr);
}
.tbl-text-left table td,.tbl-text-left table th{
    text-align: left;
}
.cmn-btn{
    color: var(--white);
    padding: 15px 30px;
    background: var(--primary-clr);
    align-items: center;
    justify-content: center;
    display: inline-flex;
    gap: 10px;
    border-radius: 5px;
    border: 1px solid var(--primary-clr);
}
.cmn-btn:hover{
    background: var(--white);
    color: var(--primary-clr);
}
.popwrp .cmn-btn{
    min-width: 170px;
}
.dsbdy-cmn-table.table-full-height{
    height: auto;
}
.ds-breadcrumb ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}
.ds-breadcrumb ul li{
    color: var(--border-clr);
}
.ds-breadcrumb ul li a{
    color: var(--primary-clr);
}
.ds-breadcrumb ul li a:hover{
    color: var(--primary-clr);
}
.sec-head h2{
    font-size: 24px;
}
.red-bg,.cmn-tbl-btn.red-bg{
    background: var(--red-clr);
}
.green-bg,.cmn-tbl-btn.green-bg{
    background: var(--green-clr);
}
.red-txt{
    color: var(--red-clr);
}
.yellow-bg,.cmn-tbl-btn.yellow-bg{
    background: var(--yellow-clr);
}
.tooltip-wrp.lg{
    width: 400px;
}
.tooltip-wrp{
    padding: 20px 20px 15px 15px;
    border-radius: 10px;
    background: var(--white);
    z-index: 99;
    position: absolute;
    top: 120%;
    left: 0;
    width: 300px;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    border: 1px solid var(--primary-clr);
    text-align: left;
    transition: all ease-in-out .3s;
}
.tooltip-wrp.rt{
    right: 0;
    left: auto;
}
.tooltip__title{
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-clr);
    margin-bottom: 5px;
}
.tooltip__close{
    position: absolute;
    right: 10px;
    top: 0;
    pointer-events: all;
}
.tooltip__message{
    color: var(--text-clr);
}
.has-tooltip{
    position: relative;
}
.has-tooltip:hover .tooltip-wrp{
    opacity: 1;
    top: 100%;
    visibility: visible;
}
.txt-primary{
    color: var(--primary-clr);
}
.no-scroll{
    height: 100%;
    max-height: 100vh;
    overflow: hidden;
}
.sidebar.active .sidebar-toggler{
    transform: rotate(180deg);
}

/* End Of Global Css */


/* Dashboard Begin */

/* Sidebar Begin */

.sidebar{
    width: 220px;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    pointer-events: all;
    z-index: 999;
}
.sidebar-head{
    background: var(--white);
    padding: 20px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 94px;
    border-bottom: 1px solid var(--white);
}
.sidebar-head .logo{
    width: 150px;
    display: block;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
}
.sidebar-head .logo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.sidebar-toggler{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    padding: 5px;
    background: var(--secondary-clr);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-clr);
    font-size: 12px;
    margin: 0;
    border: 0;
    outline: 0;
    transition: all ease-in-out .3s;
    pointer-events: all;
}
.sidebar-body{
    padding: 60px 0 100px;
    background: var(--primary-clr);
    height: 100%;
    overflow-y: auto;
    padding-right: 0;
    width: 100%;
    transition: all ease-in-out .3s;
}
.sidebar-body::-webkit-scrollbar {
    width: 4px;
}
.sidebar-body::-webkit-scrollbar-track{
    background: var(--primary-clr);
}
.sidebar-body::-webkit-scrollbar-thumb {
    background-color: var(--secondary-clr);
    border-radius: 3px;
}
.sidebar-body ul li {
    margin-bottom: 10px;
}
.sidebar-body ul li:last-child{
    margin-bottom: 0;
}
.sidebar-body ul li a{
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 14px;
}
.sidebar-body ul li a img,
.sidebar-body ul li a img{
    transition: all ease-in-out .2s;
    filter: brightness(0) invert(1);
}
.sidebar-body ul li.active a,
.sidebar-body ul li a:hover{
    background: var(--secondary-clr);
    color: var(--primary-clr);
}
.sidebar-body ul li.active a img,
.sidebar-body ul li a:hover img{
    filter: brightness(0) saturate(100%) invert(9%) sepia(49%) saturate(5385%) hue-rotate(353deg) brightness(90%) contrast(111%);
}
.sidebar.active .sidebar-body{
    width: 0;
}
.dashboard-main.active{
    padding-left: 0;
}
.dashboard-main.active .dashboard-body-head{
    padding-left: 264px;
}
.sidebar.active{
    position: absolute;
    pointer-events: none;
}
.sidebar.active .sidebar-toggler{
    pointer-events: all;
}

/* End Of Sidebar */

/* Dashboard Body Begin */

.dashboard-main{
    padding-left: 220px;
    transition: all ease-in-out .3s;
}
.dsbdy-head-right{
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: auto;
}
.tgl-flscrn{
    width: 30px;
    /* margin-right: 30px; */
}
.tgl-flscrn img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.profile-ctrl{
    position: relative;
}
.profile-ctrl-toggler {
    display: flex;
    align-items: center;
    gap: 10px;
}
.profile-ctrl-toggler .pr-pic{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.profile-ctrl-toggler .pr-pic img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.profile-ctrl-toggler .fa-chevron-down{
    color: var(--primary-clr);
    font-size: 12px;
}
.dashboard-body-head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: var(--secondary-clr);
    padding: 24px 24px 24px 44px;
    border-left: 1px solid var(--border-clr);
    border-bottom: 1px solid var(--border-clr);
    transition: all ease-in-out .3s;
}
.search-field{
    min-width: 320px;
    width: 100%;
    position: relative;
}
.search-field input[type="text"]{
    height: 46px;
    background: var(--white);
    color: var(--text-clr);
    font-size: 16px;
    border-radius: 7px;
    border: 1px solid var(--border-clr);
    width: 100%;
    padding-right: 50px;
}
.search-field input[type="submit"]{
    width: 46px;
    height: 100%;
    font-size: 0;
    border: 1px solid var(--primary-clr);
    padding: 5px;
    background: url(./images/search-icon.svg) no-repeat center var(--primary-clr);
    background-size: 15px;
    border-radius: 7px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    transition: all ease-in-out .3s;
}
.search-field input[type="submit"]:hover{
    background-color: var(--text-clr);
}
.pr-ctrl-menu{
    width: 180px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
    padding: 10px 0;
    position: absolute;
    right: 0;
    top: 120%;
    visibility: hidden;
    opacity: 0;
    transition: all ease-in-out .3s;
}
.profile-ctrl:hover .pr-ctrl-menu{
    visibility: visible;
    opacity: 1;
    top: 100%;
}
.pr-ctrl-menu ul li a{
    padding: 6px 12px;
    font-size: 14px;
    display: flex;
}
.pr-ctrl-menu ul li a:hover,.pr-ctrl-menu ul li.active a{
    background: var(--secondary-clr);
}
.dsbdy-filter-wrp{
    border-radius: 10px;
    background: var(--white);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}
.dsbdy-filter-wrp:last-child{
    margin-bottom: 0;
}
.dsbdy-filter-wrp select{
    background: url(./images/chevron-down-white.svg) no-repeat right 12px center var(--primary-clr);
    color: var(--white);
    background-size: 12px;
    padding-right: 30px;width: auto;
    height: 40px;
    border-radius: 5px;
    cursor: pointer;
    border: 0;
}
.ds-bdy-content-wrp{
    padding: 24px 24px 24px 40px;
}
.dsbdy-cmn-card{
    background: var(--white);
    border-radius: 10px;
    padding: 20px;
}
.ds-bdy-content{
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.dsbdy-student-card{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.dsbdy-student-img{
    width: 155px;
    height: 180px;
    overflow: hidden;
    border-radius: 10px;
}
.dsbdy-student-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.dsbdy-student-content{
    width: calc(100% - 155px);
    padding-left: 15px;
}
.dsbdy-student-content h1{
    font-size: 20px;
    font-weight: 400;
    color: var(--text-clr);
}
.dsbdy-student-nm{
    color: var(--primary-clr);
    font-weight: 700;
}
.dsbdy-student-content p{
    color: var(--primary-clr);
    font-weight: 500;
}
.dsbdycmncd-head{
    padding: 0 20px 10px;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    margin: 0 -20px 10px;
}
.dsbdycmncd-head h2{
    font-size: 24px;
    color: var(--primary-clr);
}
.notice-list ul li a{
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}
.notice-list ul li:last-child a{
    border-bottom: 0;
}
.notice-list ul li a img{
    transition: all ease-in-out .3s;
}
.notice-list ul li a:hover,.notice-list ul li.active a{
    background: var(--primary-clr);
    color: var(--white);
}
.notice-list ul li:nth-child(2) a:hover img,.notice-list ul li:nth-child(6) a:hover img,.notice-list ul li:nth-child(6).active a img,.notice-list ul li:nth-child(2).active a img{
    filter: brightness(0) invert(1);
}
.df{
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}
.progress-bar-track{
    width: 100%;
    background: var(--secondary-clr);
    box-shadow: inset 0 4px 4px rgba(0, 0, 0, .13);
    overflow: hidden;
    border-radius: 0;
    height: 5px;
}
.progress-bar-track .progress-bar-fill{
    background: var(--green-clr);
    height: 100%;
}
.dsbdy-cmn-table{
    width: 100%;
    height: 250px;
    overflow-y: auto;
    padding-right: 10px;
}
.dsbdy-cmn-table::-webkit-scrollbar{
    width: 10px;
}
.dsbdy-cmn-table::-webkit-scrollbar-track{
    background: var(--secondary-clr);
    border-radius: 0 0 10px;
}
.dsbdy-cmn-table::-webkit-scrollbar-thumb{
    border-radius: 10px;
    background: var(--primary-clr);
}
.dsbdy-cmn-table.attendance-table::-webkit-scrollbar-thumb{
    background: var(--primary-clr);
}
.dsbdy-cmn-table table{
    width: 100%;
}
.dsbdy-cmn-table table th{
    background: var(--secondary-clr);
    padding: 5px 12px;
}
.dsbdy-cmn-table table td{
    padding: 12px;
    border-top: 1px solid rgba(0, 0, 0, .1);
    font-weight: 600;
}
.ds-class-card{
    background: var(--secondary-clr);
    padding: 12px;
    display: flex;
    align-items: center;
    border-radius: 5px;
    flex-wrap: wrap;
}
.ds-cls-left{
    width: 55%;
    padding-right: 12px;
    border-right: 1px solid var(--text-clr);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.ds-class-img{
    width: 46px;
    height: 46px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.ds-class-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ds-class-left-content{
    padding-left: 5px;
    
}
.ds-class-left-content p,.dscls-room-no{
    color: var(--primary-clr);
    font-weight: 600;
    margin-bottom: 3px;
    font-size: 16px;
}
.ds-class-left-content h3{
    font-weight: 500;
    font-size: 16px;
    color: var(--text-clr);
    margin-bottom: 3px;
}
.table-secondary table td{
    padding: 0 0 10px;
    border: 0;
}
.ds-cls-right{
    width: 45%;
    padding-left: 12px;
}
.teachers-tbl .ds-class-left-content h3{
    font-weight: 600;
    color: var(--primary-clr);
}
.teachers-tbl .ds-class-left-content p{
    color: var(--border-clr);
    margin: 0;
    font-size: 14px;
}

/* End Of Dashboard Body */

/* Profile Page Begin */

.ds-breadcrumb{
    padding: 30px 30px 0;
}
.ds-pr-body{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 30px;
}
.ds-pr-profile-card{
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    width: 300px;
}
.dspr-profile-cd-upr{
    display: flex;
    align-items: center;
    font-weight: wrap;
    background: var(--primary-clr);
    padding: 20px 15px;
}
.dspr-profile-cd-img{
    width: 70px;
    height: 70px;
    overflow: hidden;
    border-radius: 8px;
}
.dspr-profile-cd-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.dspr-profile-cd-info{
    width: calc(100% - 70px);
    padding-left: 12px;
}
.dspr-profile-cd-info >*{
    color: var(--white);
}
.dspr-profile-cd-info h2{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}
.dspr-profile-cd-info p,.dspr-profile-cd-info .user-id{
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 3px;
}
.dsprprofile-course-info{
    padding: 20px 15px;
}
.dsprprofile-course-info table td{
    font-weight: 600;
    border-top: 1px solid rgba(0, 0, 0, .08);
    padding: 10px 0;
}
.dsprprofile-course-info table td:first-child{
    color: var(--text-clr);
}
.dsprprofile-course-info table td:last-child,.dspr-bdy-content-sec .pr-pg-tbl-wrp table tr td:last-child{
    color: var(--primary-clr);
}
.dsprprofile-course-info table {
    width: 100%;
}
.dspr-bdy-content{
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    overflow: hidden;
    width: calc(100% - 316px);
    margin-left: auto;
}
.dspr-bdy-content-sec{
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--primary-clr);
    margin-bottom: 20px;
}
.dspr-bdy-content-sec.border-0 .dsbdy-cmn-table table td{
    border: 0;
}
/* .dspr-bdy-content-sec.border-0 .pr-pg-tbl-wrp table tr td:first-child{
    padding-left: 0;
} */
.dspr-bdy-content:has(.pr-pg-tbl-wrp){
    padding: 14px;
}
/* .dspr-bdy-content-sec.border-0 .pr-pg-tbl-wrp table tr td:last-child{
    padding-right: 0;
}
.dspr-bdy-content-sec.border-0 .pr-pg-tbl-wrp table tr:first-child td{
    padding-top: 0;
} */
.dspr-bdy-content-sec.border-0 .pr-pg-tbl-wrp table tr td{
    padding-left: 20px;
    padding-right: 20px;
}
.dspr-bdy-content-sec.border-0 .pr-pg-tbl-wrp table tr:first-child td{
    background: var(--secondary-clr);
}




/* new css */
.dspr-bdy-content-sec.border-0.applicant-profile .pr-pg-tbl-wrp table tr:first-child td{
    background: white;
}

.dspr-bdy-content-sec.applicant-profile-camp .pr-pg-tbl-wrp table tr td:last-child{
    color: var(--black);
}

.dspr-bdy-content-sec.border-0 .pr-pg-tbl-wrp table tr td {
    padding-left: 0px;
    padding-right:0px;
}

.dspr-bdy-content-sec.applicant-profile h3 {
    padding-bottom: 10px;
    border-bottom: 1px solid var(--primary-clr);
}

/* new css */






.dspr-bdy-content-sec.border-0 .pr-pg-tbl-wrp table tr:last-child td{
    padding-bottom: 0;
}
.dspr-bdy-content-sec>h2{
    background: var(--primary-clr);
    color: var(--white);
    font-size: 24px;
    font-weight: 600;
    padding: 10px 20px;
    margin-bottom: 15px;
}
.dspr-bdy-content-sec:last-child{
    margin-bottom: 0;
}
.pr-pg-tbl-wrp table{
    min-width: 500px;
}
.dspr-bdy-content-sec .pr-pg-tbl-wrp table tr td{
    width: 50%;
}

/* End Of Profile Page */

/* My Classes Page Begin */

.datepicker-body-wrp{
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: all ease-in-out .3s;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
    padding: 12px 20px;
}
.datepicker-body-wrp .cmn-btn{
    padding: 5px 10px;
    transition: all ease-in-out .3s;
}
.datepicker__header{
    display: flex;
    align-items: center;
    padding: 10px 20px;
    gap: 10px;
    justify-content: center;
    color: var(--white);
    background: var(--primary-clr);
    border-radius: 5px;
    font-weight: 600;
    width: auto;
    cursor: pointer;
}
.datepicker__header:hover{
    background: var(--primary-clr);
    color: var(--white);
}
.datepicker{
    position: relative;
}
.datepicker:hover .datepicker-body-wrp{
    opacity: 1;
    visibility: visible;
    transform: none;
}
.datepicker__footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    margin-top: 5px;
}
.datepicker__body select{
    cursor: pointer;
    background: url(./images/chevron-down-gray.svg) no-repeat calc(100% - 10px) center var(--white);
    background-size: 12px;
    color: var(--text-clr);
    margin-bottom: 10px;
    height: 46px;
    padding-right: 30px;
}
.box-table-container table{
    min-width: 2200px;
    width: 100%;
}
.boxtbl-outer{
    border-radius: 20px;
    padding: 30px 16px;
    background: var(--white);
}
.box-table-container,.ds-cmn-tble{
    width: 100%;
    overflow-x: auto;
    padding-bottom: 5px;
}
.box-table-container table tr td{
    padding: 30px;
    border: 1px solid rgba(102, 0, 0, .34);
    text-align: center;
    color: var(--primary-clr);
}
.box-table-container table tr td strong{
    color: var(--text-clr);
}
.box-table-container table tr th{
    padding: 10px 12px;
    border: 1px solid rgba(102, 0, 0, .34);
    text-align: center;
    color: var(--primary-clr);
}
.box-table-container table thead tr:first-child th:first-child{
    background: var(--primary-clr);
    color: var(--white);
}
.box-table-container::-webkit-scrollbar,.ds-cmn-tble::-webkit-scrollbar {
    height: 10px;
}
.box-table-container::-webkit-scrollbar-track,.ds-cmn-tble::-webkit-scrollbar-track{
    background: var(--secondary-clr);
    border-radius: 20px;
}
.box-table-container::-webkit-scrollbar-thumb ,.ds-cmn-tble::-webkit-scrollbar-thumb{
    background-color: var(--primary-clr);
    border-radius: 20px;
}
.classes-schedule-container {
    width: 100%;
}
.classes-schedule-filter{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding: 30px 25px;
}
button.cmn-btn.print-btn{
    padding: 10px 20px;
    cursor: pointer;
    transition: all ease-in-out .3s; 
} 
button.cmn-btn.print-btn:hover img{
    filter: brightness(0) saturate(100%) invert(9%) sepia(49%) saturate(5385%) hue-rotate(353deg) brightness(90%) contrast(111%);
}
.classes-schedule-container{
    background: var(--secondary-clr);
    border-radius: 20px;
}
/* .datepicker__body{
    background: #000;
} */

/* End Of My Classes Page */

/* My Assignments Page Begin */

.ds-cmn-table-wrp{
    padding: 15px;
    border-radius: 20px;
    background: var(--white);
}
.ds-content-head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}
.cmn-tab-head ul{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 4px 12px;
    background: var(--primary-clr);
    border-radius: 5px;
    position: relative;
}
.cmn-tab-head ul li:not(.tab-bg){
    color: var(--white);
    font-weight: 500;
    font-size: 18px;
    padding: 4px 30px;
    margin-right: 15px;
    position: relative;
    z-index: 1;
    flex: auto;
    background: transparent;
    cursor: pointer;
    -webkit-transition: all ease-in-out .3s;
    -moz-transition: all ease-in-out .3s;
    -ms-transition: all ease-in-out .3s;
    -o-transition: all ease-in-out .3s;
    transition: all ease-in-out .3s;
}
.cmn-tab-head ul li:last-child,.cmn-tab-head ul li:not(.tab-bg):last-child{
    margin-right: 0;
}
.cmn-tab-head ul li.active{
    color: var(--primary-clr);
}
.tab-bg{
    position: absolute;
    /* top: 50%; */
    /* transform: translateY(-50%); */
    left: 0;
    background: var(--white);
    height: calc(100% - 10px);
    width: 0;
    transition: all 0.3s ease;
    z-index: 0;
    border-radius: 8px;
}
.ds-cmn-tble table{
    width: 100%;
    min-width: 1600px;
}
.ds-cmn-table-wrp{
    width: 100%;
}
.toggle-text-wrapper {
    max-width: 300px;width: 100%;
}
.toggle-text-content {
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    line-height: 1.4;
    max-width: 300px;
}
.toggle-text-content.expanded {
    height: auto !important;
}
.read-more {
    color: var(--primary-clr);
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    margin-left: 5px;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}
.read-more i {
    margin-left: 3px;
    transition: transform 0.2s;
}
.read-more.expanded i {
    transform: rotate(0deg);
}
.ds-cmn-tble table tr th{
    padding: 10px;
    color: var(--primary-clr);
    font-weight: 700;
    border-bottom: 1px solid var(--primary-clr);
}
.ds-cmn-tble table tr td{
    padding: 10px;
    font-weight: 500;
}
.count-row table tbody {
    counter-reset: tbl-row;
}
.count-row table tbody tr {
    counter-increment: tbl-row;
}
.count-row table tbody tr td:first-child {
    position: relative;
    color: transparent;
}
.count-row table tbody tr td:first-child::before {
    content: counter(tbl-row);
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-clr);
    font-weight: 500;
}
.view-attachment-btn{
    background-color: var(--primary-clr);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    border-radius: 5px;
    width: 36px;
    height: 36px;
}
.file-upload{
    position: relative;
    cursor: pointer;
}
.file-upload input[type="file"]{
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
    cursor: pointer;
    width: 100%;
    height: 100%;
}
.file-upload-btn{
    background-color: var(--primary-clr);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 15px;
    border-radius: 2px;
    color: var(--white);
    gap: 5px;
    transition: all ease-in-out .3s;
    border: 1px solid var(--primary-clr);
}
.file-upload .file-upload-btn img{
    transition: all ease-in-out .3s;
}
.file-upload:hover .file-upload-btn img{
    filter: brightness(0) saturate(100%) invert(9%) sepia(49%) saturate(5385%) hue-rotate(353deg) brightness(90%) contrast(111%);
}
.file-upload:hover .file-upload-btn{
    background: var(--white);
    color: var(--primary-clr);
}
.file-upload-lg{
    width: 100%;
    height: 165px;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    border: 5px dashed var(--border-clr);
    cursor: pointer;
    margin-bottom: 10px;
}
.cmn-pop-head{
    margin-bottom: 30px;
    padding: 0 20px 20px;
    border-bottom: 1px solid rgba(0, 6, 6, .08);
}
.cmn-tab-head.dif{
    display: flex;
    align-items: center;
    justify-content: center;
}
.cmn-tab-head.dif ul li{
    flex: auto;
}
.cmn-popwrp .modal-content{
    background: transparent;
    box-shadow: none;
    border: 0;
    padding: 0;
}
.cmn-popwrp .modal-body{
    background: var(--white);
    border-radius: 24px;
    padding: 20px 0;
    border: 1px solid var(--primary-clr);
}
.modal-content .close{
    margin-left: auto;
    margin-bottom: 10px;
}
.cmn-pop-inr-content-wrp{
    padding: 0 20px;
}
.file-upload-lg input[type='file']{
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 9;
}
.file-upld-lg-design{
    max-width: 150px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.fupld-lg-icon{
    width: 42px;
    margin-bottom: 12px;
}
.fupld-lg-icon img{
    width: 100%;
}
.file-upld-lg-design p{
    color: var(--border-clr);
    font-size: 14px;
    text-align: center;
}
.cmn-pop-inr-content-wrp .note{
    color: var(--border-clr);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}
.cmn-pop-inr-content-wrp .note>p{
    margin-bottom: 0;
}
.pop800 .modal-dialog{
    max-width: 800px;
}
.pop650 .modal-dialog{
    max-width: 650px;
}
.ibtn{
    position: relative;
}
.ibtn-info{
    position: absolute;
    width: 350px;
    background: var(--white);
    top: 120%;
    left: 0;
    border-radius: 10px;
    padding: 30px 30px 20px 20px;
    border: 1px solid var(--primary-clr);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all ease-in-out .3s;
}
.ibtn-info.lg{
    width: 400px;
}
.ibtn-info.rt{
    right: 0;
    left: auto;
}
.ibtn-info.p15{
    padding: 20px 20px 15px 15px;
}
.ibtn-info.sm{
    width: 300px;
}
.ibtn-info.mdl{
    left: -150px;
}
.ibtn-info.show{
    opacity: 1;
    top: 100%;
    visibility: visible;
    pointer-events: all;
}
.ibtn-info.txt-black h3,.ibtn-info.txt-black .h3-title{
    font-size: 16px;
    display: block;
}
.ibtn-info p,.teachers-tbl .ds-class-left-content .ibtn-info p{
    font-size: 16px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-clr);
    margin-bottom: 10px;
}
.ibtn-info p:last-child,.teachers-tbl .ds-class-left-content .ibtn-info p:last-child{
    margin-bottom: 0;
}
.ibtn-info.sm p a{
    font-weight: 500;
}
.ibtn-info h3,.ibtn-info .h3-title{
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
}
.ibtn-info ul{
    list-style: disc;
    padding-left: 20px;
}
.ibtn-info ul li{
    font-size: 14px;
    color: var(--border-clr);
    font-weight: 500;
    margin-bottom: 5px;
}
.ibtn-info ul li:last-child{
    margin-bottom: 0;
}
.ibtn-close{
    position: absolute;
    right: 8px;
    top: 8px;
    line-height: 1;
}
.upload-list {
    width: 100%;
}
.uploads {
    list-style: none;
    padding: 0;
    margin: 0;
}
.upload-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
    flex-wrap: wrap;
}
.upload-item:last-child { border-bottom: none; }
.icon {
    width: 20px;
    margin-right: 12px;
}
.details {
    width: auto;
    padding-left: 8px;
    font-size: 14px;
}
.icon img{
    width: 100%;
}
.filename {
    display: block;
    font-weight: 500;
}
.timestamp {
    display: block;
}
.size {
    margin-right: 16px;
    margin-left: auto;
    border: 1px solid var(--border-clr);
    border-radius: 2px;
    padding: 3px 12px;
}
.status {
    display: flex;
    align-items: center;
    margin-right: 16px;
    margin-left: auto;
}
.retry-btn {
    background: none;
    border: none;
    margin-right: 8px;
    cursor: pointer;
}
.error-text {
    color: var(--primary-clr);
    border: 1px solid var(--primary-clr);
    padding: 3px 12px;
    border-radius: 2px;
    font-weight: 500;
}
.remove-btn {
    background: none;
    border: none;
    cursor: pointer;
}
.cmn-btn{
    transition: all ease-in-out .3s;  
}
.btn-wrp{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
/* .view-all-btn {
    display: block;
    width: 100%;
    padding: 10px 0;
    margin: 16px 0;
    text-align: center;
    border: 1px solid var(--border-clr);
    background: var(--white);
    cursor: pointer;
    font-weight: 500;
} */
.last-updated {
    text-align: left;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 15px 0;
    border-top: 1px solid var(--border-clr);
}
.upload-list .btn-wrp{
    margin: 20px 0;
}
.ds-cmn-tble.completed table{
    min-width: 1800px;
}
.submitted-on{
    display: flex;
    align-items: center;
    gap: 12px;
}
.submitted-tag{
    background: var(--green-clr);
    color: var(--white);
    padding: 3px 10px;
    border-radius: 2px;
}
.cmn-tbl-btn{
    background: var(--primary-clr);
    color: var(--white);
    padding: 3px 10px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.attached-doc-info{
    margin-bottom: 20px;
}
.attached-doc-card .btn-wrp{
    justify-content: flex-end;
}
.attached-doc-card .btn-wrp .cmn-btn{
    padding: 10px 20px;
}
.attached-doc-card{
    border: 1px solid var(--border-clr);
    background: var(--white);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
}
.attached-doc-card:last-child{
    margin-bottom: 0;
}
.cmn-pop-head h2{
    font-size: 24px;
}
.atndnc-filter-wrp{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    background: var(--white);
    border-radius: 20px;
    padding: 25px 15px;
    margin-bottom: 20px;
}
.atndnc-filter-form .subject-dropdown{
    width: 240px;
}
.atndnc-filter-options{
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.dropdown-toggle::after{
    display: none;
}
.dropdown-toggle{
    padding: 10px 12px;
    color: var(--primary-clr);
    border-radius: 5px;
    border: 1px solid var(--primary-clr);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    overflow: hidden;
}
.dropdown-toggle .label{
    overflow: hidden;
}
.dropdown-menu{
    background-color: var(--white);
    padding: 0;
    box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
}
.dropdown-menu label{
    padding: 8px 12px;
    border-bottom: 1px solid var(--border-clr);
    width: 100%;
    color: var(--border-clr);
    cursor: pointer;
    transition: all ease-in-out .3s;
}
.dropdown-menu label:hover,.dropdown-menu label:has(input[type='checkbox']:checked){
    background: var(--secondary-clr);
    color: var(--primary-clr);
}
.dropdown-menu label:last-child{
    border: 0;
}
.date-dropdown {
    width: 170px;
}
.date-dropdown .dropdown-menu{
    padding: 20px 12px;
    background-color: var(--white);
    box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
}
.date-dropdown .dropdown-menu select{
    margin-bottom: 10px;
    height: 46px;
    cursor: pointer;
    background: url(./images/chevron-down-gray.svg) no-repeat right 10px center var(--white);
    padding-right: 25px;
    font-weight: 600;
    color: var(--border-clr);
}
.date-dropdown .dropdown-menu .actions{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
}
.date-dropdown .dropdown-menu .actions button{
    padding: 6px 10px;
    background: var(--primary-clr);
    color: var(--white);
    border: 1px solid var(--primary-clr);
    border-radius: 5px;
    /* flex: auto; */
    transition: all ease-in-out .3s;
}
.date-dropdown .dropdown-menu .actions button:hover{
    background: var(--white);
    color: var(--primary-clr);
}
.atndnc-filter-form button[type='submit']{
    margin-left: auto;
    padding: 10px 20px;
    height: auto;
}

/* .attendance-calendar {
    max-width: 800px;
} */
.ds-cmn-tble.pending.attendance-pg table th,
.ds-cmn-tble.pending.attendance-pg table td {
    padding: 10px;
    border: 1px solid rgba(102, 0, 0, .34);
}
.ds-cmn-tble.pending.attendance-pg table td .date-number{
    display: block;
}
.ds-cmn-tble.pending.attendance-pg table td{
    padding: 12px;
    height: 120px;
    color: var(--text-clr);
    font-size: 21px;
    font-weight: 500;
    width: calc(100% / 7);
}
.date-cal-box{
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    align-items: flex-start;
}
.ds-cmn-tble.pending.attendance-pg table td.outside { 
    background: var(--secondary-clr);
}
.ds-cmn-tble.pending.attendance-pg .status{
    width: 100%;
}
.status {
    padding: 5px 12px;
    border-radius: 4px;
    color: var(--white);
    display: inline-block;
    font-size: 14px;
    margin-left: auto;
}
  
.cal-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-weight: bold;
    padding: 12px;
    color: var(--primary-clr);
    border: 1px solid rgba(102, 0, 0, .34);
}
.cal-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    border-top: 1px solid rgba(102, 0, 0, .34);
    border-left: 1px solid rgba(102, 0, 0, .34);
}
.cal-days .day {
    border-right: 1px solid rgba(102, 0, 0, .34);
    border-bottom: 1px solid rgba(102, 0, 0, .34);
    padding: 12px;
    min-height: 150px;
    position: relative;
    background: #fff;
    font-size: 21px;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}
.cal-days .day.outside {
    background: var(--secondary-clr);
    color: var(--text-clr);
}
/* .cal-days .day .date-number {
    position: absolute;
    top: 12px;
    left: 12px;
} */

/* Status badge */
.cal-days .day .status {
    display: block;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    width: 100%;
}
.status.present {
    background: var(--green-clr); 
    color: var(--white); 
}
.status.absent { 
    background: var(--red-clr);
    color: var(--white);
}
.status.late {
    background: var(--yellow-clr);
    color: var(--white);
}
.attendance-calendar .sec-head{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
}
.sec-head .cmn-btn{
    padding: 10px 20px;
    height: auto;
}
.attendance-calendar .sec-head h2{
    margin-bottom: 0;
}
.cal-weekdays >*{
    text-align: left;
}

/* End Of My Assignments Page */

/* My Fees Page Begin */

.select-yr{
    margin-left: auto;
}
.select-yr select{
    height: auto;
    padding: 10px 20px;
    background: url(./images/chevron-down-white.svg) no-repeat calc(100% - 10px) center var(--primary-clr);
    padding-right: 30px;
    background-size: 12px;
    color: var(--white);
    cursor: pointer;
    border-color: var(--primary-clr);
    min-width: 120px;
}
.fees-pg .print-btn img{
    filter: brightness(0);
    width: 20px;
}

/* End Of My Fees Page */

/* Request Transcript Page Begin */

.tbl-btn-new .cmn-tbl-btn{
    display: inline-flex;
    min-width: 120px;
    border-radius: 4px;
}
.autocomplete-item{
    padding: 8px 5px;
    border-bottom: 1px solid #858485;
    cursor: pointer;
    transition: all ease-in-out .3s;
}
.autocomplete-item:last-child{
    border: 0;
}
.autocomplete-item:hover{
    background: var(--secondary-clr);
    color: var(--primary-clr);
}
.autocomplete .dest-list{
    border-radius: 10px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
    /* position: absolute;
    top: 100%;
    left: 0; */
    width: 100%;
}
.autocomplete{
    width: 100%;
    position: relative;
    margin-bottom: 15px;
}
.dist-list-wrp.has-items {
    padding-bottom: 20px;
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    z-index: 9;
}
.autocomplete label{
    color: var(--primary-clr);
    margin-bottom: 8px;
    font-weight: 500;
}
.btn-sm,input[type="submit"].btn-sm, button[type="submit"].btn-sm, .btn-submit.btn-sm{
    padding: 10px 20px;
    height: auto;
}
.cmn-btn.h-40{
    height: 40px;
    padding-left: 20px;
    padding-right: 20px;
}

/* End Of Request Transcript Page */

/* Apply Leaves Page Begin */

.actions-wrp{
    display: flex;
    align-items: center;
    /* justify-content: center; */
    gap: 25px;
    /* padding: 0 15px; */
}
.actions-wrp button{
    border: 0;
    background: transparent;
    outline: 0;
    padding: 0;
    margin: 0;
}
.actions-wrp button {
    width: 45px;
    height: 45px;
    background: var(--white);
    border: none;
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    border-radius: 8px;
}
.actions-wrp button img{
    width: 15px;
}
.actions-wrp{
    height: 100%;
    align-items: flex-start;
}
.linecamped{
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    width: 100%;
    max-width: 300px;
}
.status-wrp{
    display: flex;
    align-items: center;
    gap: 6px;
}
.ds-cmn-tble.w1200 table{
    min-width: 1200px;
}
.multi-input-grp{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -12px 20px;
}
.multi-input-grp:last-child{
    margin-bottom: 0;
}
.multi-input-grp .input-grp{
    padding: 0 12px;
    width: 50%;
    margin-bottom: 0;
}
.input-grp{
    width: 100%;
    margin-bottom: 20px;
}
.input-grp:last-child{
    margin-bottom: 0;
}
.request-leave-form .input-grp:last-child{
    margin-bottom: 0;
}
.request-leave-form .input-grp label{
    color: var(--primary-clr);
    font-weight: 500;
    margin-bottom: 5px;
}
.request-leave-form .input-grp input,.request-leave-form .input-grp textarea{
    width: 100%;
    border: 1px solid var(--border-clr);
    border-radius: 8px;
    height: 48px;
    padding: 6px 12px;
}
/* .input-grp input[type='date']{
    background: url(./images/calender-icon-input.svg) no-repeat right 10px center var(--white);
    background-size: 15px;
    -webkit-appearance: none;
    -moz-appearance: textfield;
    appearance: none;
}
.input-grp input[type='time']{
    background: url(./images/clock-icon.svg) no-repeat right 10px center var(--white);
    background-size: 15px;
    -webkit-appearance: none;
    -moz-appearance: textfield;
    appearance: none;
} */
/* .input-grp input[type="date"]::-webkit-calendar-picker-indicator ,.input-grp input[type="time"]::-webkit-calendar-picker-indicator {
    display: none;
} */
.request-leave-form .input-grp textarea{
    height: 80px;
    resize: none;
}
.cmn-pop-inr-content-wrp >h2{
    margin-bottom: 25px;
    font-size: 32px;
}
.cmn-popwrp .modal-icon{
    width: 73px;
}
.cmn-popwrp .modal-icon img{
    width: 100%;
}
.cmn-popwrp .sec-head h2{
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-clr);
}
.cmn-popwrp.popwrp .modal-body{
    padding: 50px 20px;
}
.cmn-popwrp.popwrp .modal-body .sec-head{
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
}

/* End Of Apply Leaves Page */

/* Notice Board Page Begin */

.notice-info-wrp{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 100%;
    z-index: 999;
    transition: all ease-in-out .3s .3s;
}
.notice-info-wrp.active{
    left: 0;
}
.overlay{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    z-index: 1;
    transition-delay: 0;
    opacity: 0;
    transition: all ease-in-out .3s;
}
.notice-info-wrp.active .overlay{
    opacity: 1;
    transition-delay: .6s;
}
.notice-info{
    position: relative;
    z-index: 2;
    background: var(--white);
    width: 520px;
    height: 100%;
    overflow-y: auto;
    margin-left: auto;
    padding: 40px 0;
}
.nc-info-head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px 30px;
    border-bottom: 1px solid var(--border-clr);
}
.nc-info-head h2{
    font-weight: 400;
    color: var(--primary-clr);
    font-size: 24px;
    margin-bottom: 0;
}
.nc-info-head .notice-btn-close{
    width: 26px;
}
.nc-info-head .btn-back{
    font-size: 18px;
    color: var(--primary-clr);
}
.nc-info-body{
    padding: 30px;
    border-bottom: 1px solid var(--border-clr);
}
.nc-info-footer{
    padding: 30px 30px 0;
}
.nc-info-footer .notice-date{
    color: var(--border-clr);
    display: flex;
    align-items: center;
    gap: 6px;
}
.nc-info-body p{
    color: var(--border-clr);
}

/* ENd Of Notice Board Page */

/* Study Material Page Begin */

.cmn-tbl-btn.btn-disabled{
    pointer-events: none;
    background: var(--secondary-clr);
}
.has-submit{
    position: relative;
}
.has-submit input[type='submit']{
    position: absolute;
    right: 5px;
    height: calc(100% - 10px);
    top: 50%;
    transform: translateY(-50%);
    width: auto;
}
.has-submit input:not([type="submit"]) {
    padding-right: 100px;
}
.study-material-info-wrp{
    margin-bottom: 20px;
}
.study-material-info{
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--border-clr);
}
.study-material-info:last-child{
    margin-bottom: 0;
}
.links .attached-doc-info p a{
    color: #0011FF;
}
.attached-doc-info:last-child{
    margin-bottom: 0;
}
  
/* End Of Study Material Page */

/* End Of Dashboard */










.ds-cmn-table-wrp.grades-pg .ds-cmn-tble table ,.ds-cmn-table-wrp.request-transcript-pg .ds-cmn-tble table{
    min-width: 1200px;
}
.ds-cmn-tble.holiday-pg table th{
    border-bottom: 1px solid rgba(102, 0, 0, .34);
}
.ds-cmn-tble.holiday-pg table td{
    /* border: 1px solid rgba(102, 0, 0, .34); */
    padding: 12px;
}
.ds-cmn-tble.holiday-pg table td .status{
    min-width: 120px;
    text-align: center;
}
.ds-cmn-tble.holiday-pg table tbody tr:nth-child(7n) td,.ds-cmn-tble.holiday-pg table tbody tr:nth-child(7n) {
    background: var(--secondary-clr);
    border-color: var(--secondary-clr);
}
.ds-cmn-tble.holiday-pg table tbody tr:nth-child(7n) td:not(:first-child){
    background: var(--secondary-clr);
    text-align: center;
    opacity: 0.19;
    text-transform: uppercase;
    font-size: 40px;
    font-weight: 900;
    letter-spacing: 10px;
    color: var(--primary-clr);
    padding: 10px;
}
.multi-input-grp .input-grp input[type='number']::-webkit-inner-spin-button,.multi-input-grp .input-grp input[type='number']::-webkit-outer-spin-button{
    -webkit-appearance: none;
    appearance: none;
}
.w1440 table{
    min-width: 1440px;
}



.tablepagination{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 30px 0 20px;
}
.tbl-pagination-inr ul{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.tbl-pagination-inr ul li a{
    padding: 5px 10px;
    font-size: 16px;
    color: var(--secondary-clr);
    min-width: 30px;
    height: 30px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tbl-pagination-inr ul li.active a,
.tbl-pagination-inr ul li a:hover{
    color: var(--primary-clr);
}
.tbl-pagination-inr ul li a:hover img{
    filter: brightness(0);
}
.tbl-pagination-inr ul li:first-child a{
    border-radius: 5px 0 0 5px;
}
.tbl-pagination-inr ul li:last-child a{
    border-radius: 0 5px 5px 0;
}
.tbl-pagination-inr ul li:first-child a ,.tbl-pagination-inr ul li:last-child a{
    display: flex;
    align-items: center;
}
.tbl-pagination-inr ul li:first-child a img,.tbl-pagination-inr ul li:last-child a img{
    flex-shrink: 0;
    display: block;
    -webkit-transition: all ease-in-out .3s;
    -moz-transition: all ease-in-out .3s;
    transition: all ease-in-out .3s;
}
.tbl-pagination-inr ul li:first-child a  img{
    margin-right: 5px;
}
.tbl-pagination-inr ul li:last-child a img{
    margin-left: 5px;
}
.pages-select{
    display: flex;
    align-items: center;
    margin-left: auto;
    min-width: 250px;
}
.late-curfew-request-pg .pages-select form{
    width: auto;
}
.pages-select .formfield{
    display: flex;
    align-items: center;
}
.pages-select .formfield select{
    height: 30px;
    background: url(./images/chevron-down-gray.svg) no-repeat calc(100% - 10px) center var(--white);
    cursor: pointer;
    background-size: 12px;
    color: var(--primary-clr);
    border: 1px solid var(--border-clr);
    min-width: 40px;
    width: auto;
    flex: auto;
    height: auto;
    margin-right: 5px;
    font-weight: 500;
    padding: 6px 20px 5px 10px;
    background-position: calc(100% - 5px) center;
}
.pages-select .formfield label{
    margin-right: 10px;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 400;
}





/* QA */

.dropdown-year,
    .dropdown-period {
      position: relative;
      display: inline-block;
      cursor: pointer;
      user-select: none;
    }
    .dropdown-trigger {
      background: var(--primary-clr);
      color: var(--white);
      padding: 0.5rem 1rem;
      border-radius: 4px;
      min-width: 120px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .dropdown-arrow {
      border: solid var(--white);
      border-width: 0 2px 2px 0;
      display: inline-block;
      padding: 4px;
      transform: rotate(45deg);
      transition: transform 0.2s;
      margin-left: 0.5rem;
    }
    .dropdown-options {
      position: absolute;
      top: calc(100% + 4px);
      left: 0;
      background: var(--white);
      border: 0;
      padding: 10px 0;
      border-radius: 10px;
      box-shadow: 0 4px 4px rgba(0,0,0,0.25);
      overflow: hidden;
      opacity: 0;
      min-width: 100%;
      visibility: hidden;
      transform: translateY(-10px);
      transition: all 0.2s;
      z-index: 10;
    }
    .dropdown-period.open .dropdown-options,.dropdown-year.open .dropdown-options{
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    .dropdown-option {
      padding: 0.5rem 1rem;
      white-space: nowrap;
    }
    .dropdown-option:hover {
      background: var(--secondary-clr);
      color: var(--primary-clr);
    }
    .dropdown-year.open .dropdown-arrow,
    .dropdown-period.open .dropdown-arrow {
      transform: rotate(-135deg);
    }
.modal-backdrop.show{
    opacity: 0 !important;
}
.modal.show{
    backdrop-filter: blur(7.3px);
}
input[type='checkbox']{
    accent-color: var(--primary-clr);
}
.cmn-popwrp.popwrp .modal-body .sec-head.w100{
    max-width: 100%;
}
.late-curfew-request-pg .atndnc-filter{
    min-width: 40%;
}
.late-curfew-request-pg form,.late-curfew-request-pg .atndnc-filter-form{
    width: 100%;
}
.late-curfew-request-pg .atndnc-filter-form input,.late-curfew-request-pg .atndnc-filter-form select{
    border-color: var(--primary-clr);
    height: 48px;
    cursor: pointer;
}
.late-curfew-request-pg .atndnc-filter-form select{
    background: url(./images/chevron-down-primary.svg) no-repeat right 15px center;
    background-size: 12px;
}
#deleteRequest.cmn-popwrp.popwrp .modal-body .sec-head {
    max-width: 220px;
}
.w400 .modal-dialog{
    max-width: 400px;
}
.w400 .modal-dialog .cmn-pop-inr-content-wrp{
    padding: 0;
}
.w400 .modal-dialog .modal-body {
    padding: 30px 20px;
}
.company-info-label >*{
    border-right: 2px solid var(--primary-clr);
}
.dsprprofile-course-info table td:last-child{
    text-align: right;
}
#editFile .upload-item{
    padding: 12px;
    border: 1px solid var(--border-clr);
    margin-bottom: 10px;
    border-radius: 12px;
}
#editFile .upload-item:last-child{
    margin-bottom: 0;
}
.ds-cmn-tble.pending.attendance-pg .status{
    margin-right: 0;
}
.ds-cmn-tble.pending.attendance-pg table td{
    height: 170px;
}
.minw-160{
    min-width: 160px;
}
.daterangepicker.opensright:before{
    right: 30%;
    left: auto;
}
.notice-list .doc-download a{
    padding: 0;
    border: 0;
    background: transparent;
}
.notice-list .doc-download a:hover{
    background: transparent;
}
.notice-list .doc-download:hover a{
    filter: brightness(0) saturate(100%) invert(9%) sepia(49%) saturate(5385%) hue-rotate(353deg) brightness(90%) contrast(111%);
}

/* QA */



/* New CSS (After August 20) Begin */

.dropdown-options.show{
    opacity: 1;
    transform: none;
    visibility: visible;
}
.dropdown-trigger i{
    transition: all ease-in-out .3s;
}
.dropdown-trigger.active i{
    transform: rotate(225deg);
}
/* Ensure the content can wrap and is measured at the parent's width */
.toggle-text-wrapper { width: 100%; } /* keep your layout rules */
.toggle-text-content {
  display: block;            /* important so height and wrapping work */
  white-space: normal;       /* allow wrapping to multiple lines */
  word-wrap: break-word;
  word-break: break-word;
  overflow: hidden;          /* keep hidden when truncated */
  line-height: 1.4;          /* tune to match your design (used by script) */
}

/* Make the Read more/Show less link not force the whole block onto one line */
.toggle-text-content .read-more { white-space: nowrap; display: inline-block; }


/* End Of  New CSS (After August 20) */


/* Responsive Css */

@media only screen and (min-width: 1399px){
    .lfr-logo-cover{
        min-height: 582px;
    }
    .login-flow .container{
        max-width: 1280px;
    }
}



@media only screen and (max-width: 1399px){
    .dashboard-main.active .dashboard-body-head {
        padding-left: 244px;
    }
    .ibtn-info.mdl{
        left: -170px;
    }
    .ibtn-info.sm{
        width: 270px;
    }
    .dsbdy-cmn-card{
        padding: 12px;
    }
    .dsbdy-cmn-table.table-secondary.teachers-tbl{
        padding-right: 0;
    }
    .ibtn-close{
        width: 12px;
    }
    .ibtn-close img{
        width: 100%;
    }
    .ds-bdy-content-wrp {
        padding: 24px;
    }
    .dspr-bdy-content-sec .pr-pg-tbl-wrp table tr td:first-child {
        width: 35%;
    }
    .dspr-bdy-content-sec .pr-pg-tbl-wrp table tr td:last-child {
        width: 65%;
    }
}
@media only screen and (max-width: 1199px){
    .sidebar .sidebar-body{
        width: 0;
    }
    .sidebar.active .sidebar-body{
        width: 100%;
    }
    .sidebar .sidebar-toggler {
        transform: rotate(180deg);
    }
    .sidebar.active .sidebar-toggler {
        transform: rotate(0);
    }
    .sidebar.active{
        pointer-events: all;
    }
    .sidebar{
        pointer-events: none;
    }
    .dashboard-main.active .dashboard-body-head,.dashboard-main .dashboard-body-head{
        padding: 12px 24px 12px 244px;
    }
    .dashboard-main{
        padding-left: 0;
    }
    .sidebar-head{
        min-height: auto;
        height: 71px;
        padding: 12px;
    }
    .sidebar-body{
        padding: 40px 0 100px;
    }
    .login-panel-outer {
        padding: 0 40px 0 0;
    }
    .login-panel {
        padding: 30px;
    }
    .login-flow-right {
        padding: 55px 40px 40px 60px;
    }
    .login-flow-inr {
        padding: 100px 0 40px;
    }
    .login-flow{
        padding-bottom: 50px;
    }
    .logo {
        margin-bottom: 20px;
    }
    .lfr-logo-cover {
        height: 400px;
    }
    .otp-container input {
        width: 55px;
        height: 55px;
    }
    .ds-cmn-tble.pending.attendance-pg table td{
        height: 120px;
    }
    .sidebar.active{
        position: fixed;
    }
    .sidebar{
        position: absolute;
    }
}
@media only screen and (max-width: 991px){
    .dsbdy-student-img {
        width: 120px;
        height: 140px;
    }
    .dsbdy-student-content {
        width: calc(100% - 120px);
        padding-left: 12px;
    }
    .dsbdycmncd-head {
        padding: 0 12px 10px;
        margin: 0 -12px 10px;
    }
    .notice-list ul li a {
        gap: 8px;
        padding: 8px 0;
    }
    .ds-bdy-content {
        gap: 12px;
    }
    .w45 {
        width: calc(45% - 6px);
    }
    .w55 {
        width: calc(55% - 6px);
    }
    .dsbdy-student-content h1 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .dsbdycmncd-head h2 {
        font-size: 20px;
    }
    .w65 {
        width: calc(50% - 6px);
    }
    .w35 {
        width: calc(50% - 6px);
    }
    .dsbdy-cmn-table table td {
        padding: 8px;
    }
    .ds-class-img {
        width: 40px;
        height: 40px;
    }
    .ds-cls-left{
        padding-right: 8px;
    }
    .ds-cls-right{
        padding-left: 8px;
    }
    .ds-class-left-content p, .dscls-room-no {
        font-size: 14px;
    }
    .ds-class-left-content h3 {
        font-size: 14px;
    }
    .dscls-timing {
        font-size: 14px;
    }
    .dsbdy-cmn-table.table-secondary table td{
        padding: 6px 0;
    }
    .dsbdy-cmn-table::-webkit-scrollbar{
        height: 10px;
    }
    .dsbdy-cmn-table.tbl-text-left.tbl-text-primary table {
        width: 100%;
        min-width: 500px;
    }
    .ibtn-info.p15 {
        padding: 12px;
    }
    .ibtn-info.mdl {
        left: -150px;
    }
    .ibtn-info.sm {
        width: 280px;
        padding-right: 25px;
    }
    .dspr-bdy-content {
        padding: 12px;
        width: calc(100% - 292px);
    }
    .dspr-profile-cd-upr ,.dsprprofile-course-info{
        padding: 12px;
    }
    .ds-pr-profile-card{
        width: 280px;
    }
    .dspr-profile-cd-info h2 {
        font-size: 18px;
    }
    .dspr-profile-cd-info p, .dspr-profile-cd-info .user-id {
        font-size: 14px;
    }
    h1, .h1-title {
        font-size: 21px;
        margin-bottom: 10px;
    }
    .ds-pr-body{
        padding: 12px;
    }
    .ds-breadcrumb{
        padding: 12px 12px 0;
    }
    .dspr-bdy-content-sec>h2 {
        font-size: 20px;
        padding: 10px;
        margin-bottom: 10px;
    }
    .dsbdy-head-right{
        gap: 20px;
    }
    .login-panel-outer {
        padding: 0;
    }
    .login-flow-inr .row{
        --bs-gutter-y: 24px;
    }
    .login-panel {
        padding: 30px 20px;
    }
    .otp-container {
        justify-content: space-between;
    }
    .otp-container input {
        width: 45px;
        height: 45px;
    }
    .lfr-logo-cover {
        height: 280px;
        padding: 40px;
    }
    .login-flow-right {
        padding: 40px 40px 30px 50px;
    }
}
@media only screen and (max-width: 767px){
    .w55 ,.w45,.w35,.w65{
        width: 100%;
    }
    .ds-bdy-content-wrp {
        padding: 24px 12px;
    }
    .dsbdy-filter-wrp {
        padding: 10px 12px;
    }
    .dashboard-main.active .dashboard-body-head, .dashboard-main .dashboard-body-head {
        padding: 12px 12px 12px 212px;
    }
    .search-field {
        min-width: auto;
    }
    .sidebar-head .logo {
        width: 120px;
    }
    .sidebar{
        width: 200px;
    }
    .sidebar-body ul li a {
        padding: 8px;
        gap: 8px;
    }
    .search-field input[type="text"] {
        height: 40px;
    }
    .sidebar-head {
        height: 65px;
    }
    .dsbdy-head-right {
        gap: 10px;
    }
    .tgl-flscrn {
        width: 25px;
    }
    .profile-ctrl-toggler {
        gap: 6px;
    }
    .profile-ctrl-toggler .pr-pic {
        width: 35px;
        height: 35px;
    }
    .ds-pr-profile-card{
        width: 100%;
        margin-bottom: 12px;
    }
    .dspr-bdy-content {
        width: 100%;
    }
    .boxtbl-outer,.classes-schedule-filter{
        padding: 12px;
    }
    .cmn-tab-head ul li:not(.tab-bg){
        padding: 4px 12px;
        text-align: center;
    }
    .cmn-tab-head ul,.cmn-tab-head{
        width: 100%;
    }
    .ds-cmn-table-wrp,.atndnc-filter-wrp {
        padding: 12px;
        border-radius: 12px;
    }
    .cmn-btn{
        padding: 10px 15px;
        gap: 8px;
    }
    .cmn-pop-inr-content-wrp >h2 {
        margin-bottom: 15px;
        font-size: 24px;
    }
    .login-flow-right {
        padding: 55px 40px 40px 0;
    }
    .login-panel {
        padding: 20px;
    }
    .logo{
        padding-left: 20px;
    }
    .input-group{
        margin-bottom: 15px;
    }
    .login-flow {
        padding-bottom: 50px;
    }
    .textures .texture-2 {
        right: -161px;
        bottom: -152px;
        max-width: 720px;
    }
    .company-info-label >*{
        font-size: 14px;
        border: 0;
        padding: 0;
        margin-right: 12px;
    }
    
    .company-info-label >*:last-child{
        margin-right: 0;
    }
    .popwrp .modal-content {
        padding: 30px;
    }
    .popwrp .sec-head h2 {
        font-size: 32px;
    }
    .ds-cmn-tble.pending.attendance-pg table{
        min-width: 800px;
    }
    .login-flow .login-flow-left-wrp,.login-flow .login-right-wrp{
        width: 100%;
    }
    .login-flow-inr .row{
        flex-direction: column-reverse;
    }
    .lfr-logo-cover{
        height: 400px;
    }
    .otp-container input{
        height: 70px;
    }
}
@media only screen and (max-width: 575px){
    .search-field input[type="text"] {
        position: absolute;
        width: 200px;
        right: 0;
        top: 100%;
        z-index: 999;
        padding-right: 12px;
        display: none;
    }
    .search-field input[type="submit"]{
        height: 35px;
        width: 35px;
        position: static;
    }
    .input-grp.search-field:has(input[type="submit"]):hover input[type="text"] {
        display: inline-block;
      }
      
    .dsbdy-head-left{
        margin-left: auto;
    }
    .dsbdy-head-right{
        margin-left: 0;
    }
    .sec-head h2 {
        font-size: 18px;
    }
    .ds-content-head{
        gap: 10px;
    }
    .ibtn-info.rt{
        right: -150px;
    }
    .ibtn-info.lg{
        width: 320px;
    }
    .notice-info{
        width: 90%;
        padding: 30px 0;
    }
    .nc-info-head {
        padding: 0 12px 12px;
    }
    .nc-info-body{
        padding: 12px;
    }
    .nc-info-footer {
        padding: 12px 12px 0;
    }
    .nc-info-head h2 {
        font-size: 20px;
    }
    .sidebar-body ul li {
        margin-bottom: 6px;
    }
    .cmn-pop-inr-content-wrp {
        padding: 0 12px;
    }
    .last-updated{
        padding-bottom: 0;
    }
    .cmn-pop-head {
        margin-bottom: 20px;
        padding: 0 12px 12px;
    }
    .modal-content .close {
        width: 30px;
    }
    .cmn-pop-head h2 {
        font-size: 21px;
    }
    .attached-doc-card{
        padding: 12px;
    }
    p {
        margin: 0 0 10px 0;
    }
    .attached-doc-info {
        margin-bottom: 15px;
    }
    .attached-doc-card .btn-wrp .cmn-btn {
        padding: 8px 20px;
    }
    .cmn-pop-inr-content-wrp >h2 {
        margin-bottom: 15px;
        font-size: 21px;
    }
    .cmn-popwrp .modal-body {
        border-radius: 12px;
        padding: 12px 0;
    }
    .multi-input-grp .input-grp {
        padding: 0;
        width: 100%;
        margin-bottom: 12px;
    }
    .multi-input-grp .input-grp:last-child{
        margin-bottom: 0;
    }
    .input-grp{
        margin-bottom: 12px;
    }
    .multi-input-grp{
        margin: 0 0 12px;
    }
    .popwrp .cmn-btn {
        min-width: 120px;
    }
    .cmn-popwrp.popwrp .modal-body {
        padding: 30px 12px;
    }
    .cmn-popwrp .modal-icon {
        width: 60px;
        margin: 0 auto 12px;
    }
    .cmn-popwrp.popwrp .modal-body .sec-head{
        max-width: 100%;
    }
    .popwrp .sec-head p{
        margin-bottom: 15px;
    }
    .login-flow-inr {
        padding: 60px 0 40px;
    }
    .textures .texture-1 {
        left: -130px;
        top: -200px;
        max-width: 600px;
    }
    .textures .texture-2 {
        right: -161px;
        bottom: -112px;
    }
    input[type="submit"], button[type="submit"], .btn-submit{
        height: 48px;
    }
    .popwrp .modal-content {
        padding: 20px;
        border-radius: 12px;
    }
    .popwrp .sec-head h2 {
        font-size: 28px;
    }
    .popwrp .modal-icon{
        width: 60px;
    }
    .cmn-tab-head ul{
        gap: 10px;
    }
    .cmn-tab-head ul li:not(.tab-bg){
        margin-right: 0;
    }
    .resend-code button[type="submit"]{
        height: auto;
    }
    .login-flow-right {
        padding: 55px 40px 40px 20px;
    }
}
@media only screen and (max-width: 479px){
    .sidebar-head .logo {
        width: 100px;
    }
    .sidebar{
        width: 170px;
    }
    .dashboard-main.active .dashboard-body-head, .dashboard-main .dashboard-body-head {
        padding: 12px 12px 12px 180px;
    }
    .search-field input[type="submit"]{
        width: 35px;
        height: 35px;
    }
    .tgl-flscrn {
        width: 20px;
    }
    .dsbdy-filter-wrp{
        flex-wrap: wrap;
    }
    .dsbdy-filter-wrp select{
        width: 100%;
    }
    .dsbdy-student-img{
        width: 100%;
        margin-bottom: 12px;
        height: auto;
    }
    .dsbdy-student-content{
        width: 100%;
        padding: 0;
    }
    .ibtn-info.sm {
        width: 260px;
    }
    .dsbdy-cmn-table.table-secondary.teachers-tbl .ibtn-info.mdl {
        left: -150px;
    }
    .ibtn-info.mdl {
        left: -200px;
    }
    .ibtn-info p, .teachers-tbl .ds-class-left-content .ibtn-info p {
        font-size: 15px;
    }
    .box-table-container table tr td {
        padding: 20px;
    }
    .atndnc-filter-form .subject-dropdown,.date-dropdown{
        width: 100%;
    }
    .sec-head h2 ,.nc-info-head h2{
        font-size: 18px;
    }
    .btn-wrp {
        gap: 8px;
    }
    .ibtn-info.lg{
        width: 280px;
    }
    .cmn-btn.h-40{
        width: 100%;
    }
    .sidebar-head {
        height: 60px;
    }
    .ds-class-card{
        gap: 8px;
    }
    .ds-cls-left,.ds-cls-right{
        width: 100%;
        padding: 0;
        border: 0;
    }
    .ds-cls-info {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 8px;
    }
    .datepicker__header{
        width: 100%;
        padding: 10px 12px;
        justify-content: space-between;
    }
    .datepicker{
        width: 100%;
    }
    .ibtn-info {
        width: 280px;
        padding: 12px 30px 12px 12px;
    }
    .ibtn-info ul {
        padding-left: 15px;
    }
    .cmn-pop-head h2 {
        font-size: 20px;
    }
    .date-dropdown .dropdown-menu{
        width: 100%;
    }
    .cmn-pop-inr-content-wrp >h2 {
        margin-bottom: 12px;
        font-size: 20px;
    }
    input[type="text"], input[type="tel"], input[type="password"], input[type="email"], select{
        height: 48px;
    }
    .lfr-logo-cover {
        height: 250px;
        padding: 40px;
    }
    .login-flow-right {
        padding: 30px 30px 30px 0;
    }
    .login-flow-right::before {
        width: 75%;
    }
    .textures .texture-2 {
        right: -100px;
        bottom: -70px;
    }
    .login-panel {
        padding: 20px 12px;
    }
    .tablist-container {
        margin: 12px 0;
    }
    .login-heading {
        font-size: 20px;
        margin-bottom: 15px;
    }
    .logo {
        padding-left: 12px;
        width: 150px;
    }
    .textures .texture-1 {
        left: -80px;
        top: -140px;
    }
    .login-flow-inr {
        padding: 40px 0;
    }
    .popwrp .modal-content {
        padding: 12px;
    }
    .login-lg-cover-texture {
        left: -6px;
        top: 20px;
        width: 40px;
        height: 40px;
    }
    .lfr-logo-cover::after{
        width: 40px;
        height: 40px;
        right: -15px;
    }
    .otp-container input {
        width: 50px;
        height: 50px;
        flex: unset;
    }
    .otp-container {
        justify-content: center;
        gap: 8px;
    }
}
@media only screen and (max-width: 375px){
    .otp-container input {
        width: 40px;
        height: 40px;
    }
    .otp-container{
        justify-content: space-between;
        margin-bottom: 12px;
    }
    .login-flow-right {
        padding: 25px 25px 25px 10px;
    }
    .upload-item .icon {
        width: 15px;
        margin-right: 6px;
        flex-shrink: 0;
    }
    .upload-item .details {
        padding-left: 6px;
        font-size: 13px;
    }
    .upload-item .status{
        padding: 5px 8px 0;
        margin-right: 0;
    }
    .upload-item .size{
        margin-right: 8px;
    }
}