:root {
  --font-family: "Montserrat", sans-serif;
  --backtimeslip: #fff;
  --white-opacity-50: rgba(255, 255, 255, 0.5);
  --blue: #3169f8;
  --blue-13: #0d6efd;
  --blue-154: #9ac3ff;
  --purple: #6023c3;
  --purple-gray: #595281;
  --purple-86: #565178;
  --purple-164: #a49cd7;
  --purple-164-opacity-20: rgba(164, 156, 215, 0.2);
  --green: #107a54;
  --green-18: #127954;
  --red: #ea4643;
  --red-186: #ba2522;
  --red-220: #dc3545;
  --orange: #f28213;
  --yellow: #ffbe0b;
  --yellow-251: #fbc01b;
  --error: #eb2020;
  --disabled: #a5a5a5;
  --black: #000;
  --black-opacity-50: rgba(0, 0, 0, 0.5);
  --black-34: #222222;
  --black-41: #292929;
  --black-48: #303030;
  --black-55: #373737;
  --black-32: #20282b;
  --background: #2d2d2d;
  --gray: #757575;
  --gray-61: #3d3d3d;
  --gray-113: #717171;
  --gray-121: #797979;
  --gray-136: #888a92;
  --gray-141: #8d8d8d;
  --gray-155: #9b9b9b;
  --gray-161: #a1a1a1;
  --gray-167: #a7a7a7;
  --gray-173: #adadad;
  --gray-207: #cfd5e4;
  --gray-211: #d3d3d3;
  --gray-217: #d9d9d9;
  --gray-227: #e3e3e3;
  --gray-232: #e8e8e8;
  --gray-234: #eaeaea;
  --gray-238: #eeeeee;
  --container-width: 1430px;
  --radius-10: 10px;
  --radius-12: 12px;
  --radius-16: 16px;
  --radius-20: 20px;
  --radius-30: 30px;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.woff2") format("woff2"), url("../fonts/Montserrat-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Medium.woff2") format("woff2"), url("../fonts/Montserrat-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-SemiBold.woff2") format("woff2"), url("../fonts/Montserrat-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Bold.woff2") format("woff2"), url("../fonts/Montserrat-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html {
  scroll-behavior: smooth;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0;
  padding: 105px 0 0;
  font-family: var(--font-family);
  color: var(--backtimeslip);
  font-weight: 400;
  background: var(--background);
}

html,
body {
  height: 100%;
}

main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

footer {
  margin-top: auto;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li {
  margin: 0;
  padding: 0;
}

li {
  list-style-type: none;
}

img {
  display: block;
}

a {
  display: inline-block;
  font-family: inherit;
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  padding: 0;
  border: none;
  color: inherit;
  background-color: transparent;
  cursor: pointer;
}

select {
  color: inherit;
  font-family: inherit;
}

input,
textarea {
  color: inherit;
  font-family: inherit;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  -ms-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  -ms-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
input::placeholder,
textarea::placeholder {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
input:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder {
  opacity: 0;
}
input:focus::-moz-placeholder, textarea:focus::-moz-placeholder {
  opacity: 0;
}
input:focus:-ms-input-placeholder, textarea:focus:-ms-input-placeholder {
  opacity: 0;
}
input:focus::-ms-input-placeholder, textarea:focus::-ms-input-placeholder {
  opacity: 0;
}
input:focus::placeholder,
textarea:focus::placeholder {
  opacity: 0;
}

.a-container {
  max-width: var(--container-width);
  padding: 0 20px;
  margin: 0 auto;
}

.a-container-wide {
  max-width: 1700px;
  padding: 0 20px;
  margin: 0 auto;
}

.title {
  font-size: 24px;
  line-height: 29px;
  font-weight: 700;
  text-transform: uppercase;
}
@media (min-width: 1200px) {
  .title {
    font-size: 28px;
    line-height: 34px;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0 0 0 0);
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

input::-ms-reveal,
input::-ms-clear {
  display: none;
}

@-webkit-keyframes fade {
  from {
    opacity: 0.1;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade {
  from {
    opacity: 0.1;
  }
  to {
    opacity: 1;
  }
}
/*

&:hover {
    @media (hover: hover) {
        background: var(--red-red-700);
    }
}

&:active {
    @media (hover: none) {
        background: var(--red-red-700);
    }
}

*/
.a-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  background-color: var(--black-34);
}
.a-header.menu-open .a-header__burger span, .a-header.menu-open .a-header__burger::before, .a-header.menu-open .a-header__burger::after {
  opacity: 0;
}
.a-header.menu-open .a-header__burger svg {
  opacity: 1;
}
@media (min-width: 1200px) {
  .a-header__logo {
    position: relative;
    z-index: 1;
  }
}
.a-header__logo img {
  width: auto;
  height: auto;
  max-height: 37px;
}
@media (min-width: 1200px) {
  .a-header__logo img {
    max-height: 60px;
  }
}
.a-header__nav {
  display: none;
}
@media (min-width: 992px) {
  .a-header__nav {
    display: block;
  }
}
.a-header__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.a-header__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.a-header__icon svg {
  color: var(--backtimeslip);
}
.a-header__burger {
  margin: 0 -5px 0 13px;
}
@media (min-width: 1200px) {
  .a-header__burger {
    margin-left: 26px;
  }
}

.a-header-top {
  background-color: var(--background);
}
.a-header-top__wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 25px;
}
.a-header-top__comment {
  color: var(--purple-gray);
  font-size: 12px;
  line-height: 15px;
  font-weight: 500;
}
.a-header-top__comment:nth-child(1) {
  display: none;
}
@media (min-width: 992px) {
  .a-header-top__comment:nth-child(1) {
    display: block;
  }
}
.a-header-top__comment:nth-child(3) {
  display: none;
}
@media (min-width: 1200px) {
  .a-header-top__comment:nth-child(3) {
    display: block;
  }
}
.a-header-top__comment:nth-child(4) {
  display: block;
}
@media (min-width: 1200px) {
  .a-header-top__comment:nth-child(4) {
    display: none;
  }
}
.a-header-top__icon {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin: 0 50px 0 0;
}
@media (min-width: 992px) {
  .a-header-top__icon {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    margin: 0 auto 0 36px;
  }
}
@media (min-width: 1200px) {
  .a-header-top__icon {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    margin: 0;
  }
}
.a-header-top__icon img {
  width: auto;
  height: auto;
  max-height: 21px;
}
.a-header-top__icon svg {
  display: block;
  color: var(--purple-gray);
}

.a-header-main__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 80px;
}

.a-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
}
@media (min-width: 1200px) {
  .a-nav__list {
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }
}
.a-nav__item {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.a-nav__link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  height: 80px;
  font-size: 14px;
  line-height: 17px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.a-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 3px;
  border-radius: 4px;
  background: linear-gradient(244deg, #6023c3 0%, #3169f8 100%);
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.a-nav__link svg {
  color: var(--backtimeslip);
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.a-nav__link.active {
  color: var(--blue);
}
.a-nav__link.active::after {
  opacity: 1;
}
.a-nav__link.active svg {
  color: var(--blue);
}
@media (hover: hover) {
  .a-nav__link:hover {
    color: var(--blue);
  }
  .a-nav__link:hover::after {
    opacity: 1;
  }
  .a-nav__link:hover svg {
    color: var(--blue);
  }
}
@media (hover: none) {
  .a-nav__link:active {
    color: var(--blue);
  }
  .a-nav__link:active::after {
    opacity: 1;
  }
  .a-nav__link:active svg {
    color: var(--blue);
  }
}

.a-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 60px 0 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#373737), to(#2d2d2d));
  background: linear-gradient(180deg, #373737 0%, #2d2d2d 100%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
}
@media (min-width: 1200px) {
  .a-menu {
    padding-top: 145px;
  }
}
.a-menu.active {
  opacity: 1;
  visibility: visible;
}
.a-menu__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  max-width: var(--container-width);
  padding: 0 20px;
  margin: 0 auto;
  overflow-y: auto;
}
.a-menu__list {
  margin: 0 0 48px 0;
}
.a-menu__item:not(:last-child) {
  margin: 0 0 25px 0;
}
.a-menu__link {
  position: relative;
  padding: 0 0 0 47px;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 26px;
  line-height: 32px;
  font-weight: 700;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .a-menu__link {
    padding: 0 0 0 50px;
    font-size: 36px;
    line-height: 44px;
  }
}
.a-menu__link:hover {
  text-decoration: underline;
}
.a-menu__icon {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  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: 44px;
}
.a-menu__icon img,
.a-menu__icon svg {
  max-width: 34px;
}
.a-menu__icon img {
  width: auto;
  height: auto;
}
.a-menu__footer {
  padding: 32px 0;
  margin: auto 0 0;
}

.a-menu-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 13px;
}
.a-menu-social__caption {
  font-size: 12px;
  line-height: 15px;
  font-weight: 500;
}
.a-menu-social__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.a-menu-social__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.a-burger {
  position: relative;
  z-index: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
}
.a-burger span, .a-burger::before, .a-burger::after {
  width: 32px;
  height: 3px;
  border-radius: 10px;
  background: -webkit-gradient(linear, right top, left top, from(#6023c3), to(#3169f8));
  background: linear-gradient(270deg, #6023c3 0%, #3169f8 100%);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.a-burger::before, .a-burger::after {
  content: "";
}
.a-burger svg {
  position: absolute;
  color: var(--backtimeslip);
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.a-footer {
  padding: 50px 0;
  background-color: var(--black-34);
}
@media (min-width: 1200px) {
  .a-footer {
    padding: 80px 0;
  }
}
.a-footer__main {
  display: grid;
  grid-gap: 50px 40px;
  margin: 0 0 50px;
}
@media (min-width: 768px) {
  .a-footer__main {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .a-footer__main {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 768px) {
  .a-footer__col:not(:has(.a-footer__logo)) {
    padding: 16px 0 0;
  }
}
.a-footer__logo {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.a-footer__logo img {
  width: auto;
  height: auto;
  max-width: 100%;
}
.a-footer__caption {
  margin: 0 0 30px;
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
}
@media (min-width: 1200px) {
  .a-footer__caption {
    margin: 0 0 38px;
  }
}
.a-footer__item:not(:last-child) {
  margin: 0 0 8px 0;
}
.a-footer__link {
  font-size: 14px;
  line-height: 17px;
}
.a-footer__bottom {
  display: grid;
  grid-gap: 8px 40px;
}
@media (min-width: 1200px) {
  .a-footer__bottom {
    grid-template-columns: repeat(4, 1fr);
  }
}
.a-footer__copy {
  font-size: 14px;
  line-height: 17px;
}
@media (min-width: 1200px) {
  .a-footer__copy.w-2 {
    grid-column: span 2;
  }
}
@media (min-width: 1200px) {
  .a-footer__copy.w-3 {
    grid-column: span 3;
  }
}
@media (min-width: 1200px) {
  .a-footer__copy.w-4 {
    grid-column: span 4;
  }
}

.a-breadcrumbs {
  padding: 13px 0 18px;
}
@media (min-width: 1200px) {
  .a-breadcrumbs {
    padding: 20px 0 30px;
  }
}
.a-breadcrumbs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
  margin: 0 -20px;
  padding: 0 20px 10px;
  overflow-x: auto;
  scrollbar-width: none;
}
.a-breadcrumbs__list::-webkit-scrollbar {
  height: 0;
}
.a-breadcrumbs__item {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.a-breadcrumbs__item:not(:last-child)::after {
  content: "/";
  position: absolute;
  top: 50%;
  right: -11px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 12px;
  line-height: 15px;
}
@media (min-width: 1200px) {
  .a-breadcrumbs__item:not(:last-child)::after {
    right: -12px;
    font-size: 14px;
    line-height: 17px;
  }
}
.a-breadcrumbs__link {
  display: block;
  font-size: 12px;
  line-height: 15px;
}
@media (min-width: 1200px) {
  .a-breadcrumbs__link {
    font-size: 14px;
    line-height: 17px;
  }
}
.a-breadcrumbs a.a-breadcrumbs__link {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

.a-registration {
  padding: 0 0 50px;
}
@media (min-width: 1200px) {
  .a-registration {
    padding: 0 0 80px;
  }
}
.a-registration__wrapper {
  max-width: 815px;
  margin: 0 auto;
}
.a-registration__title {
  margin: 0 0 20px;
}
@media (min-width: 1200px) {
  .a-registration__title {
    margin-bottom: 45px;
  }
}
.a-registration__fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin: 0 0 40px;
}
@media (min-width: 1200px) {
  .a-registration__fields {
    gap: 28px;
  }
}
.a-registration__bottom {
  display: grid;
  grid-gap: 24px;
}
@media (min-width: 1200px) {
  .a-registration__bottom {
    grid-template-columns: 1fr auto;
    grid-gap: 40px;
    padding: 0 0 0 125px;
  }
}
.a-registration__recovery {
  grid-row: 4/5;
  font-size: 20px;
  line-height: 24px;
}
@media (min-width: 1200px) {
  .a-registration__recovery {
    grid-row: auto;
  }
}
.a-registration__recovery a {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
@media (min-width: 1200px) {
  .a-registration__buttons {
    grid-column: span 2;
  }
}
.a-registration__btn {
  width: 100%;
}
.a-registration__error {
  grid-row: 2/3;
  display: none;
  position: relative;
  padding: 0 0 0 26px;
  font-size: 20px;
  line-height: 24px;
}
@media (min-width: 1200px) {
  .a-registration__error {
    grid-row: auto;
    grid-column: span 2;
  }
}
.a-registration__error::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--error);
}
.a-registration__error.active {
  display: block;
}

.a-field {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
}
@media (min-width: 1200px) {
  .a-field {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 20px;
  }
}
.a-field.error .a-field__input {
  border-color: var(--error);
}
.a-field__label {
  font-size: 20px;
  line-height: 24px;
}
@media (min-width: 1200px) {
  .a-field__label {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 105px;
    min-height: var(--field-height);
  }
}
.a-field__inner {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.a-field__textarea, .a-field__select, .a-field__input {
  display: block;
  width: 100%;
  color: var(--black);
}
.a-field__textarea::-webkit-input-placeholder, .a-field__select::-webkit-input-placeholder, .a-field__input::-webkit-input-placeholder {
  color: var(--black);
}
.a-field__textarea::-moz-placeholder, .a-field__select::-moz-placeholder, .a-field__input::-moz-placeholder {
  color: var(--black);
}
.a-field__textarea:-ms-input-placeholder, .a-field__select:-ms-input-placeholder, .a-field__input:-ms-input-placeholder {
  color: var(--black);
}
.a-field__textarea::-ms-input-placeholder, .a-field__select::-ms-input-placeholder, .a-field__input::-ms-input-placeholder {
  color: var(--black);
}
.a-field__textarea::placeholder, .a-field__select::placeholder, .a-field__input::placeholder {
  color: var(--black);
}
.a-field__textarea.error, .a-field__select.error, .a-field__input.error {
  border-color: var(--error) !important;
}
.a-field__input {
  -webkit-transition-property: color, font-size, background-color;
  transition-property: color, font-size, background-color;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
.a-field__textarea {
  resize: vertical;
  min-height: 100px;
}
.a-field__select {
  text-overflow: ellipsis;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.a-field__btn {
  position: absolute;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 44px;
  height: var(--field-height);
}
.a-field__btn svg {
  position: absolute;
  color: var(--black);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.a-field__btn svg:nth-child(2) {
  opacity: 0;
}
.a-field__btn.view svg:nth-child(1) {
  opacity: 0;
}
.a-field__btn.view svg:nth-child(2) {
  opacity: 1;
}
.a-field__btn:disabled {
  pointer-events: none;
}
.a-field--default {
  --field-height: 54px;
}
.a-field--default .a-field__select,
.a-field--default .a-field__input {
  height: var(--field-height);
  font-size: 20px;
  line-height: 24px;
  border-radius: var(--radius-10);
  border: 4px solid transparent;
}
.a-field--default .a-field__select {
  padding: 11px 40px 11px 4px;
}
@media (min-width: 1200px) {
  .a-field--default .a-field__select {
    padding: 11px 40px 11px 12px;
  }
}
.a-field--default .a-field__input {
  padding: 11px 8px;
}
@media (min-width: 1200px) {
  .a-field--default .a-field__input {
    padding: 11px 16px;
  }
}

.a-field--mod-for-modal {
  --field-height: 48px;
}
.a-field--mod-for-modal .a-field__select,
.a-field--mod-for-modal .a-field__textarea,
.a-field--mod-for-modal .a-field__input {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  border-radius: 4px;
  border: 4px solid transparent;
}
.a-field--mod-for-modal .a-field__select,
.a-field--mod-for-modal .a-field__input {
  height: var(--field-height);
}
.a-field--mod-for-modal .a-field__select {
  padding: 13px 40px 13px 12px;
  padding: 10px 37px 10px 10px;
}
.a-field--mod-for-modal .a-field__textarea,
.a-field--mod-for-modal .a-field__input {
  padding: 13px 16px;
  padding: 10px 13px;
}

@media (min-width: 1200px) {
  .a-field--vertical {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 14px;
  }
}
@media (min-width: 1200px) {
  .a-field--vertical .a-field__label {
    -ms-flex-negative: 1;
        flex-shrink: 1;
    width: auto;
    min-height: 0;
  }
}

.a-upload {
  --p-x: 16px;
}
.a-upload__input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
.a-upload__area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 13px var(--p-x);
  color: var(--black-55);
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  border-radius: var(--radius-10);
  height: var(--field-height);
  background: var(--backtimeslip);
  cursor: pointer;
}
.a-upload__area svg {
  color: var(--black-55);
}
.a-upload__list {
  display: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4px 16px;
  margin: 12px 0 0;
}
@media (min-width: 1200px) {
  .a-upload__list {
    padding: 0 0 0 var(--p-x);
  }
}
.a-upload__list.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.a-upload__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.a-upload__item span {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
}
.a-upload__item button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.a-checkbox {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
}
.a-checkbox__input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
.a-checkbox__input:checked + .a-checkbox__text::before {
  background-color: var(--blue-13);
}
.a-checkbox__input:checked + .a-checkbox__text::after {
  opacity: 1;
}
.a-checkbox__input:focus + .a-checkbox__text::before {
  -webkit-box-shadow: 0 0 0 1px var(--blue);
          box-shadow: 0 0 0 1px var(--blue);
}
.a-checkbox__text {
  position: relative;
  display: block;
  padding: 0 0 0 50px;
  font-size: 20px;
  line-height: 24px;
}
.a-checkbox__text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 24px;
  border-radius: 6px;
  background: var(--backtimeslip);
  -webkit-transition: background-color 0.3s, -webkit-box-shadow 0.3s;
  transition: background-color 0.3s, -webkit-box-shadow 0.3s;
  transition: background-color 0.3s, box-shadow 0.3s;
  transition: background-color 0.3s, box-shadow 0.3s, -webkit-box-shadow 0.3s;
}
.a-checkbox__text::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 4px;
  width: 19px;
  height: 16px;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg width='19' height='16' viewBox='0 0 19 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.59766 7.63637L8.4853 12.9659L17.685 1.41797' stroke='white' stroke-width='3' /%3E%3C/svg%3E");
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.a-checkbox--reversed .a-checkbox__text {
  padding: 0 50px 0 0;
}
.a-checkbox--reversed .a-checkbox__text::before {
  left: auto;
  right: 0;
}
.a-checkbox--reversed .a-checkbox__text::after {
  left: auto;
  right: 4px;
}

.a-checkbox--simple .a-checkbox__text {
  padding: 0 0 24px 28px;
}

.a-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  border-style: solid;
  border-color: var(--backtimeslip);
  border-radius: 80px;
}
.a-btn:disabled {
  cursor: default;
  background-color: var(--disabled);
  border-color: var(--disabled);
}
.a-btn svg {
  color: var(--backtimeslip);
}
@media (min-width: 1200px) {
  .a-btn svg {
    display: none;
  }
}

.a-btn--default {
  min-height: 60px;
  padding: 0 20px;
  border-width: 3px;
}

.a-btn--mod-for-modal {
  padding: 16px 10px;
  border-width: 1px;
}

.a-btn--red {
  color: var(--backtimeslip);
  background-color: var(--red);
  border-color: var(--red);
}

.a-btn--green {
  color: var(--backtimeslip);
  background-color: var(--green);
  border-color: var(--green);
}

.a-admin {
  padding: 0 0 50px;
}
@media (min-width: 1200px) {
  .a-admin {
    padding: 0 0 80px;
  }
}
.a-admin__title {
  margin: 0 0 42px;
}
.a-admin__newsletter {
  display: grid;
  grid-gap: 0 20px;
  margin: 0 -10px 24px;
}
@media (min-width: 768px) {
  .a-admin__newsletter {
    margin: 0 0 40px;
  }
}
@media (min-width: 1200px) {
  .a-admin__newsletter {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 58px;
  }
}
.a-admin__newsletter-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 30px;
  padding: 12px 0;
  border: 2px solid var(--backtimeslip);
  background: -webkit-gradient(linear, left top, left bottom, from(var(--black-55)), to(var(--background)));
  background: linear-gradient(180deg, var(--black-55) 0%, var(--background) 100%);
}
@media (min-width: 1200px) {
  .a-admin__newsletter-btn {
    grid-column: 2/3;
  }
}
.a-admin__items {
  display: grid;
  grid-gap: 0 20px;
}
@media (min-width: 1200px) {
  .a-admin__items {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .a-admin-item {
    padding: 0 20px;
  }
}
.a-admin-item:nth-child(1) .a-admin-item__inner {
  padding-top: 0;
}
@media (min-width: 1200px) {
  .a-admin-item:nth-child(1) .a-admin-item__inner {
    padding-top: 20px;
  }
}
.a-admin-item:nth-last-child(2) .a-admin-item__inner {
  border-bottom: none;
  padding-bottom: 32px;
}
@media (min-width: 1200px) {
  .a-admin-item:nth-last-child(2) .a-admin-item__inner {
    padding-bottom: 20px;
  }
}
.a-admin-item__inner {
  height: 100%;
  display: grid;
  grid-gap: 32px;
  padding: 20px 0 32px;
  border-bottom: 1px solid var(--black-55);
}
@media (min-width: 768px) {
  .a-admin-item__inner {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 40px;
    padding: 28px 0 32px;
  }
}
@media (min-width: 1200px) {
  .a-admin-item__inner {
    padding: 36px 0 40px;
  }
}
.a-admin-item__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.a-admin-item__title {
  margin: 0 0 24px;
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
}
@media (min-width: 768px) {
  .a-admin-item__title {
    margin-bottom: 48px;
  }
}
.a-admin-item__add {
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  padding: 12px 40px;
  border: 2px solid var(--backtimeslip);
  border-radius: var(--radius-30);
  background: -webkit-gradient(linear, left top, left bottom, from(var(--black-55)), to(var(--background)));
  background: linear-gradient(180deg, var(--black-55) 0%, var(--background) 100%);
}
@media (min-width: 768px) {
  .a-admin-item__add {
    min-height: 120px;
    padding: 10px 40px;
  }
}
@media (min-width: 1200px) {
  .a-admin-item__add {
    font-size: 20px;
    line-height: 24px;
  }
}
.a-admin-item__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .a-admin-item__buttons {
    padding: 4px 0 0;
  }
}
.a-admin-item__btn {
  padding: 10px;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  border-radius: 30px;
  border: 2px solid var(--backtimeslip);
  background: -webkit-gradient(linear, left top, left bottom, from(var(--black-55)), to(var(--background)));
  background: linear-gradient(180deg, var(--black-55) 0%, var(--background) 100%);
}

.a-admin-statistics {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  background-color: var(--black-55);
  margin: 0 -20px;
  padding: 24px 20px;
}
@media (min-width: 1200px) {
  .a-admin-statistics {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    margin: 0;
    padding: 36px 20px 40px;
  }
}
.a-admin-statistics:nth-child(2) {
  padding-top: 20px;
  border-radius: var(--radius-20) var(--radius-20) 0 0;
}
.a-admin-statistics:last-child {
  padding-bottom: 20px;
  border-radius: 0 0 var(--radius-20) var(--radius-20);
}
.a-admin-statistics__title {
  margin: 0 0 42px;
  font-size: 24px;
  line-height: 29px;
  font-weight: 600;
}
.a-admin-statistics__items {
  display: grid;
  grid-gap: 20px 40px;
}
@media (min-width: 768px) {
  .a-admin-statistics__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
.a-admin-statistics__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.a-admin-statistics__item:nth-child(even) {
  display: none;
}
@media (min-width: 768px) {
  .a-admin-statistics__item:nth-child(even) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.a-admin-statistics__item span {
  min-width: 75px;
  font-weight: 700;
  font-size: 32px;
  line-height: 34px;
}
.a-admin-statistics__item p {
  font-size: 20px;
  line-height: 24px;
}

.a-new-user {
  padding: 0 0 50px;
}
@media (min-width: 1200px) {
  .a-new-user {
    padding: 0 0 80px;
  }
}
.a-new-user__title {
  margin: 0 0 30px;
}
@media (min-width: 1200px) {
  .a-new-user__title {
    margin-bottom: 50px;
  }
}
.a-new-user__inner {
  max-width: 850px;
}
.a-new-user__field {
  margin: 0 0 50px;
}
@media (min-width: 1200px) {
  .a-new-user__field {
    margin-bottom: 30px;
  }
}
.a-new-user__btn.a-btn {
  width: 100%;
}
@media (min-width: 768px) {
  .a-new-user__btn.a-btn {
    width: auto;
    padding-left: 45px;
    padding-right: 45px;
  }
}

.a-training {
  padding: 0 0 50px;
}
@media (min-width: 1200px) {
  .a-training {
    padding: 0 0 80px;
  }
}
.a-training__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 54px;
  margin: 0 0 75px;
}
@media (min-width: 1200px) {
  .a-training__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 40px;
    margin-bottom: 84px;
  }
}
@media (min-width: 1400px) {
  .a-training__inner {
    gap: 68px;
  }
}
.a-training__down {
  position: absolute;
  right: 0;
  top: -8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
}
@media (min-width: 1200px) {
  .a-training__down {
    top: 0;
  }
}
@media (min-width: 1900px) {
  .a-training__down {
    top: 90px;
    right: auto;
    left: calc(100% + 80px);
    gap: 15px;
  }
}
.a-training__down span:nth-child(1) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 100%;
  background-color: var(--backtimeslip);
}
@media (min-width: 1900px) {
  .a-training__down span:nth-child(1) {
    width: 90px;
    height: 90px;
  }
}
.a-training__down span:nth-child(2) {
  font-size: 14px;
  line-height: 16px;
  white-space: nowrap;
}
@media (min-width: 1900px) {
  .a-training__down span:nth-child(2) {
    font-size: 20px;
    line-height: 24px;
  }
}
.a-training__down span svg {
  color: var(--background);
  width: 8px;
  height: 16px;
}
@media (min-width: 1900px) {
  .a-training__down span svg {
    width: 16px;
    height: 31px;
  }
}
.a-training__line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin: 0 0 58px;
}
@media (min-width: 1200px) {
  .a-training__line {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.a-training__progress {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  border-radius: 30px;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#737373));
  background: linear-gradient(180deg, #fff 0%, #737373 100%);
}
.a-training__progress span {
  padding: 3px 20px;
  color: var(--background);
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  white-space: nowrap;
  border-radius: 30px;
  background: -webkit-gradient(linear, left top, left bottom, from(#e67b53), to(#6023c3));
  background: linear-gradient(180deg, #e67b53 0%, #6023c3 100%);
}
@media (min-width: 1200px) {
  .a-training__progress span {
    font-size: 20px;
    padding: 20px 44px;
  }
}
.a-training__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
@media (min-width: 768px) {
  .a-training__buttons {
    gap: 20px;
  }
}
.a-training__btn {
  border: 2px solid var(--backtimeslip);
  border-radius: 80px;
  width: 50%;
  min-width: 155px;
  padding: 18px;
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
}
@media (min-width: 1200px) {
  .a-training__btn {
    width: auto;
  }
}
.a-training__btn--red {
  background: -webkit-gradient(linear, left top, left bottom, from(var(--red)), to(var(--red-186)));
  background: linear-gradient(180deg, var(--red) 0%, var(--red-186) 100%);
}
.a-training__link {
  min-width: 330px;
  padding: 20px;
  color: var(--background);
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  text-align: center;
  border-radius: 30px;
  -webkit-box-shadow: 0 11px 29px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 11px 29px 0 rgba(0, 0, 0, 0.1);
  background: -webkit-gradient(linear, left top, left bottom, from(#fecb11), color-stop(75%, #e67b53));
  background: linear-gradient(180deg, #fecb11 0%, #e67b53 75%);
}
@media (min-width: 1200px) {
  .a-training__link {
    font-weight: 700;
  }
}
.a-training__link:disabled, .a-training__link.disabled {
  font-weight: 600;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#737373));
  background: linear-gradient(180deg, #fff 0%, #737373 100%);
  pointer-events: none;
  cursor: default;
}
.a-training__link span {
  font-variant-numeric: tabular-nums;
}

@media (min-width: 1200px) {
  .a-training-courses {
    width: 690px;
  }
}
.a-training-courses__title {
  margin: 0 0 42px;
  padding: 0 80px 0 0;
}
@media (min-width: 1200px) {
  .a-training-courses__title {
    margin-bottom: 65px;
    padding: 0;
  }
}
.a-training-courses__swiper.swiper {
  margin: 0 -20px;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .a-training-courses__swiper.swiper {
    margin: 0;
    padding: 0;
  }
}
@media (min-width: 768px) {
  .a-training-courses__swiper .swiper-wrapper {
    gap: 16px;
  }
}
.a-training-courses__swiper .swiper-slide {
  height: auto;
}
@media (min-width: 768px) {
  .a-training-courses__swiper .swiper-slide {
    width: calc(50% - 8px);
  }
}
.a-training-courses__cards {
  height: 100%;
}
.a-training-courses__buttons {
  margin: 40px 0 0;
}
.a-training-courses__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
  padding: 0 10px 0 0;
  max-height: 356px;
  overflow-y: auto;
  scrollbar-color: var(--gray-238) var(--gray-121);
  scrollbar-width: thin;
}
.a-training-courses__tabs::-webkit-scrollbar {
  width: 7px;
  background-color: var(--gray-121);
}
.a-training-courses__tabs::-webkit-scrollbar-thumb {
  border-radius: 8px;
  background-color: var(--gray-238);
}

.a-training-courses-card {
  display: none;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  padding: 20px 20px 40px;
  background: var(--backtimeslip);
  -webkit-box-shadow: 0 11px 29px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 11px 29px 0 rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-30);
}
.a-training-courses-card.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.a-training-courses-card.fade {
  -webkit-animation: fade 0.5s;
          animation: fade 0.5s;
}
.a-training-courses-card.disabled {
  display: none;
}
@media (min-width: 768px) {
  .a-training-courses-card {
    padding: 20px 24px 46px;
    background: var(--gray-238);
  }
}
.a-training-courses-card__title {
  margin: 0 0 13px;
  color: var(--black);
  font-size: 16px;
  line-height: 19px;
  font-weight: 700;
}
@media (min-width: 1200px) {
  .a-training-courses-card__title {
    font-weight: 400;
  }
}
.a-training-courses-card__title strong {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
}
.a-training-courses-card__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 234px;
  margin: auto 0 0;
}
.a-training-courses-card__img img {
  max-width: 100%;
  max-height: 100%;
}
.a-training-courses-card__btn {
  position: absolute;
  left: 20px;
  bottom: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 56px;
  height: 52px;
  font-size: 20px;
  line-height: 24px;
  background: linear-gradient(244deg, #6023c3 0%, #3169f8 100%);
  border-radius: 30px;
}
@media (min-width: 768px) {
  .a-training-courses-card__btn {
    left: 24px;
  }
}
.a-training-courses-card__btn svg {
  color: var(--white);
}

.a-training-courses-tab {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  min-height: 102px;
  padding: 6px 86px 6px 60px;
  -webkit-box-shadow: 0 11px 29px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 11px 29px 0 rgba(0, 0, 0, 0.1);
  background: var(--gray-238);
  border-radius: var(--radius-30);
  overflow: hidden;
  cursor: pointer;
}
.a-training-courses-tab::before {
  content: "";
  position: absolute;
  left: 13px;
  width: 40px;
  height: 40px;
  background-image: url("../images/icons/lock.png");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0;
}
.a-training-courses-tab.disabled {
  background: var(--gray-121);
  pointer-events: none;
  cursor: default;
}
.a-training-courses-tab.disabled::before {
  opacity: 1;
}
.a-training-courses-tab.disabled .a-training-courses-tab__title {
  opacity: 0.64;
}
.a-training-courses-tab.disabled .a-training-courses-tab__logo {
  opacity: 0.5;
}
.a-training-courses-tab__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.a-training-courses-tab__title {
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  color: var(--black);
}
.a-training-courses-tab__time {
  font-size: 16px;
  line-height: 20px;
  color: var(--black);
}
.a-training-courses-tab__logo {
  position: absolute;
  right: 6px;
  width: 70px;
}
.a-training-courses-tab__logo img {
  width: 100%;
  height: auto;
}

@media (min-width: 1200px) {
  .a-training-statistics {
    width: 590px;
  }
}
.a-training-statistics__title {
  margin: 0 0 55px;
}
@media (min-width: 1200px) {
  .a-training-statistics__title {
    padding: 0 80px 0 0;
    margin-bottom: 65px;
  }
}
@media (min-width: 1900px) {
  .a-training-statistics__title {
    padding: 0;
  }
}
.a-training-statistics__swiper.swiper {
  margin: 0 -20px;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .a-training-statistics__swiper.swiper {
    margin: 0;
    padding: 0;
  }
}
@media (min-width: 768px) {
  .a-training-statistics__swiper .swiper-wrapper {
    gap: 30px;
  }
}
@media (min-width: 768px) {
  .a-training-statistics__swiper .swiper-slide {
    width: calc(50% - 15px);
  }
}
.a-training-statistics__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  grid-gap: 80px 30px;
}
@media (min-width: 1200px) {
  .a-training-statistics__items {
    grid-gap: 25px 30px;
  }
}
.a-training-statistics__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media (min-width: 1200px) {
  .a-training-statistics__item {
    min-height: 102px;
  }
}
.a-training-statistics__item span {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  min-width: 80px;
  font-weight: 700;
  font-size: 40px;
  line-height: 49px;
}
.a-training-statistics__item p {
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
}
@media (min-width: 1200px) {
  .a-training-statistics__item p {
    font-weight: 400;
  }
}
.a-training-statistics__buttons {
  margin: 40px 0 0;
}

.a-training-chat {
  margin: 0 0 50px;
}
.a-training-chat.active .a-training-chat__messages-wrapper {
  grid-template-rows: 1fr;
  margin-bottom: 28px;
}
@media (min-width: 768px) {
  .a-training-chat.active .a-training-chat__messages-wrapper {
    margin-bottom: 50px;
  }
}
.a-training-chat.active .a-training-chat__main {
  padding: 10px 20px 30px;
}
@media (min-width: 768px) {
  .a-training-chat.active .a-training-chat__main {
    padding: 20px 30px 30px;
  }
}
@media (min-width: 1200px) {
  .a-training-chat.active .a-training-chat__main {
    padding: 32px 30px 54px;
  }
}
.a-training-chat.active .a-training-chat__more span:nth-child(1) {
  display: block;
}
.a-training-chat.active .a-training-chat__more span:nth-child(2) {
  display: none;
}
.a-training-chat__title {
  margin: 0 0 20px;
}
@media (min-width: 1200px) {
  .a-training-chat__title {
    margin-bottom: 36px;
  }
}
.a-training-chat__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  margin: 0 0 18px;
}
@media (min-width: 1200px) {
  .a-training-chat__top {
    margin-bottom: 32px;
  }
}
.a-training-chat__more {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 17px;
  font-weight: 700;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
@media (min-width: 1200px) {
  .a-training-chat__more {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
  }
}
.a-training-chat__more span:nth-child(1) {
  display: none;
}
.a-training-chat__main {
  margin: 0 -20px;
  padding: 0 20px 28px;
  background: var(--black-34);
  border-radius: var(--radius-16);
  -webkit-transition: padding 0.3s;
  transition: padding 0.3s;
}
@media (min-width: 768px) {
  .a-training-chat__main {
    margin: 0;
    padding: 0 30px 28px;
  }
}
.a-training-chat__date {
  -ms-flex-item-align: stretch;
      align-self: stretch;
  display: block;
  font-size: 12px;
  line-height: 15px;
  font-weight: 700;
  color: var(--gray-167);
  text-align: center;
}
.a-training-chat__messages-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  margin: 0 0 28px;
  -webkit-transition: grid-template-rows 0.3s, margin 0.3s;
  transition: grid-template-rows 0.3s, margin 0.3s;
  transition: grid-template-rows 0.3s, margin 0.3s, -ms-grid-rows 0.3s;
}
.a-training-chat__messages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
  overflow: hidden;
  max-height: 272px;
  overflow-y: auto;
  -webkit-transition: padding 0.3s;
  transition: padding 0.3s;
}
@media (min-width: 768px) {
  .a-training-chat__messages {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.a-training-chat__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 24px;
}
.a-training-chat__field {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.a-training-chat__textarea {
  display: block;
  width: 100%;
  min-height: 55px;
  height: 55px;
  padding: 19px 55px;
  font-weight: 400;
  color: var(--black);
  font-size: 14px;
  line-height: 17px;
  border: none;
  border-radius: var(--radius-10);
  resize: vertical;
  overflow: auto;
  scrollbar-color: var(--gray) var(--gray-232);
  scrollbar-width: thin;
}
.a-training-chat__textarea::-webkit-input-placeholder {
  color: var(--gray-211);
}
.a-training-chat__textarea::-moz-placeholder {
  color: var(--gray-211);
}
.a-training-chat__textarea:-ms-input-placeholder {
  color: var(--gray-211);
}
.a-training-chat__textarea::-ms-input-placeholder {
  color: var(--gray-211);
}
.a-training-chat__textarea::placeholder {
  color: var(--gray-211);
}
.a-training-chat__textarea::-webkit-scrollbar {
  width: 7px;
  background-color: var(--gray-232);
}
.a-training-chat__textarea::-webkit-scrollbar-thumb {
  border-radius: 8px;
  background-color: var(--gray);
}
.a-training-chat__emoji-btn, .a-training-chat__upload-btn {
  position: absolute;
  bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 55px;
  height: 35px;
}
.a-training-chat__emoji-btn {
  left: 0;
}
.a-training-chat__emoji-btn svg {
  color: var(--blue);
}
.a-training-chat__upload-btn {
  right: 0;
}
.a-training-chat__upload-btn svg {
  color: var(--blue);
}
.a-training-chat__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, left bottom, from(var(--red)), to(var(--red-186)));
  background: linear-gradient(180deg, var(--red) 0%, var(--red-186) 100%);
}
.a-training-chat__btn svg {
  color: var(--backtimeslip);
}

.a-training-chat-user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.a-training-chat-user__avatar {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
}
.a-training-chat-user__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.a-training-chat-user__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1px;
}
.a-training-chat-user__name {
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  color: var(--gray-217);
}
@media (min-width: 1200px) {
  .a-training-chat-user__name {
    font-size: 20px;
    line-height: 24px;
  }
}
.a-training-chat-user__post {
  font-size: 14px;
  line-height: 17px;
  font-weight: 700;
}
@media (min-width: 1200px) {
  .a-training-chat-user__post {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
  }
}

.a-training-chat-message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 8px;
}
@media (min-width: 768px) {
  .a-training-chat-message {
    min-width: 340px;
    max-width: 720px;
  }
}
@media (min-width: 1200px) {
  .a-training-chat-message {
    gap: 28px;
  }
}
.a-training-chat-message__avatar {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
}
.a-training-chat-message__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.a-training-chat-message__content {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 20px;
  padding: 8px 20px;
  --color-bg: var(--gray-207);
  background-color: var(--color-bg);
  border-radius: var(--radius-10) var(--radius-10) var(--radius-10) 0;
}
@media (min-width: 1200px) {
  .a-training-chat-message__content {
    padding: 10px 20px;
  }
}
.a-training-chat-message__content::before {
  content: "";
  position: absolute;
  right: 100%;
  bottom: 0;
  border: 4px solid;
  border-color: transparent var(--color-bg) var(--color-bg) transparent;
}
@media (min-width: 1200px) {
  .a-training-chat-message__content::before {
    border-width: 8px;
  }
}
.a-training-chat-message__text {
  color: var(--black);
  font-size: 14px;
  line-height: 17px;
  font-weight: 700;
}
@media (min-width: 1200px) {
  .a-training-chat-message__text {
    font-weight: 400;
  }
}
.a-training-chat-message__time {
  display: block;
  margin: 0 -5px 0 auto;
  color: var(--gray-167);
  font-size: 12px;
  line-height: 15px;
  font-weight: 700;
}
@media (min-width: 1200px) {
  .a-training-chat-message__time {
    font-weight: 400;
  }
}

.a-training-chat-message--reversed {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (min-width: 768px) {
  .a-training-chat-message--reversed {
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
}
.a-training-chat-message--reversed .a-training-chat-message__content {
  --color-bg: var(--backtimeslip);
  border-radius: var(--radius-10) var(--radius-10) 0 var(--radius-10);
}
.a-training-chat-message--reversed .a-training-chat-message__content::before {
  right: auto;
  left: 100%;
  -webkit-transform: scale(-1, 1);
      -ms-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.a-training-tabs {
  scroll-margin-top: 150px;
}
.a-training-tabs__bar {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 36px;
  margin: 0 0 34px;
}
@media (min-width: 1200px) {
  .a-training-tabs__bar {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0;
    margin-bottom: 52px;
    border-bottom: 1px solid var(--gray-161);
  }
}
.a-training-tabs__control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid var(--gray-161);
}
@media (min-width: 1200px) {
  .a-training-tabs__control {
    border: none;
  }
}
.a-training-tabs__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 100px;
  min-height: 58px;
  margin: 0 0 -1px;
  padding: 16px 20px;
  font-size: 0;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius-16) var(--radius-16) 0 0;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-property: color, border-color, background-color;
  transition-property: color, border-color, background-color;
}
@media (min-width: 1200px) {
  .a-training-tabs__btn {
    gap: 12px;
    min-width: 172px;
    color: var(--gray-113);
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
  }
}
.a-training-tabs__btn svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: var(--gray-113);
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.a-training-tabs__btn.active {
  color: var(--backtimeslip);
  border-color: var(--gray-161);
  border-bottom-color: transparent;
  background-color: var(--background);
}
.a-training-tabs__btn.active svg {
  color: var(--backtimeslip);
}
.a-training-tabs__statuses {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 18px 36px;
  font-size: 16px;
  line-height: 20px;
}
@media (min-width: 1200px) {
  .a-training-tabs__statuses {
    margin: 0 0 12px;
  }
}
.a-training-tabs__status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  font-size: 14px;
  line-height: 17px;
  font-weight: 700;
}
@media (min-width: 1200px) {
  .a-training-tabs__status {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
  }
}
.a-training-tabs__status::before {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--status-color);
}
.a-training-tabs__item {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  grid-gap: 30px;
}
@media (min-width: 1200px) {
  .a-training-tabs__item {
    grid-gap: 64px;
  }
}
.a-training-tabs__item.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.a-training-tabs__item.fade {
  -webkit-animation: fade 0.5s;
          animation: fade 0.5s;
}
.a-training-tabs__title {
  display: block;
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
}
@media (min-width: 1200px) {
  .a-training-tabs__title {
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
  }
}
.a-training-tabs__cards {
  display: grid;
  grid-gap: 30px;
}
@media (min-width: 768px) {
  .a-training-tabs__cards {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
  }
}
@media (min-width: 1200px) {
  .a-training-tabs__cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1400px) {
  .a-training-tabs__cards {
    grid-template-columns: repeat(4, 1fr);
  }
}
.a-training-tabs__add {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 236px;
  gap: 20px;
  padding: 20px;
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  text-transform: uppercase;
  border: 2px solid var(--red);
  border-radius: var(--radius-30);
}
@media (min-width: 768px) {
  .a-training-tabs__add {
    min-height: 232px;
  }
}
@media (min-width: 1200px) {
  .a-training-tabs__add {
    min-height: 258px;
  }
}
.a-training-tabs__add span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 30px;
  height: 30px;
}
.a-training-tabs__add span::before, .a-training-tabs__add span::after {
  content: "";
  position: absolute;
  background-color: var(--backtimeslip);
}
.a-training-tabs__add span::before {
  width: 30px;
  height: 7px;
}
.a-training-tabs__add span::after {
  width: 7px;
  height: 30px;
}

.a-training-tabs--mod-lessons {
  padding: 30px 0 0;
}
@media (min-width: 1200px) {
  .a-training-tabs--mod-lessons {
    padding-top: 110px;
  }
}

.a-training-tabs-card {
  min-height: 232px;
  border-radius: var(--radius-30);
  border: 2px solid var(--card-color);
  overflow: hidden;
}
@media (min-width: 1200px) {
  .a-training-tabs-card {
    min-height: 258px;
  }
}
.a-training-tabs-card__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 8px;
  padding: 8px 20px 18px;
  background-color: var(--card-color);
}
.a-training-tabs-card__num {
  color: var(--card-top-color);
  font-size: 36px;
  line-height: 43px;
  font-weight: 600;
}
.a-training-tabs-card__title {
  color: var(--card-top-color);
  font-size: 24px;
  line-height: 24px;
  font-weight: 600;
}
.a-training-tabs-card__date {
  color: var(--card-top-color);
  margin: 0 0 0 auto;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}
@media (min-width: 1200px) {
  .a-training-tabs-card__date {
    font-weight: 400;
  }
}
.a-training-tabs-card__lines {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  padding: 20px 16px;
}
@media (min-width: 768px) {
  .a-training-tabs-card__lines {
    padding: 20px;
  }
}
.a-training-tabs-card__line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.a-training-tabs-card__line span {
  font-size: 16px;
  line-height: 21px;
}
.a-training-tabs-card__line span:nth-child(1) {
  min-width: 120px;
  font-weight: 600;
}
.a-training-tabs-card__line span:nth-child(2) {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.slider-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (min-width: 768px) {
  .slider-buttons {
    display: none;
  }
}
.slider-buttons__prev, .slider-buttons__next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 44px;
  height: 44px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.slider-buttons__prev svg, .slider-buttons__next svg {
  position: absolute;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.slider-buttons__prev svg:nth-child(1), .slider-buttons__next svg:nth-child(1) {
  color: var(--gray-227);
}
.slider-buttons__prev svg:nth-child(2), .slider-buttons__next svg:nth-child(2) {
  opacity: 0;
}
.slider-buttons__prev:not(.swiper-button-disabled):hover svg:nth-child(1), .slider-buttons__next:not(.swiper-button-disabled):hover svg:nth-child(1) {
  opacity: 0;
}
.slider-buttons__prev:not(.swiper-button-disabled):hover svg:nth-child(2), .slider-buttons__next:not(.swiper-button-disabled):hover svg:nth-child(2) {
  opacity: 1;
}
.slider-buttons__prev.swiper-button-disabled, .slider-buttons__next.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.slider-buttons__prev svg:nth-child(1) {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.slider-buttons__next svg:nth-child(2) {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.a-profile-card__inner {
  display: grid;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  grid-gap: 40px;
  padding: 0 0 30px;
  border-bottom: 1px solid var(--purple-gray);
}
@media (min-width: 768px) {
  .a-profile-card__inner {
    grid-template-columns: auto 1fr;
    padding-bottom: 50px;
  }
}
@media (min-width: 1200px) {
  .a-profile-card__inner {
    gap: 40px 100px;
    padding-bottom: 70px;
  }
}
.a-profile-card__title {
  position: relative;
}
.a-profile-card__avatar {
  justify-self: center;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 145px;
  height: 145px;
  border-radius: 50%;
  overflow: hidden;
}
@media (min-width: 768px) {
  .a-profile-card__avatar {
    grid-area: 1/1/3/2;
  }
}
@media (min-width: 1200px) {
  .a-profile-card__avatar {
    width: 252px;
    height: 252px;
  }
}
@media (min-width: 1200px) {
  .a-profile-card__avatar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 4px solid var(--backtimeslip);
    border-radius: 50%;
  }
}
.a-profile-card__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
@media (min-width: 1200px) {
  .a-profile-card__avatar img {
    width: calc(100% - 30px);
    height: calc(100% - 30px);
  }
}
.a-profile-card__lines {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 38px;
  margin: 0 0 32px;
}
@media (min-width: 1200px) {
  .a-profile-card__lines {
    gap: 16px;
    margin-bottom: 60px;
  }
}
.a-profile-card__line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3px 12px;
}
@media (min-width: 768px) {
  .a-profile-card__line {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.a-profile-card__line-username {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.a-profile-card__label, .a-profile-card__value, .a-profile-card__link {
  font-size: 20px;
  line-height: 24px;
}
@media (min-width: 1200px) {
  .a-profile-card__label, .a-profile-card__value, .a-profile-card__link {
    font-size: 24px;
    line-height: 29px;
  }
}
.a-profile-card__label {
  font-weight: 600;
}
@media (min-width: 768px) {
  .a-profile-card__label {
    min-width: 210px;
  }
}
.a-profile-card__values {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3px 28px;
}
.a-profile-card__value, .a-profile-card__link {
  color: var(--gray-234);
}
.a-profile-card__link {
  text-align: left;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
.a-profile-card__share-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  min-height: 65px;
  padding: 10px 28px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 80px;
  border: 2px solid var(--backtimeslip);
}
@media (min-width: 1200px) {
  .a-profile-card__share-btn {
    gap: 16px;
  }
}
.a-profile-card__edit-btn {
  position: absolute;
  top: 70px;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 13px;
  border: 1px solid var(--backtimeslip);
}
@media (min-width: 768px) {
  .a-profile-card__edit-btn {
    top: 0;
  }
}
.a-profile-card__edit-btn svg {
  color: var(--backtimeslip);
  margin: -2px -6px 0 0;
}

.a-profile-dashboard {
  padding: 34px 0;
}
@media (min-width: 1200px) {
  .a-profile-dashboard {
    padding: 60px 0 40px;
  }
}
.a-profile-dashboard__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 78px;
}
@media (min-width: 1200px) {
  .a-profile-dashboard__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 100px;
  }
}
.a-profile-dashboard__statuses {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  margin: auto 0 0;
}
.a-profile-dashboard__status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 27px;
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 20px;
}
.a-profile-dashboard__status::before {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  content: "";
  width: 20px;
  height: 20px;
}
.a-profile-dashboard__status:nth-child(1)::before {
  background: var(--green);
}
.a-profile-dashboard__status:nth-child(2)::before {
  background: var(--yellow);
}

.a-profile-achievements {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 1200px) {
  .a-profile-achievements {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 600px;
  }
}
.a-profile-achievements__title {
  margin: 0 0 42px;
}
@media (min-width: 1200px) {
  .a-profile-achievements__title {
    margin-bottom: 78px;
  }
}
.a-profile-achievements__charts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
  margin: 0 0 60px;
}
@media (min-width: 768px) {
  .a-profile-achievements__charts {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    gap: 40px;
  }
}
@media (min-width: 1200px) {
  .a-profile-achievements__charts {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media (min-width: 768px) {
  .a-profile-achievements-donut {
    width: 250px;
  }
}
.a-profile-achievements-donut__label {
  margin: 0 0 26px;
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
}
@media (min-width: 1200px) {
  .a-profile-achievements-donut__label {
    min-height: 87px;
    margin-bottom: 30px;
    font-size: 24px;
    line-height: 29px;
  }
}
.a-profile-achievements-donut__inner {
  width: 250px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 50%;
  background: conic-gradient(var(--green) 0% var(--percent), var(--yellow) var(--percent) 100%);
}
.a-profile-achievements-donut__inner span {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: calc(100% - 80px);
  height: calc(100% - 80px);
  font-size: 48px;
  line-height: 77px;
  border-radius: 50%;
  background-color: var(--background);
}

.a-profile-statistics {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.a-profile-statistics__title {
  margin: 0 0 42px;
}
@media (min-width: 1200px) {
  .a-profile-statistics__title {
    margin-bottom: 78px;
  }
}
.a-profile-statistics__subtitle {
  margin: 0 0 42px;
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
}
@media (min-width: 1200px) {
  .a-profile-statistics__subtitle {
    min-height: 87px;
    margin-bottom: 30px;
    font-size: 24px;
    line-height: 29px;
  }
}
.a-profile-statistics__bars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  margin: 0 0 60px;
}
@media (min-width: 768px) {
  .a-profile-statistics__bars {
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    gap: 28px;
  }
}
@media (min-width: 1200px) {
  .a-profile-statistics__bars {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.a-profile-statistics-bar {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  width: 44px;
}
.a-profile-statistics-bar__progress {
  background-color: var(--yellow);
  height: 248px;
  border-radius: 5px;
}
.a-profile-statistics-bar__value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--black-34);
  font-size: 32px;
  line-height: 26px;
  font-weight: 700;
  border-radius: 5px;
  overflow: hidden;
}
.a-profile-statistics-bar__value--accepted {
  color: var(--backtimeslip);
  background-color: var(--green);
}
.a-profile-statistics-bar__date {
  -ms-flex-item-align: center;
      align-self: center;
  font-size: 16px;
  line-height: 100%;
}

.a-profile-zitons {
  padding: 34px 0 45px;
}
@media (min-width: 1200px) {
  .a-profile-zitons {
    padding: 40px 0 60px;
  }
}
.a-profile-zitons__title {
  margin: 0 0 54px;
}
@media (min-width: 1200px) {
  .a-profile-zitons__title {
    margin-bottom: 60px;
  }
}
.a-profile-zitons__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
}
@media (min-width: 1200px) {
  .a-profile-zitons__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 100px;
  }
}
.a-profile-zitons__left {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 50px 10px;
}
@media (min-width: 768px) {
  .a-profile-zitons__left {
    grid-gap: 50px 40px;
  }
}
@media (min-width: 1200px) {
  .a-profile-zitons__left {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 600px;
    grid-template-columns: repeat(2, auto);
  }
}
@media (min-width: 1400px) {
  .a-profile-zitons__left {
    grid-gap: 63px 40px;
  }
}
.a-profile-zitons__balance {
  grid-column: span 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
}
@media (min-width: 768px) {
  .a-profile-zitons__balance {
    grid-column: auto;
  }
}
.a-profile-zitons__amount {
  font-weight: 600;
  font-size: 64px;
  line-height: 77px;
}
.a-profile-zitons__details {
  grid-column: span 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 7px;
}
@media (min-width: 768px) {
  .a-profile-zitons__details {
    grid-column: auto;
  }
}
.a-profile-zitons__detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 20px;
  line-height: 24px;
}
.a-profile-zitons__detail span:nth-child(2) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.a-profile-zitons__detail svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.a-profile-zitons__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  min-height: 54px;
  padding: 0 10px;
  font-size: 24px;
  line-height: 28px;
  font-weight: 700;
  border-radius: 80px;
}
@media (min-width: 768px) {
  .a-profile-zitons__btn {
    min-width: 246px;
  }
}
.a-profile-zitons__btn::before {
  font-size: 64px;
  line-height: 28px;
  font-weight: 600;
}
.a-profile-zitons__btn--add {
  background-color: var(--green);
}
.a-profile-zitons__btn--add::before {
  content: "+";
}
.a-profile-zitons__btn--remove {
  background-color: var(--red);
}
.a-profile-zitons__btn--remove::before {
  content: "-";
  margin-top: -8px;
}

.a-profile-zitons-assistant {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}
@media (min-width: 768px) {
  .a-profile-zitons-assistant {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media (min-width: 1200px) {
  .a-profile-zitons-assistant {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}
.a-profile-zitons-assistant__img {
  width: 124px;
}
@media (min-width: 768px) {
  .a-profile-zitons-assistant__img {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.a-profile-zitons-assistant__img img {
  width: 100%;
  height: auto;
}
.a-profile-zitons-assistant__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.a-profile-zitons-assistant__text {
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
}
.a-profile-zitons-assistant__text span {
  color: var(--orange);
}
.a-profile-zitons-assistant__footnote {
  font-size: 16px;
  line-height: 21px;
}

.a-profile-economy {
  padding: 45px 0 50px;
}
@media (min-width: 1200px) {
  .a-profile-economy {
    padding: 60px 0 80px;
  }
}
.a-profile-economy__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  gap: 100px;
}
@media (min-width: 1200px) {
  .a-profile-economy__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media (min-width: 1200px) {
  .a-profile-history {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 600px;
  }
}
.a-profile-history__title {
  margin: 0 0 26px;
}
@media (min-width: 1200px) {
  .a-profile-history__title {
    margin-bottom: 75px;
  }
}
.a-profile-history__inner {
  padding: 20px 0;
  border-radius: var(--radius-20);
  background: var(--black-34);
  margin: 0 -20px;
}
@media (min-width: 768px) {
  .a-profile-history__inner {
    margin: 0;
  }
}
.a-profile-history__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 46px;
  padding: 10px 20px;
  max-height: 714px;
  overflow-y: auto;
  scrollbar-color: var(--gray-238) var(--gray-121);
  scrollbar-width: thin;
}
@media (min-width: 768px) {
  .a-profile-history__items {
    padding: 20px 40px;
  }
}
.a-profile-history__items::-webkit-scrollbar {
  width: 4px;
  background-color: var(--gray-121);
}
.a-profile-history__items::-webkit-scrollbar-thumb {
  border-radius: 8px;
  background-color: var(--gray-238);
}

.a-profile-history-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 73px;
}
@media (min-width: 480px) {
  .a-profile-history-item {
    gap: 120px;
  }
}
@media (min-width: 576px) {
  .a-profile-history-item {
    gap: 40px;
  }
}
@media (min-width: 1200px) {
  .a-profile-history-item {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.a-profile-history-item__col {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 1200px) {
  .a-profile-history-item__col {
    max-width: 200px;
  }
}
.a-profile-history-item__col:nth-child(3) {
  display: none;
  -ms-flex-negative: 1;
      flex-shrink: 1;
}
@media (min-width: 576px) {
  .a-profile-history-item__col:nth-child(3) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 1200px) {
  .a-profile-history-item__col:nth-child(3) {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 200px;
  }
}
.a-profile-history-item__caption {
  font-size: 24px;
  line-height: 29px;
  font-weight: 600;
}
.a-profile-history-item__date {
  margin: 19px 0 0;
  font-size: 20px;
  line-height: 24px;
}
.a-profile-history-item__amount {
  position: relative;
  padding: 0 0 0 44px;
  margin: 15px 0 0;
  font-size: 24px;
  line-height: 29px;
  font-weight: 600;
}
.a-profile-history-item__amount::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  width: 28px;
  height: 28px;
  border: 3px solid transparent;
  border-radius: 50%;
}
.a-profile-history-item__amount::after {
  position: absolute;
  font-size: 24px;
  line-height: 29px;
  font-weight: 600;
}
.a-profile-history-item__amount--minus::before {
  border-color: var(--red);
}
.a-profile-history-item__amount--minus::after {
  content: "-";
  top: -1px;
  left: 9px;
  color: var(--red);
}
.a-profile-history-item__amount--plus::before {
  border-color: var(--green);
}
.a-profile-history-item__amount--plus::after {
  content: "+";
  top: 0px;
  left: 7px;
  color: var(--green);
}
.a-profile-history-item__comment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 40px;
  margin: 4px 0 0;
  font-size: 16px;
  line-height: 20px;
}

.a-profile-fortune {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 1200px) {
  .a-profile-fortune {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}
.a-profile-fortune__title {
  margin: 0 0 40px;
}
@media (min-width: 1200px) {
  .a-profile-fortune__title {
    margin-bottom: 75px;
  }
}
.a-profile-fortune__statuses {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media (min-width: 1200px) {
  .a-profile-fortune__statuses {
    margin: auto 0 0;
  }
}
.a-profile-fortune__status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  font-size: 16px;
  line-height: 20px;
}
@media (min-width: 1200px) {
  .a-profile-fortune__status {
    gap: 28px;
  }
}
.a-profile-fortune__status::before {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  content: "";
  width: 45px;
  height: 21px;
}
.a-profile-fortune__status:nth-child(1)::before {
  background: var(--red);
}
.a-profile-fortune__status:nth-child(2)::before {
  background: var(--yellow);
}
.a-profile-fortune__status:nth-child(3)::before {
  background: var(--orange);
}
.a-profile-fortune__status:nth-child(3) svg {
  color: var(--blue);
}
.a-profile-fortune__status:nth-child(4)::before {
  background: var(--green);
}
.a-profile-fortune__status span {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  border: 1px solid var(--backtimeslip);
}
.a-profile-fortune__status svg {
  color: var(--backtimeslip);
}

.a-profile-fortune-wheel {
  -ms-flex-item-align: center;
      align-self: center;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 320px;
  height: 320px;
  margin: 0 0 60px;
  border-radius: 50%;
  border: 2px solid var(--purple-86);
  overflow: hidden;
}
@media (min-width: 768px) {
  .a-profile-fortune-wheel {
    width: 458px;
    height: 458px;
  }
}
.a-profile-fortune-wheel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  border-top: 12px solid var(--backtimeslip);
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
}
.a-profile-fortune-wheel::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 2px;
  height: 14.5%;
  background-color: var(--backtimeslip);
}
.a-profile-fortune-wheel__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 93.7%;
  height: 93.7%;
  border-radius: 50%;
  background: conic-gradient(var(--red) 0% 12.5%, var(--yellow) 12.5% 25%, var(--green) 25% 37.5%, var(--orange) 37.5% 50%, var(--red) 50% 62.5%, var(--yellow) 62.5% 75%, var(--green) 75% 87.5%, var(--orange) 87.5% 100%);
}
.a-profile-fortune-wheel__icons {
  position: relative;
  border-radius: 50%;
  width: 84.7%;
  height: 84.7%;
  background-color: var(--background);
}
.a-profile-fortune-wheel__icon {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 43px;
  height: 43px;
  border: 1px solid var(--backtimeslip);
  border-radius: 50%;
}
.a-profile-fortune-wheel__icon svg {
  color: var(--backtimeslip);
}
.a-profile-fortune-wheel__icon:nth-child(1) {
  top: 14.8%;
  left: 65%;
  -webkit-transform: translate(-50%, -50%) rotate(25deg) scale(0.7);
      -ms-transform: translate(-50%, -50%) rotate(25deg) scale(0.7);
          transform: translate(-50%, -50%) rotate(25deg) scale(0.7);
}
@media (min-width: 768px) {
  .a-profile-fortune-wheel__icon:nth-child(1) {
    -webkit-transform: translate(-50%, -50%) rotate(25deg) scale(1);
        -ms-transform: translate(-50%, -50%) rotate(25deg) scale(1);
            transform: translate(-50%, -50%) rotate(25deg) scale(1);
  }
}
.a-profile-fortune-wheel__icon:nth-child(2) {
  top: 35%;
  left: 85%;
  -webkit-transform: translate(-50%, -50%) rotate(65deg) scale(0.7);
      -ms-transform: translate(-50%, -50%) rotate(65deg) scale(0.7);
          transform: translate(-50%, -50%) rotate(65deg) scale(0.7);
}
@media (min-width: 768px) {
  .a-profile-fortune-wheel__icon:nth-child(2) {
    -webkit-transform: translate(-50%, -50%) rotate(65deg) scale(1);
        -ms-transform: translate(-50%, -50%) rotate(65deg) scale(1);
            transform: translate(-50%, -50%) rotate(65deg) scale(1);
  }
}
.a-profile-fortune-wheel__icon:nth-child(3) {
  top: 65.7%;
  left: 85.6%;
  -webkit-transform: translate(-50%, -50%) rotate(-25deg) scale(0.7);
      -ms-transform: translate(-50%, -50%) rotate(-25deg) scale(0.7);
          transform: translate(-50%, -50%) rotate(-25deg) scale(0.7);
}
@media (min-width: 768px) {
  .a-profile-fortune-wheel__icon:nth-child(3) {
    -webkit-transform: translate(-50%, -50%) rotate(-25deg) scale(1);
        -ms-transform: translate(-50%, -50%) rotate(-25deg) scale(1);
            transform: translate(-50%, -50%) rotate(-25deg) scale(1);
  }
}
.a-profile-fortune-wheel__icon:nth-child(4) {
  top: 84.9%;
  left: 65%;
  -webkit-transform: translate(-50%, -50%) rotate(165deg) scale(0.7);
      -ms-transform: translate(-50%, -50%) rotate(165deg) scale(0.7);
          transform: translate(-50%, -50%) rotate(165deg) scale(0.7);
}
@media (min-width: 768px) {
  .a-profile-fortune-wheel__icon:nth-child(4) {
    -webkit-transform: translate(-50%, -50%) rotate(165deg) scale(1);
        -ms-transform: translate(-50%, -50%) rotate(165deg) scale(1);
            transform: translate(-50%, -50%) rotate(165deg) scale(1);
  }
}
.a-profile-fortune-wheel__icon:nth-child(4) svg {
  color: var(--blue);
}
.a-profile-fortune-wheel__icon:nth-child(5) {
  top: 84.9%;
  left: 37.2%;
  -webkit-transform: translate(-50%, -50%) rotate(205deg) scale(0.7);
      -ms-transform: translate(-50%, -50%) rotate(205deg) scale(0.7);
          transform: translate(-50%, -50%) rotate(205deg) scale(0.7);
}
@media (min-width: 768px) {
  .a-profile-fortune-wheel__icon:nth-child(5) {
    -webkit-transform: translate(-50%, -50%) rotate(205deg) scale(1);
        -ms-transform: translate(-50%, -50%) rotate(205deg) scale(1);
            transform: translate(-50%, -50%) rotate(205deg) scale(1);
  }
}
.a-profile-fortune-wheel__icon:nth-child(6) {
  top: 65.7%;
  left: 15.5%;
  -webkit-transform: translate(-50%, -50%) rotate(245deg) scale(0.7);
      -ms-transform: translate(-50%, -50%) rotate(245deg) scale(0.7);
          transform: translate(-50%, -50%) rotate(245deg) scale(0.7);
}
@media (min-width: 768px) {
  .a-profile-fortune-wheel__icon:nth-child(6) {
    -webkit-transform: translate(-50%, -50%) rotate(245deg) scale(1);
        -ms-transform: translate(-50%, -50%) rotate(245deg) scale(1);
            transform: translate(-50%, -50%) rotate(245deg) scale(1);
  }
}
.a-profile-fortune-wheel__icon:nth-child(7) {
  top: 35%;
  left: 15.5%;
  -webkit-transform: translate(-50%, -50%) rotate(-25deg) scale(0.7);
      -ms-transform: translate(-50%, -50%) rotate(-25deg) scale(0.7);
          transform: translate(-50%, -50%) rotate(-25deg) scale(0.7);
}
@media (min-width: 768px) {
  .a-profile-fortune-wheel__icon:nth-child(7) {
    -webkit-transform: translate(-50%, -50%) rotate(-25deg) scale(1);
        -ms-transform: translate(-50%, -50%) rotate(-25deg) scale(1);
            transform: translate(-50%, -50%) rotate(-25deg) scale(1);
  }
}
.a-profile-fortune-wheel__icon:nth-child(8) {
  top: 14.8%;
  left: 37.2%;
  -webkit-transform: translate(-50%, -50%) rotate(-15deg) scale(0.7);
      -ms-transform: translate(-50%, -50%) rotate(-15deg) scale(0.7);
          transform: translate(-50%, -50%) rotate(-15deg) scale(0.7);
}
@media (min-width: 768px) {
  .a-profile-fortune-wheel__icon:nth-child(8) {
    -webkit-transform: translate(-50%, -50%) rotate(-15deg) scale(1);
        -ms-transform: translate(-50%, -50%) rotate(-15deg) scale(1);
            transform: translate(-50%, -50%) rotate(-15deg) scale(1);
  }
}
.a-profile-fortune-wheel__icon:nth-child(8) svg {
  color: var(--blue);
}
.a-profile-fortune-wheel__btn {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 35.7%;
  height: 35.7%;
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  text-transform: uppercase;
  font-variant-numeric: tabular-nums;
  border-radius: 50%;
  background-color: var(--green);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media (min-width: 768px) {
  .a-profile-fortune-wheel__btn {
    font-size: 18px;
  }
}
.a-profile-fortune-wheel__btn:disabled {
  background-color: var(--gray-141);
  cursor: default;
}

.a-rating {
  padding: 0 0 50px;
}
@media (min-width: 1200px) {
  .a-rating {
    padding: 0 0 80px;
  }
}
.a-rating__title {
  margin: 0 0 22px;
}
@media (min-width: 1200px) {
  .a-rating__title {
    margin-bottom: 28px;
  }
}
.a-rating__table {
  overflow-x: auto;
  margin: 0 -20px;
  padding: 0 20px 10px;
}
@media (min-width: 992px) {
  .a-rating__table {
    margin: 0;
    padding: 0;
  }
}
.a-rating__table table {
  width: 1000px;
  border-collapse: collapse;
}
@media (min-width: 992px) {
  .a-rating__table table {
    width: 100%;
  }
}
.a-rating__table table th,
.a-rating__table table td {
  padding: 0;
  font-size: 14px;
  line-height: 17px;
}
.a-rating__table table th:nth-child(1),
.a-rating__table table td:nth-child(1) {
  width: 28px;
}
@media (min-width: 768px) {
  .a-rating__table table th:nth-child(1),
  .a-rating__table table td:nth-child(1) {
    width: 40px;
  }
}
.a-rating__table table th:nth-child(2),
.a-rating__table table td:nth-child(2) {
  width: 200px;
}
@media (min-width: 768px) {
  .a-rating__table table th:nth-child(2),
  .a-rating__table table td:nth-child(2) {
    width: 224px;
  }
}
.a-rating__table table th:nth-child(3),
.a-rating__table table td:nth-child(3) {
  width: 170px;
}
.a-rating__table table th:nth-child(4),
.a-rating__table table td:nth-child(4) {
  width: 195px;
}
.a-rating__table table th:nth-child(5),
.a-rating__table table td:nth-child(5) {
  width: 225px;
}
.a-rating__table table th:nth-child(3), .a-rating__table table th:nth-child(4), .a-rating__table table th:nth-child(5),
.a-rating__table table td:nth-child(3),
.a-rating__table table td:nth-child(4),
.a-rating__table table td:nth-child(5) {
  text-align: center;
}
.a-rating__table table th {
  font-weight: 400;
  text-align: left;
  padding: 14px 5px;
  border-bottom: 1px dashed var(--purple-164-opacity-20);
}
@media (min-width: 1200px) {
  .a-rating__table table th {
    padding: 16px 5px;
  }
}
.a-rating__table table th button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.a-rating__table table th button.active {
  color: var(--yellow);
}
.a-rating__table table td {
  padding: 5px;
  color: var(--purple-164);
}
.a-rating__table table td:nth-child(1), .a-rating__table table td:nth-child(2) {
  color: var(---backtimeslip);
}
.a-rating__table table td:nth-child(1) {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
}
.a-rating__table table td:nth-child(2) > span, .a-rating__table table td:nth-child(2) > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.a-rating__table table td:nth-child(2) > span img, .a-rating__table table td:nth-child(2) > div img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 25px;
  height: 25px;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
  border-radius: 50%;
}
@media (min-width: 992px) {
  .a-rating__table table td:nth-child(2) > span span, .a-rating__table table td:nth-child(2) > div span {
    white-space: nowrap;
  }
}
.a-rating__table table tbody {
  counter-reset: row-counter;
}
.a-rating__table table tbody tr:nth-child(1) td {
  padding-top: 14px;
}
@media (min-width: 1200px) {
  .a-rating__table table tbody tr:nth-child(1) td {
    padding-top: 16px;
  }
}
.a-rating__table table tbody tr td:nth-child(1)::before {
  content: counter(row-counter);
  counter-increment: row-counter;
}

.a-teachers {
  padding: 0 0 50px;
}
@media (min-width: 1200px) {
  .a-teachers {
    padding: 0 0 80px;
  }
}
.a-teachers__title {
  margin: 0 0 22px;
}
@media (min-width: 1200px) {
  .a-teachers__title {
    margin-bottom: 28px;
  }
}
.a-teachers__table {
  overflow-x: auto;
  margin: 0 -20px;
  padding: 0 20px 10px;
}
@media (min-width: 768px) {
  .a-teachers__table {
    margin: 0;
    padding: 0;
  }
}
.a-teachers__table table {
  width: 780px;
  border-collapse: collapse;
}
@media (min-width: 768px) {
  .a-teachers__table table {
    width: 100%;
  }
}
.a-teachers__table table th,
.a-teachers__table table td {
  padding: 0;
  font-size: 14px;
  line-height: 17px;
}
.a-teachers__table table th:nth-child(1),
.a-teachers__table table td:nth-child(1) {
  width: 32px;
}
@media (min-width: 768px) {
  .a-teachers__table table th:nth-child(1),
  .a-teachers__table table td:nth-child(1) {
    width: 50px;
  }
}
.a-teachers__table table th:nth-child(2),
.a-teachers__table table td:nth-child(2) {
  width: 194px;
}
@media (min-width: 768px) {
  .a-teachers__table table th:nth-child(2),
  .a-teachers__table table td:nth-child(2) {
    width: 224px;
  }
}
.a-teachers__table table th:nth-child(3),
.a-teachers__table table td:nth-child(3) {
  width: 204px;
}
.a-teachers__table table th {
  font-weight: 400;
  text-align: left;
  padding: 14px 5px;
  border-bottom: 1px dashed var(--purple-164-opacity-20);
}
@media (min-width: 1200px) {
  .a-teachers__table table th {
    padding: 16px 5px;
  }
}
.a-teachers__table table td {
  padding: 8px 5px;
}
@media (min-width: 1200px) {
  .a-teachers__table table td {
    padding: 10px 5px;
  }
}
.a-teachers__table table td:nth-child(1) {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
}
.a-teachers__table table td:nth-child(3), .a-teachers__table table td:nth-child(4) {
  color: var(--purple-164);
}
.a-teachers__table table tbody {
  counter-reset: row-counter;
}
.a-teachers__table table tbody tr:nth-child(1) td {
  padding-top: 14px;
}
@media (min-width: 1200px) {
  .a-teachers__table table tbody tr:nth-child(1) td {
    padding-top: 16px;
  }
}
.a-teachers__table table tbody tr td:nth-child(1)::before {
  content: counter(row-counter);
  counter-increment: row-counter;
}

.a-groups {
  padding: 0 0 50px;
}
@media (min-width: 1200px) {
  .a-groups {
    padding: 0 0 80px;
  }
}
.a-groups__title {
  margin: 0 0 28px;
}
@media (min-width: 1200px) {
  .a-groups__title {
    margin-bottom: 43px;
  }
}
.a-groups__cards {
  display: grid;
  grid-gap: 30px;
}
@media (min-width: 992px) {
  .a-groups__cards {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
  }
}

.a-groups-card {
  min-height: 278px;
  padding: 30px 30px 40px;
  border-radius: var(--radius-30);
  background-color: var(--gray-61);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media (hover: hover) {
  .a-groups-card:hover {
    background: var(--blue);
  }
}
@media (hover: none) {
  .a-groups-card:active {
    background: var(--blue);
  }
}
.a-groups-card.active {
  background: var(--blue);
}
.a-groups-card__title {
  position: relative;
  display: block;
  margin: 0 0 20px;
  padding: 0 0 30px;
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
}
.a-groups-card__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 6px;
  background-color: var(--backtimeslip);
}
.a-groups-card__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  padding: 0 0 0 24px;
}
.a-groups-card__item {
  font-size: 16px;
  line-height: 24px;
  list-style-type: decimal;
}

.a-toggle {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
}
.a-toggle__input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
.a-toggle__input:checked + .a-toggle__text::before {
  background-color: var(--blue-13);
}
.a-toggle__input:checked + .a-toggle__text::after {
  left: 30px;
  background-color: var(--backtimeslip);
}
.a-toggle__input:focus + .a-toggle__text::before {
  -webkit-box-shadow: 0 0 0 1px var(--backtimeslip);
          box-shadow: 0 0 0 1px var(--backtimeslip);
}
.a-toggle__text {
  position: relative;
  display: block;
  padding: 0 0 0 64px;
  font-size: 20px;
  line-height: 24px;
}
.a-toggle__text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 52px;
  height: 24px;
  border-radius: 80px;
  background-color: var(--gray);
  border: 1px solid #303030;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.a-toggle__text::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: var(--blue-154);
  -webkit-transition: left 0.3s, background-color 0.3s;
  transition: left 0.3s, background-color 0.3s;
}

.a-lesson {
  padding: 0 0 50px;
}
@media (min-width: 1200px) {
  .a-lesson {
    padding: 0 0 80px;
  }
}
.a-lesson .a-training-tabs__bar {
  margin-bottom: 32px;
}
@media (min-width: 1200px) {
  .a-lesson .a-training-tabs__bar {
    margin-bottom: 48px;
  }
}
.a-lesson .a-training-tabs__statuses {
  display: none;
}
@media (min-width: 1200px) {
  .a-lesson .a-training-tabs__statuses {
    display: grid;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    grid-template-columns: repeat(2, auto);
  }
}
@media (min-width: 1400px) {
  .a-lesson .a-training-tabs__statuses {
    width: 468px;
  }
}
.a-lesson .a-training-tabs__status::before {
  border: 3px solid var(--status-color);
  background-color: var(--bg-color);
}

.a-lesson-main {
  padding: 14px 0 56px;
}
@media (min-width: 1200px) {
  .a-lesson-main {
    padding: 24px 0 56px;
  }
}
.a-lesson-main__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 0 12px;
}
@media (min-width: 1200px) {
  .a-lesson-main__top {
    margin-bottom: 32px;
  }
}
.a-lesson-main__top .a-breadcrumbs {
  padding: 0;
}
.a-lesson-main__btn {
  display: none;
  padding: 12px;
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  text-align: center;
  color: var(--backtimeslip);
  border-radius: var(--radius-12);
  border: 2px solid var(--backtimeslip);
}
@media (min-width: 1200px) {
  .a-lesson-main__btn {
    display: block;
  }
}
.a-lesson-main__inner {
  display: grid;
  gap: 25px;
}
@media (min-width: 768px) {
  .a-lesson-main__inner {
    grid-template-columns: repeat(2, 1fr);
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.a-lesson-main__subtitle {
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .a-lesson-main__subtitle {
    justify-self: end;
  }
}
@media (min-width: 1200px) {
  .a-lesson-main__subtitle {
    font-size: 28px;
    line-height: 34px;
  }
}
.a-lesson-main__status {
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  grid-row: 2/3;
}
@media (min-width: 768px) {
  .a-lesson-main__status {
    -ms-flex-item-align: end;
        align-self: end;
  }
}
@media (min-width: 1200px) {
  .a-lesson-main__status {
    font-size: 24px;
    line-height: 29px;
  }
}
.a-lesson-main__select {
  display: block;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: var(--black);
  border: 1px solid var(--gray);
  border-radius: 4px;
  padding: 13px 18px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='9' viewBox='0 0 16 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.5157 8.52815C8.12518 8.91868 7.49201 8.91868 7.10149 8.52815L0.737526 2.16419C0.347002 1.77367 0.347001 1.1405 0.737526 0.749977C1.12805 0.359453 1.76122 0.359453 2.15174 0.749977L7.80859 6.40683L13.4654 0.749977C13.856 0.359453 14.4891 0.359453 14.8797 0.749977C15.2702 1.1405 15.2702 1.77367 14.8797 2.16419L8.5157 8.52815ZM7.80859 5.82031L8.80859 5.82031L8.80859 7.82104L7.80859 7.82104L6.80859 7.82104L6.80859 5.82031L7.80859 5.82031Z' fill='black' /%3E%3C/svg%3E");
  cursor: pointer;
}

.a-lesson-theme {
  margin: -20px 0 0;
  padding: 20px 0 50px;
  border-radius: var(--radius-20) var(--radius-20) 0 0;
  background-color: var(--black-34);
}
@media (min-width: 1200px) {
  .a-lesson-theme {
    padding: 28px 0 132px;
  }
}
.a-lesson-theme__suptitle {
  display: block;
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 300;
}
.a-lesson-theme__title {
  margin: 0 0 44px;
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
}
@media (min-width: 1200px) {
  .a-lesson-theme__title {
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 100px;
  }
}
.a-lesson-theme__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  padding: 20px 15px;
  border: 1px solid var(--backtimeslip);
  border-radius: var(--radius-16);
}
@media (min-width: 768px) {
  .a-lesson-theme__block {
    padding: 20px;
  }
}
@media (min-width: 1200px) {
  .a-lesson-theme__block {
    padding: 24px;
  }
}
.a-lesson-theme__descr {
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
}
@media (min-width: 1200px) {
  .a-lesson-theme__descr {
    font-size: 20px;
    line-height: 24px;
  }
}
.a-lesson-theme__descr a {
  text-decoration: underline;
}
.a-lesson-theme__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media (min-width: 768px) {
  .a-lesson-theme__buttons {
    gap: 20px;
  }
}
.a-lesson-theme__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 54px;
  height: 54px;
  font-size: 0;
  line-height: 24px;
  font-weight: 600;
  border-radius: var(--radius-12);
  background-color: var(--red);
}
@media (min-width: 1200px) {
  .a-lesson-theme__btn {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    min-width: 234px;
    width: auto;
    height: auto;
    padding: 15px 24px;
    font-size: 20px;
  }
}
.a-lesson-theme__btn svg {
  color: var(--backtimeslip);
}
.a-lesson-theme__plus-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 54px;
  height: 54px;
  color: var(--backtimeslip);
  font-size: 0;
  line-height: 24px;
  font-weight: 600;
  border: 1px solid var(--red);
  border-radius: var(--radius-12);
}
@media (min-width: 1200px) {
  .a-lesson-theme__plus-btn {
    width: auto;
    height: auto;
    padding: 14px 21px;
    gap: 8px;
    font-size: 20px;
  }
}
.a-lesson-theme__plus-btn::before {
  content: "+";
  font-size: 36px;
  line-height: 24px;
  font-weight: 600;
}

.a-lesson-presentation {
  padding: 30px 0 0;
}
.a-lesson-presentation__title {
  margin: 0 0 13px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 300;
}
@media (min-width: 1200px) {
  .a-lesson-presentation__title {
    margin-bottom: 22px;
  }
}
.a-lesson-presentation__inner {
  margin: 0 -20px;
}
@media (min-width: 768px) {
  .a-lesson-presentation__inner {
    margin: 0;
  }
}
.a-lesson-presentation__placeholder img {
  width: 100%;
}

.a-lesson-tabs__title {
  display: none;
}
@media (min-width: 1200px) {
  .a-lesson-tabs__title {
    margin: 0 0 30px;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
  }
}
.a-lesson-tabs__bar {
  position: relative;
  margin: 0 0 28px;
  padding: 0 36px;
}
@media (min-width: 1200px) {
  .a-lesson-tabs__bar {
    margin-bottom: 32px;
    padding: 0;
  }
}
@media (min-width: 1200px) {
  .a-lesson-tabs__swiper .swiper-wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 28px 24px;
  }
}
.a-lesson-tabs__swiper .swiper-slide {
  width: auto;
}
.a-lesson-tabs__prev, .a-lesson-tabs__next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  width: 36px;
  top: 0;
  bottom: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (min-width: 1200px) {
  .a-lesson-tabs__prev, .a-lesson-tabs__next {
    display: none;
  }
}
.a-lesson-tabs__prev.swiper-button-lock, .a-lesson-tabs__next.swiper-button-lock {
  display: none;
}
.a-lesson-tabs__prev.swiper-button-disabled, .a-lesson-tabs__next.swiper-button-disabled {
  opacity: 0.35;
}
.a-lesson-tabs__prev {
  left: 0;
}
.a-lesson-tabs__next {
  right: 0;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.a-lesson-tabs__next svg {
  right: 0;
}
.a-lesson-tabs__btn {
  width: 36px;
  height: 36px;
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  text-transform: uppercase;
  border: 3px solid var(--status-color);
  border-radius: 50%;
  -webkit-transition: background-color 0.3s, border-color 0.3s;
  transition: background-color 0.3s, border-color 0.3s;
}
@media (min-width: 1200px) {
  .a-lesson-tabs__btn {
    width: 54px;
    height: 54px;
    font-size: 32px;
    line-height: 39px;
  }
}
.a-lesson-tabs__btn.active {
  background-color: var(--status-color);
  border-color: var(--backtimeslip);
}
.a-lesson-tabs__item {
  display: none;
}
.a-lesson-tabs__item.active {
  display: block;
}
.a-lesson-tabs__item.fade {
  -webkit-animation: fade 0.5s;
          animation: fade 0.5s;
}

.a-editor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media (min-width: 1200px) {
  .a-editor {
    gap: 44px;
  }
}
.a-editor__main {
  margin: 0 -20px;
  padding: 20px;
  border-radius: var(--radius-12);
  border: 3px solid transparent;
  background-color: var(--gray-61);
}
@media (min-width: 768px) {
  .a-editor__main {
    margin: 0;
  }
}
@media (min-width: 1200px) {
  .a-editor__main {
    border-width: 5px;
  }
}
.a-editor__submit {
  width: 100%;
  margin: 0 0 24px;
  padding: 11px;
  font-size: 15px;
  line-height: 18px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  background-color: var(--blue-13);
  border: 2px solid var(--backtimeslip);
  border-radius: var(--radius-12);
}
@media (min-width: 768px) {
  .a-editor__submit {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 262px;
  }
}
@media (min-width: 1200px) {
  .a-editor__submit {
    margin-bottom: 32px;
    padding: 12px;
    font-size: 18px;
    line-height: 22px;
    border-width: 3px;
  }
}
.a-editor__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
.a-editor__buttons:not(:last-child) {
  margin: 0 0 24px;
}
@media (min-width: 1200px) {
  .a-editor__buttons:not(:last-child) {
    margin-bottom: 32px;
  }
}
@media (min-width: 768px) {
  .a-editor__buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.a-editor__buttons-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 34px;
}
@media (min-width: 1200px) {
  .a-editor__buttons-box {
    gap: 42px;
  }
}
.a-editor__btn {
  width: 52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.a-editor__btn span:nth-child(1) {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 52px;
  border-radius: var(--radius-12);
  border: 1px solid var(--backtimeslip);
}
.a-editor__btn span:nth-child(2) {
  -ms-flex-item-align: center;
      align-self: center;
  font-size: 14px;
  line-height: 17px;
  color: var(--gray-173);
  white-space: nowrap;
}
.a-editor__btn--green span:nth-child(1) {
  border-color: var(--green-18);
  background-color: var(--green-18);
}
.a-editor__btn--red span:nth-child(1) {
  border-color: var(--red-220);
  background-color: var(--red-220);
}
.a-editor__btn--blue span:nth-child(1) {
  border-color: var(--blue-13);
  background-color: var(--blue-13);
}
.a-editor__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  min-height: 146px;
}
@media (min-width: 1200px) {
  .a-editor__bottom {
    gap: 16px;
  }
}
.a-editor__task, .a-editor__ziton {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 14px;
  gap: 16px;
  font-size: 20px;
  line-height: 24px;
  text-transform: uppercase;
  text-align: center;
  border-radius: var(--radius-12);
}
.a-editor__task::before, .a-editor__ziton::before {
  content: "+";
  font-size: 64px;
  line-height: 32px;
}
.a-editor__task {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-weight: 600;
  border: 3px solid var(--red);
}
@media (min-width: 1200px) {
  .a-editor__task {
    border-width: 5px;
  }
}
.a-editor__ziton {
  font-weight: 700;
  color: var(--background);
  background: var(--backtimeslip);
}

.a-editor-spoiler {
  position: relative;
  margin: 0 0 24px;
}
@media (min-width: 1200px) {
  .a-editor-spoiler {
    margin-bottom: 32px;
  }
}
.a-editor-spoiler.active .a-editor-spoiler__btn {
  padding-bottom: 26px;
}
.a-editor-spoiler.active .a-editor-spoiler__btn span:nth-child(1) {
  display: none;
}
.a-editor-spoiler.active .a-editor-spoiler__btn span:nth-child(2) {
  display: block;
}
.a-editor-spoiler.active .a-editor-spoiler__content {
  display: block;
}
.a-editor-spoiler__btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px 10px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  border-radius: var(--radius-10);
  background-color: var(--black-32);
}
.a-editor-spoiler__btn span:nth-child(2) {
  display: none;
}
.a-editor-spoiler__remove {
  position: absolute;
  top: 5px;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 42px;
  height: 62px;
  padding: 7px;
  border-radius: var(--radius-10);
  background-color: var(--black-32);
  cursor: pointer;
}
.a-editor-spoiler__remove svg {
  color: var(--backtimeslip);
}
.a-editor-spoiler__content {
  display: none;
  position: relative;
  margin-top: -20px;
  padding: 10px;
  color: var(--black);
  font-size: 16px;
  line-height: 20px;
  background: var(--backtimeslip);
  border-radius: var(--radius-12);
}
.a-editor-spoiler__textarea {
  display: block;
  width: 100%;
  height: 115px;
  color: var(--black);
  padding: 10px;
  font-size: 16px;
  line-height: 20px;
  border-radius: var(--radius-12);
  resize: vertical;
}

.a-editor-field {
  margin: 0 0 24px;
}
@media (min-width: 1200px) {
  .a-editor-field {
    margin-bottom: 32px;
  }
}
.a-editor-field__label {
  display: block;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
}
.a-editor-field__inner {
  border-radius: var(--radius-12);
}
.a-editor-field__inner .a-upload__area {
  height: 40px;
  padding: 8px 10px;
  background: var(--black-41);
  color: var(--gray-136);
}
.a-editor-field__inner .a-upload__area svg {
  color: var(--gray-136);
}
.a-editor-field__text {
  min-height: 70px;
  padding: 10px;
  border-radius: var(--radius-10);
  border: 1px solid var(--backtimeslip);
}
.a-editor-field__text--dark {
  border-color: var(--black-41);
  background: var(--black-41);
}
.a-editor-field__input, .a-editor-field__textarea {
  display: block;
  width: 100%;
  padding: 10px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  border-radius: var(--radius-10);
  background-color: var(--black-41);
  border: none;
}
.a-editor-field__input::-webkit-input-placeholder, .a-editor-field__textarea::-webkit-input-placeholder {
  color: var(--gray-136);
}
.a-editor-field__input::-moz-placeholder, .a-editor-field__textarea::-moz-placeholder {
  color: var(--gray-136);
}
.a-editor-field__input:-ms-input-placeholder, .a-editor-field__textarea:-ms-input-placeholder {
  color: var(--gray-136);
}
.a-editor-field__input::-ms-input-placeholder, .a-editor-field__textarea::-ms-input-placeholder {
  color: var(--gray-136);
}
.a-editor-field__input::placeholder, .a-editor-field__textarea::placeholder {
  color: var(--gray-136);
}
.a-editor-field__input {
  height: 40px;
}
.a-editor-field__textarea {
  min-height: 60px;
  resize: vertical;
}
.a-editor-field__placeholder img {
  max-width: 100%;
}

.a-page-editor {
  padding: 0 0 50px;
}
@media (min-width: 1200px) {
  .a-page-editor {
    padding: 0 0 80px;
  }
}
.a-page-editor__title {
  margin: 0 0 45px;
}
@media (min-width: 1200px) {
  .a-page-editor__title {
    margin-bottom: 48px;
  }
}
.a-page-editor .a-editor__main {
  border-color: transparent !important;
}
@media (max-width: 767px) {
  .a-page-editor .a-editor__buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .a-page-editor .a-editor__buttons-box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px;
  }
}

.a-students {
  padding: 0 0 50px;
}
@media (min-width: 1200px) {
  .a-students {
    padding: 0 0 80px;
  }
}
.a-students__title {
  margin: 0 0 40px;
}
@media (min-width: 1200px) {
  .a-students__title {
    margin-bottom: 30px;
  }
}
.a-students__control {
  max-width: 680px;
  margin: 0 auto 30px;
}
.a-students__table {
  position: relative;
  overflow-x: auto;
  margin: 0 -20px 0 0;
  padding: 0 20px 10px 0;
}
@media (min-width: 1200px) {
  .a-students__table {
    margin: 0;
    padding: 0;
  }
}
.a-students__table table {
  width: 1200px;
  border-collapse: collapse;
}
@media (min-width: 1200px) {
  .a-students__table table {
    width: 100%;
  }
}
.a-students__table table th,
.a-students__table table td {
  padding: 0;
  font-size: 14px;
  line-height: 17px;
}
.a-students__table table th:nth-child(1),
.a-students__table table td:nth-child(1) {
  width: 40px;
}
.a-students__table table th:nth-child(2),
.a-students__table table td:nth-child(2) {
  position: sticky;
  left: 0;
  width: 200px;
  max-width: 170px;
  background: -webkit-gradient(linear, left top, right top, from(var(--background)), color-stop(90%, var(--background)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(90deg, var(--background) 0%, var(--background) 90%, rgba(255, 255, 255, 0) 100%);
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
@media (min-width: 1200px) {
  .a-students__table table th:nth-child(2),
  .a-students__table table td:nth-child(2) {
    max-width: none;
    white-space: normal;
  }
}
.a-students__table table th:nth-child(3),
.a-students__table table td:nth-child(3) {
  width: 200px;
}
.a-students__table table th:nth-child(4),
.a-students__table table td:nth-child(4) {
  width: 115px;
}
.a-students__table table th:nth-child(5),
.a-students__table table td:nth-child(5) {
  width: 200px;
}
.a-students__table table th:nth-child(6),
.a-students__table table td:nth-child(6) {
  width: 180px;
}
.a-students__table table th:nth-child(7),
.a-students__table table td:nth-child(7) {
  width: 120px;
}
.a-students__table table th:nth-child(8),
.a-students__table table td:nth-child(8) {
  width: 225px;
}
.a-students__table table th:nth-child(9),
.a-students__table table td:nth-child(9) {
  width: 110px;
}
.a-students__table table th {
  font-weight: 400;
  text-align: left;
  padding: 14px 5px;
  border-bottom: 1px dashed var(--purple-164-opacity-20);
}
@media (min-width: 1200px) {
  .a-students__table table th {
    padding: 16px 5px;
  }
}
.a-students__table table td {
  padding: 5px;
  color: var(--purple-164);
}
@media (min-width: 1200px) {
  .a-students__table table td {
    padding: 10px 5px;
  }
}
.a-students__table table td:nth-child(1), .a-students__table table td:nth-child(2) {
  color: var(---backtimeslip);
}
.a-students__table table tbody tr:nth-child(1) td {
  padding-top: 14px;
}
@media (min-width: 1200px) {
  .a-students__table table tbody tr:nth-child(1) td {
    padding-top: 16px;
  }
}

.a-students-search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  margin: 0 0 20px;
}
@media (min-width: 768px) {
  .a-students-search {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
  }
}
.a-students-search__label {
  font-size: 16px;
  line-height: 20px;
}
.a-students-search__inner {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.a-students-search__input {
  display: block;
  width: 100%;
  padding: 10px 15px;
  font-size: 14px;
  line-height: 20px;
  border: none;
  border-radius: var(--radius-10);
  color: var(--black);
}

.a-students-sort {
  margin: 0 0 20px;
}
.a-students-sort__caption {
  display: block;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 20px;
}
.a-students-sort__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 14px 10px;
}
.a-students-sort__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 7px 10px;
  font-size: 14px;
  line-height: 16px;
  border: 1px solid var(--backtimeslip);
  border-radius: var(--radius-10);
  -webkit-transition: border-color 0.3s, color 0.3s;
  transition: border-color 0.3s, color 0.3s;
}
@media (min-width: 768px) {
  .a-students-sort__btn {
    padding: 7px 14px;
  }
}
.a-students-sort__btn svg {
  color: var(--backtimeslip);
}
.a-students-sort__btn.active {
  color: var(--yellow-251);
  border-color: var(--yellow-251);
}
.a-students-sort__btn.active svg {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  color: var(--yellow-251);
}
.a-students-sort__btn:nth-child(n+4) {
  display: none;
}
@media (min-width: 768px) {
  .a-students-sort__btn:nth-child(n+4) {
    display: block;
  }
}
.a-students-sort__btn.rotated svg {
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
}

.a-students-filter__caption {
  display: block;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 20px;
}
.a-students-filter__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 768px) {
  .a-students-filter__inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}
.a-students-filter__select select {
  display: block;
  width: 100%;
  padding: 12px 24px 12px 12px;
  color: var(--purple-164);
  font-size: 14px;
  text-overflow: ellipsis;
  border-radius: var(--radius-10);
  background: var(--black-34);
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-repeat: no-repeat;
  background-position: center right 16px;
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='12' viewBox='0 0 8 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.48043 10.9283C3.67569 11.1235 3.99228 11.1235 4.18754 10.9283L7.36952 7.74628C7.56478 7.55102 7.56478 7.23443 7.36952 7.03917C7.17426 6.84391 6.85767 6.84391 6.66241 7.03917L3.83398 9.8676L1.00556 7.03917C0.810295 6.84391 0.493713 6.84391 0.298451 7.03917C0.103189 7.23444 0.103189 7.55102 0.298451 7.74628L3.48043 10.9283ZM3.33398 0.277344L3.33398 10.5747L4.33398 10.5747L4.33398 0.277344L3.33398 0.277344Z' fill='%23A49CD7' /%3E%3C/svg%3E");
}
.a-students-filter__select:nth-child(n+3) {
  display: none;
}
@media (min-width: 768px) {
  .a-students-filter__select:nth-child(n+3) {
    display: block;
  }
}

.a-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  padding: 80px 0;
  background-color: var(--black-opacity-50);
  overflow-y: auto;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
  opacity: 0;
  visibility: hidden;
}
@media (min-width: 768px) {
  .a-modal {
    padding: 80px 20px;
  }
}
.a-modal.active {
  opacity: 1;
  visibility: visible;
}
.a-modal__wrapper {
  position: relative;
  margin: auto;
  width: 942px;
  padding: 40px 20px;
  background-color: var(--black-55);
  border-radius: var(--radius-20);
  overflow: hidden;
}
@media (min-width: 768px) {
  .a-modal__wrapper {
    padding: 40px;
  }
}
.a-modal__close {
  position: absolute;
  top: 32px;
  right: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
}
@media (min-width: 768px) {
  .a-modal__close {
    right: 32px;
  }
}
.a-modal__close svg {
  color: var(--backtimeslip);
}
.a-modal__title {
  font-size: 24px;
  line-height: 29px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 32px 28px 0;
}
@media (min-width: 1200px) {
  .a-modal__title {
    margin-bottom: 40px;
  }
}
.a-modal__descr {
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
}
.a-modal__descr a {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  color: var(--purple-164);
}
.a-modal__fields {
  margin: 0 0 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media (min-width: 1200px) {
  .a-modal__fields {
    gap: 24px;
  }
}
.a-modal__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
}
@media (min-width: 768px) {
  .a-modal__buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px;
  }
}
.a-modal__btn {
  width: 100%;
}
.a-modal__wysiwyg img {
  max-width: 100%;
}
.a-modal__checkboxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 30px;
}

.a-modal-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
}
.a-modal-list__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
}
@media (min-width: 768px) {
  .a-modal-list__top {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 20px;
  }
}
.a-modal-list__label {
  font-size: 20px;
  line-height: 24px;
}
.a-modal-list__items {
  display: grid;
  -ms-flex-line-pack: start;
      align-content: start;
  gap: 6px;
  height: 210px;
  padding: 20px 12px;
  border-radius: 4px;
  border: 1px solid var(--gray);
  background: var(--backtimeslip);
  overflow-y: auto;
  scrollbar-color: var(--gray) var(--gray-232);
  scrollbar-width: thin;
}
@media (min-width: 992px) {
  .a-modal-list__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px 32px;
    padding: 8px 16px;
  }
}
.a-modal-list__items::-webkit-scrollbar {
  width: 7px;
  background-color: var(--gray-232);
}
.a-modal-list__items::-webkit-scrollbar-thumb {
  border-radius: 8px;
  background-color: var(--gray);
}

.a-modal-list-sort {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.a-modal-list-sort__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  text-decoration: underline;
}
.a-modal-list-sort__btn svg {
  color: var(--backtimeslip);
}
.a-modal-list-sort__btn.active {
  background: linear-gradient(345deg, #e67b53 0%, #fecb11 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
}
.a-modal-list-sort__btn.active svg {
  color: #f2a332;
}

.a-modal-list-item {
  cursor: pointer;
}
.a-modal-list-item__input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
.a-modal-list-item__input:checked + .a-modal-list-item__text span:nth-child(3) {
  color: transparent;
}
.a-modal-list-item__input:checked + .a-modal-list-item__text span:nth-child(3)::before {
  opacity: 1;
}
.a-modal-list-item__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4px 10px;
}
@media (min-width: 768px) {
  .a-modal-list-item__text {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.a-modal-list-item__text span:nth-child(1) {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: 100%;
  color: var(--black);
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
}
@media (min-width: 768px) {
  .a-modal-list-item__text span:nth-child(1) {
    width: auto;
  }
}
.a-modal-list-item__text span:nth-child(2), .a-modal-list-item__text span:nth-child(3) {
  color: var(--gray-155);
  font-size: 14px;
  line-height: 20px;
}
.a-modal-list-item__text span:nth-child(2) {
  min-width: 80px;
}
.a-modal-list-item__text span:nth-child(3) {
  position: relative;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.a-modal-list-item__text span:nth-child(3)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 19px;
  height: 19px;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg width='19' height='19' viewBox='0 0 19 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.5391 18.3887H2.78906C1.73438 18.3887 0.914062 17.5684 0.914062 16.5137V2.76367C0.914062 1.74805 1.73438 0.888672 2.78906 0.888672H16.5391C17.5547 0.888672 18.4141 1.74805 18.4141 2.76367V16.5137C18.4141 17.5684 17.5547 18.3887 16.5391 18.3887ZM8.53125 14.5605L15.7188 7.37305C15.9531 7.13867 15.9531 6.74805 15.7188 6.51367L14.8203 5.61523C14.5859 5.38086 14.1953 5.38086 13.9609 5.61523L8.10156 11.4746L5.32812 8.74023C5.09375 8.50586 4.70312 8.50586 4.46875 8.74023L3.57031 9.63867C3.33594 9.87305 3.33594 10.2637 3.57031 10.498L7.63281 14.5605C7.86719 14.834 8.29688 14.834 8.53125 14.5605Z' fill='%233169F8'/%3E%3C/svg%3E");
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

@media (min-width: 1200px) {
  .a-modal-teacher-change .a-field__label {
    width: 185px;
  }
}

@media (min-width: 1200px) {
  .a-modal-changing-group-teacher .a-field__label {
    width: 225px;
  }
}

@media (min-width: 1200px) {
  .a-modal-adding-user .a-field__label {
    width: 175px;
  }
}

.a-modal-new-user .a-modal__descr {
  max-width: 565px;
  margin: 0 0 42px;
}
@media (min-width: 1200px) {
  .a-modal-new-user .a-modal__descr {
    margin-bottom: 34px;
  }
}
@media (min-width: 768px) {
  .a-modal-new-user .a-modal__btn {
    width: auto;
    min-width: 260px;
  }
}

@media (min-width: 1200px) {
  .a-modal-adding-course .a-field__label,
  .a-modal-change-course .a-field__label {
    width: 325px;
  }
}
@media (min-width: 1200px) {
  .a-modal-adding-course .a-modal__checkbox,
  .a-modal-change-course .a-modal__checkbox {
    width: 373px;
  }
}

.a-modal-newsletter .a-modal__wrapper {
  overflow: visible;
}
@media (min-width: 1200px) {
  .a-modal-newsletter .a-modal__btn:nth-child(1), .a-modal-newsletter .a-modal__btn:nth-child(2) {
    width: 25%;
  }
}
@media (min-width: 1200px) {
  .a-modal-newsletter .a-modal__btn:nth-child(3) {
    width: 50%;
  }
}

.a-modal-statistics .a-modal__descr {
  display: none;
  margin: 0 0 37px;
}
@media (min-width: 1200px) {
  .a-modal-statistics .a-modal__descr {
    margin-bottom: 27px;
  }
}
.a-modal-statistics .a-modal__descr.active {
  display: block;
}
.a-modal-statistics .a-modal__field {
  margin: 0 0 30px;
}
@media (min-width: 1200px) {
  .a-modal-statistics .a-modal__field {
    margin-bottom: 34px;
  }
}
.a-modal-statistics .a-field__textarea {
  min-height: 200px;
}
@media (min-width: 768px) {
  .a-modal-statistics .a-modal__btn {
    width: auto;
    min-width: 250px;
    margin: 0 0 0 auto;
  }
}
.a-modal-statistics__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 36px;
  max-height: 213px;
  margin: 0 0 30px;
  overflow-y: auto;
  scrollbar-color: var(--gray-238) var(--gray-121);
  scrollbar-width: thin;
}
@media (min-width: 1200px) {
  .a-modal-statistics__items {
    margin-bottom: 34px;
  }
}
.a-modal-statistics__items::-webkit-scrollbar {
  width: 7px;
  background-color: var(--gray-121);
}
.a-modal-statistics__items::-webkit-scrollbar-thumb {
  border-radius: 8px;
  background-color: var(--gray-238);
}
.a-modal-statistics__copy {
  display: none;
}

.a-modal-statistics-item {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.a-modal-statistics-item__caption {
  display: block;
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
}
.a-modal-statistics-item__link {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 17px;
  color: var(--purple-164);
}
.a-modal-statistics-item__descr {
  font-size: 14px;
  line-height: 17px;
}

@media (min-width: 1200px) {
  .a-modal-adding-lesson .a-field__label {
    width: 325px;
  }
}
.a-modal-adding-lesson .a-modal__checkbox .a-checkbox__text::before {
  border: 2px solid var(--blue);
}
.a-modal-adding-lesson .a-modal__title {
  margin-bottom: 16px;
}
.a-modal-adding-lesson__name {
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 32px 28px 0;
}
@media (min-width: 1200px) {
  .a-modal-adding-lesson__name {
    margin-bottom: 40px;
  }
}

.a-modal-share .a-modal__descr:not(:last-child) {
  margin: 0 0 28px;
}
@media (min-width: 1200px) {
  .a-modal-share .a-modal__descr:not(:last-child) {
    margin-bottom: 40px;
  }
}
.a-modal-share__qr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 0 28px;
}
@media (min-width: 1200px) {
  .a-modal-share__qr {
    margin-bottom: 40px;
  }
}

@media (min-width: 1200px) {
  .a-modal-add-zitons .a-field__label,
  .a-modal-remove-zitons .a-field__label {
    width: 285px;
  }
}

@media (min-width: 1200px) {
  .a-modal-data-editor .a-field__label {
    width: 195px;
  }
}
.a-modal-data-editor__avatars {
  margin: 0 0 26px;
}
.a-modal-data-editor__avatars .a-modal-data-editor__descr {
  margin: 26px 0 0;
}
@media (min-width: 1200px) {
  .a-modal-data-editor__avatars .a-modal-data-editor__descr {
    margin-top: 32px;
  }
}
.a-modal-data-editor__avatars:has(.a-modal-data-editor-upload__btn.hidden) .a-modal-data-editor-avatar__img::before {
  border-color: transparent;
}
.a-modal-data-editor__avatars:has(.a-modal-data-editor-upload__btn.hidden) .a-modal-data-editor-upload__label::before {
  border-color: var(--red);
}
.a-modal-data-editor__caption {
  margin: 0 0 26px;
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
}
.a-modal-data-editor__slider {
  position: relative;
  padding: 0 90px;
}
.a-modal-data-editor__swiper .swiper-slide {
  width: 138px;
}
.a-modal-data-editor__prev, .a-modal-data-editor__next {
  position: absolute;
  width: 90px;
  top: 0;
  bottom: 0;
}
.a-modal-data-editor__prev {
  left: 0;
}
.a-modal-data-editor__next {
  right: 0;
}
.a-modal-data-editor__descr {
  margin: 0 0 26px;
  font-size: 16px;
  line-height: 20px;
}
.a-modal-data-editor__form.hidden, .a-modal-data-editor__cropper.hidden {
  display: none;
}
.a-modal-data-editor__img {
  max-width: 755px;
  margin: 0 auto 32px;
  height: 312px;
}
.a-modal-data-editor__img img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

.a-modal-data-editor-avatar {
  display: block;
}
.a-modal-data-editor-avatar__input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
.a-modal-data-editor-avatar__input:checked + .a-modal-data-editor-avatar__img::before {
  border-color: var(--red);
}
.a-modal-data-editor-avatar__img {
  position: relative;
  display: block;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
}
.a-modal-data-editor-avatar__img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 5px solid transparent;
  border-radius: 50%;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.a-modal-data-editor-avatar__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.a-modal-data-editor-upload__label {
  position: relative;
  display: block;
  cursor: pointer;
}
.a-modal-data-editor-upload__label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 5px solid var(--backtimeslip);
  border-radius: 50%;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.a-modal-data-editor-upload__input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
.a-modal-data-editor-upload__img {
  display: block;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
}
.a-modal-data-editor-upload__img.hidden {
  display: none;
}
.a-modal-data-editor-upload__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.a-modal-data-editor-upload__btn {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: var(--backtimeslip);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
}
.a-modal-data-editor-upload__btn.hidden {
  display: none;
}
.a-modal-data-editor-upload__btn svg {
  color: var(--backtimeslip);
}

.a-modal-deleting .a-modal__descr {
  font-weight: 600;
}
.a-modal-deleting .a-modal__descr:last-child {
  font-weight: 400;
}

@media (min-width: 1200px) {
  .a-modal-add-task .a-field__label {
    width: 240px;
  }
}
.a-modal-add-task .a-modal__btn {
  white-space: nowrap;
}
.a-modal-add-task .a-modal__btn svg {
  display: block;
}
.a-modal-add-task .a-modal__title {
  margin-bottom: 10px;
}
.a-modal-add-task__top {
  margin: 0 0 28px;
}
.a-modal-add-task__radio-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid var(--blue-13);
  border-radius: var(--radius-10);
  overflow: hidden;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.a-modal-add-task:not(:has(.a-modal-add-task__toggle-answer .a-toggle__input:checked)) .a-modal-add-task__field-answer .a-field__input {
  background-color: var(--white-opacity-50);
  color: transparent;
  font-size: 0;
  cursor: default;
  outline: transparent;
}
.a-modal-add-task:not(:has(.a-modal-add-task__toggle-file .a-toggle__input:checked)) .a-modal-add-task__radio-group-file {
  opacity: 0.5;
  pointer-events: none;
}

.a-modal-add-task-radio {
  width: 33.333%;
  cursor: pointer;
}
.a-modal-add-task-radio:not(:last-child) .a-modal-add-task-radio__text {
  border-right: 1px solid var(--blue-13);
}
.a-modal-add-task-radio__input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
.a-modal-add-task-radio__input:checked + .a-modal-add-task-radio__text {
  background-color: var(--blue-13);
  color: var(--backtimeslip);
}
.a-modal-add-task-radio__text {
  display: block;
  height: 100%;
  padding: 12px 5px;
  text-align: center;
  font-size: 16px;
  line-height: 20px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  -webkit-transition: color 0.3s, background-color 0.3s;
  transition: color 0.3s, background-color 0.3s;
}
@media (min-width: 1200px) {
  .a-modal-add-task-radio__text {
    padding: 14px 5px;
    font-size: 20px;
    line-height: 24px;
  }
}