.user_dashboard {
  width: 100%;
  min-height: 100vh;
}

.user_dashboard .dash_inner {
  width: 100%;
}

#loader {
  z-index: 1;
  width: 26px;
  height: 26px;
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #5393ea;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  position: relative;
  flex-shrink: 0;
}
#loader:after {
  content: "";
  position: absolute;
  top: -14px;
  left: -12px;
  margin: auto;
  width: 24px;
  height: 24px;
  z-index: 1;
  background: #f3f3f3;
  border-radius: 50%;
}

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

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

.dash_inner .tab-content {
  width: 100%;
  margin-block-start: 44px;
}

.order_container {
  width: 100%;
}

.order_container .maintitle {
  width: 100%;
  font-size: 24px;
  font-weight: var(--font_weight_bold);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #121622;
}
.order_container .dep_text {
  font-size: 16px;
  color: #969696;
  margin-block-start: 6px;
  text-align: center;
  font-weight: var(--font_weight_semiBold);
}

.order_container .accordion {
  width: 100%;
  margin-block-start: 45px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.order_container .accordion .accordion-item {
  border-radius: 12px;
  width: 100%;
  overflow: hidden;
}
.accordion-button {
  padding: 18px 20px;
  gap: 14px;
}

.accordion-button:not(.collapsed) {
  background: #fff;
  border-bottom: none;
  color: #3e4954;
  flex-wrap: wrap;
}
.accordion-button:not(.collapsed)::after {
  background-image: aqua;
}

.chip_group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.Certificate {
  font-size: 12px;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 26px;
  padding: 2px 10px;
  border-radius: 20px;
  background: #f1f4f8;
  font-weight: var(--font_weight_bold);
}
.chip_complete {
  font-size: 12px;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 26px;
  padding: 2px 10px;
  border-radius: 20px;
  background: #3fc381;
  font-weight: var(--font_weight_bold);
  color: #fff;
}

.inprogress {
  font-size: 12px;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 26px;
  padding: 2px 10px;
  border-radius: 20px;
  background: #5393ea;
  font-weight: var(--font_weight_bold);
  color: #fff;
}

.profile_Acc {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.profile_Acc .profile_img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #3fc381;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.profile_Acc .profile_img img {
  width: 27px;
  height: 27px;
  object-fit: contain;
}
.profile_Acc .profile_info {
  flex: 1;
}

.profile_Acc .profile_info .title {
  font-size: clamp(18px, 4vw, 20px);
  font-weight: var(--font_weight_medium);
  color: #3e4954;
}

.accordian_details .progress_sec {
  width: 100%;
  padding: 18px 22px;
  background: #f1f4f8;
}

.progress_sec .progress_status {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.progress_sec .progress_status .title {
  color: #121622;
  font-weight: 600;
}

.progress_sec .progress_status .complete_text {
  color: #5393ea;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.progress_sec .progress_status .complete_text span {
  color: #aaaaaa;
}

.accordian_details .progress_sec .progress {
  height: 5px;
  margin-block-start: 10px;
}

.accordian_details .progress_sec .progress .progress-bar {
  background: #5393ea;
}

.table_area {
  width: 100%;
  padding: 14px 22px;
  background: #fff;
}

.responsive_table {
  width: 100%;
  overflow: auto;
}
.responsive_table table {
  min-width: 700px;
}

.table_area table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
}
.table_area table thead tr th {
  background: #6e7d90;
  color: #fff;
  padding: 10px 20px;
  font-weight: var(--font_weight_semiBold);
  text-align: center;
}
.table_area table thead tr th:first-child {
  border-top-left-radius: 12px;
  text-align: left;
}
.table_area table thead tr th:last-child {
  border-top-right-radius: 12px;
}

.table_area table tbody tr {
  border-right: 1px solid #cddbed4f;
  border-left: 1px solid #cddbed4f;
}

.table_area table tbody tr td {
  border-bottom: 1px solid #cddbed4f;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: var(--font_weight_medium);
  text-align: center;
}

.table_area table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 12px;
}

.table_area table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 12px;
}

.table_area .book {
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
}
.table_area .book img {
  width: 15px;
}

.table_area .view {
  color: #488be7;
  text-decoration: underline;
}

.table_area .status_text {
  width: fit-content;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 20px;
  padding: 2px 10px;
  border-radius: 20px;
  background: #f1f4f8;
  font-weight: var(--font_weight_bold);
}

@media (max-width: 1023px) {
  .accordian_details {
    grid-template-columns: 100%;
  }
  .accordion-button {
    flex-wrap: wrap;
  }
}

/* user_profile_info */
.user_profile_info {
  width: 100%;
  max-width: 800px;
  margin-inline: auto;
  background: hsl(var(--bg_clr_white));
  border-radius: 14px;
  display: flex;
  align-items: stretch;
  gap: 20px;
  box-shadow: 0px 44px 10px -32px #0000000a;
}
.profile_left_side {
  width: fit-content;
  padding: 18px 22px;
  display: flex;
  align-items: stretch;
  gap: 24px;
}
.profile_left_side .profile_img {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  overflow: hidden;
}
.profile_left_side .profile_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.profile_info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.profile_info .top {
  color: #969696;
  font-size: 12px;
  font-weight: var(--font_weight_bold);
}
.profile_info .title {
  font-size: 18px;
  font-weight: var(--font_weight_bold);
  color: #121622;
}
.edit_profile {
  text-decoration: underline;
  color: #101010;
  font-size: 12px;
  font-weight: var(--font_weight_bold);
  margin-block-start: auto;
  cursor: pointer;
}
.profile_right_side {
  flex: 1;
  padding: 18px 36px;
  border-left: 1px solid #e2e9f2;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}
.item_profile {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
}
.item_profile .title {
  font-size: 38px;
  font-weight: 700;
  color: #5393ea;
}
.item_profile .top {
  font-size: 14px;
  color: #121622;
  font-weight: var(--font_weight_bold);
}

@media (max-width: 767px) {
  .user_profile_info {
    flex-direction: column;
  }
  .profile_left_side {
    padding: 18px 20px;
  }
  .profile_right_side {
    padding: 18px 20px;
    border-left: none;
    border-top: 1px solid #e2e9f2;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
  }
  .item_profile .top {
    font-size: 12px;
  }
}
/* user_profile_info */

/* profile_form */
.profile_form {
  width: 100%;
  max-width: 422px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.profile_Back {
  margin-block-start: 30px;
  text-align: center;
}
.profile_Back:hover {
  text-decoration: underline;
}

.profile_update_sec {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  max-width: 700px;
  margin-inline: auto;
}
.update_left_side {
  width: 100%;
}

.update_left_side .title {
  font-size: clamp(18px, 8vw, 32px);
  font-weight: var(--font_weight_bold);
  color: #121622;
}

.update_left_side .sub_text {
  font-size: 14px;
  color: #969696;
  margin-block-start: 8px;
}

.profile-pic {
  width: 200px;
  max-height: 200px;
  display: inline-block;
}

.file-upload {
  display: none;
}

.profile_pic {
  width: fit-content;
  position: relative;
  margin-block-start: 40px;
}
.circle {
  border-radius: 100% !important;
  overflow: hidden;
  width: 128px;
  height: 128px;
  border: 2px solid rgba(255, 255, 255, 0.2);
}
img {
  max-width: 100%;
  height: auto;
}
.p-image {
  position: absolute;
  bottom: 0px;
  right: -10px;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 4px 0px #00000014;
  background: #fff;
  border-radius: 50%;
  color: #000;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-size: 24px;
}
.p-image:hover {
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.upload-button {
  font-size: 1.2em;
}

.upload-button:hover {
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  color: #999;
}

@media (max-width: 575px) {
  .profile_update_sec {
    flex-direction: column;
    gap: 20px;
  }
}
/* profile_form */

/* quizsec */
.quiz_sec {
  width: 100%;
  min-height: calc(100vh - 171px);
  border-top: 1px solid #e8e8e8;
}
.quiz_inner {
  display: flex;
  align-items: flex-start;
  width: 100%;
  height: 100%;
}

.time_line {
  flex-shrink: 0;
  height: calc(100vh - 172px);
  border-left: 1px solid #e8e8e8;
  width: 350px;
}
.time_line .time_line_list {
  width: 100%;
  padding: 20px;
}
.time_line .time_line_list .heading_progress {
  width: 100%;
}

.heading_progress .title {
  font-size: 14px;
  font-weight: var(--font_weight_bold);
  color: #000;
  display: flex;
  align-items: center;
  gap: 5px;
}
.heading_progress .progress {
  height: 5px;
  margin-block-start: 20px;
}
.heading_progress .progress .progress-bar {
  background: #5393ea;
}
.heading_progress .progress_text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-block-start: 8px;
}
.heading_progress .progress_text span {
  font-size: 14px;
  color: #9d9d9d;
  font-weight: var(--font_weight_medium);
}
.heading_progress .progress_text span.blue {
  color: #5393ea;
}
.leason_list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-block-start: 20px;
}
.leason_list .leason_item {
  padding: 12px 14px;
  width: 100%;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.leason_list .leason_item:hover {
  background: #e9f2ff;
}

.leason_list .leason_item .leason_status {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #5393ea;
  display: flex;
  align-items: center;
  justify-content: center;
}
.leason_list .leason_item .leason_title {
  flex: 1;
}
.leason_list .leason_item .leason_title .title {
  font-size: 14px;
  font-weight: var(--font_weight_medium);
  color: #000;
  line-height: 1.5;
}

.leason_list .leason_item.active {
  background: #e9f2ff;
}

.leason_list .leason_item.active .leason_status {
  background: #010101;
}

.Q_A_area {
  width: 100%;
  flex: 1;
  padding: 20px 0;
  height: 100%;
}

.Q_A_area .q_a_area_inner {
  width: min(100% - 30px, 900px);
  margin-inline: auto;
  display: flex;
  align-items: flex-start;
}
.q_a_area_inner .back {
  width: 56px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-right: 1px solid #dfdfdf;
  color: #979797;
  font-size: larger;
  cursor: pointer;
}

.q_a_area_inner .main_question {
  flex: 1;
  padding: 0 24px;
  width: min(100%, 860px);
}
.q_a_area_inner .main_question .top_text {
  font-size: 14px;
  color: #5393ea;
  font-weight: var(--font_weight_medium);
}

.q_a_area_inner .main_question .title {
  font-size: clamp(18px, 8vw, 28px);
  font-weight: var(--font_weight_bold);
  color: #000;
  margin-block-start: 6px;
}

.quiz_btn_group {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-block-start: 30px;
  flex-wrap: wrap;
}
.main_question .text {
  font-size: 14px;
  color: #121622;
}

.question_border {
  border-bottom: 1px solid #d2dbe6;
  margin-block-start: 20px;
  padding-block-end: 8px;
}
.question_border .qes {
  font-weight: var(--font_weight_bold);
  font-size: 16px;
}

.question_border .qes .blue {
  color: #5393ea;
}

.interaction_area {
  width: 100%;
  margin-block-start: 30px;
}
.interaction_area .heading {
  font-weight: var(--font_weight_bold);
  font-size: 18px;
}

.radio-buttons {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-block-start: 26px;
}

.custom-radio {
  width: 100%;
}

.custom-radio input {
  display: none;
}

.radio-btn {
  width: 100%;
  min-height: 60px;
  display: inline-block;
  border-radius: 10px;
  position: relative;
  text-align: center;
  border: 1px solid #d2dbe7;
  box-shadow: 0px 8px 7px -7px #00000012;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 6px 20px;
}

.radio-btn > .r-check {
  width: 18px;
  height: 18px;
  border: 2px solid #cacaca;
  border-radius: 50%;
  transition: 0.5s;
  pointer-events: none;
  position: relative;
}

.radio-btn > .r-check::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.radio-btn .hobbies-icon {
  width: 150px;
}
.radio-btn .hobbies-icon .r-check {
  color: #ffdae9;
  line-height: 80px;
  font-size: 60px;
}

.radio-btn .hobbies-icon h3 {
  color: #121622;
  font-size: 14px;
  font-weight: var(--font_weight_bold);
  flex: 1;
  text-align: start;
}

.custom-radio input:checked + .radio-btn {
  border: 1px solid #5393ea;
}

.custom-radio input:checked + .radio-btn > .r-check {
  opacity: 1;
  border: 2px solid #5393ea;
}
.custom-radio input:checked + .radio-btn > .r-check::after {
  background: #5393ea;
}

.solution_type {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-block-start: 20px;
}

.solution_type .s_ques {
  flex-shrink: 0;
  font-weight: var(--font_weight_bold);
  font-size: 18px;
}

.solution_type input {
  max-width: 80px;
  min-height: 36px;
  padding: 6px 10px;
}
.audio_box {
  width: 100%;
  margin-block-start: 20px;
}

.audio_box audio {
  width: 100%;
}

/* audio */
.audio-player {
  height: 50px;
  width: 100%;
  background: #000000;
  font-family: arial;
  color: white;
  font-size: 0.75em;
  overflow: hidden;
  display: grid;
  grid-template-rows: 6px auto;
  margin-block-start: 20px;
}
.audio-player .timeline {
  background: white;
  width: 100%;
  position: relative;
  cursor: pointer;
  box-shadow: 0 2px 10px 0 #000;
}
.audio-player .timeline .progress {
  background: coral;
  width: 0%;
  height: 100%;
  transition: 0.25s;
}
.audio-player .controls {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding: 0 20px;
}
.audio-player .controls > * {
  display: flex;
  justify-content: center;
  align-items: center;
}
.audio-player .controls .toggle-play.play {
  cursor: pointer;
  position: relative;
  left: 0;
  height: 0;
  width: 0;
  border: 7px solid #00000000;
  border-left: 13px solid white;
}
.audio-player .controls .toggle-play.play:hover {
  transform: scale(1.1);
}
.audio-player .controls .toggle-play.pause {
  height: 15px;
  width: 20px;
  cursor: pointer;
  position: relative;
}
.audio-player .controls .toggle-play.pause:before {
  position: absolute;
  top: 0;
  left: 0px;
  background: white;
  content: "";
  height: 15px;
  width: 3px;
}
.audio-player .controls .toggle-play.pause:after {
  position: absolute;
  top: 0;
  right: 8px;
  background: white;
  content: "";
  height: 15px;
  width: 3px;
}
.audio-player .controls .toggle-play.pause:hover {
  transform: scale(1.1);
}
.audio-player .controls .time {
  display: flex;
}
.audio-player .controls .time > * {
  padding: 2px;
}
.audio-player .controls .volume-container {
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.audio-player .controls .volume-container .volume-button {
  height: 26px;
  display: flex;
  align-items: center;
}
.audio-player .controls .volume-container .volume-button .volume {
  transform: scale(0.7);
}
.audio-player .controls .volume-container .volume-slider {
  position: absolute;
  left: -3px;
  top: 15px;
  z-index: -1;
  width: 0;
  height: 15px;
  background: white;
  box-shadow: 0 0 20px #000;
  transition: 0.25s;
}
.audio-player .controls .volume-container .volume-slider .volume-percentage {
  background: coral;
  height: 100%;
  width: 75%;
}
.audio-player .controls .volume-container:hover .volume-slider {
  left: -123px;
  width: 120px;
}

/* audio */

.text_area {
  width: 100%;
  margin-block-start: 20px;
}
.text_area textarea {
  width: 100%;
  min-height: 80px;
  padding: 10px;
  border: 1px solid #d2dbe6;
  border-radius: 10px;
  font-size: 14px;
  font-weight: var(--font_weight_medium);
  resize: none;
}
.time_line_btn {
  display: none !important;
}

.chip_group2 {
  /* width: 100%; */
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-block-start: 20px;
}

.chip_group2 .chip {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 10px;
  background: #ebf0f6;
  color: #737a87;
  padding-inline: 24px;
  font-weight: var(--font_weight_bold);
}

/* js */

.input-file-container {
  position: relative;
  width: 100%;
  margin-block-start: 20px;
}

.input-file-trigger {
  display: flex;
  align-items: center;
  min-height: 68px;
  background: #fff;
  border: 1px solid #d2dbe7;
  border-radius: 10px;
  color: #000;
  font-size: 1em;
  transition: all 0.4s;
  cursor: pointer;
}

.input-file-trigger .icon {
  width: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 66px;
  border-right: 1px solid #d2dbe6;
}
.upload_text {
  padding-inline: 20px;
}

.input-file {
  position: absolute;
  top: 0;
  left: 0;
  width: 225px;
  opacity: 0;
  padding: 14px 0;
  cursor: pointer;
}
.input-file:hover + .input-file-trigger,
.input-file:focus + .input-file-trigger,
.input-file-trigger:hover,
.input-file-trigger:focus {
  background: #fff;
  color: #000;
}

.file-return {
  margin: 0;
}
.file-return:not(:empty) {
  margin: 1em 0;
}
.file-return {
  font-style: italic;
  font-size: 0.9em;
  font-weight: bold;
}
.file-return:not(:empty):before {
  content: "Selected file: ";
  font-style: normal;
  font-weight: normal;
}

/* js */

.footer_btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-block-start: 30px;
  flex-wrap: wrap;
}

.footer_btn .btn {
  justify-content: space-between;
  padding-block: 6px;
  padding-inline: 20px;
  border-radius: 10px;
  min-height: 40px;
  font-size: 14px;
}

@media (max-width: 767px) {
  .time_line_btn {
    display: block !important;
  }

  .time_line_btn .navbar-toggler-icon {
    width: 20px;
  }

  .quiz_inner {
    flex-direction: column-reverse;
  }
  .time_line {
    height: 100vh;
    max-width: 300px;
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    transform: translate(-100%);
    display: flex !important;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 10px 0 #00000012;
  }
  .time_line.show {
    transform: translate(0);
  }
  .q_a_area_inner .main_question {
    padding-inline: 16px;
  }
  .q_a_area_inner .back {
    width: 30px;
  }
}

@media (max-width: 575px) {
  .time_line_btn .navbar-toggler-icon {
    width: 14px;
  }
  .time_line_btn.navbar-toggler .navbar-toggler-icon:before,
  .time_line_btn.navbar-toggler .navbar-toggler-icon:after {
    width: 20px;
  }
}

/* quizsec */

/* drag and drop */
.drop_container {
  display: grid;
  margin-block-start: 20px;
  gap: 16px;
}

.drop_container {
  width: 100%;
}

.drop_card,
.drop_data {
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: grab;
}

.drop_card {
  width: 100%;
  justify-content: space-between;
  display: flex;
  align-items: center;
  min-height: 60px;
  background-color: #fff;
  box-shadow: 0px 8px 7px -7px #00000012;
  border: 1px solid #d2dbe7;
  border-radius: 10px;
  padding: 6px 20px;
  gap: 20px;
}

.drop_img {
  max-width: 100%;
  object-fit: contain;
}

.drop_name {
  font-size: var(--normal-font-size);
  color: var(--first-color);
  font-weight: 500;
}

.drop_profession {
  font-size: var(--smaller-font-size);
  color: var(--first-color-light);
}

.drop_social {
  margin: 0 0.375rem;
  color: var(--first-color-light);
  transition: 0.4s;
}

.drop_social:hover {
  color: var(--first-color);
}

/* Class name for the chosen item */

.sortable-chosen {
  box-shadow: 8px 8px 32px #e1e1e1;
}

/* Class name for the dragging item */

.sortable-drag {
  opacity: 0;
}

/* drag and drop */

/* video upload */

svg.myIcon {
  display: block;
  width: 100%;
  height: 100%;
}

.myIcon_invisible {
  opacity: 0;
}

#myIcon_hud {
  position: absolute;
  top: 0;
  left: 0;
  cursor: default;
  width: 100%;
  height: 100%;
  font-family: sans-serif;
  font-size: 20px;
  line-height: 25px;
  vertical-align: middle;
  transition: opacity 1s;
}

#myIcon_title,
#myIcon_skip {
  position: relative;
  line-height: 30px;
  height: 30px;
  padding: 0 10px;
  float: left;
}

.myIcon_skip_after {
  border: 1px solid lightgray;
}

#myIcon_close {
  margin: 10px;
  height: 30px;
  float: right;
  display: none;
}

.myIcon_active_control {
  fill: white;
  stop-color: white;
  stroke: white;
  stroke-width: 0;
  border-color: white;
}

.myIcon_inactive_control {
  fill: darkgray;
  stop-color: darkgray;
  stroke: darkgray;
  stroke-width: 0;
  border-color: darkgray;
}

#myIcon_controls {
  position: absolute;
  border-spacing: 10px;
  border-collapse: separate;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30px;
  background: #061b2b;
}

#myIcon_controls td,
th,
tr {
  border-collapse: separate;
  margin: 0;
  padding: 0;
  border: 0;
  border-spacing: 0;
}

#myIcon_clock {
  height: 100%;
  width: 125px;
  display: none;
}

#myIcon_play,
#myIcon_pause,
#myIcon_muted,
#myIcon_close,
#myIcon_mute,
#myIcon_fs_active,
#myIcon_fs_inactive {
  width: 20px;
  height: 20px;
}

#myIcon_volume {
  width: 100px;
  height: 20px;
  cursor: col-resize;
}

.myIcon_progress {
  cursor: col-resize;
}

.myIcon_progressBacking {
  height: 40%;
  border-radius: 100px;
  border: 1px solid lightgray;
  padding: 0;
  background-color: dimgray;
}

#myIcon_playpos,
#myIcon_loaded {
  height: 100%;
  width: 0;
  border-radius: 100px;
  border: none;
  transition: width linear 0.5s;
}
#myIcon_playpos {
  position: relative;
  top: -100%;
  background-color: white;
}
#myIcon_loaded {
  background-color: darkgray;
}

/*regular desktop and tablet*/
@media (min-device-width: 1200px) {
  #myIcon_hud {
    font-size: 16px;
    line-height: 16px;
  }

  #myIcon_play,
  #myIcon_pause,
  #myIcon_muted,
  #myIcon_close,
  #myIcon_mute,
  #myIcon_fs_active,
  #myIcon_fs_inactive {
    width: 20px;
    height: 20px;
  }

  #myIcon_volume {
    width: 100px;
    height: 20px;
  }

  #myIcon_controls {
    height: 32px;
    border-spacing: 8px;
  }
}

#myIcon_videoWrapper {
  /*display: none; !*turning off temporarily*!*/
  position: relative;
  height: auto;
  width: 100%;
  background: black;
}
#myIcon_videoWrapper > video {
  width: 100%;
  height: 100%;
}

/*a div that we would be playing inside of:*/
#target_div {
  width: 100%;
  margin-block-start: 20px;
  border-radius: 12px;
  overflow: hidden;
}
/* video upload */

/* next_leasson */
.next_leasson {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-block-start: 20px;
}

.back_to_courses {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #a8a8a8;
  font-weight: var(--font_weight_medium);
  cursor: pointer;
}

.next_leasson_btn {
  width: auto;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.description_sec {
  width: 100%;
}

.description_sec p {
  margin-block-start: 20px;
}

.description_sec ul {
  margin-block-start: 20px;
  padding-inline-start: 22px;
}

.description_sec ul li {
  margin-block-start: 6px;
  list-style: disc;
}

.gallary_image {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  margin-block: 24px;
}

.gallary_image img {
  width: 100%;
  border-radius: 20px;
}

.quiz_sec .q_a_area_inner .main_question .accordion-item .title {
  font-size: 14px;
}

.quiz_sec .accordion-item {
  border: 1px solid #cfd5dd8c;
  box-shadow: 0px 8px 7px -7px #00000012;
  border-radius: 10px;
  overflow: hidden;
}

.course_title {
  width: 100%;
  margin-block: 20px;
}
.course_title .title {
  font-size: 24px;
  font-weight: var(--font_weight_bold);
  color: #121622;
}

.quiz_sec .accordion-button::after {
  transform: rotate(270deg);
}

.quiz_sec .accordion-item.active {
  border: 1px solid #5393ea;
  box-shadow: 0px 8px 7px -7px #00000012;
  border-radius: 10px;
  overflow: hidden;
  background: #f6faff;
}

.quiz_sec .accordion-item .accordion-button {
  background: none;
}

.u_certificate {
  width: 100%;
  box-shadow: 0px 8px 7px -7px #00000012;
  border: 1px solid #cfd5dd4f;
  background: white;
  border-radius: 10px;
  margin-block-start: 44px;
}

.u_certificate_inner {
  width: 100%;
  background: #e2eeff;
  border: 1px solid #5393ea;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
  border-radius: 10px;
  flex-wrap: wrap;
}

.u_certificate_inner .u_certificate_img {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}

.u_certificate_inner .u_certificate_img img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.u_certificate_inner .u_certificate_img .C_title {
  color: #121622;
  font-size: 14px;
  font-weight: var(--font_weight_semiBold);
}

.u_certificate_info {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.u_certificate_info .info {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #5b6d85;
  font-size: 12px;
  font-weight: var(--font_weight_bold);
  flex-wrap: wrap;
}

.u_certificate_info .blue {
  color: #5393ea;
  font-weight: var(--font_weight_bold);
  font-size: 12px;
}

.u_progress {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.u_progress .progress {
  width: 190px;
  height: 4px;
}

.u_progress .progress .progress-bar {
  background: #5393ea;
}

.d_link {
  font-size: 14px;
  color: #5393ea;
  text-decoration: underline;
}

.u_certificate_info2 .chip_top {
  font-size: 12px;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 26px;
  padding: 2px 10px;
  border-radius: 20px;
  background: #5393ea;
  font-weight: var(--font_weight_bold);
  color: #fff;
}

/* next_leasson */
