@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
  padding: 0px;
  margin: 0px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  padding: 0px;
  margin: 0px;
  font-family: "Montserrat", sans-serif;
}

a {
  text-decoration: none !important;
  outline: none !important;
}

img {
  border: none;
}

:root {
  --primary-color: #030F23;
  --filter-btn: #101949;
}

p:last-child {
  margin-bottom: 0;
}

/*LOGIN-SECTION*/
.login-wrap {
  width: 100%;
  height: 100vh;
  background: var(--primary-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.login-in {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: var(--primary-color);
  overflow: hidden;
}

.login-logo {
  -webkit-box-flex: 50%;
  -ms-flex: 50%;
  flex: 50%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 25px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.logo {
  width: 100%;
  height: auto;
  text-align: center;
}

.logo img {
  width: 280px;
  height: 100%;
}

.login-logo h1 {
  font-size: 40px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  margin-bottom: 10px;

  small {
    font-size: 24px;
  }
}

.login-form {
  -webkit-box-flex: 50%;
  -ms-flex: 50%;
  flex: 50%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.24)), to(rgba(0, 0, 0, 0.24)));
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0.24) 0%, rgba(0, 0, 0, 0.24) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.24) 0%, rgba(0, 0, 0, 0.24) 100%);
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0px 7rem;
}

.login-form form {
  width: 100%;
  height: auto;
  padding: 2rem 1.5rem;
  border-radius: 20px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.login-form form h1 {
  color: #000;
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 0;
}

.login-form form hr {
  width: 100%;
  height: 1px;
  background-color: #C4C4C4;
  border: none;
  opacity: 1;
  margin: 1.5rem 0 1.5rem 0;
}

.login-lbl {
  width: 100%;
  height: 45px;
  margin-bottom: 1.2rem;
  border-radius: 8px !important;
  border: none;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.login-lbl img {
  width: 20px;
  height: auto;
  position: absolute;
  left: 15px;
}

.login-txt {
  width: 100%;
  height: 100%;
  border: none;
  background: #F2F2F2;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  padding: 0px 45px 0px 50px;
  outline: none;
}

.login-txt::-webkit-input-placeholder {
  color: #7A7A7A;
}

.login-txt::-moz-placeholder {
  color: #7A7A7A;
}

.login-txt:-ms-input-placeholder {
  color: #7A7A7A;
}

.login-txt::-ms-input-placeholder {
  color: #7A7A7A;
}

.login-txt::placeholder {
  color: #7A7A7A;
}

.password-eye {
  position: absolute;
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  top: auto;
  right: 15px;
  border: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}

.password-eye::-webkit-input-placeholder {
  color: var(--inputclr, #444);
}

.password-eye::-moz-placeholder {
  color: var(--inputclr, #444);
}

.password-eye:-ms-input-placeholder {
  color: var(--inputclr, #444);
}

.password-eye::-ms-input-placeholder {
  color: var(--inputclr, #444);
}

.password-eye::placeholder {
  color: var(--inputclr, #444);
}

.password-eye i {
  color: #C0C0C0;
  cursor: pointer;
}

.password-eye .fa-eye-slash:before {
  content: '';
  width: 20px;
  height: 20px;
  display: block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../images/login-page/icons/eye-close.svg);
}

.password-eye .fa-eye:before {
  content: '';
  width: 20px;
  height: 20px;
  display: block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../images/login-page/icons/eye-open.svg);
}

.rembr-me {
  font-family: var(--secondary-font);
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  padding-right: 1rem;
}

.rembr-me input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
  border: 1px solid #3182CE;
  accent-color: #3182CE;
  border-radius: 10px;
}

.login-btn {
  width: 100%;
  height: auto;
  color: #fff;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 8px;
  background: #3182CE;
  text-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  padding: 0.8rem 5rem;
}

/*LOGIN-SECTION*/

/*LOGIN-SUCC-SECTION*/

#login-succ .modal-dialog {
  max-width: 380px;
  height: 100%;
  margin: 0rem auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#login-succ .modal-content {
  border-radius: 20px;
  background: #FFF;
}

#login-succ .logout-in h1 {
  font-weight: 600;
  font-size: 24px;
  margin: 0px 0 25px 0;
  color: #000;
}

#login-succ .logout-in img {
  width: 80px;
  -webkit-box-shadow: 0px 0px 10px 0px #00000040;
  box-shadow: 0px 0px 10px 0px #00000040;
  border-radius: 50%;
}

#login-succ .logout-in p {
  font-size: 16px;
  color: #000;
  font-weight: 500;
  text-align: center;
  margin: 20px 0;
}

#login-succ .logout-in-btn {
  border: none;
  padding: 0.6rem 6rem;
  color: #fff !important;
  font-size: 15px;
  font-weight: 500;
  border-radius: 10px;
  background: #3182CE;
}

#login-succ .modal-body {
  padding: 2rem 1rem;
}

#login-succ .modal-content button.close {
  width: 22px;
  height: 22px;
  opacity: .5;
  background: none;
  border: none;
  outline: none;
  position: absolute;
  right: 8px;
  top: 8px;
  z-index: 99;
}

#login-succ .modal-content button.close img {
  width: 100%;
  height: 100%;
}

/*LOGIN-SUCC-SECTION*/

/* TABLE-PAGES */

.influ-wrap {
  width: 100%;
  height: auto;
}

.influ-strip {
  background: -webkit-gradient(linear, right top, left top, from(rgba(172, 117, 47, 1)), color-stop(200%, rgba(253, 210, 155, 1)));
  background: -o-linear-gradient(right, rgba(172, 117, 47, 1) 0%, rgba(253, 210, 155, 1) 200%);
  background: linear-gradient(-90deg, rgba(172, 117, 47, 1) 0%, rgba(253, 210, 155, 1) 200%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.influ-logo {

  /*flex-basis: 17%;*/
  width: 229px;
  background: #000;
  padding: 10px 0px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.influ-logo img {
  width: 40px;
  margin-right: 8px;
}

.influ-logo a {
  font-size: 25px;
  color: #B07D3C;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.influ-strip form {
  width: auto;
}

.menu-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 26px;
  margin-left: 15px;
}

.menu-btn:hover {
  color: #fff !important;
}

.influ-in {
  width: 100%;
  height: auto;
  background: #fff;
}

.journal-ledger-wrap {
  padding: 15px;
  height: 100%;
  -webkit-box-shadow: 0px 1px 3px 1px #00000029;
  box-shadow: 0px 1px 3px 1px #00000029;
  background: #fff;
  border-radius: 10px;
}

#content main.journal-ledger-page {
  height: calc(100vh - 60px);
}

#sidebar form .influ-search label {
  border-radius: 10px;
  background-color: #F9FAFB;
  height: 45px;
}

#sidebar form .influ-search label input {
  border-radius: 10px;
  background-color: #F9FAFB;
  color: #000;
  background-image: url(../images/search-icon.svg);
  background-size: 22px;
  background-repeat: no-repeat;
  background-position: center left 10px;
  padding-left: 40px;

  &::placeholder {
    color: #9CA3AF;
  }
}

.influ-search label {
  width: 100%;
  height: 40px;
  margin-bottom: 0 !important;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background: #fff;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  border-radius: 20px;
  border: 1px solid #4A43EC;
}

.influ-search label input {
  width: 100%;
  height: auto;
  position: relative;
  background: #ffffff;
  border: none;
  color: #000;
  padding: 0px 10px 0px 15px;
  font-size: 14px;
  font-weight: 500;
  outline: none;
  border-radius: 30px;
}

.admin-icon {
  height: 100%;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.admin-icon img {
  width: 45px;
  border-radius: 50%;
}

.notification-btn {
  margin-left: auto;

  a {
    display: block;

    img {
      width: 25px;
    }
  }
}


/* DASHBOARD-PAGE */

.top-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.top-head-in {
  width: auto;
  height: auto;
}

.top-head-in h1 {
  font-weight: 600;
  font-size: 24px;
  color: #111827;
}

.top-head-in p {
  font-weight: 500;
  font-size: 14px;
  color: #4B5563;
}

.top-head select {
  padding: 10px 40px 10px 10px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 14px;
  color: #4126A8;
  appearance: none;
  background-image: url(../images/dropdown-icon.svg);
  background-repeat: no-repeat;
  background-position: center right 10px;
  background-size: 18px;
  border-color: #4126A8;
  outline: none;
}

.progress-grid {
  margin-top: 30px;
}

.progress-grid-in.ms-0 {
  background: linear-gradient(135deg, #4126A8 0%, #1B0866 100%);

  h2 {
    color: #fff;
  }

  h3 {
    color: #fff;
  }

  a {
    color: #EAE8F3;
  }
}

.progress-grid-in {
  padding: 25px 30px;
  border: 1px solid #E5E7EB;
  border-radius: 15px;
  margin-left: -20px;
  background: #fff;
  height: 100%;

  p {
    color: #4126A8;
    font-weight: 500;
    font-size: 14px;
  }
}

.progress-grid-in h2 {
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #000000;
}

.progress-grid-in h2 img {
  width: 45px;
}

.progress-grid-in h3 {
  font-weight: 500;
  font-size: 40px;
  color: #111827;
  margin: 10px 0;
}

.progress-grid-in a {
  font-weight: 400;
  font-size: 16px;
  color: #4B5563;
  display: flex;
  align-items: center;
  gap: 10px;
}

.subjects-lesson-progress {
  margin: 40px 0 0px 0;
}

.my-subjects {
  width: 100%;
  height: auto;
  border: 1px solid #E5E7EB;
  padding: 20px;
  border-radius: 10px;
  margin-top: 25px;
}

.my-subjects-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.my-subjects-head h3 {
  margin: 0;
  display: flex;
  gap: 10px;
  font-weight: 500;
  font-size: 18px;
  align-items: center;
  color: #000000;

  img {
    width: 30px;
  }
}

.my-subjects-head a {
  color: #4126A8;
  font-weight: 500;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.my-subjects-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 15px;
}

.my-subjects-itm {
  width: 100%;
  height: auto;
  border: 1px solid #E5E7EB;
  padding: 15px;
  border-radius: 10px;
}

.my-subjects-itm-head {
  width: 100%;
  display: flex;
  margin-bottom: 20px;
  align-items: flex-start;
  justify-content: space-between;
}

.my-subjects-itm-head h4 {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  font-size: 18px;

  img {
    width: 31px;
  }
}

.my-subjects-itm-head span {
  color: #4B5563;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 13px;

  b {
    color: #000;
    font-weight: 600;
    font-size: 16px;
  }
}

.my-subjects-itm ul {
  padding: 0;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 15px;

  li {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;

    p {
      margin: 0;
      font-weight: 500;
      font-size: 16px;
      display: flex;
      align-items: center;
      gap: 10px;
      color: #000000;

      img {
        width: 22px;
      }
    }

    span {
      font-weight: 500;
      font-size: 16px;
      color: #000000;

      &.completed {
        color: #16A34A;
      }

      &.incomplete {
        color: #F28100;
      }

      &.locked {
        color: #9CA3AF;
      }

      &.available {
        color: #4126A8;
      }
    }
  }
}

.my-subjects-itm a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(92.08deg, #4126A8 12.97%, #1B0866 103.35%);
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  gap: 10px;
  padding: 10px 0px;
  border-radius: 10px;

  &.completed-cta {
    background: #16A34A;

    img {
      filter: brightness(0) invert(1);
      width: 20px;
    }
  }
}

.my-subjects-itm .progress {
  background: #D9D9D9;
  border-radius: 20px;
  height: 12px;
}

.my-subjects-itm .progress .progress-bar {
  background: #16A34A;
  border-radius: 20px;
  position: relative;

  &::before {
    position: absolute;
    content: '';
    background-color: #fff;
    width: 8px;
    height: 8px;
    right: 2px;
    border-radius: 50%;
  }
}

.lesson-progress {
  width: 100%;
  margin-top: 15px;
}

.lesson-progress h4 {
  font-weight: 500;
  font-size: 45px;
  color: #111827;
  display: flex;
  align-items: center;
  gap: 15px;

  span {
    background: #4126A8;
    width: 18px;
    height: 18px;
    display: block;
    border-radius: 50%;
  }
}

.lesson-progress p {
  font-weight: 500;
  font-size: 16px;
  color: #4126A8;
  margin-bottom: 40px;
}

.earned-certi-grid {
  width: 100%;
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 15px;
}

.earned-certi-itm {
  width: 100%;
  height: auto;
  border: 1px solid #E5E7EB;
  padding: 15px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.earned-certi-itm img {
  width: 60px;
  margin-bottom: 20px;
}

.earned-certi-itm h5 {
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  color: #4126A8;
  margin-bottom: 15px;
}

.earned-certi-itm p {
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  margin-bottom: 5px;
  color: #4B5563;
}

.earned-certi-itm a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(92.08deg, #4126A8 12.97%, #1B0866 103.35%);
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  padding: 10px 30px;
  border-radius: 10px;
  width: 100%;
  margin-top: 15px;

  img {
    width: 30px;
    margin: 0;
  }
}

/* DASHBOARD-PAGE */

/* ALL-SUBJECTS-PAGE */

.subjects-lesson-progress.all-subjects .my-subjects-grid.mt-0 {
  grid-template-columns: 1fr 1fr 1fr;
}

/* ALL-SUBJECTS-PAGE */


/* BASELINE-ASSESSMENT-PAGE */

.baseline-ass-wrp {
  width: 100%;
  height: auto;
}

.back-btn {
  width: fit-content;

  a {
    display: inline-flex;
    font-weight: 500;
    font-size: 14px;
    background: linear-gradient(92.08deg, #4126A8 12.97%, #1B0866 103.35%);
    color: #FFFFFF;
    padding: 12px 30px;
    gap: 10px;
    border-radius: 10px;
  }
}

.baseline-ass-in {
  background: #F5F3FE;
  border: 1px solid #4126A8;
  padding: 20px;
  margin-top: 25px;
  border-radius: 15px;
}

.baseline-ass-in h1 {
  font-weight: 500;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #000;

  span {
    color: #000;
    font-weight: 500;
    font-size: 16px;
    display: flex;
    gap: 6px;
    align-items: center;

    &.tag {
      color: #4126A8;
      background: #FFFFFF;
      padding: 8px 20px;
      border-radius: 30px;

      img {
        width: 20px;
      }
    }
  }
}

.baseline-ass-in p {
  font-weight: 500;
  font-size: 16px;
  color: #4B5563;
}

.baseline-ass-in h5 {
  font-weight: 500;
  font-size: 14px;
  display: flex;
  color: #000;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;

  span {
    font-weight: 500;
    font-size: 14px;
    color: #16A34A;
  }
}

.baseline-ass-in .progress {
  background: #F0FDF4;
  border-radius: 20px;
  height: 15px;
  border: 1px solid #16A34A;
}

.baseline-ass-in .progress .progress-bar {
  background: #16A34A;
  border-radius: 0;
  position: relative;
}

.baseline-ass-q-a {
  width: 100%;
  height: auto;
  padding: 25px 20px;
  margin-top: 20px;
  border: 1px solid #E5E7EB;
  background: #fff;
  border-radius: 15px;
  display: grid;
  gap: 15px;
  grid-template-columns: 1fr 1fr;

  h2 {
    font-weight: 600;
    font-size: 18px;
    color: #000000;
    margin-bottom: 10px;
    grid-column: 1 / -1;
  }

  label {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 20px;
    border: 1px solid #E5E7EB;
    padding: 20px 20px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;

    &:hover {
      background: linear-gradient(90.45deg, #4126A8 7.06%, #1B0866 100.52%);
      color: #fff;
    }

    &:hover [type="radio"] {
      outline-color: #fff;
    }

    input[type="radio"] {
      width: 10px;
      height: 10px;
      outline: 2px solid #4126A8;
      outline-offset: 4px;
      appearance: none;
      border-radius: 50%;

      &:checked {
        background-color: #fff;
        outline-color: #fff;
      }
    }
  }

  label:has(input[type="radio"]:checked) {
    background: linear-gradient(90.45deg, #4126A8 7.06%, #1B0866 100.52%);
    color: #fff;
  }
}


.bottom-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}

a.previous-cta,
a.next-cta,
.finish-cta {
  font-weight: 500;
  font-size: 14px;
  color: #9CA3AF;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #E5E7EB;
  padding: 12px 24px;
  border-radius: 10px;
}

a.previous-cta {
  background: #fff;
  color: #4126A8;
  border-color: #4126A8;
}

a.next-cta {
  background: linear-gradient(92.08deg, #4126A8 12.97%, #1B0866 103.35%);
  color: #fff;
}

.finish-cta {
  background: linear-gradient(92.08deg, #4126A8 12.97%, #1B0866 103.35%);
  color: #fff !important;
}

a.disabled {
  background: #E5E7EB;
  color: #9CA3AF;
  border: none;
}

.baseline-ass-wrp.asse-complete .baseline-ass-in.mt-0 {
  padding: 30px 20px;

  h1.mb-0 {
    justify-content: flex-start;
    gap: 20px;

    span {
      margin-left: auto;
    }
  }
}

.baseline-ass-wrp .baseline-ass-q-a {
  border-color: #4126A8;
}

.baseline-ass-wrp.asse-complete .baseline-ass-q-a h2 {
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;

  img {
    width: 22px;
  }
}

.asse-complete-q-a {
  width: 100%;
  height: auto;
  background: #F5F3FE;
  border: 1px solid #4126A8;
  padding: 20px;
  border-radius: 15px;

  h4 {
    font-weight: 500;
    font-size: 17px;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 15px;

    img {
      width: 25px;
    }
  }

  p {
    font-weight: 500;
    font-size: 16px;
    padding-left: 55px;
    color: #4126A8;

    span {
      color: #4B5563;
    }
  }
}

.baseline-ass-wrp .sub-detail-top {
  background: #F5F3FE;
  border-color: #4126A8;
}

.baseline-ass-wrp.asse-complete .baseline-ass-q-a {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.baseline-ass-wrp.asse-complete .sub-detail-top .sub-pro.mb-2 {
  position: relative;
}

.baseline-ass-wrp.asse-complete .sub-detail-top .sub-pro.mb-2 h1.mb-0 {
  flex-direction: column;
  align-items: center;
  font-weight: 500;
  font-size: 16px;
  gap: 10px;
  position: absolute;
  right: 0;

  span {
    background-color: #16A34A;
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
  }
}

/* BASELINE-ASSESSMENT-PAGE */


/* SUBJECT-DETAIL-PAGE */

.sub-detail-top {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  border: 1px solid #E5E7EB;

  h1 {
    font-weight: 500;
    font-size: 24px;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    color: #000;

    span {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      font-weight: 500;
      font-size: 14px;
      color: #4B5563;
      gap: 2px;

      b {
        font-weight: 700;
        font-size: 24px;
        color: #16A34A;
      }

      &.tag {
        color: #4126A8;
        background: #FFFFFF;
        padding: 8px 20px;
        border-radius: 30px;
        flex-direction: row;
        align-items: center;
        gap: 5px;
      }
    }
  }

}

.sub-pro {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 12px;

  p {
    font-weight: 500;
    font-size: 15px;
    color: #4B5563;
    margin-bottom: 0;
  }
}

.sub-pro .progress {
  width: 20%;
  background: #F0FDF4;
  border-radius: 20px;
  height: 12px;
  border: 1px solid #16A34A;
}

.sub-pro .progress .progress-bar {
  background: #16A34A;
  border-radius: 0;
  position: relative;
}

.sub-detail-top ul {
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-start;
  gap: 15px;

  li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    font-size: 15px;
    color: #4126A8;

    &:last-child {
      margin-left: auto;
      color: #4B5563;
    }

    img {
      width: 20px;
    }
  }
}

.sub-lessons-list {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  border: 1px solid #E5E7EB;
  margin-top: 25px;

  h3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 500;
    font-size: 24px;
    color: #4126A8;
    margin-bottom: 20px;

    a {
      display: inline-block;
      font-weight: 500;
      font-size: 14px;
      color: #fff;
      padding: 12px 24px;
      border-radius: 10px;
      border: 1px solid #4B5563;
      background: linear-gradient(92.08deg, #4126A8 12.97%, #1B0866 103.35%);

      &.disabled {
        background: #E5E7EB;
        border: 1px solid #4B5563;
        color: #4B5563;
        pointer-events: none;
      }
    }
  }
}

.sub-lessons-list-in {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  gap: 50px;
  background: #fff;
  padding: 25px 15px;
  border-radius: 15px;
  border: 1px solid #E5E7EB;
  position: relative;
  margin-bottom: 20px;

  &:hover,
  &.active {
    border: 1px solid #4126A8;
    background: #F5F3FE;
  }

  &:hover a {
    text-decoration: underline !important;
  }
}


.lesson-num-ico {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;

  span {
    display: flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    background: #4126A8;
    color: #fff;
    border-radius: 50%;
    font-weight: 500;
    font-size: 16px;
  }

  img {
    width: 30px;
  }
}

.lesson-data {
  width: auto;

  h2 {
    font-weight: 500;
    font-size: 17px;
    margin-bottom: 15px;
    color: #000;

    a {
      color: #000;
    }
  }

  p {
    font-weight: 500;
    font-size: 15px;
    color: #4B5563;
  }

  /* span {
    color: #4126A8;
    font-weight: 500;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
  } */
}

.sub-lessons-list-in .status {
  margin-left: auto;
  font-weight: 500;
  font-size: 15px;
  color: #000000;
  border: 1px solid #9CA3AF;
  background: #E5E7EB;
  padding: 8px 20px;
  border-radius: 40px;
  min-width: 140px;
  text-align: center;

  &.completed {
    background-color: #16A34A;
    color: #FFFFFF;
    border-color: #16a34a;
  }

  &.reviewagain {
    background-color: #FFEAEA;
    color: #F28100;
    border-color: #F28100;
    display: flex;
    gap: 10px;
    align-items: center;

    img {
      width: 20px;
    }
  }

  &.retake {
    background-color: #F28100;
    border: none;
    color: #fff;
  }

  &.in-progress {
    background-color: #F59F0A;
    border-color: #F59F0A;
    color: #fff;
  }
}

.baseline-ass-wrp.asse-complete.summative .baseline-ass-in.mt-0 h1.mb-0 span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;

  b {
    display: flex;
    font-weight: 500;
    font-size: 15px;
    align-items: center;
    gap: 5px;
    padding: 10px 12px;
    min-width: 150px;
    background: #16A34A;
    border-radius: 30px;
    color: #FFFFFF;
    justify-content: center;

    &.reviewagain {
      background-color: #F28100;
    }

    img {
      width: 20px;
      filter: brightness(0) invert(1);
    }
  }
}

.baseline-ass-wrp.asse-complete.summative .baseline-ass-in.mt-0 h1.mb-0 p {
  color: #000;
}

.baseline-ass-wrp.asse-complete.summative .baseline-ass-in.mt-0 h1.mb-0 p {
  font-weight: 500;
  font-size: 20px;
  display: flex;
  align-items: flex-start;
  color: #000;
  flex-direction: column;
  max-width: 60%;
  gap: 8px;
  margin: 0;

  b {
    font-weight: 500;
    font-size: 15px;
    color: #F28100;
  }
}

.sub-detail-wrap .baseline-ass-in {
  background: #fff;
  padding: 10px 20px;
  border-radius: 15px;
  border: 1px solid #E5E7EB;
}

.sub-detail-wrap .baseline-ass-in h1.mb-0 {
  display: flex;
  justify-content: flex-start;
  gap: 20px;

  a {
    color: #000;
  }
}

.sub-detail-wrap .baseline-ass-in h1.mb-0 span {
  margin-left: auto;
  background-color: #16A34A;
  color: #fff;
  padding: 8px 20px;
  border-radius: 30px;
  min-width: 150px;
  justify-content: center;

  &.locked {
    background: #E5E7EB;
    color: #4B5563;
    border: 1px solid #9CA3AF;
  }

  &.reviewagain {
    background-color: #F28100;
  }
}

.sub-lessons-list-in-ryt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  margin-left: auto;

  span {
    color: #4126A8;
    font-weight: 500;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
  }
}

/* SUBJECT-DETAIL-PAGE */

/* SUMMATIVE-ASSESSMENT-PAGE */

.download-certificate {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  border: 1px solid #E5E7EB;
  margin-top: 25px;

  h4 {
    font-weight: 500;
    font-size: 24px;
    color: #000;
    margin-bottom: 15px;
  }
}

.download-certificate-in {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  border: 1px solid #E5E7EB;
  margin-top: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;

  h5 {
    display: flex;
    align-items: center;
    gap: 20px;

    img {
      width: 70px;
    }

    span {
      display: flex;
      font-weight: 600;
      font-size: 18px;
      flex-direction: column;
      gap: 5px;
      color: #000000;

      b {
        font-weight: 500;
        color: #4B5563;
        font-size: 16px;
      }
    }
  }

  a {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #4126A8;
    background: #FFFFFF;
    color: #4126A8;
    padding: 10px 15px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 16px;

    &:hover {
      background-color: #4126A8;
      color: #fff;

      img {
        filter: brightness(0) invert(1);
      }
    }
  }
}

.baseline-ass-wrp.asse-complete.summative .bottom-cta a.retake-cta {
  font-weight: 500;
  font-size: 14px;
  color: #4126A8;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #4126A8;
  padding: 12px 24px;
  border-radius: 10px;
}

.baseline-ass-wrp.asse-complete.summative .baseline-ass-in.mt-0 {
  padding: 15px 20px;
}

/* SUMMATIVE-ASSESSMENT-PAGE */

/* PROFILE-SETTINGS-PAGE */

.personal-info {
  width: 100%;
  box-shadow: -10px 48.6px 140px 0px #146CBE12;
  backdrop-filter: blur(20px);
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  border: 1px solid #E5E7EB;

  h2 {
    font-weight: 500;
    font-size: 24px;
    color: #000;
    margin-bottom: 20px;
  }

  h4 {
    font-weight: 600;
    font-size: 16px;
    color: #4126A8;
    line-height: 25px;
    margin-bottom: 30px;

    span {
      font-weight: 500;
      font-size: 14px;
      color: #676767;
    }
  }
}

.personal-info form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 25px;
}

.personal-info form .form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.personal-info form .form-group label {
  font-weight: 600;
  font-size: 16px;
  color: #252525;
}

.personal-info form .form-group input[type="text"] {
  width: 100%;
  height: 40px;
  padding: 10px;
  border: 1px solid #6A6A6A;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  color: #4B5563;
  outline: none;
}
.personal-info form .form-group input[type="email"] {
  width: 100%;
  height: 40px;
  padding: 10px;
  border: 1px solid #6A6A6A;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  color: #4B5563;
  outline: none;
}

.personal-info form .form-group input[type="submit"] {
  width: fit-content;
  padding: 12px 24px;
  font-weight: 500;
  font-size: 14px;
  border-radius: 10px;
  outline: none;
  border: none;
  background: linear-gradient(92.08deg, #4126A8 12.97%, #1B0866 103.35%);
  color: #fff;
}

.personal-info a {
  display: flex;
  background: linear-gradient(92.08deg, #4126A8 12.97%, #1B0866 103.35%);
  padding: 12px 10px;
  justify-content: center;
  gap: 10px;
  font-weight: 500;
  font-size: 16px;
  border-radius: 10px;
  color: #fff;
  align-items: center;
}

/* PROFILE-SETTINGS-PAGE */


/* PROGRESS-&-SCORE-PAGE */

.my-subjects table {

  width: 100%;
}

.my-subjects table tr {
  border-bottom: 1px solid #E5E7EB;

  &:last-child {
    border-bottom: 0;
  }
}

.my-subjects table th {
  font-weight: 600;
  font-size: 16px;
  padding: 10px 8px;
  color: #000;
}

.my-subjects table td {
  font-weight: 500;
  font-size: 15px;
  padding: 10px 8px;
  color: #000;
}

.my-subjects table td button.lessons-btn {
  background: none;
  border: 0;
  margin-left: 5px;
  outline: none;

  &.active {
    transform: rotate(180deg);
  }
}

.prog {
  display: flex;
  align-items: center;
  gap: 15px;
}

.prog .progress {
  width: 40%;
  background: #D9D9D9;
  border-radius: 20px;
  height: 15px;
}

.prog .progress .progress-bar {
  background: #16A34A;
  border-radius: 20px;
  position: relative;

  &::before {
    position: absolute;
    content: '';
    background-color: #fff;
    width: 9px;
    height: 9px;
    right: 3px;
    border-radius: 50%;
  }
}

.my-subjects table td .status {
  background: #16A34A;
  color: #fff;
  display: inline-block;
  padding: 6px 20px;
  border-radius: 30px;
  font-weight: 400;
  font-size: 14px;
  min-width: 130px;
  text-align: center;

  &.review {
    background-color: #F28100;
  }
}

.my-subjects table td a {
  color: #4126A8;
  font-weight: 500;
  font-size: 14px;
}

.chart-wrap {
  padding-bottom: 2rem;
}

.chart-in {
  display: flex;
  gap: 15px;
  flex-wrap: nowrap;
  align-items: center;
  margin-bottom: 50px;
  /* overflow-x: auto; */
  /* overflow-y: auto; */
}

.chart-in p.performance-text {
  text-orientation: mixed;
  writing-mode: sideways-lr;
  margin: 0;
  font-weight: 500;
  font-size: 14px;
  color: #4B5563;
}

.chart-in-percent-grp {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 60px;
  position: relative;

  &::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 100%;
    left: 5%;
    bottom: 0;
    background-color: #D9D9D9;
  }
}

.chart-in-percent {
  display: flex;
  justify-content: flex-start;
  font-weight: 400;
  font-size: 16px;
  gap: 20px;
  color: #000;
  align-items: center;
  position: relative;

  hr {
    width: 100%;
    color: #D9D9D9;
    opacity: 1;
    border-width: 3px;
    margin: 0;
  }

  span {
    min-width: 35px;
    text-align: center;
    position: absolute;
    background: #fff;
  }
}

.chart-bar-grp {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: auto;
  height: 100%;
  display: flex;
  flex-wrap: nowrap;
  gap: 2rem;
  justify-content: center;
  margin: auto;
  margin-left: 5rem;
}

.chart-bar-grp .chart-bar-in:last-child .hover-data {
  right: 110px;
  left: inherit;
  border-radius: 10px 10px 0px 10px;
}

.chart-bar-grp .chart-bar-in:last-child .hover-data .hover-data-in::before {
  right: -1px;
  left: inherit;
  transform: rotateY(190deg);
}



.chart-bar-in {
  display: flex;
  flex-wrap: nowrap;
  position: relative;

  &:hover .hover-data {
    visibility: visible;
    transition: .1s;
  }
}

.chart-bar-in .hover-data {
  top: 0;
  left: 15px;
  position: absolute;
  z-index: 1;
  background: #FFFFFF;
  border: 1px solid #4126A8;
  border-radius: 10px 10px 10px 0px;
  width: max-content;
  visibility: hidden;
  transition: .1s;
}

.hover-data-in {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  padding: 15px;

  &::before {
    position: absolute;
    content: '';
    left: -1px;
    bottom: -14px;
    width: 15px;
    height: 15px;
    background-image: url(../images/corner-shape.svg);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 0;
  }

  p {
    margin-bottom: 0;
    font-weight: 500;
    font-size: 13px;
    color: #4126A8;
    display: flex;
    align-items: center;
    gap: 10px;

    span {
      width: 12px;
      height: 12px;
      display: block;
      border-radius: 50%;
    }
  }
}


.bar-wrp {
  width: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: flex-end;
  gap: 5px;
  position: relative;
}

.bar-wrp .bar {
  width: 100%;
  border-radius: 10px 10px 0px 0px;
}

.bar-wrp span {
  font-weight: 500;
  font-size: 16px;
  color: #000;
  position: absolute;
  bottom: -30px;
}

p.activity-text {
  margin: 0;
  font-weight: 500;
  font-size: 14px;
  color: #4B5563;
  text-align: center;
}

.chart-wrap ul {
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-evenly;
  margin-top: 30px;

  li {
    font-weight: 400;
    font-size: 16px;
    list-style: none;
    display: flex;
    color: #000;
    align-items: center;
    gap: 8px;

    span {
      width: 15px;
      height: 15px;
      display: block;
      border-radius: 50%;
    }
  }
}

.my-subjects .top-head a.details-cta {
  background: linear-gradient(92.08deg, #4126A8 12.97%, #1B0866 103.35%);
  padding: 11px 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 10px;
  font-weight: 500;
  font-size: 14px;
  color: #fff;

  img {
    width: 20px;
  }
}

/* PROGRESS-&-SCORE-PAGE */


/* LESSON-DETAIL-PAGE */

.less-details {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  border: 1px solid #E5E7EB;

  h1 {
    font-weight: 500;
    font-size: 24px;
    margin-bottom: 20px;
    color: #000;
  }
}

.less-details-in {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  border: 1px solid #E5E7EB;

  h2 {
    font-weight: 500;
    font-size: 24px;
    margin-bottom: 20px;
    color: #4126A8;
  }

  p {
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 10px;
  }
}

.less-details hr {
  border-color: #E5E7EB;
  opacity: 1;
}

.less-details-in video {
  border-radius: 15px;
  height: 600px;
  object-fit: cover;
}

.less-details-in .baseline-ass-q-a {
  padding: 0;
  border: 0;

  &.b-line {
    grid-template-columns: 1fr;
  }
}

.less-details-in img {
  width: 100%;
  border-radius: 15px;
  height: 600px;
  object-fit: cover;
  margin-bottom: 20px;

  &:last-child {
    margin-bottom: 0;
  }
}

/* LESSON-DETAIL-PAGE */


/* ASSESSMENT-RESULT-SECTION */

.assessment-result {
  width: 100%;
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  margin-top: 20px;
  border: 1px solid #E5E7EB;

  h6 {
    font-weight: 500;
    font-size: 24px;
    margin-bottom: 20px;
    color: #4126A8;
  }
}

.sub-lessons-list-in.drop-btn {
  padding: 15px 20px;
  margin-bottom: 0;
}

.sub-lessons-list-in.drop-btn .lesson-data h2 button {
  margin-left: 2rem;
  background: none;
  border: none;
  transition: .5s;

  &.active i {
    transform: rotate(180deg);
    transition: .5s;
  }

  i {
    transform: rotate(0deg);
    transition: .5s;
  }
}

.assessment-result .baseline-ass-q-a {
  grid-template-columns: 1fr;

  h2 {
    font-weight: 500;

    img {
      width: 20px;
      margin-right: 5px;
    }
  }
}

.assessment-result .baseline-ass-q-a .asse-complete-q-a {
  background: none;
  padding: 0;
  border: none;
  margin-bottom: 10px;

  &:last-child {
    margin-bottom: 0;
  }

  h4 {
    font-size: 16px;
  }
}

.sub-lessons-list-in.drop-btn .start-quiz-cta {
  margin-bottom: auto;

  a {
    background: linear-gradient(92.08deg, #4126A8 12.97%, #1B0866 103.35%);
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 20px;
    border-radius: 10px;
    text-decoration: none !important;
    display: block;
  }
}

/* ASSESSMENT-RESULT-SECTION */

