* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--dark-color);
}

html,
body {
  min-height: 100%;
}

body {
  display: flex;
  flex-direction: column;
}

body.main-body {
  background: var(--bg-gradiend);
}

body.lock {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: var(--dark-color);
}

.main {
  height: 100%;
  position: relative;
}

#page {
  flex: 1 0 auto;
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 25px;
  color: var(--gray-text);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  flex: 0 0 auto;
  margin-top: 100px;
}

:root {
  /*h1 style*/
  --display-2XL-font-size: 84px;
  --display-2XL-font-style: normal;
  --display-2XL-font-weight: 700;
  --display-2XL-line-height: 94px;

  /*h2 style*/
  --display-XL-font-size: 48px;
  --display-XL-font-style: normal;
  --display-XL-font-weight: 700;
  --display-XL-line-height: 60px;

  /*h3 style*/
  --display-2XL-font-size: 32px;
  --display-2XL-font-style: normal;
  --display-2XL-font-weight: 600;
  --display-2XL-line-height: 40px;


  /*colors */
  --gray-text: #9696A3;
  --blue-color: #313FFE;
  --hover-color: #101DD5;
  --active-color: #0913A4;
  --bg-gradiend: linear-gradient(248deg, rgba(198, 188, 255, 0.54) 0.64%, rgba(230, 243, 85, 0.10) 100%), linear-gradient(0deg, #FFF 0%, #FFF 100%), #FFF;
  --white-color: #fff;
  --dark-color: #232332;
  --status-color: #E6F355;

  /*diffrent*/
  --button-border-radius: 6px;
  --cards-fz: 16px;
}

nav {
  padding-top: 15px;
  padding-bottom: 15px;
}

body {
  background: var(--bg-gradiend);
}

button {
  outline: none;
  cursor: pointer;
  border: none;
  background-color: transparent;
}

img,
svg {
  user-select: none;
}

input {
  border: none;
  outline: none;
}

ul {
  list-style: none;
}

.simple-button {
  padding: 12px 20px;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  border-radius: var(--button-border-radius);
  background-color: var(--blue-color);
  color: var(--white-color);
  transition: all .5s;
}

.simple-button:hover {
  background-color: var(--hover-color);
  transition: all .5s;
}

.simple-button:active {
  background-color: var(--active-color);
  transition: all .5s;
}

a.nav-button {
  padding: 10px 20px;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  border: 2px solid #232332;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  border-radius: 6px;
  background-color: transparent;
  transition: all .5s;
}

a.nav-button:hover {
  color: var(--gray-text);
  transition: all .5s;
}

.blue-colored {
  background-color: var(--blue-color);
  transition: all .5s;
}

.blue-colored:hover {
  background-color: var(--hover-color);
  transition: all .5s;
}

.blue-colored:active {
  background-color: var(--active-color);
  transition: all .5s;
}

.container {
  padding: 0;
  margin: 0 auto;
  max-width: 1230px;
  padding-left: 15px;
  padding-right: 15px;
}

.blue-text {
  color: var(--blue-color);
}

.blue-bg {
  background-color: var(--blue-color);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  align-items: center;
}

.nav-menu__items {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-menu__item a {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  transition: all .5s;
  color: var(--dark-color);
}

.nav-menu__item a.active {
  color: var(--hover-color);
}

.nav-menu__item a:hover {
  transition: all .5s;
  color: var(--hover-color);
}


.nav-menu__item a:active {
  transition: all .5s;
  color: var(--active-color);
}

.my-info {
  margin-top: 50px;
}

.my-info__item {
  border-radius: 20px;
  background-color: var(--white-color);
}

.my-info__items {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 20px;
}


.welcome {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 27px;
  grid-column: span 6;
  grid-column-start: 1;
  grid-column-end: 7;
  grid-row-start: 1;
  grid-row-end: 2;
  background: var(--gradient-light, linear-gradient(253deg, rgba(198, 188, 255, 0.27) 10.69%, rgba(230, 243, 85, 0.05) 100%), #FFF);
}

.my-info__item-welcome-text__title {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px;
  color: var(--dark-color);
}

.current-user__name {
  color: var(--blue-color);
  text-transform: capitalize;
}

.my-info__item-welcome-text__description {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  color: var(--dark-color);
}

.my-info__item.mentor {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  padding: 30px;
  grid-column: span 2;
  grid-column-end: 9;
  grid-column-start: 7;
  grid-row-start: 1;
  grid-row-end: 5;
}

.my-info__item.administrator {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  padding: 30px;
  grid-column: span 2;
  grid-column-start: 1;
  grid-column-end: 3;
  grid-row-start: 2;
  grid-row-end: 5;
}


.my-info__item-mentor__title {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
}

.my-info__item-mentor__head {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.my-info__item-mentor__head-image {
  width: 118px;
  height: 118px;
  border-radius: 15px;
  margin-bottom: 15px;
}

.my-info__item-mentor__head-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.my-info__item-mentor__head-job__status {
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  max-width: fit-content;
  max-height: fit-content;
  padding: 7px 8px;
  border-radius: 10px;
  background-color: var(--status-color);
}

.my-info__item-mentor__head-name {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 34px;
  text-align: center;
}

.my-info__item-mentor-about__items {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.my-info__item-mentor-about__item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.my-info__item-mentor-about__item-image {
  width: 48px;
  height: 48px;
  padding: 6px;
  border-radius: 15px;
  background: rgba(4, 4, 226, 0.07);
  backdrop-filter: blur(5px);
}

.my-info__item-mentor-about__item-image img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.my-info__item-mentor-about__item-title {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  color: var(--gray-text);
}

.my-info__item-mentor-about__item-position__name {
  font-size: var(--cards-fz);
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.my-info__item-mentor__btn-contact {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  transition: all .5s;
  padding: 16px 20px;
  border-radius: var(--button-border-radius);
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  border: 2px solid var(--dark-color);
}

.my-info__item-mentor__btn-contact:hover {
  color: var(--gray-text);
}

.my-info__item-mentor__btn-contact:active {
  color: rgba(35, 35, 50, 0.8)
}

.my-info__item.progress {
  grid-column-start: 3;
  grid-column-end: 7;
  grid-row-start: 2;
  grid-row-end: 5;
}

.my-info__item.progress {
  padding: 30px;
}

.my-info__item-progress__title {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  margin-bottom: 25px;
}

.my-info__item-progress__items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}


.my-info__item-progress__item {
  height: 115px;
  width: 115px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  border: 7px solid #D7D7DF;
  padding: 7px;
  /* box-shadow: 6px 6px 10px -1px ; */
  /* gap: 10px; */
  /* background: 
    radial-gradient(closest-side, white 88%, transparent 80% 100%),
    conic-gradient(#313FFE 75%, #D7D7DF 0);  */
  position: relative;
}

.my-info__item-progress__item svg {
  position: absolute;
  top: -6px;
  left: -6px;
}

.my-info__item-progress__item circle {
  fill: none;
  stroke: url(#GradientColor);
  stroke-width: 7px;
  stroke-dasharray: 500;
  stroke-dashoffset: 334;
}


.my-info__item-progress__item-percent {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  color: var(--blue-color);
}

.my-info__item-progress__item-text {
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  text-align: center;
  color: var(--gray-text);
}

.history {
  margin-top: 35px;
}

.history-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.history-title {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  margin-bottom: 20px;
}

.show-all {
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  text-decoration-line: underline;
  color: var(--gray-text);
}

.history-items {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.history__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.history-item__info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.history-item__info-description__title {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}

.history-item__info-description__lesson {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  color: var(--gray-text);
}

.my-courses {
  margin-top: 102px;
}

.my-courses-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}

.my-courses-head__title {
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 60px;
  display: flex;
  align-items: center;
  gap: 13px;
}

.my-courses-head__count {
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 15px;
  background-color: var(--status-color);
}

.courses-card__items {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.courses-card__item {
  display: flex;
  align-items: center;
  background-color: var(--white-color);
  border-radius: 20px;
}

.courses-card__item-details {
  padding: 20px;
}

.courses-card__item-details-category {
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  border-radius: var(--button-border-radius);
  background-color: var(--status-color);
  padding: 8px;
  max-width: fit-content;
  color: #535818;
}

.courses-card__item-details-course-name {
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
  transition: all .5s;
  margin-bottom: 10px;
  max-width: 598px;
  display: block;
  height: 80px;
}

.courses-card__item-details-course-name:hover {
  color: var(--blue-color);
  transition: all .5s;
}

.courses-card__item-details-review {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
  margin-top: 12px;
}

.courses-card__item-details-review__leave-review-btn {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}

.courses-card__item-details__description {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 34px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -moz-box;
  -moz-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  box-orient: vertical;
  max-height: 68px;
}

.courses-card__item-details__info-items {
  margin-top: 15px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.courses-card__item-details__info-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.courses-card__item-preview {
  flex: 0 0 41%;
  height: 336px;
}

.courses-card__item-preview img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.courses-card__item-details-review__leave-review-btn {
  display: none;
}

.courses-card__item-details__info-item-detail {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  color: var(--gray-text);
}

.courses-card__item-details__info-item__icon {
  width: 48px;
  height: 48px;
  padding: 6px;
  border-radius: 15px;
  background: rgba(4, 4, 226, 0.07);
  backdrop-filter: blur(5px);
}

.documentation {
  margin-top: 102px;
}

.documentation-block {
  background: linear-gradient(270deg, #232332 0%, #313FFE 100%);
  padding: 40px 60px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-height: 279px;
}

.documentation-block__info-title {
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 48px;
  margin-bottom: 15px;
  color: var(--white-color);
}

.documentation-block__info-description {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  color: var(--white-color);
}

.documentation-block__info-link {
  padding: 16px 28px;
  border: 1px solid var(--white-color);
  border-radius: var(--button-border-radius);
  color: var(--white-color);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  margin-top: 30px;
  display: block;
  max-width: 195px;
  width: 100%;
  text-align: center;
}

.documentation-block__image {
  transform: translate(5rem, 0.15rem);
}

.search {
  margin-top: 50px;
}

.search-body {
  margin-top: 0;
}

.search-form__input-wrapper {
  display: flex;
  width: 100%;
  height: 62px;
  position: relative;
  border-radius: var(--button-border-radius);
}

.search-form__input-wrapper .earch-form__input-wrapper__icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.search-form__input-wrapper input {
  width: 100%;
  height: 100%;
  background-color: var(--white-color);
  padding-left: 4rem;
  border-radius: var(--button-border-radius);
}

.search-form__input-wrapper button {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  min-width: 157px;
}

.search-bubbles-sort__items {
  margin-top: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.search-bubbles-sort__item {
  background-color: var(--white-color);
  border-radius: var(--button-border-radius);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  color: var(--dark-color);
  cursor: pointer;
}

.search-bubbles-sort__item a {
  padding: 15px 10px;
  display: block;
  text-transform: capitalize;
}

.all-courses {
  margin-top: 30px;
}

.all-courses__inner {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.all-courses__inner aside {
  flex: 0 0 24%;
}

.all-courses__inner .courses-card__item-preview {
  flex: 0 0 32%;
}

aside form {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.aside-form-filter__title {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
  margin-bottom: 30px;
}

.aside-form-input__group input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.aside-form-input__group label {
  position: relative;
  cursor: pointer;
  display: block;
  width: 100%;
}

.aside-form-input__group label:before {
  content: '';
  -webkit-appearance: none;
  background-color: transparent;
  border: 1px solid var(--blue-color);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 13px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 5px;
  border-radius: var(--button-border-radius);
}

.aside-form-input__group input:checked+label:before {
  background-color: var(--blue-color);
}

.aside-form-input__group input:checked+label:after {
  content: '';
  display: block;
  position: absolute;
  top: 2px;
  left: 11px;
  width: 6px;
  height: 14px;
  border: solid var(--white-color);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.filters-tags {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.filters-tags__item a {
  text-transform: capitalize;
}

.all-courses__count {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.all-courses__count-info {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}

.all-courses__count .spacer {
  flex: 0 0 24%;
}

.search-bubbles-sort__item.active {
  background-color: #E6F355;
}

.reset-bubble {
  margin-left: 5px;
}

.filter-title {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #9696a379;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
  font-family: 'Inter', sans-serif;
}

.lesson {
  margin-top: 50px;
}

.lesson-inner {
  display: flex;
  gap: 20px;
}

.lesson-inner__content {
  flex: 0 0 66%;
  background-color: var(--white-color);
  border-radius: 20px;
  padding: 30px;
}

.lesson-inner aside {
  flex: 0 0 32%;
}

.lesson-inner__content-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.lesson-inner__content-head__title {
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
  max-width: 493px;
}

.lesson-inner__content-head__review {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 172px;
  height: 46px;
  width: 100%;
  border-radius: var(--button-border-radius);
  border: 2px solid  #232332;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  transition: all .5s;
}

.lesson-inner__content-head__review span {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px; 
}

.lesson-inner__content-head__review:hover span {
  transition: all .5s;
  opacity: .5;
}

.lesson-inner__content-video {
  margin-top: 30px;
  margin-bottom: 30px;
  width: 100%;
  max-height: 434px;
  min-height: 434px;
  border-radius: 20px;
  overflow: hidden;
}

.lesson-inner__content-video img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.lesson-inner__content-video iframe {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  min-height: 434px;
  max-height: 434px;
}

.lesson-inner__content-video video {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  min-height: 434px;
  max-height: 434px;
}

/*tabs*/

.lesson-inner__content-info__tabs-header {
  width: 100%;
  display: flex;
  gap: 40px;
}
.lesson-inner__content-info__tabs-header-tab {
  color: var(--dark-color);
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  }
.lesson-inner__content-info__tabs-header-tab:after {
  content: '';
  display: block;
  width: 0%;
  height: 3px;
  background-color: var(--blue-color);
  margin-top: 4px;
  transition: 0.4s;
}

.lesson-inner__content-info__tabs-header-tab.active {
  color: var(--blue-color);
}

.lesson-inner__content-info__tabs-header-tab.active:after {
  width: 100%;
}

.lesson-inner__content-info__tabs-header-tab:hover{
  color: var(--blue-color);
  transition: 0.4s;
}
.lesson-inner__content-info__tabs-header-tab:hover:after {
  width: 100%;
}
.lesson-inner__content-info__tabs-tabcontent {
  width: 100%;
  display: flex;
  transition: 0.3s;
}

.lesson-inner__content-info__tabs-tabcontent .lesson-inner__content-info__tabs-tabcontent__description:after {
  content: '';
  display: block;
  width: 0%;
  height: 3px;
  background-color: #c78030;
  margin-top: 30px;
}  
.lesson-inner__content-info__tabs-tabcontent .lesson-inner__content-info__tabs-tabcontent__description {
  margin-top: 30px;
  color: var(--dark-color);
  font-weight: 300;
  padding-right: 20px;
  width: 100%;
}
.lesson-inner__content-info__tabs .hide {
  display: none;
}
.lesson-inner__content-info__tabs .show {
  display: flex;
}

.lesson-inner__content-info__tabs-tabcontent__description h6 {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 34px;
}

.lesson-inner__content-info__tabs-tabcontent__description p {
  margin-top: 20px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.lesson-inner__content-info__tabs-tabcontent__description ul {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lesson-inner__content-info__tabs-tabcontent__description ul li
 {
  position: relative;
  padding-left: 30px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.lesson-inner__content-info__tabs-tabcontent__description ul li::before
{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-image: url('../img/mark.svg');
  /* transform: translateY(-50%); */
  width: 25px;
  height: 25px;
}

.lesson-inner__content-info__tabs-tabcontent__description h3,
.lesson-inner__content-info__tabs-tabcontent__description h2 {
  margin-top: 35px;
}

.lesson-inner__content-info__tabs-tabcontent__description hr {
  margin-top: 15px;
  margin-bottom: 15px;
}

/* .lesson-inner__content-info__tabs-tabcontent__description ol li */
/* .lesson-inner__content-info__tabs-tabcontent__description ol li::before  */

.lesson-inner__content-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  margin-top: 25px;
}

.back {
  transition: all .5s;
  border-radius: var(--button-border-radius);
  border: 2px solid #232332;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 157px;
  width: 100%;
  height: 50px;
  color: var(--dark-color);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
}

.back:hover {
  transition: all .5s;
  color: var(--gray-text);
}

.back:active {
  transition: all .5s;
}

.complete{
  background-color: var(--blue-color);
  transition: all .5s;
  border-radius: var(--button-border-radius);
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 157px;
  width: 100%;
  height: 50px;
  color: var(--white-color);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
} 

.complete:hover {
  background-color: var(--hover-color);
  transition: all .5s;
}

.complete:active {
  background-color: var(--active-color);
  transition: all .5s;
}

.comments-item__about {
  display: flex;
  align-items: center;
  gap: 10px;
}

.comments-item__about-avatar {
  width: 60px;
  height: 60px;
}

.comments-item__about-avatar img{
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.comments-item__about-autor-name  a{
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  color: var(--dark-color);
}

.comments-item__about-date {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  color: var(--gray-text);
}

.comments-items {
  border: 1px solid rgba(49, 63, 254, 0.08);
  background-color: var(--white-color);
  border-radius: 20px;
  padding: 30px;
  margin-top: 30px;
}

.comments-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.comments-item__question-title {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 34px; /* 170% */
  color: var(--dark-color);
  margin-bottom: 10px;
}

.comments-item__question-text {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  color: var(--dark-color);
  margin-bottom: 20px;
}

.comments-item__reaction {
  display: flex;
  gap: 20px;
}

.comments-item__reaction-likes,
.comments-item__reaction-dislikes {
  display: flex;
  align-items: center;
  gap: 5px;
}

.comments-item__reaction-likes span,
.comments-item__reaction-dislikes span {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  color: var(--gray-text);
}

.comments-item__answers {
  margin-bottom: 30px;
}

.comments-item__answers-header {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  transition: all .5s;
}

.comments-item__answers-header.active {
  margin-bottom: 30px;
  transition: all .5s;
}

.comments-item__answers-header svg {
  transition: all .5s;
}

.comments-item__answers-header.active svg {
  transform: rotate(180deg);
  transition: all .5s;
}

.comments-item__answers-items {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-height: 0;
  transition: all .5s;
  overflow: hidden;
}

.comments-item__answers-header.active + .comments-item__answers-items {
  max-height: 1500px;
  transition: all .5s;
}

/* .comments-item__answers-item {
  padding-left: 40px;
} */

.comments-item__answers-item .comments-item__about {
  margin-bottom: 20px;
}

.comments-item__answers-header span {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px; 
  color: var(--blue-color);
}



.comments-items .depth-1 .comments-item {
  padding-left: 0;
}

.comments-items .depth-1 {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 30px;
}

.comments-item__answers .depth-2 .comments-item {
  padding-left: 40px;
}

.comments-item__answers-item p {
  margin-top: 0;
}

.depth-2 {
  padding-left: 40px;
}


.comment-reply-link {
  border-radius: 6px;
  transition: all .5s;
  border-radius: var(--button-border-radius);
  border: 2px solid #232332;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 157px;
  width: 100%;
  height: 50px;
  color: var(--dark-color);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.comment-reply-link:hover {
  transition: all .5s;
  color: var(--gray-text);
}


.comment-form-comment textarea {
  padding-top: 15px;
  padding-left: 15px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  width: 100%;
  border-radius: 6px;
  border: 1px solid var(--gray-text);
  background-color: var(--white-color);
  outline: none;
}

#cancel-comment-reply-link {
  color: rgb(201, 11, 11);
}

.lesson-progress__graphic {
  padding: 20px;
  border-radius: 20px;
  background-color: var(--white-color);
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.lesson-progress__graphic-info__title {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}

.lesson-progress__graphic-info__total {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 150% */
  margin-top: 5px;
}

.course-progress__steps-item {
  padding: 20px;
  border-radius: 20px;
  background-color: var(--white-color);
}

.course-progress__head {
  display: flex;
  justify-content: space-between;
}

.course-progress__head-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.course-progress__head-info-title {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 34px;
}

.course-progress__head-info-time {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  color: var(--gray-text);
}

.send-comment {
  background-color: var(--blue-color);
  transition: all .5s;
  border-radius: var(--button-border-radius);
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 157px;
  width: 100%;
  height: 50px;
  color: var(--white-color);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
}

.send-comment:hover {
  background-color: var(--hover-color);
  transition: all .5s;
}

.send-comment:active {
  background-color: var(--active-color);
  transition: all .5s;
}

.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #232332;
  left: 0;
  top: 0;
  opacity: .4;
  z-index: 11;
  display: none;
}

.overlay.active {
  display: block;
}

.popup-review {
  position: fixed;
  left: 0;
  top: -150%;
  opacity: 0;
  height: 100%;
  width: 100%;
  z-index: 12;
  /* background: var(--bg-gradiend); */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: auto;
  transition: all .5s;
}

.popup-review.active {
  top: 0;
  opacity: 1;
  transition: all .5s;
}

.popup-review__inner {
  background: var(--bg-gradiend);
  padding: 50px;
  border-radius: 20px;
  max-width: 605px;
  position: relative;
}

.close-popup {
  position: absolute;
  right: 26px;
  top: 26px;
}

.popup-review__inner-content  h3{
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
}

.popup-review__inner-content  h3 span {
  color: var(--blue-color);
}

.popup-review__inner-content__description {
  display: flex;
  gap: 15px;
  margin-top: 15px;
  margin-bottom: 30px;
}

.popup-review__inner-content__description p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; 
}

.wp-block-button__link {
  border-radius: var(--button-border-radius);
  background-color: var(--blue-color);
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  max-width: 200px;
  width: 100%;
  height: 50px;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  transition: all .5s;
}

.wp-block-button__link:hover {
  background-color: var(--hover-color);
  transition: all .5s;
}

.wp-block-button__link:active {
  background-color: var(--active-color);
  transition: all .5s;
}

body.lock {
  overflow: hidden;
}

.glsr-default .glsr-review-title {
  display: none;
}

.lesson-inner__content-info__tabs-tabcontent__description h6{
  margin-bottom: 20px;
}

.course-progress__steps-marks {
  margin-top: 15px;
}

.course-progress__head {
  border-bottom: 1px solid #9696A3;
  padding-bottom: 15px;
}

.course-progress__steps-mark__name {
  display: flex;
  align-items: center;
  gap: 10px;
}

.course-progress__steps-mark .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.course-progress__head-img {
  display: none;
}

.course-progress__steps-mark__checkbox .aside-form-input__group {
  pointer-events: none;
}

.course-progress__steps-mark__checkbox .aside-form-input__group input:checked+label:after {
  pointer-events: none;
}

.course-progress__steps-mark__checkbox a {
  pointer-events: none;
}

.svg-txt {
  fill: var(--blue-color);
  font-size: 14px;
  font-weight: 600;
}

.main {
  overflow: hidden;
}

.history-items {
  height: 120px;
  overflow-y: auto;
}

.navigation-wrap {
  display: flex;
  gap: 25px;
  flex: 0 0 60%;
  justify-content: space-between;
}

.burger-menu {
  display: none;
}

.filters-tags {
  margin-bottom: 20px;
}

@media(max-width: 1156px) {
  .my-info__item-mentor__btn-contact {
    font-size: 14px;
  }

  .all-courses__inner {
    flex-direction: column;
  }

  .all-courses__inner aside {
    display: flex;
    flex-direction: column;
  }

  .filters-tags {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }

  .spacer {
    display: none;
  }

  .search-bubbles-sort__items {
    flex-wrap: wrap;
  }
}

@media(max-width: 992px) {
  .my-info__items {
    grid-template-columns: 1fr;
  }
  .welcome {
    grid-column: initial;
    grid-column-start: initial;
    grid-column-end: initial;
    grid-row-start: initial;
    grid-row-end: initial;
  }

  .my-info__item.mentor {
    grid-column: initial;
    grid-column-start: initial;
    grid-column-end: initial;
    grid-row-start: initial;
    grid-row-end: initial;
  } 

  .my-info__item.administrator {
    grid-column: initial;
    grid-column-start: initial;
    grid-column-end: initial;
    grid-row-start: initial;
    grid-row-end: initial;
  }

  .my-info__item.progress {
    grid-column: initial;
    grid-column-start: initial;
    grid-column-end: initial;
    grid-row-start: initial;
    grid-row-end: initial;
  }

  .my-info__item-mentor__title {
    display: none;
  }

  .my-info__item-mentor-about__items {
    flex-direction: row;
    gap: 80px;
  }

  .documentation-block__image {
    transform: translate(0rem, 0.15rem);
  }

  .lesson-inner {
    flex-direction: column-reverse;
  }

  .lesson-inner__content-head {
    flex-direction: column;
  }

  .lesson-inner__content-video {
    min-height: 390px;
    max-height: 390px;
  }
  

}

@media(max-width: 768px) {
  .courses-card__item {
    flex-direction: column;
  }

  .courses-card__item-preview img {
    border-radius: 0;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }

  .documentation-block {
    position: relative;
    overflow: hidden;
  }

  .documentation-block__image {
    position: absolute;
    right: -4rem;
    bottom: -4px;
    width: 300px;
  }

  .documentation-block__image img {
    object-fit: contain;
    width: 100%;
    height: 100%;
  }

  nav{
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 25;
    background: var(--bg-gradiend);
  }

  .top-m {
    top: 46px;
  }

  .burger-menu {
    display: block;
  }

  .burger-menu_button {
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  
  .burger-menu_lines::before,
  .burger-menu_lines::after,
  .burger-menu_lines {
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--dark-color);
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .burger-menu_lines {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .burger-menu_lines::before {
    content: '';
    top: -12px;
  }
  .burger-menu_lines::after {
    content: '';
    top: 12px;
  }
  
  
  .burger-menu_button.active .burger-menu_lines {
    background-color: transparent;
  }
  .burger-menu_button.active .burger-menu_lines::before {
    top: 0;
    transform: rotate(45deg);
  }
  .burger-menu_button.active .burger-menu_lines::after{
    top: 0;
    transform: rotate(-45deg);
  }

  .navigation-wrap {
    position: absolute;
    top: 110px;
    left: -120%;
    background-color: #fff;
    width: 100%;
    height: 100vh;
    z-index: 20;
    flex-direction: column;
    justify-content: initial;
    gap: 60px;
    padding-left: 15px;
    padding-top: 30px;
    transition: all.5s;
  }

  .navigation-wrap.active {
    left: 0;
    transition: all.5s;
  }

  .logo {
    padding-left: 15px;
    max-width: 106px;
    height: 50px;
  }

  .logo img {
    object-fit: contain;
    width: 100%;
    height: 100%;
  }


  .nav-inner .logo img{
    object-fit: contain;
    width: 100%;
    height: 100%;
  }

  .nav-menu__items {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .nav-menu__item {
    width: 100%;
  }

  .nav-menu__item a {
    display: block;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
  }  

  .nav-catch-phraze {
    display: none;
  }

  header {
    height: 110px;
  }
  

}

@media(max-width: 650px) {
  .my-info__item-mentor-about__items {
    flex-direction: column;
    gap: 15px;
  }

  .my-info__item-mentor__btn-contact {
    padding: 6px 15px;
  }

  .history-items {
    height: 130px;
    overflow-y: auto;
  }

  .lesson-inner__content-video {
    min-height: initial;
  }

  .lesson-inner__content-info__tabs-header {
    flex-direction: column;
  }
}

@media(max-width: 540px) {
  .my-info__item-progress__items {
    flex-direction: column;
  }

  .history-item__info {
    flex-direction: column;
    align-items: flex-start;
    max-width: 60%;
  }

  .history-items {
    height: 200px;
  }
  
  .history-item__info-image {
    display: none;
  }

  .my-courses-head {
    flex-direction: column;
  }

  .courses-card__item-details__info-items {
    flex-wrap: wrap;
    gap: 20px;
  }

  .courses-card__item-details-course-name {
    height: initial;
  }
}

@media(max-width: 400px) {
  .courses-card__item-details__info-items {
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
  }

  .courses-card__item-details-course-name {
    height: initial;
  }

  .documentation-block {
    padding: 20px;
  }

  .documentation-block__image {
    position: absolute;
    right: -2rem;
    bottom: -4px;
    width: 157px;
  }

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

  .my-info__item-welcome__image {
    display: none;
  }

  .lesson-inner__content-navigation {
    flex-direction: column;
  }
}