@font-face {
  font-family: 'Roboto-Regular';
  src: url("../fonts/Roboto-Regular.ttf") format("truetype");
}

@font-face {
  font-family: 'Roboto-Bold';
  src: url("../fonts/Roboto-Bold.ttf") format("truetype");
}

* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -moz-tap-highlight-color: rgba(0, 0, 0, 0);
}

body,
html {
  margin: 0;
  padding: 0;
  font-family: 'Roboto-Regular';
  -webkit-transition: all .2s;
  transition: all .2s;
}

.page-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  margin: auto;
  width: 1400px;
  max-width: 100%;
}

.top-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-right: 20px;
  min-height: 158px;
}

.top-bar__element {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.top-bar__element .burger-menu {
  position: relative;
}

.top-bar__element .burger-menu img {
  -webkit-transition: all .2s;
  transition: all .2s;
}

.top-bar__element .burger-menu.mobile {
  display: none;
}

.top-bar__element .burger-menu__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  left: 0;
  top: calc(100% - 32px);
  width: 295px;
  border: solid 1px #000000;
  padding: 20px 30px;
  background-color: #FFFFFF;
  z-index: 200;
  display: none;
}

@media screen and (max-width: 768px) {
  .top-bar__element .burger-menu__content {
    top: calc(100% + 25px);
    width: calc(100% - 62px);
  }
}

.top-bar__element .burger-menu__content__list-element {
  font-size: 14px;
  line-height: 45px;
  font-family: 'Roboto-Regular';
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.top-bar__element .burger-menu__content__list-element:hover, .top-bar__element .burger-menu__content__list-element.active {
  color: #FF8000;
}

.top-bar__element .burger-menu__content__separator {
  background-color: #FF8000;
  height: 1px;
  margin: 20px 0;
}

@media screen and (max-width: 768px) {
  .top-bar__element {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .top-bar__element:first-of-type .logo {
    margin: 22px auto 10px;
  }
  .top-bar__element:last-of-type {
    margin-bottom: 30px;
  }
  .top-bar__element .burger-menu.mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .top-bar__element .burger-menu.desktop {
    display: none;
  }
  .top-bar__element .burger-menu__content {
    top: calc(100% + 58px);
  }
}

.top-bar__fonts, .top-bar__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.top-bar__fonts div:not(:last-of-type), .top-bar__nav div:not(:last-of-type) {
  margin-right: 20px;
}

.top-bar__fonts {
  margin-right: 80px;
}

.top-bar__icon-48 {
  width: 48px;
  height: 48px;
}

.top-bar__icon-48.burger-menu {
  margin-right: 35px;
}

.top-bar__icon-36 {
  width: 36px;
  height: 36px;
}

.top-bar__icon-48, .top-bar__icon-36 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .top-bar {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
    padding-right: 0;
    margin: 0 20px;
  }
  .top-bar__nav .top-bar__icon-36:not([data-lang]) {
    display: none;
  }
  .top-bar__nav .top-bar__icon-36[data-lang] {
    margin-right: 0;
  }
  .top-bar__fonts {
    margin: 0 20px 0 auto;
  }
}

.filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  min-height: 10px;
  background-color: #FF8000;
  padding: 0 10px;
}

.filters:empty {
  padding: 0;
}

.filters__button {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all .2s;
  transition: all .2s;
  font-size: 14px;
  line-height: 12px;
  font-family: 'Roboto-Regular';
  background-color: #FF8000;
  color: #FFFFFF;
  padding: 10px 20px;
  border: solid 1px #FFFFFF;
  border-radius: 5px;
  cursor: pointer;
  position: relative;
  margin: 15px;
}

.filters__button:hover {
  border-color: #000000;
  color: #000000;
}

.filters__button.sub {
  padding-right: 40px;
}

.filters__button.sub .sub__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  width: 328px;
  z-index: 100;
  cursor: auto;
}

.filters__button.sub .sub__menu .separator {
  height: 7px;
}

.filters__button.sub .sub__menu .list {
  background-color: #FFFFFF;
  padding: 20px 25px;
  border: solid 1px #FF8000;
  border-radius: 5px;
}

.filters__button.sub .sub__menu .list .line {
  height: 1px;
  margin-bottom: 12px;
  background-color: #FF8000;
}

.filters__button.sub .sub__menu .list label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  cursor: pointer;
  padding-right: 40px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  height: 100%;
  height: 24px;
  -webkit-transition: all .2s;
  transition: all .2s;
  font-size: 14px;
  line-height: 12px;
  font-family: 'Roboto-Regular';
  color: #000000;
  text-transform: uppercase;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  min-height: 24px;
}

.filters__button.sub .sub__menu .list label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.filters__button.sub .sub__menu .list label input:checked ~ i {
  background-color: #FF8000;
}

.filters__button.sub .sub__menu .list label input:checked ~ span {
  color: #FF8000;
}

.filters__button.sub .sub__menu .list label i {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 25px;
  max-width: 25px;
  min-width: 25px;
  height: 25px;
  max-height: 25px;
  min-height: 25px;
  border-radius: 5px;
  cursor: pointer;
  -webkit-transition: border-color .2s;
  transition: border-color .2s;
  border: solid 1px #FF8000;
  background-color: #FFFFFF;
}

.filters__button.sub .sub__menu .list label:hover {
  color: #000000;
}

.filters__button.sub .sub__menu .list label:hover input ~ i {
  -webkit-transition: all .2s;
  transition: all .2s;
  background-color: #f2f2f2;
}

.filters__button.sub .sub__menu .list label:hover input ~ span {
  color: #FF8000;
}

.filters__button.sub .sub__menu .list label:hover input:checked ~ i {
  -webkit-transition: all .2s;
  transition: all .2s;
  background-color: #ff8d1a;
}

.filters__button.sub .sub__menu .list label:not(:last-of-type) {
  margin-bottom: 12px;
}

.filters__button.sub::after {
  -webkit-transition: all .2s;
  transition: all .2s;
  position: absolute;
  content: '';
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-image: url("../img/arrowDown_white_24.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% auto;
}

.filters__button:hover.sub::after {
  background-image: url("../img/arrowDown_black_24.svg");
}

.filters__checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 15px;
}

.filters__checkbox label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  cursor: pointer;
  padding-right: 40px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  height: 100%;
  height: 24px;
  -webkit-transition: all .2s;
  transition: all .2s;
  font-size: 14px;
  line-height: 12px;
  font-family: 'Roboto-Bold';
  color: #FFFFFF;
}

.filters__checkbox label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.filters__checkbox label input:checked ~ i {
  background-color: #FFFFFF;
}

.filters__checkbox label input:checked ~ span {
  color: #FFFFFF;
}

.filters__checkbox label i {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 25px;
  max-width: 25px;
  min-width: 25px;
  height: 25px;
  max-height: 25px;
  min-height: 25px;
  border-radius: 5px;
  cursor: pointer;
  -webkit-transition: border-color .2s;
  transition: border-color .2s;
  border: solid 1px #FFFFFF;
  background-color: #FF8000;
}

.filters__checkbox label:hover {
  color: #000000;
}

.filters__checkbox label:hover input ~ i {
  -webkit-transition: all .2s;
  transition: all .2s;
  background-color: #ff8d1a;
}

.filters__checkbox label:hover input:checked ~ i {
  -webkit-transition: all .2s;
  transition: all .2s;
  background-color: #f2f2f2;
}

@media screen and (max-width: 768px) {
  .filters {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 10px;
    margin: 0 20px;
  }
  .filters__button {
    margin: 0 0 10px 0;
  }
  .filters__button.sub .sub__menu {
    width: 100%;
  }
  .filters__checkbox {
    margin: 0 0 10px 0;
  }
  .filters__checkbox:last-of-type {
    margin-bottom: 0;
  }
  .filters__checkbox label {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: calc(50% - 22.5px);
  }
}

.user-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 768px) {
  .user-details {
    margin: 0 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.user-details__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #FF9D3A;
  padding: 15px 25px;
  min-width: 165px;
}

.user-details__name .name {
  font-size: 24px;
  line-height: 26px;
  font-family: 'Roboto-Regular';
}

.user-details__name .id {
  font-size: 14px;
  line-height: 24px;
  font-family: 'Roboto-Regular';
}

.user-details__status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 14px;
  line-height: 24px;
  font-family: 'Roboto-Regular';
  background-color: #FFD7AE;
  padding: 15px 40px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

@media screen and (max-width: 768px) {
  .user-details__status {
    padding: 20px 25px 10px;
  }
}

.user-details__balance {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 14px;
  line-height: 24px;
  font-family: 'Roboto-Regular';
  background-color: #FFD7AE;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 22px 25px;
}

@media screen and (max-width: 768px) {
  .user-details__balance {
    padding: 10px 25px 20px;
  }
}

.content h1 {
  color: #000000;
  margin: 60px 25px 50px;
  font-size: 24px;
  line-height: 26px;
  font-family: 'Roboto-Regular';
  -webkit-transition: color .2s;
  transition: color .2s;
}

@media screen and (max-width: 768px) {
  .content h1 {
    margin-left: 20px;
    margin-right: 20px;
  }
}

.content h1.my-lessons {
  color: #000000;
  margin: 0 25px 50px;
  font-size: 24px;
  line-height: 26px;
  font-family: 'Roboto-Regular';
}

@media screen and (max-width: 768px) {
  .content h1.my-lessons {
    margin-left: 20px;
    margin-right: 20px;
  }
}

.content h1.lesson-view-main-headline {
  color: #000000;
  margin: 0 25px 50px;
  font-size: 24px;
  line-height: 26px;
  font-family: 'Roboto-Regular';
}

@media screen and (max-width: 768px) {
  .content h1.lesson-view-main-headline {
    margin-left: 20px;
    margin-right: 20px;
  }
}

.content__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
}

@media screen and (max-width: 1415px) {
  .content__list {
    padding: 0 20px !important;
  }
}

@media screen and (max-width: 895px) {
  .content__list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (max-width: 768px) {
  .content__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.content__list__element {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 254px;
  min-height: 429px;
  border: solid 1px #FF8000;
}

@media screen and (max-width: 768px) {
  .content__list__element {
    width: auto;
    max-width: 100%;
  }
}

.content__list__element .cart-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #FF8000;
}

.content__list__element .cart-bar span {
  font-size: 18px;
  line-height: 12px;
  font-family: 'Roboto-Bold';
  padding: 20px 24px 19px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  color: #FFFFFF;
}

.content__list__element .cart-bar__btn {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all .2s;
  transition: all .2s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #FFFFFF;
  padding: 15px 16px;
  width: 24px;
  cursor: pointer;
}

.content__list__element .cart-bar__btn svg path {
  -webkit-transition: all .2s;
  transition: all .2s;
  fill: #000000;
}

.content__list__element .cart-bar__btn:hover {
  background-color: #000000;
}

.content__list__element .cart-bar__btn:hover svg path {
  fill: #FFFFFF;
}

.content__list__element .img-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.content__list__element .content-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 15px 25px 20px;
}

.content__list__element .content-box__description {
  margin: 0;
  color: #000000;
  font-size: 14px;
  line-height: 24px;
  font-family: 'Roboto-Regular';
}

.content__list__element .content-box__detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.content__list__element .content-box__detail__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 24px;
  min-width: 24px;
  max-width: 24px;
  height: 24px;
  min-height: 24px;
  max-height: 24px;
  margin-right: 10px;
}

.content__list__element .content-box__detail__text {
  font-size: 14px;
  line-height: 15px;
  font-family: 'Roboto-Bold';
}

.content__more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.content__more__btn {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all .2s;
  transition: all .2s;
  font-size: 14px;
  line-height: 24px;
  font-family: 'Roboto-Bold';
  background-color: #FF8000;
  color: #FFFFFF;
  text-transform: uppercase;
  padding: 10px 25px;
  border-radius: 5px;
  cursor: pointer;
  margin: 50px auto 60px;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.content__more__btn:hover {
  background-color: #000000;
  color: #FFFFFF;
}

.content__breadcrumbs {
  font-size: 14px;
  line-height: 18px;
  font-family: 'Roboto-Regular';
  color: #000000;
  display: inherit;
  position: relative;
  padding: 60px 25px 40px;
}

.content__breadcrumbs a {
  text-decoration: none;
  color: inherit;
  display: inline;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.content__breadcrumbs a:hover {
  color: #FF8000;
}

.content__breadcrumbs a:not(:last-of-type) {
  position: relative;
  padding-right: 16px;
  margin-right: -5px;
}

.content__breadcrumbs a:not(:last-of-type)::after {
  -webkit-transition: all .2s;
  transition: all .2s;
  position: absolute;
  content: '>';
  right: 8px;
  top: 0;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  color: #000000;
}

@media screen and (max-width: 768px) {
  .content__breadcrumbs {
    padding: 40px 20px;
  }
  .content__breadcrumbs.bottom-zero {
    padding-bottom: 5px;
  }
}

.content__columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 60px;
}

@media screen and (max-width: 1200px) {
  .content__columns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.content__columns__element {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.content__columns__element h1 {
  color: #000000;
  margin: 0 0 30px;
  font-size: 24px;
  line-height: 26px;
  font-family: 'Roboto-Regular';
}

@media screen and (max-width: 768px) {
  .content__columns__element h1 {
    margin-left: 20px;
    margin-right: 20px;
  }
}

@media screen and (max-width: 768px) {
  .content__columns__element h1 {
    margin: 0 0 30px;
  }
}

.content__columns__element h2 {
  color: #000000;
  font-size: 18px;
  line-height: 26px;
  font-family: 'Roboto-Bold';
  padding-left: 0;
}

.content__columns__element:first-of-type {
  padding: 0 60px 0 25px;
  width: 605px;
  min-width: 605px;
}

.content__columns__element:first-of-type img {
  max-width: 605px;
  width: 100%;
}

@media screen and (max-width: 1415px) {
  .content__columns__element:first-of-type {
    padding-right: 25px;
  }
}

@media screen and (max-width: 1200px) {
  .content__columns__element:first-of-type {
    width: auto;
    min-width: unset;
    margin-bottom: 40px;
  }
}

.content__columns__element:last-of-type {
  padding-left: 60px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

@media screen and (max-width: 1415px) {
  .content__columns__element:last-of-type {
    padding: 0 25px;
  }
}

.content__columns__element .details-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.content__columns__element .details-box h2 {
  margin: 40px 0 30px;
}

.content__columns__element .details-box__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 44px;
}

.content__columns__element .details-box__row:not(:last-of-type) {
  margin-bottom: 10px;
}

.content__columns__element .details-box__row .title {
  font-size: 14px;
  line-height: 24px;
  font-family: 'Roboto-Bold';
  min-width: 165px;
}

.content__columns__element .details-box__row .title:not(:first-of-type) {
  font-weight: 400;
}

.content__columns__element .details-box__row .data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.content__columns__element .details-box__row .data span {
  font-size: 14px;
  line-height: 24px;
  font-family: 'Roboto-Regular';
}

.content__columns__element .details-box__row .data span:not(:last-of-type) {
  margin-right: 25px;
}

.content__columns__element .details-box__row .data span.btn {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all .2s;
  transition: all .2s;
  font-size: 14px;
  line-height: 24px;
  font-family: 'Roboto-Bold';
  color: #FF8000;
  text-transform: uppercase;
  padding: 10px 25px;
  border: solid 1px #FF8000;
  border-radius: 5px;
  cursor: pointer;
}

.content__columns__element .details-box__row .data span.btn:hover {
  border-color: #000000;
  color: #000000;
}

.content__columns__element .buttons-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
}

.content__columns__element .buttons-box .btn1 {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all .2s;
  transition: all .2s;
  font-size: 14px;
  line-height: 24px;
  font-family: 'Roboto-Bold';
  color: #FF8000;
  text-transform: uppercase;
  padding: 10px 25px;
  border: solid 1px #FF8000;
  border-radius: 5px;
  cursor: pointer;
}

.content__columns__element .buttons-box .btn1:hover {
  border-color: #000000;
  color: #000000;
}

.content__columns__element .buttons-box .btn2 {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all .2s;
  transition: all .2s;
  font-size: 14px;
  line-height: 24px;
  font-family: 'Roboto-Bold';
  background-color: #FF8000;
  color: #FFFFFF;
  text-transform: uppercase;
  padding: 10px 25px;
  border-radius: 5px;
  cursor: pointer;
  margin-left: 20px;
}

.content__columns__element .buttons-box .btn2:hover {
  background-color: #000000;
  color: #FFFFFF;
}

.content__columns__element .description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.content__columns__element .description h2 {
  margin: 30px 0 40px;
}

.content__columns__element .description p {
  margin: 0;
  color: #000000;
  font-size: 14px;
  line-height: 24px;
  font-family: 'Roboto-Regular';
}

.content__columns__element .description p:not(:last-of-type) {
  margin-bottom: 25px;
}

@media screen and (max-width: 768px) {
  .content__columns__element {
    padding: 0 20px !important;
  }
}

.content__columns__element-timeline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.content__columns__element-timeline:first-of-type {
  min-width: 655px;
  padding-left: 25px;
  -webkit-transition: all .2s;
  transition: all .2s;
}

@media screen and (min-width: 1200px) {
  .content__columns__element-timeline:first-of-type.folded {
    min-width: 92px;
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
  }
}

@media screen and (max-width: 1436px) {
  .content__columns__element-timeline:last-of-type {
    padding-right: 25px;
  }
}

.content__columns__element-timeline h1 {
  color: #000000;
  margin: 0 0 30px;
  font-size: 24px;
  line-height: 26px;
  font-family: 'Roboto-Regular';
}

@media screen and (max-width: 768px) {
  .content__columns__element-timeline h1 {
    margin-left: 20px;
    margin-right: 20px;
  }
}

@media screen and (max-width: 768px) {
  .content__columns__element-timeline h1 {
    margin: 0 0 30px;
  }
}

.content__columns__element-timeline .timeline-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  margin-left: 9px;
  padding-left: 20px;
  border-left: solid 2px #FF8000;
  width: auto;
  opacity: 1;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.content__columns__element-timeline .timeline-box.grow {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.content__columns__element-timeline .timeline-box::after, .content__columns__element-timeline .timeline-box::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 2px;
  left: -1px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #FF8000;
}

@media screen and (max-width: 1200px) {
  .content__columns__element-timeline .timeline-box {
    width: 100%;
  }
}

@media screen and (min-width: 1200px) {
  .content__columns__element-timeline .timeline-box.folded {
    width: 0;
    opacity: 0;
    visibility: hidden;
    margin-left: 0;
    padding: 0;
    border-left: 0;
  }
  .content__columns__element-timeline .timeline-box.folded::after, .content__columns__element-timeline .timeline-box.folded::before {
    width: 0;
  }
}

.content__columns__element-timeline .timeline-box::after {
  top: 0;
}

.content__columns__element-timeline .timeline-box::before {
  bottom: 0;
}

.content__columns__element-timeline .timeline-box__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

@media screen and (max-width: 1200px) {
  .content__columns__element-timeline .timeline-box__wrapper {
    width: 100%;
  }
}

.content__columns__element-timeline .timeline-box__fold {
  display: none;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding-left: 20px;
}

.content__columns__element-timeline .timeline-box__fold-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 62px;
  height: 29px;
  background-color: #F1F1F1;
  border-radius: 5px;
  -webkit-transition: all .2s;
  transition: all .2s;
  cursor: pointer;
}

.content__columns__element-timeline .timeline-box__fold-button:hover {
  background-color: #e4e4e4;
}

@media screen and (min-width: 1200px) {
  .content__columns__element-timeline .timeline-box__fold {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .content__columns__element-timeline .timeline-box__fold.folded {
    padding-left: 0;
  }
  .content__columns__element-timeline .timeline-box__fold.folded .timeline-box__fold-button img {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}

.content__columns__element-timeline .timeline-box__nav-up, .content__columns__element-timeline .timeline-box__nav-down {
  position: relative;
  background-color: #ECECEC;
  border-radius: 5px;
  width: 502px;
  height: 29px;
  cursor: pointer;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.content__columns__element-timeline .timeline-box__nav-up img, .content__columns__element-timeline .timeline-box__nav-down img {
  position: absolute;
  height: 13px;
  width: 11px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.content__columns__element-timeline .timeline-box__nav-up:hover, .content__columns__element-timeline .timeline-box__nav-down:hover {
  background-color: #dfdfdf;
}

.content__columns__element-timeline .timeline-box__nav-up {
  margin-bottom: 20px;
}

.content__columns__element-timeline .timeline-box__nav-down {
  margin-top: 20px;
}

.content__columns__element-timeline .timeline-box__content {
  overflow: hidden;
  height: 400px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.content__columns__element-timeline .timeline-box__content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.content__columns__element-timeline .timeline-box__content__element {
  font-size: 14px;
  line-height: 16px;
  font-family: 'Roboto-Regular';
  background-color: #D9D9D9;
  position: relative;
  width: 100%;
  max-width: 470px;
  border: solid 1px #D9D9D9;
  border-radius: 5px;
  padding: 15px;
  margin-bottom: 20px;
  -webkit-transition: all .2s;
  transition: all .2s;
  cursor: pointer;
}

.content__columns__element-timeline .timeline-box__content__element .text {
  margin: 10px 0 0;
}

.content__columns__element-timeline .timeline-box__content__element .label {
  position: absolute;
  top: -1px;
  bottom: -1px;
  right: -82px;
  border-radius: 5px;
  width: 128px;
  z-index: -1;
  background-image: url("../img/info_white_48.svg");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.content__columns__element-timeline .timeline-box__content__element .label.red {
  background-color: #E50019;
}

.content__columns__element-timeline .timeline-box__content__element .label.green {
  background-color: #00B754;
}

.content__columns__element-timeline .timeline-box__content__element:hover {
  background-color: #FF8000;
}

.content__columns__element-timeline .timeline-box__content__element.important, .content__columns__element-timeline .timeline-box__content__element.current {
  background-color: #FF8000;
}

.content__columns__element-timeline .timeline-box__content__element.important:hover, .content__columns__element-timeline .timeline-box__content__element.current:hover {
  background-color: #FFFFFF;
}

.content__columns__element-timeline .timeline-box__content__element.important ~ *, .content__columns__element-timeline .timeline-box__content__element.current ~ * {
  border-color: #D9D9D9;
  color: #818181;
  background-color: #FFFFFF;
}

.content__columns__element-timeline .timeline-box__content__element.important ~ *:hover, .content__columns__element-timeline .timeline-box__content__element.current ~ *:hover {
  background-color: #FFFFFF;
}

.content__columns__element-timeline .timeline-box__content__element:last-of-type {
  margin-bottom: 0;
}

@media screen and (max-width: 1200px) {
  .content__columns__element-timeline .timeline-box__nav-up, .content__columns__element-timeline .timeline-box__nav-down {
    width: auto;
    max-width: unset;
  }
  .content__columns__element-timeline .timeline-box__content__element {
    width: auto;
    max-width: unset;
  }
  .content__columns__element-timeline .timeline-box__content__element .label {
    top: calc(100% - 5px);
    bottom: auto;
    left: -1px;
    width: calc(100% + 2px);
    height: 35px;
    background-size: 20px;
    background-position: bottom 5px center;
  }
  .content__columns__element-timeline .timeline-box__content__element:has(.label) {
    margin-bottom: 50px;
  }
  .content__columns__element-timeline .timeline-box__content__element:last-of-type:has(.label) {
    margin-bottom: 30px;
  }
}

.content__columns__element-timeline .user-profile__section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.content__columns__element-timeline .user-profile__section h2 {
  font-size: 18px;
  line-height: 20px;
  font-family: 'Roboto-Bold';
  margin: 30px 0 40px;
}

@media screen and (max-width: 1200px) {
  .content__columns__element-timeline .user-profile__section h2 {
    margin-top: 50px;
  }
}

.content__columns__element-timeline .user-profile__message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  padding-left: 63px;
}

.content__columns__element-timeline .user-profile__message:not(:last-of-type) {
  margin-bottom: 40px;
}

.content__columns__element-timeline .user-profile__message::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 0;
  width: 60px;
  height: 60px;
  background-position: 0 0;
  background-repeat: no-repeat;
  border-radius: 5px;
}

.content__columns__element-timeline .user-profile__message.envelope::after {
  background-image: url("../img/envelope_36.svg");
}

.content__columns__element-timeline .user-profile__message.bell::after {
  background-image: url("../img/notification_36.svg");
}

.content__columns__element-timeline .user-profile__message__date-and-edit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 36px;
}

.content__columns__element-timeline .user-profile__message__date-and-edit span {
  font-size: 14px;
  line-height: 24px;
  font-family: 'Roboto-Regular';
}

.content__columns__element-timeline .user-profile__message__date-and-edit .edit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.content__columns__element-timeline .user-profile__message__date-and-edit .edit img {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  max-height: 100%;
  cursor: pointer;
}

.content__columns__element-timeline .user-profile__message__date-and-edit .edit img:not(:last-of-type) {
  margin-right: 20px;
}

.content__columns__element-timeline .user-profile__message__title {
  font-size: 14px;
  line-height: 24px;
  font-family: 'Roboto-Bold';
}

.content__columns__element-timeline .user-profile__message__text {
  font-size: 14px;
  line-height: 24px;
  font-family: 'Roboto-Regular';
  margin: 10px 0 0;
}

.content__columns__element-timeline .user-profile__more-button {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all .2s;
  transition: all .2s;
  font-size: 14px;
  line-height: 24px;
  font-family: 'Roboto-Bold';
  background-color: #FF8000;
  color: #FFFFFF;
  text-transform: uppercase;
  padding: 10px 25px;
  border-radius: 5px;
  cursor: pointer;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  margin-top: 50px;
}

.content__columns__element-timeline .user-profile__more-button:hover {
  background-color: #000000;
  color: #FFFFFF;
}

@media screen and (max-width: 1200px) {
  .content__columns__element-timeline .user-profile__message {
    padding-left: 0;
  }
  .content__columns__element-timeline .user-profile__message::after {
    display: none;
  }
  .content__columns__element-timeline .user-profile__message__title {
    margin-top: 15px;
  }
  .content__columns__element-timeline .user-profile__more-button {
    -ms-flex-item-align: stretch;
        -ms-grid-row-align: stretch;
        align-self: stretch;
    margin-top: 30px;
  }
}

.content__columns__element-timeline .lesson__section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.content__columns__element-timeline .lesson__section__title {
  font-size: 18px;
  line-height: 20px;
  font-family: 'Roboto-Bold';
  margin: 0 0 35px;
}

@media screen and (max-width: 1200px) {
  .content__columns__element-timeline .lesson__section__title {
    margin-top: 50px;
  }
}

.content__columns__element-timeline .lesson__section__date {
  font-size: 14px;
  line-height: 24px;
  font-family: 'Roboto-Regular';
  margin-bottom: 10px;
}

.content__columns__element-timeline .lesson__section__lesson-title {
  font-size: 14px;
  line-height: 24px;
  font-family: 'Roboto-Bold';
}

.content__columns__element-timeline .lesson__section__lesson-text {
  font-size: 14px;
  line-height: 24px;
  font-family: 'Roboto-Regular';
  margin: 10px 0;
}

.content__columns__element-timeline .lesson__section__lesson-text:last-of-type {
  margin-bottom: 0;
}

.content__columns__element-timeline .lesson__section__embed {
  margin: 25px 0;
}

@media screen and (max-width: 1200px) {
  .content__columns__element-timeline {
    min-width: unset !important;
    padding: 0 20px !important;
  }
}

.content__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 60px;
}

.content__column h1 {
  color: #000000;
  margin: 0 0 40px 25px;
  font-size: 24px;
  line-height: 26px;
  font-family: 'Roboto-Regular';
}

@media screen and (max-width: 768px) {
  .content__column h1 {
    margin-left: 20px;
    margin-right: 20px;
  }
}

@media screen and (max-width: 768px) {
  .content__column h1 {
    margin: 0 20px 50px;
    padding: 0;
  }
}

.content__column.list-table-wrapper {
  padding-bottom: 20px;
}

.content__column .cart-view-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.content__column .cart-view-list__element {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 50px 40px 50px 65px;
}

.content__column .cart-view-list__element:nth-child(2n-1) {
  background-color: #F6F6F6;
}

.content__column .cart-view-list__element .checkbox,
.content__column .cart-view-list__element .number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  cursor: pointer;
  padding-right: 40px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  height: 100%;
  height: 24px;
  -webkit-transition: all .2s;
  transition: all .2s;
  font-size: 14px;
  line-height: 12px;
  font-family: 'Roboto-Regular';
  color: #000000;
  text-transform: uppercase;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 95px;
  padding: 0;
  cursor: auto;
}

.content__column .cart-view-list__element .checkbox input,
.content__column .cart-view-list__element .number input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.content__column .cart-view-list__element .checkbox input:checked ~ i,
.content__column .cart-view-list__element .number input:checked ~ i {
  background-color: #FF8000;
}

.content__column .cart-view-list__element .checkbox input:checked ~ span,
.content__column .cart-view-list__element .number input:checked ~ span {
  color: #FF8000;
}

.content__column .cart-view-list__element .checkbox i,
.content__column .cart-view-list__element .number i {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 25px;
  max-width: 25px;
  min-width: 25px;
  height: 25px;
  max-height: 25px;
  min-height: 25px;
  border-radius: 5px;
  cursor: pointer;
  -webkit-transition: border-color .2s;
  transition: border-color .2s;
  border: solid 1px #FF8000;
  background-color: #FFFFFF;
}

.content__column .cart-view-list__element .checkbox:hover,
.content__column .cart-view-list__element .number:hover {
  color: #000000;
}

.content__column .cart-view-list__element .checkbox:hover input ~ i,
.content__column .cart-view-list__element .number:hover input ~ i {
  -webkit-transition: all .2s;
  transition: all .2s;
  background-color: #f2f2f2;
}

.content__column .cart-view-list__element .checkbox:hover input ~ span,
.content__column .cart-view-list__element .number:hover input ~ span {
  color: #FF8000;
}

.content__column .cart-view-list__element .checkbox:hover input:checked ~ i,
.content__column .cart-view-list__element .number:hover input:checked ~ i {
  -webkit-transition: all .2s;
  transition: all .2s;
  background-color: #ff8d1a;
}

.content__column .cart-view-list__element .checkbox label,
.content__column .cart-view-list__element .number label {
  height: 25px;
  width: 25px;
}

.content__column .cart-view-list__element .checkbox label i,
.content__column .cart-view-list__element .number label i {
  border-color: #000000;
  left: 0;
  right: auto;
}

.content__column .cart-view-list__element .checkbox:hover input ~ i,
.content__column .cart-view-list__element .number:hover input ~ i {
  background-color: #FFFFFF;
}

.content__column .cart-view-list__element .checkbox input ~ i:hover,
.content__column .cart-view-list__element .number input ~ i:hover {
  background-color: #f2f2f2;
}

.content__column .cart-view-list__element .photo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 300px;
  min-width: 300px;
  margin-right: 80px;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.content__column .cart-view-list__element .photo img {
  width: 100%;
}

@media screen and (max-width: 1045px) {
  .content__column .cart-view-list__element .photo {
    min-width: unset;
    margin-right: 40px;
  }
}

.content__column .cart-view-list__element .details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.content__column .cart-view-list__element .details.mobile {
  display: none;
}

.content__column .cart-view-list__element .details h2 {
  color: #000000;
  margin: 0 0 20px;
  font-size: 18px;
  line-height: 26px;
  font-family: 'Roboto-Bold';
  width: 100%;
  max-width: 365px;
  padding: 0;
}

.content__column .cart-view-list__element .details__tables {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 14px;
  line-height: 24px;
  font-family: 'Roboto-Regular';
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.content__column .cart-view-list__element .details__tables table tr td:first-of-type {
  padding-right: 30px;
}

.content__column .cart-view-list__element .details__tables table * + * td {
  padding-top: 10px;
}

.content__column .cart-view-list__element .details__tables table:first-of-type {
  margin-right: 30px;
}

.content__column .cart-view-list__element .details__tables table:last-of-type {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.content__column .cart-view-list__element .details__tables table:last-of-type tr td {
  height: 26px;
}

.content__column .cart-view-list__element .details__tables table:last-of-type tr td:first-of-type {
  text-align: right;
}

.content__column .cart-view-list__element .details__tables table:last-of-type tr td:last-of-type {
  text-align: right;
}

@media screen and (max-width: 1240px) {
  .content__column .cart-view-list__element .details__tables {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .content__column .cart-view-list__element .details__tables table tr td:first-of-type {
    width: 150px;
    min-width: 150px;
    padding-right: 0;
  }
  .content__column .cart-view-list__element .details__tables table tr td:last-of-type {
    padding-left: 10px;
  }
  .content__column .cart-view-list__element .details__tables table:first-of-type {
    margin-right: 0;
  }
  .content__column .cart-view-list__element .details__tables table:last-of-type tr td:first-of-type {
    text-align: left;
  }
  .content__column .cart-view-list__element .details__tables table:last-of-type tr td:last-of-type {
    text-align: left;
  }
  .content__column .cart-view-list__element .details__tables * + table {
    padding-top: 10px;
  }
}

.content__column .cart-view-list__element .details__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 20px;
}

.content__column .cart-view-list__element .details__buttons .filled {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all .2s;
  transition: all .2s;
  font-size: 14px;
  line-height: 24px;
  font-family: 'Roboto-Bold';
  background-color: #FF8000;
  color: #FFFFFF;
  text-transform: uppercase;
  padding: 10px 25px;
  border-radius: 5px;
  cursor: pointer;
}

.content__column .cart-view-list__element .details__buttons .filled:hover {
  background-color: #000000;
  color: #FFFFFF;
}

.content__column .cart-view-list__element .details__buttons .unfilled {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all .2s;
  transition: all .2s;
  font-size: 14px;
  line-height: 24px;
  font-family: 'Roboto-Bold';
  color: #FF8000;
  text-transform: uppercase;
  padding: 10px 25px;
  border: solid 1px #FF8000;
  border-radius: 5px;
  cursor: pointer;
}

.content__column .cart-view-list__element .details__buttons .unfilled:hover {
  border-color: #000000;
  color: #000000;
}

.content__column .cart-view-list__element .trash {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all .2s;
  transition: all .2s;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 165px;
}

.content__column .cart-view-list__element .trash svg {
  cursor: pointer;
}

.content__column .cart-view-list__element .trash svg path {
  -webkit-transition: all .2s;
  transition: all .2s;
  fill: #000000;
}

.content__column .cart-view-list__element .trash svg:hover path {
  fill: #FF8000;
}

@media screen and (max-width: 1045px) {
  .content__column .cart-view-list__element .trash {
    width: 100px;
  }
}

.content__column .cart-view-list__element--summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  line-height: 24px;
  font-family: 'Roboto-Regular';
  padding-right: 205px;
  padding-bottom: 0;
  background-color: #FFFFFF !important;
}

.content__column .cart-view-list__element--summary .user-data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-right: 55px;
  gap: 55px;
}

.content__column .cart-view-list__element--summary .user-data__element {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.content__column .cart-view-list__element--summary .user-data__element h2 {
  color: #000000;
  margin: 0 0 20px 0;
  font-size: 18px;
  line-height: 26px;
  font-family: 'Roboto-Bold';
  padding-left: 0;
}

.content__column .cart-view-list__element--summary .user-data__element span a {
  color: #000000;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.content__column .cart-view-list__element--summary .user-data__element span a:hover {
  color: #FF8000;
}

.content__column .cart-view-list__element--summary .user-data__element span:not(:last-of-type) {
  margin-bottom: 10px;
}

.content__column .cart-view-list__element--summary .summary-data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  min-width: 280px;
}

.content__column .cart-view-list__element--summary .summary-data table tr td:first-of-type {
  text-align: right;
  padding-right: 30px;
}

.content__column .cart-view-list__element--summary .summary-data table tr td:last-of-type {
  text-align: right;
}

.content__column .cart-view-list__element--summary .summary-data .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 50px;
  gap: 20px;
}

.content__column .cart-view-list__element--summary .summary-data .buttons__element:first-of-type {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all .2s;
  transition: all .2s;
  font-size: 14px;
  line-height: 24px;
  font-family: 'Roboto-Bold';
  color: #FF8000;
  text-transform: uppercase;
  padding: 10px 25px;
  border: solid 1px #FF8000;
  border-radius: 5px;
  cursor: pointer;
}

.content__column .cart-view-list__element--summary .summary-data .buttons__element:first-of-type:hover {
  border-color: #000000;
  color: #000000;
}

.content__column .cart-view-list__element--summary .summary-data .buttons__element:last-of-type {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all .2s;
  transition: all .2s;
  font-size: 14px;
  line-height: 24px;
  font-family: 'Roboto-Bold';
  background-color: #FF8000;
  color: #FFFFFF;
  text-transform: uppercase;
  padding: 10px 25px;
  border-radius: 5px;
  cursor: pointer;
}

.content__column .cart-view-list__element--summary .summary-data .buttons__element:last-of-type:hover {
  background-color: #000000;
  color: #FFFFFF;
}

@media screen and (max-width: 1080px) {
  .content__column .cart-view-list__element--summary {
    padding-right: 65px;
  }
}

@media screen and (max-width: 768px) {
  .content__column .cart-view-list__element {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0;
    margin: 0 20px 30px;
    background-color: #F6F6F6;
  }
  .content__column .cart-view-list__element .photo {
    width: 100%;
    margin: 0;
  }
  .content__column .cart-view-list__element .checkbox,
  .content__column .cart-view-list__element .number {
    display: none;
  }
  .content__column .cart-view-list__element .details h2 {
    max-width: unset;
  }
  .content__column .cart-view-list__element .details.mobile {
    padding: 20px 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .content__column .cart-view-list__element .details.mobile h2 {
    margin: 0;
  }
  .content__column .cart-view-list__element .details.desktop {
    padding: 25px 15px 30px;
  }
  .content__column .cart-view-list__element .details.desktop h2 {
    display: none;
  }
  .content__column .cart-view-list__element .details__buttons {
    margin: 30px -15px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .content__column .cart-view-list__element .trash {
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: -10px auto 25px;
  }
  .content__column .cart-view-list__element .trash svg {
    -webkit-transition: all .2s;
    transition: all .2s;
  }
  .content__column .cart-view-list__element .trash svg:hover path {
    fill: #FF8000;
  }
  .content__column .cart-view-list__element .trash.summary {
    display: none;
  }
  .content__column .cart-view-list__element--summary {
    -ms-flex-item-align: stretch;
        -ms-grid-row-align: stretch;
        align-self: stretch;
    margin-bottom: 0;
  }
  .content__column .cart-view-list__element--summary .summary-data {
    width: 100%;
  }
  .content__column .cart-view-list__element--summary .summary-data table {
    padding: 0 15px 30px;
  }
  .content__column .cart-view-list__element--summary .summary-data .buttons {
    gap: 30px;
    margin: 0;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media screen and (max-width: 560px) {
  .content__column .cart-view-list__element--summary .user-data {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    padding-right: 0;
    gap: 0;
  }
  .content__column .cart-view-list__element--summary .user-data__element {
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: solid 1px #F6F6F6;
  }
}

.content__column .registration-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  gap: 30px;
  width: 100%;
  max-width: 629px;
  margin: auto;
}

.content__column .registration-form__field.text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.content__column .registration-form__field.text label {
  font-size: 14px;
  line-height: 12px;
  font-family: 'Roboto-Regular';
  color: #000000;
  margin-bottom: 15px;
}

.content__column .registration-form__field.text input {
  font-size: 14px;
  line-height: 12px;
  font-family: 'Roboto-Regular';
  color: #000000;
  padding: 16px 25px;
  margin-bottom: 7px;
  outline: none;
  border: solid 1px #000000;
  border-radius: 5px;
}

.content__column .registration-form__field.text input:focus, .content__column .registration-form__field.text input:active {
  border-color: #FF8000;
}

.content__column .registration-form__field.text .radio-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 51px;
}

.content__column .registration-form__field.text .radio-box label {
  width: 50%;
}

.content__column .registration-form__field.text span {
  font-size: 14px;
  line-height: 12px;
  font-family: 'Roboto-Regular';
  color: #818181;
  padding-left: 5px;
}

.content__column .registration-form__field.text.error input {
  border-color: #E50019;
  color: #E50019;
}

.content__column .registration-form__field.text.error span {
  color: #E50019;
}

.content__column .registration-form__field.text.wide {
  width: 100%;
}

.content__column .registration-form__field.text.not-wide-252550 {
  width: calc(25% - 25px);
}

.content__column .registration-form__field.text.not-wide-3366 {
  width: calc(33% - 15px);
}

.content__column .registration-form__field.text.not-wide-5050 {
  width: calc(50% - 15px);
}

.content__column .registration-form__field.text.not-wide-502525 {
  width: calc(50% - 15px);
}

.content__column .registration-form__field.text.not-wide-6633 {
  width: calc(66% - 15px);
}

.content__column .registration-form__field.text .radio-box label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  line-height: 12px;
  font-family: 'Roboto-Regular';
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  cursor: pointer;
  padding-left: 40px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  margin-bottom: 0;
  color: #000000;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.content__column .registration-form__field.text .radio-box label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.content__column .registration-form__field.text .radio-box label input:checked ~ i {
  background-color: #FF8000;
}

.content__column .registration-form__field.text .radio-box label i {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 25px;
  max-width: 25px;
  min-width: 25px;
  height: 25px;
  max-height: 25px;
  min-height: 25px;
  border-radius: 50%;
  border: solid 1px #000000;
  background-color: #FFFFFF;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.content__column .registration-form__field.text .radio-box label span {
  color: inherit;
}

.content__column .registration-form__field.text .radio-box label:hover input:checked ~ i {
  background-color: #ff8d1a;
}

.content__column .registration-form__field.text .radio-box label:hover input:not(:checked) ~ i {
  background-color: #f2f2f2;
}

.content__column .registration-form__field.password {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.content__column .registration-form__field.password label {
  font-size: 14px;
  line-height: 12px;
  font-family: 'Roboto-Regular';
  color: #000000;
  margin-bottom: 15px;
}

.content__column .registration-form__field.password input {
  font-size: 14px;
  line-height: 12px;
  font-family: 'Roboto-Regular';
  color: #000000;
  padding: 16px 25px;
  margin-bottom: 7px;
  outline: none;
  border: solid 1px #000000;
  border-radius: 5px;
}

.content__column .registration-form__field.password input:focus, .content__column .registration-form__field.password input:active {
  border-color: #FF8000;
}

.content__column .registration-form__field.password .radio-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 51px;
}

.content__column .registration-form__field.password .radio-box label {
  width: 50%;
}

.content__column .registration-form__field.password span {
  font-size: 14px;
  line-height: 12px;
  font-family: 'Roboto-Regular';
  color: #818181;
  padding-left: 5px;
}

.content__column .registration-form__field.password.error input {
  border-color: #E50019;
  color: #E50019;
}

.content__column .registration-form__field.password.error span {
  color: #E50019;
}

.content__column .registration-form__field.password.wide {
  width: 100%;
}

.content__column .registration-form__field.password.not-wide-252550 {
  width: calc(25% - 25px);
}

.content__column .registration-form__field.password.not-wide-3366 {
  width: calc(33% - 15px);
}

.content__column .registration-form__field.password.not-wide-5050 {
  width: calc(50% - 15px);
}

.content__column .registration-form__field.password.not-wide-502525 {
  width: calc(50% - 15px);
}

.content__column .registration-form__field.password.not-wide-6633 {
  width: calc(66% - 15px);
}

.content__column .registration-form__field.password.password-weak span {
  color: #E50019;
}

.content__column .registration-form__field.password.password-medium span {
  color: #769CFF;
}

.content__column .registration-form__field.password.password-strong span {
  color: #00B754;
}

.content__column .registration-form__agreements {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-size: 14px;
  line-height: 24px;
  font-family: 'Roboto-Regular';
  width: 100%;
  max-width: 100%;
}

.content__column .registration-form__agreements label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  cursor: pointer;
  padding-right: 40px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  height: 100%;
  height: 24px;
  -webkit-transition: all .2s;
  transition: all .2s;
  font-size: 14px;
  line-height: 12px;
  font-family: 'Roboto-Regular';
  color: #000000;
  text-transform: uppercase;
  padding-right: 24px;
}

.content__column .registration-form__agreements label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.content__column .registration-form__agreements label input:checked ~ i {
  background-color: #FF8000;
}

.content__column .registration-form__agreements label input:checked ~ span {
  color: #FF8000;
}

.content__column .registration-form__agreements label i {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 25px;
  max-width: 25px;
  min-width: 25px;
  height: 25px;
  max-height: 25px;
  min-height: 25px;
  border-radius: 5px;
  cursor: pointer;
  -webkit-transition: border-color .2s;
  transition: border-color .2s;
  border: solid 1px #FF8000;
  background-color: #FFFFFF;
}

.content__column .registration-form__agreements label:hover {
  color: #000000;
}

.content__column .registration-form__agreements label:hover input ~ i {
  -webkit-transition: all .2s;
  transition: all .2s;
  background-color: #f2f2f2;
}

.content__column .registration-form__agreements label:hover input ~ span {
  color: #FF8000;
}

.content__column .registration-form__agreements label:hover input:checked ~ i {
  -webkit-transition: all .2s;
  transition: all .2s;
  background-color: #ff8d1a;
}

.content__column .registration-form__agreements label i {
  border-color: #000000;
}

.content__column .registration-form__agreements tr:not(:last-of-type) td {
  padding-bottom: 30px;
}

.content__column .registration-form__agreements td {
  vertical-align: top;
}

.content__column .registration-form__agreements td:last-of-type {
  padding-left: 15px;
}

.content__column .registration-form__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  gap: 30px;
}

.content__column .registration-form__links a {
  font-size: 14px;
  line-height: 12px;
  font-family: 'Roboto-Regular';
  text-decoration: none;
  color: inherit;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.content__column .registration-form__links a:hover {
  color: #FF8000;
}

.content__column .registration-form__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
  width: 100%;
}

.content__column .registration-form__buttons .btn {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all .2s;
  transition: all .2s;
  font-size: 14px;
  line-height: 24px;
  font-family: 'Roboto-Bold';
  background-color: #FF8000;
  color: #FFFFFF;
  text-transform: uppercase;
  padding: 10px 25px;
  border-radius: 5px;
  cursor: pointer;
}

.content__column .registration-form__buttons .btn:hover {
  background-color: #000000;
  color: #FFFFFF;
}

@media screen and (max-width: 768px) {
  .content__column .registration-form {
    padding: 0 20px !important;
    width: calc(100% - 40px);
  }
  .content__column .registration-form__field.text, .content__column .registration-form__field.password {
    width: 100% !important;
  }
  .content__column .registration-form__buttons .btn {
    -ms-flex-item-align: stretch;
        -ms-grid-row-align: stretch;
        align-self: stretch;
  }
}

.content__column .lesson-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.content__column .lesson-title * {
  -webkit-box-flex: 50%;
      -ms-flex: 50%;
          flex: 50%;
}

.content__column .lesson-title h1 {
  font-size: 24px;
  line-height: 34px;
  font-family: 'Roboto-Regular';
  font-weight: normal;
}

.content__column .lesson-title .eye {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all .2s;
  transition: all .2s;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.content__column .lesson-title .eye svg {
  cursor: pointer;
}

.content__column .lesson-title .eye svg path {
  -webkit-transition: all .2s;
  transition: all .2s;
  fill: #000000;
}

.content__column .lesson-title .eye svg:hover path {
  fill: #FF8000;
}

@media screen and (max-width: 1415px) {
  .content__column .lesson-title .eye {
    padding: 0 25px 0 0;
  }
}

@media screen and (max-width: 1200px) {
  .content__column .lesson-title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding: 0 20px !important;
  }
  .content__column .lesson-title h1 {
    margin: 13px 0 30px;
  }
  .content__column .lesson-title .eye {
    -ms-flex-item-align: end;
        align-self: flex-end;
    padding-right: 0;
  }
}

.content__column .lesson-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.content__column .lesson-details .lesson-details-element {
  -webkit-box-flex: 50%;
      -ms-flex: 50%;
          flex: 50%;
}

.content__column .lesson-details .lesson-details-element img {
  display: block;
  width: 100%;
}

@media screen and (max-width: 1200px) {
  .content__column .lesson-details .lesson-details-element img {
    max-width: 605px;
  }
}

.content__column .lesson-details .lesson-details-element .details-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.content__column .lesson-details .lesson-details-element .details-box h2 {
  font-size: 18px;
  line-height: 20px;
  font-family: 'Roboto-Bold';
  margin: 40px 0 30px;
}

.content__column .lesson-details .lesson-details-element .details-box__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 44px;
}

.content__column .lesson-details .lesson-details-element .details-box__row:not(:last-of-type) {
  margin-bottom: 10px;
}

.content__column .lesson-details .lesson-details-element .details-box__row .title {
  font-size: 14px;
  line-height: 24px;
  font-family: 'Roboto-Bold';
  min-width: 165px;
}

.content__column .lesson-details .lesson-details-element .details-box__row .title:not(:first-of-type) {
  font-weight: 400;
}

.content__column .lesson-details .lesson-details-element .details-box__row .data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.content__column .lesson-details .lesson-details-element .details-box__row .data span {
  font-size: 14px;
  line-height: 24px;
  font-family: 'Roboto-Regular';
}

.content__column .lesson-details .lesson-details-element .details-box__row .data span:not(:last-of-type) {
  margin-right: 25px;
}

.content__column .lesson-details .lesson-details-element .details-box__row .data ~ .button,
.content__column .lesson-details .lesson-details-element .details-box__row .data ~ .progress {
  margin-left: 40px;
}

.content__column .lesson-details .lesson-details-element .details-box__row .button {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all .2s;
  transition: all .2s;
  font-size: 14px;
  line-height: 24px;
  font-family: 'Roboto-Bold';
  color: #FF8000;
  text-transform: uppercase;
  padding: 10px 25px;
  border: solid 1px #FF8000;
  border-radius: 5px;
  cursor: pointer;
}

.content__column .lesson-details .lesson-details-element .details-box__row .button:hover {
  border-color: #000000;
  color: #000000;
}

.content__column .lesson-details .lesson-details-element .details-box__row .progress {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: solid 1px #FF8000;
  border-radius: 5px;
  width: 244px;
  height: 31px;
}

@media screen and (max-width: 768px) {
  .content__column .lesson-details .lesson-details-element .details-box__row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .content__column .lesson-details .lesson-details-element .details-box__row .button,
  .content__column .lesson-details .lesson-details-element .details-box__row .progress {
    margin: 20px 0 !important;
    width: 100%;
  }
}

.content__column .lesson-details .lesson-details-element .description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.content__column .lesson-details .lesson-details-element .description h2 {
  font-size: 18px;
  line-height: 20px;
  font-family: 'Roboto-Bold';
  margin: 0 0 40px;
}

.content__column .lesson-details .lesson-details-element .description p {
  margin: 0;
  color: #000000;
  font-size: 14px;
  line-height: 24px;
  font-family: 'Roboto-Regular';
}

.content__column .lesson-details .lesson-details-element .description p:not(:last-of-type) {
  margin-bottom: 25px;
}

@media screen and (max-width: 768px) {
  .content__column .lesson-details .lesson-details-element .description p.show-more {
    display: none;
  }
}

.content__column .lesson-details .lesson-details-element .description .show-more-button {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all .2s;
  transition: all .2s;
  font-size: 14px;
  line-height: 24px;
  font-family: 'Roboto-Bold';
  color: #FF8000;
  text-transform: uppercase;
  padding: 10px 25px;
  border: solid 1px #FF8000;
  border-radius: 5px;
  cursor: pointer;
  display: none;
  margin-bottom: 10px;
}

.content__column .lesson-details .lesson-details-element .description .show-more-button:hover {
  border-color: #000000;
  color: #000000;
}

.content__column .lesson-details .lesson-details-element .description .show-more-button[data-is-open="true"] {
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  .content__column .lesson-details .lesson-details-element .description .show-more-button {
    display: block;
  }
}

.content__column .lesson-details .lesson-details-element:first-of-type {
  padding: 0 60px 0 25px;
}

@media screen and (max-width: 1200px) {
  .content__column .lesson-details .lesson-details-element:first-of-type {
    padding: 0;
  }
}

.content__column .lesson-details .lesson-details-element:last-of-type {
  padding: 0 0 0 60px;
}

@media screen and (max-width: 1415px) {
  .content__column .lesson-details .lesson-details-element:last-of-type {
    padding: 0 25px;
  }
}

@media screen and (max-width: 1200px) {
  .content__column .lesson-details .lesson-details-element:last-of-type {
    margin-top: 40px;
    padding: 0;
  }
}

@media screen and (max-width: 1200px) {
  .content__column .lesson-details {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 20px !important;
  }
}

.content__column .buttons-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
  padding: 0 0 0 25px;
}

.content__column .buttons-box .btn1 {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all .2s;
  transition: all .2s;
  font-size: 14px;
  line-height: 24px;
  font-family: 'Roboto-Bold';
  color: #FF8000;
  text-transform: uppercase;
  padding: 10px 25px;
  border: solid 1px #FF8000;
  border-radius: 5px;
  cursor: pointer;
}

.content__column .buttons-box .btn1:hover {
  border-color: #000000;
  color: #000000;
}

.content__column .buttons-box .btn2 {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all .2s;
  transition: all .2s;
  font-size: 14px;
  line-height: 24px;
  font-family: 'Roboto-Bold';
  background-color: #FF8000;
  color: #FFFFFF;
  text-transform: uppercase;
  padding: 10px 25px;
  border-radius: 5px;
  cursor: pointer;
  margin-left: 20px;
}

.content__column .buttons-box .btn2:hover {
  background-color: #000000;
  color: #FFFFFF;
}

@media screen and (max-width: 1200px) {
  .content__column .buttons-box {
    padding: 0 20px !important;
  }
}

@media screen and (max-width: 768px) {
  .content__column .buttons-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .content__column .buttons-box .btn2 {
    margin-left: 0;
    margin-top: 30px;
  }
}

.content__column .lesson-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 25px;
}

.content__column .lesson-page h2 {
  color: #000000;
  margin: 0 0 40px;
  font-size: 18px;
  line-height: 26px;
  font-family: 'Roboto-Bold';
}

.content__column .lesson-page p {
  margin: 0;
  color: #000000;
  font-size: 14px;
  line-height: 24px;
  font-family: 'Roboto-Regular';
}

.content__column .lesson-page p:not(:last-of-type) {
  margin-bottom: 25px;
}

@media screen and (max-width: 768px) {
  .content__column .lesson-page p.show-more {
    display: none;
  }
}

.content__column .list-table {
  width: auto;
  height: auto;
  margin-left: 25px;
  border-collapse: collapse;
}

.content__column .list-table colgroup col {
  -webkit-transition: width .2s;
  transition: width .2s;
}

.content__column .list-table colgroup col:nth-of-type(1) {
  width: 50px;
}

.content__column .list-table colgroup col:nth-of-type(2) {
  width: 30%;
}

@media screen and (max-width: 768px) {
  .content__column .list-table colgroup col:nth-of-type(2) {
    width: 50%;
  }
}

.content__column .list-table colgroup col:nth-of-type(3) {
  width: 120px;
}

@media screen and (max-width: 768px) {
  .content__column .list-table colgroup col:nth-of-type(3) {
    width: 100px;
  }
}

.content__column .list-table colgroup col:nth-of-type(4) {
  width: calc(70% - 170px);
}

@media screen and (max-width: 768px) {
  .content__column .list-table colgroup col:nth-of-type(4) {
    width: calc(50% - 190px);
  }
}

.content__column .list-table__row {
  text-align: left;
}

.content__column .list-table__row td:first-of-type, .content__column .list-table__row th:first-of-type {
  padding-left: 10px;
}

.content__column .list-table__row td:nth-of-type(2), .content__column .list-table__row th:nth-of-type(2) {
  padding-right: 40px;
}

@media screen and (max-width: 768px) {
  .content__column .list-table__row td:nth-of-type(2), .content__column .list-table__row th:nth-of-type(2) {
    padding-right: 10px;
  }
}

.content__column .list-table__row td:last-of-type, .content__column .list-table__row th:last-of-type {
  position: relative;
  padding-right: 25px;
}

.content__column .list-table__row td:last-of-type a, .content__column .list-table__row th:last-of-type a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: 50%;
  right: 25px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background-color: #FF8000;
  -webkit-transition: all .2s;
  transition: all .2s;
  cursor: pointer;
}

.content__column .list-table__row td:last-of-type a:hover, .content__column .list-table__row th:last-of-type a:hover {
  background-color: #000000;
}

.content__column .list-table__row th {
  font-size: 14px;
  line-height: 16px;
  padding: 22px 10px 22px 0;
}

.content__column .list-table__row td {
  font-size: 14px;
  line-height: 16px;
  font-family: 'Roboto-Regular';
  padding: 30px 10px 30px 0;
}

.content__column .list-table thead tr {
  border-bottom: 1px solid #FF8000;
}

.content__column .list-table tbody tr:not(:last-of-type) {
  border-bottom: 1px solid #FF8000;
}

@media screen and (max-width: 768px) {
  .content__column .list-table {
    margin: 0 20px !important;
  }
}

.content__column.messeges .list-table {
  margin-left: 25px;
  border-collapse: collapse;
}

.content__column.messeges .list-table colgroup col:nth-of-type(1), .content__column.messeges .list-table colgroup col:nth-of-type(2) {
  width: 150px;
}

@media screen and (max-width: 768px) {
  .content__column.messeges .list-table colgroup col:nth-of-type(1), .content__column.messeges .list-table colgroup col:nth-of-type(2) {
    width: 90px;
  }
}

.content__column.messeges .list-table colgroup col:nth-of-type(3) {
  width: calc(100% - 385px);
}

@media screen and (max-width: 768px) {
  .content__column.messeges .list-table colgroup col:nth-of-type(3) {
    width: calc(100% - 220px);
  }
}

.content__column.messeges .list-table colgroup col:nth-of-type(4) {
  width: 85px;
}

@media screen and (max-width: 768px) {
  .content__column.messeges .list-table colgroup col:nth-of-type(4) {
    width: 40px;
  }
}

.content__column.messeges .list-table__row td:nth-of-type(1), .content__column.messeges .list-table__row th:nth-of-type(1) {
  padding-left: 25px;
}

@media screen and (max-width: 768px) {
  .content__column.messeges .list-table__row td:nth-of-type(1), .content__column.messeges .list-table__row th:nth-of-type(1) {
    padding-left: 5px;
  }
}

.content__column.messeges .list-table__row td:nth-of-type(2), .content__column.messeges .list-table__row th:nth-of-type(2) {
  padding-right: 10px;
}

.content__column.messeges .list-table__row td:last-of-type, .content__column.messeges .list-table__row th:last-of-type {
  position: relative;
  padding: 0 25px;
}

@media screen and (max-width: 768px) {
  .content__column.messeges .list-table__row td:last-of-type, .content__column.messeges .list-table__row th:last-of-type {
    padding: 0 5px 0 0;
  }
  .content__column.messeges .list-table__row td:last-of-type a, .content__column.messeges .list-table__row th:last-of-type a {
    right: 5px;
  }
}

.content__column.messeges .list-table__message-title {
  text-transform: uppercase;
}

.content__column .message-details__table {
  margin-left: 25px;
  border-collapse: collapse;
}

.content__column .message-details__table colgroup col:nth-of-type(1) {
  width: 150px;
}

@media screen and (max-width: 768px) {
  .content__column .message-details__table colgroup col:nth-of-type(1) {
    width: 80px;
  }
}

.content__column .message-details__table colgroup col:nth-of-type(2) {
  width: 150px;
}

@media screen and (max-width: 768px) {
  .content__column .message-details__table colgroup col:nth-of-type(2) {
    width: 80px;
  }
}

.content__column .message-details__table colgroup col:nth-of-type(3) {
  width: calc(100% - 300px);
}

@media screen and (max-width: 768px) {
  .content__column .message-details__table colgroup col:nth-of-type(3) {
    width: calc(100% - 160px);
  }
}

.content__column .message-details__table__row th,
.content__column .message-details__table__row td {
  text-align: left;
  padding-bottom: 20px;
}

.content__column .message-details__table__row th:first-of-type,
.content__column .message-details__table__row td:first-of-type {
  padding-left: 25px;
}

@media screen and (max-width: 768px) {
  .content__column .message-details__table__row th:first-of-type,
  .content__column .message-details__table__row td:first-of-type {
    padding-left: 0;
  }
}

@media screen and (max-width: 768px) {
  .content__column .message-details__table__row th:not(:last-of-type),
  .content__column .message-details__table__row td:not(:last-of-type) {
    padding-right: 5px;
  }
}

.content__column .message-details__table__row th {
  font-size: 12px;
  line-height: 16px;
  font-family: 'Roboto-Bold';
}

.content__column .message-details__table__row td {
  font-size: 12px;
  line-height: 16px;
  font-family: 'Roboto-Regular';
}

.content__column .message-details__table__message-content {
  border-top: 1px solid #FF8000;
}

.content__column .message-details__table__message-content td {
  padding: 30px 0px;
}

.content__column .message-details__table__message-content td p {
  margin: 0;
  color: #000000;
  font-size: 14px;
  line-height: 24px;
  font-family: 'Roboto-Regular';
}

.content__column .message-details__table__message-content td p:not(:last-of-type) {
  margin-bottom: 25px;
}

.content__column .message-details__table__message-content.response {
  border: none;
}

.content__column .message-details__table__message-content.response td {
  padding: 0;
}

.content__column .message-details__table.response {
  border-top: 1px solid #FF8000;
}

.content__column .message-details__table.response th {
  padding-top: 30px;
}

.content__column .message-details__table.response td p:first-of-type {
  padding-top: 10px;
}

.content__column .message-details__table.response td p:last-of-type {
  margin-bottom: 30px;
}

.content__column .message-details__table__response-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 20px;
}

.content__column .message-details__table__response-container .response-title {
  font-size: 12px;
  line-height: 12px;
  font-family: 'Roboto-Bold';
  -ms-flex-item-align: start;
      -ms-grid-row-align: start;
      align-self: start;
  margin-bottom: 20px;
}

.content__column .message-details__table__response-container .response-text {
  height: calc(150px - 10px);
  border-radius: 5px;
  padding: 5px;
  resize: none;
}

.content__column .message-details__table__response-container .response-btn {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all .2s;
  transition: all .2s;
  font-size: 14px;
  line-height: 24px;
  font-family: 'Roboto-Bold';
  background-color: #FF8000;
  color: #FFFFFF;
  text-transform: uppercase;
  padding: 10px 25px;
  border-radius: 5px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: end;
      align-self: flex-end;
  width: 100px;
  border: none;
  margin-top: 40px;
}

.content__column .message-details__table__response-container .response-btn:hover {
  background-color: #000000;
  color: #FFFFFF;
}

@media screen and (max-width: 768px) {
  .content__column .message-details__table {
    margin: 0 20px !important;
  }
  .content__column .message-details__table__response-container {
    margin: 20px 20px 0 !important;
  }
}

.footer-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 154px;
  background-color: #ECECEC;
  border-top: solid 11px #FF8000;
  padding: 40px 30px 44px;
}

.footer-bar img {
  -ms-flex-item-align: start;
      align-self: flex-start;
  max-width: 100%;
  margin-bottom: 15px;
}

.footer-bar__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 14px;
  line-height: 24px;
  font-family: 'Roboto-Regular';
  margin-left: 137px;
}

.footer-bar__contact br {
  display: none;
}

.footer-bar__contact a {
  text-decoration: none;
  color: #FF8000;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.footer-bar__contact a:hover {
  color: #ffa64d;
}

@media screen and (max-width: 768px) {
  .footer-bar {
    margin: 0 20px;
    padding-bottom: 70px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer-bar img {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    margin-bottom: 40px;
  }
  .footer-bar__contact {
    margin-left: 0;
    text-align: center;
  }
  .footer-bar__contact br {
    display: block;
  }
}

.dark-mode {
  background-color: #000000;
}

.dark-mode .content h1 {
  color: #FFFFFF;
}

.dark-mode .burger-menu__content,
.dark-mode .sub__menu .list {
  background-color: #000000 !important;
  color: #FFFFFF !important;
  border-color: #FFFFFF !important;
}

.dark-mode .sub__menu .list label {
  color: #FFFFFF !important;
}

.dark-mode .filters__button {
  border-color: #000000;
  color: #000000;
}

.dark-mode .filters__button::after {
  background-image: url("../img/arrowDown_black_24.svg");
}

.dark-mode .filters__button:hover {
  border-color: #FFFFFF;
  color: #FFFFFF;
}

.dark-mode .filters__button:hover.sub::after {
  background-image: url("../img/arrowDown_white_24.svg");
}

.dark-mode .filters__checkbox label {
  color: #000000;
}

.dark-mode .filters__checkbox i {
  border-color: #000000;
}

.dark-mode .filters__checkbox input:checked ~ i {
  background-color: #000000;
}

.dark-mode .filters__checkbox input:checked ~ span {
  color: #000000;
}

.dark-mode .filters__checkbox:hover label {
  color: #FFFFFF;
}

.dark-mode .filters__checkbox:hover i {
  border-color: #FFFFFF;
}

.dark-mode .cart-bar__btn {
  background-color: #000000;
}

.dark-mode .cart-bar__btn svg path {
  fill: #FFFFFF !important;
}

.dark-mode .cart-bar__btn:hover {
  background-color: #FFFFFF;
}

.dark-mode .cart-bar__btn:hover svg path {
  fill: #000000 !important;
}

.dark-mode .content-box,
.dark-mode .content-box__description,
.dark-mode .content__breadcrumbs {
  color: #FFFFFF;
}

.dark-mode .content__breadcrumbs a::after {
  color: #FFFFFF;
}

.dark-mode .lesson-details,
.dark-mode .lesson-details p {
  color: #FFFFFF !important;
}

.dark-mode .lesson-details .button:hover,
.dark-mode .buttons-box .btn1:hover,
.dark-mode .cart-view-list__element--summary .buttons .buttons__element:first-of-type:not(:only-child):hover,
.dark-mode .details__buttons .unfilled:hover {
  color: #FFFFFF !important;
  border-color: #FFFFFF !important;
}

.dark-mode .eye svg path,
.dark-mode .trash svg path {
  fill: #FFFFFF !important;
}

.dark-mode .eye svg:hover path,
.dark-mode .trash svg:hover path {
  fill: #FF8000 !important;
}

.dark-mode .content__more__btn,
.dark-mode .buttons-box .btn2,
.dark-mode .cart-view-list__element--summary .buttons .buttons__element:last-of-type,
.dark-mode .registration-form__buttons .btn,
.dark-mode .details__buttons .filled,
.dark-mode .user-profile__more-button {
  color: #000000 !important;
}

.dark-mode .content__more__btn:hover,
.dark-mode .buttons-box .btn2:hover,
.dark-mode .cart-view-list__element--summary .buttons .buttons__element:last-of-type:hover,
.dark-mode .registration-form__buttons .btn:hover,
.dark-mode .details__buttons .filled:hover,
.dark-mode .user-profile__more-button:hover {
  color: #FFFFFF !important;
  background-color: #FF8000 !important;
  border-color: #FF8000 !important;
}

.dark-mode .cart-view-list__element {
  color: #FFFFFF;
}

.dark-mode .cart-view-list__element h2,
.dark-mode .cart-view-list__element .number {
  color: #FFFFFF !important;
}

.dark-mode .cart-view-list__element:nth-child(2n-1) {
  background-color: #2c2c2c;
}

.dark-mode .cart-view-list__element--summary {
  background-color: #000000 !important;
}

@media screen and (max-width: 768px) {
  .dark-mode .cart-view-list__element {
    background-color: #2c2c2c;
  }
}

.dark-mode .registration-form__field label,
.dark-mode .registration-form__agreements table {
  color: #FFFFFF !important;
}

.dark-mode .registration-form__links a {
  color: #FFFFFF;
}

.dark-mode .user-profile__section,
.dark-mode .lesson__section {
  color: #FFFFFF;
}

.dark-mode .content__columns__element-timeline .user-profile__message.envelope::after {
  background-image: url("../img/envelope_36_dark.svg");
}

.dark-mode .content__columns__element-timeline .user-profile__message.bell::after {
  background-image: url("../img/notification_36_dark.svg");
}

.dark-mode .footer-bar {
  background-color: #000000;
  color: #FFFFFF;
}

.font_plus .content__column .lesson-title h1, .font_plus
.user-details__name .name, .font_plus
.content h1 {
  font-size: 28px;
}

.font_minus .content__column .lesson-title h1, .font_minus
.user-details__name .name, .font_minus
.content h1 {
  font-size: 20px;
}

.font_plus .content__list__element .cart-bar span, .font_plus
.content__column .lesson-details .lesson-details-element .details-box h2, .font_plus
.content__column .lesson-details .lesson-details-element .description h2, .font_plus
.content__column .cart-view-list__element .details h2, .font_plus
.content__columns__element-timeline .user-profile__section h2, .font_plus
.content__columns__element-timeline .lesson__section__title {
  font-size: 22px;
}

.font_minus .content__list__element .cart-bar span, .font_minus
.content__column .lesson-details .lesson-details-element .details-box h2, .font_minus
.content__column .lesson-details .lesson-details-element .description h2, .font_minus
.content__column .cart-view-list__element .details h2, .font_minus
.content__columns__element-timeline .user-profile__section h2, .font_minus
.content__columns__element-timeline .lesson__section__title {
  font-size: 14px;
}

.font_plus .content__column .lesson-details .lesson-details-element .details-box__row .title, .font_plus
.content__column .lesson-details .lesson-details-element .details-box__row .data span, .font_plus
.content__column .lesson-details .lesson-details-element .details-box__row .button, .font_plus
.content__column .lesson-details .lesson-details-element .description p, .font_plus
.content__column .buttons-box a, .font_plus
.content__more__btn, .font_plus
.footer-bar__contact, .font_plus
.content__list__element .content-box__description, .font_plus
.content__list__element .content-box__detail__text, .font_plus
.user-details__status, .font_plus
.user-details__balance, .font_plus
.user-details__name .id, .font_plus
.burger-menu__content__list-element, .font_plus
.content__breadcrumbs, .font_plus
.filters__button, .font_plus
.filters__checkbox label, .font_plus
.content__column .cart-view-list__element .details__tables, .font_plus
.content__column .cart-view-list__element--summary, .font_plus
.content__column .cart-view-list__element--summary .summary-data .buttons__element, .font_plus
.content__column .registration-form__field.password label, .font_plus
.content__column .registration-form__field.password span, .font_plus
.content__column .registration-form__field.text label, .font_plus
.content__column .registration-form__field.text span, .font_plus
.content__column .registration-form__agreements, .font_plus
.content__column .registration-form__buttons .btn, .font_plus
.content__column .cart-view-list__element .details__buttons .unfilled, .font_plus
.content__column .cart-view-list__element .details__buttons .filled, .font_plus
.content__column .registration-form__links a, .font_plus
.content__columns__element-timeline .user-profile__message__date-and-edit span, .font_plus
.content__columns__element-timeline .user-profile__message__title, .font_plus
.content__columns__element-timeline .user-profile__message__text, .font_plus
.content__columns__element-timeline .user-profile__more-button, .font_plus
.content__columns__element-timeline .timeline-box__content__element, .font_plus
.content__columns__element-timeline .lesson__section__date, .font_plus
.content__columns__element-timeline .lesson__section__lesson-title, .font_plus
.content__columns__element-timeline .lesson__section__lesson-text, .font_plus
.filters__button.sub .sub__menu .list label {
  font-size: 18px;
}

.font_minus .content__column .lesson-details .lesson-details-element .details-box__row .title, .font_minus
.content__column .lesson-details .lesson-details-element .details-box__row .data span, .font_minus
.content__column .lesson-details .lesson-details-element .details-box__row .button, .font_minus
.content__column .lesson-details .lesson-details-element .description p, .font_minus
.content__column .buttons-box a, .font_minus
.content__more__btn, .font_minus
.footer-bar__contact, .font_minus
.content__list__element .content-box__description, .font_minus
.content__list__element .content-box__detail__text, .font_minus
.user-details__status, .font_minus
.user-details__balance, .font_minus
.user-details__name .id, .font_minus
.burger-menu__content__list-element, .font_minus
.content__breadcrumbs, .font_minus
.filters__button, .font_minus
.filters__checkbox label, .font_minus
.content__column .cart-view-list__element .details__tables, .font_minus
.content__column .cart-view-list__element--summary, .font_minus
.content__column .cart-view-list__element--summary .summary-data .buttons__element, .font_minus
.content__column .registration-form__field.password label, .font_minus
.content__column .registration-form__field.password span, .font_minus
.content__column .registration-form__field.text label, .font_minus
.content__column .registration-form__field.text span, .font_minus
.content__column .registration-form__agreements, .font_minus
.content__column .registration-form__buttons .btn, .font_minus
.content__column .cart-view-list__element .details__buttons .unfilled, .font_minus
.content__column .cart-view-list__element .details__buttons .filled, .font_minus
.content__column .registration-form__links a, .font_minus
.content__columns__element-timeline .user-profile__message__date-and-edit span, .font_minus
.content__columns__element-timeline .user-profile__message__title, .font_minus
.content__columns__element-timeline .user-profile__message__text, .font_minus
.content__columns__element-timeline .user-profile__more-button, .font_minus
.content__columns__element-timeline .timeline-box__content__element, .font_minus
.content__columns__element-timeline .lesson__section__date, .font_minus
.content__columns__element-timeline .lesson__section__lesson-title, .font_minus
.content__columns__element-timeline .lesson__section__lesson-text, .font_minus
.filters__button.sub .sub__menu .list label {
  font-size: 10px;
}
/*# sourceMappingURL=style.css.map */