@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

* {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  color: #464646;
  background: #FFFFFF;
  overflow-x: hidden;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin: 0;
  padding: 0;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

a {
  display: inline-block;
  text-decoration: none;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  color: #0b5798;
}

:focus {
  outline: none !important;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

iframe {
  max-width: 100%;
}

label {
  display: inline-block;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
}

button {
  border: none;
  outline: none;
}

textarea {
  width: 100%;
  height: 120px;
  border: 1px solid #5a5a5a;
  outline: none;
  padding: 9px 14px;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  color: #707070;
  border-radius: 0px;
  transition: 0.2s ease all;
  background: #f0f0f0;
  resize: none;
}

[type="text"],
[type="date"],
[type="datetime"],
[type="datetime-local"],
[type="email"],
[type="month"],
[type="number"],
[type="password"],
[type="search"],
[type="tel"],
[type="url"],
[type="week"],
[type="date"],
[type="time"] {
  width: 100%;
  height: 36px;
  border: 1px solid rgba(51, 104, 231, 0.4);
  outline: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: #213143;
  border-radius: 6px;
  transition: 0.2s ease all;
  background: #FFFFFF;
  padding: 0 8px;
}

input::-webkit-input-placeholder {
  color: #213143;
  opacity: 1;
}

textarea::placeholder,
input::placeholder {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: #213143;
  opacity: 1;
}

[type="submit"] {
  border: 1px solid #292929;
  outline: none;
  padding: 13px 25px;
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  text-transform: uppercase;
  color: #292929;
  border-radius: 0px;
  transition: 0.2s ease all;
  background: #fff;
  text-align: center;
  display: inline-block;
}

input[type="time"]::-webkit-calendar-picker-indicator {
  width: 20px;
  height: 20px;
  color: #767A8C;
  cursor: pointer;
  filter: invert(51%) sepia(17%) saturate(342%) hue-rotate(192deg) brightness(90%) contrast(87%);
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

[type="submit"]:hover {
  background: #ea3319;
}

.select-box {
  position: relative;
}

.select-box::after {
  position: absolute;
  bottom: 19px;
  right: 15px;
  content: "\f107";
  font-family: "FontAwesome";
  font-size: 12px;
  line-height: 1;
  color: #000000;
}

.select-box select {
  width: 100%;
  height: 50px;
  background: #FFFFFF;
  border: 1px solid #CCCCCC;
  border-radius: 12px;
  font-size: 15px;
  line-height: 1;
  color: #464646;
  appearance: none;
  padding: 0 15px;
}

p {
  font-size: 14px;
  line-height: 1.333em;
  font-weight: 400;
  margin: 0;
}

.btns {
  font-size: 16px;
  line-height: 1.2em;
  font-weight: 600;
  color: #FFFFFF;
  border-radius: 12px;
  padding: 15px 24px;
}

.primary-btn {
  background: linear-gradient(102.88deg, #FC781A 6.94%, #FFAF0A 69.15%);
}

.primary-btn:hover {
  background: linear-gradient(-102.88deg, #FC781A 6.94%, #FFAF0A 69.15%);
}

.secondary-btn {
  color: #FC791A;
  background: #F9F9F9;
}

.secondary-btn:hover {
  background: #6661ef;
  color: #FFFFFF;
}

.container-fluid {
  max-width: 100%;
  padding: 0 20px;
}

@media (max-width: 500px) {
  .container-fluid{
    padding: 0 0px;
  }
}

@media (min-width: 768px) {
  .container-fluid {
    padding: 0 30px;
  }

  p {
    font-size: 16px;
  }

  .btns {
    font-size: 18px;
  }
}

@media (min-width: 1200px) {
  .container-fluid {
    padding: 0 40px;
  }

  p {
    font-size: 18px;
  }

  .select-box select {
    font-size: 18px;
    height: 64px;
    padding: 14px 24px;
  }

  .select-box::after {
    font-size: 14px;
    bottom: 25px;
    right: 24px;
  }

  .btns {
    font-size: 20px;
    padding: 20px 24px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1366px;
  }
}



/* header start */
.page-header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 99;
  background: #F9FAFC;
  padding-top: 24px;
  padding-bottom: 24px;
}

.header-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.header-left h4 {
  display: none;
}

.logo {
  max-width: 200px;
  border-right: 1px solid rgba(51, 104, 231, 0.4);
  padding-right: 15px;
}

.header-right ul li:last-child a {
  display: none;
}

.header-right ul li a {
  font-size: 14px;
  line-height: 10px;
  font-weight: 500;
  color: #3368E7;
  border: 1px solid rgba(51, 104, 231, 0.4);
  background: rgba(51, 104, 231, 0.15);
  border-radius: 6px;
  padding: 11px 12px;
}

.header-right ul li a i {
  font-size: 12px;
}

@media (min-width: 768px) {
  .header-right ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }

  .header-right ul li:last-child a {
    display: inline-block;
    font-weight: 400;
    color: #213143;
    background: #F0F2F5;
    border-color: rgba(51, 104, 231, 0.2);
    padding: 12px;
  }
}

@media (min-width: 1200px) {
  .header-left {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  .logo {
    max-width: 236px;
  }

  .header-left h4 {
    display: block;
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
    color: #213143;
    padding-left: 16px;
  }

  .header-right ul li a:hover {
    color: #ffffff;
    background: rgba(51, 104, 231, 1);
  }

  .header-right ul li:last-child a:hover {
    color: #213143;
    background: #c5d0e0;
  }
}


/* ============= authentication pages css start ============= */
.auth-pages {
  background: #FFFFFF;
  height: 100vh;
}

.auth-left {
  position: relative;
  z-index: 1;
  height: 47vh;
  background: linear-gradient(360deg, #FFFFFF 0%, #E9DDFF 100%);
  padding: 50px 15px 270px 15px;
}

.auth-left__bg {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  max-height: 560px;
}

.auth-heading {
  text-align: center;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}

.auth-heading h2 {
  font-size: 25px;
  line-height: 1.2em;
  font-weight: 600;
  color: #1A14CB;
  /* color: #47AAF9; */
  margin: 0 0 12px;
  margin-left: 20px;
}

.auth-right {
  height: 53vh;
  /* padding: 15px; */
}

.auth-right-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: #F5F6FD;
  padding: 30px 20px;
}

.auth-right-dot__bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.auth-right-logo {
  margin: 0 0 20px;
}

.auth-right-logo img {
  max-width: 200px;
  margin: 0 auto;
}

.auth-right-title {
  text-align: center;
  margin: 0 0 15px;
}

.auth-right-title h4 {
  font-size: 24px;
  line-height: 1.25em;
  font-weight: 500;
  color: #1A14CB;
}

.auth-right-title p {
  color: #979797;
  margin: 8px 0 0;
}

.auth-form-wrap {
  background: #FFFFFF;
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 30px 25px;
  width: 80% !important;
}

.auth-form-col {
  position: relative;
}

.auth-form-col label {
  display: block;
  font-size: 14px;
  line-height: 16px;
  margin: 0 0 8px;
}

.auth-form-col input {
  height: 50px;
  background: #FFFFFF;
  border: 1px solid #CCCCCC;
  border-radius: 12px;
  padding: 14px 10px;
}

.auth-form-col input[type="tel"] {
  padding: 12px 30px 12px 56px;
}

.auth-form-col input::placeholder {
  font-weight: 400;
  font-size: 15px;
  color: #A8A8A8;
}

.auth-form-col .call-icon {
  display: block;
  position: absolute;
  bottom: 15px;
  left: 15px;
  font-size: 20px;
  line-height: 1;
  color: #F7BA3C;
  padding-right: 11px;
}

.auth-form-col .call-icon::before {
  position: absolute;
  content: "";
  bottom: -9px;
  right: 0;
  width: 1px;
  height: 36px;
  background: #C7C7C7;
}

.auth-form-col .check-icon {
  position: absolute;
  right: 15px;
  bottom: 12px;
  display: block;
  font-size: 22px;
  line-height: 1;
  color: #DDDDDD;
}

.auth-form-submit {
  margin: 15px 0 0;
}

.auth-form-submit button {
  font-size: 15px;
  line-height: 1.2em;
  font-weight: 600;
  text-align: center;
  color: #FFFFFF;
  width: 100%;
  height: 50px;
  padding-top: 17px;
  background: linear-gradient(102.88deg, #FC781A 6.94%, #FFAF0A 69.15%);
  border-radius: 12px;
}

.auth-form-col p {
  color: #979797;
  text-align: center;
  margin: 15px 0 0;
  font-size: 14px;
}

.form-switch-link p {
  text-align: center;
  margin: 20px 0 0;
  font-size: 16px;
}

.form-switch-link p a {
  font-weight: 500;
  color: #FD8217;
  text-decoration: underline;
}

.verification-code {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.verification-code input[type="number"] {
  width: 40px;
  height: 40px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  padding: 5px;
}

.verification-code input[type="number"]::-webkit-outer-spin-button,
.verification-code input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.verification-code input[type="number"] {
  -moz-appearance: textfield;
}

.divider-text {
  position: relative;
  z-index: 1;
  text-align: center;
  width: max-content;
  padding: 0 28px;
  margin: 15px auto 0 auto;
}

.divider-text p {
  display: inline-block;
  background: #FFFFFF;
  padding: 0 12px;
}

.divider-text::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  width: 100%;
  height: 1px;
  background: #C7C7C7;
}

.auth-pages.otp-verification .auth-left {
  height: 44vh;
  padding: 30px 15px 270px 15px;
}

.auth-pages.otp-verification .auth-right {
  height: 56vh;
}

.auth-form-submit.resend-btn button {
  background: #F9F9F9;
  color: #FC791A;
  padding-bottom: 10px;
  transition: 0.3s;
}

.auth-pages.otp-verification .auth-left__bg,
.auth-pages.signup-page .auth-left__bg {
  max-height: 640px;
}

@media (min-width: 768px) {
  .auth-flex {
    display: flex;
    flex-wrap: wrap;
  }

  .auth-left {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 47%;
    height: unset;
    padding: 30% 15px 230px 15px;
  }

  .auth-heading h2 {
    font-size: 26px;
    margin-left: 20px;
  }

  .auth-right {
    width: 53%;
    height: 100vh;
  }

  .auth-right-logo {
    margin: 0 0 26px;
  }

  .auth-right-logo img {
    max-width: 250px;
  }

  .auth-right-title {
    margin: 0 0 20px;
  }

  .auth-right-title h4 {
    font-size: 28px;
  }

  .auth-pages.otp-verification .auth-left {
    height: unset;
    padding: 25% 15px 230px 15px;
  }

  .auth-pages.otp-verification .auth-right {
    height: 100vh;
  }
}

@media (min-width: 1200px) {
  .auth-left {
    width: 48.98%;
    padding: 9.375vw 20px 0 20px;
  }

  .auth-heading h2 {
    font-size: 45px;
    margin-left: 20px;
  }

  .auth-right {
    width: calc(100% - 48.98%);
    padding: 0px;
  }

  .auth-right-inner {
    padding: 0;
  }

  .auth-right-content {
    width: 100%;
    max-width: 620px;
    padding: 0 20px;
  }

  .auth-right-logo img {
    max-width: 325px;
  }

  .auth-right-title h4 {
    font-size: 25px;
  }

  .auth-form-wrap {
    padding: 40px;
  }

  .auth-form-col input {
    font-size: 18px;
    height: 64px;
    padding: 14px 20px;
  }

  .auth-form-col input[type="tel"] {
    padding: 12px 24px 12px 78px;
  }

  .auth-form-col input::placeholder {
    font-size: 18px;
    line-height: 1;
  }

  .auth-form-col .call-icon {
    font-size: 24px;
    bottom: 19px;
    left: 24px;
    padding-right: 15px;
  }

  .auth-form-col .call-icon::before {
    bottom: -6px;
  }

  .auth-form-col .check-icon {
    font-size: 28px;
    bottom: 17px;
  }

  .auth-form-submit {
    margin: 24px 0 0;
  }

  .auth-form-submit button {
    font-size: 20px;
    height: 50px;
    border: none;
  }

  .auth-form-submit button:hover {
    background: linear-gradient(-102.88deg, #FC781A 6.94%, #FFAF0A 69.15%);
  }

  .form-switch-link p a:hover {
    text-decoration: none;
  }


  .auth-pages.otp-verification .auth-left {
    height: unset;
    padding: 9.375vw 20px 0 20px;
  }

  .verification-code {
    gap: 16px;
  }

  .verification-code input[type="number"] {
    width: 64px;
    height: 64px;
    font-size: 24px;
  }

  .auth-pages.otp-verification .auth-right-content {
    max-width: 635px;
  }

  .auth-pages.otp-verification .auth-form-col p {
    margin: 30px 0 0;
  }

  .auth-form-submit.resend-btn button:hover {
    background: #6661ef;
    color: #FFFFFF;
  }
}


@media (max-width: 767px) {
  .auth-pages.signup-page .auth-flex {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
  }

  .auth-pages.create-account .auth-left {
    display: none;
  }

  .auth-pages.create-account .auth-right {
    height: 100vh !important;
  }
}

.auth-pages.signup-page .auth-left {
  height: 30vh;
  padding: 30px 15px 200px 15px;
}

.auth-pages.signup-page .auth-left__bg {
  max-height: 175px;
  object-fit: contain;
}

.auth-pages.signup-page .auth-right {
  height: 70vh;
  overflow-y: auto;
}

.auth-form-submit.with-google button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-bottom: 17px;
  background: #F9F9F9;
  color: #474747;
}

.auth-form-submit.with-google button img {
  max-width: 24px;
}

.auth-pages.create-account .auth-form-col:not(:first-child) {
  margin: 15px 0 0;
}

.auth-pages.create-account .auth-form-col .row {
  gap: 15px 0;
  margin: 0 -8px;
}

.auth-form-inner_col {
  padding: 0 8px;
}

@media (min-width: 768px) {
  .auth-pages.signup-page .auth-left {
    height: unset;
    padding: 18% 20px 20px 20px;
  }

  .auth-pages.signup-page .auth-left__bg {
    max-height: 640px;
  }

  .auth-pages.signup-page .auth-right {
    height: 100vh;
  }
}

@media (min-width: 1200px) {
  .auth-pages.signup-page .auth-left {
    height: unset;
    padding: 9.375vw 20px 20px 20px;
  }

  .auth-pages.signup-page .divider-text {
    margin: 56px auto 0 auto;
  }

  .auth-form-submit.with-google {
    margin: 30px 0 0;
  }

  .auth-form-submit.with-google button:hover {
    background: #000000;
    color: #FFFFFF;
  }

  .auth-form-submit.with-google button img {
    max-width: 100%;
  }
}

/* ============= authentication pages css end ============= */


/* ************ Dashboard styling start ************ */
.dashboard-top {
  position: relative;
  padding: 15px 0 70px 0;
  margin-bottom: -40px;
}

.dashboard-top-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 0 25px 25px;
}

.dashboard-top-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 29%);
  padding: 0 0 6px;
}

.dashboard-logo a {
  display: block;
  max-width: 265px;
}

.wellcome-text {
  padding: 25px 0 0;
}

.wellcome-text h2 {
  font-size: 22px;
  line-height: 0.9090909090909091em;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0 0 12px;
}

.wellcome-text p {
  font-size: 12px;
  line-height: 1.45em;
  color: #FFFFFF;
}

@media (min-width: 768px) {
  .dashboard-top {
    padding: 24px 0 70px 0;
  }

  .dashboard-logo a {
    max-width: 200px;
  }

  .wellcome-text {
    padding: 35px 0 0;
  }

  .wellcome-text h2 {
    font-size: 22px;
  }

  .wellcome-text p {
    font-size: 12px;
  }
}

@media (min-width: 1200px) {
  .dashboard-top {
    padding: 24px 0 100px 0;
    margin-bottom: -50px;
  }

  .dashboard-top-flex {
    padding: 0 0 12px;
  }

  .wellcome-text {
    padding: 48px 0 0;
  }

  .wellcome-text h2 {
    font-size: 22px;
  }

  .wellcome-text p {
    font-size: 16px;
  }
}

/* ---------------- */
.dashboard-content {
  padding: 0 0 45px;
}

.dashboard-item-box {
  /* box-shadow: 0px 12px 28px rgba(0, 0, 0, 0.05); */
  background-color: #f7f7f7;
  border-radius: 8px;
  padding: 18px 12px;
  padding-left: 0px;
}

.dashboard-item-box h5 {
  font-size: 20px;
  line-height: 1.6667em;
  font-weight: 500;
  color: #383838;
  margin: 0 0 12px;
}

@media (max-width:500px){
  .dashboard-item-box h5{
    font-size: 12px;
  }
}

.dashboard-item-flex {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 30px 0;
}

.dashboard-left {
  padding: 0px 20px;
  height: 100%;
}

/* .menu-collapse {
  max-height: 4rem;
  overflow: hidden;
} */

.dashboard-right {
  background-color: #fff;
  padding: 22px;
  border-radius: 12px;
  border: 1px solid #eeeeee;
}

.profile-card {
  position: relative;
  z-index: 1;
  /* background: linear-gradient(180deg, #F5F9FF 26.44%, #F5F9FF 100%); */
  border-radius: 12px;
  /* padding: 0px 15px 30px 15px; */
}

.profile-card-shape {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 140px;
}

.active-link {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  background-color: #eeeeee;
}

/* .active-link:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 4px;
  height: 100%;
  background-color: #0d6efd;
} */

.side-links {
  margin-bottom: 8px;
  padding: 0px 20px;
}

.side-links a {
  padding: 14px 0px;
  color: #646464;
}

.side-links i {
  font-size: 16px;
  margin-right: 12px;
  opacity: 60%;
}

.side-links span {
  font-size: 13px;
  font-family: "Roboto", sans-serif;
}



.profile-info-top {
  text-align: center;
}

.profile-image {
  width: 60px;
  height: 60px;
  background: #FFFFFF;
  border-radius: 50%;
  overflow: hidden;
  filter: drop-shadow(0px 4px 12px rgba(0, 0, 0, 0.1));
  padding: 4px;
  margin: 0 auto;
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-name {
  font-size: 24px;
  line-height: 1.2em;
  font-weight: 500;
  color: #2058A9;
  margin: 15px 0 40px 0;
}

.profile-details ul li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: #FFFFFF;
  border-radius: 8px;
  padding: 11px 12px;
  margin: 0 0 8px;
}

.profile-details ul li:last-child {
  margin: 0;
}

.profile-details ul li span {
  font-size: 16px;
  line-height: 1.25em;
  color: #767676;
  min-width: 129px;
  padding-right: 12px;
}

.profile-details ul li h6 {
  font-size: 16px;
  line-height: 1.25em;
  color: #2058A9;
  font-weight: 500;
  border-left: 1px solid #E2E2E4;
  padding: 2px 0 2px 12px;
}

.steps-wrapper {
  background: #F5F9FF;
  border-radius: 12px;
  padding: 12px;
}

.step-progress-bar {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.step-progress-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: calc(33.33% + 9.4%);
}

.step-number p {
  display: none;
}

.step-number .step-no {
  width: 44px;
  height: 44px;
  border: 1px solid #B3C2F8;
  border-radius: 50%;
  padding: 12px;
}

.step-number .step-no span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  border-radius: 50%;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #2058A9;
}

.step-progress-list.active .step-no span {
  background: #2058A9;
  color: #FFFFFF;
}

.step-progress-list:last-child {
  width: auto;
}

.line-border {
  position: relative;
  flex-grow: 1;
  height: 1px;
  background: url(../img/Line-border.png) no-repeat center center;
  background-size: cover;
  margin: 0 10px;
}

.step-card-flex {
  gap: 20px 0;
}

.step-cards {
  background: linear-gradient(180deg, #0078D7 0%, #C7ACFF 20.21%, #FFFFFF 100%);
  border-radius: 8px;
  padding: 12px;
}

.step-cards.active {
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.11);
}

.step-cards-title {
  display: block;
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  text-align: center;
  color: #FFFFFF;
  margin: 0 0 8px;
}

.step-cards-item {
  background: #FFFFFF;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  padding: 20px 15px;
}

.step-cards-item .icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #FFFFFF;
  border: 3px solid #F2F6FD;
  box-shadow: 0px 2px 12px rgba(0, 36, 164, 0.1);
  border-radius: 50%;
}

.step-cards-item h6 {
  font-size: 20px;
  line-height: 1.2em;
  font-weight: 500;
  color: #2058A9;
  margin: 20px 0 16px 0;
}

.step-cards-item p {
  font-size: 14px;
  line-height: 22px;
  color: #424242;
  margin: 0 0 30px;
}

.step-cards-item .btns {
  width: 100%;
  font-size: 16px;
  text-align: center;
  padding: 12.5px 24px;
}

.step-cards-item .btns img {
  margin: 0 auto;
}

.step-cards-item .btns span {
  display: none;
}

.step-cards-item .btns:hover img {
  filter: brightness(0) invert(1);
}

.status-text {
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  text-align: center;
  color: #FF4646;
  background: #FFFFFF;
  border-radius: 6px;
  padding: 8px;
  margin: 8px 0 0;
}

.status-text.prog {
  background: #FFEBB0;
  color: #FC781A;
}

.notification-area {
  background: #FFFFFF;
  border: 1px solid #F7BA3C;
  border-radius: 8px;
  padding: 16px 12px;
  margin: 12px 0 0;
}

.notification-area span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #000000;
  margin: 0 0 12px;
}

.notification-area p {
  font-size: 14px;
  line-height: 22px;
  color: #424242;
}

.rectangle-blue,
.rectangle-pink {
  display: none;
}

@media (min-width: 768px) {
  .dashboard-content {
    padding: 0 0 65px;
  }

  .profile-details ul {
    column-count: 2;
    column-gap: 8px;
  }

  .profile-details ul li span {
    min-width: 138px;
    padding-right: 20px;
  }

  .profile-details ul li h6 {
    padding-left: 20px;
  }

  .step-progress-list {
    width: calc(33.33% + 7.5%);
  }

  .step-number {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  .step-number p {
    display: block;
    font-size: 14px;
    line-height: 22px;
    color: #424242;
    margin-left: 8px;
  }

  .step-card-flex {
    margin: 0 -10px;
  }

  .step-card-flex div:is(.col-md-6) {
    padding: 0 10px;
  }

  .dashboard-item-box {
    padding-left: 12px;
  }

  .dashboard-left {
    padding: 0px 0px;
  }


}

@media (min-width: 1200px) {
  .dashboard-content {
    position: relative;
    /* overflow: hidden; */
    padding: 0 0 80px;
  }

  .rectangle-blue,
  .rectangle-pink {
    display: block;
    position: absolute;
    z-index: -1;
    bottom: 14px;
    width: 422px;
    height: 422px;
    filter: blur(90px);
    border-radius: 20px;
    transform: rotate(-41.8deg);
  }

  .rectangle-blue {
    left: 0;
    background: rgba(226, 237, 255, 0.55);
  }

  .rectangle-pink {
    bottom: -145px;
    right: -84px;
    background: rgba(255, 226, 246, 0.46);
  }

  .step-progress-list {
    width: calc(33.33% + 8%);
  }

  .line-border {
    background-size: contain;
    margin: 0 16px;
  }

  .dashboard-item-box {
    padding: 20px;
    padding-left: 0px;

  }

  .dashboard-item-flex {
    flex-direction: row;
  }

  .dashboard-left {
    width: 360px;
  }

  .profile-info {
    height: 100%;
  }

  .profile-card {
    height: calc(100% - 45px);
    /* padding: 0px 20px 0 20px; */
  }

  .profile-details ul {
    column-count: unset;
  }

  .dashboard-right {
    width: calc(100% - 360px);
  }

}

@media (min-width: 1400px) {
  .step-progress-list {
    width: calc(33.33% + 10%);
  }
}

@media (max-width: 1200px) {
  .menu-collapse {
    max-height: 4rem;
    overflow: hidden;
  }
}

/* test pages styling start */
.test-pages {
  min-height: 100vh;
  padding: 30px 0 50px 0;
}

.test-pages-top {
  gap: 20px 0;
  padding: 0 0 15px;
}

.test-page-title h3 {
  font-size: 24px;
  line-height: 1.11112em;
  font-weight: 600;
  color: #424242;
  text-align: center;
  margin: 0 0 12px;
}

.test-page-title p {
  color: #555555;
}

.test-pages-middle {
  background: #FFFFFF;
  box-shadow: 0px 12px 28px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  padding: 15px;
}

.test-pages-middle h5 {
  font-size: 20px;
  line-height: 2em;
  font-weight: 500;
  color: #383838;
  margin: 0 0 12px;
}

.test-pages-mid_flex {
  gap: 25px 0;
}

.list-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #2058A9;
  border-radius: 12px 12px 0px 0px;
  font-size: 18px;
  line-height: 1.2em;
  font-weight: 600;
  color: #FFFFFF;
  padding: 20px 24px;
  margin: 0 0 16px;
}

.test-details-list li {
  position: relative;
  font-size: 15px;
  line-height: 1.3333em;
  color: #424242;
  background: #FFFFFF;
  border: 1px solid #E6E6E6;
  border-radius: 8px;
  padding: 14px 14px 14px 40px;
}

.test-details-list li:nth-child(odd) {
  background: #FAFAFA;
}

.test-details-list li span {
  color: #000000;
}

.test-details-list li:not(:last-child) {
  margin-bottom: 8px;
}

.test-details-list li::before {
  position: absolute;
  content: "";
  top: 16px;
  left: 10px;
  width: 20px;
  height: 20px;
  background: url(../img/list-check-icon.svg) no-repeat center center;
}

.important-note-box {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 20px;
  background: #FFFFFF;
  border: 1px solid #F7BA3C;
  border-radius: 8px;
  padding: 14px;
  margin: 24px 0 0;
}

.important-note-box figure {
  display: block;
  margin: 0;
}

.important-note-box p {
  font-size: 14px;
  line-height: 1.5714285714285714em;
}

.important-note-box p strong {
  font-size: 16px;
  font-weight: 500;
  color: #000000;
}

@media (min-width: 768px) {
  .test-pages {
    padding: 45px 0 80px 0;
  }

  .test-pages-top {
    align-items: center;
    padding: 0 0 15px;
  }

  .test-page-title h3 {
    font-size: 28px;
  }

  .pages-top-btn {
    text-align: right;
  }

  .test-pages-middle {
    padding: 20px;
  }

  .test-pages-middle h5 {
    font-size: 24px;
    line-height: 1.5em;
  }

  .list-heading {
    font-size: 20px;
  }

  .test-details-list li {
    font-size: 16px;
  }

  .test-details-list li::before {
    top: 15px;
  }

  .important-note-box {
    flex-direction: row;
    align-items: center;
    padding: 16px 24px;
  }

  .important-note-box figure {
    width: 40px;
  }

  .important-note-box p {
    width: calc(100% - 60px);
  }
}

@media (min-width: 1200px) {
  .test-pages {
    position: relative;
    overflow: hidden;
    padding: 60px 0 150px 0;
  }

  .test-pages .rectangle-blue,
  .test-pages .rectangle-pink {
    width: 505px;
    height: 505px;
  }

  .test-pages .rectangle-blue {
    top: -130px;
    left: -55px;
    bottom: unset;
  }

  .test-pages .rectangle-pink {
    width: 628px;
    height: 628px;
    right: -200px;
    bottom: -90px;
  }

  .test-page-title h3 {
    font-size: 36px;
    text-align: left;
  }

  .test-page-title p {
    font-size: 20px;
  }

  .test-details-list li {
    font-size: 18px;
    padding: 14px 24px 14px 60px;
  }

  .test-details-list li::before {
    top: 16px;
    left: 26px;
  }
}

/* Test Question and answer styling start */
.question-header {
  font-size: 22px;
  font-weight: bold;
}

.options {
  counter-reset: optionNo;
}

.question p {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 15px;
  font-weight: 500;
  color: #FFFFFF;
  background: #2058A9;
  border-radius: 12px 12px 0px 0px;
  padding: 20px 24px;
  margin: 0 0 16px;
}

.question p strong {
  width: calc(100% - 40px);
  font-weight: 500;
}

.question p span {
  display: inline-block;
  font-size: 24px;
  line-height: 1;
  font-weight: 500;
}

.options label {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 1.25em;
  color: #424242;
  background: #fff;
  border: 1px solid #E6E6E6;
  border-radius: 4px;
  cursor: pointer;
  padding: 13px 60px;
}

.options label:not(:last-child) {
  margin-bottom: 8px;
}

.options label::before {
  position: absolute;
  top: 13px;
  left: 24px;
  counter-increment: optionNo;
  content: "0" counter(optionNo) ".";
  color: #000000;
}

.options label:nth-child(odd) {
  background: #FAFAFA;
}

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

.options label .check-dot {
  position: absolute;
  content: "";
  top: 50%;
  right: 24px;
  transform: translate(0, -50%);
  width: 24px;
  height: 24px;
  background: #FFFFFF;
  border: 2px solid #E0E0E0;
  box-shadow: inset 2px 3px 4px rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  transition: 0.2s linear;
}

.options label input[type="radio"]:checked+.check-dot {
  background: #FFFFFF;
  border-color: #00BA00;
  filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.22));
  box-shadow: none;
}

.options label .check-dot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  background: #00BA00;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: 0.2s linear;
}

.options label input[type="radio"]:checked+.check-dot::after {
  opacity: 1;
  width: 16px;
  height: 16px;
}

.navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  gap: 10px;
}

.skip-next-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.test-pages-bottom {
  margin-top: 24px;
}

.pagination-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: #FBFDFF;
  box-shadow: 0px 12px 28px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  padding: 20px;
}

.pagination-wrap button:has(img) {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #F8F8F8;
  border: 1px solid #F0F0F0;
  border-radius: 8px;
  margin-right: 8px;
}

.pagination-wrap button:has(img) img {
  margin: 0 auto;
}

.pagination-wrap button:has(img):hover {
  background: linear-gradient(102.88deg, #FC781A 6.94%, #FFAF0A 69.15%);
  border-radius: 12px;
}

.pagination-wrap button:has(img):hover img {
  filter: brightness(0) invert(1);
}

.pagination-wrap button:has(img):last-child {
  margin-right: 0;
  margin-left: 8px;
}

.pagination-slider {
  overflow: hidden;
  flex: 1;
}

.pagination {
  display: flex;
  transition: transform 0.3s ease;
}

.pagination button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid #F0F0F0;
  background: #FFFFFF;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  color: #1A14CB;
  margin: 0 8px;
}

.pagination button.active {
  background: #1A14CB;
  color: #FFFFFF;
}

.pagination button.answered {
  background: #26A626;
  color: #FFFFFF;
}

.pagination button.unanswered {
  position: relative;
  background: #FFEB96 !important;
  color: #1A14CB !important;
}

.tooltips {
  position: absolute;
  top: -50px;
  left: 0;
  width: max-content;
  background-color: #FFF3BF;
  background-image: url(../img/warning.svg);
  background-position: center 4px;
  background-repeat: no-repeat;
  background-size: 20px;
  border: 1px solid #F7BA3C;
  border-radius: 8px;
  content: "";
  font-size: 14px;
  line-height: 22px;
  color: #424242;
  padding: 4px 21px 25px 21px;
}

.tooltips.expand {
  background-position: 12px 4px;
  padding: 4px 12px 4px 40px;
}

.tooltips p {
  display: none;
  font-size: 14px;
  line-height: 22px;
  color: #424242;
}

.tooltips::after {
  position: absolute;
  content: "";
  top: 28px;
  left: 14px;
  width: 15px;
  height: 15px;
  background: url(../img/down-shape.svg) no-repeat center center;
}

.tooltips.expand:after {
  left: 18px;
}

.tooltips.expand p {
  display: block;
}

.answer-status-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.answer-status-list li {
  position: relative;
  font-size: 12px;
  line-height: 16px;
  padding-left: 28px;
}

.answer-status-list li strong {
  font-weight: 600;
}

.answer-status-list li::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: 20px;
  height: 20px;
  background: transparent;
  border-radius: 4px;
}

.answer-status-list li:has(#answeredCount)::before {
  background: #00BA00;
}

.answer-status-list li:has(#unansweredCount)::before {
  background: #FFEB96;
}

.answer-status-list li:has(#currentQuestionNo)::before {
  background: #1A14CB;
}


.test-progress-timer {
  height: 100%;
}

.test-progress-box {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  text-align: center;
  height: calc(100% - 60px);
  background: linear-gradient(180deg, #F5F9FF 26.44%, #F5F9FF 100%);
  border-radius: 12px;
  padding: 20px;
}

.question-header {
  background: linear-gradient(90deg, #5d5ef0, #8d4fff);
  border-radius: 10px;
  padding: 12px;
  font-size: 18px;
  line-height: 1.11112em;
  font-weight: 400;
  color: #FFFFFF;
  margin-bottom: 52px;
}

.question-header strong {
  font-weight: 700;
}

.circular-timer {
  position: relative;
  width: 185px;
  height: 185px;
  filter: drop-shadow(0px 4px 44px rgba(56, 0, 125, 0.35));
  background: linear-gradient(121.52deg, #5A6CF0 28.91%, #D0ADFB 101.85%);
  border-radius: 50%;
  margin: 0 auto;
}

.circular-timer svg {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 209px;
  height: 209px;
}

#progress-ring {

  transition: stroke-dashoffset 1s linear;
}

#progress-dot {
  transition: cx 1s linear, cy 1s linear;
}


.timer-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 9px;
  width: 100%;
  font-size: 27px;
  line-height: 1.1851851851851851em;
  font-weight: 600;
  color: #FFFFFF;
}

.time-label {
  font-size: 11px;
  line-height: 16px;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  margin-top: -4px;
}

.timer-label {
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  color: #5A6CF0;
  margin: 16px 0 0;
}

.note-text {
  font-size: 12px;
  line-height: 19px;
  color: #616161;
  margin-top: auto;
}

.dot {
  fill: #5d5ef0;
  stroke: #fff;
  stroke-width: 3;
}

.submit-popup {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(255, 255, 255, 0.73);
  backdrop-filter: blur(8px);
  /* Note: backdrop-filter has minimal browser support */
  align-content: center;
  visibility: hidden;
  opacity: 0;
  transition: 0.4s;
  padding: 20px;
}

.submit-popup.active {
  visibility: visible;
  opacity: 1;
}

.popup-body {
  max-width: 880px;
  margin: 0 auto;
  background: linear-gradient(180deg, #FFFFFF 26.44%, #F5F9FF 100%);
  box-shadow: 0px 1px 16px rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  text-align: center;
  padding: 56px 20px;
}

.popup-content {
  text-align: center;
  max-width: 698px;
  margin: 0 auto;
}

.popup-content figure {
  display: block;
  max-width: 160px;
  margin: 0 auto;
}

.popup-content h5 {
  font-size: 24px;
  line-height: 1.66667em;
  font-weight: 600;
  color: #405FFA;
  margin: 24px 0 12px 0;
}

.popup-content p {
  line-height: 1.556em;
  color: #7C7D7D;
}

.popup-content p span {
  display: block;
}

.popup-content p:last-child {
  font-size: 16px;
  margin: 12px 0 0;
}

.back-to-dash {
  margin-top: 40px;
}

@media (max-width: 1199px) {
  .test-pages-01 .test-pages-mid_flex {
    flex-direction: column-reverse;
  }

  .question p {
    gap: 8px;
    padding: 15px;
  }

  .question p span {
    font-size: 20px;
    margin-top: 2px;
  }

  .question p strong {
    width: calc(100% - 29px);
  }

  .options label {
    padding: 13px 48px;
  }

  .options label::before {
    left: 15px;
  }

  .test-progress-timer {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
  }

  .test-progress-box {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 20px 85px;
  }

  .note-text {
    margin-top: 15px;
  }

  .question-header {
    width: calc(50% - 10px);
    margin-bottom: 15px;
    margin-right: 10px;
  }

  .timer-label {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .question-header {
    font-size: 16px;
    width: 100%;
    margin-right: 0;
  }

  .test-progress-box {
    padding: 20px;
  }

  .question p {
    padding: 15px 12px;
  }

  .question p span {
    font-size: 18px;
  }

  .question p strong {
    width: calc(100% - 27px);
  }

  .options label {
    font-size: 14px;
    padding: 12px 35px 12px 40px;
  }

  .options label::before {
    left: 12px;
    top: 14px;
  }

  .options label .check-dot {
    width: 20px;
    height: 20px;
    right: 12px;
  }

  .navigation .btns {
    font-size: 14px;
    padding: 12px 15px;
  }

  .skip-next-wrap {
    gap: 12px;
  }

  .important-note-box figure {
    display: none;
  }

  .pagination-wrap {
    padding: 15px;
  }

  .pagination-wrap button:has(img) {
    width: 35px;
    height: 35px;
  }

  .pagination button {
    width: 35px;
    height: 35px;
    font-size: 14px;
    margin: 0 4px;
  }

  .answer-status-list {
    gap: 10px;
  }

  .answer-status-list li::before {
    width: 16px;
    height: 16px;
  }

  .answer-status-list li {
    padding-left: 26px;
  }

  .tooltips.expand {
    left: -72px;
    font-size: 12px;
    background-size: 18px;
  }

  .tooltips.expand:after {
    left: 80px;
  }

  .tooltips p {
    font-size: 11px;
  }
}


/* Mobile Timer Toggle Styles */
.mobile-timer-toggle {
  position: relative;
  display: none;
  background: #5A6CF0;
  border-radius: 8px;
  padding: 7px 16px;
  cursor: pointer;
  width: calc(50% - 10px);
  margin-left: 10px;
}

.mobile-timer-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: white;
  font-size: 18px;
  font-weight: 600;
}

.toggle-arrow {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translate(0, -50%);
  transition: transform 0.3s ease;
  font-size: 15px;
  line-height: 1;
}

.toggle-arrow.up {
  transform: translate(0, -50%) rotate(180deg);
}

/* Hide main timer on mobile when toggled off */
.timer-hidden .circular-timer {
  display: none;
}

@media (max-width: 1199px) {
  .mobile-timer-toggle {
    display: block;
    margin-bottom: 15px;
  }

  .circular-timer {
    width: 140px;
    height: 140px;
    margin: 15px auto 0 auto;
  }

  .circular-timer svg {
    width: 160px;
    height: 160px;
  }

  .circular-timer.timer-hidden {
    display: none;
  }

  .timer-text {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .mobile-timer-toggle {
    max-width: 100%;
    width: 100%;
    margin-left: 0;
  }

  .mobile-timer-display {
    font-size: 16px;
  }

  .toggle-arrow {
    font-size: 13px;
  }
}


/* modal styling */
.modal {
  background: transparent;
  /* background-color: rgba(255, 255, 255, 0.73); */
  backdrop-filter: blur(8px);
  /* Note: backdrop-filter has minimal browser support */
}

.modal-dialog {
  width: calc(100% - 30px);
  max-width: 880px;
}

.modal-content {
  border: none;
  background: linear-gradient(180deg, #FFFFFF 26.44%, #F5F9FF 100%);
  box-shadow: 0px 1px 16px rgba(0, 0, 0, 0.12);
  border-radius: 12px;
}

.modal-body h6 {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.2em;
  color: #2058A9;
  margin: 0 0 16px;
}

.choose-time-date li input[type="radio"] {
  display: none;
}

.choose-time-date li:not(:last-child) {
  margin-bottom: 16px;
}

.choose-time-date li .chs-td-lebal {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 20px;
  color: #424242;
  background: #FAFAFA;
  border: 1px solid #E6E6E6;
  padding: 13px 24px;
}

.choose-time-date li:nth-child(even) .chs-td-lebal {
  background: #fff;
}

.choose-time-date li .chs-td-lebal::before {
  position: absolute;
  content: "";
  top: 12px;
  right: 16px;
  width: 24px;
  height: 24px;
  background: #FFFFFF;
  border: 2px solid #E0E0E0;
  box-shadow: inset 2px 3px 4px rgba(0, 0, 0, 0.15);
  border-radius: 50%;
}

.choose-time-date li input[type="radio"]:checked~.chs-td-lebal::before {
  background: #FFFFFF;
  border-color: #00BA00;
  box-shadow: none;
}

.choose-time-date li .chs-td-lebal::after {
  position: absolute;
  content: "";
  top: 16px;
  right: 20px;
  width: 16px;
  height: 16px;
  background: #00BA00;
  border-radius: 50%;
  opacity: 0;
}

.choose-time-date li input[type="radio"]:checked~.chs-td-lebal::after {
  opacity: 1;
}

.choose-item-box {
  display: none;
  background: #FFFFFF;
  border: 1px solid #F5F5F5;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  padding: 12px;
  margin-top: 8px;
}

.choose-time-date li input[type="radio"]:checked~.choose-item-box {
  display: block;
}

.choose-item-flex {
  gap: 12px 0;
  align-items: flex-end;
}

.chs-item-inner label {
  display: block;
  font-size: 14px;
  line-height: 16px;
  margin: 0 0 8px;
}

.chs-item-inner select {
  font-size: 16px;
  border-radius: 4px;
}

.chs-item-inner-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border: 1px solid #CCCCCC;
  border-radius: 4px;
  padding: 12px 16px;
}

.chs-icon {
  margin-right: 16px;
}

.chs-select-col {
  width: calc(100% - 36px);
}

.chs-select-col p {
  font-size: 12px;
  line-height: 14px;
  color: #767676;
  margin: 0 0 4px;
}

.chs-select-col select {
  height: auto;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #2058A9;
  border: none;
  padding: 0 0 0 15px;
  margin-left: -15px;
}

.chs-select-col.select-box::after {
  bottom: 14px;
}

.chs-submit {
  text-align: center;
  margin: 30px 0 0;
}


.submit-popup.counselling-popup {
  position: relative;
  top: unset;
  left: unset;
  visibility: visible;
  opacity: 1;
  padding: 0;
}

.submit-popup.counselling-popup .popup-body {
  max-width: 100%;
}

.submit-popup.counselling-popup .popup-content {
  max-width: 100%;
}

.submit-popup.counselling-popup .popup-content p span {
  color: #323E4F;
}

.submit-popup.counselling-popup .popup-content p strong {
  font-weight: 600;
}

@media (min-width: 768px) {
  .modal-body {
    padding: 25px 40px;
  }

  .modal-body h6 {
    font-size: 20px;
  }

  .chs-submit button {
    padding: 16px 28px;
  }
}

@media (min-width: 1200px) {
  .modal-body {
    padding: 40px 60px;
  }

  .chs-item-inner select {
    height: 44px;
    padding: 12px 24px;
  }

  .chs-item-inner .select-box::after {
    bottom: 16px;
  }

  .chs-select-col select {
    height: auto;
    padding: 0 0 0 15px;
  }


  .submit-popup.counselling-popup .popup-body {
    padding: 30px;
  }
}


.preferences-wrap {
  background: linear-gradient(180deg, #FFFFFF 26.44%, #F5F9FF 100%);
  box-shadow: 0px 1px 16px rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  padding: 30px;
}

.preferences-form-flex {
  gap: 16px 0;
  margin: 0 -8px;
}

.preferences-col {
  padding: 0 8px;
}

.preferences-col label {
  font-size: 14px;
  line-height: 16px;
  margin: 0 0 8px;
}

.preferences-submit button {
  margin: 24px 0 0;
}

@media (max-width: 767px) {
  .preferences-wrap {
    padding: 15px;
  }
}

@media (min-width: 1200px) {
  .test-pages.choose-preferences {
    padding: 120px 0;
  }

  .preferences-submit .btns {
    padding: 16px 24px;
  }
}


/* counselor dashboard styling */
.counselor-dashboard .dashboard-top {
  margin-bottom: 0;
  padding: 0;
}

.counselor-dashboard .dashboard-top-flex {
  border-bottom: 1px solid rgba(20, 20, 20, 0.15);
  padding: 15px 0;
}

@media (min-width: 1200px) {
  .counselor-dashboard .dashboard-top-flex {
    padding: 24px 0;
  }
}


.counselor-dashboard {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.counselor-dashboard .rectangle-blue {
  width: 503px;
  height: 503px;
  bottom: unset;
  top: -170px;
  left: -100px;
}

.counselor-dashboard .rectangle-pink {
  width: 628px;
  height: 628px;
  bottom: -100px;
  right: -150px;
}

.counselor-dashboard__body {
  overflow: hidden;
  margin: 35px 0 40px 0;
}

.dashboard__body-box {
  overflow: hidden;
  background: #FFFFFF;
  border: 1px solid #F2F2F2;
  border-radius: 16px;
  padding: 24px 24px 0 24px;
}

.counselor-dashboard--flex {
  display: flex;
  flex-wrap: wrap;
}

.dashboard-sidebar {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 307px;
  border-right: 1px solid #EAEAEA;
  padding-right: 16px;
}

.top-profile-area {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  background: #F8F9F9;
  border-radius: 8px;
  padding: 16px 20px;
}

.pro-image {
  width: 63px;
  height: 63px;
  border-radius: 50%;
  overflow: hidden;
  background: #EEF0FF;
}

.pro-image img {
  width: 100%;
  height: 100%;
}

.pro-details {
  width: calc(100% - 79px);
}

.pro-details h5 {
  font-size: 24px;
  line-height: 1;
  font-weight: 500;
  color: #5A6CF0;
  margin: 0 0 8px;
}

.pro-details p {
  font-size: 16px;
  line-height: 18px;
  font-weight: 500;
  color: #828282;
}

.dashboard-sidebar-menu {
  margin-top: 28px;
}

.dashboard-sidebar-menu li {
  position: relative;
  border-radius: 0 12px 12px 0;
  padding: 12px 12px 12px 24px;
  margin-bottom: 12px;
  margin-left: -24px;
}

.dashboard-sidebar-menu li.active,
.dashboard-sidebar-menu li:hover {
  background: #F8F9FF;
}

.dashboard-sidebar-menu li a {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #7B7B7B;
}

.sb-menu-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #F8F9FF;
  border: 1px solid #ECEEFF;
  border-radius: 50%;
}

.dashboard-sidebar-menu li.active .sb-menu-icon {
  background: #5B6CF0;
}

.dashboard-sidebar-menu li.active .sb-menu-icon img {
  filter: brightness(0) invert(1);
}

.dashboard-sidebar-menu li a span {
  display: block;
}

.logout-area {
  background: #F8F9F9;
  border-top: 1px solid #EAEAEA;
  padding: 20px 24px;
  margin-top: auto;
  margin-left: -24px;
  margin-right: -16px;
}

.logout-area .logout-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  background: transparent;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.22223em;
  color: #7B7B7B;
}

.logout-area .logout-btn figure {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #FFFFFF;
  border: 1px solid #ECEEFF;
  border-radius: 50%;
  margin: 0;
}

.counselor-dashboard__right {
  position: relative;
  width: calc(100% - 307px);
  padding-left: 24px;
}

.linear-shade {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 96px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
  pointer-events: none;
}

.heading-filter-wrap {
  align-items: center;
}

.heading-filter-wrap h5 {
  font-weight: 500;
  font-size: 24px;
  line-height: 1;
  color: #383838;
}

.search-filter-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
}

.search-panel-box {
  position: relative;
  width: 37.71%;
}

.search-panel-box .srch-icon {
  position: absolute;
  top: 10px;
  left: 20px;
}

.search-panel-box input {
  font-size: 16px;
  height: 40px;
  border: 1px solid #DBDBDB;
  padding: 8px 20px 8px 60px;
}

.search-panel-box input::placeholder {
  font-size: 16px;
  color: #A6A0A0;
}

.filter-by button {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #F6F6F6;
  border: 1px solid #EFEFEF;
  border-radius: 8px;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2em;
  color: #5064F9;
  padding: 7px 12px;
}

.filter-by button:hover {
  color: #FFFFFF;
  background: #5064F9;
  border-color: #5064F9;
}

.filter-by button:hover img {
  filter: brightness(0) invert(1);
}

.dashboard-scrollable {
  position: relative;
  height: 625px;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0 24px 0 0;
  margin: 24px 0;
  margin-right: -24px;
}

.dashboard-scrollable::-webkit-scrollbar-track {
  background-color: #FFFFFF;
}

.dashboard-scrollable::-webkit-scrollbar {
  width: 6px;
  background-color: #FFFFFF;
}

.dashboard-scrollable::-webkit-scrollbar-thumb {
  background-color: #D9D9D9;
}

.overview-cards-flex {
  gap: 24px 0;
}

.overview-cards-item {
  background: #FAFAFA;
  border-radius: 8px;
  transition: 0.3s;
  padding: 16px 12px;
}

.overview-cards-item:hover {
  background: #F7F7F8;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.overview-cards-item figure {
  display: block;
  margin: 0 0 16px;
}

.assign-btn {
  padding: 10px 20px !important;
}

.overview-cards-item figure img {
  width: 63px;
  height: 63px;
  border-radius: 50%;
  object-fit: cover;
}

/* suyash */
.candidate-detl-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.candidate-name h6 {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.25em;
  color: #616161;
  margin: 0 0 10px;
}

.candidate-name span {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.125em;
  color: #828282;
}

.test-score {
  border-left: 1px solid #EBEBEB;
  padding-left: 22%;
}

.test-score h5 {
  font-size: 28px;
  line-height: 1.1428571428571428em;
  font-weight: 500;
  margin: 0 0 5px;
}

.test-score p {
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  color: #828282;
}

.status-listing {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 16px 20px;
  margin: 28px 0 16px 0;
}

.status-listing li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.status-listing li:not(:last-child) {
  margin-bottom: 15px;
}

.status-listing li strong {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.125em;
  color: #616161;
}

.tag-text {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 14px;
  line-height: 16px;
  padding: 6px 10px;
}

.tag-text.red {
  border-color: #FFCCCC;
  color: #F44336;
}

.tag-text.blue {
  border-color: #5A6CF0;
  color: #5A6CF0;
}

.tag-text .see-detl {
  border-left: 1px solid #DFDFDF;
  padding-left: 9px;
}

.tag-text.gray {
  border-color: #E9E9E9;
  color: #999999;
}

.tag-text.green {
  border-color: #26A626;
  color: #26A626;
}

.has-tooltip {
  position: relative;
}

.has-tooltip::before {
  position: absolute;
  top: -44px;
  left: -162px;
  width: max-content;
  content: attr(tooltip-text);
  font-size: 14px;
  line-height: 22px;
  color: #424242;
  background: #FFF3BF;
  border: 1px solid #F7BA3C;
  border-radius: 8px;
  visibility: hidden;
  opacity: 0;
  padding: 3px 12px;
}

.has-tooltip::after {
  position: absolute;
  content: "";
  top: -16px;
  right: 1px;
  width: 15px;
  height: 15px;
  background: url(../img/down-shape.svg) no-repeat center center;
  visibility: hidden;
  opacity: 0;
}

.has-tooltip:hover:before,
.has-tooltip:hover:after {
  opacity: 1;
  visibility: visible;
}

.cards-bot-btn {
  border-top: 1px solid #EBEBEB;
  padding: 16px 0 0;
}

.cards-bot-btn a {
  width: 100%;
  font-size: 16px;
  line-height: 1.25em;
  font-weight: 600;
  color: #424242;
  background: #EDEDED;
  border-radius: 8px;
  text-align: center;
  transition: unset;
  padding: 12px;
}

.overview-cards-item:hover .cards-bot-btn a {
  color: #FFFFFF;
  background: linear-gradient(102.88deg, #FC781A 6.94%, #FFAF0A 69.15%);
}

.toggle-sideMenu,
.close-sideMenu {
  display: none;
}

@media (max-width: 1500px) {
  .test-score {
    padding-left: 20px;
  }

  .status-listing li {
    /* flex-direction: column;
    align-items: flex-start; */
  }
}

@media (max-width: 1199px) {
  .dashboard__body-box {
    padding: 20px 20px 0 20px;
  }

  .dashboard-scrollable {
    height: 540px;
    padding: 0 12px 0 0;
    margin-right: -20px;
  }

  .counselor-dashboard--flex {
    position: relative;
  }

  .dashboard-sidebar {
    position: fixed;
    bottom: 0;
    left: -100%;
    z-index: 10;
    width: 315px;
    height: 100%;
    background: #FFFFFF;
    box-shadow: 0 0 15px rgba(226, 237, 255, 0.55);
    opacity: 0;
    transition: 0.4s;
    padding: 40px 50px 0 20px;
  }

  .dashboard-sidebar.show {
    left: 0;
    opacity: 1;
  }

  .pro-details h5 {
    font-size: 20px;
  }

  .pro-details p {
    font-size: 14px;
    line-height: 16px;
  }

  .dashboard-sidebar-menu li {
    margin-left: -20px;
  }

  .dashboard-sidebar-menu li a {
    font-size: 16px;
  }

  .close-sideMenu {
    display: block;
    position: absolute;
    top: 8px;
    right: 8px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #6a6868;
    font-size: 13px;
    line-height: 1;
    color: #FFFFFF;
    padding: 0;
  }

  .logout-area {
    margin-left: -20px;
    margin-right: -50px;
  }

  .counselor-dashboard__right {
    width: 100%;
    padding-left: 0;
  }

  .heading-filter-wrap {
    gap: 20px 0;
  }

  .title-and-toggle {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .toggle-sideMenu {
    display: block;
    background: transparent;
    padding: 0;
    font-size: 25px;
    line-height: 1;
    padding: 0 3px;
  }

  .search-filter-flex {
    justify-content: space-between;
  }

  .search-panel-box {
    width: 60%;
  }

  .logout-area .logout-btn {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .counselor-dashboard__body {
    margin: 24px 0 40px 0;
  }

  .dashboard__body-box {
    padding: 15px 15px 0 15px;
  }

  .pro-image {
    width: 52px;
    height: 52px;
  }

  .pro-details h5 {
    font-size: 18px;
  }

  .sb-menu-icon {
    width: 32px;
    height: 32px;
  }

  .sb-menu-icon img {
    max-width: 20px;
  }

  .dashboard-sidebar-menu li a {
    font-size: 14px;
  }

  .heading-filter-wrap h5 {
    font-size: 20px;
  }

  .search-panel-box {
    width: 100%;
  }

  .filter-by button {
    font-size: 16px;
    padding: 7px 24px;
  }

  .filter-by button img {
    max-width: 16px;
  }

  .candidate-name h6 {
    font-size: 17px;
  }

  .candidate-name span {
    font-size: 15px;
  }

  .candidate-name span img {
    max-width: 15px;
  }

  .test-score {
    padding-left: 35px;
  }

  .test-score h5 {
    font-size: 22px;
  }

  .status-listing {
    padding: 12px 15px;
  }

  .status-listing li strong {
    font-size: 14px;
  }

  .close-sideMenu {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }
}

/* profile page styling */
.panel-box {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 16px;
  margin: 0 0 32px;
}

.panel-box:last-child {
  margin-bottom: 0;
}

.profile-item-box {
  background: linear-gradient(180deg, #F5F9FF 26.44%, #F5F9FF 100%);
  border-radius: 12px;
  padding: 20px;
}

.learge-profile {
  background: transparent;
  padding: 0;
}

.learge-profile .pro-image {
  width: 140px;
  height: 140px;
  border-radius: 12px;
}

.learge-profile .pro-details {
  width: calc(100% - 156px);
}

.learge-profile .pro-details h5 {
  font-size: 28px;
  line-height: 1.1428571428571428em;
}

.pro-details p {
  font-size: 20px;
  line-height: 1;
}

.title-and-edit-btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 16px;
}

.title-and-edit-btn h6 {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2em;
  color: #383838;
}

.edit-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #fff;
  border: 1px solid #EFEFEF;
  border-radius: 6px;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.125em;
  color: #5064F9;
  padding: 8px 12px;
}

.edit-btn:hover {
  background: #0078D7;
  color: #FFFFFF;
}

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

.profile-info-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background: #FAFAFA;
  padding: 0 16px;
}

.profile-info-list li:not(:last-child) {
  margin: 0 0 8px;
}

.profile-info-list li label {
  display: block;
  font-size: 16px;
  line-height: 1.5em;
  color: #767676;
  min-width: 172px;
  border-right: 1px solid #E2E2E4;
}

.profile-info-list li input {
  width: calc(100% - 172px);
  height: 46px;
  padding: 12px 12px 12px 32px;
  background: transparent;
  border: none;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #2058A9;
}

.user-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.user-social-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #FAFAFA;
  border-radius: 8px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.25em;
  color: #2058A9;
  padding: 11px 16px;
}

.user-social-links a:hover {
  background: #e0e0e0;
}

.bg-overlay {
  position: fixed;
  z-index: 8;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}

.bg-overlay.active {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 767px) {
  .profile-item-box {
    padding: 15px;
  }

  .panel-box {
    padding: 14px;
    margin: 0 0 16px;
  }

  .learge-profile {
    flex-direction: column;
    align-items: flex-start;
  }

  .learge-profile .pro-image {
    width: 100px;
    height: 100px;
  }

  .learge-profile .pro-details {
    width: 100%;
  }

  .learge-profile .pro-details h5 {
    font-size: 20px;
    margin: 0 0 5px;
  }

  .pro-details p {
    font-size: 15px;
  }

  .title-and-edit-btn h6 {
    font-size: 16px;
  }

  .edit-btn {
    font-size: 14px;
  }

  .edit-btn img {
    max-width: 14px;
  }

  .profile-info-list li {
    padding: 10px 8px 0 8px;
  }

  .profile-info-list li label {
    font-size: 14px;
    width: 100%;
    border-right: none;
  }

  .profile-info-list li input {
    width: 100%;
    font-size: 14px;
    padding: 12px;
  }
}


/* Modal */
.counselling .modal-content {
  background: linear-gradient(180deg, #f5f9ff 26.44%, #f5f9ff 100%);
  border: 3px solid #ffffff;
  border-radius: 8px;
}

.counselling-modal h3 {
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: #2058a9;
  border-bottom: rgba(20, 20, 20, 0.15) 1px solid;
  padding-bottom: 16px;
  margin-bottom: 16px;
}

.form-col {
  padding: 11px 16px;
  display: block;
  width: 100%;
  background: #ffffff;
  border-radius: 8px;
  margin-bottom: 8px;
}

.form-col-select {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  margin-bottom: 8px;
  margin-top: 24px;
}

.form-col-select select {
  padding: 11px 24px;
  height: 60px;
  background: #FFFFFF;
  border: 1px solid #D8D8D8;
  border-radius: 8px;

}

.form-col-select label {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #767676;
}

.form-col input {
  border: none;
  background: transparent;
  padding: 0;
}

.form-col input::placeholder {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #2058a9;
}

.form-col label {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #767676;
}


.dropdown {
  width: 100%;
  background-color: #FFFFFF;
  border: 1px solid #D8D8D8;
  border-radius: 8px;
  transition: all .5s ease;
  position: relative;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.25em;
  color: #A7A7A7;
  height: 100%;
  text-align: left
}

.dropdown .select {
  cursor: pointer;
  display: block;
  padding: 20px 24px;
}

.dropdown .select>i {
  font-size: 13px;
  color: #000000;
  cursor: pointer;
  transition: all .3s ease-in-out;
  float: right;
  line-height: 1.25em;
}

.dropdown.active .select>i {
  transform: rotate(-180deg)
}

.dropdown .dropdown-menu {
  position: absolute;
  background-color: #EFEFEF;
  width: 100%;
  max-width: 292px;
  bottom: 100%;
  right: 0;
  margin-top: 1px;
  border-radius: 8px;
  overflow: hidden;
  display: none;
  /* max-height: 144px; */
  /* overflow-y: auto; */
  z-index: 9;
  padding: 8px;
}

.dropdown .dropdown-menu li {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.25em;
  color: #2058A9;
  background: #FFFFFF;
  border: 1px solid #E5E5E5;
  border-radius: 4px;
  padding: 12px 24px;
  transition: all .2s ease-in-out;
  cursor: pointer
}

.dropdown .dropdown-menu li:not(:last-child) {
  margin: 0 0 4px;
}

.dropdown .dropdown-menu {
  padding: 0;
  list-style: none
}

.dropdown .dropdown-menu li:hover {
  background-color: #ABB4F8;
  border-color: #E5E5E5;
  color: #FFFFFF;
}

.dropdown .dropdown-menu li:active {
  background-color: #ABB4F8;
  border-color: #E5E5E5;
  color: #FFFFFF;
}

.btn-form-col {
  margin: 24px 0 0;
}

.btn-form-col button {
  border: none;
}

@media (min-width: 768px) {
  .form-col {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    width: 100%;
    height: 46px;
    background: #ffffff;
    border-radius: 8px;
    margin-bottom: 8px;
  }

  .form-col label {
    width: 170px;
    border-right: #e2e2e4 1px solid;
  }

  .form-col input {
    width: calc(100% - 170px);
  }
}

@media (max-width: 767px) {
  .dropdown {
    font-size: 14px;
  }

  .dropdown .select {
    padding: 15px;
  }

  .dropdown .dropdown-menu li {
    font-size: 14px;
  }
}

/* End Modal */



/* edp page styling */

.edp-item-box {
  background: linear-gradient(180deg, #F5F9FF 26.44%, #F5F9FF 100%);
  border-radius: 12px;
  padding: 20px;
}

.course-accordion {
  border: none;
}

.course-accordion .accordion-item {
  margin-bottom: 12px;
  background-color: #ffff;
  border: none;
  border-radius: 10px;
  border: 1px solid #dde5f7;
}

.course-accordion .accordion-button {
  padding: 16px 22px;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  background-color: #f5f5f5;
  border-radius: 10px;
}

.course-accordion .accordion-header {
  border: none;
  border-radius: 12px;

}

.course-accordion .accordion-button:not(.collapsed) {
  color: #383838;
  background-color: #f5f5f5;
  box-shadow: none;
}

.course-accordion .accordion-item:first-of-type .accordion-button {
  border-top-left-radius: 12px !important;
  border-top-right-radius: 12px !important;
}

.course-accordion .lesson-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.course-accordion .lesson-list li p {
  font-size: 13px;
  font-family: "Roboto", sans-serif;
  color: #0b5798;
}

.course-accordion .lesson-list li span {

  cursor: pointer;
}

.course-accordion .lesson-list li span:hover {
  color: #023a6a;
}

.accordion-button:not(.collapsed) {
  color: #383838;
  background-color: #ffffff;
  box-shadow: none;
}

.custom-tooltip {
  position: relative;
  display: inline-block;
}

.tooltip-text {
  visibility: hidden;
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(102.88deg, #FC781A 6.94%, #FFAF0A 69.15%);
  color: #fff;
  padding: 5px 8px;
  border-radius: 5px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.custom-tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

/* assesment report design css */


.custom-radio {
  width: 20px;
  height: 20px;
  appearance: none;
  -webkit-appearance: none;
  background-color: #fff;
  /* Background color */
  border: 2px solid #00ba00;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  outline: none;
}

.custom-radio:checked::before {
  content: "";
  width: 12px;
  height: 12px;
  background-color: #00ba00;
  /* Dot color */
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
}

/* End Modal */
/*----------------------------------------*/
/*   DASHBOARD UTILITY CSS
/*----------------------------------------*/

.profile-img {
  max-height: 60px;
  max-width: 60px;
  border-radius: 50%;
  background-color: green;
  overflow: hidden;
}

/*----------------------------------------*/
/*  PROFIILE DASHBOARD CSS
/*----------------------------------------*/

.p-info-card {
  font-family: "Roboto", sans-serif;
  border: 1px solid #EFEFEF;
  padding: 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.p-info-card ul {
  padding: 0px;
  margin: 0px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.p-info-card ul li {
  list-style: none;
  width: 20%;
}

.p-info-card ul li span {
  font-size: 12px;
  font-weight: 500;
  color: #6c757d;
}

.p-info-card ul li p {
  font-size: 15px;
  font-weight: 500;
  color: #646464;
}

.timeline {
  border-left: 3px solid #0d6efd;
  margin-left: 20px;
  padding-left: 20px;
}

.timeline-item {
  position: relative;
}

.timeline-item::before {
  content: "●";
  color: #0d6efd;
  font-size: 1.2rem;
  position: absolute;
  left: -32px;
  top: 8px;
}


.custombtn::after{
  margin-left: 13px !important;
}
.custombtn{
  /* background-color: #dce6f0 !important; */
   background-color: #dee2e6 !important; 
   
   
  


  /* background-color: #afcce8 !important; */
}

.custombtn:not(.collapsed){
      padding-top: 10px;
    padding-bottom: 10px;
}

.progress{
  background-color:white !important;
}

.accordion-button:focus{
  box-shadow: none !important;
}
    .modal-dialog-slideout {
        position: fixed;
        margin: 0;
        right: 0;
        top: 0;
        bottom: 0;
        transform: translateX(100%);
        transition: transform 0.3s ease-out;
    }

    .modal.fade .modal-dialog.modal-dialog-slideout {
        transform: translateX(100%);
    }

    .modal.fade.show .modal-dialog.modal-dialog-slideout {
        transform: translateX(0);
    }

.course-progress-circle {
    position: relative;
    width: 30px;
    height: 30px;
}

.course-progress-circle svg {
    transform: rotate(-90deg);
}

.course-progress-circle circle {
    fill: none;
    stroke-width: 8;
    stroke-linecap: round;
}

.course-progress-circle .bg {
    stroke: #e6e6e6;
}

.course-progress-circle {
    position: relative;
    width: 50px;
    height: 50px;
}
.course-progress-circle .progress {
    stroke: #FC781A;
    stroke-dasharray: 283; 
    stroke-dashoffset: 283;
    transition: stroke-dashoffset 0.5s ease;
}

.course-progress-circle .percentage {
    position: absolute;
    top: 70%;
    left: 70%;
    transform: translate(-50%, -50%);
    font-size: 11px;
    font-weight: bold;
}


.select2-container--default .select2-selection--multiple{
  background-color: none;
  border: 1px solid #CCCCCC;
  color: #464646 !important;
  border-radius: 10px !important;
  cursor: pointer !important;
  padding-bottom: 0;
  padding-right: 0;
  height: 50px;
  padding: 7px 24px;

}


.select2-container--default.select2-container--focus .select2-selection--multiple{
  overflow: auto !important;
  scrollbar-width: none;
}

.select2-container--default .select2-selection--multiple.select2-selection--clearable {
   overflow: auto !important;
  scrollbar-width: none;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear{
  margin-right: 40px !important;
}



.maincolorbg{
background-color: #e7e9ef !important;
padding:0rem  1.25rem !important;
}

.accordion-item .accordion-button {
  background-color: #dbd7eb !important;
}

.labletext{
  color: rgb(108, 108, 226) !important;
  font-size: 15px !important;
}

.overlaysignmain{
  content:"";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  /* background-color: rgba(0, 0, 255, 0.2); */
  background-color: rgba(0, 0, 0, 0.3);
}
