@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 0.3s;
  -ms-transition: all ease-in-out 0.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 0.3s;
  -ms-transition: all ease-in-out 0.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: 0.7;
  color: var(--text-clr);
}

:-ms-input-placeholder {
  opacity: 0.7;
  color: var(--text-clr);
}

::-moz-placeholder {
  opacity: 0.7;
  color: var(--text-clr);
}

:-moz-placeholder {
  opacity: 0.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, 0.04);
  box-shadow: 0 4px 10px rgba(0, 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 0.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 0.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, 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,
.ds-cmn-table-wrp.tab-cmn-content.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);
}

.cmn-btn:hover img {
  filter: brightness(0);
}

.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);
}

.red-txt img {
  filter: brightness(0) saturate(100%) invert(23%) sepia(89%) saturate(4205%)
    hue-rotate(358deg) brightness(90%) contrast(94%);
  width: 15px;
}

.red-txt:has(img) {
  display: flex;
  align-items: center;
  gap: 5px;
}

.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 0.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 0.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 0.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 0.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 0.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 0.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 0.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, 0.25);
  padding: 10px 0;
  position: absolute;
  right: 0;
  top: 120%;
  visibility: hidden;
  opacity: 0;
  transition: all ease-in-out 0.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, 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, 0.1);
}

.notice-list ul li:last-child a {
  border-bottom: 0;
}

.notice-list ul li a img {
  transition: all ease-in-out 0.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, 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, 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, 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% - 325px);
  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;
  color: #660000;
}

.dspr-bdy-content-sec.border-0 .dsbdy-cmn-table table tr td:first-child {
  color: #000;
}

/* .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);
}

.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 0.3s;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  padding: 12px 20px;
}

.datepicker-body-wrp .cmn-btn {
  padding: 5px 10px;
  transition: all ease-in-out 0.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/dropdown-upper.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,
.tab-cmn-inr-tbl {
  width: 100%;
  overflow-x: auto;
  padding-bottom: 5px;
}

.box-table-container table tr td {
  padding: 30px;
  border: 1px solid rgba(102, 0, 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, 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,
.tab-cmn-inr-tbl::-webkit-scrollbar {
  height: 10px;
}

.box-table-container::-webkit-scrollbar-track,
.ds-cmn-tble::-webkit-scrollbar-track,
.tab-cmn-inr-tbl::-webkit-scrollbar-track {
  background: var(--secondary-clr);
  border-radius: 20px;
}

.box-table-container::-webkit-scrollbar-thumb,
.ds-cmn-tble::-webkit-scrollbar-thumb,
.tab-cmn-inr-tbl::-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 0.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 0.3s;
  -moz-transition: all ease-in-out 0.3s;
  -ms-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.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,
.tab-cmn-inr-tbl table {
  width: max-content;
  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,
.tab-cmn-inr-tbl 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,
.tab-cmn-inr-tbl 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 0.3s;
  border: 1px solid var(--primary-clr);
}

.file-upload .file-upload-btn img {
  transition: all ease-in-out 0.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, 0.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,
.input-grp .note {
  color: var(--border-clr);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.cmn-pop-inr-content-wrp .note > p,
.input-grp .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 0.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 0.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: 3px;
  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, 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 0.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, 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 0.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, 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, 0.34);
}

.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border-top: 1px solid rgba(102, 0, 0, 0.34);
  border-left: 1px solid rgba(102, 0, 0, 0.34);
}

.cal-days .day {
  border-right: 1px solid rgba(102, 0, 0, 0.34);
  border-bottom: 1px solid rgba(102, 0, 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 0.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, 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,
.tab-cmn-inr-tbl.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: 100%;
  margin-bottom: 0;
}

.input-grp {
  width: 100%;
  position: relative;
  /* height: 46px; */
}

.input-grp:last-child {
  margin-bottom: 0;
}

.request-leave-form .input-grp:last-child {
  /* margin-bottom: 69px; */
}

.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: 126px;
  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 0.3s 0.3s;
}

.notice-info-wrp.active {
  left: 0;
}

.overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  transition-delay: 0;
  opacity: 0;
  transition: all ease-in-out 0.3s;
}

.notice-info-wrp.active .overlay {
  opacity: 1;
  transition-delay: 0.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, 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;
  padding: 0;
}
.tbl-pagination-inr ul li:first-child {
  padding-right: 5px;
}

.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 0.3s;
  -moz-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.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: end;
  margin: 0;
}

.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 {
  color: var(--white);
  min-width: 120px;
  display: flex;
  justify-content: space-between;
  align-items: center;

  width: 323px;
  height: 39px;
  angle: 0 deg;
  opacity: 1;
  border-radius: 5px;
  border-width: 1px;
  padding: 10px;
  border: 1px solid #660000;

  font-family: Urbanist;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  color: #660000;

  /* background-image: url(../images/dropdown-arrow-red.svg); */
  background-repeat: no-repeat;
  background-position: right 10px center; /* position arrow */
  background-size: 18px 18px; /* width × height of arrow */

  @media screen and (max-width: 600px) {
    width: 100%;
  }
}

.has-drpdn .ds-cmn-filter-wrp {
  @media screen and (max-width: 600px) {
    width: 100%;
  }
}

.has-drpdn .ds-cmn-filter-wrp .dsbdy-filter-wrp {
  @media screen and (max-width: 600px) {
    width: 100%;
  }
}

.has-drpdn .ds-cmn-filter-wrp .dsbdy-filter-wrp .dropdown-year {
  @media screen and (max-width: 600px) {
    width: 100%;
  }
}

.has-drpdn .ds-cmn-filter-wrp .dsbdy-filter-wrp {
  margin: 0;
}

.has-drpdn {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dropdown-arrow {
  border: solid var(--black);
  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%);
}

.doc-download.cmn-btn {
  display: inline-flex;
}

/* QA */

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

.dropdown-options.show {
  opacity: 1;
  transform: none;
  visibility: visible;
}

.dropdown-trigger i {
  transition: all ease-in-out 0.3s;
}

.dropdown-trigger.active i {
  transform: rotate(225deg);
}

.toggle-text-wrapper {
  width: 100%;
}

.toggle-text-content {
  display: block;
  white-space: normal;
  word-wrap: break-word;
  word-break: break-word;
  overflow: hidden;
  line-height: 1.4;
}

.toggle-text-content .read-more {
  white-space: nowrap;
  display: inline-block;
}

.sidebar-body ul li .sub-menu {
  background: var(--secondary-clr);
}

.sidebar-body ul li .sub-menu li a {
  position: relative;
  padding-left: 40px;
}

.sidebar-body ul li .sub-menu li {
  margin-bottom: 0;
}

.sidebar-body ul li .sub-menu li a::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: var(--black);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.sidebar-body ul li .sub-menu li:hover a {
  background: var(--white);
}

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

/* Applicant-User Flow Begin */

.timeline-steps {
  display: block;
  margin: 32px 0;
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 48px;
  top: 58px;
  height: 100%;
  bottom: 0;
  width: 2px;
  border: 2px dashed var(--primary-clr);
}

.timeline-item:last-child::before {
  display: none;
}

.timeline-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 60px;
  position: relative;
}

.timeline-left {
  width: 96px;
  min-width: 96px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.timeline-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 6px solid #f0e6e6;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 4px #fff;
}

.timeline-icon img {
  width: 28px;
  height: 28px;
  display: block;
  object-fit: contain;
}

.timeline-right {
  flex: 1;
  padding-right: 8px;
}

.timeline-right h3 {
  margin: 0 0 6px;
  font-size: 20px;
  color: var(--primary-clr);
  font-weight: 600;
}

.timeline-right p {
  margin: 0 0 12px;
  line-height: 1.45;
}

.timeline-list {
  margin: 0 0 12px 18px;
  list-style: disc;
  color: var(--black);
}

.timeline-list li {
  margin-bottom: 6px;
}

.muted {
  color: var(--border-clr);
  font-size: 14px;
}

.cmn-btn {
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
}

.application-accr {
  counter-reset: tbl-row;
}

.application-accr > .accr-item {
  counter-increment: tbl-row;
}

.application-accr > .accr-item .accr-head {
  position: relative;
  color: transparent;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.application-accr > .accr-item .accr-head h3 {
  margin-bottom: 0;
  color: var(--primary-clr);
  font-weight: 500;
  font-size: 22px;
}

.application-accr > .accr-item .accr-head::before {
  content: counter(tbl-row);
  /* position: absolute; */
  left: 0;
  top: 5px;
  color: var(--white);
  font-weight: 500;
  font-size: 24px;
  background: var(--primary-clr);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  width: 48px;
  height: 48px;
}

.application-accr > .accr-item .accr-head i {
  color: var(--primary-clr);
  font-size: 24px;
  margin-left: auto;
}

.application-accr .accr-item {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--secondary-clr);
}

.lbl-primary .input-grp label {
  color: var(--primary-clr);
  margin-bottom: 3px;
}

.accr-content {
  padding-top: 20px;
}

.txt-primary-2nd table tr td:nth-child(2),
.txt-primary-2nd table tr td:nth-child(2) a {
  color: var(--primary-clr);
}

.txt-semibold table tr td {
  font-weight: 600;
}

.ds-cmn-card-item {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  background: var(--white);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 7px rgba(0, 0, 0, 0.14);
  margin-bottom: 15px;
}

.ds-cmn-card-item:last-child {
  margin-bottom: 0;
}

.ds-cmn-card-item-left {
  display: flex;
  align-items: center;
  gap: 30px;
}

.ds-cmn-card-item-left h3 {
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-clr);
}

.ds-cmn-card-item-icon {
  width: 35px;
  height: 35px;
  padding: 4px;
  border-radius: 50%;
  background: var(--border-clr);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all ease-in-out 0.3s;
}

a.ds-cmn-card-item-icon {
  background: var(--secondary-clr);
}

a.ds-cmn-card-item-icon:hover {
  background: var(--border-clr);
}

.ds-breadcrumb.text-light h1 {
  font-weight: 500;
}

.ds-cmn-card-item-icon i,
.ds-cmn-card-item.completed .ds-cmn-card-item-icon img {
  display: none;
}

.ds-cmn-card-item.completed .ds-cmn-card-item-icon i {
  display: block;
  color: var(--white);
}

.ds-cmn-card-item.completed .ds-cmn-card-item-icon {
  background: var(--green-clr);
}

.ds-cmn-card-item.completed {
  background: #e2f8e2;
  border: 1px solid var(--green-clr);
}

.ds-cmn-card-item.completed a.ds-cmn-card-item-icon {
  background: var(--secondary-clr);
}

.ds-cmn-card-item.completed a.ds-cmn-card-item-icon img {
  display: block;
}

.agreement-wrap {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
  margin: 0 auto;
}

.agreement-header {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}

.steps {
  display: flex;
  align-items: center;
  /* gap: 16px; */
  padding-left: 4px;
  margin-bottom: 20px;
}

.step-bubble {
  width: 55px;
  height: 55px;
  font-size: 24px;
  border-radius: 50%;
  background: #f4f4f4;
  border: 2px solid var(--primary-clr);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-clr);
  font-weight: 600;
}

.step-bubble.inactive {
  border-color: #f4f4f4;
}

.step-bubble i {
  display: none;
}

.step-bubble.completed {
  font-size: 0;
}

.step-bubble.completed i {
  display: block;
  font-size: 24px;
  color: var(--green-clr);
}

.step-bubble.completed {
  border-color: var(--green-clr);
  background: #e2f8e2;
}

.step-line {
  width: 100px;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    var(--primary-clr) 0 6px,
    transparent 6px 14px
  );
  border-radius: 2px;
}

.agreement-content {
  color: #222;
  margin-top: 8px;
}

.policy-list {
  list-style: none;
  padding-left: 0;
  margin: 8px 0 18px;
  color: #333;
  line-height: 1.55;
}

.policy-list > li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 18px;
}

.policy-list > li:before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #333;
  font-size: 20px;
  line-height: 1;
}

.policy-list ul {
  list-style: disc;
  margin: 6px 0 0 22px;
  padding-left: 12px;
  color: #444;
}

.policy-list strong {
  color: #000;
}

.ack {
  font-weight: 600;
  margin-top: 8px;
  color: #222;
}

.field-label {
  display: block;
  font-weight: 600;
  color: var(--primary-clr);
}

.field-input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #e6e6e6;
  border-radius: 6px;
  font-size: 14px;
  box-sizing: border-box;
  background: #fff;
}

.signature-area {
  margin-top: 6px;
  border: 2px dashed var(--border-clr);
  border-radius: 6px;
  height: 125px;
  width: calc((100% - 24px) / 3);
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 12px;
  background: #fff;
  outline: none;
}

.signature-area:focus {
  box-shadow: 0 0 0 3px rgba(122, 20, 27, 0.06);
  border-color: #d8bfc0;
}

.sig-placeholder {
  color: #777;
  font-size: 13px;
}

.signature-area::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 8px;
  width: 18px;
  height: 18px;
  border-radius: 3px;
  background: linear-gradient(180deg, #fff, #f6f6f6);
  box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.03);
  border: 1px solid #e9e9e9;
}

.actions-row {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  align-items: center;
}

.form-msg {
  margin-top: 12px;
  color: var(--green-clr);
  font-weight: 600;
  min-height: 18px;
}

@media (max-width: 720px) {
  .agreement-wrap {
    padding: 18px;
  }

  .step-line {
    width: 60px;
  }

  .actions-row {
    flex-direction: column-reverse;
    align-items: stretch;
  }
}

.signature-fields-wrp {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  /* justify-content: space-between; */
}

.input-grp.has-multi-radio {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.input-grp.has-multi-radio input[type="radio"] {
  width: 15px;
  height: 15px;
  accent-color: var(--primary-clr);
}

.input-grp.has-multi-radio label {
  cursor: pointer;
  color: var(--border-clr);
}

.input-grp.has-multi-radio label:has(input[type="radio"]:checked) {
  color: var(--primary-clr);
}

.cmn-accr-head {
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: 500;
  width: 100%;
  color: var(--primary-clr);
}

.accr-content .input-grp p {
  color: var(--primary-clr);
  font-size: 14px;
  font-weight: 500;
}

.multi-input-grp-list .action-wrp button {
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border-radius: 50%;
  border: 1px solid var(--primary-clr);
  background: var(--white);
  color: var(--primary-clr);
  font-size: 14px;
}

.multi-input-grp-list {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.multi-input-grp-list .action-wrp {
  display: flex;
  align-items: center;
  gap: 12px;
}

.multi-input-grp-list .multi-input-grp {
  flex-grow: 1;
}

.warning-box {
  padding: 20px;
  background: #fff4d3;
  border-radius: 12px;
  font-weight: 500;
  margin-bottom: 30px;
}

.warning-box:last-child,
.cmn-suggestion-btn:last-child {
  margin-bottom: 0;
}

.input-grp.mb-lg label {
  margin-bottom: 10px;
}

.accr-cmn-inr-wrp .input-grp label {
  font-weight: 500;
}

.cmn-suggestion-btn {
  padding: 20px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--border-clr);
  text-align: center;
  width: 100%;
  margin-bottom: 20px;
}

ul.tuttion-list {
  padding-left: 20px;
}

.has-toggle-btn {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  /* gap: 10px; */
}

.has-toggle-btn label {
  color: var(--primary-clr);
}

.toggle-outer,
.toggle-btn-inr {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.toggle-btn-inr {
  gap: 6px;
}

.toggle-outer {
  width: 100%;
  justify-content: space-between;
}

.toggle-outer > * {
  width: calc(50% - 6px) !important;
}

.input-grp.has-toggle-btn > label {
  width: 100%;
}

.toggle-btn-wrp {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.toggle-btn-wrp input[type="checkbox"] {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  cursor: pointer;
}

.toggle-btn-wrp .toggle-btn {
  width: 38px;
  height: 18px;
  border-radius: 20px;
  background: var(--secondary-clr);
  position: relative;
  transition: all ease-in-out 0.3s;
}

.toggle-btn-wrp .toggle-btn::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--white);
  transition: all ease-in-out 0.3s;
}

.toggle-btn-wrp:has(input[type="checkbox"]:checked) .toggle-btn::before {
  left: calc(100% - 16px);
}

.toggle-btn-wrp:has(input[type="checkbox"]:checked) .toggle-btn {
  background: var(--green-clr);
}

.primary-label label {
  color: var(--primary-clr);
  font-weight: 500;
  margin-bottom: 4px;
}

label.has-brdr {
  border-bottom: 1px solid var(--border-clr);
  padding-bottom: 2px;
}

.installments-info-head {
  margin-bottom: 30px;
  width: 100%;
}

.installments-info-head label {
  width: 100%;
}

.datepicker-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: auto;
  border-radius: 12px;
  padding: 12px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  border: 2px solid rgba(115, 18, 20, 0.06);
  display: none;
  z-index: 999;
}

.datepicker-panel .flatpickr-calendar {
  box-shadow: none;
  -webkit-box-shadow: none;
}

.dp-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 12px;
}

.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month.flatpickr-prev-month {
  left: 85% !important;
}

.datepicker-panel .flatpickr-months .flatpickr-prev-month,
.datepicker-panel .flatpickr-months .flatpickr-next-month {
  height: 34px;
  padding: 0;
  border: 0;
}

.datepicker-panel .flatpickr-current-month,
.datepicker-panel .flatpickr-months .flatpickr-month {
  padding-top: 0;
  text-align: left;
  font-size: 16px;
  color: var(--primary-clr);
  font-weight: 600;
  left: 0;
}

.datepicker-panel .flatpickr-weekdays .flatpickr-weekday,
.datepicker-panel .flatpickr-day {
  color: var(--primary-clr);
  font-weight: 600;
}

.has-datepicker input {
  background: url(./images/calender-icon-input.svg) no-repeat calc(100% - 12px)
    var(--white);
  background-size: 15px;
}

.has-action .action-wrp {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 15px;
  padding-top: 18px;
  padding-right: 15px;
}

.has-action .input-grp {
  flex-grow: 1;
}

.has-action .action-wrp button {
  width: 25px;
}

.installments-info-body {
  padding: 0 12px 0;
}

.brdr-primary {
  border-color: var(--primary-clr);
}

#studentInfoModal .ds-cmn-info-card {
  border-color: var(--secondary-clr);
  position: relative;
  transition: all ease-in-out 0.3s;
}

#studentInfoModal .ds-cmn-info-card:has(input[type="checkbox"]:checked) {
  border-color: var(--primary-clr);
}

#studentInfoModal .ds-cmn-info-card input[type="checkbox"] {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  cursor: pointer;
  opacity: 0;
}

/* Table Design for report */
.attendance-root {
  width: calc(100% - 24mm);
  max-width: 1200px;
  margin: 12mm auto;
  background: var(--sheet-bg);
  padding: 18px 22px;
  box-sizing: border-box;
  /* box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06); */
}

.attendance-root header {
  margin-bottom: 10px;
}

.attendance-root h1 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
}

.attendance-root .subtitle {
  font-size: 13px;
  color: var(--muted);
  margin-left: 6px;
  font-weight: 600;
}

.attendance-root .student-line {
  margin-top: 8px;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
}

.attendance-root .divider {
  height: 4px;
  margin: 10px 0 14px 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.02));
}

.attendance-root .content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.attendance-root .panel {
  padding: 0;
}

.attendance-root .panel h2 {
  margin: 0 0 10px 0;
  font-size: 17px;
  font-weight: 800;
  text-align: center;
  letter-spacing: 1px;
  border-bottom: 2px solid var(--secondary-clr);
  padding-bottom: 10px;
}

.attendance-root table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  color: var(--accent);
}

.attendance-root thead th {
  font-weight: 700;
  padding: 6px 8px;
  border-bottom: 2px solid var(--rule);
  text-align: left;
  font-size: 13px;
}

.attendance-root tbody td {
  padding: 8px 8px;
  vertical-align: top;
  color: var(--accent);
  line-height: 1.05;
}

.attendance-root .absences thead th:nth-child(1) {
  width: 8%;
}

.attendance-root .absences thead th:nth-child(2) {
  width: 14%;
}

.attendance-root .absences thead th:nth-child(3) {
  width: 46%;
  text-align: right;
}

.attendance-root .absences thead th:nth-child(4) {
  width: 8%;
  text-align: left;
}

.attendance-root .absences thead th:nth-child(5) {
  width: 24%;
}

.attendance-root .absences tbody tr + tr td {
  border-top: 1px solid var(--thin);
}

.attendance-root .spacer-row td {
  padding: 6px 0;
  border: none;
  height: 8px;
}

.attendance-root .muted {
  color: var(--muted);
  font-weight: 600;
}

.attendance-root .absences tbody tr + tr td[colspan="5"],
.attendance-root .absences .spacer-row {
  border-top: 1px solid var(--secondary-clr);
  border-bottom: 1px solid var(--secondary-clr);
  padding: 2px 0;
  border-left: 0;
  border-right: 0;
}

.attendance-root .totals thead th:nth-child(1) {
  width: 56%;
}

.attendance-root .totals thead th:nth-child(2),
.attendance-root .totals thead th:nth-child(3),
.attendance-root .totals thead th:nth-child(4),
.attendance-root .totals thead th:nth-child(5),
.attendance-root .totals thead th:nth-child(6) {
  width: 8%;
  text-align: right;
}

.attendance-root .totals tbody td {
  padding: 8px 8px;
}

.attendance-root .totals tbody td:first-child {
  text-align: left;
}

.attendance-root .totals tbody td:not(:first-child) {
  text-align: right;
  font-weight: 600;
}

.attendance-root .group-sep {
  border-top: 1px solid var(--rule);
  margin: 10px 0;
}

.attendance-root .rtl {
  direction: rtl;
  unicode-bidi: embed;
  text-align: right;
}

@media print {
  body {
    background: #fff;
  }

  .attendance-root {
    box-shadow: none;
    margin: 0;
    width: 100%;
    padding: 6mm;
  }

  .attendance-root .divider {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  table,
  tr,
  td {
    page-break-inside: avoid;
  }
}

@media (max-width: 900px) {
  .attendance-root {
    margin: 10px;
    padding: 12px;
  }

  .attendance-root .content {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

.attendance-root td,
.attendance-root th {
  font-family: var(--sans);
}

.attendance-root thead th {
  font-size: 13px;
}

.attendance-root tbody td {
  font-size: 13px;
}

/* Table Design for report */

.ds-cmn-ic-ftr .cmn-btn {
  text-align: center;
}

.cmn-white-btn {
  display: flex;
  align-items: center;
  padding: 6px 15px;
  border: 1px solid var(--secondary-clr);
  height: 48px;
  gap: 6px;
  border-radius: 8px;
  transition: all ease-in-out 0.3s;
}

.cmn-white-btn img {
  transition: all ease-in-out 0.3s;
}

.cmn-white-btn:hover {
  color: var(--white);
  background: var(--primary-clr);
  border-color: var(--primary-clr);
}

.cmn-white-btn:hover img {
  filter: brightness(0) invert(1);
}

/* AK271025 Begin */
/* right sidebar */

.offcanvas-end {
  width: 420px;
  background-color: #fff;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
}

.offcanvas-header {
  border-bottom: 1px solid #ddd;
  padding: 1rem 1.5rem;
}

.offcanvas-body {
  padding: 1.5rem;
  overflow-y: auto;
}

.button-sidebar {
  right: 23px !important;
  height: auto !important;
  top: 5px !important;
  background-color: #fff !important;
  border: none !important;
}

.fieldSettingsLabel {
  margin: 0 !important;
  font-weight: 400;
  font-style: Regular;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #660000;
}

.edit-img {
  margin-right: 5px;
}

.accr-content {
  display: none;
}

.accr-head {
  cursor: pointer;
}

.accr-head h3 {
  margin: 0;
  font-size: 1.1rem;
}

.rotate {
  transform: rotate(180deg);
}

.secure-label {
  margin: 0;
  color: #660000;
}

/* End Of AK271025 */

/* AK281025 Begin */

/* tuttion contract */

.student-key p {
  font-weight: 600;
  font-style: SemiBold;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #000606;
}

.student-value p {
  font-weight: 600;
  font-style: SemiBold;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #660000;
}

.inp-label {
  font-weight: 600;
  font-style: SemiBold;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #000606;
}

.text-tuttion {
  margin-top: 20px;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0%;
  color: #6a6a6a;
}

.text-tuttion span {
  color: #000606;
}

.tuttion-list li {
  list-style: disc;
}

.initial-text {
  width: 270px !important;
  height: 48px !important;
  opacity: 1;
  gap: 8px;
  color: #6a6a6a !important;
  border: 1px solid #6a6a6a !important;
  margin-top: 20px;
  margin-bottom: 20px;
}

.bill-heading {
  font-weight: 400;
  font-style: Regular;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 4%;
  vertical-align: middle;
  color: #000606;
}

.bill-text {
  font-weight: 600;
  font-style: SemiBold;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #000606;
}

.amount p {
  font-weight: 600;
  font-style: SemiBold;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #660000;
}

.amount-block {
  display: flex;
  gap: 60px;
  margin-bottom: 20px;
}

.tuttion-dormitory {
  font-weight: 600;
  font-style: SemiBold;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0%;
  color: #6a6a6a;
  margin: 20px 0;
}

.name-block-f {
  display: flex;
  flex-direction: column;
}

.name-block-f input {
  margin: 10px 0;
}

.sign {
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0%;
  color: #660000;
  margin-top: 20px;
  cursor: pointer;
}

.sign span {
  color: #de2a0e;
}

.sign-texts {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.textarea-sign {
  width: 100%;
  height: 127px;
  opacity: 1;
  gap: 24px;
  border: 1px dashed #660000;
}

.terms {
  font-weight: 600;
  font-style: SemiBold;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0%;
  color: #6a6a6a;
  margin-top: 40px;
}

.terms span {
  color: #660000;
}

.agreeBtn {
  width: 133px;
  height: 48px;
  opacity: 1;
  gap: 10px;
  border-radius: 5px;
  padding-right: 20px;
  padding-left: 20px;
  background-color: #660000;
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0%;
  color: #ffffff;
  margin-right: 20px;
}

.cnclbtn {
  width: 104px;
  height: 48px;
  opacity: 1;
  gap: 10px;
  border-radius: 5px;
  padding-right: 20px;
  padding-left: 20px;
  border-width: 1px;
  border: 1px solid #660000;
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0%;
  color: #660000;
}

/* add signature popup */

.btn-close-dark {
  position: absolute;
  right: 0;
  top: -50px;
}

.popup-sign {
  width: 100%;
  height: 530px;
  opacity: 1;
  border-radius: 20px;
  border-width: 2px;
  border: 2px solid #660000;
}

.popup-overlay {
  max-width: 824px;
}

.modal-title {
  font-weight: 400;
  font-style: Regular;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 4%;
  vertical-align: middle;
  color: #000606;
  padding: 0 !important;
}

.modal-header {
  padding: 20px;
  border-bottom: 0;
  padding-bottom: 0;
}

.fullname-label {
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0%;
  color: #660000;
  margin-bottom: 10px;
}

.full-name {
  width: 359px;
  height: 48px;
  opacity: 1;
  border-radius: 8px;
  border-width: 1px;
  padding-top: 14px;
  padding-right: 12px;
  padding-bottom: 14px;
  padding-left: 12px;
  gap: 221px;
  border: 1px solid #6a6a6a;
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0%;
  color: #6a6a6a;
}

.border-dashed {
  border-style: dashed !important;
}

.signature-wrapper {
  position: relative;
}

.signature-content {
  position: absolute;
  width: 100%;
  top: 0;
  left: 100%;
  opacity: 0;
  transition: all 0.4s ease;
}

.signature-content.active {
  left: 0;
  opacity: 1;
}

.signature-content.exit-left {
  left: -100%;
  opacity: 0;
}

.btn-dark {
  background-color: #600000;
  border-color: #600000;
}

.btn-outline-dark:hover {
  background-color: #600000;
  color: #fff;
}

.button-slider {
  width: 324px;
  height: 37px;
  margin-top: 20px;
  background-color: #660000;
}

.btn-check:checked + .btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check) + .btn:active {
  background-color: #fff !important;
  color: #660000;
}

.btn-group > .btn-group:not(:first-child),
.btn-group > :not(.btn-check:first-child) + .btn {
  color: #fff;
}

.draw-text {
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0%;
  color: #000606;
  margin: 0;
}

.draw-text span {
  color: #660000;
}

.clr-txt {
  width: 75px;
  height: 31px;
  opacity: 1;
  border-radius: 5px;
  border-width: 1px;
  padding-top: 5px;
  padding-right: 15px;
  padding-bottom: 5px;
  padding-left: 15px;
  gap: 10px;
  border: 1px solid #660000;
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #660000;
}

.draw-top {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  margin-top: 10px;
}

.textarea-draw {
  width: 100%;
  border: 2px dashed #6a6a6a;
  margin-top: 5px;
}

.insertbtn {
  width: 128px;
  height: 37px;
  opacity: 1;
  border-radius: 5px;
  padding-top: 8px;
  padding-right: 15px;
  padding-bottom: 8px;
  padding-left: 15px;
  gap: 10px;
  background: #660000;
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #ffffff;
}

.btn-check:checked + .btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check) + .btn:active {
  color: #660000 !important;
}

/* End Of AK281025 */

/* End Of Applicant-User Flow */

/* DK-CSS */

.avaiable-slots-actions button.cmn-btn.primary-assign-btn {
  height: auto;
}

.multi-input-grp-list .action-wrp button.new-css-cta {
  width: auto;
  height: 45px;
  padding: 0px 30px;
  border-radius: 5px;
  background: var(--primary-clr);
  color: #fff;
}

/* DK-CSS */

/* SS201125 Begin */

.has-drpdn .ds-cmn-filter-wrp .dsbdy-filter-wrp .dropdown-year {
  padding-right: 0 !important;
}
.pages-select form {
  margin-bottom: 0 !important;
}
.pages-select .formfield {
  align-items: center;
}
.ds-calendar-pg .box-table-container table.calendar-table tr th {
  color: var(--primary-clr);
}

/* End Of SS201125 */

/* 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;
  }

  .timeline-steps {
    padding-left: 20px;
  }

  .timeline-steps::before {
    left: 16px;
  }

  .timeline-item {
    flex-direction: row;
    gap: 12px;
  }

  .timeline-left {
    width: 44px;
    min-width: 44px;
  }

  .timeline-icon {
    width: 40px;
    height: 40px;
    border-width: 4px;
  }

  .timeline-right h3 {
    font-size: 18px;
  }
}

@media only screen and (max-width: 575px) {
  .search-field input[type="text"] {
    position: absolute;
    width: calc(100% - 40px);
    right: 0;
    top: 0;
    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;
  }

  .timeline-item {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 0;
  }

  .timeline-left {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    padding-left: 8px;
    margin-bottom: 8px;
  }

  .timeline-steps::before {
    display: none;
  }
}

.atndnc-filter-options.multi-input-grp select {
  background-image: url(../images/dropdown-arrow-red.svg);
}

.dropdown-year .dropdown-options {
  right: 0 !important;
  padding: 10px;
  max-height: 300px;
  overflow-y: auto;
  scrollbar-width: none;
}

.searchIcon {
  position: absolute;
  right: 13px;
  top: 14px;
  z-index: 99;
}

.search-pointer {
  position: relative;
  height: 46px;
  top: -46px;
  cursor: pointer;
}

.Container-s {
  width: 709px;
}

.add-form-element .added-element-card .sl-count::before {
  color: #660000 !important;
}

.spradmin .new-request-form {
  margin-bottom: 20px !important;
}

.edit-cmnt-blocks {
  display: flex;
  flex-direction: column;
}

.comment-box {
  height: 126px !important;
  width: 100% !important;
  padding-left: 5px;
  padding-right: 5px;
}

/* new css */
.btn-search {
  height: 50px;
}
#applicantTableContainer {
    height: 550px;
}
table#applicantTable thead {
    position: sticky;
    top: 0;
    background-color: #f4f4f4;
    z-index: 9;
}
.ds-pr-body {
    padding-top: 20px;
}
.ds-breadcrumb {
    padding-top: 20px;
}
.dsbdy-search-form .input-grp.search-field {
    height: 46px;
}