@charset "UTF-8";
@media print {
  html,
  body {
    display: block; /* hide whole page */
  }
}
/* @font-face {
    font-family: madetommy;
    src: url("/assets/app/fonts/made_tommy/regular.otf") format("opentype");
  } */
/* @font-face {
  font-family: manrope;
  src: url("/assets/app/fonts/manrope/Manrope-Regular.ttf") format("truetype");
} */
:root {
  /* Brand Theme Colors */
  --theme: #3498db;
  --input-border: #bfd8d0;
  --bg-primary: #3498db;
  --bg-secondary: #4cbf7a;
  
  /* Border Colors */
  --lbr-color: rgb(25 22 22 / 14%);
  --br-thinkness: 0px;
  --br-color: rgb(93 93 93 / 14%);
  --border-light: #e7e7e7;
  --border-medium: #d3d3d3;
  --border-dark: #a9a9a9;
  
  /* Background Colors */
  --bg: #ffffff;
  --lbg: #e8f4ff;
  --dash: white;
  --exambg: #eaecf2;
  --full-div: rgb(255 255 255 / 49%);
  
  /* Scrollbar Colors */
  --track: #dedde9;
  --thumb: #cacaca;
  
  /* Font Colors */
  --font-light: #8a9988;
  --font-dark: #0a0d14;
  --font-invert: white;
  --dark: black;
  
  /* Primary & Secondary Colors */
  --primary: #3498db;
  --secondary: #4cbf7a;
  --primary-light: #a8d5f2;
  --secondary-light: #a3dfc1;
  
  /* Status Colors */
  --success-color: #16a34a;
  --success-bg: #9af4a1;
  --error-color: #e02020;
  --error-bg: #febcbc;
  --warning-color: #b79600;
  --warning-bg: #ffd600;
  --info-color: #3498db;
  --info-bg: #e8f4ff;
  
  /* Gray Scale */
  --gray-50: #fafafa;
  --gray-100: #f3f4f6;
  --gray-200: #eaeaf2;
  --gray-300: #dadada;
  --gray-400: #a1a1a1;
  --gray-500: #666666;
  --gray-600: #4a5568;
  --gray-700: #333333;
  --gray-800: #1a1a1a;
  --gray-900: #0a0a0a;
  
  /* Overlay Colors */
  --overlay-dark: rgba(0, 0, 0, 0.5);
  --overlay-light: rgba(255, 255, 255, 0.79);
  
  /* Subject Colors */
  --physics-color: #77bcc8;
  --chemistry-color: #1996d5;
  --mathematics-color: #f4c46a;
  --biology-color: #f05a43;
  
  /* Special Colors */
  --disabled-color: #a5a5a5;
  --disabled-bg: #e6e6e6;
  --highlight-color: #ffdd00;
  --purple-primary: #9c27b0;
  --purple-light: #e5ccff;
}
body {
  width: 100%;
  height: 100%;
  background: var(--dash);
  font-family: Manrope, proxima-nova, Arial, sans-serif;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  scrollbar-width: thin;
  scrollbar-color: var(--track);
  color: var(--font-dark);
}
.calculator div {
  width: 100%;
  float: left;
}
.calculator span {
  width: 200px;
  border: 1px solid;
  float: left;
  padding: 2px;
}
body.dashboard,
body.home {
  background: var(--dash);
}
body.dashboard .page-header,
body.home .page-header {
  background: var(--dash);
  padding: 0 28px;
  height: 73px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.yellow-bg {
  background: var(--highlight-color);
}
.dull {
  background: var(--bg);
}
.page-header.fixed {
  position: fixed;
  z-index: 1;
  background-color: var(--dash);
  box-shadow: 0px 0 0 0px rgb(12 0 46 / 6%);
  height: 60px;
  padding: 5px 38px 0px 30px;
}
body div,
body ul {
  scrollbar-width: thin;
}
/* width */
::-webkit-scrollbar {
  width: 5px;
  height: 0px;
}
::-webkit-scrollbar:hover {
  width: 5px;
  height: 0px;
}
/* Track */
::-webkit-scrollbar-track {
  background: var(--track);
  margin-top: 10%;
  margin-bottom: 10%;
  border-radius: 3px;
}
.nice-select ::-webkit-scrollbar-track {
  background: var(--track);
  margin-top: 30%;
  margin-bottom: 20%;
  margin-right: 10px;
  border-radius: 3px;
}
/* Animations */
@keyframes right-swipe {
  from {
    opacity: 0.1;
    margin-left: -15px;
    margin-right: 15px;
  }
  to {
    opacity: 1;
    margin-left: 0px;
    margin-right: 0px;
  }
}
/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--thumb);
  border-radius: 3px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--font-light);
}
div:-webkit-scrollbar {
  width: 1px;
  height: 1px;
  background-color: #aaa; /* or add it to the track */
}

/* Add a thumb */
div:-webkit-scrollbar-thumb {
  background: #000;
}
@-webkit-keyframes side {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes side {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@-webkit-keyframes bottomToTop {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes bottomToTop {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@-webkit-keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(0);
  }
  to {
    -webkit-transform: scale(1);
  }
}
@keyframes zoom {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
button,
input {
  outline: none !important;
  border: none;
}
button {
  border-radius: 10px;
  padding: 0px 10px;
  background: var(--lbg);
  color: var(--font-dark);
}
a {
  color: var(--primary);
  text-decoration: none;
}
.btn {
  cursor: pointer;
  font-weight: 500;
  border-width: 2px;
  font-style: normal;
  letter-spacing: 1px;
  margin: 0.4rem 0.8rem;
  white-space: normal;
  transition-property: background-color, color, border-color, box-shadow;
  transition-duration: 0.3s, 0.3s, 0.3s, 2s;
  transition-timing-function: ease-in-out;
  padding: 1rem 2rem;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  background: var(--primary);
  color: white;
  border-radius: 40px;
}
a:hover {
  color: var(--primary);
  text-decoration: none;
}
a:focus {
  color: var(--primary);
  text-decoration: none;
}
b,
strong {
  font-weight: 500;
  color: black;
}
td b,
td strong {
  font-weight: bold;
  color: black;
}
li strong {
  color: var(--font-dark);
}
label {
  margin-top: 9px;
}
.bg-white {
  background: transparent !important;
}
.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 7px;
  outline: none;
  border: none;
  background: transparent;
}
.lds-ellipsis div {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
  background: var(--secondary);
}
.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
  background: var(--primary);
}
.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
  background: var(--primary);
}
.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
  background: var(--primary);
}

@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}
/* Message View*/
blink {
  text-decoration: blink;
  -webkit-animation-name: blinker;
  -webkit-animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-direction: alternate;
  animation-name: blinker;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-direction: alternate;
}
@-webkit-keyframes blinker {
  from {
    opacity: 1;
  }
  to {
    opacity: 0.5;
  }
}
@keyframes blinker {
  from {
    opacity: 1;
  }
  to {
    opacity: 0.5;
  }
}
#MathJax_Message {
  z-index: 0 !important;
  display: none !important;
}
.justify-center {
  justify-content: center;
  display: flex;
  padding-top: 10px;
}

.examitem .left-100.justify-center {
  position: sticky;
  bottom: -16px;
  background: white;
  padding-bottom: 20px;
}
.center {
  text-align: center;
}
/* scrol bar */
.loader {
  border: 4px solid #d6cae3;
  border-top: 4px solid var(--primary);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.error {
  font-size: 12px;
  width: 100%;
  text-align: left;
}
input[type="checkbox"] + label {
  display: block;
  cursor: pointer;
  float: left;
  margin-right: 10px;
  font-weight: normal;
  margin-top: 5px;
}

input[type="checkbox"] {
  display: none;
}

input[type="checkbox"] + label:before {
  content: "";
  border: 0.1em solid #000;
  border-radius: 0.2em;
  display: inline-block;
  width: 22px;
  height: 22px;
  padding-left: 3px;
  padding-bottom: 0.2em;
  padding-top: 0px;
  margin-right: 9px;
  vertical-align: bottom;
  color: transparent;
  transition: 0.2s;
  font-size: 14px;
}

.wa {
  background: rgba(249, 255, 249, 0.45);
  padding: 5px 15px;
  border-radius: 6px;
  /* z-index: 30001; */
  margin-bottom: 20px;
}
input[type="checkbox"] + label:active:before {
  transform: scale(0);
}

input[type="checkbox"]:checked + label:before {
  background-color: var(--bg);
  border-color: var(--purple-primary);
  color: var(--purple-primary);
  content: "\2713";
}

input[type="checkbox"]:disabled + label:before {
  transform: scale(1);
  border-color: #aaa;
}

input[type="checkbox"]:checked:disabled + label:before {
  transform: scale(1);
  background-color: #bfb;
  border-color: #bfb;
}
/**/
input[type="radio"] + label {
  display: block;
  cursor: pointer;
  float: left;
  text-align: left;
  display: block;
  cursor: pointer;
  float: left;
  text-align: left;
  border: 1px solid #e7e7e7;
  background: var(--bg);
  border-color: var(--br-color);
  padding: 5px 10px;
  border-radius: 12px;
  margin-right: 5px;
  margin-top: 0;
  color: var(--font-dark);
}

input[type="radio"] {
  display: none;
}

input[type="radio"] + label:before {
  content: "";
  border: 1px solid #eaeaf2;
  border-radius: 0.2em;
  display: none;
  width: 18px;
  height: 18px;
  padding-left: 3px;
  padding-bottom: 0.3em;
  padding-top: 0px;
  margin-right: 9px;
  vertical-align: bottom;
  color: transparent;
  border-radius: 50%;
  transition: 0.2s;
  /* float: right; */
}

input[type="radio"] + label:active:before {
  transform: scale(0);
}

input[type="radio"]:checked + label:before {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: var(--font-dark);
  font-size: 13px;
}
input[type="radio"]:checked + label {
  background-color: var(--bg);
  color: var(--font-dark);
  border-color: var(--br-color);
}
input[type="radio"]:disabled + label {
  color: lightgray;
}
input[type="radio"]:disabled + label:before {
  transform: scale(1);
  border-color: #aaa;
}

input[type="radio"]:checked:disabled + label:before {
  transform: scale(1);
  background-color: #bfb;
  border-color: #bfb;
}
.full-div {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: auto;
  margin: auto;
  padding: 20px;
  background: rgba(255, 255, 255, 0.79);
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
  overflow: auto;
}
.a4 {
  background: white;
  padding: 20px;
  margin: auto;
  border-radius: 20px;
  user-select: text;
  -khtml-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
  max-height: 100%;
  overflow: auto;
}

.a4 {
  width: 21cm !important;
  min-height: auto;
  padding: 20px;
  padding-top: 0;
  margin: auto;
  border: 1px #d3d3d3 solid;
  border-radius: 5px;
  background: white;
  top: 20px;
  position: absolute;
  max-height: 90%;
}
.a4 .report-grades {
  padding: 10px 0;
  border-bottom: 1px solid lightgray;
}
.a4 .action {
  position: sticky;
  bottom: -21px;
  background: white;
  padding: 15px 0;
  border-top: 1px solid lightgray;
}
.a4 .print-details {
  position: sticky;
  top: -20px;
  background: white;
  border-bottom: 1px solid lightgray;
}
.print-details span {
  padding-left: 5px;
  margin-right: 5px;
  border-left: 1px solid;
}
.print-details span:first-child {
  padding-left: 0px;
  margin-right: 5px;
  border-left: 0px solid;
}
.invoice {
  width: 21cm !important;
  min-height: auto;
  padding: 2cm;
  margin: 1cm auto;
  border: 1px #d3d3d3 solid;
  border-radius: 5px;
  background: white;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  top: 20px;
  position: absolute;
}
.invoice h1 {
  font-size: 12px;
  font-weight: bold;
  line-height: 20px;
  color: rgba(0, 0, 0, 0.54);
  text-transform: uppercase;
}
.invoice .buyer {
  width: 50%;
  float: left;
}
.invoice .seller {
  width: 50%;
  float: left;
}
.inv-header {
  margin-bottom: 40px;
}
.invoice table {
  border: none;
  float: left;
  width: 100%;
}
.invoice table tr,
.invoice table th,
.invoice table td {
  border: none !important;
}
.invoice .tax-details p {
  margin: 4px 0;
  white-space: nowrap;
}
.invoice .tax-details {
  margin: 8px 0;
  text-align: right;
}
.invoice table th {
  background: var(--gray-50);
}
tr.total td b {
  font-size: 1.3em;
}
tr.total td b {
  font-size: 1.3em;
}
.invoice table th {
  padding: 8px 16px;
  border-bottom: 1px solid #999;
  border-top: 0;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.54);
  font-size: 12px;
  font-weight: bold;
}
.button-gaps{
  display: flex;
  gap: 10px;
}
.footer {
  background-color: var(--gray-50);
  margin-top: 48px;
  padding: 8px;
  color: rgba(0, 0, 0, 0.54);
  text-align: center;
  float: left;
  width: 100%;
}
.footer div:nth-child(1) {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}
.footer div:nth-child(2),
.footer p {
  font-size: 12px;
}
.customer {
  margin-bottom: 40px;
  float: left;
  width: 100%;
}
.inv-header div {
  line-height: 20px;
  font-size: 14px;
}
.inv-header img {
  height: 50px;
  float: left;
}
.inv-header .details {
  float: right;
  text-align: right;
}
.inv-header div:nth-child(1) {
  color: rgba(0, 0, 0, 0.87);
  font-size: 19px;
  line-height: 22px;
}
.inv-details {
  float: left;
  width: 100%;
  margin-top: 50px;
}
.inv-details div:nth-child(1) {
  font-weight: bold;
  font-size: 20px;
}
.inv-details div:nth-child(2) {
  color: rgba(33, 33, 33, 0.8);
  border-bottom-color: #e2e2e2;
}
.certificate {
  z-index: 2002;
  overflow: auto;
  justify-content: inherit;
  display: inherit;
  text-align: center;
  margin: inherit;
  padding: 20px;
  background: #ffffffc4;
}
.certificate-canvas {
  background-image: url("/assets/img/certificate.png");
  width: 933px !important;
  height: 666px !important;
  background-size: cover;
  background-position: center;
  text-align: center;
  margin: auto;
}
.certificate-canvas .conducted-by {
  /* float: left; */
  width: auto;
  margin-right: 53px;
}
.fireworks-container {
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 200;
}
.certificate-canvas .powered-by {
  /* float: left; */
  width: auto;
}
.certificate-canvas .conducted-by img {
  height: 30px;
}
.certificate-canvas .powered-by img {
  height: 30px;
}
.certificate-canvas .powered {
  margin-top: 89px;
  justify-content: center;
  display: inline-flex;
}
.certificate-canvas h2 {
  font-family: monospace;
  font-weight: 700;
  font-size: 51px;
  margin-top: 0;
}
.certificate-canvas h3 {
  font-weight: 600;
  margin-top: 137px;
  font-size: 39px;
  float: left;
  width: 100%;
}
.certificate-canvas h4 {
  text-transform: uppercase;
  font-size: 15px;
}
.certificate-canvas h5 {
  margin-top: 46px;
}
.certificate-canvas h6 {
  width: 74%;
  margin: auto;
  font-size: 16px;
  line-height: 20px;
}
div#certificate-canvas {
  padding-bottom: 30px;
}
.watermark {
  z-index: 1;
  width: 100%;
  text-align: center;
  bottom: 0px;
  position: sticky;
  opacity: 1;
  background: white;
  height: 100px;
  display: none;
}
.full-div.login-form {
  background: transparent;
  background-size: cover;
  background-position: bottom;
}
.champion.login-form,
.app-land.reg-form {
  display: none;
}
.login-form.champion.pop-out,
.app-land.reg-form.pop-out {
  display: flex;
  /* background: #333333b5; */
  text-align: center;
}
.popup {
  top: 20px;
  position: absolute;
  background: var(--bg);
  border-radius: 12px;
  overflow: auto;
  margin: auto;
  width: 80%;
  max-height: 90%;
  border: var(--br-thinkness) solid var(--br-color);
}
.popup .header,
.a4 .header,
.full-screen .header {
  width: 100%;
  float: left;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid lightgray;
  position: sticky;
  top: 0;
  background: var(--bg);
  border-color: var(--br-color);
  z-index: 1;
}
.popup .header h3,
.a4 .header h3,
.full-screen .header h3 {
  float: left;
  max-width: calc(100% - 40px);
  font-size: 18px;
  margin: auto;
  font-weight: 600;
  padding-top: 6px;
  color: var(--font-dark);
}
.popup .header h3 span {
  font-size: 15px;
}
.popup .header span {
  font-size: 13px;
  line-height: 2;
}
.full-screen .header button,
.popup .header button,
.title-header button,
.discussion-head button {
  float: right;
  background: var(--bg);
  border-radius: 50%;
  border: 1px solid;
  width: 35px;
  height: 35px;
  padding-top: 2px;
}
.discussion-head button {
  border-radius: 10%;
  width: 30px;
  height: 30px;
  margin-top: -3px;
}
.popup .content {
  padding: 20px;
  float: left;
  width: 100%;
  overflow: auto;
  min-height: 400px;
}
.pre {
  background: var(--full-div) !important;
  padding: 0;
  z-index: 5001;
}
.pre .loading-text {
  width: 100%;
  text-align: center;
  float: left;
  margin-top: 20px;
  border: 1px solid;
  border-radius: 10px;
  padding: 10px;
  background: #ffffff;
  display: none;
}
/* Login */
.full-div .center-div {
  margin: auto;
  /* background: white; */
  -webkit-animation-name: side;
  -webkit-animation-duration: 0.4s;
  animation-name: side;
  animation-duration: 0.4s;
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  left: auto;
  width: 400px;
  border-radius: 0px;
}
.form_new_question .center-div {
  width: 800px;
}
#practice-solution .center-div {
  left: auto;
  right: auto;
  border-radius: 12px;
  inset: auto;
}
.study-plan-pop > .center-div {
  position: relative;
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.4s;
  animation-name: zoom;
  animation-duration: 0.4s;
  overflow: auto;
}
.image_pop .center-div {
  display: flex;
  text-align: center;
  justify-content: center;
  width: 100%;
  margin: 0;
  position: fixed;
  border-radius: 0;
}
.chapter-selection .side-list {
  width: 50%;
  max-width: 50%;
  background: var(--dash);
}
.otpBox.full-div,
.cityBox.full-div {
  background: #ffffffad;
  border-radius: 12px;
}
.otpBox.full-div .center-div,
.cityBox.full-div .center-div,
.search-form.full-div .center-div {
  box-shadow: 0 2px 40px 0 rgb(205 205 205 / 25%);
  background: var(--bg);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid var(--br-color);
}
.shape {
  position: absolute;
  width: 100%;
  height: 1320px;
  z-index: -1;
}
.shape.shape_one {
  opacity: 0.01;
  left: -25%;
  top: 350px;
}
.shape.shape_two {
  left: -40%;
  opacity: 0.03;
}
.shape.shape_three {
  right: -52%;
  bottom: -9%;
  opacity: 0.01;
}
.shape.shape_four {
  right: -44%;
  bottom: -12%;
  opacity: 0.03;
}
.shape2 {
  position: absolute;
  right: 0;
  left: 0;
  max-height: 100%;
  overflow: hidden;
}
.shape2.shape_one {
  left: 0;
  opacity: 0.03;
  top: 0;
  width: 100%;
  position: absolute;
  height: 100%;
}
.shape2.shape_two {
  right: 0;
  bottom: 0;
  opacity: 0.03;
  width: 100%;
  top: 0;
  height: 100%;
}
.center-div form,
.center-div .form {
  display: block;
  flex-direction: column;
  padding: 20px;
  background: var(--bg);
  border: 1px solid var(--br-color);
  float: left;
  text-align: center;
  width: 100%;
  border-radius: 0;
  height: 100dvh;
  overflow: auto;
  box-shadow: 0px 0px 3px 1px rgb(181 181 181 / 45%);
}
.center-div form h4 {
  position: sticky;
  top: -20px;
  background: white;
  z-index: 1;
}
.center-div form div:last-child {
  background: white;
  position: sticky;
  bottom: -20px;
  padding-bottom: 10px;
}
.center-div form:last-child {
}
.from .redactor-box,
.viewer {
  max-height: 300px;
  overflow-y: auto;
}
.viewer {
  max-height: 300px;
  overflow-y: auto;
}
.center-div form p {
  text-align: left;
}
.center-div #login,
.center-div #enquire {
  box-shadow: 0 0 20px 4px rgb(150 150 150 / 35%);
}
.side-widget form {
  padding: 80px 80px 0 80px;
}
.single {
  width: 360px;
}
.double {
  width: 50%;
}
.center-div .logo {
  max-height: 70px;
  margin-bottom: 20px;
  float: left;
  max-width: 268px;
}
.justify-center .logo {
  height: 35px;
}
.app-land .logo {
  height: 50px;
  margin-bottom: 0px;
}
.footer-logo img {
  height: 40px !important;
  border-radius: 10px;
  margin-top: 12px;
}
.footer-logo span {
  width: 100%;
  float: left;
}
.footer-logo {
  text-align: center;
}
.nice-select {
  line-height: 66px;
  padding-left: 12px;
  height: 50px;
  border: 1px solid var(--input-border);
  background: transparent;
  margin: 7px 0;
}

.no-search .nice-select-search-box {
  display: none;
}
.no-search .list {
  padding: 0px 0 0;
  margin-top: 3px;
}
form .split-2 {
  width: 100%;
  column-count: 2;
}
form .dob {
  width: 100%;
  float: left;
}
form .dob .select-group {
  width: auto;
  float: left;
  max-width: calc(33% - 5px);
  min-width: calc(33% - 5px);
  margin-right: 5px;
}
form .profile {
  margin: 0px 0px 18px 0px;
  width: 80px;
  float: left;
}
form .name-header {
  text-align: left;
  width: calc(100% - 80px);
  padding: 0px 20px;
  float: left;
}
form .form-head {
  font-weight: bold;
  font-size: 36px;
  color: #131336;
  text-align: left;
  width: 100%;
  text-align: center;
  float: left;
  display: inline-flex;
  justify-content: left;
}
form .link {
  color: var(--primary);
  text-decoration: none;
  float: left;
  margin: 5px 0 9px 0;
}
form .sub-head {
  float: left;
  width: 100%;
  text-align: left;
  font-weight: bold;
  color: var(--font-light);
}
form .bold {
  font-weight: 600;
}
form .input,
.filter .input,
.search-form .input,
.result-data .input {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--input-border);
  height: 50px;
  margin: 7px 0;
  padding: 16px 12px 0px 12px;
  font-weight: bold;
  box-shadow: none;
  -webkit-appearance: none;
  color: var(--font-dark);
  background: transparent;
}
form .input:focus,
.filter .input:focus,
.search-form .input:focus,
.result-data .input:focus {
  outline: none !important;
  box-shadow: none;
}
.filter .nice-select,
.filter .input,
.filter input[type="date"] {
  /* line-height: 12px; */
  height: 40px;
  font-size: 13px;
}
.filter .common-option,
.nice-select .option {
  margin-bottom: 0;
}
.form-head .logo {
  min-width: 214px;
  padding-bottom: 10px;
}
.institute .logo {
  min-width: auto;
  max-height: 75px;
  min-height: 50px;
}
.institute {
  justify-content: center !important;
}
form .input::placeholder,
.filter .input::placeholder .search-form .input::placeholder {
  color: var(--font-light);
  font-weight: normal;
}

form .half-left {
  width: calc(50% - 15px);
  float: left;
  margin-right: 15px;
}
form .half-right {
  width: calc(50% - 5px);
  float: left;
  margin-left: 5px;
}
form .half-right-1 {
  width: calc(50% - 15px);
  float: left;
  margin-left: 15px;
}
form .half-left-small {
  width: calc(50% - 5px);
  float: left;
  margin-right: 5px;
}
form .half-right-small {
  width: calc(50% - 5px);
  float: left;
  margin-left: 5px;
}

form .terms {
  margin-top: 10px;
  font-size: 12px;
  width: 100%;
  color: black;
  float: left;
  text-align: left;
}
form hr {
  width: 100%;
  height: 0.1px;
  background: #eaeaf2;
  float: left;
  margin-top: 15px;
}
form .input:focus,
.filter .input:focus {
  outline: none !important;
  border: 1px solid var(--primary);
}
form .name-header p {
  color: var(--font-light);
  font-size: 13px;
}
form button,
.message-buttons button,
.btn-default {
  background: var(--primary);
  background: var(--bg-primary);
  height: auto;
  min-height: 35px;
  border-radius: 12px;
  color: var(--font-invert);
  transition: all 0.5s ease;
  margin-top: 10px;
  max-width: 400px;
  padding: 5px 20px;
  min-width: 105px;
  border-color: var(--br-color);
  border-style: solid;
  border-width: var(--br-thinkness);
}
.upload-page {
  text-align: center;
  border: 1px dashed;
  border-radius: 10px;
  padding: 20px 0;
}
.btn-upload {
  height: 102px;
  width: 90px;
  background: var(--bg);
  color: var(--primary);
  border: 1px solid;
  padding: 0px 10px;
  min-width: auto;
  float: left;
  margin-top: 0;
  padding: 15px 0;
  text-align: center;
  margin-right: 10px;
  border-radius: 10px;
  margin-bottom: 10px;
}
.btn-upload:hover .actions {
  display: flex;
}
.btn-upload:hover .tick {
  display: none;
}
.btn-upload span {
  margin-top: 12px;
  width: 100%;
  float: left;
  font-size: 28px;
}
.uploaded .actions {
  transition: all 0.1s ease;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0px;
  float: left;
  display: none;
  width: 100%;
}
.uploaded .actions span {
  font-size: 14px;
  margin-right: 10px;
  margin-top: 0;
}
.uploaded .actions div:first-child {
  margin-right: 5px;
}
.uploaded .actions div {
  border: 1px solid;
  border-radius: 50px;
  padding: 10px 5px;
  height: 35px;
  width: 35px;
  cursor: pointer;
}
.btn-upload p {
  float: left;
  font-size: 11px;
  white-space: nowrap;
  width: 100%;
  margin-top: 10px;
}
.container .btn-default {
  background: #f2eef2;
  padding: 15px 30px;
  border-radius: 100px;
  color: var(--font-dark);
  font-size: 19px;
  border: 1px solid;
}
form button:disabled,
.message-buttons button:disabled,
.btn-default:disabled {
  background: var(--primary-light);
  color: var(--font-light);
}
.popup .btn-default,
.dim {
  background: var(--lbg);
  border: 1px solid;
  color: var(--font-dark);
  border-color: var(--br-color);
}
.add-easy-school{
  width: auto !important;
  border-radius: 4px !important;
}
.btn-default span {
  margin-right: 10px;
}
button.left {
  margin-right: 10px;
}
.search-form .close-button {
  background: var(--bg);
  width: 30px;
  height: 30px;
  border: 1px solid #a5a5a5;
  min-width: auto;
  color: #a5a5a5;
  padding: 5px;
  border-radius: 50px;
  min-height: auto;
  text-align: center;
  padding-left: 9px;
}
.login-form form button,
.right-reg form button {
  width: 100%;
  height: 50px;
}
.champion .right-reg form button {
  width: auto;
  height: 50px;
}
.round {
  width: 30px;
  height: 30px;
  border: 1px solid lightgray;
  border-radius: 50px;
  color: #a1a1a1;
  font-size: 12px;
  padding: 0px 0px 0 0px;
  background: white;
  margin-right: 10px;
}
.center-div .round {
  margin: auto;
}
a.btn-default {
  padding: 12px;
  margin-top: 0px;
  margin-bottom: 30px;
}
a.btn-default:hover,
a.btn-default:focus {
  background-image: -webkit-linear-gradient(107deg, #b0b0b04d, #81818100 51%);
  color: white;
}
.side-widget button {
  max-width: 200px;
}
form button:disabled {
  background: var(--primary-light);
}

.game-box button {
  background: white;
  color: white;
  background-image: var(--mainColor);
  color: white;
  height: 49px;
  border: 0px solid;
  font-weight: 600;
}
.game-box button.secondary {
  background: white !important;
}
.message-box {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  background-color: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  overflow: auto;
  animation: overlayFadeIn 0.2s ease-out;
}
.message-content {
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2), 0 0 1px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin: 20px;
  padding: 32px 28px;
  min-width: 340px;
  width: auto;
  max-width: 500px;
  animation: messageBoxFadeIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: none;
}
.message-header {
  margin-bottom: 16px;
}
.message-title {
  font-size: 22px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 24px 0;
  padding: 0;
  line-height: 1.3;
  letter-spacing: -0.3px;
}
.message-body {
  margin-bottom: 24px;
}
.message-text {
  font-size: 16px;
  color: #4a5568;
  line-height: 1.5;
  margin: 0;
}
.message-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 0;
}
.message-buttons button {
  padding: 12px 28px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.2s ease;
  min-width: 120px;
  cursor: pointer;
  border: none;
  outline: none;
}
.message-buttons .deny {
  background-color: #f5f5f5;
  color: #333;
  border: 1px solid #e0e0e0;
}
.message-buttons .deny:hover:not(:disabled) {
  background-color: #e8e8e8;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.message-buttons .proceed {
  background: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
  color: white;
  border: none;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.35);
}
.message-buttons .proceed:hover:not(:disabled) {
  background: linear-gradient(135deg, #2563eb 0%, #059669 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.45);
}
.message-buttons button:active:not(:disabled) {
  transform: translateY(0);
}
@keyframes overlayFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes messageBoxFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.float-group {
  position: relative;
  width: 100%;
  float: left;
}
.double .float-group {
  width: 100%;
}
.float-group.info {
  border-left: 1px solid var(--br-color);
  padding-left: 10px;
  margin: 0px 0;
  color: var(--font-dark);
  border-radius: 0;
  margin: 0 !important;
  text-align: left;
  margin-bottom: 20px !important;
  width: 100%;
}
.redactor-pain.float-group {
  /* margin: auto !important; */
  width: 100%;
  margin-bottom: 10px;
  margin-right: 0 !important;
  margin-left: 0 !important;
}
.redactor-styles {
  padding: 10px 12px;
  text-align: left;
}
.redactor-air a.re-button-icon,
.redactor-toolbar a.re-button-icon {
  font-size: 15px;
  padding: 5px;
}
.double .select-group {
  width: 100%;
}
.double .float-group:nth-child(even) {
  margin-right: 5px;
}
.double .float-group:nth-child(odd) {
  margin-left: 0;
}
.double .select-group:nth-child(even) {
  margin-right: 5px;
}
.double .select-group:nth-child(odd) {
  margin-left: 0;
}
.float-group .floating-label {
  position: absolute;
  pointer-events: none;
  top: 12px;
  left: 12px;
  transition: all 0.1s ease;
  color: var(--font-light);
}
.float-group .a-prefix {
  position: absolute;
  pointer-events: none;
  top: 12px;
  left: 12px;
  transition: all 0.1s ease;
  color: var(--font-light);
}
.float-group .a-prefix-label {
  position: absolute;
  pointer-events: none;
  top: 12px;
  left: 40px;
  text-align: right;
  transition: all 0.1s ease;
  color: var(--font-light);
}
.exam-row .float-group {
  width: calc(100% - 200px);
}
.digit-3 .a-prefix-label {
  left: 50px;
}
.left,
.left-all {
  float: left;
}
.right,
.right-all {
  float: right;
}
.left-all {
  text-align: left;
}
.right-all {
  text-align: right;
}
.float-group input:focus ~ .floating-label,
.float-group textarea:focus ~ .floating-label,
.float-group textarea:not(:focus):valid ~ .floating-label,
.float-group input:not(:focus):valid ~ .floating-label,
.float-group input[type="date"]:not(:focus):invalid ~ .floating-label,
.filter input[type="date"]:not(:focus):invalid ~ .floating-label,
.float-group input[type="datetime-local"]:not(:focus):invalid ~ .floating-label,
.filter input[type="datetime-local"]:not(:focus):invalid ~ .floating-label {
  top: -1px;
  /* bottom: 0px; */
  left: 13px;
  right: 6px;
  font-size: 11px;
  opacity: 1;
  text-align: left;
  height: 19px;
  padding: 3px 0;
}
.float-group input:focus ~ .a-prefix,
.float-group textarea:focus ~ .a-prefix,
.float-group input:not(:focus):valid ~ .a-prefix,
.float-group textarea:not(:focus):valid ~ .a-prefix {
  top: 21px;
  bottom: 0px;
  left: 10px;
  /* font-size: 15px; */
  opacity: 1;
  color: black;
  font-weight: 600;
}
.float-group input:focus ~ .a-prefix-label,
.float-group textarea:focus ~ .a-prefix-label,
.float-group input:not(:focus):valid ~ .a-prefix-label,
.float-group textarea:not(:focus):valid ~ .a-prefix-label {
  top: 4px;
  bottom: 0px;
  left: 12px;
  font-size: 11px;
  opacity: 1;
}
.a-prefix-input {
  padding-left: 33px !important;
}
.digit-3 .a-prefix-input {
  padding-left: 41px !important;
}
.select-group {
  position: relative;
  width: 100%;
  float: left;
}
.filter .select-group,
.filter .float-group {
  width: auto;
  margin-right: 5px;
  min-width: 256px;
}
.select-group .select-label {
  position: absolute;
  pointer-events: none;
  top: 12px;
  left: 12px;
  transition: all 0.1s ease;
  color: var(--font-light);
  font-weight: normal;
  font-size: 14px;
}
.filter .select-label,
.filter .floating-label {
  top: 9px;
}
.select-group .current {
  display: none;
}
.select-group select:not(:focus):valid ~ .nice-select .current {
  display: block;
  height: 67px;
  padding-right: 25px;
  max-width: calc(100% - 10px);
  width: inherit;
}
.filter .select-group select:not(:focus):valid ~ .nice-select .current {
  height: 50px;
}
.select-group select:focus ~ .select-label,
.select-group select:not(:focus):valid ~ .select-label {
  top: 4px;
  bottom: 0px;
  left: 13px;
  font-size: 11px;
  opacity: 1;
  display: block;
}
.filter .select-group select:focus ~ .select-label,
.filter .select-group select:not(:focus):valid ~ .select-label {
  top: 2px;
}
.float-group .search {
  background: white;
  cursor: text;
}
.full-center {
  width: 100%;
  text-align: center;
}
.left-100 {
  width: 100%;
  float: left;
}
.pagination .left {
}
.mb-50 {
  margin-bottom: 50px;
}
.rating-1 span:first-child {
  color: orange;
}
.rating-2 span:nth-child(1),
.rating-2 span:nth-child(2) {
  color: orange;
}
.rating-3 span:nth-child(1),
.rating-3 span:nth-child(2),
.rating-3 span:nth-child(3) {
  color: orange;
}
.rating-4 span:nth-child(1),
.rating-4 span:nth-child(2),
.rating-4 span:nth-child(3),
.rating-4 span:nth-child(4) {
  color: orange;
}
.rating-5 span:nth-child(1),
.rating-5 span:nth-child(2),
.rating-5 span:nth-child(3),
.rating-5 span:nth-child(4),
.rating-5 span:last-child {
  color: orange;
}
.left-75 {
  width: 75%;
  float: left;
}
.left-25 {
  width: 25%;
  float: left;
}
.left-40 {
  width: 40%;
  float: left;
}
.left-60 {
  width: 60%;
  float: left;
}
.features .left-40 {
  padding-left: 15px;
  font-size: 17px;
}
.features p {
  font-size: 20px;
}
.features .left-60 {
  padding-right: 15px;
}
.filter .h-list,
.header-tabs .h-list {
  display: flex;
  padding: 5px;
  justify-content: left;
  border: 0.5px solid var(--neutral-300, #cdd0d5);
  background: var(--dash);
  flex-wrap: wrap;
  gap: 5px;
}
.h-list {
  float: left;
  width: auto;
  margin-top: 0;

  border-radius: 10px;

  gap: 10px;
  border-radius: 14px;
  margin-bottom: 0;
}
.dashboard-tabs .h-list {
  padding-bottom:0;
  margin-bottom:0;
}
.notification-bar {
  width: 100%;
  flex-wrap: nowrap !important;
}
.create-exam-tab-content .left-100.mt-10,
.sharing .left-100.mt-10 {
  border-top: 1px solid #eaeaea;
  border-color: var(--br-color);
  padding-top: 10px;
}
.shared .left-100 {
  padding: 5px 10px 5px 10px;
  width: auto;
  border: 1px solid lightgray;
  border-radius: 12px;
  margin-right: 10px;
  margin-bottom: 10px;
}
.disable-share,
.remove-item,
.delete-pool {
  background: white;
  border-radius: 50%;
  border: 1px solid lightgrey;
  font-size: 9px;
  padding: 5px 5px;
  margin-left: 5px;
}
.disable-share:hover,
.delete-pool:hover {
  background: var(--primary);
  color: white;
}
.max-360 a {
  max-width: 200px;
  border-radius: 12px;
}

.nice-select .current {
  font-weight: bold;
  background: transparent;
  border: none;
  margin: 0;
  padding: 0;
}
.nice-select .current:focus {
  border: none;
}
.integerTypeBox {
  margin: 0;
  padding: 0;
  margin-bottom: 40px;
}
.integerType {
  width: 250px;
  padding: 10px;
}
.integerType button {
  width: 30%;
  height: 40px;
  margin-top: 5px;
  margin-right: 5px;
  background: white;
  border-radius: 12px;
}
.integerType button:hover {
  box-shadow: 7px 1px 13px 0 rgb(82 77 122 / 10%);
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid #666666;
}
.integerType input[type="text"],
.integerType input[type="button"] {
  width: 57%;
  height: 40px;
  margin-top: 5px;
  padding-left: 13px;
  margin-left: 0;
  background: white;
  border-radius: 12px;
  border: 1px solid;
  text-align: left;
}
.integerType input[type="button"] {
  background: var(--primary);
  color: white;
  width: calc(40% - 5px);
  text-align: center;
}
.hide {
  display: none !important;
}
.show {
  display: block important;
}
.left-panel {
  width: 220px;
  background: var(--bg);
  box-shadow: 4px 0px 13px 0 rgb(164 154 244 / 10%);
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  overflow-y: auto;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  border-right-width: 0.1px;
  border-right-style: solid;
  border-right-color: var(--br-color);
  height: 100%;
}
.right-panel {
  margin-left: 250px;
  width: calc(100% - 250px);
}
.dashboard .page-header,
.home .page-header {
  width: calc((100% - 330px) - 220px);
  margin-left: 220px;
}
.dashboard .right-panel,
.home .right-panel {
  width: calc((100% - 330px) - 220px);
  margin-left: 220px;
}
.menu {
  text-align: center;
  margin: 0;
}
.pop-menu {
  margin: 0px 0px 0px 0px;
}
.menu .logo {
  padding: 50px 15px 40px;
  width: 85%;
  height: auto;
  /* float: left; */
  filter: var(--logo);
}
.menu .academy {
  width: 85%;
  height: auto;
}
.menu .logo-icon {
  margin: 15px 24px 92px 7px;
  height: 35px;
  float: left;
  display: none;
}
.menu .more-menu {
  display: none;
}
.menu_item {
  width: 100%;
  background: transparent;
  color: var(--font-dark);
  transition: all 0.1s ease;
  margin: auto;
  padding: 0px 25px 0px 25px;
  height: 45px;
  border-radius: 0;
}
.small-menu .menu_item {
  padding: 0px 19px 0px 18px;
}
.menu_item.active {
  background: linear-gradient(90deg, #ddfff3 0%, #ffffff 100%);
}

.menu_item:after {
  border: 0px solid var(--primary);
  content: "";
  display: none;
  height: 0px;
  width: 3px;
  border-radius: 3px;
  margin-left: calc(100% - 3px);
  background: var(--primary);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}
.active:after {
  border: 1px solid var(--primary);
  height: 40px;
}
.menu_item span {
  height: 40px;
  float: left;
  width: 30%;
  font-size: 19px;
  text-align: left;
  padding: 9px 0px 0px 10px;
}
.menu_item h5,
.sub-menu-item h5 {
  height: 40px;
  float: left;
  width: 70%;
  text-align: left;
  margin: auto;
  font-size: 16px;
  padding-top: 9px;
}
.sub-menu-item h5 {
  width: 95%;
  white-space: nowrap;
  overflow: hidden;
}
.menu .active h5,
.menu .active span,
.tab-menu-button.active h5,
.tab-menu-button.active span,
.menu_item:hover h5,
.menu_item:hover span,
.tab-menu-button.active h5,
.tab-menu-button.active span {
  color: var(--primary);
}
.active h5 {
  font-weight: bold;
}
.small-menu .menu_item.active span {
  color: var(--primary);
}
.page-header .logo,
.page-header-inside .logo {
  display: none;
}
.page-header,
.page-header-inside {
  transition: all 0.2s linear;
  float: left;
  width: calc(100% - 276px);
  padding: 0 31px;
  margin: 0;
  margin-left: 276px;
  /*! background: white; */
  height: 73px;
  transition: height 0.5s ease;
  border-bottom: 0px solid var(--br-color);
  align-items: center;
  display: flex;
}
.page-header .page-title,
.page-header-inside .page-title {
  color: #131336;
  color: var(--font-dark);
  font-weight: 600;
  font-size: 18px;
  float: left;
  /* margin-top: 13px; */
}
.welcome-back {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  width: 100%;
}
.welcome-back div:first-child {
  font-size: 16px;
  font-weight: normal;
  color: var(--font-light);
}
.welcome-back div:last-child {
  font-size: 20px;
  font-weight: 600;
  color: var(--font-dark);
}
.fixed .welcome-back div:first-child {
  font-size: 16px;
  font-weight: normal;
  color: var(--font-light);
  display: none;
}
.fixed .welcome-back div:last-child {
  font-size: 20px;
  font-weight: 600;
  color: var(--font-dark);
}
.page-title img {
  filter: var(--img);
}
.right-panel .panel-item {
  float: left;
  width: 100%;
  margin-top: 15px;
  padding-bottom: 50px;
}

.profile-bar {
  float: right;
}
.profile-bar .name {
  margin: 0px 11px;
  font-weight: 600;
  font-size: 15px;
  margin-top: 7px;
  color: var(--font-dark);
}
.profile-bar .date {
  margin: 0px 12px;
  font-size: 12px;
  color: var(--font-light);
}
.profile-avatar {
  width: 40px;
  height: 40px;
  background-color: var(--theme);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  margin-left: 0;
  margin-right: 0px;
  cursor: pointer;
}

/* Header Actions Container */
.header-actions {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 10px;
}

/* Refresh Button */
.header-refresh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #56ab2f 0%, #a8e063 100%);
  border: none;
  box-shadow: 0 2px 8px rgba(86, 171, 47, 0.3);
}
.header-refresh-btn:hover {
  transform: rotate(180deg);
  box-shadow: 0 4px 12px rgba(86, 171, 47, 0.4);
}
.header-refresh-btn:active {
  transform: rotate(360deg);
}
.header-refresh-icon {
  font-size: 20px;
  font-weight: bold;
  color: white;
  line-height: 1;
}

/* AI Chat Button Styles */
.ai-chat {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--font-invert);
  padding: 8px 15px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(109, 148, 135, 0.3);
  margin-right: 0;
  border: none;
  font-size: 14px;
  font-weight: 500;
}

.ai-chat:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(109, 148, 135, 0.4);
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
}

.ai-chat-icon {
  font-size: 16px;
  margin-right: 8px;
}

.ai-chat-text {
  font-size: 18px;
  font-weight: 500;
}

/* AI Chat Modal Styles */
.ai-chat-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.ai-chat-modal.hide {
  display: none;
}

.ai-chat-modal-content {
  background: white;
  border-radius: 15px;
  width: 90%;
  max-width: 800px;
  min-height: 200px;
  max-height: 90vh;
  height: auto;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  animation: slideUp 0.3s ease;
}

.ai-chat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid var(--br-color);
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--font-invert);
  border-radius: 15px 15px 0 0;
}

.ai-chat-title {
  font-size: 18px;
  font-weight: 600;
}

.ai-chat-close {
  background: none;
  border: none;
  color: var(--font-invert);
  font-size: 24px;
  height: 40px;
  width: 40px;
  cursor: pointer;
  padding: 0;
  border-radius: 50%;
  transition: background 0.2s ease;
}

.ai-chat-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.ai-chat-container {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: var(--dash);
}

.ai-message,
.user-message {
  max-width: 80%;
  word-wrap: break-word;
}

.ai-message {
  align-self: flex-start;
}

.user-message {
  align-self: flex-end;
}

.ai-message-content {
  background: var(--bg);
  padding: 12px 16px;
  border-radius: 18px 18px 18px 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--br-color);
  color: var(--font-dark);
  line-height: 1.5;
  overflow: auto;
}

/* AI Response Formatting Styles */
.ai-message-content p {
  margin: 8px 0;
  line-height: 1.6;
}

.ai-message-content p:first-child {
  margin-top: 0;
}

.ai-message-content p:last-child {
  margin-bottom: 0;
}

.ai-message-content ol {
  margin: 12px 0;
  padding-left: 20px;
}

.ai-message-content li {
  margin: 6px 0;
  line-height: 1.5;
}

.ai-message-content strong {
  color: var(--primary);
  font-weight: 600;
}

.ai-message-content h6 {
  color: var(--primary);
  font-size: 16px;
  font-weight: 600;
  margin: 12px 0 8px 0;
  border-bottom: 1px solid var(--lbr-color);
  padding-bottom: 4px;
}

.ai-message-content ul {
  margin: 12px 0;
  padding-left: 20px;
}

.ai-message-content ul li {
  margin: 4px 0;
}

.ai-message-content br {
  line-height: 1.8;
}

/* Math equation styling */
.ai-message-content .MathJax {
  font-size: 1.1em !important;
}

.ai-message-content .MathJax_Display {
  margin: 12px 0 !important;
}

.user-message-content {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--font-invert);
  padding: 12px 16px;
  border-radius: 18px 18px 4px 18px;
  box-shadow: 0 2px 8px rgba(109, 148, 135, 0.3);
}

.typing-indicator .ai-message-content {
  background: var(--lbg);
  color: var(--font-light);
  font-style: italic;
}

.ai-chat-input-container {
  display: flex;
  padding: 20px;
  border-top: 1px solid var(--br-color);
  gap: 10px;
  background: var(--bg);
  border-radius: 0 0 15px 15px;
}

.ai-chat-input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--input-border);
  border-radius: 25px;
  outline: none;
  font-size: 14px;
  transition: border-color 0.2s ease;
  background: var(--bg);
  color: var(--font-dark);
  resize: none;
  min-height: 20px;
  max-height: 120px;
  overflow-y: auto;
  line-height: 1.4;
  font-family: inherit;
  word-wrap: break-word;
  white-space: pre-wrap;
}

.ai-chat-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(109, 148, 135, 0.1);
}

.ai-chat-send {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--font-invert);
  border: none;
  padding: 12px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s ease;
}

.ai-chat-send:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(109, 148, 135, 0.3);
}

/* Voice Input Styles */
.ai-chat-voice {
  padding: 10px 12px;
  background: var(--bg);
  border: 2px solid var(--primary);
  border-radius: 8px;
  color: var(--primary);
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: 8px;
  margin-right: 8px;
}

.ai-chat-voice:hover {
  background: var(--primary);
  color: var(--font-invert);
  transform: translateY(-1px);
}

.ai-chat-voice.listening {
  background: #ff4444;
  border-color: #ff4444;
  color: white;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.voice-indicator {
  margin: 10px 0;
  text-align: center;
}

.voice-indicator-content {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--font-invert);
  padding: 8px 16px;
  border-radius: 20px;
  display: inline-block;
  font-size: 14px;
  animation: fadeIn 0.3s ease;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .header-actions {
    gap: 8px;
  }

  .ai-chat {
    padding: 6px 12px;
    margin-right: 0;
  }

  .ai-chat-text {
    display: none;
  }

  .ai-chat-modal-content {
    width: 95%;
    height: 90vh;
    margin: 20px;
  }

  .ai-chat-header {
    padding: 15px;
  }

  .ai-chat-container {
    padding: 15px;
  }

  .ai-chat-input-container {
    padding: 15px;
  }
}
.sub-menu {
  width: 195px;
  background: var(--bg);
  /* background: #eaecf2; */
  position: fixed;
  top: 0;
  bottom: 0;
  padding: 0px 0px 0px 0;
  box-shadow: 3px 4px 6px 2px rgb(164 154 244 / 10%);
  overflow: auto;
  border-right-width: 0.1px;
  border-right-style: solid;
  border-right-color: var(--br-color);
}
.sub-menu-item {
  color: var(--font-dark);
  background: inherit;
  width: 100%;
  text-align: left;
  margin: auto;
  padding: 0px 0px 0px 20px;
  height: 45px;
  border-radius: 0;
}
.sub-menu-item.active {
  background: var(--neutral-100, #f6f8fa);
  color:var(--primary);
  font-weight: bold !important;
}
.sub-menu .page-title {
  margin: 23px 25px 98px 20px;
  height: 35px;
  font-weight: 600;
  font-size: 18px;
  float: left;
  color: var(--font-dark);
}
.sub-menu .active:after {
  border: 1px solid var(--primary);
  height: 40px;
}
.sub-menu-data {
  width: 100%;
  height: 61px;
  margin-left: 225px;
  width: calc(100% - 260px);
  float: left;
}
#learning-sub-menu-practice-data.full-screen,
.full-screen.course-content,
.fc {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: var(--bg);
  padding: 20px;
  overflow: auto;
  padding-bottom: 70px;
  margin-top: 0;
  z-index: 1;
}
.full-screen.course-content {
  padding: 0;
}
.full-screen.course-content .content {
  padding: 10px;
}
.sub-menu-data-item {
  width: 100%;
  float: left;
  padding-bottom: 50px;
}
.tab-menu-data-item {
  width: 100%;
  float: left;
}
.sub-learning img {
  /* border: 1px solid lightgray; */
  padding: 10px;
  background: transparent;
  border-radius: 10px;
  filter: var(--qstimg);
}
.tab-menu-button,
input[type="radio"] + label {
  white-space: nowrap;
  display: flex;
  float: left;
  border: 1px solid var(--br-color);
  padding: 6px 14px;
  border-radius: 18px;
  margin: 3px 2px;
  background: transparent;
  color: var(--font-dark);
}
.filter .tab-menu-button,
input[type="radio"] + label {
  border: 1px solid var(--br-color);
}
.tab-menu-button.active,
input[type="radio"]:checked + label {
  border: 1px solid var(--primary);
  background: var(--bg);
  box-shadow: 5px 1px 8px rgb(229 208 208 / 38%);
  display: flex;
  white-space: inherit;
  color: var(--primary);
  font-weight: 600;
}
input[type="radio"] + label span {
  font-size: 15px;
  margin-right: 8px;
  margin-top: 2px;
  font-weight: 500;
}
.tab-menu-button.active,
input[type="radio"]:checked + label span {
  color: var(--theme);
}
.tab-menu-button h5 {
  float: left;
  margin: 2px 7px;
}
.tab-menu-button span {
  float: left;
  padding: 3px;
  font-size: 15px;
}
.tab-menu-button ~ .active {
  color: var(--primary);
}
.examitem {
  background: var(--bg);
  box-shadow: 1px 5px 12px 0px rgb(150 150 150 / 35%);
  border-radius: 0;
  width: calc(33% - 12px);
  border-radius: 10px;
  margin-right: 12px;
  padding: 15px;
  text-align: left;
  margin-bottom: 15px;
  float: left;
  border: var(--br-thinkness) solid var(--br-color);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.courses.examitem {
  width: 49%;
  flex: 1;
}
.exam-row i {
  font-style: normal;
}
.examitem .title span:first-child {
  font-size: 16px;
  font-weight: 600;
  width: 74%;
  height: auto;
  overflow-x: hidden;
  white-space: nowrap;
  float: left;
  color: var(--font-dark);
  text-overflow: ellipsis;
  white-space: nowrap;
}
.courses.examitem .title span:first-child {
  white-space: pre-wrap;
}
.study-plan-items {
  background: var(--bg);
  border-radius: 12px;
  text-align: left;
  padding: 20px 0;
  border: var(--br-thinkness) solid var(--lbr-color);
  min-width: 700px;
  border-radius: 0;
  padding-top: 30px;
  padding-right: 34px;
  padding-bottom: 30px;
  padding-left: 34px;
  gap: 10px;
}
.study-plan-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  align-items: center;
}

.study-plan-head img {
  height: 57px;
}
.study-plan-head > div {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
.study-plan-head-left > div {
  flex-direction: column !important;
}
.study-plan-head > div > div {
  display: flex;
  flex-direction: row;
  align-self: center;
}
.study-plan-head button {
  width: 40px;
  height: 40px;
  border: 1px solid lightgray;
  border-radius: 50px;
  color: #a1a1a1;
  font-size: 18px;
  padding: 0px 0px 0 0px;
  background: white;
  margin-right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.study-plan-head h3 {
  margin: 0;
  padding: 0;
}
.study-plan-head .head-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-left: 15px;
}
.study-plan-error {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
  min-height: 200px;
}
.study-plan-error .error-message {
  color: #666;
  font-size: 16px;
  margin-bottom: 20px;
}
.study-plan-error .btn-retry {
  padding: 12px 30px;
  background: var(--primaryColor, #6366f1);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease;
}
.study-plan-error .btn-retry:hover {
  background: var(--primaryColorDark, #4f46e5);
}
.study-plan-item {
  width: 100%;
  float: left;
  padding: 0;
  border-radius: 0;
  text-align: left;
  color: var(--primary);
  background: transparent;
}
.study-plan-item .details button {
  padding: 5px 10px;
  margin: 10px 0px 0 0px;
  float: left;
}
.study-plan-item .details blink {
  margin-top: 10px;
  float: left;
}
.study-plan-item:nth-child(odd) .details button {
  background: var(--br-color);
}
.study-plan-item .title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.study-plan-item .title-icon {
  font-size: 25px;
  font-weight: 600;
  color: var(--primary);
  margin-right: 0px;
}
.study-plan-item .title-text {
  font-size: 15px !important;
  font-weight: 600;
  color: var(--font-dark);
}
.study-plan-item .det:hover {
  scale: 1.01;
  -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  cursor: pointer;
}
.study-plan-item:first-child .det:hover {
  scale: 1;
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none;
  cursor: pointer;
}
.study-plan-item .day {
  width: 40px;
  height: 40px;
  float: left;
  border-radius: 50%;
  color: white;
  text-align: center;
  padding-top: 10px;
  position: relative;
  z-index: 1;
  margin-left: -41px;
  font-weight: 600;
  background: var(--bg);
}
.study-plan-item.last .day {
  animation: zoom-in-zoom-out 1s ease infinite;
}
.study-plan-item .day.sub:after {
  content: "";
  position: absolute;
  border-radius: 0;
  margin-left: 9px;
  margin-top: 0px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-left: 10px solid;
  border-left-color: inherit;
  border-bottom: 10px solid transparent;
}
.study-plan-item .sub.day:after {
  border-top: 5px solid transparent;
  border-left: 10px solid;
  border-left-color: inherit;
  border-bottom: 5px solid transparent;
  margin-top: -5px;
  margin-left: 0px;
}
.study-plan-item .week {
  width: calc(100% + 65px);
  height: 40px;
  float: left;
  border-radius: 3px;
  color: white;
  text-align: left;
  padding: 10px 15px;
  position: relative;
  z-index: 1;
  margin-left: -50px;
  font-weight: 600;
}
.own-notes {
  border: 1px solid lightgray;
  padding: 10px;
  border-radius: 10px;
  margin-top: 10px;
  color: black;
}
.day.sub {
  margin-left: -31px;
  width: 20px;
  height: 20px;
  color: transparent;
  margin-top: 14px;
  color: transparent !important;
}
.vl {
  height: 57px;
  position: absolute;
  margin-left: 25px;
  margin-top: -15px;
  background: transparent;
  border-left: 1.5px dashed #919191;
  width: 16px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.study-plan-item.session:first-child {
}
.study-plan-item-container {
  width: 100%;
  border-radius: 14px;
  gap: 10px;
  padding: 14px;
  float: left;
  background: var(--dash);
}
.study-plan-item:first-child .vl {
  margin-top: 20px;
}
.study-plan-item:first-child .day {
  width: 50px;
  height: 50px;
  margin-left: 0px;
  padding-top: 12px;
  font-size: 18px;
}
.study-plan-item:last-child .vl {
  height: 0px;
}
.study-plan-item .day1 {
  width: 80px;
  float: left;
  min-height: 1px;
  margin-right: 10px;
}
.study-plan-item .day1 span:first-child {
  border-left: 1px dashed lightgray;
  margin-left: 40px;
  height: 47px;
  position: absolute;
  /* float: left; */
}
.study-plan-item .day1 span:last-child {
  border-left: 1px dashed lightgray;
  margin-left: 40px;
  height: 51px;
  position: absolute;
}
.study-plan-item .day1 p {
  margin-top: 30px;
  padding-top: 20px;
}
.study-plan-item:first-child .det {
}
.study-plan-item .det {
  width: calc(100% - 0px);
  float: left;
  padding-left: 25px;
  background: var(--bg);
  border-radius: 0;
  gap: 10px;
  padding: 16px;
  margin-left: revert-layer;
}
.study-plan-item .det .icon {
  width: 40px;
  height: 40px;
  float: left;
  background: var(--br-color);
  border-radius: 50%;
  text-align: center;
  padding-top: 14px;
  font-size: 15px;
  color: var(--font-dark);
  margin-bottom: 5px;
}
.study-plan-item .det .icon.green {
  color: green;
  background: #00800017;
  animation: zoom-in-zoom-out 1s ease infinite;
}
.study-plan-item:first-child .det .desc {
  padding-left: 0;
  width: calc(100% - 30px);
}
.study-plan-item:first-child .det .desc h3 {
  font-size: 25px;
  font-weight: 600;
}
.study-plan-item .det .desc {
  width: calc(100% - 51px);
  float: left;
  padding-left: 13px;
}
.study-plan-item .det h3 {
  font-size: 17px;
  margin-top: 5px;
  margin-bottom: 5px;
  font-weight: 500;
}
.study-plan-item .det span {
  font-size: 12px;
  color: var(--font-dark);
}
.study-plan-item .tag {
  background: var(--br-color);
  padding: 3px 9px;
  border-radius: 10px;
  margin-right: 5px;
  float: left;
}
.study-plan-item .tags {
  margin-top: 5px;
  margin-bottom: 5px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 5px;
}
.study-plan-item:nth-child(even) {
  /* background: var(--br-color); */
}
.study-plan-item .study-box {
  margin-left: 33px;
  float: left;
  width: calc(100% - 33px);
  border-left: 0.5px solid #919191;
  padding: 10px 20px;
}
.study-plan-item .study-box-head {
  margin-left: 0;
  float: left;
  width: 100%;
  padding: 5px;
  color: black;
  font-family: Manrope;
  font-weight: 600;
  font-size: 20px;
  line-height: 32px;
  vertical-align: middle;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.study-box-subject {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  margin: 8px 0;
  border-radius: 10px;
  color: white;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid;
}

.study-box-subject .content-left {
  display: flex;
  gap: 8px;
  align-items: center;
}

.study-box-subject .icon-right {
  margin-left: auto;
}
.study-plan-item:last-child .study-box {
  border-bottom-left-radius: 10px;
  border-bottom: 1px darkblue;
}
.study-plan-item:nth-child(odd) .icon {
  background: var(--br-color);
}

/* Badge System */
.Expired,
.Anytime,
.Upcoming,
.Ongoing,
.badge,
.chip {
  font-weight: 600;
  font-size: 13px;
  border: none;
  padding: 6px 14px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

/* Status Badge Colors */
.Expired {
  background: rgba(244, 67, 54, 0.1);
  color: #f44336 !important;
}

.Anytime {
  background: rgba(52, 152, 219, 0.15);
  color: var(--primary) !important;
}

.Ongoing {
  background: rgba(76, 191, 122, 0.15);
  color: var(--secondary) !important;
}

.Upcoming {
  background: rgba(255, 152, 0, 0.15);
  color: #ff9800 !important;
}

/* Badge Variants */
.badge-primary {
  background: var(--primary);
  color: var(--font-invert);
}

.badge-secondary {
  background: var(--secondary);
  color: var(--font-invert);
}

.badge-success {
  background: var(--success);
  color: var(--font-invert);
}

.badge-warning {
  background: var(--warning);
  color: #000;
}

.badge-error {
  background: var(--error);
  color: var(--font-invert);
}

.badge-info {
  background: var(--info);
  color: var(--font-invert);
}

/* Outlined Badge Variants */
.badge-outline {
  background: transparent;
  border: 1.5px solid currentColor;
}

.badge-outline.badge-primary {
  color: var(--primary);
}

.badge-outline.badge-secondary {
  color: var(--secondary);
}

/* Soft Badge Variants */
.badge-soft {
  border: none;
}

.badge-soft.badge-primary {
  background: rgba(52, 152, 219, 0.15);
  color: var(--primary);
}

.badge-soft.badge-secondary {
  background: rgba(76, 191, 122, 0.15);
  color: var(--secondary);
}

.badge-soft.badge-success {
  background: rgba(76, 175, 80, 0.15);
  color: var(--success);
}

/* Badge Sizes */
.badge-sm {
  font-size: 11px;
  padding: 4px 10px;
}

.badge-lg {
  font-size: 14px;
  padding: 8px 16px;
}
.weightage-level {
  padding-top: 15px;
  margin-bottom: 15px;
  margin-top: 10px;
  width: 132px;
  border-radius: 24px;
  border: 1px solid lightgray;
  background: var(--bg);
  font-weight: bold;
  -webkit-transition: color 1s, font-size 1s;
  -moz-transition: color 1s, font-size 1s;
  -o-transition: color 1s, font-size 1s;
  transition: color 1s, font-size 1s;
  color: var(--font-light);
}
.weightage-level.active {
  background: white;
  font-size: 20px;
  font-weight: 600px;
}
.weightage-level h5 {
  font-size: 15px;
}
.weightage-level span {
  font-size: 71px;
  -webkit-transition: color 1s, font-size 1s;
  -moz-transition: color 1s, font-size 1s;
  -o-transition: color 1s, font-size 1s;
  transition: color 1s, font-size 1s;
}
.weightage-level input[type="number"] {
  outline: none;
  background: rgba(232, 232, 232, 0);
  text-align: center;
  border: 1px solid #e3e3e3;
  margin-bottom: 10px;
  border-radius: 6px;
  width: 62px;
  /* padding-left: 14px; */
}
.weightage-level input[type="number"]:focus {
  border: 1px solid #a9a9a9;
}
.weightage-level input[type="number"]:hover {
  border: 1px solid #a9a9a9;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  opacity: 1;
}
.time-level {
  padding: 10px;
  width: 61px;
}
.time-level span {
  font-size: 15px;
}
.time-level:hover {
  font-size: 20px;
  font-weight: bold;
}
.time-level-selected {
  font-size: 20px;
  font-weight: bold;
  background: #b41d9f;
  color: white;
}
/* Gemini solution output start */
.gemini-solution-output {
  color: #222;
  background: var(--dash);
  border-radius: 12px;
  padding: 10px 20px;
  margin-top: 21px;
  margin: 20px auto;
  margin-top: 20px;
  box-shadow: 0 2px 16px 0 rgba(60, 60, 60, 0.07);
  font-size: 1.08rem;
  line-height: 1.7;
  word-break: break-word;
  display: flex;
  flex-direction: column;
  font-size: 16px;
  padding-top: 10px !important;
}

.gemini-solution-output h6 {
  font-size: 17px;
  font-weight: 700;
  color: #16a34a;
  margin: 1.2em 0 0.7em 0;
  letter-spacing: 0.01em;
}
.gemini-solution-output h6:first-child {
  margin-top: 10px;
}
.gemini-solution-output p {
  margin: 0.7em 0;
  color: #222;
}

.gemini-solution-output span {
  color: #444;
}

.gemini-solution-output strong {
  color: #16a34a;
  font-weight: 600;
}

.gemini-solution-output br {
  line-height: 1.7;
}

/* List styles */
.gemini-solution-output ul {
  margin: 0.7em 0 0.7em 1.5em;
  padding-left: 1.2em;
  list-style-type: disc;
  display: flex;
  flex-direction: column;
}

.gemini-solution-output li {
  margin: 0.3em 0;
  padding-left: 0.2em;
  color: #333;
  line-height: 1.6;
  font-size: 16px;
}

/* Optional: Style LaTeX/MathJax output if you use MathJax */
.gemini-solution-output .mjx-math {
  font-size: 1.1em;
  color: #0a0a0a;
  background: none;
}
/* Gemini solution output end */
/* Optional: Style LaTeX/MathJax output if you use MathJax */
.gemini-solution-output .mjx-math {
  font-size: 1.1em;
  color: #0a0a0a;
  background: none;
}
.dictionary-item {
  background: var(--bg);
  margin-top: 0;
}
.exam-settings .top-seperate {
  padding-top: 10px;
  padding: 0;
}
.examitem .title span:nth-child(2) {
  float: right;
  font-size: 12px;
  font-weight: normal;
  color: #000000;
  font-weight: 600;
}
.examitem .examtime {
  float: left;
  font-size: 13px;
  color: var(--font-light);
  overflow-x: hidden;
  white-space: nowrap;
  width: 100%;
}
.examitem .examtime span:nth-child(even) {
  color: var(--font-dark);
  background: var(--exambg);
  border-radius: 5px;
  padding: 1px 5px;
  font-size: 11px;
  border: var(--br-thinkness) solid var(--lbr-color);
}
.examitem .examtime span:nth-child(odd) {
  margin-right: 5px;
  font-size: 10px;
}
.examitem .examtime span:nth-child(odd) {
  margin-left: 5px;
}
.examitem .examtime span:nth-child(1) {
  margin-left: 0px;
}
.examitem p {
  height: 45px;
  max-height: 45px;
  font-size: 14px;
  overflow: hidden;
  margin: 0;
  color: var(--font-light);
  margin-top: 5px;
  width: 84%;
  float: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.np p {
  height: auto;
  max-height: initial;
  font-size: 14px;
  overflow: auto;
  margin-bottom: 10px;
  color: var(--font-light);
  margin-top: 5px;
  width: 100%;
  float: left;
  text-overflow: unset;
  white-space: normal;
}

#practice-solution p {
  height: auto;
  color: inherit;
  max-height: inherit;
  font-size: 15px;
  line-height: 23px;
  text-overflow: inherit;
  white-space: inherit;
  width: 100%;
}
.side-widget {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  left: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  z-index: 1;
}
.side-widget::parent {
  background: red;
}
.side-widget .examitem {
  padding: 15px 30px;
  /* box-shadow: none; */
  float: left;
  width: auto;
  max-width: 800px;
  max-height: calc(100% - 15px);
  overflow: auto;
  overscroll-behavior: contain;
}
.exam-list .examitem {
  width: calc(100% - 10px);
  margin-bottom: 20px;
  padding: 18px;
  overflow: initial;
}
.exam-sub-list .head {
  float: left;
  border: 0.1px solid var(--lbr-color);
  border-radius: 12px;
  padding: 10px;
  color: var(--primary);
  text-align: left;
  margin-bottom: 0;
  border-bottom-left-radius: 0;
  border-bottom-width: 0;
  border-bottom-right-radius: 0;
}
.exam-sub-list .item {
  float: left;
  width: 100%;
  border: 0.1px solid var(--lbr-color);
  border-width: 1px 1px 1px 1px;
  padding: 10px;
  border-radius: 12px;
  border-top-left-radius: 0;
  border-bottom-right-radius: 12px;
}
.center-div .buttons {
  position: sticky;
  bottom: -16px;
  margin-left: 0;
  width: 100%;
  background: var(--bg);
  padding-bottom: 14px;
  border-top: 1px solid var(--br-color);
}
.center-div .content {
  padding: 15px 14px;
}
.center-div .image {
  max-width: 100%;
  background: white;
  padding: 10px;
  margin-top: 10px;
  background: white;
  border-radius: 10px;
}
.image_pop a {
  color: white;
  margin-top: 10px;
  float: left;
}
.side-widget .content {
  padding: 5px 0;
}
.side-widget .examitem .title-header button {
  float: right;
  border: 1px solid #eeeaf3;
  border-radius: 12px;
  background: white;
  padding: 5px 20px;
  color: #5d2e91;
  font-weight: bold;
  width: auto;
}
.side-widget form button {
  max-width: 100%;
}
.left-widget {
  width: 100%;
  /* max-width: 1000px; */
}
.title-header {
  font-size: 16px;
  font-weight: 600;
  width: 100%;
  float: left;
}
.title-header div {
  float: left;
  padding-top: 5px;
}
.assignment .title-header div {
  border-bottom: 1px solid lightgray;
  width: 100%;
  margin-bottom: 5px;
  padding-bottom: 5px;
}
.sub-menu-data-item .title-header {
  padding: 0 10px 0px;
}
.word-data .title-header {
  border-bottom: 1px solid lightgrey;
  margin-bottom: 10px;
  padding: 0px 0 10px;
}
.examitem .title-header {
  padding: 0;
}
.btn-icon span:nth-child(2) {
  margin-left: 10px;
}
.exam-row,
.result-data .exam-row {
  border-top: 1px solid #e7e7e7;
  padding: 10px 10px;
  background: #f0f0f000;
  border-color: var(--br-color);
}
.study-plan-item .exam-row {
  padding: 10px 0px;
  font-size: 13px;
}
.study-plan-item .exam-row:first-child {
  margin-top: 10px;
}
.b-top-row {
  border-top: 1px solid #e7e7e7;
  padding: 15px 0px;
}

.exam-row span:first-child {
  float: left;
  font-size: 15px;
  color: var(--font-light);
}
.exam-row span:nth-child(2) {
  float: right;
  font-size: 15px;
  font-weight: 600;
  border-radius: 12px;
  margin: auto;
}
.examitem .exam-row:last-child {
  border-bottom: 1px solid #e7e7e7;
}
.side-widget .examitem .exam-row {
  padding: 10px 0;
}
.side-header {
  padding: 21px 0px;
  height: 60px;
}
.side-header div:first-child {
  float: left;
  font-size: 19px;
  color: var(--font-dark);
  font-weight: 600;
}
.side-header div:first-child span {
  font-size: 26px;
  margin: 0px 10px 0 0px;
  float: left;
}
.side-header div:nth-child(2) {
  float: right;
  font-size: 20px;
  font-weight: 600;
  color: red;
}
.exam-window {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: var(--bg);
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.4s;
  animation-name: zoom;
  animation-duration: 0.2s;
  z-index: 1;
  overflow: auto;
}
.game-window {
  background: var(--primaryColor);
  display: grid;
  padding-bottom: 55px;
}
.exam-right {
  width: 40%;
  border-left: 1px var(--br-color) solid;
  border-top: 1px solid var(--br-color);
}
.exam-left {
  width: 60%;
}
.question-view {
  padding: 15px 15px 0px 30px;
  top: 40px;
  left: 0;
  height: auto;
  margin: 0px;
  background: var(--exambg);
  padding-bottom: 89px;
  bottom: 0;
  overflow-y: auto;
  position: fixed;
  overscroll-behavior: contain;
}
.qst_box {
  float: left;
}
.question-board {
  text-align: center;
  position: fixed;
  top: 0;
  right: 0;
  height: auto;
  bottom: 56px;
  overflow-y: auto;
  width: 40%;
  background: var(--bg);
  padding-bottom: 20px;
  padding-top: 40px;
  overscroll-behavior: contain;
}
.info-text {
  width: auto;
  text-align: left;
  margin-right: 10px;
  margin-left: 10px;
  padding-left: 38px;
  padding-top: 10px;
}
.question-board li {
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center;
  border-width: 0px;
  text-align: center;
  width: 35px;
  height: 35px;
  padding-top: 0.1px;
  margin: 4px;
  float: left;
  cursor: pointer;
  background: var(--exambg);
  border-radius: 12px;
  color: var(--font-light);
  border: 1px solid var(--br-color);
}

.que-not-answered {
  background: #febcbc !important;
  color: #e02020 !important;
  border: 0px solid #febcbc;
}
.que-save {
  background: #9af4a1 !important;
  color: #008002 !important;
  border: 0px solid #9af4a1;
}
.que-save-mark {
  background: #e5ccff !important;
  border: 1px solid #9af4a1 !important;
}
.que-save-mark:after {
  content: o;
}
.que-mark {
  background: #e5ccff !important;
  border: 1px solid #febcbc !important;
}
.question-board ul {
  padding-left: 0;
  list-style: none;
  padding: 10px;
  float: left;
}
.question-board .current {
  background: #ffffff !important;
  /* color: #ac0000 !important; */
  box-shadow: 0 6px 10px 0 rgba(244, 154, 193, 0.1) !important;
  border-width: 1px;
  font-weight: 600;
}
.que-save-mark:before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background: #9d3bfe;
  border-radius: 50px;
  margin-top: -5px;
  margin-left: 9px;
}
.question-board .subjet-content {
  text-align: left;
  padding-left: 15px;
}
.question-board .part-details {
  text-align: left;
  padding: 10px 16px 0px;
}
.question-board .part-details span:nth-child(even) {
  border: 1px solid var(--br-color);
  padding: 5px;
  margin: 5px;
}
.question-board .subjet-content label {
  padding: 5px 0px;
  color: var(--font-dark);
  font-weight: 600;
  background: var(--lbg);
  padding: 10px;
  border: 1px solid var(--br-color);
  border-radius: 10px;
}
.option-panel {
  position: fixed;
  /* top: auto; */
  height: auto;
  bottom: 18px;
  height: auto;
  min-height: 0 !important;
  padding: 0;
  /* transition: 250ms cubic-bezier(0.1, 0.57, 0.1, 1); */
  text-align: center;
  z-index: 1;
}
.sep.option-panel {
  z-index: 0;
  width: auto;
  background: transparent;
  left: 50%;
  /* right: auto; */
  margin: auto;
}
.full-screen .option-panel {
  left: 0;
  right: 0;
  background: var(--bg);
  bottom: 0;
  border-top: 1px solid #e1e1e1;
  height: 90px;
}
.full-screen .round-panel {
  border: 0;
}
.round-panel {
  background: var(--bg);
  border: 1px solid var(--br-color);
  border-radius: 12px;
  display: inline-flex;
  padding: 0 10px;
  overflow: auto;
  white-space: nowrap;
  width: auto;
}
.round-option {
  margin: 9px 5px;
  background: transparent;
  height: 38px;
  border-radius: 12px;
  min-width: 36px;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}
.sep .round-option {
  font-size: 17px;
  padding: 0;
  margin: 6px 5px 10px;
}
.sep .round-option span {
  font-size: 12px;
}
.mark-review.active {
  border-radius: 12px;
  color: var(--primary);
}
.qst_box img {
  filter: var(--qstimg);
}
.tray .questions,
.view.question {
  /* padding:10px; */
  float: left;
}
.tray .sub .question,
.view.question {
  padding: 15px 0px 5px;
  margin-bottom: 5px;
  border-bottom: 1px solid #eaeaea;
  border-color: var(--br-color);
  margin-left: 10px;
  background: var(--bg);
  padding: 10px;
  border: 1px solid var(--font-dark);
  padding: 15px;
  border-radius: 10px;
}
.tray .sub .ono,
.view.question .ono {
  float: left;
  width: 25px;
  height: 25px;
  background: var(--bg);
  padding: 1px 7px;
  border: 1px solid lightgray;
}
.tray .question .option,
.view.question .option {
  margin-bottom: 5px;
  border-bottom: 1px solid #eaeaea;
  border-color: var(--br-color);
  margin-left: 10px;
  width: calc(100% - 35px);
  float: left;
  padding: 0px 0px 10px 0px;
}
.question-list-page {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: baseline;
}
.tray .sub .question {
  margin: 0;
  margin-bottom: 10px;
}
.bold-title {
  font-weight: 600;
  border-bottom: 1px solid #e8e8e8;
  margin-bottom: 10px;
  float: left;
  width: 100%;
  font-size: 14px;
  padding-bottom: 10px;
}
.list li:first-child {
  padding: 10px 0 5px 0 !important;
}
.tray .question .icon-helpcenter,
.view.question .icon-helpcenter {
  margin-right: 10px;
}
.tray .new-question,
.tray .auto-generate {
  padding: 15px 0;
}
.tray .question .left-100:nth-child(3),
.view.question .left-100:nth-child(3) {
  margin-top: 10px;
  margin-bottom: 10px;
}
.view.question p:first-child {
  padding: 0;
  margin-top: 10px;
  margin-bottom: 10px;
}
.viewer {
  margin-bottom: 15px;
  padding: 10px;
  border-radius: 0 0 10px 10px;
  border: 1px solid var(--br-color);
  float: left;
  width: 100%;
  margin-top: -18px;
  padding-top: 15px;
  text-align: left;
  display: block;
  height: auto;
  max-height: 300px;
}
.mcq.active,
.mcq:hover {
  background: var(--primary);
  color: var(--font-dark);
  border: 1px solid var(--primary) !important;
  background: var(--lbg);
}
.round-panel div {
  opacity: 0.2;
  background: var(--font-dark);
  width: 1px;
  margin: 12px 5px;
}
.desktop-close {
  position: fixed;
  z-index: 2000;
  background: white;
  right: 0;
  bottom: 0;
  text-align: center;
  height: 65px;
  padding-top: 10px;
  border-top: 1px solid #d9d9d9;
  border-left: 1px solid #d9d9d9;
}
.top {
  top: 0;
  height: 41px;
  border-bottom: 1px var(--br-color) solid;
  border-top: 0;
  white-space: nowrap;
  overflow-y: auto;
  padding: 0px 10px;
  max-width: 100%;
  background: var(--bg-primary);
  color: var(--font-invert);
}
.secondary {
  background: transparent !important;
  border: 1px solid var(--lbr-color) !important;
  color: var(--font-dark) !important;
  margin-right: 10px;
}
.disable {
  background: #dfdfdf !important;
  color: gray !important;
  border: 1px solid #d7d7d7 !important;
  cursor: auto;
}
.question-div {
  font-size: 15px;
  float: left;
  border: 1px solid var(--br-color);
  padding: 8px;
  border-radius: 6px;
  z-index: 2000;
  background: var(--bg);
  min-width: 426px;
  text-align: left;
  max-width: 750px;
  padding: 15px;
  margin-bottom: 20px;
  margin-left: 10px;
  max-width: calc(100% - 60px);
  color: inherit;
}
.full-screen .question-div {
  font-size: 18px;
}
.practice .group {
  width: 50%;
}
.qst-label {
  margin: 0px 1px 8px 0px;
  background: var(--bg);
  min-width: 30px;
  width: auto;
  padding: 5px;
  border-radius: 5px;
  text-align: center;
  margin-top: 14px;
  float: left;
  border: 1px solid var(--br-color);
}
.sub-learning .option .qst-label {
  border: 1px solid lightgray;
}
.full-screen .qst-label {
  font-size: 17px;
}
.option button,
.option .qst-label {
  cursor: pointer;
}
.border-bold {
  border: 1px solid var(--br-color);
  font-size: 16px;
  padding: 20px;
  margin-left: 0;
}
.solution {
  font-size: 16px;
  padding-top: 20px;
}
.question-div p {
  margin: 5px 0px 5px;
}
.feedback span {
  -webkit-transition: color 1s, font-size 1s;
  -moz-transition: color 1s, font-size 1s;
  -o-transition: color 1s, font-size 1s;
  transition: color 1s, font-size 1s;
}
.prof-icon {
  width: 50px;
  filter: var(--img);
}
.feedback .btn-feedback {
  margin: 0;
  margin-top: 10px;
  background: #ffd600;
}
.feedback .rating {
  background: none;
  padding: 0;
}
.feedback input[type="text"] {
  border: 0;
  outline: none;
  border-bottom: 1px solid #d9d9d9;
  float: left;
  width: 100%;
  margin-top: 8px;
}
.feedback span:hover {
  color: orange;
  cursor: pointer;
  font-size: 20px;
}
.exam-actions {
  position: fixed;
  right: 0;
  bottom: 0;
  padding: 10px 10px;
  background: var(--bg);
}
.make-option-green .qst-label {
  border: 1px solid var(--br-color);
  background: var(--lbg);
  color: var(--font-dark);
}
.make-option-green .question-div {
  border: 1.5px solid var(--primary);
}
.exam-actions .btn-default {
  margin-top: auto;
  max-width: 200px;
}
.mcq.round-option {
  border: 1px solid gray;
  border-color: var(--br-color);
  border-radius: 12px;
}
.exam-window .round-option.mcq {
  border: 1px solid var(--br-color);
  border-radius: 12px;
}
.round-option span {
  width: 100%;
  float: left;
  font-size: 9px;
  margin-top: 0px;
}
.full-screen .round-option span {
  font-size: 8px;
}
.mark-review {
  color: lightgray;
  border-color: lightgray;
}
.full-div .left-widget {
  background: #ffebf4;
  bottom: 0;
  top: 0;
  left: 0;
  position: absolute;
  max-width: initial;
}
.full-div .left-widget img {
  height: 60%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
}
#error,
.error {
  border-left: 1px solid lightgrey;
  padding-left: 10px;
  margin: 0px 0;
  color: #fe7b7b;
}
#error.g,
.error.g {
  color: green;
}
.qst {
  background: transparent;
  font-weight: 600;
  width: 100%;
  text-align: left;
  border: 0;
}
.previous,
.next {
  color: var(--font-dark);
  font-weight: 600;
}
.full-screen .round-option {
  font-size: 17px;
  border-radius: 50%;
  height: 60px;
  width: 60px;
  background: var(--bg);
  border: 1px solid #aaaaaa;
}
.exam-right.top {
  right: 0;
  background: var(--bg);
  z-index: 100;
  color: var(--font-dark);
}
.option-panel blink {
  color: var(--font-invert);
}
.exam-result {
  margin: auto;
  background: var(--bg);
  border: var(--br-thinkness) solid var(--lbr-color);
  width: 50%;
  height: auto;
  border-radius: 12px;
  min-height: 20%;
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.4s;
  animation-name: zoom;
  animation-duration: 0.4s;
}
.payment-page.exam-result {
  width: auto;
  max-width: 75%;
}
.exam-result .page-header,
.exam-result .page-header-inside {
  width: 100%;
  margin-left: 0;
  border-radius: 12px;
  height: auto;
  padding: 20px 20px 10px;
  border-bottom: 1px solid #eeeeee;
  justify-content: space-between;
}
.exam-result .page-header.fixed {
  position: inherit;
  height: auto;
  padding: 26px 24px 0px 26px;
}
.exam-result .page-header .page-title {
  font-size: 34px;
  margin-top: 0;
  margin: auto;
  padding-bottom: 0;
  padding-top: 5px;
}
.exam-result .page-header .page-title img {
  float: inherit;
}
.exam-result .page-left {
  float: left;
  max-width: 68%;
  display: flex;
  flex-direction: column;
}

.exam-result .page-left span {
  white-space: nowrap;
  width: 100%;
  padding-bottom: 0;
}
.profile-bar {
  float: right;
}

.exam-result .profile-bar .date {
  color: var(--font-light);
}
.page-desc {
  font-size: 14px;
  color: var(--font-light);
  padding-bottom: 10px;
  float: left;
}
.grades {
  float: left;
  padding: 10px 20px;
  border-bottom: 1px solid #e8e8e8;
  margin-bottom: 20px;
}
.question-list.grades,
.question-list .grades {
  padding: 0;
  margin-bottom: 0;
}
.level-test-content {
  font-size: 21px;
  color: #2f1366;
}
span:focus {
  outline: none !important;
}
.result-container,
.paper-container,
.form_temp {
  z-index: 2001;
  border-radius: 0;
}

.result-container button {
  max-width: 400px;
}
.result-container button.disabled {
  background: #e6e6e6 !important;
  color: gray !important;
  border: 1px solid #b9b8b9 !important;
}
.paper-container .question-container {
  margin-bottom: 10px;
  padding: 10px;
}
.question-container .index {
  padding: 5px 5px;
}
.question-container .question,
.question-container .answer,
.question-container .right-answer {
  border-radius: 12px;
  border: 1px solid lightgray;
  padding: 10px;
  width: auto;
  min-width: 75%;
  margin-bottom: 10px;
  margin-left: 0;
}
.question-container .red {
  border: 2px solid #f10404;
}
.question-container .green {
  border: 2px solid #00ff30;
}
.result-data .exam-row:first-child {
  border: 0;
  padding-top: 20px;
}
.result-data {
  /* background: #F0F2F6; */
  border: 1px solid var(--primary);
  border-radius: 12px;
  float: left;
  /* background: -webkit-linear-gradient(
22deg
, var(--primary), var(--secondary) 106%); */
  margin: 28px 0 28px 28px;
  width: 60%;
}
.result-data.left-100 {
  width: 100%;
  margin: 20px;
  width: calc(100% - 40px);
}
.result-data.left-100.width-50-100 {
  margin: 10px 1px;
  margin-top: 10px;
}
.style-1 {
  /* background:#eeeeee; */
  /* padding:10px; */
  border: 0;
  width: calc(100% - 56px);
  margin: 0px 0 20px 27px;
}
.payment-page .plans .result-data {
  width: calc(33% - 40px);
  border: 1px solid var(--primary-light);
  border-radius: 0;
  box-shadow: 1px 1px 13px 0px rgb(12 0 46 / 6%);
}
.payment-page .plans .result-data.plan-1 {
  width: calc(100% - 40px);
}
.payment-page .plans .result-data.plan-2 {
  width: calc(50% - 40px);
}
.payment-page .plans .result-data.plan-3 {
  width: calc(33% - 40px);
}
.result-data.left-100.width-50-100:nth-child(odd) {
  margin-left: 20px;
}
.result-data.left-100.width-50-100:nth-child(even) {
  margin-left: 20px;
  /* margin-top: 10px; */
}
.result-data .exam-row span:first-child {
  float: left;
  font-size: 15px;
  color: var(--font-light);
  padding: 0 20px;
  width: 180px;
}
.result-data .exam-row span:nth-child(2) {
  float: left;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  white-space: break-spaces;
  width: calc(100% - 180px);
}
.payment-page .result-data .exam-row span:first-child {
  width: 120px;
}
.payment-page .result-data .exam-row span:nth-child(2) {
  width: calc(100% - 120px);
}

.full-span {
  width: 100% !important;
  padding: 10px 20px 0px 20px !important;
  white-space: normal !important;
}
.result-percentage {
  background: var(--primary);
  background: -webkit-linear-gradient(45deg, var(--primary), var(--secondary) 106%);
  float: right;
  width: 30%;
  margin: 28px 28px 28px 0;
  color: white;
  padding: 15px;
  border-radius: 12px;
}
.head-perc {
  padding-bottom: 10px;
  padding-top: 19px;
  opacity: 0.5;
  color: #ffffff;
}
.justify-center h4,
.left-100.exam-row.hide-d h4 {
  font-size: 24px;
  border: 5px solid;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  text-align: center;
  padding-top: 29px;
  border-color: var(--primary-light);
  margin-top: 4px;
  margin-bottom: 16px;
}
.exam-result .justify-center span {
  margin-top: -23px;
  padding: 0;
}
.exam-result .left-100.justify-center:last-child {
  padding: 11px 0px 20px 0;
}

/* OMR Result Action Buttons - Modern Card Style */
.exam-result .left-100.justify-center {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 16px 20px;
}

.exam-result .left-100.justify-center button.btn-default {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 140px;
  max-width: 200px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  background: var(--bg);
  color: var(--font-dark);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
  margin: 0;
}

.exam-result .left-100.justify-center button.btn-default:hover {
  background: var(--lbg);
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.15);
  transform: translateY(-2px);
}

.exam-result .left-100.justify-center button.btn-default:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

/* Close button - subtle gray style */
.exam-result .left-100.justify-center button.btn-default:first-child {
  background: var(--gray-100);
  border-color: var(--gray-300);
  color: var(--gray-600);
  min-width: 100px;
}

.exam-result .left-100.justify-center button.btn-default:first-child:hover {
  background: var(--gray-200);
  border-color: var(--gray-400);
  color: var(--gray-700);
}

/* Question Paper button - Blue accent */
.exam-result .left-100.justify-center button.view-omr-question-pdf {
  background: linear-gradient(135deg, #e8f4ff 0%, #d4e8fc 100%);
  border-color: var(--primary-light);
  color: var(--primary);
}

.exam-result .left-100.justify-center button.view-omr-question-pdf:hover {
  background: linear-gradient(135deg, #d4e8fc 0%, #b8d8f8 100%);
  border-color: var(--primary);
}

/* Answer Key button - Green accent */
.exam-result .left-100.justify-center button.view-omr-answer-pdf {
  background: linear-gradient(135deg, #e6f7ed 0%, #c8f0d8 100%);
  border-color: var(--secondary-light);
  color: #16a34a;
}

.exam-result .left-100.justify-center button.view-omr-answer-pdf:hover {
  background: linear-gradient(135deg, #c8f0d8 0%, #a8e5c0 100%);
  border-color: var(--secondary);
}

/* Solution Paper button - Purple accent */
.exam-result .left-100.justify-center button.view-omr-solution-pdf {
  background: linear-gradient(135deg, #f3e8ff 0%, #e5d4f7 100%);
  border-color: var(--purple-light);
  color: var(--purple-primary);
}

.exam-result .left-100.justify-center button.view-omr-solution-pdf:hover {
  background: linear-gradient(135deg, #e5d4f7 0%, #d4bef2 100%);
  border-color: var(--purple-primary);
}

/* Solution Video button - Orange/Warm accent */
.exam-result .left-100.justify-center button.view-omr-solution-video {
  background: linear-gradient(135deg, #fff5e6 0%, #ffe8cc 100%);
  border-color: #ffd699;
  color: #d97706;
}

.exam-result .left-100.justify-center button.view-omr-solution-video:hover {
  background: linear-gradient(135deg, #ffe8cc 0%, #ffd699 100%);
  border-color: #ffb84d;
}

/* Certificate button - Gold accent */
.exam-result .left-100.justify-center button.certificate-result {
  background: linear-gradient(135deg, #fef9e7 0%, #fdf2c5 100%);
  border-color: #f7dc6f;
  color: #b79600;
}

.exam-result .left-100.justify-center button.certificate-result:hover {
  background: linear-gradient(135deg, #fdf2c5 0%, #fae5a0 100%);
  border-color: #f1c40f;
}

/* Retry Exam button - Primary accent */
.exam-result .left-100.justify-center button.start-exam {
  background: linear-gradient(135deg, var(--primary) 0%, #2980b9 100%);
  border-color: var(--primary);
  color: white;
}

.exam-result .left-100.justify-center button.start-exam:hover {
  background: linear-gradient(135deg, #2980b9 0%, #1a5276 100%);
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.exam-result.payment-page .plans {
  /* border-top: 1px solid #f0f0f0; */
  margin-top: 10px;
  padding: 10px;
}
.performance {
  height: 37px;
}
.performance .bar {
  width: 80%;
  background: #dadada;
  float: left;
  height: 10px;
  border-radius: 12px;
  position: absolute;
  margin-top: 25px;
}
.performance .percentage {
  height: 10px;
  background: #9c27b0;
  border-radius: 12px;
}
.ta-left {
  padding: 0;
}
table {
  border: 1px solid #7d7d7d;
  margin-bottom: 15px;
  width: 100%;
  max-width: 100%;
  float: left;
  overflow-wrap: anywhere;
}
table tr {
  width: 100%;
}
table td {
  border: 1px solid #7d7d7d;
  padding: 10px;
  font-size: 12px;
  word-wrap: break-word;
}
.print-content table td span {
  font-weight: 600;
}
.print-content th,
th {
  font-size: 12px;

  white-space: nowrap;
}
.print-content {
  overflow: auto;
  float: left;
  width: 100%;
}
.print-content h3 {
  font-size: 18px;
  border-bottom: 1px solid lightgray;
  padding-bottom: 5px;
}
.print-content table td img {
  max-height: 80px;
  width: auto !important;
}
table .c {
  text-align: center;
}
table .r {
  text-align: right;
}
.pre-box,
.pre-box > div {
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.pre-box {
  display: block;
  font-size: 0;
  color: #fff;
}
.pre-box.la-dark {
  color: var(--font-dark);
}
.pre-box > div {
  display: inline-block;
  float: none;
  background-color: currentColor;
  border: 0 solid currentColor;
}
.pre-box {
  width: 30px;
  height: 30px;
  margin: auto;
}
.pre-box > div:nth-child(1),
.pre-box > div:nth-child(2) {
  position: absolute;
  left: 0;
  width: 100%;
}
.pre-box > div:nth-child(1) {
  top: -25%;
  z-index: 1;
  height: 100%;
  border-radius: 10%;
  -webkit-animation: square-jelly-box-animate 0.6s -0.1s linear infinite;
  -moz-animation: square-jelly-box-animate 0.6s -0.1s linear infinite;
  -o-animation: square-jelly-box-animate 0.6s -0.1s linear infinite;
  animation: square-jelly-box-animate 0.6s -0.1s linear infinite;
  background: -webkit-linear-gradient(45deg, var(--primary), var(--secondary) 103%);
}
.pre-box > div:nth-child(2) {
  bottom: -9%;
  height: 10%;
  background: #000;
  border-radius: 50%;
  opacity: 0.2;
  -webkit-animation: square-jelly-box-shadow 0.6s -0.1s linear infinite;
  -moz-animation: square-jelly-box-shadow 0.6s -0.1s linear infinite;
  -o-animation: square-jelly-box-shadow 0.6s -0.1s linear infinite;
  animation: square-jelly-box-shadow 0.6s -0.1s linear infinite;
}
.pre-box.la-sm {
  width: 16px;
  height: 16px;
}
.pre-box.la-2x {
  width: 64px;
  height: 64px;
}
.pre-box.la-3x {
  width: 96px;
  height: 96px;
}
@-webkit-keyframes square-jelly-box-animate {
  17% {
    border-bottom-right-radius: 10%;
  }
  25% {
    -webkit-transform: translateY(25%) rotate(22.5deg);
    transform: translateY(25%) rotate(22.5deg);
  }
  50% {
    border-bottom-right-radius: 100%;
    -webkit-transform: translateY(50%) scale(1, 0.9) rotate(45deg);
    transform: translateY(50%) scale(1, 0.9) rotate(45deg);
  }
  75% {
    -webkit-transform: translateY(25%) rotate(67.5deg);
    transform: translateY(25%) rotate(67.5deg);
  }
  100% {
    -webkit-transform: translateY(0) rotate(90deg);
    transform: translateY(0) rotate(90deg);
  }
}
@-moz-keyframes square-jelly-box-animate {
  17% {
    border-bottom-right-radius: 10%;
  }
  25% {
    -moz-transform: translateY(25%) rotate(22.5deg);
    transform: translateY(25%) rotate(22.5deg);
  }
  50% {
    border-bottom-right-radius: 100%;
    -moz-transform: translateY(50%) scale(1, 0.9) rotate(45deg);
    transform: translateY(50%) scale(1, 0.9) rotate(45deg);
  }
  75% {
    -moz-transform: translateY(25%) rotate(67.5deg);
    transform: translateY(25%) rotate(67.5deg);
  }
  100% {
    -moz-transform: translateY(0) rotate(90deg);
    transform: translateY(0) rotate(90deg);
  }
}
@-o-keyframes square-jelly-box-animate {
  17% {
    border-bottom-right-radius: 10%;
  }
  25% {
    -o-transform: translateY(25%) rotate(22.5deg);
    transform: translateY(25%) rotate(22.5deg);
  }
  50% {
    border-bottom-right-radius: 100%;
    -o-transform: translateY(50%) scale(1, 0.9) rotate(45deg);
    transform: translateY(50%) scale(1, 0.9) rotate(45deg);
  }
  75% {
    -o-transform: translateY(25%) rotate(67.5deg);
    transform: translateY(25%) rotate(67.5deg);
  }
  100% {
    -o-transform: translateY(0) rotate(90deg);
    transform: translateY(0) rotate(90deg);
  }
}
@keyframes square-jelly-box-animate {
  17% {
    border-bottom-right-radius: 10%;
  }
  25% {
    -webkit-transform: translateY(25%) rotate(22.5deg);
    -moz-transform: translateY(25%) rotate(22.5deg);
    -o-transform: translateY(25%) rotate(22.5deg);
    transform: translateY(25%) rotate(22.5deg);
  }
  50% {
    border-bottom-right-radius: 100%;
    -webkit-transform: translateY(50%) scale(1, 0.9) rotate(45deg);
    -moz-transform: translateY(50%) scale(1, 0.9) rotate(45deg);
    -o-transform: translateY(50%) scale(1, 0.9) rotate(45deg);
    transform: translateY(50%) scale(1, 0.9) rotate(45deg);
  }
  75% {
    -webkit-transform: translateY(25%) rotate(67.5deg);
    -moz-transform: translateY(25%) rotate(67.5deg);
    -o-transform: translateY(25%) rotate(67.5deg);
    transform: translateY(25%) rotate(67.5deg);
  }
  100% {
    -webkit-transform: translateY(0) rotate(90deg);
    -moz-transform: translateY(0) rotate(90deg);
    -o-transform: translateY(0) rotate(90deg);
    transform: translateY(0) rotate(90deg);
  }
}
@-webkit-keyframes square-jelly-box-shadow {
  50% {
    -webkit-transform: scale(1.25, 1);
    transform: scale(1.25, 1);
  }
}
@-moz-keyframes square-jelly-box-shadow {
  50% {
    -moz-transform: scale(1.25, 1);
    transform: scale(1.25, 1);
  }
}
@-o-keyframes square-jelly-box-shadow {
  50% {
    -o-transform: scale(1.25, 1);
    transform: scale(1.25, 1);
  }
}
@keyframes square-jelly-box-shadow {
  50% {
    -webkit-transform: scale(1.25, 1);
    -moz-transform: scale(1.25, 1);
    -o-transform: scale(1.25, 1);
    transform: scale(1.25, 1);
  }
}
.pre span {
  float: left;
  margin-top: 15px;
  color: var(--font-dark);
  width: 100%;
  text-align: center;
}
.info {
  border-radius: 12px;
  margin-bottom: 20px;
  color: red;
}
.landing {
  margin-top: 0;
  position: absolute;
  justify-content: initial;
  align-items: initial;
  padding-bottom: 30px;
}
.shape_top.landing {
  position: inherit;
}
.landing-info {
  text-align: center;
}
.landing img {
  max-width: 70%;
  width: 450px;
}
.landing-text {
  padding: 20px 400px;
}
.landing p {
  max-width: 300px;
  width: 80%;
  margin-top: 30px;
  padding: 24px;
}
.landing .pre-text {
  width: 35%;
  padding: 10px 19px;
  margin: auto;
  text-align: center;
  white-space: break-spaces;
  margin-bottom: 20px;
  border-radius: 20px;
  border-radius: 10px;
  background: white;
  font-weight: 600;
}
.load-more {
  margin-top: 0px;
  border-radius: 10px;
  padding: 5px 10px;
  background: var(--bg);
  border: var(--br-thinkness) solid var(--br-color);
}
.pop-icon {
  position: fixed;
  bottom: 12px;
  right: 18px;
  background: -webkit-linear-gradient(22deg, var(--bg-primary), var(--secondary) 106%);
  border-radius: 50px;
  /* width: 150px; */
  left: auto;
  height: 48px;
  color: var(--font-invert);
  text-align: left;
  padding-top: 0px;
  z-index: 1;
  white-space: nowrap;
  border: 1px solid var(--br-color);
  border-width: var(--br-thinkness);
}
.pop-icon .mode-title {
  margin: 14px 8px;
  font-size: 18px;
  float: left;
}
.pop-icon span {
  float: left;
  margin-top: 18px;
  margin-right: 12px;
}
.chapter-name,
.subject-name,
.cn {
  width: 100%;
  padding: 6px 0px 10px 0px;
  border-bottom: 1px solid #ebebeb;
  border-color: var(--br-color);
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 17px;
  cursor: pointer;
  float: left;
}
.team .chapter-name {
  margin-top: 20px;
  padding: 0px 0px 20px;
}
.weightage {
  margin-bottom: 10px;
}
.chapter-name span,
.subject-name span,
.cn span {
  margin-right: 10px;
  font-size: 13px;
}
.cn span {
  background: var(--bg);
  width: 20px;
  height: 20px;
  padding: 10px;
  border: 1px solid;
  border-radius: 50%;
}
.side-list button,
.topic-list button,
.chapter-list .side-list-item,
.h-list button,
button.side-list-item,
.topic-list .side-list-item {
  border: 1px solid #d3d3d357;
  padding: 6px 14px;
  border-radius: 18px;
  margin: 3px 2px;
  /* color: var( --font-dark); */
}
.topic-list button,
.chapter-list .side-list-item,
.h-list button {
  background: var(--bg-secondary);
}
.chapter-list .side-list-item,
.topic-list .side-list-item {
  width: 100%;
  text-align: left;
  min-height: 31px;
  border-radius: 12px;
  font-weight: bold;
  border: 1px solid var(--br-color);
  color: var(--font-dark);
  margin: 2px 0;
  background: transparent;
  justify-content: left;
}
.topic-list .side-list-item {
  width: 100%;
  justify-content: left;
}
.academic-list .side-list-item {
  width: calc(100% - 120px);
}
.size-box {
  background: transparent;
  color: black;
  width: 20px;
  white-space: nowrap;
}
.size-box span {
  margin-right: 10px;
}
.size-box button {
  margin-right: 10px;
  background: white;
}
.chapter-list button.active,
.topic-list .side-list-item.active {
  border: 1px solid var(--primary);
  display: flex;
  color: var(--font-dark);
  justify-content: left;
  background: white;
}
.side-list-grade,
.side-list-subject,
.side-list-chapter {
  float: left;
  width: 100%;
  padding: 5px 5px;
}
.side-list-grade {
  border-bottom: 1px solid #ebebeb;
  border-top: 1px solid #ebebeb;
  border-color: var(--br-color);
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.side-list-grade > button,
.side-list-subject > button,
.side-list-chapter > button {
  display: flex !important;
  width: auto;
}
.side-list-chapter {
  border-top: 1px solid var(--br-color);
}
.side-list-item,
.h-list button {
  float: left;
  background: transparent;
  display: flex;
  border-color: transparent;
  width: inherit;
  display: flex;
  justify-content: center;
  border: 1px solid var(--input-border);
}
.payment-page .h-list button {
  display: block;
  margin-top: 10px;
  vertical-align: top;
  border: 0 !important;
  box-shadow: none !important;
  border-bottom: 2px solid #e8e8e8 !important;
  border-radius: 0;
  background: white;
  display: block !important;
}
.payment-page .h-list button.active {
  border-bottom: 2px solid #a11a92 !important;
}
.h-list button span:first-child {
  font-size: 18px;
  margin-right: 10px;
  padding: 0px;
  margin-top: 1px;
}
.h-list button span:last-child {
  font-size: 15px;
  padding-right: 7px;
  padding-left: 5px;
}
.h-list-item {
  margin-top: 10px;
}
.side-list-chapter {
  float: left;
  width: 100%;
  padding: 5px 5px;
}
.side-list-item.active,
.h-list button.active {
  border: 1px solid var(--bg-primary);
  background: var(--dash);
  box-shadow: 5px 1px 8px rgb(229 208 208 / 38%);
  display: flex;
  white-space: inherit;
  font-weight: 600;
  color: var(--primary);
  box-shadow: 0px 1.7px 3.4px 0px #1b1c1d05;
  box-shadow: 0px 5.1px 8.5px 0px #1b1c1d0f;
  font-family: Manrope;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  vertical-align: middle;
}
.side-list-item.active {
  background: white;
}
.filter .h-list button.active {
  background: var(--bg);
}
.side-list-item span:last-child {
  display: none;
  float: left;
  margin: 4px 0px 0 5px;
}
.side-list-item.active span {
  display: initial;
}
.notes-view h1,
.notes-view h2,
.notes-view h3,
.notes-view h4,
.notes-view h5 {
  font-size: 15px;
  font-weight: 600;
}
.notes-view,
.notes-settings {
  width: 100%;
  float: left;
  margin: 2px 0px;
  overflow: auto;
  border: 1px solid var(--primary);
  padding: 10px;
  border-radius: 12px;
  background: white;
}
.notes-view img {
  max-width: 100%;
  filter: var(--qstimg);
}
thead,
thead {
  background-color: #f2f2f2;
}
thead td,
thead th {
  font-weight: bold;
  border: 1px solid;
  padding: 5px 10px;
}
tr:nth-child(even),
tr:nth-child(even) {
  background-color: #e6dcdc00;
}

th,
th {
  border: 1px solid;
  border: 1px solid #7d7d7d;
  padding: 10px;
  background: #eeeeee;
  color: black;
}
.sub-exam .side-list-chapter {
  display: none;
}
.sub-menu-data-item.fixed {
  margin-top: 54px;
}
.side-list-close {
  background: transparent;
  margin: 0px 5px !important;
  padding: 0 !important;
  border: 0 !important;
}
.side-list-close span:first-child {
  margin-top: 7px;
}
.mode-title {
  font-size: 19px;

  margin-left: 10px;
}
.timer {
  border-left: 1px solid lightgray;
  width: 100%;
  float: left;
  margin: 4px 3px 15px;
  color: #ad239f;
  padding-left: 10px;
  font-size: 18px;
}
.date-list {
  width: 220px;
  float: left;
  padding: 0px 5px 0 5px;
}
.day-list {
  float: left;
  width: 504px;
  padding-left: 15px;
}
.list-item {
  background: transparent;
}
.ask-expert .question-list {
  float: left;
  width: 100%;
}
.question-list > span {
  -webkit-user-select: text;
  -khtml-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
  font-weight: 400;
  color: var(--font-light);
  margin-left: 5px;
}
.question-list strong {
  -webkit-user-select: text;
  -khtml-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
  font-weight: 600;
  color: var(--font-dark);
  margin-right: 5px;
}
.question-list .list-item:first-child {
  border-top: 0px solid var(--br-color);
}
.question-list .list-item {
  padding: 20px 15px 15px;
  background: transparent;
  border-bottom: 0px solid var(--br-color);
  width: 100%;
  text-align: left;
  float: left;
  background: white;
  border-radius: 10px;
  margin-bottom: 10px;
  font-weight: 700;
  box-shadow: 1px 5px 12px 0px rgb(150 150 150 / 35%);
  border: var(--br-thinkness) solid var(--br-color);
}
.payment-report {
  user-select: text;
  cursor: auto;
}
.not-mark {
  background: var(--secondary);
  color: white !important;
  width: auto !important;
  /* height: 20px !important; */
  float: left !important;
  border-radius: 120px;
  text-align: center;
  margin-right: 5px;
  font-size: 12px !important;
  padding: 2px 5px;
}
.descriptive .list-item {
  padding: 20px 10px 12px;
  background: transparent;
  border: 1px solid var(--br-color);
  width: 100%;
  text-align: left;
  border-radius: 10px 10px 0px 0px;
  border-bottom: 0;
  margin-bottom: -12px;
  border-top: 1px solid var(--br-color);
  color: var(--font-dark);
}
.descriptive .list-item:last-child {
  border-bottom: 1px solid #c7c7c7;
  border-radius: 10px;
}
.qst-icon {
  font-size: 23px;
  float: left;
  margin-bottom: 10px;
  width: 30px;
}
.qst-text {
  width: calc(100% - 30px);
}
.qst-sol {
  border: 1px solid var(--font-dark);
  padding: 10px;
  margin-bottom: 11px;
  border-radius: 10px;
  overflow: auto;
  display: none;
  background: var(--bg);
}
.tags {
  margin-top: 10px;
  font-weight: 500;
}
.tags div,
.tags button,
.open-paper,
.up-down,
.delete-paper {
  font-size: 13px;
  float: left;
  margin-right: 6px;
  border-left: 1px solid #e0e0e0;
  border-color: var(--br-color);
  padding-left: 10px;
  padding-right: 5px;
  margin-bottom: 14px;
  background: transparent;
  border-radius: 0%;
}
.start-study-plan-exam {
  border-radius: 10px;
}
.up-down {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  font-size: 12px;
}
.tags button {
  margin: 0 5px;
}
.tags div:first-child,
.tags button:first-child {
  border: none;
  padding-left: 0;
  cursor: pointer;
}
.tags .b {
  margin-left: 0;
  cursor: pointer;
}
.remove,
.add-tray .set-explainer-video,
.edit-question,
.set-explainer-video {
  cursor: pointer;
}
.tags div:first-child span,
.tags button:first-child span {
  margin-left: 0;
}
.tags div span,
.tags button span,
.smbtn,
.open-paper span,
.delete-paper span {
  background: var(--lbg);
  color: var(--font-dark);
  border-radius: 8px;
  padding: 5px 11px;
  font-weight: 600;
  margin-left: 5px;
  outline: none;
  border: 0;
}
.tags div span span {
  padding: 0;
  margin: 0;
  margin-right: 5px;
}
.tags button span {
  padding: 5px 5px 5px 5px;
}
.tags button span span {
  padding: 5px 5px 5px 0px;
}
.smbtn {
  font-size: 12px;
  margin-bottom: 10px;
  float: right;
}
.tags div span.expired,
.expired {
  background: red;
  color: white;
  font-weight: normal;
}
.tags div span.subscribed,
.subscribed {
  background: var(--success-color);
  color: white;
  font-weight: normal;
}
.student-id-badge {
  background: var(--primary);
  color: white;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  margin-left: 8px;
}
.question-list .list-item p {
  padding: 10px 0px !important;
  color: var(--font-dark);
  margin: auto;
  -webkit-user-select: text;
  -khtml-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
  font-weight: 400;
}
.day-item {
  padding: 10px 0;
}
.day-item i:first-child {
  float: left;
  width: 86px;
  font-size: 31px;
  text-align: center;
  margin-top: 9px;
}
.day-item .day-item-sub {
  float: left;
  width: calc(100% - 86px);
  text-align: left;
  margin-bottom: 13px;
  padding-right: 5px;
}
.day-item .day-item-sub span:first-child {
  width: 100%;
  float: left;
  font-size: 100%;
  font-weight: 600;
}
.day-item div:last-child {
  padding-left: 20px;
  margin-top: 8px;
  float: left;
  font-size: 12px;
}
.day-item div:last-child span:last-child {
  background: white;
  color: black;
  border-radius: 5px;
  padding: 0px 8px;
  margin-left: 5px;
}
.time-box {
  width: 80px;
  float: left;
  min-height: 1px;
  margin-right: 10px;
}
.time-box span:first-child {
  border-left: 1px dashed lightgray;
  margin-left: 40px;
  height: 47px;
  position: absolute;
  /* float: left; */
}
.time-box span:last-child {
  border-left: 1px dashed lightgray;
  margin-left: 40px;
  height: 51px;
  position: absolute;
}
.time-box p {
  margin-top: 30px;
  padding-top: 20px;
}
.day-item {
  color: white;
  width: calc(100% - 90px);
  float: left;
  border-radius: 10px;
  background: white;
  margin-bottom: 10px;
}
.date-item {
  width: 100%;
  float: left;
  padding: 10px;
  display: inline-flex;
  cursor: pointer;
  background: white;
  border: 1px solid #e1e1e1;
  border-radius: 12px;
  margin-bottom: 5px;
}
.day-item-details {
  float: left;
  width: calc(100% - 724px);
  padding-left: 30px;
  padding-right: 20px;
  box-shadow: 1px 5px 12px 0px rgb(150 150 150 / 35%);
  position: fixed !important;
  right: 50px;
  bottom: 0;
  width: 30%;
  padding-top: 0;
  background: white;
  border-radius: 10px 10px 0 0px;
  z-index: 1;
}
.day-item-details.fixed {
  position: -webkit-sticky;
  position: sticky;
  top: 90px;
}
.day-item-details blink {
  border: 1px dashed lightgray;
  padding: 10px;
  margin-top: 10px;
  float: left;
  border-radius: 12px;
}
.day-item-details blink.upcoming {
  color: green;
}
.day-item-details blink.expired {
  color: #c30202;
  background: white;
}
.date-item-sub {
  width: 66px;
  float: left;
}
.date-item-sub span:first-child {
  width: 100%;
  float: left;
  text-align: center;
  font-size: 11px;
}
.date-item-sub span:nth-child(2) {
  width: 100%;
  float: left;
  font-size: 30px;
  text-align: center;
  margin-top: -7px;
}
.date-item div:last-child {
  float: left;
  margin-top: 15px;
  font-size: 16px;
}
.date-item.active {
  background: #f9f9f9;
  color: var(--primary);
  border-radius: 10px;
  border-color: #8c509d;
}
.day-open {
  border-bottom: 1px solid lightgray;
  padding-bottom: 10px;
  margin-bottom: 10px;
  float: left;
}
.day-open:last-child {
  border: 0;
}
.day-open h4,
.open-session h4 {
  font-size: 22px;
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 14px;
  margin-top: 0;
}
.comment-box h4 {
  border-bottom: 0;
  padding: 5px 0px 0px 10px;
}
.day-open .back {
  display: none;
}
.day-open h4 i {
  margin-right: 15px;
  float: left;
  padding-top: 2px;
  padding-left: 2px;
}
.day-open div {
  float: left;
}
.detail-item {
  margin-bottom: 10px;
  margin-top: 10px;
  width: 100%;
}
.detail-item span {
  float: left;
  height: 24px;
  margin-top: 8px;
  margin-right: 10px;
  width: 23px;
  font-size: 22px;
}
.detail-item div {
  width: calc(100% - 33px);
}
.open-class {
  width: auto;
  min-width: 100px;
  /* padding: 10px 10px; */
  text-align: center;
}
.open-session {
  z-index: 1;
  display: none;
  position: fixed;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  background: rgb(0 0 0 / 67%);
}
.video-container {
  background: white;
  max-width: 1400px;
  max-height: 95%;
  border: 1px solid lightgray;
  border-radius: 10px;
  max-width: 95%;
  width: 1200px;
  height: 683px;
  padding: 20px;
  margin: auto;
  overflow: auto;
}
.video-container.small {
  width: auto;
}
.video-container.small .video {
  width: auto;
}
.comment-box {
  width: 400px;
  overflow: hidden;
  height: 100%;
  /* background: red !important; */
  margin: 0;
  max-height: 100%;
}
.open-session.open {
  display: flex;
}
.day-open .back,
.open-session .back {
  float: left;
  margin-right: 10px;
  margin-top: -3px;
  background: transparent;
  padding: 0px 5px;
  font-size: 12px;
}
.video {
  width: 65%;
  float: left;
}
h4 p {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.pop-video {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  height: 100%;
  touch-action: none;
  background-color: rgb(49 49 49 / 70%);
  -webkit-overflow-scrolling: touch;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: auto;
}
.pop-video .emb-video {
  max-width: 100%;
  padding-bottom: 26%;
  position: absolute;
  left: 25%;
  right: 25%;
  top: 20%;
}

.pop-video .emb-iframe {
  background-color: transparent;
  border: 0;
  height: 100%;
  left: 0;
  margin: 0;
  outline: none;
  padding: 0;
  position: absolute;
  top: 40px;
  width: 100%;
  max-height: 100%;
  max-width: 100%;
  border-radius: 23px;
}

.videos-edit-list .video,
.videos-edit-list .details,
.details.information,
.video.page {
  float: left;
  width: 50%;
  height: auto;
  padding: 10px;
}
.videos-edit-list .discussion,
.session-edit-list .discussion,
.assignment-edit-list .discussion,
.timelineitem-edit-list .discussion {
  width: 100%;
  min-height: 400px;
  height: auto;
  margin-left: 0;
}
.videos-edit-list .discussion-reply,
.session-edit-list .discussion-reply,
.assignment-edit-list .discussion-reply,
.timelineitem-edit-list .discussion-reply {
  position: inherit;
}
.assignment-work {
  padding-left: 30px;
}
.assignment-work .redactor-box {
  width: 100%;
  float: left;
  height: 279px;
  margin-top: 10px;
  overflow: auto;
}
.video-js[tabindex="-1"] {
  width: 100%;
  height: 436px;
  outline: none;
  border-radius: 10px;
}
.vjs-theme-fantasy .vjs-control-bar {
  height: 54px;
  background: black !important;
  left: 10px;
  right: 10px;
  width: calc(100% - 20px);
  margin: auto;
  border-radius: 10px;
  bottom: 10px;
  height: 48px;
}
.discussion {
  top: 0;
  width: calc(35% - 21px);
  float: left;
  background: #f5f5f5;
  border-radius: 10px;
  height: calc(100% - 61px);
  position: sticky;
  bottom: 0;
  margin-left: 20px;
  min-height: 100px;
}
.comment-box .discussion {
  width: 100%;
  margin-left: auto;
  height: calc(100% - 64px);
}
.discussion-head {
  font-size: 17px;
  position: absolute;
  top: 0;
  height: 50px;
  padding: 15px;
  font-weight: 600;
  border-bottom: 1px solid #e0e0e0;
}
.discussion-head a {
  float: right;

  margin: 0 5px;

  padding: 4px;

  border: 1px solid;

  border-radius: 4px;

  font-size: 14px;

  margin-top: -3px;

  background: white;

  cursor: pointer;
}
.discussion-chats {
  position: absolute;
  top: 50px;
  border: 50px;
  height: calc(100% - 100px);
  overflow: auto;
  padding-top: 10px;
  padding-bottom: 10px;
}
.chat-view-file {
  background: white;
  border: 1px solid lightgray;
  border-radius: 10px;
}
.reply {
  padding: 5px 15px;
  height: auto;
}
.reply span {
  width: 30px;
  border-radius: 50px;
  border: 1px solid lightgray;
  width: 30px;
  height: 30px;
  padding: 7px;
  margin-top: 3px;
}
.reply div {
  border: 1px solid lightgray;
  padding: 8px;
  border-radius: 10px;
  max-width: calc(100% - 40px);
}
.reply.reply-1,
.reply.reply-1 i {
  float: left;
  text-align: left;
}
.reply.reply-0,
.reply.reply-0 i {
  float: right;
  text-align: right;
}
.reply.reply-1 span,
.reply.reply-1 div {
  float: left;
  margin-right: 5px;
}
.reply.reply-0 span,
.reply.reply-0 div {
  float: right;
  margin-right: 5px;
  border: 1px solid #6d626c;
}
.reply.reply i {
  width: 100%;
  font-size: 11px;
  margin-top: 5px;
  padding-bottom: 0;
  color: #8d8d8d;
}
.discussion-reply,
.timeline-reply {
  position: relative;
  bottom: 0;
  top: calc(100% - 50px);
  height: 50px;
  padding: 0px 15px;
  /* border-top: 1px solid #e0e0e0; */
  /* box-shadow: -2px -1px 10px 0px rgb(164 154 244 / 10%); */
}
.discussion .reply-input {
  width: calc(100% - 50px);
  height: 37px;
  background: transparent;
  float: left;
  border: 1px solid lightgray;
  margin-top: 5px;
  border-radius: 10px;
  padding-left: 10px;
}
.discussion .reply-button {
  font-weight: 600 !important;
  width: 40px;
  height: 37px;
  background: #e0dbe0;
  color: black;
  float: right;
  margin-top: 5px;
  min-width: auto;
  padding: inherit;
}
.reply-button span {
  font-weight: 600;
}
.video iFrame {
  width: 100%;
  height: 421px;
  border-radius: 10px;
  float: left;
  border: 1px solid #e0e0e0;
}
.top-banner {
  background-color: #ffffff;
  background-position: bottom;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
  width: 100%;
  padding-top: 17px;
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 36px;
  /* border-bottom: 24px solid #a555b9; */
}
section {
  padding: 25px 0px;
}
.champion .banner {
  padding-top: 50px;
}
.champion .left-reg {
  padding-top: 0;
}
.champion.top-banner {
  padding-top: 50px;
  height: 694px;
  background-image: url(/assets/app/img/cup.jpg);
}
.champion.top-banner.gcc {
  padding-top: 50px;
  height: auto;
  background-image: url(/assets/app/img/cup.jpg);
  background: rgb(254, 230, 0);
}
.sub-page {
  background: none;
  height: 0;
}
.features {
  padding: 50px 00px 0;
}
.features iFrame {
  width: 100%;
  height: 421px;
  border-radius: 10px;
  float: left;
  border: 1px solid #e0e0e0;
  /* background: #ffeaf9; */
  background-size: cover;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background: url(//i3.ytimg.com/vi/kY9CKMQz7EA/hqdefault.jpg);
}
.champion .left-reg h1 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #131313;
  font-weight: normal;
  margin-top: 0;
}
.champion .left-reg button {
  background: transparent;
  margin-top: 50px;
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 25px;
  color: black;
  border: 1px solid black;
}
.champion .left-reg img {
  max-width: 100%;
}
.feature-item img {
  margin-bottom: 20px;
  max-width: 50%;
  margin-top: 20px;
  height: 80px;
}
.feature-item h5 {
  font-weight: 600;
  font-size: 16px;
}

.features-box {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.app-land {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: block;
  flex-wrap: initial;
  overflow: auto;
  padding: 20px 0 150px;
  /* background: -webkit-linear-gradient( 
22deg
 , #fff2fd, #fff6fb 106%); */
}
.feature-item {
  padding: 11px;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  width: 25%;
}
.features-box .circle {
  position: fixed;
  top: 30%;
  width: 200px;
  height: 200px;
  background: #f9f9f9;
  border-radius: 50%;
}
.features-box .circle1 {
  position: fixed;
  top: 40%;
  width: 200px;
  height: 200px;
  background: #fff5fe;
  border-radius: 50%;
  animation: 7s smallmove infinite cubic-bezier(1, 0.22, 0.71, 0.98);
  -webkit-animation: 11s smallmove infinite cubic-bezier(1, 0.22, 0.71, 0.98);
  animation-delay: 1.2s;
  -webkit-animation-delay: 1.2s;
  margin-top: 120px;
}
.features-box .circle {
  position: fixed;
  top: 40%;
  width: 100px;
  height: 100px;
  background: #f9f9f9;
  border-radius: 50%;
  animation: 7s smallmove infinite cubic-bezier(1, 0.22, 0.71, 0.98);
  -webkit-animation: 20s smallmove infinite cubic-bezier(1, 0.22, 0.71, 0.98);
  animation-delay: 1.2s;
  -webkit-animation-delay: 1.2s;
  margin-top: 120px;
  margin-left: -104px;
}
.app-land .feature-item {
  width: calc(100% - 80px);
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  padding: 0 40px;
  /* position: absolute; */
  margin-top: 20%;
  animation-name: blinker;
  -webkit-animation-name: blinker;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  margin: 70px 40px;
}
.app-land .feature-item.show {
  display: block;
}
.feature-item p {
  font-size: 13px;
}
.amount {
  margin-top: 50px;
}
.champion .left-reg h1 span {
  font-weight: 600;
  color: var(--primary);
  padding: 9px;
  border-radius: 10px;
}
.champion .right-reg {
  margin-bottom: 0;
}
/* Pricing */
.pricing-tab .star1 .star-1 {
  fill: var(--dark);
}
.pricing-tab .star1 .star-2,
.pricing-tab .star1 .star-3,
.pricing-tab .star1 .star-4,
.pricing-tab .star1 .star-5 {
  fill: rgba(0, 0, 0, 0.3);
}
.pricing-tab .star2 .star-1,
.pricing-tab .star2 .star-2 {
  fill: var(--dark);
}
.pricing-tab .star2 .star-3,
.pricing-tab .star2 .star-4,
.pricing-tab .star2 .star-5 {
  fill: rgba(0, 0, 0, 0.3);
}
.pricing-tab .star3 .star-1,
.pricing-tab .star3 .star-2,
.pricing-tab .star3 .star-3 {
  fill: var(--dark);
}
.pricing-tab .star3 .star-4,
.pricing-tab .star3 .star-5 {
  fill: rgba(0, 0, 0, 0.3);
}
.pricing-tab .star4 .star-1,
.pricing-tab .star4 .star-2,
.pricing-tab .star4 .star-3,
.pricing-tab .star4 .star-4 {
  fill: var(--dark);
}
.pricing-tab .star4 .star-5 {
  fill: rgba(0, 0, 0, 0.3);
}
.pricing-tab .star5 .star-1,
.pricing-tab .star5 .star-2,
.pricing-tab .star5 .star-3,
.pricing-tab .star5 .star-4,
.pricing-tab .star5 .star-5 {
  fill: var(--dark);
}
.pricing-tab .mbr-section-btn {
  margin-top: 1rem;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
  transition-property: background-color, color, border-color, box-shadow;
  transition-duration: 0.3s, 0.3s, 0.3s, 0.8s;
  transition-timing-function: ease-in-out;
}
.pricing-tab .table-heading {
  width: 100%;
  display: block;
  font-size: 17px;
}
.pricing-tab .table-wrapper {
  border: 0.1px solid var(--lbr-color);
  padding: 2rem 1rem;
  background-color: var(--primary-light);
  transition: 0.3s ease-out all;
}
.pricing-tab .table-wrapper:hover {
  transition: margin 0.5s;
  margin-top: -5px;
  background-color: var(--primary);
  border: 1px solid var(--secondary);
  color: white;
}
.pricing-tab .table-wrapper:hover a {
  background: white;
  color: black;
}
.pricing-tab .table-wrapper:hover .pricing-value,
.pricing-tab .table-wrapper:hover .stars,
.pricing-tab .table-wrapper:hover .mbr-list,
.pricing-tab .table-wrapper:hover .table-heading {
  color: #ffffff !important;
}
.pricing-tab .stars {
  margin: 1rem;
}
.pricing-tab ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem 0;
}
.pricing-tab li {
  margin: 1rem 0;
}
.pricing-tab .left-bottom {
  border-radius: 15px 0 0 15px;
}
.pricing-tab .right-bottom {
  border-radius: 0 15px 15px 0;
}
.pricing-tab .all-border {
  border-radius: 15px 15px 15px 15px;
}
.pricing-tab .pricing-value {
  font-size: 40px;
  font-weight: 600;
}
.pricing-tab .pricing-value span {
  font-size: 10px;
}
@media (max-width: 767px) {
  .pricing-tab .container {
    padding: 0 1rem;
  }
  .pricing-tab .justify-center {
    display: block;
  }
}
@media (max-width: 992px) {
  .pricing-tab .table-wrapper {
    border-radius: 15px !important;
    margin: 1em 1em;
  }
}
/*pricng end*/
.circles div {
  width: 100%;
  float: left;
  text-align: left;
  padding: 7px 10px;
  margin: 5px 0;
  background: #f8f8f8;
  border-radius: 10px;
  justify-content: center;
  align-content: center;
  display: inline-flex;
  vertical-align: middle;
  align-items: center;
  min-height: 60px;
}
.circles div img:first-child {
  margin: auto;
  /* border-radius: 395px 30px 30px 0; */
  height: 30px;
  width: 30px;
  /* border-radius: 50%; */
  background-position: center;
  background-position: center;
  background-size: contain;
  background-repeat: repeat-x;
  /* margin-bottom: 17px; */
  border-spacing: initial;
  /* border: 5px solid #ededed; */
  /* float: left; */
  /* margin-left: 25%; */
}
.circles div span:last-child {
  width: calc(100% - 35px);
  /* height:20px; */
  float: left;
  font-size: 15px;
  padding-left: 20px;
}
.blog-head {
  background: #ffffff;
  margin-bottom: 30px;
  padding: 0;
  border-bottom: 1px solid #f4f4f4;
}
.blog_item_img {
  width: 36%;
  float: left;
  margin: 0 20px 0 0px;
}
.cover {
  width: 100%;
  height: 141px;
  background: var(--bg-primary);
  text-align: center;
  border-radius: 10px;
  font-size: 20px;
  padding: 20px;
  justify-content: center;
  display: flex;
}
.cover .text {
  margin: auto;

  left: auto;

  right: auto;

  color: var(--font-invert);
}
.team .blog_item_img {
  border-radius: 20%;
  background-position: center;
  background-position: top;
  background-size: cover;
  background-repeat: repeat-x;
  height: 75px;
  width: 75px;
  margin: 0 10px;
}
.team .blog_item {
  margin-top: 10px;
  margin-bottom: 10px;
  float: left;
  width: 50%;
}
.blog_details {
  float: left;
  width: 100%;
  padding: 20px 0;
  margin-bottom: 20px;
  border-bottom: 1px solid #dfdfdf;
}
.team .blog_details {
  border: 0;
  width: 80%;
  padding: 5px 0;
}
.blog_details h3 {
  margin-top: 0;
}
.team .blog_details h3 {
  font-size: 18px;
  margin: auto;
  color: black;
}
.team .blog_details p {
  color: var(--font-light);
}
.card-img {
  width: 100%;
  border-radius: calc(0.25rem - 1px);
}
.blog_right_sidebar .single_sidebar_widget {
  background: #fbf9ff;
  padding: 30px;
  margin-bottom: 30px;
}
.section_padding_blog {
  padding: 0px 0px !important;
}
.blog-info-link {
  display: inline-block;
}
.features-section {
  /* border-top: 24px solid #a555b9; */
  padding-top: 30px;
  margin-top: -41px;
  border-radius: 50px 50px 0 0;
  background: white;
}
.banner {
  padding-top: 0;
  margin-top: 0;
}
.header .logo {
  float: left;
  width: 238px;
}
.header {
  padding-top: 20px;
  padding-bottom: 20px;
}
.header.champion {
  background: #fcfcfc;
}
.header.champion.gcc {
  background: rgb(254, 230, 0);
}
.home.header {
  padding-top: 0px;
}
.left-reg {
  width: 50%;
  float: left;
  padding: 0;
  border-radius: 20px;
  padding-top: 73px;
}
.left-reg h1 {
  font-size: 57px;
  color: var(--primary);
  margin: 0;
  margin-bottom: 8px;
  font-weight: 600;
  margin-top: 29px;
}
.left-reg strong {
  color: #a555b9;
  font-weight: 600;
}
.left-reg h3 {
  font-size: 48px;
  color: #2f2c31;
  font-weight: 600;
  background: #ffffffa6;
  padding: 29px;
  width: auto;
  border-radius: 30px;
  margin-left: -25px;
}
.champion .left-reg h3 {
  font-size: 25px;
}
.left-reg h2 {
  margin: 0;
  margin-bottom: 10px;
  font-size: 49px;
  font-weight: bold;
}
.amount span:first-child {
  background: violet;
  background: -webkit-linear-gradient(22deg, var(--primary), var(--secondary) 106%);
  width: 40px;
  height: 40px;
  float: left;
  text-align: center;
  padding-top: 0;
  border-radius: 50px;
  font-size: 30px;
  color: white;
  z-index: 1;
}
.amount span:nth-child(2) {
  background: white;
  float: left;
  height: 40px;
  margin-left: -6px;
  z-index: 0;
  font-size: 30px;
  border-radius: 50px;
  width: auto;
  padding: 0 12px;
  font-weight: 600;
}
.champion .amount span:nth-child(2) {
  color: white;
  background: #4b4bb7;
  border: 1px solid;
  height: 50px;
  padding: 3px 13px;
}
.champion .amount span:first-child {
  background: white;
  color: #08089c;
  height: 50px;
  width: 50px;
  font-size: 36px;
}
.amount i {
  font-size: 13px;
  font-style: normal;
  margin-left: 5px;
}
.right-reg {
  float: left;
  width: 50%;
  text-align: center;
  padding: 0;
  margin-bottom: 60px;
  margin-top: 0;
}
.right-reg .round {
  display: none;
}
.right-reg form {
  padding: 32px 30px;
  background: #ffffff;
  box-shadow: -3px 4px 6px 3px rgb(140 140 140 / 16%);
  border-radius: 30px;
  margin-top: 0;
  max-width: 400px;
  float: right;
}
form h3 {
  margin: 0px 0 10px 0;
  font-weight: 600;
  font-size: 32px;
  text-transform: uppercase;
  color: var(--primary);
}
.right-reg form h3 {
  font-size: 30px;
  text-transform: unset;
}
.champion form h2 {
  font-size: 18px;
  padding: 14px 39px;
}
blockquote {
  border-width: 0;
  border-bottom: 1px solid #eaeaea;
  border-top: 1px solid #eaeaea;
  padding: 4px;
  margin: 5px;
  font-size: 12px;
}
form h4,
.form h4 {
  margin: 5px 0 5px 0;
  font-weight: 600;
  font-size: 22px;
  color: var(--primary);
  border-bottom: 1px solid var(--br-color);
  padding-bottom: 12px;
  justify-content: left !important;
  text-align: left;
  padding-top: 0 !important;
}
.card {
  width: calc(25% - 10px);
  float: left;
  border-radius: 30px 0;
  box-shadow: 0px 0px 3px 1px rgb(223 223 223 / 83%);
  padding: 0;
  min-height: 101px;
  margin-left: 10px;
  margin-bottom: 10px;
  margin-top: 10px;
}
.card .img-card {
  background-position: bottom;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
  min-height: 168px;
  border-radius: 30px 0px 0 0;
}
.image-bg {
  background-position: bottom;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}
.card h2 {
  font-size: 19px;
  padding: 0 10px;
  color: #72579d;
  font-weight: 600;
}
.card p {
  font-size: 12px;
  padding: 0 10px 10px 10px;
}
.image-bg {
  background-position: top;
  background-size: cover;
}
.timelines {
  padding: 160px 0 0 0;
  margin-top: 50px;
  background-position: top;
  background-repeat: no-repeat;
  height: 582px;
  width: 100%;
}
.time-main {
  text-align: center;
  color: white;
  padding-top: 41px;
}
.left-50 {
  float: left;
  width: 50%;
}
.question .left-50:nth-child(2) {
  padding-right: 36px;
  margin-top: 20px;
}
.list-topic .left-50 {
  margin-top: 20px;
  padding-right: 20px;
}
.right-50 {
  float: right;
  width: 50%;
}
.right-50 img {
  width: 100%;
  border: 1px solid #dedede;
  border-radius: 10px;
  margin-top: 41px;
  box-shadow: 1px 3px 7px 0px rgb(109 109 109 / 20%);
}
.screenshot {
  position: absolute;
  background-position: top;
  background-repeat: no-repeat;
  background-position: initial;
  background-size: cover;
  height: 449px;
  width: 41%;
  margin-top: -435px;
  /* margin-right: -195px; */
  border-left: 3px solid #e0d0e0;
  border-bottom: 3px solid #e0d0e0;
  border-top: 3px solid #e0d0e0;
  border-radius: 20px 0px 0 20px;
  box-shadow: -4px 11px 6px 3px rgb(140 140 140 / 5%);
  right: 0;
}
.time-main h1 {
  color: var(--secondary);
  font-size: 110px;
  margin: 0;
  padding: 0;
}
.time-main h3 {
  font-weight: 600;
  font-size: 42px;
  margin-top: -17px;
}
.time-main p {
  font-size: 25px;

  line-height: 26px;
}
.time-main h2 {
  font-weight: bold;
  font-size: 37px;
}
.left-50 .time-cards {
  margin-top: 186px;
}
.v-line {
  border-left: 2px dashed var(--secondary);
  height: 63px;
  float: left;
  margin-left: 102px;
  margin-top: 1px;
}
.h-line {
  float: left;
  width: calc(10% + 0px);
  border-top: 2px dashed var(--secondary);
  height: 63px;
  float: left;
  margin-top: 99px;
}
.time-cards .item {
  width: 100%;
  float: left;
  margin-bottom: 0;
}
.horizontal.time-cards .item {
  width: 40%;
  float: left;
}
.horizontal.time-cards .item:first-child .img {
  float: right;
}
.time-cards .item .img {
  width: 200px;
  background: white;
  border-radius: 50%;
  height: 200px;
  border: 5px solid var(--secondary);
  float: left;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: contain;
  box-shadow: 0px 1px 5px 0px rgb(0 0 0 / 83%);
}
.time-cards .item .text {
  width: calc(100% - 207px);
  float: left;
  padding: 26px 23px;
  color: white;
}
.time-cards .item .text.black {
  color: black;
  padding-bottom: 10px;
  padding-top: 10px;
}
.item .text h5 {
  color: var(--secondary);
}
.item .text h2 {
  margin: 10px 0;
  font-weight: 700;
  font-size: 37px;
}
.list-topic {
  margin-top: 10px;
  float: left;
  /* height: 664px; */
  background-position: top;
  background-size: cover;
  width: 100%;
  padding-top: 96px;
}
.container.justify-center h1 span {
  color: var(--primary);
  font-weight: 600;
}
.container.justify-center h1 {
  font-size: 30px;
  padding-bottom: 20px;
}
.container.justify-center p {
  font-size: 17px;
  text-align: center;
  max-width: 700px;
}
.container.justify-center h3 {
  text-align: center;
}
.container.justify-center h1::before {
  margin-left: -9%;
  height: 4px;
  content: "";
  width: 8%;
  background: var(--primary-light);
  position: absolute;
  /* right: 0; */
  /* left: auto; */
  margin-top: 19px;
}
.container.justify-center h1::after {
  height: 4px;
  content: "";
  width: 8%;
  background: var(--primary-light);
  position: absolute;
  /* right: 0; */
  /* left: auto; */
  margin-top: 19px;
  margin-left: 15px;
}
ul {
  list-style-image: url(/assets/app/img/plus-yellow.svg);
  /* font-size: 20px; */
  padding-left: 23px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.search-form ul {
  padding-left: 0;
}
.notes-view ul,
.learning ul {
  list-style-image: none;
}
.list-topic ul li strong {
  color: #f9bd00;
  font-weight: 600;
}
li {
  margin-bottom: 10px;
}
.list-topic ul li {
  line-height: 25px;
  margin-top: 24px;
  font-weight: 500;
  font-size: 21px;
  padding-left: 10px;
  /* padding-right: 43%; */
}
.subscribe {
  /* height: 234px; */
  float: left;
  width: 100%;
  margin-top: 56px;
  padding-top: 200px;
  padding-bottom: 50px;
}
.common-option:first-child {
  padding-top: 20px;
}
.common-option:last-child {
  border-bottom: 0;
}
.subscribe.sticky {
  background: var(--primary);
  padding: 20px 0px;
  position: fixed;
  top: 0;
  margin: auto;
  z-index: 1;
  background: -webkit-linear-gradient(353deg, var(--bg-primary), var(--bg-secondary) 64%);
  box-shadow: 4px 3px 5px 0px rgb(0 0 0 / 20%);
}
.subscribe.sticky h2 {
  font-size: 17px;
  margin: 0;
}
.subscribe.sticky .btn-default {
  margin-top: 5px;
  font-size: 20px;
}
.subscribe.sticky .price span:first-child {
  color: var(--secondary);
  font-size: 30px;
}
.subscribe.sticky .price span:nth-child(2) {
  color: white;
  font-size: 30px;
}
.subscribe.sticky .price i {
  color: white;
  font-size: 10px;
}
.subscribe.sticky .col-md-3 h1 {
  font-size: 36px;
}
.subscribe h2 {
  color: white;
  padding-bottom: 0px;
  font-size: 32px;
  padding-top: 0;
  margin-top: 0;
}
.cities .common-option {
  font-size: 14px;
}
.subscribe .price span:first-child {
  color: var(--secondary);
  font-size: 50px;
}
.subscribe .price span:nth-child(2) {
  color: white;
  font-size: 40px;
}
.subscribe .price i {
  color: white;
  font-size: 20px;
}
.subscribe .col-md-3,
.subscribe .col-md-4 {
  text-align: center;
}
.subscribe.sticky .col-md-4 {
  text-align: right;
  padding-right: 0;
}
.subscribe .col-md-3 h1 {
  font-weight: 600;
  font-size: 72px;
  color: var(--secondary);
  padding-bottom: 0;
  margin-bottom: 0;
  margin-top: 0;
}
.subscribe .btn-default {
  background: white;
  color: var(--font-dark);
  margin-top: 33px;
  border-radius: 30px;
  font-size: 30px;
  width: auto;
  padding: 10px 20px;
  height: auto;
}
.about {
  float: left;
  width: 100%;
  margin-top: 50px;
  padding-top: 0;
  padding-bottom: 50px;
}
.right-reg.registration {
  display: none;
}
.right-reg.registration.pop-out {
  display: block;
}
.right-reg.pop-out,
.login-form.pop-out {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  float: none;
  background: #333333b5;
  margin-bottom: auto;
  z-index: 2;
  padding-top: 40px;
  overflow-x: auto;
  padding-bottom: 30px;
  margin-top: 0;
  padding: 10px;
}
.right-reg.pop-out.collectInfo {
  background: rgb(255 255 255 / 93%);
}
.pop-out .round {
  margin-bottom: 15px;
  display: initial;
}
.pop-out form {
  margin: auto;
  float: none;
  border-radius: 30px;
}
.about .logo {
  height: 91px;
}
/* Footer*/
footer {
  border-style: solid;
  border-width: 0;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  padding: 0 0px 0 0;
  width: 100%;
  border-top: 1px solid #e3e3e3;
  float: left;
  margin-top: 30px;
}
footer .list-unstyled li {
  color: #46464c;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  cursor: pointer;
}
footer .menu-head {
  color: var(--primary);
  font-size: 15px;
  font-weight: 400;
  line-height: 50px;
  padding: 0;
  margin-top: 10px;
  margin-bottom: 1px;
  float: left;
  width: 100%;
}
footer .list-unstyled li:hover a {
  color: black;
}
footer .list-unstyled a {
  color: #464646;
}
footer .text {
  color: #4c4c4c;
  font-size: 13px;
}
footer .list1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.foot-1,
.foot-2,
.foot-3,
.foot-4 {
  float: left;
  padding: 20px 0px 20px 0;
  color: #a1a1a1;
}
.foot-1 {
  width: 33.3%;
}
.foot-2 {
  width: 25%;
}
.foot-3 {
  width: 25%;
}
.foot-4 {
  width: 16.67%;
}
.text img {
  height: 32px;
  margin-bottom: 20px;
  margin-top: 30px;
  width: auto;
  float: left;
}
.social-icons-wrapper a {
  font-size: 14px;
  padding: 1.1em;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: #a7a7a7;
  border-radius: 50%;
  margin-right: 13px;
  display: inline-block;
  line-height: 1;
  margin-bottom: 15px;
}
.social-icons-wrapper a span {
  position: absolute;
  top: -10000em;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.social-icons-wrapper a i {
  color: #000000;
  font-weight: 600;
}
.social-icons-wrapper a:hover i {
  color: #894f93;
}
nav {
  border-radius: 12px;
  padding: 0;
  list-style: none;
  float: right;
  margin-top: 0;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  cursor: pointer;
}
.app nav {
  /* width: calc(100% - 0px); */
  overflow: auto;
  margin-top: 10px;
  border: 0;
  padding: 9px 0;
  text-align: center;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: transparent;
  border-radius: 0;
  overflow: auto;
  display: inline-flex;
  /* background: #ffffffde; */
  display: grid;
  justify-content: center;
  padding: 0px 0 20px;
  /* background: -webkit-linear-gradient( 
90deg
 , #ffffff, #ffffff 361%); */
  /* box-shadow: 0px -8px 14px 20px rgb(255 255 255 / 98%); */
}
nav a {
  margin-left: 20px;
  color: #000000;
  font-weight: 400;
  margin-top: 0 !important;
  font-size: 16px;
}
nav button {
  margin-left: 34px;
  color: #000000;
  font-weight: 400;
  margin-top: 0 !important;
  font-size: 16px;
  border-radius: 5px;
  padding: 10px 20px;
  min-width: 79px;
  border: 1px solid var(--primary);
  background: transparent;
}
.app nav button {
  margin-left: 0;
  margin-bottom: 0px;
}
nav button:last-child {
  margin-left: 3px;
  background: var(--primary);
  color: whitesmoke;
  min-width: 186px;
}
.wa-me {
  position: fixed;
  color: green;
  height: 60px;
  width: 60px;
  background: -webkit-linear-gradient(22deg, var(--primary), var(--secondary) 106%);
  bottom: 15px;
  left: 15px;
  border-radius: 50px;
  font-size: 31px;
  color: white;
  box-shadow: 1px 0px 3px 0px rgb(242 133 250 / 36%);
}
.wa-me i {
  margin: 3px;
  color: white;
  transition: all 0.5s ease;
}
.wa-me:hover {
  color: white;
  font-size: 35px;
  background: #00ae35;
  box-shadow: 1px 0px 12px 2px rgb(133 250 137 / 36%);
}
.message-title p {
  font-size: 15px;
}
.p-success,
.p-failed,
.p-pending {
  border: 1px solid;
  border-radius: 50px;
  width: 50px;
  height: 50px;
  text-align: center;
  margin-left: calc(50% - 25px);
  padding-top: 7px;
  font-size: 30px !important;
}
/*video */
.videos-pagination {
  border-top: 1px solid #eeeeee;
  padding-top: 16px;
  margin-bottom: 0;
}
.videos-search {
  margin: 0px 0px 0px 0;
}
.videos-content p:first-child,
.videos-pagination p:first-child,
.question-list P:first-child {
  padding: 10px;
}

.sub .option p,
.view.question .option p {
  margin: 0 0 0px !important;
  padding: inherit !important;
}
.sub .qst p {
  margin: 0px 0px 15px !important;
  padding: inherit !important;
}
.video-item {
  color: var(--font-light);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  width: calc(25% - 10px);
  margin-right: 10px;
  float: left;
  border-radius: 0;
  margin-top: 20px;
  margin-bottom: 10px;
  background: var(--bg);
  text-align: left;
  border: var(--br-thinkness) solid var(--br-color);
  padding: 10px;
  box-shadow: 0px 5px 10px 0px rgb(164 154 244 / 10%);
}
.video-item:hover {
  box-shadow: 0px 5px 2px 2px rgb(223 223 223 / 15%);
  transform: scale(1.04);
  border: var(--br-thinkness) solid #c5c5c53d;
}
.video-testimonial .videos-content .video-item:hover {
  box-shadow: none;
  transform: scale(1);
  border: 1px solid #ffffff3d;
}
.video-item .thump {
  background-color: var(--primary-light);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  border-radius: 5px;
  text-align: center;
  position: relative;
  width: 100%;
  padding-top: 56.4%;
  margin-top: 5px;
}
.video-testimonial .video-item .thump {
  background-size: cover;
}
.video-item h4 {
  padding: 20px 0;
  margin: auto;
  padding-bottom: 0;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
  float: left;
  font-size: 14px;
  color: var(--font-dark);
}
.video-testimonial .videos-content .video-item h4 {
  font-size: 16px;
}
.video-item .thump div {
  font-size: 11px;
  margin-top: 6px;
  width: 100%;
  float: left;
  color: #9a9a9a;
}
.video-item .thump span {
  margin: auto;
  position: absolute;
  margin-top: 0;
  font-size: 54px;
  color: var(--font-invert);
  top: 33%;
  left: 0;
  right: 0;
}
.video-item p {
  padding: 5px 0 0;
  margin: auto;
  color: var(--font-light);
  float: left;
  width: 100%;
  white-space: nowrap;
  overflow: auto;
  font-size: 12px;
}
.p-success,
.green {
  color: green;
}
.p-failed {
  color: orange;
}
.p-pending,
.red {
  color: red;
}

.opercent {
  font-size: 12px;
  margin-top: 5px;
  /* border: 1px solid; */
  padding: 0;
  width: auto;
}
.yellow {
  color: #d1d023;
}
.orange {
  color: orange;
}
.olive {
  color: olive;
}
.violet {
  color: violet;
}
.peach {
  color: #d6b79b;
}
.vjs-theme-fantasy .vjs-big-play-button,
.vjs-theme-fantasy .vjs-big-play-button:hover {
  width: 80px;
  height: 69px;
  color: #ffffff;
  background: rgba(30, 30, 30, 0.9) !important;
  border-radius: 17px;
  font-size: 43px;
  margin: auto;
  margin-left: -39px;
  margin-top: -35px;
}
.vjs-theme-fantasy .vjs-play-control .vjs-icon-placeholder:before {
  border: 0 !important;
  margin-top: 3px;
}

.vjs-theme-fantasy .vjs-big-play-button:hover {
  background: var(--primary) !important;
}
.vjs-control-bar {
  margin: 0px 8px;
  background-color: #2b333f00 !important;
  background-color: rgb(43 51 63 / 0%) !important;
}
.vjs-theme-fantasy .vjs-play-control .vjs-icon-placeholder:before,
.vjs-theme-fantasy .vjs-play-control .vjs-icon-placeholder:before:hover {
  border: 0;
}
.vjs-progress-control vjs-control {
  background: rgba(30, 30, 30, 0.9);
  border-radius: 0.5em;
  height: 35px;
  margin-left: 7px;
}
.vjs-play-control {
  background: rgba(30, 30, 30, 0.9) !important;
  border-radius: 0.5em;
  height: 43px !important;
  font-size: 17px !important;
  width: 58px !important;
}
.vjs-theme-fantasy .vjs-progress-control {
  font-size: 14px;
  background: rgba(30, 30, 30, 0.9);
  border-radius: 0.5em;
  height: 35px;
  margin-top: 6.7px;
  margin-left: 5px;
}
.dash-bg {
  background: #fafafa;
  border-radius: 12px;
}
.equal {
  display: inline-flex;
  gap: 10px;
}
.dash-banner {
  padding: 10px 28px 15px 30px !important;
}
.dash-banner h3 {
  font-weight: 600;
  margin: 5px 0;
}
.dash-banner .data {
  background-image: linear-gradient(325deg, #ffffff 3%, #c00253 46%);
  border-radius: 12px;
  color: var(--font-invert);
  padding: 32px 30px 46px;
  background: var(--secondary);
  background: -webkit-linear-gradient(302deg, var(--bg-primary), var(--secondary) 100%);
  /* background-image: url(/assets/app/img/banner-head.png); */
  background-position: top;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
  float: left;
  width: 100%;
  border-width: 0;
  border-style: solid;
  /* border-color: var(--br-color); */
  /* background: linear-gradient(269.09deg, rgba(114, 172, 159, 0) 23.22%, #78A797 107.23%); */
  background-size: cover !important;
}
.dash-tiles,
.line-chart,
.subject-wise,
.weak-performance,
.upcoming-exams,
.tutorial {
  padding: 0px 0px 18px 0px;
  display: flex;
  flex-direction: column;
}
.admin.dash-tiles{
   padding: 0px 30px 18px 30px;
  
}
.dash-tiles .data {
  display: flex;
  /* flex-direction: row; */
  gap: 10px;
  flex-wrap: wrap;
}
.popup .dash-tiles,
.popup .line-chart,
.popup .subject-wise,
.popup .weak-performance,
.popup .upcoming-exams,
.popup .tutorial,
.popup .exam-scores {
  padding: 0;
}
.quote {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  margin-left: 25px;
  gap: 21px;
}
.quote .quote-text {
  font-weight: 500;
  font-size: 28px;
  line-height: 28px;
  letter-spacing: -0.6%;
  max-width: 500px;
  text-shadow: 4px 1px 12px #00000059;
}
.quote .author {
  font-weight: 400;
  font-size: 16px;
  line-height: 14px;
  letter-spacing: 0%;
}
/* .quote:before {
  content: '"';
  position: absolute;
  margin-top: -14px;
  margin-left: -25px;
  font-size: 55px;
  float: left;
  font-family: sans-serif;
} */
.profile-cover {
  padding: 0;
  padding-bottom: 20px;
  padding: 0 0 20px 0px !important;
}
.profile-cover .data {
  padding: 13px 7px;
  background-position: center;
}
.profile-cover .address {
  width: 100%;
  padding: 0px;
}
.profile-cover .pic {
  width: 70px;
  float: left;
  height: 70px;
  background-repeat: inherit;
  text-align: center;
  background-position: center;
  margin: auto;
  border-radius: 50%;
  border: 3px solid white;
  background-size: cover;
  margin: 10px;
  filter: var(--img);
  font-size: 30px;
  align-content: center;
  background: var(--dash);
  color: var(--bg-primary);
}
.profile-cover .address {
  width: 80%;
  padding: 15px 10px;
  float: left;
  color: var(--font-invert);
}
.address h2 {
  width: 100%;
  float: left;
  margin: auto;
  font-weight: 600;
  font-size: 18px;
}
.address h3 {
  width: 100%;
  float: left;
  font-size: 13px;
  font-weight: normal;
  margin: auto;
  margin-top: 5px;
}
.line-chart {
  width: 70%;
  padding: 0px 0px 0px 10px;
}
.upcoming-exams {
  width: 30%;
  padding: 0px 0px 0px 0px;
  position: relative;
  overflow: hidden;
}
.upcoming-exams .data {
  width: 100%;
  height: calc(100%);
  background: var(--bg);
  background: -webkit-linear-gradient(22deg, var(--bg-primary), var(--bg-secondary) 106%);
  margin: 0;
  border-radius: 10px;
  float: left;
}
.hand {
  cursor: pointer;
}
.line-chart canvas {
  width: 100%;
  height: auto;
  background: white;
  padding: 14px 3.2%;
  border-radius: 10px;
  margin: 0;
  /* background: red; */
  background-image: url(/assets/app/img/graph.png);
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: contain;
}
.dash-tiles .tile-item,
.question-list .tile-item {
  border-radius: 16px;
  float: left;
  background: var(--bg);
  margin: revert-layer;
  width: calc(33.3% - 7px);
  padding: 20px;
  border-width: 0;
  border-left: 4px solid transparent;
  text-align: left;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.dash-tiles .tile-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.dash-tiles .tile-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-left-color: var(--primary);
}

.dash-tiles .tile-item:hover::before {
  opacity: 1;
}
.tutorial .tile-item {
  width: calc(50% - 10px);
}
.tutorial-container {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 10px;
}
.tutorial-card {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #ffffff 0%, #fafbff 100%);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  padding: 14px;
  margin: 5px 0;
  gap: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(52, 152, 219, 0.1);
  position: relative;
  overflow: hidden;
}

.tutorial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tutorial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(52, 152, 219, 0.12);
  border-color: var(--primary);
}

.tutorial-card:hover::before {
  opacity: 1;
}

/* Progress Indicators */
.card-progress {
  margin-top: 12px;
  width: 100%;
}

.progress-bar-container {
  width: 100%;
  height: 6px;
  background: rgba(52, 152, 219, 0.1);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 8px;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 10px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.progress-bar::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.progress-text {
  font-size: 12px;
  color: var(--font-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.progress-text strong {
  color: var(--primary);
  font-weight: 600;
}

/* Progress Badge on Cards */
.card-status-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 5px 12px;
  border-radius: 16px;
  font-size: 11px;
  font-weight: 600;
  z-index: 1;
}

.card-status-badge.completed {
  background: rgba(76, 191, 122, 0.15);
  color: var(--secondary);
}

.card-status-badge.in-progress {
  background: rgba(52, 152, 219, 0.15);
  color: var(--primary);
}

.card-status-badge.not-started {
  background: rgba(158, 158, 158, 0.15);
  color: #757575;
}

.tutorial-card-img {
  width: 90px;
  height: 90px;
  border-radius: 12px;
  object-fit: cover;
  background: linear-gradient(135deg, #e8f4ff 0%, #d4e9ff 100%);
  padding: 8px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.tutorial-card:hover .tutorial-card-img {
  transform: scale(1.05);
}
.tutorial-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}
.tutorial-card-title {
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 22px;
  line-height: 26px;
}
.tutorial-card-subtitle {
  font-family: Manrope;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: var(--font-light);
}
.tutorial-card-btn {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--secondary) 0%, #3da861 100%);
  color: var(--font-invert);
  font-weight: 600;
  font-size: 13px;
  border: none;
  border-radius: 24px;
  padding: 10px 18px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  margin-top: 0;
  box-shadow: 0 2px 8px rgba(76, 191, 122, 0.2);
  gap: 8px;
  flex-shrink: 0;
}

.tutorial-card-btn:hover {
  background: linear-gradient(135deg, #3da861 0%, var(--secondary) 100%);
  transform: translateX(3px);
  box-shadow: 0 4px 16px rgba(76, 191, 122, 0.3);
}
.tutorial-card-btn .arrow {
  display: inline-block;
  margin-left: 10px;
  font-size: 1.2em;
  background: #fff;
  color: #4cbf7a;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.small .tile-item {
  padding: 5px;
  margin-bottom: 20px;
}
.dash-tiles .tile-item [class^="icon-"],
.dash-tiles .tile-item [class*=" icon-"],
.question-list .tile-item [class^="icon-"],
.question-list .tile-item [class*=" icon-"] {
  font-size: 24px;
  position: absolute;
  justify-content: center;
  align-items: center;
  display: flex;
  color: var(--bg);
  margin-top: 0;
  margin-left: 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border: none;
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.2);
  transition: transform 0.3s ease;
}

.dash-tiles .tile-item:hover [class^="icon-"],
.dash-tiles .tile-item:hover [class*=" icon-"] {
  transform: scale(1.1) rotate(5deg);
}
.dashboard h4,
.home .right-panel h4 {
  padding: 10px 0px 5px;
  color: var(--font-dark);
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
  margin-bottom: 10px;
  margin-bottom: 10px;
  width: 100%;
  float: left;
}
.exam-window .option-panel h4 {
  padding: 0;
  font-weight: 600;
  /* color: var(--bg-primary); */
}
.tile-item h5 {
  color: var(--font-light);
  padding-left: 72px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px;
}
.dash-tiles .tile-item h5 {
  overflow: hidden;
  white-space: nowrap;
}
.tile-item h6 {
  font-size: 28px;
  color: var(--primary);
  font-weight: 700;
  padding-left: 72px;
  line-height: 1;
}

.small .tile-item h6 {
  font-size: 16px;
}
.two-column {
  display: flex;
  padding: 0 0px;
  gap: 10px;
}
.subject-wise {
  padding: 0;
}
.subject-item {
  float: left;
  /* margin-bottom: 1px; */
  background: var(--bg);
  width: calc(100%);
  padding: 7px 2px 7px;
  border-radius: 10px;
  height: 56px;
}
.subject-item h5 {
  width: 50%;
  float: left;
  padding-right: 10px;
  overflow: hidden;
  max-height: 30px;
  font-weight: bold;
  color: black;
}
.subject-item div {
  border-radius: 10px;
  float: left;
  width: 50%;
  background: #dadada;
  height: 5px;
  margin-top: 15px;
}
.percentage {
  width: 100%;
  max-width: 100px;
  height: 10px;
  /* float: left; */
}
.percentage span:first-child {
  float: left;
  height: 10px;
}
.percentage span:nth-child(2) {
}
.subject-item div span:first-child {
  width: auto;
  background: #3498db;
  height: 5px;
  float: left;
  border-radius: 10px;
  max-width: calc(100% - 25px);
}
.subject-item div span:last-child {
  float: left;
  background: var(--bg);
  width: 30px;
  height: 29px;
  border-radius: 50%;
  margin-top: -12px;
  margin-left: -5px;
  border: 1px solid #3498db;
  color: #3498db;
  font-size: 10px;
  font-weight: 600;
  padding-top: 7px;
  text-align: center;
}
.topic-performance .subject-item {
  border-bottom: 1px solid #e8e8e8;
  border-radius: 0;
  height: 60px;
}
.topic-performance .subject-item:last-child {
  border-bottom: 0px;
}
.weak-performance {
  padding: 0;
}
.easy-batch-list .data {
  border: 1px solid #ededed;
}
.easy-batch-list .left-50 {
  padding: 10px;
}
.weak-item {
  float: left;
  margin-top: 0px;
  background: var(--bg);
  width: 100%;
  padding: 10px 10px 10px;
  border-radius: 10px;
  /* height: 55px; */
}
.style-1 .weak-item {
  border: 1px solid #c7c7c7;
  margin-top: 5px;
}
.weak-item:last-child,
.subject-item:last-child {
  border-bottom: 0 !important;
}
.style-1 .weak-item:last-child {
  border: 1px solid #c7c7c7 !important;
}
.dashboard .weak-item,
.subject-item {
  border-bottom: 1px solid var(--br-color);
  border-radius: 0;
}
.sub-progress .weak-item {
  width: auto;
  padding: 2px 5px;
  display: inline-flex;
  margin: 0;
  height: auto;
  float: none;
  border: 0;
}
.sub-progress .weak-item h5 {
  width: auto;
  margin: 0;
  margin-top: 5px;
  margin-right: 10px;
}
.class-item {
  float: left;
  margin-top: 5px;
  background: #ffffff;
  width: 100%;
  padding: 13px 5px 20px;
  border-radius: 10px;
}
.upcoming-class .class-item {
  border-bottom: 1px solid #e8e8e8;
  border-radius: 0;
  min-height: 47px;
  white-space: nowrap;
  display: flex;
  overflow: hidden;
}
.upcoming-class .class-item:last-child {
  border-bottom: 0px;
}
.upcoming-class .class-item span:nth-child(3) {
  width: auto;
  float: left;
  padding-right: 10px;
  /* border-left: 1px solid #919191; */
  padding-left: 5px;
  margin-left: 5px;
  font-size: 12px;
  padding-top: 2px;
}
.upcoming-class .class-item span:nth-child(2) {
  width: auto;
  float: left;
  border: 1px solid #919191;
  padding: 1px 5px;
  border-radius: 6px;
  font-size: 11px;
}
.upcoming-class .class-item span:first-child {
  width: auto;
  float: left;
  padding-right: 5px;
  /* border-right: 1px solid #919191; */
  margin-right: 5px;
}
.upcoming-class .class-item i {
  /* background:red; */
  height: 10px;
  width: 10px;
  border-radius: 50%;
  /* float: left; */
  border: 0.5px solid;
  margin-top: 5px;
  margin-right: 6px;
  font-size: 11px;
  padding: 5px;
}
.weak-item h5 {
  width: 80%;
  float: left;
  white-space: nowrap;
  overflow: hidden;
  font-size: 13px;
  font-weight: bold;
  color: black;
}
.weak-item i {
  font-size: 15px;
  margin-right: 5px;
  float: left;
  margin-top: 0px;
}
.style-1 .weak-item i {
  float: none;
  margin-left: 10px;
}
.weak-item span:first-child {
  position: absolute;
}
.weak-item span:last-child {
  border-radius: 50%;
  float: left;
  width: 35px;
  background: #a1afc0;
  height: 35px;
  font-size: 12px;
  padding: 10px 0px;
  float: right;
  color: white;
  text-align: center;
}
.sub-progress span:last-child {
  width: 27px;
  font-size: 10px;
  height: 27px;
  padding: 7px 0px;
}
.exam-scores {
  padding: 0px 0px 10px 0px;
  display: flex;
  flex-direction: column;
}
.exam-scores .data {
  display: flex;
  gap: 10px;
}
.exam-scores .exam-scores-item {
  border-radius: 12px;
  float: left;
  background: #953e8e;
  margin: 0;
  width: calc(25%);
  padding: 0px 10px;
  color: white;
}
.exam-scores-item h5 {
  width: 60%;
  float: left;
  margin-top: 20px;
}
.exam-scores-item h6 {
  width: 40px;
  float: right;
  height: 40px;
  background: #88888800;
  border-radius: 50%;
  padding-top: 12px;
  font-size: 12px;
  text-align: center;
  color: white;
  border: 3px solid white;
}
.bar-chart,
.upcoming-class {
  padding: 10px 10px 10px 30px;
  width: 60%;
  float: left;
}
.bar-chart .data,
.upcoming-class .data,
.bar-chart .data,
.dashboard .weak-performance .data,
.subject-wise .data {
  background: var(--bg);
  float: left;
  padding: 10px;
  border-radius: 10px;
  width: 100%;
  margin-top: 0;
  /* min-height: 100px; */
  height: calc(100% - 46px);
  color: var(--font-light);
  border: 1px solid rgba(52, 152, 219, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.bar-chart .data {
  padding-top: 30px;
  padding: 14px 3.2%;
  /* background-image: url(/assets/app/img/graph.png); */
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: contain;
}
.course-status,
.topic-performance {
  padding: 10px 20px 10px 10px;
  width: 40%;
  float: left;
  /* height: 100%; */
}
.course-status .data {
  height: calc(100% - 46px);
  background: white;
  border-radius: 10px;
  padding-top: 10%;
  text-align: center;
  float: left;
  width: 100%;
}
.upcoming-exams-item {
  width: 100%;
  float: left;
  border-top: 1px solid var(--br-color);
  padding: 5px 10px;
  margin: 1px 0px 5px 0px;
  background: #854086;
  background: transparent;
  border-radius: 10px;
  color: var(--font-invert);
}
.upcoming-exams-item:first-child {
  border-top: 0px solid var(--br-color);
}
.activities {
  background: var(--bg);
  min-height: 150px;
  width: 330px;
  height: calc(100dvh);
  position: fixed;
  right: 0;
  top: 0;
  padding: 15px;
  overflow: auto;
  transition: all 0.5s ease;
  overscroll-behavior: contain;
  border-left-width: 0.1px;
  border-left-style: solid;
  border-left-color: var(--br-color);
}

.left-25.activities {
}
.trial-bar {
  position: fixed;
  bottom: 0;
  margin: 10px;
  background: #ffeb00;
  border-radius: 10px;
  padding: 20px;
  font-size: 15px;
  min-width: 250px;
  box-shadow: 0px 0px 5px 1px rgb(14 14 14 / 19%);
  cursor: pointer;
  transition: all 0.5s ease;
  max-width: 40%;
  z-index: 99;
}
.trial-bar .close {
  width: 20px;
  border: 1px solid;
  border-radius: 50%;
  padding: 0px;
  height: 20px;
  font-size: 12px;
  transform: scale(1.2);
}
.trial-bar .name {
  font-weight: 600;
  font-size: 19px;
  margin-bottom: 6px;
  float: left;
  width: calc(100% - 30px);
  margin-right: 10px;
}
.trial-bar .date {
  float: left;
}
#home-panel .pop-icon,
#dashboard-panel .pop-icon {
  display: none;
}
.video .no-data {
  background: black;
  color: white;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 20px;
}
.no-data {
  text-align: center;
  margin-top: 0;
  box-shadow: 1px 5px 12px 0px rgb(150 150 150 / 35%);
  padding-top: 10%;
  position: relative;
  float: left;
  margin-top: 5px;
  width: 100%;
  background: var(--dash);
  min-height: 176px;
  border-radius: 10px;
  color: var(--font-light);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  flex-direction: column;
  font-size: 15px;
}
.no-data.small {
  margin-top: 0;
  padding-top: 0;
  min-height: 30px;
  text-align: left;
  padding: 10px;
  border-top: 1px solid var(--br-color);
  border-radius: 0;
}
.shared .no-data {
  border: 0;
  box-shadow: none;
}
.tab-content-share-to-list .h-list,
.shared,
.sharing {
  border-top: 1px solid var(--br-color);
  border-radius: 0;
  padding-top: 10px;
}
.no-data span {
  width: auto !important;
  width: 100%;
  float: left;
  margin-top: 5px;
  font-size: 26px;
  color: var(--font-light) !important;
  white-space: normal !important;
  font-weight: 500 !important;
}
.no-data span:last-child {
  width: 100%;
  float: left;
  margin-top: 5px;
  font-size: 15px;
}
.activities .ask-expert {
  background: var(--bg);
  float: left;
  width: 100%;
  border: 1px solid var(--secondary);
  border-radius: 12px;
  margin-bottom: 15px;
  text-align: left;
  margin-top: 10px;
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.activities .ask-expert > div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 5px;
}
.activities .ask-expert > div > div {
  display: flex;
  align-items: center;
  gap: 0px;
  flex-direction: column;
  padding: 10px 5px;
}
.activities .ask-expert i {
  /* float: right; */
  font-size: 34px;
  /* margin-top: -26px; */
  background: var(--bg);
  display: flex;
  flex-direction: row;
}
.activities .ask-expert i:last-child {
  border: 0px solid;
  border-radius: 50%;
  padding: 12px;
  font-size: 15px;
  background: var(--bg-primary);
  color: white;
}
.activities .ask-expert h4 {
  padding: 0;
  margin: 0;
}
.activities .ask-expert p {
  padding: 0;
  color: #979797;
  margin: 0;
  line-height: normal;
  font-size: 12px;
}
.activities-item {
  background: transparent;
  width: 100%;
  float: left;
  border-left: 1px solid lightgray;
  padding: 10px;
  margin-top: 0;
  text-align: left;
  padding-bottom: 0;
  border-color: var(--br-color);
  margin-left: 15px;
}
.activities-item i {
  margin-top: 5px;
  font-size: 12px;
}
.activities-itemunread:before {
  margin-left: -17px !important;
  margin-top: 4px !important;
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  /* border:1px solid; */
  border-radius: 12px;
  max-width: 50px;
  margin: auto;
  background: var(--secondary);
}
.activities-item.child {
  padding: 0 10px;
  border-top: 0px solid lightgray;
  border-left: 1px solid lightgray;
  /* background:#f5f5fa; */
  margin-left: 15px;
  width: calc(100% - 15px);
  margin-top: 0;
  border-color: var(--br-color);
}
.activities-item.child p,
.activities-item.child .details {
  padding: 0;
  margin: 0;
}
.unread {
  width: 15px !important;
  height: 15px;
  float: left;
  margin: 1px;
  border-radius: 10px;
  margin-left: 0;
  margin-right: 9px;
  background: var(--secondary);
}
.activities-item span,
.open-paper span,
.delete-paper span {
  width: 100%;
  font-weight: 600;
  color: var(--font-dark);
  margin-left: -22px;
}
.activities-item span i {
  margin-right: 10px;
  background: var(--theme);
  color: white;
  padding: 7px;
  border-radius: 50%;
  font-size: 8px;
}
.activities-item .details span {
  border: 1px solid lightgray;
  color: black;
  font-weight: normal;
  width: auto;
  background: #ffffff;
  margin-right: 5px;
  margin-bottom: 5px;
  padding: 5px 10px;
  float: left;
  font-size: 12px;
  border-radius: 12px;
}
.activities-item .details {
  float: left;
  margin-top: 5px;
  width: 100%;
}
.donut-container {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #9a5aa4;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem;
  margin: auto;
  overflow: hidden;
  border: 4px solid #d8d8d8;
  margin-bottom: 10px;
}

.donut-inner {
  width: 100%;
  height: 100%;
  position: relative;
  top: auto;
  bottom: 0;
  background: #fdfdfd;
  border-radius: 0;
  transition: height 0.5s ease;
}

.donut-label {
  line-height: 115px;
  text-align: center;
  font-size: 22px;
}
.alphabets {
  width: 100%;
  float: left;
  margin-bottom: 10px;
}
.alphabets div {
  transition: transform 0.2s;
  width: 30px;
  float: left;
  text-align: center;
  background: var(--bg);
  margin-bottom: 1px;
  padding: 5px 0;
  margin-right: 2px;
  height: 30px;
  border-radius: 5px;
  cursor: pointer;
  border: 1px solid var(--br-color);
}
.alphabets div:hover {
  transform: scale(1.2);
  background: -webkit-linear-gradient(322deg, var(--primary), var(--secondary) 106%);
  color: white;
}
.alphabets div.active {
  transform: scale(1);
  background: var(--bg);
  color: var(--font-dark);
  border: 1px solid var(--font-light);
}
.dictionary {
  width: calc(100%);
  float: left;
}
.dictionary .word-list {
  border-bottom: 1px solid #e9e9e9;

  padding-bottom: 10px;

  width: 200px;

  float: left;
}
.dictionary .word-data {
  padding: 00px 24px;
  width: calc(100% - 200px);
  float: left;
  /* position: sticky; */
  top: 68px;
}
.dictionary .word-list .word-list-item {
  background: var(--bg);
  border-radius: 6px;
  border: 1px solid lightgray;
  padding: 5px 10px;
  margin-right: 5px;
  margin-bottom: 5px;
  width: 100%;
  text-align: left;
  height: 31px;
  overflow: hidden;
  border: 1px solid var(--br-color);
}
.dictionary .word-list .word-list-item span {
  display: none;
}
.dictionary .word-list .word-list-item.active {
  box-shadow: 5px 1px 8px rgb(229 208 208 / 38%);
  height: auto;
  background: var(--bg);
  border: 1px solid var(--font-light);
}
.dictionary .word-list .word-list-item.active span {
  display: inherit;
  margin-left: 0;
  float: right;
  padding: 4px;
  position: absolute;
}
pre {
  background: transparent;
  font-family: inherit;
  border: 0;
  border: 1px solid lightgray;
  border-radius: 10px;
  width: 100%;
  color: var(--font-dark);
  border: 1px solid lightgray;
  white-space: pre-wrap;
  word-break: keep-all;
  white-space: inherit;
  border: 1px solid var(--lbr-color);
}
/* colors */
.color-easy {
  color: #378437;
}
.color-average {
  color: #de9206;
}
.color-difficult {
  color: #c50303;
}
.Physics-bg {
  background: var(--physics-color);
}
.Chemistry-bg {
  background: var(--chemistry-color);
}
.Mathematics-bg {
  background: var(--mathematics-color);
}
.Biology-bg {
  background: var(--biology-color);
}
.exam-scores-item:first-child {
  background: -webkit-linear-gradient(22deg, #e66bd5, #fd60af 106%);
}
.exam-scores-item:nth-child(2) {
  background: -webkit-linear-gradient(22deg, #9d59fe, #bd75fd 106%);
}
.exam-scores-item:nth-child(3) {
  background: -webkit-linear-gradient(22deg, #f58762, #fb9d46 106%);
}
.exam-scores-item:nth-child(4) {
  background: -webkit-linear-gradient(22deg, #25bfb7, #3ee299 106%);
}
.add-new {
  /* border-bottom: 1px solid #ececec; */
  padding-bottom: 10px;
}
.pagination button {
  background: transparent;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.inline-button {
  border: 1px solid;
  border-radius: 12px;
  padding: 4px 10px;
  margin-top: -5px;
  font-size: 12px;
  color: black;
  position: absolute;
}
.inline-button span {
  margin-right: 10px;
}
.pagination button:hover {
  transform: scale(1.3);
}
button.inline-button:hover {
  transform: scale(1);
}
.pagination button[disabled] {
  cursor: default;
  opacity: 0.5;
}
.add-new button {
  background: var(--lbg);
  padding: 5px 10px;
  border: 1px solid #d3d1d1;
  border-radius: 12px;
  margin-right: 5px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  float: left;
  color: var(--font-dark);
  margin-bottom: 5px;
}

.add-new button span {
  margin-right: 10px;
}
.filter {
  margin-bottom: 12px;
  float: left;
  width: 100%;
}
.filter .filt {
  margin-bottom: 10px;
}
.filter .filt:last-child {
  margin-bottom: 0px;
}
.filter button {
  margin-top: 8px;
  padding: 8.7px 20px;
}
.add-new button:hover {
  transform: scale(1.02);
}
.progress-bar-dash {
  background: #efefef;
  height: 26px;
  width: 100%;
  margin-top: 8px;
  text-align: left;
  float: right;
  border-radius: 5px 5px 5px 5px;
}
#progress .main {
  position: fixed;
  background: white;
  width: 50%;
  border-radius: 12px;
  padding: 20px 15px;
}
.progress-text {
  text-align: center;
  font-size: 16px;
}
.progress-bar-dash .progress-dash {
  transition: width 1s ease-in-out 0s;
  float: left;
  top: 0px;
  bottom: 0;
  left: 0;
  width: 0%;
  padding: 0px;
  height: 26px;
  border-radius: 5px 5px 5px 5px;
  text-align: center;
  background: #c262e1;
}
.progress-bar-dash h5 {
  left: 25px;
  padding-top: 5px;
  margin: 0px;
  font-size: 13px;
  position: absolute;
  color: white;
}
.progress-bar-dash h4 {
  right: 7px;
  border: 0;
  position: absolute;
  padding-top: 6px;
  margin: 0px;
  font-size: 14px;
  width: auto;
}
.form-search {
  border: 1px solid lightgray;
  border-color: var(--input-border);
  border-radius: 12px;
  float: left;
  width: 100%;
  margin-bottom: 10px;
}
.form-search input[type="text"] {
  border-radius: 12px;
  width: calc(100% - 55px);
  height: 40px;
  padding: 10px;
  float: left;
  background: transparent;
  color: var(--font-dark);
  border-color: var(--input-border);
}
.form-search button {
  float: right;
  width: 20px;
  min-width: auto;
  text-align: center;
  padding: 4px 24px 0px 12px;
  margin: 2px;
}
.dropbtn {
  background-color: #ffffff;
  text-align: left;
  padding: 6px 10px;
  min-width: 105px;
  min-width: 130px;
  font-size: 14px;
  border: none;
  cursor: pointer;
  color: dimgrey;
  border: 1px solid lightgray;
  border-radius: 10px;
}
.search-input {
  box-sizing: border-box;
  background-repeat: no-repeat;
  font-size: 16px;
  padding: 14px 10px 12px 18px;
  border: none;
  border-bottom: 0px solid #ddd;
  width: 100%;
}

.search-input:focus {
  outline: 3px solid #ddd;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #ffffff;
  min-width: 421px;
  overflow: auto;
  border: 1px solid #ddd;
  border-radius: 10px;
  z-index: 1;
  margin-top: 5px;
  max-height: 300px;
  padding: 10px;
}
.dropdown-content .grades {
  border-bottom: 1px solid #e7e7e7;
  padding-bottom: 5px;
}
.divisions {
  padding: 10px 0px 0;
}
.divisions p {
  padding: 0px 10px 0;
}
.dropdown-content button {
  color: black;
  text-align: left;
  background: transparent;
  padding: 8px 16px;
  text-decoration: none;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  margin: 2px 2px;
}

.dropdown-content button.active {
  background-color: #f8f8f8;
  border: 1px solid #9d9d9d;
}
.mt-10 {
  margin-top: 10px;
}
.mt-20 {
  margin-top: 20px;
}

hr {
  border-top: 1px solid var(--br-color);
}
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 20px;
  margin: auto;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 13px;
  width: 15px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 10px;
}

input:checked + .slider {
  background-color: #a806a3;
  border-radius: 12px;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196f3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}
.child-topics {
  padding-left: 15px;
  border-left: 1px solid #cecece;
  padding-top: 5px;
  border-top: 1px solid #cecece;
  margin-top: 5px;
}
/* Footer*/
@media screen and (min-width: 992px) {
  .side-widget form {
    margin-left: auto;
    margin-right: auto;
    display: block;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
  }
  form.add-new {
    position: inherit;
    margin-right: auto;
    transition: inherit;
    transform: inherit;
    padding: 0;
    box-shadow: none;
  }

  form.upload-assignment-remark-file.mt-20.left-100.add-new {
    border: 0;
  }
  .small-menu .menu .logo {
    display: none;
  }
  .small-menu .menu .logo-icon {
    display: block;
    filter: var(--slogo);
    margin: 30px 28px 90px;
  }

  .small-menu .left-panel {
    width: 80px;
    /* background: var(--primary); */
    /* background: -webkit-linear-gradient(322deg, var(--bg-primary), var(--bg-secondary) 100%); */
    border-right-width: 0.1px;
    border-right-style: solid;
    border-right-color: var(--br-color);
    box-shadow: -3px 0px 11.5px 0px #00000040;
    z-index: 1;
  }
  .small-menu .menu_item h5 {
    display: none;
  }
  .small-menu .right-panel {
    width: calc(100% - 80px);
    margin-left: 80px;
  }
  .small-menu .left-panel:hover ~ .right-panel .sub-menu h5 {
  }
  .small-menu .left-panel:hover {
    width: 200px;
    z-index: 10002;
  }
  .small-menu .left-panel:hover .menu_item h5 {
    display: block;
  }
  .small-menu.force-small .left-panel:hover .menu_item h5 {
    display: none;
  }
  .small-menu.force-small .left-panel:hover {
    width: 75px;
    z-index: 10002;
    opacity: 0.9;
  }
  .small-menu .menu .active h5,
  .small-menu .menu .active span,
  .small-menu .menu_item:hover h5,
  .small-menu .menu_item:hover span {
    /* color: var(--font-invert); */
  }
  .small-menu .menu_item:after {
    background: var(--secondary);
    border: 1px;
  }
  .small-menu .sub-menu-item .active h5 {
    color: var(--primary);
    font-weight: 700;
  }

  .sub-menu-item {
    /* border-bottom: 1px solid lightgray; */
    border-bottom-color: var(--br-color);
    width: calc(100% - 0px);
  }
  .side-open .left-widget {
    max-width: 35%;
    column-count: 1;
  }
  .side-open .left-widget .examitem {
    max-width: 500px;
    width: 100%;
  }
  .hide-d {
    display: none;
  }
  .small-menu .menu_item.active span {
    color: var(--primary);
  }
}
@media screen and (max-width: 1350px) and (min-width: 991px) {
  .day-item-details {
    display: none;
  }
  .activities {
    bottom: -32px;
    min-height: 0;
    height: 0;
    top: auto;
  }
  .day-item-details.open,
  .activities.open {
    padding: 15px 15px;
    width: 500px;
    position: fixed;
    background: white;
    right: 43px;
    bottom: 0;
    top: auto;
    display: inherit;
    height: auto;
    border: 1px solid lightgray;
    border-bottom: 0;
    border-bottom: 0px;
    border-radius: 10px 10px 0 0;
    max-height: calc(100% - 100px);
  }
  #home-panel .pop-icon,
  #dashboard-panel .pop-icon {
    display: block;
  }
  .day-open .back {
    display: inherit;
  }
  .day-open h4 i:nth-child(2) {
    display: none;
  }
  .dashboard .page-header,
  .home .page-header {
    width: calc(100% - 255px);
  }
  .dashboard .right-panel,
  .home .right-panel {
    width: calc(100% - 255px);
  }
}
@media screen and (min-width: 1600px) {
  .video-item {
    width: calc(19% - 10px);
  }
}
.video-testimonial .video-item {
  width: calc(33% - 10px);
  box-shadow: none;
  padding: 0;
}
.testimonials-item {
  width: 50%;
  float: left;
  margin-top: 20px;
  padding: 10px 10px 0px 0px;
}
.testimonials-item:last-child.testimonials-item:nth-child(even) {
  width: 100%;
}
.testimonials-item .testimonial {
  float: left;
  width: 100%;
  min-height: 38px;
  border-radius: 10px 10px 10px 0px;
  padding: 10px;
  -moz-border-radius: 0;
  margin-bottom: 20px;
  background: #f5f5f5;
}
.testimonials-item .who {
  width: 100%;
  float: left;
  /* padding: 0px 10px; */
  border-left: 1px solid lightgray;
  padding-left: 10px;
}
.who .profile-img {
  width: 40px;
  height: 40px;
  background-size: cover;
}
.who h4 {
  margin: 9px 0 2px;
  font-size: 15px;
  font-weight: 600;
}
.game-box .qno {
  float: right;
  font-size: 36px;
  margin: 0px 0px 0 0;
  color: white;
}
.game-box .option,
.game-info-item,
.game-info-item-2 {
  font-size: 17px;
  background: #213851;
  background: var(--thirdColor);
  color: white;
  width: auto;
  float: left;
  padding: 17px 17px 7px;
  border-radius: 12px;
  margin-bottom: 20px;
  margin-right: 20px;
  min-height: 58px;
  width: calc(100% - 150px);
  box-shadow: 0 4px 30px rgb(0 0 0 / 10%);
  /* box-shadow: 1px 1px 1px 2px rgb(0 0 0 / 25%); */
}
.game-box .no {
  font-size: 42px;
}
span.opLab,
.game-info-item span,
.game-box .timer {
  font-size: 19px;
  border: 0px solid;
  padding: 10px;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  float: left;
  margin-right: 10px;
  padding: 0;
  padding-top: 12px;
  color: #ffffff;
  font-weight: 800;
  background: white;
  background: var(--mainColor);
  text-align: center;
}
.game-box .timer {
  width: auto;
  border-radius: 5px;
  padding: 0px 18px;
  text-align: center;
  padding-top: 7px;
  height: 40px;
}
.game-box .timer i {
  font-style: normal !important;
}
.game-info-item span {
  height: 25px;
  width: 25px;
  margin-top: 0;
  font-size: 12px;
  padding-top: 7px;
}
#solution.game-info-item span {
  height: inherit;
  width: initial;
  margin-top: 0;
  font-size: inherit;
  padding-top: initial;
  background: transparent;
  float: initial;
}
.game-info-item-2 span {
  margin-top: 0;
  font-size: 12px;
  padding: 4px 9px;
  border-radius: 50%;
  margin-right: 8px;
  background: white;
  background: -webkit-linear-gradient(302deg, #9380ec, #d85faf 100%); /* margin-bottom: 12px; */
  display: inline-flex;
}
.game-info-item,
.game-info-item-2 {
  width: calc(100% - 20px);
  margin-right: 33px;
  animation-delay: 2s;
  animation: right-swipe;
  padding: 20px;
  margin-bottom: 5px;
  min-height: 56px;
}
.game-info-item.current,
.game-info-item-2.current {
  background-image: var(--mainColor);
  animation: blink;
  border: 1px solid;
  text-decoration: blink;
  -webkit-animation-name: blinker;
  -webkit-animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-direction: alternate;
  animation-name: blinker;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-direction: alternate;
  line-height: 30px;
  overflow: auto;
  white-space: nowrap;
}
.game-info-item#solution {
  background: black;
}
.game-info-item#solution img {
  filter: invert(1);
}
.game-info-item .pop-box {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: 0;
  width: 100%;
  border-radius: 0;
  z-index: 1;
  overflow: auto;
  background: -webkit-linear-gradient(285deg, #0000005e, #0c0c0c91 100%);
}
.pop-box .box {
  margin: auto;
  background: #d3acac;
  /* float: left; */
  background: -webkit-linear-gradient(285deg, #5f6991, #4d5684 100%);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  width: 400px;
  margin-top: 100px;
  transform: rotateX(0deg) rotateZ(0deg);
  border-radius: 32px;
  box-shadow: 1px 1px 0 1px #414a6f, -1px 0 28px 0 rgb(34 33 81 / 1%), 14px 6px 12px 0 rgb(34 33 81 / 25%);
  transition: 0.4s ease-in-out transform, 0.4s ease-in-out box-shadow;
}
@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(0.9, 0.9);
  }
  100% {
    transform: scale(1, 1);
  }
}
.game-info-item .pop-box .box img {
  width: 200px;
  margin-bottom: 20px;
  animation: zoom-in-zoom-out 1s ease infinite;
}
.level-title span:nth-child(2) {
  color: white;
  font-size: 36px;
}
.game-box .question {
  font-size: 19px;
  margin: 0px 0 18px 0;
  background: transparent;
  width: auto;
  float: left;
  padding: 20px;
  border-radius: 12px;
  color: white;
  padding-left: 0;
  padding-top: 40px;
}
.game-box .question b,
.game-box .question strong {
  color: white !important;
}
.game-box .qn-box,
.game-box .op-box {
  float: left;
}
.game-title {
  margin: auto;
  width: 80%;
  margin-top: 0;
  padding: 34px;
  background-image: var(--gameHeader), var(--mainColor);
  background-size: cover;
  border-radius: 0px 0 30px 30px;
  text-align: center;
  color: white;
  padding: 25px 15px;
}
.game-title h1 {
  font-weight: 600;
}
.game-box {
  margin: auto;
  width: 80%;
  margin-top: 25px;
  padding: 34px;
  background: var(--secondaryColor);
  border-radius: 33px;
}
.game-box .solution {
  color: white;
  padding: 28px 20px;
  background: -webkit-linear-gradient(302deg, #434e70a3, #3b4569a6 100%);
  border-radius: 12px;
  box-shadow: 0 4px 30px rgb(0 0 0 / 10%);
  width: 100%;
  float: left;
}
.game-box .result {
  margin-top: 30px;
  float: left;
  width: 100%;
  animation: right-swipe;
  animation-delay: 2s;
}
.game-box .result .game-info-item.active {
  background-image: url(/assets/img/waves.png), -webkit-linear-gradient(302deg, #9380ec, #d85faf 100%);
  background-size: cover;
}
.game-box .result .game-info-item.active span {
  background: -webkit-linear-gradient(302deg, #434e70a3, #3b4569a6 100%);
}
.game-box .result .game-info-item.solution span {
  width: inherit;
}
.game-box .half {
  float: left;
  width: 50%;
}
.game-box .actions {
  border-top: 1px solid #ffffff29;
  padding-top: 10px;
  margin-top: 16px;
  padding-bottom: 9px;
}
.game-box .actions.sec {
  padding-top: 0;
  margin-top: 16px;
  padding-top: 15px;
}
.game-box .qn-box {
  width: 94%;
  margin: 0px 0 px 0px;
  /* border-bottom: 1px solid #3b4f65; */
  padding-bottom: 0;
  animation: right-swipe;
  animation-delay: 2s;
}
.game-box .op-box {
  margin-left: 0;
  max-width: 100%;
  min-width: 36%;
  float: left;
  width: 90%;
}
.game-box .op-box .option,
.game-box .op-box .opLab {
  cursor: pointer;
}
.game-box .op-box.active .option,
.game-box .op-box.active span.opLab {
  background: -webkit-linear-gradient(302deg, #0c3247, #002131 100%);
  border: 1px solid lightgray;
}
.game-box .op-box.ans .option,
.game-box .op-box.ans span.opLab {
  background: -webkit-linear-gradient(302deg, #9380ec, #d85faf 100%);
  border: 1px solid #06283a;
}
.game-box .op-box .opLab span:first-child {
  display: block;
}
.game-box .op-box .opLab span.icon-tick,
.game-box .op-box .opLab span.icon-closed {
  display: none;
}
.game-box .op-box.active .opLab span.icon-closed {
  display: block;
  animation: zoom-in-zoom-out 1s ease infinite;
  font-size: 25px;
}
.game-box .op-box.active.ans .opLab span.icon-closed {
  display: none;
}
.game-box .op-box.active .opLab span.icon-closed {
  display: none;
}
.game-box .op-box.active .opLab span.icon-tick,
.game-box .op-box.wrong .opLab span.icon-tick {
  display: none;
}

.game-box .op-box.ans .opLab span.icon-tick {
  display: block;
  animation: zoom-in-zoom-out 1s ease infinite;
  font-size: 25px;
}
.game-box .op-box.wrong .opLab span.icon-closed {
  display: block;
  font-size: 25px;
}
.game-box .op-box.active span.opLab {
  padding-top: 10px;
}
.game-box .op-box.ans .opLab span:first-child {
  display: none;
}

.game-box .op-box.wrong .opLab span:first-child {
  display: none;
}
/* Notes Chat Modal (similar to AI Chat) */
.notes-chat-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.notes-chat-modal.hide {
  display: none;
}

.notes-chat-modal-content {
  background: white;
  border-radius: 15px;
  width: 90%;
  max-width: 800px;
  min-height: 200px;
  max-height: 90vh;
  height: auto;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  animation: slideUp 0.3s ease;
}

.notes-chat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid var(--br-color);
  background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
  color: var(--font-invert);
  border-radius: 15px 15px 0 0;
}

.notes-chat-title {
  font-size: 18px;
  font-weight: 600;
  margin-right: 15px;
}

.notes-search-input {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--font-invert);
  font-size: 14px;
  outline: none;
  margin-right: 15px;
}

.notes-search-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.notes-chat-close {
  background: none;
  border: none;
  color: var(--font-invert);
  font-size: 24px;
  height: 40px;
  width: 40px;
  cursor: pointer;
  padding: 0;
  border-radius: 50%;
  transition: background 0.2s ease;
}

.notes-chat-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.notes-chat-container {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: var(--dash);
}

.notes-welcome-message {
  text-align: center;
  padding: 20px;
  }

.notes-welcome-content {
  background: var(--bg);
  padding: 16px 20px;
  border-radius: 15px;
  border: 1px solid var(--br-color);
  color: var(--font-light);
  font-size: 14px;
  line-height: 1.5;
}

.note-message {
  align-self: flex-start;
  max-width: 90%;
  min-width: 280px;
  word-wrap: break-word;
  margin-bottom: 10px;
}

.note-message.pinned {
  border-left: 4px solid #f39c12;
}

.note-message.new-note {
  animation: newNoteGlow 3s ease-in-out;
  border-left: 4px solid #4CAF50;
}

.note-message.new-note::before {
  content: "NEW";
  position: absolute;
  top: -8px;
  right: 8px;
  background: linear-gradient(135deg, #4CAF50, #45a049);
  color: white;
  font-size: 10px;
  font-weight: bold;
  padding: 2px 8px;
  border-radius: 10px;
  z-index: 15;
  box-shadow: 0 2px 4px rgba(76, 175, 80, 0.3);
  animation: newNoteBadge 3s ease-in-out;
}

@keyframes newNoteGlow {
  0% { 
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.4);
    transform: scale(1);
  }
  10% { 
    box-shadow: 0 0 20px 5px rgba(76, 175, 80, 0.3);
    transform: scale(1.02);
  }
  20% { 
    box-shadow: 0 0 20px 5px rgba(76, 175, 80, 0.2);
    transform: scale(1);
  }
  100% { 
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: scale(1);
  }
}

@keyframes newNoteBadge {
  0% { 
    opacity: 1;
    transform: scale(0.8);
  }
  10% { 
    opacity: 1;
    transform: scale(1.1);
  }
  20% { 
    opacity: 1;
    transform: scale(1);
  }
  80% { 
    opacity: 1;
    transform: scale(1);
  }
  100% { 
    opacity: 0;
    transform: scale(0.8);
  }
}

.note-message-content {
  background: var(--bg);
  padding: 15px;
  border-radius: 0px 18px 18px 0px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--br-color);
  color: var(--font-dark);
  position: relative;
  line-height: 1.5;
  overflow: auto;
}

.note-title {
  font-weight: 600;
  font-size: 18px;
  color: #f39c12;
  margin-bottom: 8px;
  /* line-height: 1.3; */
}

.note-content {
  color: var(--font-dark);
  line-height: 1.5;
  margin-bottom: 12px;
  white-space: pre-wrap;
  word-wrap: break-word;
}

.note-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--lbr-color);
}

.note-pin-btn,
.note-edit-btn,
.note-delete-btn {
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background 0.2s ease;
}

.note-pin-btn:hover {
  background: rgba(255, 193, 7, 0.1);
}

.note-edit-btn:hover {
  background: rgba(40, 167, 69, 0.1);
}

.note-delete-btn:hover {
  background: rgba(220, 53, 69, 0.1);
}

.note-date {
  font-size: 12px;
  color: var(--font-light);
  margin-left: auto;
}

/* 3-dot menu styles */
.note-menu-btn {
  background: none;
  border: none;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  color: var(--font-light);
  transition: all 0.2s;
  line-height: 1;
}

.note-menu-btn:hover {
  background-color: rgba(243, 156, 18, 0.1);
  color: var(--font-dark);
}

.note-dropdown {
  position: absolute;
  top: 32px;
  right: 8px;
  background: var(--bg);
  border: 1px solid var(--lbr-color);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  min-width: 120px;
  overflow: hidden;
}

.note-dropdown-item {
  padding: 12px 16px;
  cursor: pointer;
  border-bottom: 1px solid var(--lbr-color);
  transition: background-color 0.2s;
  font-size: 14px;
  color: var(--font-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.note-dropdown-item:last-child {
  border-bottom: none;
}

.note-dropdown-item:hover {
  background-color: rgba(243, 156, 18, 0.1);
}

.note-dropdown-item.danger {
  color: #e74c3c;
}

.note-dropdown-item.danger:hover {
  background-color: rgba(231, 76, 60, 0.1);
}

.notes-chat-input-container {
  display: flex;
  padding: 20px;
  border-top: 1px solid var(--br-color);
  gap: 10px;
  background: var(--bg);
  border-radius: 0 0 15px 15px;
}

.notes-chat-input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--input-border);
  border-radius: 25px;
  outline: none;
  font-size: 14px;
  transition: border-color 0.2s ease;
  background: var(--bg);
  color: var(--font-dark);
  resize: none;
  min-height: 20px;
  max-height: 120px;
  overflow-y: auto;
  line-height: 1.4;
  font-family: inherit;
  word-wrap: break-word;
  white-space: pre-wrap;
}

.notes-chat-input:focus {
  border-color: #f39c12;
  box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.1);
}

.notes-chat-save {
  background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
  color: var(--font-invert);
  border: none;
  padding: 12px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.notes-chat-save:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(243, 156, 18, 0.3);
}

/* My Notes Button (similar to AI Chat) */
.my-notes {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
  color: var(--font-invert);
  padding: 8px 15px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
  margin-right: 15px;
  border: none;
  font-size: 14px;
  font-weight: 500;
}

.my-notes:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
  background: linear-gradient(135deg, #e67e22 0%, #f39c12 100%);
}

.my-notes-icon {
  font-size: 16px;
  margin-right: 8px;
}

.my-notes-text {
  font-size: 14px;
  font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .my-notes {
    padding: 6px 12px;
    margin-right: 10px;
  }

  .my-notes-text {
    display: none;
  }

  .notes-chat-modal-content {
    width: 95%;
    min-height: 300px;
    max-height: 90vh;
    margin: 20px;
  }

  .notes-chat-header {
    padding: 15px;
  }

  .notes-chat-container {
    padding: 15px;
  }

  .notes-chat-input-container {
    padding: 15px;
  }

  .notes-search-input {
    font-size: 12px;
  }

  .note-message {
    max-width: 95%;
  }
}

/* Pagination Controls Styles */
.notes-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 20px;
  margin-top: 20px;
  border-top: 1px solid var(--lbr-color);
  background: var(--bg);
}

.notes-prev-btn,
.notes-next-btn {
  background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
  color: var(--font-invert);
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(243, 156, 18, 0.3);
  min-width: 100px;
}

.notes-prev-btn:hover:not(:disabled),
.notes-next-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
  background: linear-gradient(135deg, #e67e22 0%, #f39c12 100%);
}

.notes-prev-btn:active:not(:disabled),
.notes-next-btn:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(243, 156, 18, 0.3);
}

.notes-prev-btn:disabled,
.notes-next-btn:disabled {
  background: var(--input-border);
  color: var(--font-light);
  cursor: not-allowed;
  box-shadow: none;
  opacity: 0.5;
}

.notes-page-info {
  color: var(--font-dark);
  font-weight: 500;
  font-size: 14px;
  margin: 0 10px;
  min-width: 120px;
  text-align: center;
}

/* Notes Edit Form Styles */
.notes-edit-form {
  background: var(--bg);
  border: 2px solid var(--br-color);
  border-radius: 20px;
  padding: 20px;
  margin: 0px 0;
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.2);
  animation: editFormSlideIn 0.3s ease-out;
}

@keyframes editFormSlideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.notes-edit-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--br-color);
}

.notes-edit-header h3 {
  color: var(--font-dark);
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.notes-edit-cancel {
  background: none;
  border: none;
  color: #666;
  font-size: 18px;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.notes-edit-cancel:hover {
  background: #f5f5f5;
  color: #333;
}

.notes-edit-fields {
  margin-bottom: 20px;
}

.notes-edit-field {
  margin-bottom: 15px;
}

.notes-edit-field label {
  display: block;
  color: var(--font-dark);
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 14px;
}

.notes-edit-title {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--br-color);
  border-radius: 12px;
  font-size: 16px;
  color: var(--font-dark);
  background: var(--bg);
  transition: border-color 0.3s ease;
  outline: none;
}

.notes-edit-title:focus {
  border-color: #f39c12;
  box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.1);
}

.notes-edit-content {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--br-color);
  border-radius: 12px;
  font-size: 16px;
  color: var(--font-dark);
  background: var(--bg);
  transition: border-color 0.3s ease;
  outline: none;
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
  line-height: 1.5;
}

.notes-edit-content:focus {
  border-color: #f39c12;
  box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.1);
}

.notes-edit-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.notes-edit-save {
  background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.notes-edit-save:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
  background: linear-gradient(135deg, #e67e22 0%, #f39c12 100%);
}

.notes-edit-cancel-btn {
  background: transparent;
  color: var(--font-dark);
  border: 2px solid var(--br-color);
  padding: 12px 24px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.notes-edit-cancel-btn:hover {
  background: var(--br-color);
  transform: translateY(-1px);
}

/* Responsive adjustments for edit form */
@media (max-width: 768px) {
  .notes-edit-form {
    padding: 15px;
    margin: 0px 0;
  }
  
  .notes-edit-header h3 {
    font-size: 16px;
  }
  
  .notes-edit-actions {
    justify-content: stretch;
  }
  
  .notes-edit-save,
  .notes-edit-cancel-btn {
    flex: 1;
    min-width: 0;
  }
}

/* Universal Add to Notes Button Styles */
.add-to-notes-btn {
  background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 2px 8px rgba(243, 156, 18, 0.3);
  white-space: nowrap;
  vertical-align: middle;
}

.add-to-notes-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(243, 156, 18, 0.4);
  background: linear-gradient(135deg, #e67e22 0%, #f39c12 100%);
}

.add-to-notes-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(243, 156, 18, 0.3);
}

.add-to-notes-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: 0 2px 8px rgba(243, 156, 18, 0.2);
}

/* Small variant for tight spaces */
.add-to-notes-btn.small {
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 15px;
}

/* Large variant for emphasis */
.add-to-notes-btn.large {
  padding: 12px 24px;
  font-size: 14px;
  border-radius: 25px;
}

/* Outline variant */
.add-to-notes-btn.outline {
  background: transparent;
  border: 2px solid #f39c12;
  color: #f39c12;
  box-shadow: none;
}

.add-to-notes-btn.outline:hover {
  background: #f39c12;
  color: white;
  box-shadow: 0 4px 12px rgba(243, 156, 18, 0.4);
}

/* Minimal variant */
.add-to-notes-btn.minimal {
  background: transparent;
  border: none;
  color: #f39c12;
  padding: 4px 8px;
  box-shadow: none;
  text-decoration: underline;
}

.add-to-notes-btn.minimal:hover {
  color: #e67e22;
  background: rgba(243, 156, 18, 0.1);
  text-decoration: none;
  border-radius: 15px;
}

/* Icon-only variant */
.add-to-notes-btn.icon-only {
  padding: 8px;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.add-to-notes-btn.icon-only.small {
  width: 24px;
  height: 24px;
  padding: 4px;
  font-size: 12px;
}

.add-to-notes-btn.icon-only.large {
  width: 40px;
  height: 40px;
  padding: 12px;
  font-size: 16px;
}
@media screen and (max-width: 991px) {
  a.btn-default {
    bottom: 0;
    font-size: 17px;
    height: 50px;
    margin-bottom: 0;
  }
  .max-360 {
    position: fixed;
    max-width: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    background: white;
  }
  .max-360 a {
    height: auto;
    padding: 10px 5px;
    font-size: 15px;
  }
  .landing-text {
    padding: 20px 20px;
  }
  .landing .pre-text {
    width: 95%;
  }
  ::-webkit-scrollbar {
    width: 2px;
    height: 0px;
  }
  ::-webkit-scrollbar:hover {
    width: 2px;
    height: 0px;
  }
  .message-buttons button {
    padding: 0px 22px;
    margin: 0 5px;
    height: 30px;
    width: auto;
    min-width: 100px;
  }
  .message-box {
    background: rgb(255 255 255 / 81%);
    padding: 0;
  }
  .message-content {
    width: 100%;
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0px 0px 20px 4px rgb(150 150 150 / 35%);
  }
  .message-title {
    margin-top: 10px;
    padding-bottom: 0;
    font-size: 15px;
    margin-bottom: 20;
    padding: 0px 7px;
    min-height: 40px;
  }
  button {
    max-width: 100%;
  }
  .full-div .center-div {
    width: 100%;
    overscroll-behavior: contain;
    border-radius: 0;
    /* box-shadow: 0 0 20px 4px rgb(150 150 150 / 35%); */
    /* background: white; */
    padding: 0px 0;
  }
  .chapter-selection .side-list {
    width: 100%;
    max-width: 100%;
  }
  .full-div {
    background: var(--full-div);
    overscroll-behavior: contain;
    backdrop-filter: blur(3px);
    padding: 0;
  }
  .login-form.champion.pop-out,
  .right-reg.pop-out,
  .login-form.pop-out,
  .reg-form.pop-out {
    background: rgb(255 255 255 / 73%);
    box-shadow: none;
    padding: 20px 0px;
  }
  .full-div.landing {
    background: transparent;
    position: inherit;
    padding-bottom: 80px;
  }
  .details_popup .popup {
    width: 100%;
    min-height: calc(100% - 20px);
    max-height: calc(100% - 20px);
    border-radius: 10px 12px 0 0;
    box-shadow: 0px 0px 20px 4px rgb(150 150 150 / 35%);
  }
  .popup .content {
    padding: 10px;
  }
  form .half-left,
  form .half-right {
    width: 100%;
    margin: auto;
  }
  form .name-header .form-head {
    font-size: 19px;
  }
  form .profile {
    width: 50px;
  }

  form .name-header {
    width: calc(100% - 50px);
  }
  .h-scroll {
    white-space: nowrap;
    overflow-x: scroll;
    display: flex;
  }
  .hide-mobile {
    display: none !important;
  }

  .double .float-group,
  .double .select-group {
    width: 100%;
    margin: 0px !important;
  }
  .redactor-pain.float-group {
    margin-bottom: 10px !important;
    margin-top: 10px !important;
  }
  .redactor-box.redactor-styles-on .redactor-toolbar {
    display: inline-flex !important;
    width: 100%;
    height: 50px;
  }
  .redactor-pain .floating-label {
    top: -19px;
    background: white;
    padding: 0px 10px;
  }
  .menu {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 58px;
    /* justify-content: center; */
  }
  .show-pop-menu .menu {
    height: 115px;
    display: grid;
  }
  .menu img,
  .pop-menu {
    display: none;
  }
  .is-main {
    display: block !important;
  }
  .menu .more-menu {
    display: block;
  }
  .left-panel {
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    height: 60px;
    background: var(--bg);
    box-shadow: 1px -1px 11px 0 rgba(0, 0, 0, 0.07);
    overflow: hidden;
    height: 58px;
    position: fixed;
    z-index: 1;
    border-top: var(--br-thinkness) solid var(--br-color);
  }
  .menu_item {
    padding: 0 !important;
    margin: 0;
    height: 58px;
    padding-bottom: 10px !important;
    float: left;
    width: 20%;
  }
  .menu_item.active {
    background: linear-gradient(1deg, #ddfff3 0%, #ffffff 100%);
  }
  .menu_item span {
    padding: 0;
    margin: auto;
    float: left;
    width: 100%;
    text-align: center;
    height: 26px;
    margin-top: 8px;
    font-size: 18px;
  }
  .menu_item h5 {
    padding: 0;
    overflow: hidden;
    font-size: 10px;
    white-space: nowrap;
    text-align: center;
    float: left;
    width: 100%;
    height: auto;
  }
  .right-panel {
    margin-left: 0;
    width: 100%;
    padding: 0;
    float: left;
  }
  .dashboard .right-panel,
  .home .right-panel {
    width: 100%;
    margin-left: 0;
  }
  .dashboard .page-header,
  .home .page-header {
    width: 100%;
    background: var(--dash);
    box-shadow: none;
    margin-left: 0;
  }
  .tutorial-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .tutorial-card {
    margin: 0;
  }
  .tutorial-card-img {
    display: none;
  }
  .study-plan-item .det h3 {
    font-size: 13px;
    margin-top: 5px;
    margin-bottom: 5px;
    font-weight: 500;
  }
  .study-plan-item .det span {
    font-size: 11px;
    color: var(--font-dark);
  }
  .study-plan-item:first-child .det .desc h3 {
    font-size: 15px;
    font-weight: 600;
  }
  .activities {
    left: auto;
    right: 0;
    width: 100%;
    display: block;
    top: auto;
    bottom: 0;
    max-height: calc(100% - 118px);
    border-radius: 12px 12px 0 0;
    box-shadow: 0px 1px 10px 7px rgb(0 0 0 / 7%);
    height: 0;
    /* padding: 0; */
    min-height: 0;
  }
  .activities.open {
    height: auto;
    padding: 15px 15px;
    bottom: 70px;
  }
  .game-window .game-title {
    width: 100%;
    border-radius: 0;
    position: fixed;
    left: 0;
    right: 0;
    height: 89px;
    padding: 0px 10px;
  }
  .game-window {
    background: -webkit-linear-gradient(302deg, #434e70a3, #3b4569a6 100%);
  }
  #home-panel .pop-icon,
  #dashboard-panel .pop-icon {
    display: block;
    transform: rotate(0deg) !important;
    bottom: 80px;
    top: auto;
    left: auto;
    margin: auto;
    right: 10px;
    border-radius: 17px;
    padding: 5px 15px;
  }
  .dash-banner .data {
    padding: 20px 14px 15px;
  }
  .dash-banner h3 {
    font-size: 20px;
  }
  .address h3 {
    font-size: 14px;
  }
  .profile-cover .data {
    text-align: center;
  }
  .profile-cover .address {
    padding: 5px;
    width: 100%;
  }
  .profile-cover .pic {
    margin: auto;
    float: none;
  }
  .equal {
    display: block;
  }
  .dash-tiles .tile-item,
  .exam-scores .exam-scores-item,
  .left-50 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .assignment-work {
    padding-left: 0px;
  }
  .assignment-work .redactor-box {
    height: 250px;
  }
  .upcoming-exams {
    padding: 10px;
  }
  .two-column {
    flex-direction: column;
    margin: 0;
    padding: 0;
    gap: 0;
  }
  .dash-tiles,
  .line-chart,
  .subject-wise,
  .weak-performance,
  .exam-scores,
  .dash-banner,
  #dashboard-panel .weak-performance,
  .tutorial {
    padding: 10px;
    width: 100%;
    padding: 0;
  }
  .exam-scores .data {
    flex-direction: column;
  }
  .popup .dash-tiles,
  .popup .line-chart,
  .popup .subject-wise,
  .popup .weak-performance,
  .popup .upcoming-exams,
  .popup .tutorial,
  .popup .exam-scores {
    padding: 0 5px;
  }
  .course-status,
  .topic-performance,
  .bar-chart,
  .upcoming-class {
    padding: 10px;
    width: 100%;
  }
  .upcoming-class .class-item {
    overflow-x: auto;
  }
  .profile-cover {
    padding: 10px 0px 20px;
  }
  .topic-performance .subject-item,
  .upcoming-class .class-item {
    height: auto;
  }
  .weak-item,
  .subject-item {
    height: auto;
  }
  .weak-item h5 {
    overflow-x: auto;
  }
  .upcoming-class .class-item span {
    width: auto !important;
    border-left: 1px solid #919191;
    padding-left: 5px;
    color: #919191;
  }
  .upcoming-class .class-item span:first-child {
    width: auto !important;
    border-left: 0px solid;
    color: black;
    font-size: 15px;
  }
  .sub-progress {
    padding-bottom: 20px;
  }
  .dash-tiles .tile-item,
  .question-list .tile-item {
    margin: auto;
    /* margin-top: 10px; */
    width: 100%;
  }
  .tutorial .tile-item {
    width: 100%;
  }
  .study-plan-item {
    padding: 0;
  }
  .study-plan-item.last .day:after {
    border-top: 9px solid transparent;
    border-left: 8px solid;
    border-left-color: inherit;
    border-bottom: 10px solid transparent;
    margin-left: 4px;
    margin-top: 0px;
  }
  .study-plan-item:first-child {
    /* padding-bottom: 10px; */
    margin-left: 8px;
    margin-top: 20px;
    margin: 0;
    /* margin-bottom: 10px; */
    border-bottom: 1px solid var(--input-border);
  }
  .study-plan-item .det .icon {
    width: 30px;
    height: 30px;
    padding-top: 9px;
    font-size: 12px;
  }
  .study-plan-item .day {
    width: 30px;
    height: 30px;
    padding-top: 5px;
    margin-left: 0;
    margin-bottom: 10px;
  }
  .study-plan-item .study-box {
    display: flex;
    flex-direction: column;
    margin: 0;
    width: 100%;
    border: 0;
    padding: 0;
  }
  .day.sub {
    /* margin-left: -31px; */
    width: 20px;
    height: 20px;
    color: transparent;
    margin-top: 15px;
    display: none;
  }
  .study-plan-item .det {
    width: calc(100%);
    float: left;
    padding-left: 10px;
    margin-left: 0;
    /* margin-bottom: 10px; */
  }
  .study-plan-item:first-child .det {
    padding-left: 10px;
  }
  .study-plan-item:first-child .det .desc {
    width: calc(100% - 10px);
    float: left;
    padding-left: 5px;
  }
  .tutorial .tile-item {
    width: auto;
    margin-left: 0px !important;
    margin-right: 10px !important;
  }
  .vl {
    height: 102px;
  }
  .dash-tiles .tile-item:nth-child(even),
  .question-list .tile-item:nth-child(even) {
    /* margin-left: 10px; */
  }
  .upcoming-exams .data,
  .line-chart canvas {
    margin: auto;
  }
  .dashboard h4,
  .home h4 {
    white-space: break-spaces;
  }
  .exam-window h4 {
    padding: 0;
    color: white;
  }
  .right-panel .panel-item {
    margin: 0;
    padding-bottom: 100px;
  }
  .fixed.right-panel .panel-item {
    padding-top: 50px;
  }
  .menu_item:before {
    border: 0px solid transparent;
    content: "";
    display: block;
    height: 3px;
    width: 0px;
    border-radius: 3px;
    background: transparent;
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
  }
  .sub-menu-item:after {
    border: 0px solid var(--primary);
    content: "";
    display: block;
    height: 0px;
    width: 3px;
    border-radius: 3px;
    margin-left: calc(100% - 3px);
    background: var(--primary);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
  }
  .menu .active:after {
    display: none;
  }
  .menu .active:before {
    border: 1px solid var(--secondary);
    height: 3px;
    width: 100%;
    /* max-width: 50px; */
    margin: auto;
    background: var(--secondary);
  }
  .sub-menu :after {
    height: 0px;
    width: 0%;
    float: left;
    margin: auto;
    bottom: 0;
  }
  .sub-menu .active:after {
    height: 2px;
    width: 100%;
  }
  .page-header,
  .page-header-inside {
    background: var(--bg);
    box-shadow: -1px -1px 9px 5px rgb(202 202 202 / 10%);
    float: left;
    width: 100%;
    margin: auto;
    padding: 10px;
    border-bottom: 0;
    height: 50px;
  }
  .page-header-inside {
    box-shadow: none;
    padding: 0px 0 10px !important;
  }
  .dashboard .page-header {
    width: 100%;
    /* height: 50px; */
  }
  .page-header .logo {
    display: block;
    width: 83px;
    height: 100%;
    max-width: 200px;
    min-width: 78px;
    filter: var(--logo);
    float: left;
  }
  .page-header .academy {
    width: auto;
    height: 30px;
  }
  .page-header .prof-icon {
    width: 30px;
  }
  .show-pop-menu {
    height: auto;
  }
  .show-pop-menu .pop-menu {
    display: block;
    margin-top: 10px;
    margin-bottom: 5px;
  }
  .show-pop-menu .menu:before {
    content: "";
    display: block;
    height: 3px;
    width: 0px;
    border-radius: 3px;
    background: #dfdfea;
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    height: 1px;
    width: 92%;
    margin-left: 4%;
    position: absolute;
    margin-top: -1px;
  }
  .sub-menu {
    width: 100%;
    position: inherit;
    padding: 0px 10px;
    white-space: nowrap;
    overflow-x: scroll;
    background: var(--bg);
    border-bottom: var(--br-thinkness) solid var(--br-color);
    display: flex;
    box-shadow: 0px 2px 7px 0 rgba(0, 0, 0, 0.07);
  }
  .fixed.sub-menu {
    position: fixed;
    top: 50px;
    bottom: auto;
    width: 100%;
    left: 0;
    right: 0;
    overflow: auto;
    z-index: 1;
  }
  .sub-menu:before,
  .pop-menu:before {
    content: "";
    display: block;
    height: 3px;
    width: 0px;
    border-radius: 3px;
    background: var(--br-color);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    height: 1px;
    width: calc(100% - 70px);
    margin-left: 10px;
    position: absolute;
    margin-top: 1px;
  }
  .sub-menu.fixed:before {
    position: fixed;
  }
  .sub-menu-data {
    width: 100%;
    margin: auto;
  }
  .sub-menu-data-item {
    padding: 12px;
    padding-bottom: 140px;
    float: left;
  }
  .sub-menu-data-item.fixed {
    margin-top: 40px;
  }
  #learning-sub-menu-practice-data.full-screen {
    padding-bottom: 150px;
  }
  .sub-menu-item {
    height: 42px;
    float: left;
    width: auto;
    padding: 0 10px;
  }
  .sub-menu-item h5 {
    float: left;
    width: 100%;
    text-align: left;
    margin: auto;
    font-size: 16px;
    padding: 0;
    padding-top: 12px;
    vertical-align: -webkit-baseline-middle;
  }
  .side-widget {
    width: 100%;
    top: 0;
    bottom: 0;
  }
  .full-div .side-widget {
    width: 100%;
    top: 0px;
    bottom: 0px;
  }
  .tab-menu-button {
    margin-right: 10px;
  }
  .examitem {
    width: 100%;
  }
  .courses.examitem {
    width: 100%;
  }
  .examitem p {
    /* height: 29px; */
    overflow-x: auto;
    white-space: nowrap;
  }
  .examitem .examtime {
    overflow-x: scroll;
  }
  #practice-solution p {
    white-space: inherit;
  }
  .side-widget .examitem {
    background: var(--bg);
    width: 100%;
    top: 94px;
    /* padding: 0; */
    margin-bottom: 0;
    padding-bottom: 60px;
    padding: 15px 15px;
    max-height: calc(100% - 56px);
    box-shadow: 1px 1px 11px 2px rgb(150 150 150 / 35%);
  }
  .side-header div:first-child span {
    font-size: 23px;
  }
  .side-header div:first-child {
    font-size: 17px;
  }
  .side-header div:nth-child(2) {
    font-size: 17px;
  }
  .side-header {
    padding: 12px 0px;
    height: auto;
  }
  .side-widget .examitem button {
    padding: 5px 10px;
    font-size: 12px;
    width: 32%;
    border-color: var(--br-color);
    border-width: var(--br-thinkness);
  }
  .exam-list .examitem {
    width: 100% !important;
    margin: 10px 0px;
    padding: 20px 15px !important;
  }
  .weightage-level input[type="number"] {
    padding-left: 0;
  }
  .exam-right {
    width: 100%;
    top: 42px;
    bottom: auto;
  }
  .exam-left {
    width: 100%;
  }
  .round-panel {
    width: auto;
    border-radius: 0px;
    bottom: 0;
    border: 0;
    border-top: 1px solid var(--br-color);
  }
  .sep .round-panel {
    border-top: 0px solid #ececec;
  }
  .question-div {
    max-width: 100%;
    min-width: 200px;
    font-size: 15px;
    width: calc(100% - 36px);
    margin-left: 5px;
  }
  .option-panel {
    background: var(--bg);
    bottom: 0;
    border-top: 1px var(--br-color) solid;
    z-index: 2001;
  }
  .sep.option-panel {
    bottom: 56px;
    width: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
  }
  .full-screen .option-panel {
    bottom: 0;
    position: fixed;
    z-index: 2;
  }
  .popup .option-panel {
    bottom: 0;
  }
  .question-list-page {
    padding-bottom: 30px;
  }
  .tray .sub .question {
    margin: auto;
  }
  .question-view {
    z-index: 904;
  }
  .question-view,
  .question-board {
    bottom: 55px;
    top: 40px;
    padding: 10px 15px 22px;
    -webkit-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
    z-index: 2000;
  }
  .qst_box {
    float: left;
  }
  .vanishing .question {
    width: 100%;
    max-width: 100%;
  }
  .question-board {
    top: 100%;
  }
  .border-bold {
    width: 100%;
    margin-left: auto;
  }
  .hide-m {
    display: none;
  }
  .show-top .exam-right {
    top: 41px;
    z-index: 2000;
  }
  .show-top .question-board {
    top: 91px;
    height: auto;
    bottom: 56px;
    padding-left: 0;
  }
  .show-top .info-text {
    white-space: nowrap;
  }
  .exam-actions {
    border-bottom: 1px var(--br-color) solid;
    background: var(--bg);
  }
  .exam-actions .btn-default {
    height: 30px;
    width: auto;
    padding: 0 21px;
  }
  .question-board ul {
    margin-top: auto;
  }
  .exam-right.top {
    display: none;
  }
  .show-top .exam-right.top {
    display: block;
    top: 0;
    background: -webkit-linear-gradient(44deg, var(--primary), var(--secondary) 106%);
    color: white;
    border: 0;
  }
  .exam-left.top h4 {
    font-weight: 100;
    color: #ffffff;
  }
  .exam-left.top {
    background: -webkit-linear-gradient(44deg, var(--bg-primary), var(--bg-primary) 106%);
    color: white;
    border-bottom: var(--br-thinkness) var(--br-color) solid;
  }
  .option-panel blink {
    color: white;
    font-weight: 600;
    border: 0;
  }
  .exam-result {
    width: 100%;
    border-radius: 12px;
    padding: 10px;
  }
  .payment-page.exam-result {
    width: auto;
    max-width: 100%;
  }
  .grades {
    float: left;
    padding: 10px 0px 6px;
  }
  .result-data.left-100 {
    width: 100% !important;
    margin: 0px;
    margin-bottom: 10px;
    padding-top: 10px;
  }
  .result-data,
  .exam-result .page-header,
  page-header-inside {
    width: 100%;
    margin: auto;
    margin-left: 0;
    box-shadow: none;
    padding: 5px;
  }
  .style-1 {
    margin-top: 20px;
  }
  .result-percentage {
    width: 90%;
    margin: auto;
    margin-left: 5%;
    float: left;
    margin-top: 20px;
  }
  .exam-result .page-left {
    width: calc(100% - 20px);
  }
  .exam-result .left-100.justify-center:last-child {
    padding: 11px 0px 0px 0;
  }
  .profile-bar {
    float: right;
    width: 20px;
  }
  .exam-result .left-100.justify-center {
    padding: 12px;
    gap: 10px;
    flex-direction: column;
    align-items: center;
  }
  .payment-page .left-100.justify-center {
    width: 100%;
    display: block;
    text-align: center;
  }
  .level-test-content {
    font-size: 18px;
  }
  .payment-page .left-100.justify-center button {
    width: auto;
    /* display:block; */
    max-width: 100% !important;
    margin-bottom: 0 !important;
  }
  .exam-result .left-100.justify-center button.btn-default {
    width: 100%;
    max-width: 280px;
    min-width: 200px;
    margin: 0;
    padding: 14px 20px;
    font-size: 14px;
  }
  .exam-result .left-100.justify-center button.btn-default:first-child {
    order: 10;
    margin-top: 8px;
    width: 140px;
    min-width: 140px;
  }
  .result-data .exam-row {
    padding: 8px 0px;
  }
  .result-data .exam-row span:first-child {
    font-size: 12px;
    width: 117px;
  }
  .result-data .exam-row span:nth-child(2) {
    font-size: 14px;
    max-width: calc(100% - 130px);
  }
  .result-data.left-100.width-50-100 {
    width: 100%;
    margin: 10px 0 !important;
  }
  .head-perc {
    padding-top: 10px;
  }
  .left-100.exam-row.hide-d h4 {
    color: white;
    background: var(--primary);
    background: -webkit-linear-gradient(44deg, var(--primary), var(--secondary) 106%);
    margin: auto;
    border-color: #e8e8e8;
  }
  .pop-icon {
    top: 30%;
    right: -7px;
    z-index: 1;
    transform: rotate(270deg) !important;
    border-radius: 12px 12px 0px 0;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transform-origin: 100% 100%;
    -moz-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
  }
  .pop-icon .mode-title {
    font-size: 14px;
    margin-top: 7px;
  }
  .pop-icon span {
    margin-top: 10px;
    margin-right: 5px;
  }
  .image_pop a {
    color: #070707;
    margin-top: 10px;
    float: left;
    margin: 20px;
    border: 1px solid;
    padding: 10px;
    border-radius: 10px;
    background: white;
  }
  .side-list {
    /* left: 0; */
    /* right: 0; */
    /* overflow-y: scroll; */
    top: auto;
    /* position: fixed; */
    /* max-height: 80%; */
    /* margin: 10px; */
    /* top: 97px; */
    /* min-height: 100px; */
    /* padding: 10px; */
    /* min-width: 250px; */
    /* max-width: 100%; */
    height: auto;
    bottom: 0;
    margin-bottom: 70px !important;
  }
  .practice .group {
    width: 100%;
  }
  .video-item .thump {
    background-color: #f3f3f3;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .side-list button,
  .topic-list button {
    padding: 6px 9px 6px 9px;
    border-radius: 18px;
    margin: 2px 2px;
    font-size: 14px;
    text-align: left;
    /* line-height: 16px; */
    white-space: break-spaces;
    display: flex;
  }
  .side-list-item span {
    float: left;
  }
  .topic-list button {
    white-space: nowrap;
  }
  .topic-list {
    white-space: nowrap;
    /* display: inline-flex; */
    max-width: 100%;
    overflow-y: auto;
    float: left;
    width: 100%;
  }
  .h-list {
    white-space: nowrap;
    display: inline-flex;
    max-width: 100%;
    overflow-y: auto;
    float: left;
  }
  .notes-view {
    padding-bottom: 10px;
    white-space: initial;
    font-size: 21px !important;
  }
  .topic-list .side-list-item.active {
    padding: 5px 10px;
  }
  .notes-view p {
    margin-left: 0 !important;
  }
  .page-header.fixed {
    background-color: var(--bg);
    width: 100%;
    height: 50px;
    padding: 10px;
    padding: 10px 12px !important;
    height: 52px !important;
  }
  .date-list {
    display: inline-flex;
    width: 100%;
    overflow-x: auto;
    padding: 10px;
    border-bottom: 1px solid white;
  }
  .day-list {
    width: 100%;
    margin-top: 0;
    padding: 10px;
  }
  .day-item {
    margin-bottom: 10px;
    padding: 10px 0px;
    width: calc(100%);
  }
  .day-item-details {
    display: none;
    width: 100%;
    padding: 20px;
    background: white;
  }
  .day-item-details.open {
    position: fixed !important;
    top: 0 !important;
    bottom: 0;
    left: 0;
    z-index: 1;
    display: inherit;
    overflow-x: auto;
  }
  .video-container,
  .open-session {
    padding: 0px;
    width: 100%;
    border: 0;
    max-width: 100%;
    overflow: inherit;
    background: white;
  }
  .study-plan-items {
    min-width: calc(100%);
    padding: 0;
    width: 100%;
  }
  .study-plan-head {
    padding: 10px 20px;
    margin-bottom: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }

  .study-plan-head-left {
    justify-content: flex-start !important;
  }

  .study-plan-head-left img {
    height: 50px;
  }

  .study-plan-head-right {
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    position: sticky;
    top: 3px;
  }

  /* Mobile responsive styles for modern stats container (additional mobile styles) */
  .modern-stats-container {
    gap: 8px;
    padding: 8px 10px;
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .current-day-badge {
    min-width: 45px;
    padding: 6px 8px;
    flex-shrink: 0;
  }

  .day-number {
    font-size: 16px;
  }

  .completed-count {
    font-size: 14px;
  }

  .total-count {
    font-size: 12px;
  }

  .completion-badge {
    min-width: 45px;
    padding: 6px 8px;
    flex-shrink: 0;
  }

  .percentage-value {
    font-size: 14px;
  }

  .progress-bar-container {
    max-width: 50px;
  }

  .study-plan-head h3 {
    font-size: 16px;
    font-weight: 600;
  }

  .study-plan-head p {
    font-size: 12px;
  }
  .open-session.open {
    display: inherit;
    z-index: 100;
  }
  .video-container {
    padding: 15px;
    overflow: auto;
  }
  .day-open h4,
  .open-session h4 {
    width: calc(100% - 20px);
    float: left;
  }
  .day-open .back,
  .open-session .back {
    display: inherit;
  }
  .day-open h4 i:nth-child(2) {
    display: none;
  }
  .date-item-sub {
    width: auto;
    float: left;
  }
  .date-item div:last-child {
    white-space: nowrap;
    margin-top: 8px;
    margin-left: 10px;
  }
  .date-item-sub span:nth-child(2) {
    font-size: 19px;
    margin-top: 0;
  }
  .date-item-sub span:first-child {
    font-size: 10px;
  }
  .date-item {
    padding: 4px 12px;
    width: auto;
    margin-right: 10px;
  }
  .day-item div:last-child {
    margin-top: 0px;
    text-align: left;
  }
  .time-box {
    font-size: 12px;
    width: 100%;
  }
  .time-box span:first-child {
    margin-left: 25px;
    height: 0;
    position: absolute;
    display: none;
  }
  .time-box span:last-child {
    margin-left: 25px;
    height: 0;
    position: absolute;
    display: none;
  }
  .time-box p {
    margin-top: 0;
    padding-top: 0;
    font-size: 12px;
  }
  .video,
  .videos-edit-list .details,
  .videos-edit-list .video {
    width: 100%;
    float: left;
    height: auto;
  }
  .discussion {
    display: block;
    width: 100%;
    position: relative;
    height: 400px;
    margin: auto;
    margin-top: 0;
    border-radius: 0;
    background: white;
  }
  .discussion.video {
    position: fixed;
    height: 48%;
    max-height: calc(100% - 400px);
    width: 100%;
    left: 0;
    right: 0;
    top: auto;
  }
  .discussion-head {
    border-top: 1px solid #e0e0e0;
  }
  .videos-edit-list .discussion-reply,
  .session-edit-list .discussion-reply,
  .assignment-edit-list .discussion-reply,
  .timelineitem-edit-list .discussion-reply {
    position: absolute;
    width: 100%;
  }
  .discussion.open {
    display: inherit;
    width: 100%;
    height: 100%;
    border-radius: 0;
    margin-left: 0;
    min-height: 0;
  }
  .video iFrame {
    width: 100%;
    border-radius: 10px;
    float: left;
    height: 200px;
    vertical-align: top;
  }
  .left-reg {
    width: 100%;
    padding: 0px 0px 16px 0;
  }
  .m-hide {
    display: none;
  }
  .header {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .champion form h3 {
    font-size: 20px;
    text-transform: unset;
  }
  .champion form h2 {
    font-size: 15px;
    padding: 5px 9px;
  }
  .champion .left-reg h1 {
    font-size: 19px;
  }
  .champion .left-reg button {
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .right-reg {
    width: 100%;
    padding-bottom: 0;
  }
  .banner {
    padding-top: 0;
    width: 100%;
  }
  .champion .banner {
    padding-top: 0px;
  }
  .top-banner {
    background-color: #ffffff;
    background-position: top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    margin-top: 0;
    padding-top: 0;
  }
  .top-banner .header {
    padding-top: 15px;
    overflow: auto;
  }
  .header .logo {
    margin-left: 0px;
  }
  .right-reg img {
    width: 100%;
  }
  .right-reg .cities img {
    width: 20px;
  }
  .left-reg form {
    box-shadow: none;
    padding: 0px;
    background: transparent;
  }
  .left-reg h1 {
    font-size: 52px;
    margin-top: 26px;
  }
  .left-reg h2 {
    font-size: 25px;
  }
  .features {
    width: 100%;
    overflow-x: scroll;
    display: inline-flex;
    margin-right: 0;
    justify-content: flex-start;
  }
  .features.champion {
    display: block;
    padding-top: 0;
  }
  .features .left-60,
  .features .left-40 {
    width: 100%;
    padding: 20px;
  }
  .features iFrame {
    width: 100%;
    height: 221px;
  }
  .right-reg form {
    margin-top: 0;
    float: left;
  }
  .pop-out form {
    margin: auto;
    float: none;
  }
  .center-div #login,
  .center-div #enquire {
    border-radius: 0;
    box-shadow: 0 0 20px 4px rgb(150 150 150 / 35%);
  }
  .champion .right-reg form {
    background: rgb(255 255 255);
    box-shadow: none;
  }
  .reg-form.pop-out .submit-form {
    width: 100%;
    height: 50px;
  }
  .card {
    width: 247px;
  }
  .card .img-card {
    width: 238px;
  }
  .time-main {
    width: 100%;
  }
  .time-cards {
    width: 100%;
  }
  .timelines {
    margin-top: 10px;
    padding-top: 54px;
    height: 534px;
  }
  .time-cards .item .text {
    width: 100%;
    color: #333232;
    padding: 0px 23px 17px;
    border: white;
    box-shadow: 1px 8px 5px 3px rgb(243 243 243 / 83%);
  }
  .time-cards .item .text:last-child {
    margin-bottom: 11px;
  }
  .item .text h2 {
    margin: 10px 0;
    font-weight: 700;
    font-size: 30px;
  }
  .time-cards .item {
    text-align: center;
  }
  .time-cards .item .img {
    margin: auto;
    float: none;
  }
  .time-cards .item .img {
    width: 150px;
    height: 150px;
  }
  .v-line {
    margin: auto;
    float: left;
    margin-left: 50%;
    height: 35px;
  }
  .list-topic h1 {
    font-size: 27px;
    margin: 0px 74px;
    text-align: center;
  }
  .container.justify-center h1 {
    font-size: 17px;
    text-align: center;
  }
  .list-topic {
    padding-top: 50px;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .list-topic h1::before,
  .list-topic h1::after {
    margin-top: 15px;
  }
  .list-topic h1::after {
    margin-left: 5px;
  }
  .list-topic ul li {
    font-size: 16px;
    margin-top: 19px;
    padding-right: 0px;
  }
  .list-topic ul {
    padding: 0 14px 29px 40px;
  }
  .list-topic .left-50,
  .list-topic .right-50 {
    width: 100%;
    margin-left: 0;
    margin-top: 0;
  }
  .right-50 img {
    margin-top: 0;
  }
  .question .left-50:nth-child(2) {
    padding-right: 0px;
  }
  .screenshot {
    margin-right: -15px;
    padding-top: 20px;
    height: 232px;
  }
  .time-main p {
    font-size: 15px;
    line-height: 15px;
  }
  .left-reg h3 {
    font-size: 30px;
    margin-left: -24px;
    border-radius: 0 30px 30px 0;
    padding: 10px 10px 10px 25px;
  }
  .subscribe {
    text-align: center;
    padding-top: 150px;
    margin-top: 0;
    margin-bottom: 5px;
  }
  .subscribe h2 {
    color: white;
    font-size: 22px;
    line-height: 35px;
  }
  .subscribe .btn-default {
    margin-top: 10px;
    font-size: 14px;
  }
  .subscribe.sticky {
    background: var(--primary);
    padding: 10px 0px;
    position: fixed;
    top: 0;
    margin: auto;
    z-index: 1;
    background: -webkit-linear-gradient(353deg, #c175b1, #5d2e91 64%);
    box-shadow: 4px 3px 5px 0px rgb(0 0 0 / 20%);
  }
  .subscribe.sticky h2 {
    font-size: 12px;
    margin: 0;
    line-height: 17px;
    white-space: nowrap;
    overflow: auto;
  }
  .subscribe.sticky .btn-default {
    margin-top: 10px;
    font-size: 13px;
    padding: 6px 20px;
    font-weight: 600;
  }
  .subscribe.sticky .col-md-4 {
    text-align: center;
    padding-right: 0;
    padding-left: 0;
  }
  .subscribe.sticky .price span:first-child {
    color: var(--secondary);
    font-size: 17px;
  }
  .subscribe.sticky .price span:nth-child(2) {
    color: white;
    font-size: 16px;
  }
  .subscribe.sticky .price i {
    color: white;
    font-size: 10px;
  }
  .subscribe.sticky .col-md-3 h1 {
    font-size: 36px;
  }
  .foot-1,
  .foot-2,
  .foot-3,
  .foot-4 {
    width: 100%;
    padding: 0px 0px 0px 0;
  }
  footer .list {
    display: block;
  }
  footer .list1 {
    display: block;
  }
  .social-icons-wrapper a {
    font-size: 12px;
    padding: 10px;
  }
  footer {
    padding: 15px 0px 60px 0;
  }
  .list-unstyled {
    text-align: left;
    column-count: 2;
    border-bottom: 1px solid #fce9ff;
    padding: 15px 10px;
  }
  .foot-2 {
    margin-top: 0;
  }
  footer .menu-head {
    padding: 10px;
    line-height: 20px;
    margin-top: 0;
    font-size: 17px;
    margin-bottom: 0px;
  }
  footer .text {
    margin-top: 0;
    float: left;
    margin-bottom: 0;
    max-width: 100%;
  }
  section {
    margin: 0px 0px;
    padding: 0;
  }
  section.blog,
  .video-testimonial {
    margin-top: 20px;
    overflow: auto;
  }
  .blog-head {
    background: #f6f6f6;
    margin-bottom: 30px;
    margin: 0;
  }
  .pay-logos {
    width: 100%;
    overflow: auto;
  }
  nav {
    width: calc(100% - 0px);
    overflow: auto;
    margin-top: 10px;
    border: 0;
    padding: 9px 0;
    text-align: center;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: white;
    border-radius: 0;
    overflow: auto;
    display: inline-flex;
  }

  .wa-me.champion {
    bottom: auto;
    top: 10px;
    right: 10px;
    left: auto;
    width: 40px;
    height: 40px;
  }
  .wa-me.champion i {
    font-size: 20px;
    margin: 0px;
    color: white;
    transition: all 0.5s ease;
  }
  nav a {
    margin-left: 0;
    display: none;
  }
  nav button {
    width: 35%;
    float: left;
    margin: 0 7px;
    font-size: 12px;
  }
  nav button:last-child {
    width: 57%;
  }
  .app nav button {
    width: auto;
    padding: 10px 8px;
    font-size: 15px;
    max-width: 100%;
    min-width: auto;
    background: white;
  }
  .app nav button:last-child {
    margin-top: 10px !important;
    padding: 10px 25px;
    font-size: 17px;
    background: var(--primary);
  }
  .video-item {
    width: 100%;
    margin-bottom: 10px;
    margin-top: 22px;
  }
  .testimonials-item {
    width: 100%;
  }
  .filter .select-group {
    width: 100%;
    margin-right: 0px;
    min-width: 190px;
  }
  .dropdown-content {
    width: auto;
    min-width: auto;
  }
  .feature-item {
    width: 50%;
    padding: 10px;
  }
  .feature-item:hover {
    border: 0px;
  }
  .feature-item img {
    height: 60px;
  }
  .app-land .feature-item img {
    height: 98px;
  }
  .app-land .feature-item h5 {
    font-weight: 600;
    font-size: 25px;
  }
  .feature-item p {
    font-size: 10px;
  }
  .app-land .feature-item p {
    font-size: 15px;
  }
  .dictionary .word-list {
    width: calc(100% - 68px);
    float: left;
    position: fixed;
    right: 0;
    height: calc(100% - 175px);
    top: 200px;
    overflow: auto;
    padding-right: 34px;
    padding-bottom: 10px;
  }
  .dictionary .word-data {
    padding: 20px 0;
    position: fixed;
    width: calc(100%);
    float: left;
    left: auto;
    right: 0;
    width: 100%;
    display: block;
    top: auto;
    bottom: 0;
    max-height: calc(100% - 160px);
    border-radius: 12px 12px 0 0;
    box-shadow: 0px 1px 10px 7px rgb(0 0 0 / 7%);
    height: 0;
    min-height: 0;
    background: white;
    overflow: auto;
  }
  .dictionary .word-data.active {
    height: auto;
    padding: 15px 15px;
    bottom: 58px;
  }
  .alphabets {
    width: 40px;
    float: left;
    position: fixed;
    max-height: calc(100% - 160px);
    top: 200px;
    overflow: auto;
    padding-bottom: 10px;
  }
  .popup .header button,
  .title-header button {
    font-size: 12px;
    width: 30px;
    height: 30px;
    padding: 0px 0px;
  }
  .blog_item_img {
    width: 100%;
    margin-bottom: 10px;
  }
  .team .blog_item_img {
    margin: 10px;
  }
  .blog_details h3 {
    font-size: 16px;
  }
  .blog_details p {
    font-size: 12px;
  }
  .container.justify-center h1::before {
    margin-top: 9px;
  }
  .container.justify-center h1::after {
    margin-top: 9px;
    margin-left: 5px;
  }
  .team .blog_item {
    width: 100%;
    background: #faf9f9;
    border-radius: 10px;
  }
  .team .blog_details {
    width: 50%;
    margin: 10px;
  }
  .pop-video .emb-video {
    max-width: 100%;
    padding-bottom: 50%;
    position: absolute;
    left: 5%;
    right: 5%;
    top: 10%;
  }
  .game-box {
    margin: 10px 10px 10px 10px;
    width: 100%;
    margin: 0;
    border-radius: 0;
    padding: 20px 20px;
    position: fixed;
    top: 89px;
    bottom: 60px;
    overflow: auto;
  }
  .game-box .question {
    margin: 0px 0 18px 0;
    padding: 0px;
    padding-top: 20px;
  }
  .game-box .mb-50 {
    margin-bottom: 20px;
  }
  .level-title span:nth-child(2) {
    font-size: 25px;
  }
  span.opLab {
    height: 40px;
    font-size: 15px;
    width: 40px;
    padding-top: 10px;
  }
  .game-box .op-box.ans .opLab span.icon-tick {
    font-size: 20px;
  }
  .game-box .op-box.wrong .opLab span.icon-closed {
    font-size: 20px;
  }
  .game-title h1 {
    font-size: 22px;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 100%;
    overflow: hidden;
  }
  .game-title p {
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 100%;
    overflow: hidden;
  }
  .game-info-item,
  .game-info-item-2 {
    width: 100%;
    font-size: 14px;
    padding: 17px;
  }
  .game-box .actions,
  .game-box .next-actions {
    margin-top: 0px;
    padding-bottom: 8px;
    position: fixed;
    bottom: 0;
    background: -webkit-linear-gradient(302deg, #434e70, #3b4569 100%);
    left: 0;
    right: 0;
    box-shadow: 0px -5px 11px 0px rgb(0 0 0 / 9%);
  }

  .game-box button {
    padding: 10px;
    height: auto;
    margin-top: 0;
  }
  .game-info-item .pop-box .box img {
    width: 55%;
  }
  .pop-box .box {
    width: 90%;
  }
  .game-box .op-box {
    width: 100%;
  }
  .game-box .option {
    width: calc(100% - 60px);
    margin-right: 0px;
  }
  .game-box .qno {
    margin: auto;
  }
  .game-box .half {
    width: 100%;
  }
  .game-box .qn-box {
    margin: 0px 0 20px 0px;
    width: 100%;
    padding-bottom: 0;
  }
  @-webkit-keyframes smallmove {
    0% {
      top: 10px;
      left: 45%;
      opacity: 1;
    }
    25% {
      top: 300px;
      left: 40%;
      opacity: 0.7;
    }
    50% {
      top: 240px;
      left: 55%;
      opacity: 0.4;
    }
    75% {
      top: 100px;
      left: 40%;
      opacity: 0.6;
    }
    100% {
      top: 10px;
      left: 45%;
      opacity: 1;
    }
  }
  @keyframes smallmove {
    0% {
      top: 10px;
      left: 45%;
      opacity: 1;
    }
    25% {
      top: 300px;
      left: 40%;
      opacity: 0.7;
    }
    50% {
      top: 240px;
      left: 55%;
      opacity: 0.4;
    }
    75% {
      top: 100px;
      left: 40%;
      opacity: 0.6;
    }
    100% {
      top: 10px;
      left: 45%;
      opacity: 1;
    }
  }
  @-webkit-keyframes medmove {
    0% {
      top: 0px;
      left: 20%;
      opacity: 1;
    }
    25% {
      top: 300px;
      left: 80%;
      opacity: 0.7;
    }
    50% {
      top: 240px;
      left: 55%;
      opacity: 0.4;
    }
    75% {
      top: 100px;
      left: 40%;
      opacity: 0.6;
    }
    100% {
      top: 0px;
      left: 20%;
      opacity: 1;
    }
  }
  @keyframes medmove {
    0% {
      top: 0px;
      left: 20%;
      opacity: 1;
    }
    25% {
      top: 300px;
      left: 80%;
      opacity: 0.7;
    }
    50% {
      top: 240px;
      left: 55%;
      opacity: 0.4;
    }
    75% {
      top: 100px;
      left: 40%;
      opacity: 0.6;
    }
    100% {
      top: 0px;
      left: 20%;
      opacity: 1;
    }
  }
  @-webkit-keyframes bigmove {
    0% {
      top: 0px;
      right: 4%;
      opacity: 0.5;
    }
    25% {
      top: 100px;
      right: 40%;
      opacity: 0.4;
    }
    50% {
      top: 240px;
      right: 45%;
      opacity: 0.8;
    }
    75% {
      top: 100px;
      right: 35%;
      opacity: 0.6;
    }
    100% {
      top: 0px;
      right: 4%;
      opacity: 0.5;
    }
  }
  @keyframes bigmove {
    0% {
      top: 0px;
      right: 4%;
      opacity: 0.5;
    }
    25% {
      top: 100px;
      right: 40%;
      opacity: 0.4;
    }
    50% {
      top: 240px;
      right: 45%;
      opacity: 0.8;
    }
    75% {
      top: 100px;
      right: 35%;
      opacity: 0.6;
    }
    100% {
      top: 0px;
      right: 4%;
      opacity: 0.5;
    }
  }
  .trial-bar {
    bottom: 60px;
    left: 0;
    right: 0;
    z-index: 99;
    max-width: 100%;
  }
  .trial-bar .name {
    font-weight: 600;
    font-size: 15px;
  }
  .trial-bar .date {
    font-weight: 600;
    font-size: 13px;
  }
  .a4 {
    width: 100% !important;
  }
  .a4 .print-content {
    width: 100%;
    overflow: auto;
  }
}
@media print {
  .left-panel,
  .right-panel,
  .popup,
  .page-header,
  .action.left-100.justify-center,
  .form {
    display: none !important;
  }
  tr {
    page-break-inside: avoid;
  }
  .full-div {
    display: block;
    padding: 0;
    margin: 0;
    position: inherit;
  }
  .a4 {
    width: 100%;
    padding: 0;
    margin: 0;
  }
  table {
    width: 100%;
  }
  table td,
  table th {
    white-space: inherit;
    padding: 5px;
  }
  .watermark {
    display: inline;
    position: fixed !important;
    opacity: 0.2;
    background: white;
    color: lightgray;
    width: 100%;
    text-align: center;
    z-index: 1000;
    top: 500px;
    right: 5px;
  }
}
@media print {
  tr {
    page-break-inside: avoid;
  }
}
@media screen and (max-width: 360px) {
  .tutorial .tile-item,
  .dash-tiles .tile-item {
    width: calc(100%);
  }
  .dash-tiles .tile-item:nth-child(even) {
    margin-left: 0px;
  }
}
.print .left-panel,
.print .right-panel,
.print .popup,
.print .page-header,
.print .action.left-100.justify-center {
  display: none !important;
}
.print tr {
  page-break-inside: avoid;
}
.print .full-div {
  display: block;
  padding: 0;
  margin: 0;
  position: inherit;
}
.print .a4 {
  width: 100%;
  padding: 0;
  margin: 0;
}
.print table {
  width: 100%;
}
.print table td {
  white-space: inherit;
  padding: 5px;
}
.print .watermark {
  display: inline;
  position: fixed !important;
  opacity: 0.2;
  background: white;
  color: lightgray;
  width: 100%;
  text-align: center;
  z-index: 1000;
  top: 500px;
  right: 5px;
}
@media print {
  tr {
    page-break-inside: avoid;
  }
}
@page {
  margin: 20px;
}

@media print {
  .a4 {
    box-shadow: none;
    max-height: inherit;
    overflow: inherit;
    border: 0;
    width: auto !important;
  }
  .a4 .report-grades,
  .header,
  .a4 .report-date-filter {
    display: none;
  }
  .print-content {
    overflow: inherit;
  }
  .print-content table {
    width: 100%;
  }
  .invoice {
    margin: 0;
    border: initial;
    border-radius: initial;
    width: initial;
    min-height: initial;
    box-shadow: initial;
    background: initial;
    page-break-after: always;
  }
  .invoice table {
    border: none;
    float: left;
    width: 100%;
    margin-bottom: 0;
  }
  .invoice table tr,
  .invoice table th,
  .invoice table td {
    border: 1px solid !important;
  }
  .buttons {
    display: none;
  }
}

/* shiimmer */

.shimmer-container {
  display: grid;
  gap: 16px;
  width: 100%;
}

.shimmer-card {
  background-color: white;
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
}

.shimmer-title {
  height: 16px;
  background-color: #eee;
  border-radius: 4px;
  margin-bottom: 16px;
  width: 70%;
}

.shimmer-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

.shimmer-tag {
  height: 17px;
  border-radius: 14px;
  background-color: #eee;
  position: relative;
}

.shimmer-tag.small {
  width: 90px;
}

.shimmer-tag.medium {
  width: 120px;
}

.shimmer-tag.large {
  width: 160px;
}

/* Shimmer animation effect */
.shimmer-effect {
  position: relative;
  overflow: hidden;
}

.shimmer-effect::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%);
  transform: translateX(-100%);
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}

/* Progressive Study Plan Styles */
.study-plan-item.locked {
  opacity: 0.5;
  pointer-events: none;
  position: relative;
}

.study-plan-item.locked .study-box {
  background: #f8f9fa;
  border: 2px dashed #dee2e6;
}

.lock-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 8px;
  border-radius: 50%;
  z-index: 10;
  font-size: 18px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.study-plan-item.completed .study-box {
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  border-left: 4px solid #28a745;
}

.day-status-icon {
  font-size: 16px;
  margin-left: auto;
}

.day-status-icon.completed::before {
  content: "✓";
  color: #28a745;
  font-weight: bold;
  font-size: 16px;
}

.day-status-icon.current::before {
  content: "▶";
  color: #007bff;
  font-weight: bold;
}

.day-status-icon.available::before {
  content: "";
}

.day-status-icon.locked::before {
  content: "🔒";
  color: #6c757d;
}

.study-plan-head-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.study-plan-head-left > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.study-plan-head-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Modern Stats Container */
.modern-stats-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  /* padding: 12px 20px; */
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  /* box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1); */
  min-height: 60px;
}

/* Current Day Badge */
.current-day-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  padding: 8px 12px;
  border-radius: 12px;
  min-width: 70px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.day-label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

.day-number {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  margin-top: 2px;
}

/* Progress Summary */
.progress-summary {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--br-color);
  padding: 8px 12px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.progress-numbers {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-weight: 600;
  white-space: nowrap;
}

.completed-count {
  font-size: 24px;
  font-weight: 700;
  color: #333;
}

.progress-separator {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

.total-count {
  font-size: 20px;
  font-weight: 600;
  color: #333;
}

.sessions-label {
  font-size: 13px;
  color: #666;
  font-weight: 500;
  text-transform: lowercase;
}

/* Progress Bar */
.progress-bar-container {
  flex: 1;
  max-width: 120px;
  margin-left: 10px;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #28a745 0%, #20c997 100%);
  border-radius: 3px;
  transition: width 0.8s ease-in-out;
  position: relative;
}

.progress-fill::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* Completion Badge */
.completion-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: white;
  color: #333;
  padding: 8px 12px;
  border-radius: 12px;
  min-width: 60px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #ddd;
}

.completion-badge.complete {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: white;
  animation: completeBadgePulse 2s infinite;
  border-color: rgba(255, 255, 255, 0.3);
}

.percentage-value {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: #333;
}

.completion-badge.complete .percentage-value {
  color: white;
}

.completion-status {
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
  opacity: 0.9;
  color: #666;
}

.completion-badge.complete .completion-status {
  color: white;
}

@keyframes completeBadgePulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(40, 167, 69, 0.3);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .modern-stats-container {
    gap: 10px;
    padding: 10px 12px;
    flex-wrap: nowrap;
  }

  .current-day-badge {
    min-width: 50px;
    padding: 8px 10px;
  }

  .day-number {
    font-size: 18px;
  }

  .completed-count {
    font-size: 18px;
  }

  .total-count {
    font-size: 16px;
  }

  .progress-bar-container {
    max-width: 80px;
  }

  .completion-badge {
    min-width: 50px;
    padding: 6px 8px;
  }

  .percentage-value {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .modern-stats-container {
    gap: 8px;
    padding: 8px 10px;
  }

  .progress-numbers {
    gap: 4px;
  }

  .sessions-label {
    font-size: 11px;
  }

  .progress-bar-container {
    max-width: 60px;
  }
}

.study-plan-item.day-head.completed .study-box-head {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.study-plan-item.day-head.current .study-box-head {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
}

.study-plan-item.day-head.locked .study-box-head {
  background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
}

.study-plan-item.locked .study-box-subject {
  opacity: 0.6;
  background: #6c757d !important;
}

/* Enhanced day completion animations */
@keyframes dayComplete {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.study-plan-item.day-head.completed {
  animation: dayComplete 0.5s ease-in-out;
}

/* New Study Plan Layout Styles */
.study-plan-layout {
  display: flex;
  gap: 20px;
  margin-top: 0;
  height: calc(100vh - 130px);
}

.study-plan-days-menu {
  width: 250px;
  background: var(--bg);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid var(--lbr-color);
  display: flex;
  flex-direction: column;
}

.study-plan-days-menu h4 {
  margin: 0 0 15px 0;
  color: var(--primary);
  font-size: 16px;
  font-weight: 600;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--lbr-color);
}

.days-list {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.day-menu-item {
  width: 100%;
  background: white;
  border: 1px solid var(--lbr-color);
  border-radius: 8px;
  padding: 0;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
}

.day-menu-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.day-menu-item.active {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  border-color: var(--primary);
}

.day-menu-item.completed {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: white;
  border-color: #28a745;
}

.day-menu-item.current {
  background: linear-gradient(135deg, var(--primary) 0%, var(--theme) 100%);
  color: white;
  border-color: var(--theme);
}

.day-menu-item.available {
  background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
  color: white;
  border-color: #17a2b8;
}

.day-menu-item.locked {
  background: #f8f9fa;
  color: #6c757d;
  opacity: 0.6;
  cursor: not-allowed;
}

.day-menu-content {
  padding: 12px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.day-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.day-number {
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
}

.day-progress {
  font-size: 11px;
  opacity: 0.7;
  line-height: 1;
}

.day-stats {
  display: flex;
  align-items: center;
  gap: 8px;
}

.day-percentage {
  font-size: 12px;
  font-weight: 600;
  background: white;
  color: #333;
  padding: 2px 6px;
  border-radius: 10px;
  line-height: 1;
}

.day-percentage.complete {
  background: #28a745 !important;
  color: white !important;
  font-weight: bold;
  box-shadow: 0 0 8px rgba(40, 167, 69, 0.4);
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% {
    box-shadow: 0 0 8px rgba(40, 167, 69, 0.4);
  }
  50% {
    box-shadow: 0 0 12px rgba(40, 167, 69, 0.8);
  }
  100% {
    box-shadow: 0 0 8px rgba(40, 167, 69, 0.4);
  }
}

.day-menu-item.completed .day-percentage {
  background: white;
  color: #333;
}

.day-menu-item.current .day-percentage {
  background: white;
  color: #333;
}

.day-menu-item.locked .day-percentage {
  background: white;
  color: #6c757d;
}

.day-status-icon {
  font-size: 14px;
}

.day-status-icon.completed::before {
  content: "✓";
  color: inherit;
  font-weight: bold;
  font-size: 16px;
}

.day-status-icon.current::before {
  content: "▶";
  color: inherit;
  font-weight: bold;
}

.day-status-icon.available::before {
  content: "";
}

.day-status-icon.locked::before {
  content: "🔒";
  color: inherit;
}

.study-plan-content {
  flex: 1;
  background: var(--bg);
  border-radius: 12px;
  border: 1px solid var(--lbr-color);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.content-header {
  padding: 20px;
  border-bottom: 1px solid var(--lbr-color);
  background: var(--dash);
}

.content-header h4 {
  margin: 0;
  color: var(--primary);
  font-size: 18px;
  font-weight: 600;
}

.sessions-container {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.subject-section {
  background: white;
  border-radius: 12px;
  border: 1px solid var(--lbr-color);
  /* overflow: hidden; */
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
}

.subject-section.locked {
  opacity: 0.6;
}

.subject-header {
  padding: 15px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  font-weight: 600;
  transition: all 0.2s ease;
  border-radius: 10px;
}

.subject-header:hover {
  filter: brightness(1.1);
}

.subject-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.subject-title {
  font-size: 16px;
}

.session-count {
  font-size: 12px;
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 8px;
  border-radius: 12px;
  margin-left: 10px;
}

.toggle-icon {
  font-size: 14px;
  transition: transform 0.2s ease;
}

.subject-sessions {
  padding: 15px;
  display: flex;
  flex-direction: column;
  height: max-content;
  gap: 10px;
  /* max-height: 400px; */
  /* overflow-y: auto; */
  transition: all 0.3s ease;
}

.subject-sessions.collapsed {
  max-height: 0;
  padding: 0 15px;
  overflow: hidden;
}

.study-plan-session {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--lbr-color);
  border-radius: 8px;
  padding: 0;
  text-align: left;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.study-plan-session:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.study-plan-session.completed {
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  border-left: 4px solid #28a745;
}

.study-plan-session.locked {
  opacity: 0.5;
  pointer-events: none;
}

.study-plan-session.last {
  border: 2px solid var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary), 0.2);
}

/* Responsive adjustments */
@media screen and (max-width: 991px) {
  .study-plan-layout {
    flex-direction: column;
    /* height: auto; */
    gap: 15px;
    max-width: calc(100% - 40px);
    margin: auto;
  }

  .study-plan-days-menu {
    width: 100%;
    height: auto;
    max-height: 200px;
  }

  .days-list {
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 10px;
    padding-bottom: 5px;
  }

  .day-menu-item {
    min-width: 120px;
    /* flex-shrink: 0; */
  }

  .day-menu-content {
    padding: 8px 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .day-info {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }

  .day-number {
    font-size: 13px;
  }

  .day-progress {
    font-size: 10px;
  }

  .day-stats {
    justify-content: space-between;
  }

  .day-percentage {
    font-size: 11px;
    padding: 1px 5px;
  }

  .study-plan-content {
    height: max-content;
  }

  .content-header {
    padding: 15px;
  }

  .sessions-container {
    padding: 15px;
  }

  .subject-header {
    padding: 12px 15px;
  }

  .subject-sessions {
    padding: 12px;
  }

  .progress-indicator {
    padding: 6px 12px;
    font-size: 12px;
  }

  .lock-overlay {
    padding: 6px;
    font-size: 14px;
  }

  .day-status-icon {
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  .study-plan-layout {
    gap: 10px;
  }

  .study-plan-days-menu {
    padding: 15px;
  }

  .day-menu-content {
    padding: 10px 12px;
  }

  .day-number {
    font-size: 13px;
  }

  .day-progress {
    font-size: 11px;
  }

  .content-header {
    padding: 12px;
  }

  .content-header h4 {
    font-size: 16px;
  }

  .sessions-container {
    padding: 12px;
    gap: 12px;
  }

  .subject-header {
    padding: 10px 12px;
  }

  .subject-title {
    font-size: 14px;
  }

  .session-count {
    font-size: 11px;
    padding: 2px 6px;
  }

  .subject-sessions {
    padding: 10px;
    gap: 8px;
  }

  .progress-indicator {
    padding: 4px 8px;
    font-size: 11px;
  }

  .lock-overlay {
    padding: 4px;
    font-size: 12px;
  }
}

/* ========================================
   TAB VIEW MEDIA QUERIES
   ======================================== */

/* Tablet (768px to 991px) */
@media screen and (min-width: 568px) and (max-width: 991px) {
  body {
    font-family: Segoe UI, SegoeUI, Segoe WP, Helvetica Neue, Helvetica, Tahoma, Arial, sans-serif;
    font-size: 18px;
    line-height: 1.42857143;
  }
  .full-div {
    background: rgba(0, 0, 0, 0.5);
    overscroll-behavior: contain;
    padding: 0;
  }
  .message-box {
    background: rgba(0, 0, 0, 0.5);
    padding: 0;
  }
  .side-list-item.active,
  .h-list button.active {
    font-size: 18px;
  }
  .h-list button span:last-child{
    font-size: 18px;
  }
  .study-plan-head p {
    font-size: 15px;
  }
  .study-plan-item .det span {
    font-size: 15px;
    color: var(--font-dark);
  }
  .subject-title {
    font-size: 14px;
  }
  .study-plan-item .title-text {
    font-size: 18px !important;
    font-weight: 600;
    color: var(--font-dark);
  }
  /* Tab styles for tablet */
  .dash-tiles,
  .upcoming-exams,
  .line-chart,
  .exam-scores,
  .dash-banner,
  #dashboard-panel .weak-performance,
  .tutorial {
    padding: 10px 0px;
    width: 100%;
  }
  .tutorial-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 100%;
    height: 100%;
  }
  .dash-tiles .data,
  .exam-scores .data {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 100%;
    height: 100%;
  }
  .two-column {
    flex-direction: column;
    margin: 0;
    padding: 0;
    gap: 0;
  }
  .subject-wise {
    padding: 10px 0px 0 0px;
    width: 100%;
  }
  .weak-performance {
    padding: 10px 0px 0 0px;
    width: 100%;
  }
  .page-header,
  .page-header-inside {
    padding: 15px 30px;
    height: 70px;
  }
  .page-header,
  .page-header-inside {
    padding: 15px 30px;
    height: 70px;
  }
  .sub-menu-data-item,
  .chapter-selection .side-list {
    padding: 15px 30px;
  }
  .side-list button,
  .topic-list button,
  .side-list-item.active,
  .chapter-name,
  .subject-name,
  .cn,
  .sub-menu-item h5,
  .pop-icon,
  .pop-icon .mode-title {
    font-size: 20px;
  }
  
  .menu_item h5,
  .notes-view {
    font-size: 16px;
  }
  .question-div {
    font-size: 20px;
  }
  .side-list-grade {
    margin-top: 20px;
  }
  .menu_item,
  .menu,
  .left-panel {
    height: 70px;
  }
  .ai-chat-text {
    display: block;
  }
  .question-board,
  .show-top .question-board,
  .sep.option-panel {
    bottom: 70px;
    padding: 10px;
  }
  .dash-tiles .data .tile-item:last-child {
    grid-column: span 2;
  }
  .dash-banner .data {
    padding: 30px;
    height: 216px;
  }
  .page-header.fixed {
    height: 70px;
    padding: 10px;
    padding: 13px 31px !important;
    height: 70px !important;
  }
  .tutorial-card-title {
    font-size: 18px;
  }
  .tutorial-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    height: 100%;
  }
  .sub-menu-item h5 {
    font-weight: normal;
  }
  
  .qst-sol,
  .qst-text{
    font-size:19px;
  }
  .sub-menu-item {
    height: 60px;
  }
  .sub-menu-item h5 {
    float: left;
    width: 100%;
    text-align: left;
    margin: auto;
    font-size: 19px;
    padding: 0;
    padding-top: 21px;
    vertical-align: -webkit-baseline-middle;
  }
  .sub-menu {
    width: 100%;
    position: inherit;
    padding: 0px 30px;
  }
  .sub-menu-item {
    height: 65px;
    padding: 0;
  }
  .menu_item h5,
  .sub-menu-item h5 {
    height: 63px;
    margin: 0px 25px;
    width: -webkit-fill-available;
  }
  .tutorial-card-btn {
    margin-top: 15px;
  }
  .tutorial-card-img {
    display: block;
    width: 62px;
    margin-top: 0;
    margin-bottom: auto;
  }
  .question-view,
  .question-board {
    padding: 30px;
  }
  .round-option span {
    font-size: 12px;
  }
  .round-option {
    margin: 20px 5px;
  }
  .question-board li {
    width: 35px;
    height: 35px;
    padding-top: 0.1px;
    margin: 4px;
  }
  .sub-menu-data-item,
  .chapter-selection .side-list {
    padding-bottom: 180px;
  }
  .sub-menu-data-item.sub-learning {
    padding-bottom: 200px;
  }
  .full-div .center-div {
    max-width: 90%;
    margin: auto;
    right: auto;
    bottom: 0;
    animation: bottomToTop;
    margin-bottom: 0 !important;
    padding-bottom: 20px !important;
    border-radius: 10px 10px 0 0;
    top: auto;
    max-height: 100dvh;
    overflow: auto;
  }
  .study-plan-pop > .center-div {
    max-width: 100%;
  }
  .day-percentage {
    font-size: 14px;
    padding: 1px 5px;
  }
  .open-custom-exam-config {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid var(--br-color);
    margin: 0 !important;
    padding: 26px !important;
    background: var(--bg-primary);
    color: var(--font-invert);
  }
  .exam-actions .btn-default {
    font-size: 23px !important;
  }
  .exam-actions .btn-default {
    height: 40px;
  }
  .show-top .question-board {
    top: 100px;
  }
  .message-title {
    font-size: 18px;
  }
  .message-buttons button {
    font-size: 18px;
  }
  .exam-result {
    max-width: calc(100% - 30px);
    padding: 20px 28px;
    margin: 0;
    margin-top: auto;
    border-radius: 10px 10px 0 0;
    animation: bottomToTop;
  }
  .result-data,
  .exam-result .page-header,
  page-header-inside {
    margin: auto;
    justify-content: space-between;
  }
  .justify-center h4,
  .left-100.exam-row.hide-d h4 {
    border-radius: 14px;
    margin-left: 0;
    width: 200px;
    height: 61px;
    padding: 17px;
    border: 0;
  }
  .result-data .exam-row span:first-child {
    font-size: 15px;
    width: 164px;
  }
  .weak-item h5 {
    font-size: 16px;
  }
  .study-plan-items {
    position: fixed;
    bottom: 0;
    overflow: auto;
    top: 0;
  }
  .study-plan-layout {
    max-width: calc(100% - 40px);
    height: calc(100dvh - 180px);
  }
  .side-widget .examitem {
    padding: 15px 30px;
  }
  .video-container,
  .open-session {
    padding: 15px 30px;
    height: auto;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    height: 100vh;
  }
  .day-open h4,
  .open-session h4 strong {
    display: flex;
    align-items: center;
    font-size: 24px;
  }
  .video-container.small .video {
    width: 100%;
    aspect-ratio: 16 / 9;
  }
  .open-session.open {
    display: inherit;
    z-index: 100;
  }
  .tags div span, .tags button span, .smbtn, .open-paper span, .delete-paper span{
    font-size: 16px;
  }
  .no-data{
    font-size:20px;
  }
  .video iFrame {
    width: 100%;
    border-radius: 10px;
    float: left;
    height: 400px;
    vertical-align: top;
}
  .tutorial-box iFrame{
    height: 783px !important;
    max-height: 90dvw;
  }
}

/* Notes Chat Modal (similar to AI Chat) */
.notes-chat-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.notes-chat-modal.hide {
  opacity: 0;
  visibility: hidden;
}

.notes-chat-modal-content {
  background: var(--bg-secondary);
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.notes-chat-header {
  padding: 20px;
  background: var(--bg-primary);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.notes-chat-title {
  font-size: 18px;
  font-weight: 600;
}

.notes-search-input {
  flex: 1;
  min-width: 200px;
  padding: 8px 12px;
  border: none;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 19px;
  outline: none;
  transition: background-color 0.3s ease;
}

.notes-search-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.notes-search-input:focus {
  background: rgba(255, 255, 255, 0.3);
}

.notes-chat-close {
  background: none;
  border: none;
  color: white;
  font-size: 22px;
  cursor: pointer;
  padding: 0;
  border-radius: 50%;
  transition: background-color 0.3s ease;
  border: 1px solid;
}

.notes-chat-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.notes-chat-container {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  max-height: 400px;
  background: var(--bg-secondary);
  scrollbar-width: thin;
  scrollbar-color: var(--track) transparent;
}

.notes-welcome-message {
  background: rgba(34, 197, 140, 0.1);
  border-left: 4px solid var(--bg-primary);
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 8px;
}

.notes-welcome-content {
  color: var(--font-dark);
  font-size: 14px;
  line-height: 1.5;
}

.note-chat-message {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 15px;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.note-chat-message:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.note-chat-message.pinned {
  background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
  border-color: #f39c12;
}

.note-content {
  color: var(--font-dark);
  font-size: 19px;
  /* line-height: 1.6; */
  margin-bottom: 10px;
  word-wrap: break-word;
}

.note-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--font-light);
}

.note-date {
  font-size: 12px;
  color: var(--font-light);
}

.note-actions {
  display: flex;
  gap: 8px;
}

.note-pin-btn,
.note-edit-btn,
.note-delete-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  padding: 4px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.note-pin-btn:hover,
.note-edit-btn:hover,
.note-delete-btn:hover {
  background: rgba(0, 0, 0, 0.1);
}

.note-pin-btn.pinned {
  color: #f39c12;
}

.note-edit-btn {
  color: #3498db;
}

.note-delete-btn {
  color: #e74c3c;
}

.notes-chat-input-container {
  padding: 20px;
  background: var(--bg-secondary);
  border-top: 1px solid #e9ecef;
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.notes-chat-input {
  flex: 1;
  min-height: 40px;
  max-height: 120px;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 20px;
  font-size: 18px;
  resize: none;
  outline: none;
  transition: border-color 0.3s ease;
}

.notes-chat-input:focus {
  border-color: var(--bg-primary);
  box-shadow: 0 0 0 3px rgba(34, 197, 140, 0.1);
}

.notes-chat-save {
  background: var(--bg-primary);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.notes-chat-save:hover {
  background: #1a9d73;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .notes-chat-modal-content {
    width: 95%;
    max-width: none;
    margin: 10px;
  }
  
  .notes-chat-header {
    padding: 15px;
    flex-direction: row;
    align-items: stretch;
    align-items: center;
  }
  
  .notes-search-input {
    min-width: auto;
    margin-top: 0;
  }
  
  .notes-chat-container {
    max-height: calc(100dvh - 40px);
  }
  
  .notes-chat-input-container {
    padding: 15px;
  }
  
  .note-actions {
    gap: 12px;
  }
  
  .note-pin-btn,
  .note-edit-btn,
  .note-delete-btn {
    font-size: 16px;
    padding: 6px;
  }
  .my-notes-text {
    display: block !important;
}
}

/* ===================================
   BORDERS AND SHADOWS FOR WHITE SECTIONS
   =================================== */

/* Exam scores section */
.exam-scores .data {
  border: 1px solid rgba(52, 152, 219, 0.08);
  border-radius: 12px;
  /* padding: 15px; */
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04); */
}

/* Subject-wise and weak performance sections */
.subject-wise,
.weak-performance {
  /* border: 1px solid rgba(52, 152, 219, 0.08); */
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04); */
}

/* Line chart container */
.line-chart .data {
  border: 1px solid rgba(52, 152, 219, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border-radius: 10px;
}

/* Upcoming exams */
.upcoming-exams {
  /* border: 1px solid rgba(52, 152, 219, 0.08); */
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04); */
}

/* Study plan items */
.study-plan-item {
  border: 1px solid rgba(52, 152, 219, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.study-plan-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

/* Exam scores items */
.exam-scores-item {
  border: 1px solid rgba(52, 152, 219, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.exam-scores-item:hover {
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.1);
}

/* Activities sidebar */
.activities {
  border-left: 1px solid rgba(52, 152, 219, 0.08);
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.04);
}

/* Side navigation and menus */
.side-list,
.nav-menu,
.menu-panel {
  border: 1px solid rgba(52, 152, 219, 0.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Content boxes and cards */
.white-box,
.info-card,
.content-box {
  background: var(--bg);
  border: 1px solid rgba(52, 152, 219, 0.08);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  padding: 20px;
}

/* Learning and notes content areas */
.content-area,
.notes-content,
.learning-content,
.practice-content {
  border: 1px solid rgba(52, 152, 219, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* ===================================
   DASHBOARD TABS STYLING
   =================================== */

.dashboard-tabs {
  width: 100%;
  margin-top: 0;
  padding: 0 30px 0 30px;
}

.dashboard-tabs .h-list {
  margin-top: 10px;
}

.dashboard-tabs .h-list button .course-count {
  display: inline-block;
  background: var(--bg-primary);
  color: white;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  margin-left: 4px;
  margin-right: 0;
}

.dashboard-tabs .h-list button.active .course-count {
  background: #2980b9;
}

.tab-content {
  width: 100%;
}

.tab-pane {
  display: none;
  animation: fadeIn 0.3s ease;
}

.tab-pane.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .tab-btn {
    padding: 10px 16px;
    font-size: 14px;
  }
  
  .tab-buttons {
    gap: 5px;
  }
  
  .tab-btn .course-count {
    font-size: 11px;
    padding: 1px 6px;
  }
}

/* Reference Search Feature Styles */
.ref-search {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  margin-right: 0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.ref-search:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.ref-search-icon {
  font-size: 18px;
  margin-right: 8px;
}

.ref-search-text {
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .ref-search-text {
    display: none;
  }
  .ref-search {
    padding: 8px 12px;
  }
}

/* Reference Search Modal */
.ref-search-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  animation: fadeIn 0.3s ease;
}

@keyframes refSearchFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.ref-search-modal-content {
  background: white;
  border-radius: 12px;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.ref-search-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #e0e0e0;
}

.ref-search-header h3 {
  margin: 0;
  font-size: 20px;
  color: #333;
}

.ref-search-close {
  font-size: 32px;
  color: #999;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s ease;
}

.ref-search-close:hover {
  color: #333;
}

.ref-search-input-section {
  padding: 20px;
  background: #f8f9fa;
}

.ref-search-input-group {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.ref-search-input {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.ref-search-input:focus {
  outline: none;
  border-color: #667eea;
}

.ref-search-btn-submit {
  padding: 12px 24px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ref-search-btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.ref-search-info {
  text-align: center;
  color: #666;
  font-size: 13px;
}

.ref-search-info p {
  margin: 0;
}

.ref-search-results {
  padding: 20px;
  min-height: 100px;
}

.ref-search-loading,
.ref-search-error,
.ref-search-empty {
  text-align: center;
  padding: 40px 20px;
  color: #666;
  font-size: 16px;
}

.ref-search-error {
  color: #dc3545;
}

.ref-search-results-title h4 {
  margin: 0 0 20px 0;
  font-size: 16px;
  color: #333;
}

.ref-search-result-item {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 15px;
  border-left: 4px solid #667eea;
  transition: all 0.3s ease;
}

.ref-search-result-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateX(5px);
}

.ref-search-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
}

.ref-search-badge-video {
  background: #e3f2fd;
  color: #1976d2;
}

.ref-search-badge-question {
  background: #fff3e0;
  color: #f57c00;
}

.ref-search-badge-note {
  background: #f3e5f5;
  color: #7b1fa2;
}

.ref-search-preview {
  margin-bottom: 12px;
}

.ref-search-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.ref-search-question-text,
.ref-search-note-text {
  font-size: 14px;
  color: #555;
  margin-bottom: 5px;
  line-height: 1.5;
}

.ref-search-ref {
  font-size: 12px;
  color: #999;
  font-style: italic;
}

.ref-search-view-btn {
  background: #667eea;
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ref-search-view-btn:hover {
  background: #764ba2;
  transform: translateY(-2px);
}

/* Result Display Modal */
.ref-result-content {
  max-width: 800px;
}

.ref-result-question-content,
.ref-result-note-content {
  padding: 20px;
  line-height: 1.6;
}

.question-text {
  margin-bottom: 20px;
}

.question-text strong {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-size: 16px;
}

.question-options {
  margin: 20px 0;
}

.question-option {
  padding: 12px 16px;
  margin-bottom: 8px;
  background: #f8f9fa;
  border-radius: 6px;
  border-left: 3px solid #e0e0e0;
}

.question-option.correct-option {
  background: #d4edda;
  border-left-color: #28a745;
}

.question-solution,
.question-hint {
  margin-top: 20px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 6px;
  border-left: 4px solid #667eea;
}

.question-solution strong,
.question-hint strong {
  display: block;
  margin-bottom: 8px;
  color: #333;
}

.ref-result-note-content {
  font-size: 15px;
  color: #333;
}

/* Video container 16:9 aspect ratio for reference search */
#open-session .video iframe {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
}

/* Better video display for reference search */
#open-session.hash-close {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.1);
}

#open-session .video-container {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

#open-session .video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #000;
}

#open-session .video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Video container sole - for reference number search video player */
.video-container-sole {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000;
  z-index: 1000;
  display: flex;
  flex-direction: column;
}

/* Video Modal Styles */
.video-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.video-modal-content {
  background: #fff;
  border-radius: 12px;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-modal-header {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  gap: 12px;
}

.video-modal-close {
  background: #f0f0f0;
  border: none;
  color: #333;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
}

.video-modal-close:hover {
  background: #e0e0e0;
}

.video-modal-close i {
  font-size: 16px;
}

/* Video close button (used in student video modal) */
.video-close-btn {
  background: #f0f0f0;
  border: none;
  color: #333;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
}

.video-close-btn:hover {
  background: #e0e0e0;
}

.video-close-btn i {
  font-size: 16px;
}

.video-modal-title,
.video-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.video-modal-body {
  flex: 1;
  background: #000;
  position: relative;
  min-height: 300px;
}

.video-modal-body #video {
  width: 100%;
  height: 100%;
}

.video-modal-body .video {
  width: 100%;
  min-height: 400px;
  display: flex;
  flex-direction: column;
}

.video-modal-body .video iframe,
.video-modal-body .video video {
  width: 100%;
  height: 400px;
  border: none;
}

.video-modal-body .video h3,
.video-modal-body .video > div {
  background: #fff;
  padding: 10px 16px;
  margin: 0;
  font-size: 14px;
  color: #333;
}

.video-modal-body .video h3 {
  font-size: 16px;
  font-weight: 600;
  padding-top: 16px;
}

.video-view {
  position: relative;
  background: #000;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.video-view iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-view .no-data {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 16px;
  text-align: center;
  padding: 20px;
}
/* Reference content modal (question/note) - same style as video modal */
.ref-content-modal {
  max-height: 80vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.ref-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  background: #fff;
}

.ref-result-question-content,
.ref-result-note-content {
  line-height: 1.6;
  color: #333;
}

.ref-result-note-content {
  font-size: 15px;
}

/* Improved Student Video Container Styles */
.videos-chat {
  display: flex;
  flex-direction: column;
  height: auto;
  max-height: 90vh;
  overflow: hidden;
}

.videos-chat h4 {
  background: #fff;
  margin: 0;
  padding: 12px 16px;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.videos-chat h4 strong {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.videos-chat .video-pause {
  background: #f0f0f0 !important;
  border: none !important;
  color: #333 !important;
  width: 36px !important;
  height: 36px !important;
  min-width: 36px;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
  padding: 0 !important;
  margin: 0 !important;
}

.videos-chat .video-pause:hover {
  background: #e0e0e0 !important;
}

.videos-chat .video-pause i {
  font-size: 14px;
  line-height: 1;
}

.videos-chat.small {
  width: auto;
  max-width: 900px;
}

.videos-chat.small .video {
  width: 100%;
  float: none;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  background: #000;
}

.videos-chat.small .video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ===============================================
   OMR EXAM STYLES - Offline/Paper-Based Exams
   =============================================== */

/* Main OMR Exam Container */
.exam-window.omr-exam {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--bg);
  z-index: 1000;
  display: block;
  overflow: hidden;
}

/* OMR Exam uses normal exam header styles */
.exam-window.omr-exam .option-panel.top {
  position: fixed;
  top: 0;
  height: 40px;
  display: flex;
  align-items: center;
  padding: 0 15px;
  background: var(--primary);
  z-index: 10;
}

.exam-window.omr-exam .option-panel.exam-left.top {
  left: 0 !important;
  right: auto !important;
  width: 50% !important;
  text-align: left !important;
}

.exam-window.omr-exam .option-panel.exam-right.top {
  right: 0 !important;
  left: auto !important;
  width: 50% !important;
  text-align: right !important;
  justify-content: end;
}

.exam-window.omr-exam .option-panel.top h4 {
  color: white;
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

.exam-window.omr-exam .option-panel.top h4 span {
  color: white !important;
}

/* OMR PDF Container */
.omr-pdf-container {
  position: fixed;
  top: 40px;
  left: 0;
  right: 0;
  bottom: 56px;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: stretch;
  background: var(--exambg);
  overflow: hidden;
}

.omr-pdf-viewer {
  width: 100%;
  max-width: 1200px;
  height: 100%;
  border: none;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 
              0 4px 12px rgba(0, 0, 0, 0.1);
  background: white;
}

.omr-no-pdf {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 600px;
  padding: 60px 40px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.omr-no-pdf p {
  color: #6c757d;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

.omr-no-pdf::before {
  content: '📄';
  display: block;
  font-size: 4rem;
  margin-bottom: 20px;
  opacity: 0.5;
}

/* OMR Actions Footer - uses .exam-actions positioning */
.omr-actions.exam-actions {
  gap: 10px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  top: auto;
  padding: 12px 20px;
  background: var(--bg);
  z-index: 100;
  justify-content: center;
}

.omr-actions .btn-default {
  max-width: 200px;
}

/* OMR Result Display (after submission) */
.omr-result {
  background: white;
  border-radius: 16px;
  padding: 40px;
  max-width: 500px;
  margin: 40px auto;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.omr-result h3 {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.omr-result p {
  color: #6c757d;
  font-size: 1rem;
  line-height: 1.6;
}

/* OMR Solution Buttons */
.omr-solution-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
  flex-wrap: wrap;
}

.omr-solution-actions .btn-default {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 0.95rem;
}

.view-omr-solution-pdf {
  background: var(--primary) !important;
  color: white !important;
}

.view-omr-solution-video {
  background: var(--secondary) !important;
  color: white !important;
}

/* Solution pending message for OMR exams */
.solution-pending-message {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #fff3cd 0%, #ffeeba 100%);
  color: #856404;
  border: 1px solid #ffc107;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  margin: 10px;
  box-shadow: 0 2px 8px rgba(255, 193, 7, 0.2);
}

.solution-pending-message::before {
  content: "⏳";
  font-size: 1.1rem;
}

/* OMR Popup Styles - higher z-index than result-container */
.omr-popup-backdrop {
  z-index: 9999 !important;
}

.omr-popup-backdrop .video-modal-content {
  z-index: 10000 !important;
}

/* Responsive Design for OMR Exam */
@media (max-width: 768px) {
  .exam-window.omr-exam .option-panel.exam-left.top,
  .exam-window.omr-exam .option-panel.exam-right.top {
    width: 50%;
  }
  
  .exam-window.omr-exam .option-panel.top h4 {
    font-size: 12px;
  }
  
  .omr-pdf-container {
    padding: 10px;
    bottom: 50px;
  }
  
  .omr-pdf-viewer {
    border-radius: 8px;
  }
}

/* ===============================================
   END OMR EXAM STYLES
   =============================================== */

/* ===============================================
   MATERIALS LIST STYLES
   =============================================== */
/* .materials-content .materials {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 5px;
} */

.material-item {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  background: var(--bg);
  border-radius: 16px;
  margin-bottom: 0;
  border: 1px solid var(--br-color);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
}

.material-item:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transform: translateY(-3px);
  border-color: var(--primary);
}

.material-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lbg);
  border-radius: 12px;
  font-size: 22px;
  color: var(--primary);
  flex-shrink: 0;
}

.material-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.material-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--font-dark);
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.material-desc {
  font-size: 13px;
  color: var(--font-light);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.5;
}

.material-actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.btn-material-view {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--bg-primary);
  color: var(--font-invert);
  border: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-material-view:hover {
  background: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.btn-material-view:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.btn-material-view span {
  font-size: 16px;
}

/* Empty state for no file */
.material-item.no-file .btn-material-view {
  background: var(--lbg);
  color: var(--font-light);
  box-shadow: none;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .material-item {
    grid-template-columns: 40px 1fr auto;
    gap: 12px;
    padding: 14px 16px;
  }

  .material-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
    border-radius: 10px;
  }
  
  .material-title {
    font-size: 14px;
  }
  
  .material-desc {
    font-size: 12px;
  }
  
  .btn-material-view {
    padding: 10px 20px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .material-item {
    grid-template-columns: 36px 1fr;
    gap: 10px;
    padding: 12px;
    border-radius: 12px;
  }

  .material-icon {
    width: 36px;
    height: 36px;
    font-size: 16px;
    border-radius: 8px;
  }
  
  .material-title {
    font-size: 13px;
  }
  
  .material-desc {
    white-space: normal;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
  }
}
/* ===============================================
   END MATERIALS LIST STYLES
   =============================================== */

/* ===============================================
   MEETINGS LIST STYLES
   =============================================== */

/* Meeting type badges */
.tag-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.tag-badge.zoom {
  background: #2D8CFF;
  color: #fff;
}
.tag-badge.link {
  background: #6c5ce7;
  color: #fff;
}
.tag-badge.inbuilt {
  background: #00b894;
  color: #fff;
}

/* Live meeting indicator */
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  border-radius: 10px;
  background: #e74c3c;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  vertical-align: middle;
  margin-left: 6px;
  animation: livePulse 2s ease-in-out infinite;
}
.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  display: inline-block;
  animation: liveDotPulse 1s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}
@keyframes liveDotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

/* Join meeting button inside card */
.meetings-item .join-meeting-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.2s, transform 0.1s;
}
.meetings-item .join-meeting-btn:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}
.meetings-item .join-meeting-btn:active {
  transform: translateY(0);
}

/* Expired meeting card - not clickable */
.meetings-item.meeting-expired {
  opacity: 0.65;
  cursor: default;
}

/* ===============================================
   END MEETINGS LIST STYLES
   =============================================== */

/* ===============================================
   REDESIGNED EXAM RESULT POPUP — Teal Design System
   =============================================== */
.result-container.v2 {
  z-index: 2001;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 24px 16px;
}
.result-container.v2 .v2-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 8px 32px rgba(0,0,0,0.12);
  width: 100%;
  max-width: 720px;
  overflow: hidden;
  animation: v2SlideUp 0.4s ease-out;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
}
@keyframes v2SlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Header */
.result-container.v2 .v2-header {
  background: linear-gradient(135deg, #0d9488, #06b6d4);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.result-container.v2 .v2-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}
.result-container.v2 .v2-header-logo {
  height: 36px;
  width: auto;
  border-radius: 8px;
  background: rgba(255,255,255,0.2);
  padding: 3px;
  flex-shrink: 0;
}
.result-container.v2 .v2-header-date {
  font-size: 13px;
  color: rgba(255,255,255,0.95);
  font-weight: 600;
}
.result-container.v2 .v2-header-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.result-container.v2 .v2-header-time {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  font-weight: 400;
}
.result-container.v2 .v2-header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.result-container.v2 .v2-student-info {
  text-align: right;
}
.result-container.v2 .v2-student-name {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}
.result-container.v2 .v2-student-mobile {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  margin-top: 1px;
}
.result-container.v2 .v2-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid rgba(255,255,255,0.3);
  flex-shrink: 0;
}

/* Body */
.result-container.v2 .v2-body {
  display: flex;
  float: none;
}

/* Score Section - Desktop */
.result-container.v2 .v2-score-desktop {
  width: 190px;
  background: linear-gradient(165deg, #f0fdfa, #e0f7fa);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 16px;
  border-left: 1px solid #e5e7eb;
  flex-shrink: 0;
}
.result-container.v2 .v2-score-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #0d9488;
  margin-bottom: 10px;
}
.result-container.v2 .v2-score-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 16px;
}
.result-container.v2 .v2-score-circle svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  transform: rotate(-90deg);
}
.result-container.v2 .v2-score-circle .v2-track {
  fill: none;
  stroke: #e5e7eb;
  stroke-width: 6;
}
.result-container.v2 .v2-score-circle .v2-progress {
  fill: none;
  stroke: #0d9488;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 276;
  stroke-dashoffset: 276;
  transition: stroke-dashoffset 1s ease-out 0.3s;
}
.result-container.v2 .v2-score-pct {
  font-size: 24px;
  font-weight: 700;
  color: #0d9488;
  z-index: 1;
}
.result-container.v2 .v2-mark-divider {
  width: 36px;
  height: 1px;
  background: #d1d5db;
  margin-bottom: 12px;
}
.result-container.v2 .v2-mark-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #6b7280;
  margin-bottom: 4px;
}
.result-container.v2 .v2-mark-value {
  font-size: 36px;
  font-weight: 700;
  color: #111827;
  line-height: 1;
}

/* Data Table */
.result-container.v2 .v2-data {
  flex: 1;
  padding: 4px 0;
  min-width: 0;
}
.result-container.v2 .v2-row {
  display: flex;
  align-items: baseline;
  padding: 12px 24px;
  border-bottom: 1px solid #f3f4f6;
  transition: background 0.15s;
  float: none;
}
.result-container.v2 .v2-row:last-child {
  border-bottom: none;
}
.result-container.v2 .v2-row:hover {
  background: #f9fafb;
}
.result-container.v2 .v2-row-label {
  font-size: 13px;
  color: #6b7280;
  font-weight: 500;
  width: 140px;
  flex-shrink: 0;
  float: none;
}
.result-container.v2 .v2-row-value {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  flex: 1;
  word-break: break-word;
  float: none;
}
.result-container.v2 .v2-row-value.v2-exam-title {
  color: #0d9488;
  font-weight: 700;
}

/* Mobile Score Card */
.result-container.v2 .v2-score-mobile {
  display: none;
}

/* Subject / Chapter / Part Wise Sections */
.result-container.v2 .v2-breakdown {
  border: 0;
  margin: 0;
  width: 100%;
  float: none;
  border-top: 1px solid #e5e7eb;
  padding: 0;
  background: #ffffff;
  border-radius: 0;
}
.result-container.v2 .v2-breakdown-title {
  font-size: 13px;
  font-weight: 600;
  color: #111827;
  padding: 16px 24px 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.result-container.v2 .v2-breakdown-title::before {
  content: '';
  width: 3px;
  height: 16px;
  background: linear-gradient(135deg, #0d9488, #06b6d4);
  border-radius: 2px;
}
.result-container.v2 .v2-breakdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  border-bottom: 1px solid #f3f4f6;
  gap: 12px;
}
.result-container.v2 .v2-breakdown-item:last-child {
  border-bottom: none;
}
.result-container.v2 .v2-breakdown-item:hover {
  background: #f9fafb;
}
.result-container.v2 .v2-breakdown-name {
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.result-container.v2 .v2-breakdown-stats {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.result-container.v2 .v2-breakdown-stat {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 12px;
  color: #6b7280;
}
.result-container.v2 .v2-breakdown-stat i {
  font-size: 11px;
}
.result-container.v2 .v2-breakdown-stat i.icon-submitted.green {
  color: #15803d;
}
.result-container.v2 .v2-breakdown-stat i.icon-helpcenter {
  color: #6b7280;
}
.result-container.v2 .v2-breakdown-stat i.icon-chapters {
  color: #0d9488;
}
.result-container.v2 .v2-breakdown-stat i.icon-submitted.red {
  color: #b91c1c;
}
.result-container.v2 .v2-breakdown-badge {
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 9999px;
  min-width: 44px;
  text-align: center;
}
.result-container.v2 .v2-breakdown-badge.v2-good {
  background: #f0fdf4;
  color: #15803d;
  border: 1px solid #bbf7d0;
}
.result-container.v2 .v2-breakdown-badge.v2-avg {
  background: #fefce8;
  color: #ca8a04;
  border: 1px solid #fef08a;
}
.result-container.v2 .v2-breakdown-badge.v2-low {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

/* Action Buttons */
.result-container.v2 .v2-actions {
  padding: 16px 24px;
  border-top: 1px solid #e5e7eb;
  background: #f9fafb;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.result-container.v2 .v2-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  color: #374151;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  max-width: none;
  margin: 0;
  height: auto;
}
.result-container.v2 .v2-actions button:hover {
  border-color: #0d9488;
  color: #0d9488;
  box-shadow: 0 2px 8px rgba(13,148,136,0.12);
  transform: translateY(-1px);
}
.result-container.v2 .v2-actions button:active {
  transform: translateY(0);
}
.result-container.v2 .v2-actions button.v2-btn-close {
  background: #f3f4f6;
  border-color: #d1d5db;
  color: #6b7280;
}
.result-container.v2 .v2-actions button.v2-btn-close:hover {
  background: #e5e7eb;
  color: #374151;
  box-shadow: none;
  transform: none;
}
.result-container.v2 .v2-actions button.v2-btn-primary {
  background: linear-gradient(135deg, #0d9488, #06b6d4);
  color: #ffffff;
  border-color: transparent;
}
.result-container.v2 .v2-actions button.v2-btn-primary:hover {
  box-shadow: 0 4px 12px rgba(13,148,136,0.3);
  color: #ffffff;
}
.result-container.v2 .v2-actions button.v2-btn-retry {
  background: linear-gradient(135deg, #f0fdfa, #e0f7fa);
  border-color: #5eead4;
  color: #0d9488;
  font-weight: 600;
}
.result-container.v2 .v2-actions button.v2-btn-retry:hover {
  background: linear-gradient(135deg, #e0f7fa, #ccfbf1);
}
.result-container.v2 .v2-actions button.v2-btn-cert {
  background: linear-gradient(135deg, #fef9e7, #fdf2c5);
  border-color: #f7dc6f;
  color: #b79600;
}
.result-container.v2 .v2-actions button.v2-btn-cert:hover {
  background: linear-gradient(135deg, #fdf2c5, #fae5a0);
}
.result-container.v2 .v2-actions button.view-omr-question-pdf {
  background: linear-gradient(135deg, #e8f4ff, #d4e8fc);
  border-color: #93c5fd;
  color: #1d4ed8;
}
.result-container.v2 .v2-actions button.view-omr-question-pdf:hover {
  background: linear-gradient(135deg, #d4e8fc, #b8d8f8);
}
.result-container.v2 .v2-actions button.view-omr-answer-pdf {
  background: linear-gradient(135deg, #e6f7ed, #c8f0d8);
  border-color: #86efac;
  color: #16a34a;
}
.result-container.v2 .v2-actions button.view-omr-answer-pdf:hover {
  background: linear-gradient(135deg, #c8f0d8, #a8e5c0);
}
.result-container.v2 .v2-actions button.view-omr-solution-pdf {
  background: linear-gradient(135deg, #f3e8ff, #e5d4f7);
  border-color: #c4b5fd;
  color: #7c3aed;
}
.result-container.v2 .v2-actions button.view-omr-solution-pdf:hover {
  background: linear-gradient(135deg, #e5d4f7, #d4bef2);
}
.result-container.v2 .v2-actions button.view-omr-solution-video {
  background: linear-gradient(135deg, #fff5e6, #ffe8cc);
  border-color: #ffd699;
  color: #d97706;
}
.result-container.v2 .v2-actions button.view-omr-solution-video:hover {
  background: linear-gradient(135deg, #ffe8cc, #ffd699);
}

/* Mobile Responsive */
@media (max-width: 640px) {
  .result-container.v2 {
    padding: 0;
    align-items: flex-end;
  }
  .result-container.v2 .v2-card {
    max-width: 100%;
    border-radius: 16px 16px 0 0;
    animation: v2SlideBottom 0.35s ease-out;
    max-height: 95vh;
    margin: 0;
    width: 100%;
  }
  @keyframes v2SlideBottom {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
  }
  .result-container.v2 .v2-header {
    padding: 16px 20px;
    flex-direction: column;
    align-items: flex-start;
  }
  .result-container.v2 .v2-header-right {
    width: 100%;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.15);
  }
  .result-container.v2 .v2-student-info {
    text-align: left;
  }
  .result-container.v2 .v2-body {
    flex-direction: column;
  }
  .result-container.v2 .v2-score-desktop {
    display: none;
  }
  .result-container.v2 .v2-score-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #f0fdfa, #e0f7fa);
    border-bottom: 1px solid #e5e7eb;
  }
  .result-container.v2 .v2-mob-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
  }
  .result-container.v2 .v2-mob-circle svg {
    position: absolute;
    top: 0; left: 0;
    width: 72px; height: 72px;
    transform: rotate(-90deg);
  }
  .result-container.v2 .v2-mob-circle .v2-track {
    fill: none; stroke: #e5e7eb; stroke-width: 5;
  }
  .result-container.v2 .v2-mob-circle .v2-mob-progress {
    fill: none; stroke: #0d9488; stroke-width: 5;
    stroke-linecap: round;
    stroke-dasharray: 201;
    stroke-dashoffset: 201;
    transition: stroke-dashoffset 1s ease-out 0.3s;
  }
  .result-container.v2 .v2-mob-pct {
    font-size: 18px;
    font-weight: 700;
    color: #0d9488;
    z-index: 1;
  }
  .result-container.v2 .v2-mob-stats {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .result-container.v2 .v2-mob-stats-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6b7280;
    font-weight: 600;
  }
  .result-container.v2 .v2-mob-stats-value {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    line-height: 1.1;
  }
  .result-container.v2 .v2-mob-stats-suffix {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
  }
  .result-container.v2 .v2-row {
    padding: 10px 20px;
  }
  .result-container.v2 .v2-row-label {
    width: 110px;
    font-size: 12px;
  }
  .result-container.v2 .v2-row-value {
    font-size: 13px;
  }
  .result-container.v2 .v2-breakdown-title {
    padding: 14px 20px 6px;
  }
  .result-container.v2 .v2-breakdown-item {
    padding: 8px 20px;
  }
  .result-container.v2 .v2-actions {
    padding: 14px 20px;
    padding-bottom: max(14px, env(safe-area-inset-bottom));
  }
}
   =============================================== */