@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");
}
body {
  width: 100%;
  height: 100%;
  background: var(--bg);
  font-family: madetommy, 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);
}
.yellow-bg {
  background: #ffdd00;
}
.dull {
  background: #ffffff;
}
.page-header.fixed {
  position: fixed;
  z-index: 1;
  background-color: var(--bg);
  box-shadow: 0px 0 0 0px rgb(12 0 46 / 6%);
  height: 60px;
  padding: 5px 24px 0px 26px;
}
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 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( --primary);
  }
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: var(--primary);
}
td b,
td strong {
  font-weight: bold;
  color: black;
}
li strong {
  color: var(--font-dark);
}
label {
  margin-top: 9px;
}
.bg-white {
  background: transparent;
}
.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: #ffffff;
  border-color: #7d0075;
  color: #7d0075;
  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;
}
.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: #fafafa;
}
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;
}
.footer
{
    background-color: #fafafa;
    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: zoom;
  -webkit-animation-duration: 0.4s;
  animation-name: zoom;
  animation-duration: 0.4s;
}
.image_pop .center-div {
  display: grid;
  text-align: center;
  justify-content: center;
}
.chapter-selection .side-list {
  width: 50%;
  max-width: 50%;
}
.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 {
  padding: 30px;
  background: var(--bg);
  border: 1px solid var(--br-color);
  float: left;
  text-align: center;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0px 0px 3px 1px rgb(181 181 181 / 45%);
}
.from .redactor-box, .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: var(--bg);
  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: var(--bg);
}
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;
}
.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: -webkit-linear-gradient(44deg, var(--bg-primary), var(--bg-secondary) 106%);
  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);
}
.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;
  text-align: center;
  z-index: 4000;
  background-color: rgba(0, 0, 0, 0.4);
  overflow: auto;
}
.message-content {
  background: var(--bg);
  border-radius: 12px;
  -khtml-user-select: unset;
  -moz-user-select: unset;
  -ms-user-select: unset;
  user-select: unset;
  text-align: center;
  margin: auto;
  padding: 10px;
  min-width: 250px;
  width: auto;
  max-width: 500px;
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.4s;
  animation-name: zoom;
  border-width: var(--br-thinkness);
  border-color: var(
  --br-color);
  border-style: solid;
  animation-duration: 0.4s;
}
.message-content .bg-white {
  margin-top: 0;
  margin-bottom: 5px;
}
.message-title {
  margin-top: 10px;
  padding-bottom: 10px;
  font-size: 18px;
  margin-bottom: 10px;
  padding: 0px 22px;
  min-height: 40px;
}

.message-buttons button {
  padding: 0px 20px;
  margin: 0 5px;
}
.message-buttons {
  width: 100%;
}
.float-group {
  position: relative;
  width: 100%;
  float: left;
}
.double .float-group {
  width: calc(50% - 10px);
}
.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: calc(50% - 10px);
}
.double .float-group:nth-child(even) {
  margin-right: 5px;
}
.double .float-group:nth-child(odd) {
  margin-left: 5px;
}
.double .select-group:nth-child(even) {
  margin-right: 5px;
}
.double .select-group:nth-child(odd) {
  margin-left: 5px;
}
.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;
}
.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;
}
.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;
}
.h-list {
  float: left;
  width: 100%;
  margin-top: 0;
}
.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: 250px;
  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(75% - 265px);
}
.dashboard .right-panel,
.home .right-panel {
  width: calc(75% - 255px);
}
.menu {
  text-align: center;
  margin: 15px 0px 0px 15px;
}
.pop-menu {
  margin: 0px 0px 0px 0px;
}
.menu .logo {
  margin: 15px 24px 92px 7px;
  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(--secondary-light);
  transition: all 0.1s ease;
  margin: auto;
  padding: 0px 0px 0px 5px;
  height: 45px;
}
.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;
}
.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: 600;
  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% - 265px);
  padding: 26px 24px 0px 26px;
  margin: 0;
  margin-left: 265px;
  /*! background: white; */
  height: 90px;
  transition: height 0.5s ease;
  border-bottom: 1px solid var(--br-color);
}
.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;
}

.page-title img {
    filter: var(--img);
}
.right-panel .panel-item {
  float: left;
  width: 100%;
  margin-top: 15px;
  padding-bottom: 50px;
}
.fixed.right-panel .panel-item {
  padding-top: 90px;
}
.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);
}
.sub-menu {
  width: 190px;
  background: var(--bg);
  /* background: #eaecf2; */
  position: fixed;
  top: 0;
  bottom: 0;
  padding: 15px 0px 0px 15px;
  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-light);
  background: inherit;
  width: 100%;
  text-align: left;
  margin: auto;
  padding: 0px 0px 0px 5px;
  height: 45px;
border-radius: 0;}
.sub-menu .page-title {
  margin: 23px 24px 85px 7px;
  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: 210px;
  width: calc(100% - 235px);
  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: var(--bg);
color: var(--primary);}
.tab-menu-button.active,input[type="radio"]:checked + label {
  border: 1px solid var(--font-light);
  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 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: 12px;
  width: calc(33% - 12px);
  margin-right: 12px;
  padding: 15px;
  text-align: left;
  margin-bottom: 15px;
  float: left;
  border: var(--br-thinkness) solid var(--br-color);
}
.courses.examitem {
  width: 49%;
  flex: 1;
}
.exam-row i {
    font-style: normal;
}
.examitem .title span:first-child {
  /* font-size: 16px; */
  font-weight: 600;
  width: 77%;
  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);
}
.study-plan-item
{
  width:100%;
  float:
  left;
  /* padding: 15px 20px; */
  border-radius: 0;
  text-align: left;
  color: var( --primary);
}
.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 .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;
}
.study-plan-item.last .day
{
  animation: zoom-in-zoom-out 1s ease infinite;
}
.study-plan-item.last .day: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.last .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;
}
.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:first-child
{
  padding-bottom:20px;
  margin-left: 18px;
  margin-top: 20px;
}
.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
{
      padding-left: 15px;
      width: calc(100% - 60px);
}
.study-plan-item .det
{
  width: calc(100% - 0px);
  float: left;
  padding-left: 25px;
}
.study-plan-item .det .icon
{
  width: 50px;
  height: 50px;
  float:
  left;
  background: var(--bg);
  border-radius: 50%;
  text-align: center;
  padding-top: 13px;
  font-size: 25px;
  color: var(--font-dark);
}
.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:white;
  padding: 3px 9px;
  border-radius: 10px;
  margin-right: 5px;
  float: left;
}
.study-plan-item .tags {
    margin-top: 5px;
    margin-bottom: 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: 1.5px dashed #919191;
  padding: 15px 20px;
}
.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);
}

.Expired,
.Anytime,
.Upcoming,
.Ongoing {
  font-weight: 600;
  border: 1px solid;
  padding: 0 10px;
  border-radius: 5px;
}
.Expired {
  color: red !important;
}
.Anytime {
  color: #b79600 !important;
}
.Ongoing {
  color: green !important;
}
.Upcoming {
  color: #b79600 !important;
}
.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;
}
.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;
}
.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;
}
.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: -20px;
  width: calc(100% + 40px);
  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 10px;
}
.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;
}
.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;
}
.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;}
.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: -webkit-linear-gradient(425deg, var(--bg-primary), var(--bg-secondary) 81%);
  color: var(--font-invert);
}
.secondary {
  background: transparent !important;
  border: 1px solid var(--lbr-color) !important;
  color: var(--primary) !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;
}
.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: 10px;
}
.exam-result .page-header .page-title img {
  float: inherit;
}
.exam-result .page-left {
  float: left;
  max-width: 68%;
}

.exam-result .page-left span {
  width: 100%;
}
.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: 200px;
}
.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, #80479b, #ba189f 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: #f39ac0;
  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;
}
.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(--bg-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: 5px 15px 11px 9px;
  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 #d3d3d300;
  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(--lbg);
}
.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-light);
  margin: 2px 0;
}
.topic-list .side-list-item {
  width: 100%;
}
.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);
}
.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;
}
.side-list-chapter {
  border-top: 1px solid var(--br-color);
}
.side-list-item,
.h-list button {
  float: left;
  background: var(--lbg);
  display: flex;
  border-color: var(--br-color);
}
.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(--font-light);
    background: var(--bg);
    box-shadow: 5px 1px 8px rgb(229 208 208 / 38%);
    display: flex;
    white-space: inherit;
  font-weight: 600;
  color: var(
  --primary);
}
.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;
}
.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;
}
.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;
}
.question-list .list-item:first-child {
  border-top: 1px solid var(--br-color);
}
.question-list .list-item {
  padding: 20px 10px 12px;
  background: transparent;
  border-bottom: 1px solid var(--br-color);
  width: 100%;
  text-align: left;
  float: left;
  }
.payment-report {
  user-select: text;
  cursor: auto;
}
.not-mark {
  background: var(--secondary);
  color: white  !important;
  width: 19px !important;
  height: 20px !important;
  float: left !important;
  border-radius: 50%;
  text-align: center;
  margin-right: 5px;
  font-size: 12px;
  padding-top: 2.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: 24px;
  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;
}
.tags {
  margin-top: 10px;
}
.tags div,.tags button, .open-paper, .up-down, .delete-paper {
  font-size: 12px;
  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%;
  }
.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 {
  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: #11be75;
  color: white;
  font-weight: normal;
}
.question-list .list-item p {
  padding: 10px 0px !important;
  color: var(--font-light);
  margin: auto;
-webkit-user-select: text;
    -khtml-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;}
.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: 25px;
}
.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: .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;
}
.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;
}
.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;
}
.dash-banner {
  padding: 10px 20px 15px 30px;
}
.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(--bg-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.1px;
  border-style: solid;
  border-color: var(--br-color);
}
.dash-tiles,
.line-chart,
.subject-wise,
.weak-performance,
.upcoming-exams, .tutorial {
  padding: 0px 20px 5px 30px;
}

.popup .dash-tiles, .popup .line-chart, .popup .subject-wise, .popup .weak-performance, .popup .upcoming-exams, .popup .tutorial,.popup .exam-scores {
    padding: 0;
}
.quote {
  content: '"';
  float: left;
  margin-left: 25px;
}
.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;
}
.profile-cover .data {
  padding: 13px 7px;
  background-position: center;
}
.profile-cover .address {
  width: 100%;
  padding: 0px;
}
.profile-cover .pic {
  width: 100px;
  float: left;
  height: 100px;
  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);
}
.profile-cover .address {
  width: 80%;
  padding: 27px 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 30px 0px 10px;
}
.upcoming-exams {
  width: 30%;
  padding: 0px 5px 0px 30px;
  position: relative;
  overflow: hidden;
}
.upcoming-exams .data {
  width: 100%;
  height: calc(100% - 63px);
  background: #f6a9ff;
  background: -webkit-linear-gradient(22deg, var(--bg-primary), var(--bg-secondary) 106%);
  margin: 5px;
  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: 5px;
  /* 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: 12px;
  float: left;
  background: var(--bg);
  margin: 5px 5px;
  width: calc(33.3% - 10px);
  padding: 10px;
  border-width: 0.1px;
  border-style: solid;
  border-color: var(--br-color);
  text-align: left;
}
.tutorial .tile-item
{
  width:auto;
}

.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: 20px;
    position: absolute;
    justify-content: space-evenly;
    color: var(--lbg);
    margin-top: 9px;
    margin-left: 4px;
    background: var(--secondary);
    padding: 15px;
    border-radius: 50%;
}
.dashboard h4,
.home .right-panel h4 {
  padding: 10px 10px 5px;
  color: var(--primary);
  font-size: 16px;
  font-weight: 600;
  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: 64px;
}
.dash-tiles .tile-item h5 
{
  overflow: hidden;
  white-space: nowrap;
}
.tile-item h6 {
  font-size: 20px;
  color: var(--primary);
  font-weight: 600;
  padding-left: 65px;
}

.small .tile-item h6 {
    font-size: 16px;
}
.subject-wise {
  padding: 0px 0px 0px 30px;
}
.subject-item {
  float: left;
  /* margin-bottom: 1px; */
  background: var(--bg);
  width: calc(100%);
  padding: 7px 20px 7px;
  border-radius: 10px;
  height: 56px;
}
.subject-item h5 {
  width: 50%;
  float: left;
  padding-right: 10px;
  overflow: hidden;
  max-height: 30px;
}
.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: #a1afc0;
  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 lightgray;
  font-size: 10px;
  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: 0px 20px 0px 10px;
}
.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;
}
.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 20px 10px 25px;
}
.exam-scores .exam-scores-item {
  border-radius: 12px;
  float: left;
  background: #953e8e;
  margin: 5px 5px;
  width: calc(25% - 10px);
  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);
}
.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: -webkit-linear-gradient(22deg, #854086, #fd60af 106%); */
  /* 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: calc(25%);
  height: calc(100%);
  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%;
}
.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: 56px;
  padding-top: 10%;
  position: relative;
  /* float: left; */
  width: 100%;
  background: var(--bg);
  min-height: 176px;
  border-radius: 10px;
  color: var(--font-light);
}
.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;
}
.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: 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;
}
.activities .ask-expert i {
  float: right;
  font-size: 34px;
  margin-top: -26px;
  background: var(--bg);
  position: -webkit-sticky;
}
.activities .ask-expert h4 {
  padding: 0 10px;
  margin: 10px 0px 5px;
}
.activities .ask-expert p {
  padding: 0 10px;
  color: #979797;
}
.activities-item {
  background: transparent;
  width: 100%;
  float: left;
  border-top: 1px solid lightgray;
  padding: 10px;
  margin-top: 10px;
  text-align: left;
  padding-bottom: 0;
  border-color: var(--br-color);
}
.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;
}
.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(--primary);
}
.activities-item span i {
  margin-right: 10px;
}
.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: var(--br-thinkness) solid var(--lbr-color);}
/* colors */
.color-easy {
  color: #378437;
}
.color-average {
  color: #de9206;
}
.color-difficult {
  color: #c50303;
}
.Physics-bg {
  background: #77bcc8;
}
.Chemistry-bg {
  background: #1996d5;
}
.Mathematics-bg {
  background: #f4c46a;
}
.Biology-bg {
  background: #f05a43;
}
.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 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: var(--bg);
  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);
  }

  .small-menu .left-panel {
    width: 75px;
    background: var(--primary);
    background: -webkit-linear-gradient(322deg, var(--bg-primary), var(--bg-secondary) 100%);
    border-right-width: .1px;
    border-right-style: solid;
    border-right-color: var(--br-color);
  }
  .small-menu .menu_item h5 {
    display: none;
  }
  .small-menu .right-panel {
    width: calc(100% - 75px);
    margin-left: 75px;
  }
  .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:.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% - 15px);
  }
  .side-open .left-widget {
    max-width: 35%;
    column-count: 1;
  }
  .side-open .left-widget .examitem {
    max-width: 500px;
    width: 100%;
  }
  .hide-d {
    display: none;
  }
}
@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: .4s ease-in-out transform, .4s ease-in-out box-shadow;
}
@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(.9, .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
}
@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: 0;
    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: 20px 0;
  }
  .chapter-selection .side-list {
    width: 100%;
    max-width: 100%;
  }
  .full-div {
    background: var(--full-div);
    overscroll-behavior: contain;
    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;
    margin: 0;
    height: 49px;
    float: left;
    width: 20%;
  }
  .menu_item span {
    padding: 0;
    margin: auto;
    float: left;
    width: 100%;
    text-align: center;
    height: 26px;
    margin-top: 9px;
    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%;
  }
  .dashboard .page-header,
  .home .page-header {
    width: 100%;
    background: var(--dash);
    box-shadow: 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: 58px;
  }
  .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: 71px;
    top: auto;
    left: auto;
    margin: auto;
    right: 10px;
    border-radius: 17px;
    padding: 10px;
  }
  .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;
  }
  .dash-tiles, .line-chart, .subject-wise, .weak-performance, .exam-scores, .dash-banner, #dashboard-panel .weak-performance,.tutorial {
    padding: 10px;
    width: 100%;
  }

.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: calc(50% - 5px);
  }
  .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: 20px;
    margin-left: 8px;
    margin-top: 20px;
}
  .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: -36px;
  }
  .day.sub
  {
    margin-left: -31px;
    width: 20px;
    height: 20px;
    color: transparent;
    margin-top: 15px;
  }
  .study-plan-item .det {
      width: calc(100% - 50px);
      float: left;
      padding-left: 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: 70%;
    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:180px; */
    height: 100%;
    max-width: 200px;
    min-width: 100px;
    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% - 40px);
    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-secondary) 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: 10px;
  }
  .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 {
    max-width: 200px;
    margin-bottom: 20px;
    white-space: nowrap;
    overflow: auto;
    padding: 5px 20px;
  }
  .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;
  }
  .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;
  }
  .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;
  }
  .open-session.open {
    display: inherit;
  }
  .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% - 59px);
    float: left;
    position: fixed;
    right: 0;
    height: calc(100% - 157px);
    top: 155px;
    overflow: auto;
    padding-right: 10px;
    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: 155px;
    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: 1;
    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;
  }
}