button {
  cursor: pointer;
  color: inherit;
  background-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

.lock body {
  overflow: hidden;
  -ms-touch-action: none;
      touch-action: none;
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
}

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}

@supports (overflow: clip) {
  .wrapper {
    overflow: clip;
  }
}

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

.wrapper > * {
  min-width: 0;
}

/*
(i) Стилі будуть застосовуватись до
всіх класів, що містять *__container
Наприклад header__container, main__container і т.п.
Сніппет (HTML): cnt
*/

[class*=__container] {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 0.9375rem;
}

.button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0px 17px;
  min-width: 110px;
  height: 32px;
  background: #3751FF;
  border-radius: 5px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  color: #FFFFFF;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.69, 0.75, 0.51);
  -o-transition: all 0.3s cubic-bezier(0.39, 0.69, 0.75, 0.51);
  transition: all 0.3s cubic-bezier(0.39, 0.69, 0.75, 0.51);
}

.button_border {
  border: 1px solid #DFE0EB;
  background: #fff;
  color: #9FA2B4;
}

.button_red {
  background: #DC0500;
}

.button_grey {
  background: #DFE0EB;
  color: #252733;
}

.button._fw {
  width: 100%;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.input {
  width: 100%;
  display: block;
  padding: 0px 20px;
  border: 1px solid #DFE0EB;
  border-radius: 8px;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.2px;
  color: #252733;
}

.input[placeholder]:not([data-placeholder-nohiden])::-webkit-input-placeholder {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.input[placeholder]:not([data-placeholder-nohiden])::-moz-placeholder {
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.input[placeholder]:not([data-placeholder-nohiden]):-ms-input-placeholder {
  -ms-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.input[placeholder]:not([data-placeholder-nohiden])::-ms-input-placeholder {
  -ms-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.input[placeholder]:not([data-placeholder-nohiden])::placeholder {
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.input[placeholder]:not([data-placeholder-nohiden]):focus::-webkit-input-placeholder {
  opacity: 0;
}

.input[placeholder]:not([data-placeholder-nohiden]):focus::-moz-placeholder {
  opacity: 0;
}

.input[placeholder]:not([data-placeholder-nohiden]):focus:-ms-input-placeholder {
  opacity: 0;
}

.input[placeholder]:not([data-placeholder-nohiden]):focus::-ms-input-placeholder {
  opacity: 0;
}

.input[placeholder]:not([data-placeholder-nohiden]):focus::placeholder {
  opacity: 0;
}

textarea.input {
  resize: none;
  padding: 16px 30px;
  height: 100px;
}

.select {
  min-width: 0;
  position: relative;
  width: 126px;
}

.select__body {
  position: relative;
}

.select._select-active .select__value {
  color: #252733;
}

.select._select-open .select__title {
  -webkit-box-shadow: 0 0 0px 1px #3751FF;
          box-shadow: 0 0 0px 1px #3751FF;
}

.select__title {
  height: 52px;
  color: inherit;
  text-align: left;
  background: #F7F8FC;
  border-radius: 10px;
  cursor: pointer;
  width: 100%;
  padding: 4px 16px;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.69, 0.75, 0.51);
  -o-transition: all 0.3s cubic-bezier(0.39, 0.69, 0.75, 0.51);
  transition: all 0.3s cubic-bezier(0.39, 0.69, 0.75, 0.51);
}

.medit__error .select__title {
  border: 1px solid #FF0000;
}

.select__title .select__text {
  opacity: 0;
}

.select__title .select__asset {
  display: none;
}

.select__value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding: 0 5px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 1px;
  color: #9FA2B4;
}

.select__value > * {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.select__value:after {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 14px;
          flex: 0 0 14px;
  height: 15px;
  background: url("../img/arrow-select.svg") center/contain no-repeat;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  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;
}

._select-open .select__value:after {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.select__value._select-pseudo-label::before {
  content: attr(data-pseudo-label);
  opacity: 0.5;
}

.select__content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
  opacity: 0;
}

.select__text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
}

.select__input {
  width: 100%;
  background-color: transparent;
  height: 100%;
}

.select__options {
  position: absolute;
  top: calc(100% + 10px);
  background: #FFFFFF;
  -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  min-width: 100%;
  left: 0;
  overflow: hidden;
}

.select__scroll {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 12.75rem;
}

.select__option {
  width: 100%;
  text-align: left;
  cursor: pointer;
  padding: 8px 16px;
  color: inherit;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.2px;
  color: #252733;
}

.select__option:not(:last-child) {
  margin-bottom: 0.3125rem;
}

.select__option._select-selected {
  background-color: #eee;
}

.select__row {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.select_show-top .select__options {
  top: auto;
  bottom: calc(100% - 0.0625rem);
  border: 1px solid #d9d9d9;
  border-bottom: 0;
  border-radius: 4px 4px 0 0;
  padding: 5px 0px 10px 0px;
}

._select-tag {
  cursor: pointer;
}

body::after {
  content: "";
  background: #9FA2B4;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 0.8s ease 0s;
  -o-transition: opacity 0.8s ease 0s;
  transition: opacity 0.8s ease 0s;
  pointer-events: none;
  z-index: 149;
}

.popup-show body::after {
  opacity: 0.6;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 30px 10px;
  -webkit-transition: visibility 0.8s ease 0s;
  -o-transition: visibility 0.8s ease 0s;
  transition: visibility 0.8s ease 0s;
  visibility: hidden;
  pointer-events: none;
}

.popup_show {
  z-index: 150;
  visibility: visible;
  overflow: auto;
  pointer-events: auto;
}

.popup_show .popup__content {
  visibility: visible;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.popup__wrapper {
  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;
  min-height: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 100%;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  align-items: center;
}

.popup__content {
  visibility: hidden;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  -o-transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  padding: 24px;
  width: 100%;
  max-width: 374px;
  background: #FFFFFF;
  border-radius: 8px;
  position: relative;
}

.lock .popup__content {
  visibility: visible;
}

.popup__title {
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
  letter-spacing: 0.2px;
  color: #252733;
  margin-bottom: 34px;
  max-width: calc(100% - 35px);
}

.popup__close {
  width: 23px;
  height: 24px;
  background: #F0F1F7;
  border-radius: 15px;
  position: absolute;
  top: 30px;
  right: 24px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.69, 0.75, 0.51);
  -o-transition: all 0.3s cubic-bezier(0.39, 0.69, 0.75, 0.51);
  transition: all 0.3s cubic-bezier(0.39, 0.69, 0.75, 0.51);
}

.popup__close:hover {
  background: #b4b5bb;
}

.popup__text {
  font-size: 14px;
  line-height: 160%;
  letter-spacing: 0.2px;
  color: #252733;
  margin-bottom: 32px;
}

.popup__text p:not(:last-child) {
  margin-bottom: 2rem;
}

.popup__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}

.popup__button {
  width: 100%;
}

[class*=-ibg] {
  position: relative;
}

[class*=-ibg] img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

[class*=-ibg_contain] img {
  -o-object-fit: contain;
     object-fit: contain;
}

/**/

.red {
  color: #DC0500;
}

.blue-lite {
  color: #88A7F5;
}

.orange {
  color: #F5BC4A;
}

.green {
  color: #00A912;
}

.grey {
  color: #9FA2B4;
}

.bg-blue {
  background: #3751FF;
}

.bg-red {
  background: #DC0500;
}

.bg-greydark {
  background: #3D3D3D;
}

.bg-lightgrey {
  background: #F7F8FC;
}

/**/

.hidden {
  display: none;
}

.visible {
  display: block;
}

/**/

.student-wrap {
  background: #F7F8FC;
  min-height: 100vh;
  padding-bottom: 30px;
}

.menu {
  width: 184px;
  background: #ffffff;
  padding: 31px 0 24px;
  height: 100vh;
  position: fixed;
  overflow: hidden;
  overflow-y: auto;
  -webkit-transition: width 0.3s ease;
  -o-transition: width 0.3s ease;
  transition: width 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.menu.js-open {
  width: 46px;
  overflow: hidden;
}

.menu.js-open .menu__close {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.menu.js-open .logo {
  opacity: 0;
}

.menu.js-open .logo-small {
  opacity: 1;
}

.menu.js-open .menu__list a {
  font-size: 0;
}

.menu.js-open .menu__list-num,
.menu.js-open .menu__chat,
.menu.js-open .menu__social {
  opacity: 0;
  pointer-events: none;
}

.menu__close-menu {
  display: none;
}

.menu__logo {
  padding: 0 14px;
  display: block;
  margin-bottom: 66px;
  height: 31px;
  position: relative;
  width: 184px;
}

.menu__logo .logo {
  width: 150px;
  height: 31px;
  position: absolute;
  /* transform: scale(1.15); */
  top: 3px;
  left: 0;
  right: 0;
  opacity: 1;
  margin: auto;
}

.menu__logo .logo-small {
  height: 31px;
  position: absolute;
  opacity: 0;
}

.menu__list {
  width: 184px;
}

.menu__list li.active a {
  background: #F7F8F9;
}

.menu__list li.active a:before {
  opacity: 1;
}

.menu__list li.active .menu__list-icon svg path {
  fill: #DC0500;
}

.menu__list a {
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0.2px;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  height: 56px;
  padding: 0 14px;
  white-space: nowrap;
  position: relative;
}

.menu__list a:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 100%;
  background: #DC0500;
  left: 0;
  top: 0;
  opacity: 0;
}

.menu__list-profile,
.menu__list-exit {
  display: none;
}

.menu__list-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 30px;
  min-width: 30px;
}

.menu__list-num {
  background: #3751FF;
  min-width: 30px;
  height: 18px;
  padding: 3px 5px;
  border-radius: 50px;
  font-size: 10px;
  line-height: 12px;
  text-align: center;
  letter-spacing: 0.2px;
  color: #ffffff;
  position: absolute;
  right: 14px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.menu__chat {
  padding: 0 14px;
  margin-bottom: 34px;
}

.menu__chat-link {
  border: 1px solid #DFE0EB;
  border-radius: 8px;
  width: 100%;
  height: 40px;
  background: #ffffff;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.2px;
  color: #9FA2B4;
  padding: 0 11px 0 19px;
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 14px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.menu__chat-link svg {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.menu__chat-link:hover {
  border: 1px solid #000;
  color: #000;
}

.menu__chat-link:hover svg path {
  fill: #000;
}

.menu__chat-icon {
  width: 32px;
  min-width: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.menu__social {
  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;
  padding: 0 14px 34px;
}

.menu__social-link {
  margin: 0 12px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.menu__social-link svg {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.menu__social-link:hover svg path {
  fill: #000;
}

.menu__close {
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.menu__close svg {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.menu__close:hover svg path {
  fill: #000;
}

.menu__profile {
  display: none;
}

.content-wrap {
  width: calc(100% - 184px);
  margin-left: 184px;
  padding: 0 30px;
  -webkit-transition: width 0.2s ease;
  -o-transition: width 0.2s ease;
  transition: width 0.2s ease;
}

.content-wrap:before {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% - 93px);
  top: 93px;
  background: #F7F8FC;
  opacity: 0;
  pointer-events: none;
  z-index: 3;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.content-wrap.js-menu-open {
  width: calc(100% - 46px);
  margin-left: 46px;
}

.content-wrap.js-profile-open:before {
  opacity: 0.89;
}

/*вход-регистрация хедер*/

.header-auth {
  position: relative;
  z-index: 3;
  padding-top: 15px;
}

.header-auth__nolink {
  font-size: 24px;
  line-height: 28px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: #252733;
}

.header-auth__lang-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.header-auth__link {
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0.5px;
  color: #000;
  padding: 9px 14px;
  background: #F7F8FC;
  border-radius: 100px;
  min-width: 120px;
  text-align: center;
}

.header-auth__link:hover {
  color: #DC0500;
}

.header-auth__box {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 73px;
  border-bottom: 1px solid #DFE0EB;
}

.header-auth__lang {
  width: 51px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  padding: 10px 0;
}

.header-auth__lang a {
  font-size: 14px;
  letter-spacing: 0.3px;
  font-weight: normal;
  color: #4B506D;
}

.header-auth__lang:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 6px;
  background: url("../img/arrow-7-4.svg") no-repeat center;
  top: 17px;
  right: 13px;
  margin: auto;
}

.header-auth__lang:hover .header-auth__lang-list {
  display: block;
}

.header-auth__lang-list {
  display: none;
  position: absolute;
  top: 28px;
  padding-top: 7px;
}

.header-auth__lang-list li a {
  font-size: 14px;
  font-weight: normal;
  color: #4B506D;
  margin-bottom: 3px;
  display: block;
  padding: 3px 0;
}

.header-auth__lang-list li a:hover {
  color: #DC0500;
}

/*header courses*/

.header-st {
  border-bottom: 1px solid #DFE0EB;
  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;
  padding: 28px 0 10px;
}

.header-st__others {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-st__step-title {
  font-size: 14px;
  line-height: 16px;
  text-align: right;
  letter-spacing: 0.2px;
  color: #9FA2B4;
  margin-right: 17px;
}

.header-st__step {
  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;
}

.header-st__step-range {
  width: 133px;
  height: 14px;
  background: #DFE0EB;
  border-radius: 50px;
  font-size: 10px;
  line-height: 12px;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  position: relative;
  margin-right: 17px;
}

.header-st__step-info {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.header-st__step-result {
  height: 100%;
  background: #E95039;
  border-radius: 50px;
  position: absolute;
  left: 0;
}

.header-st__icon {
  width: 30px;
  height: 30px;
  background: #ffffff;
  border: 1px solid #DFE0EB;
  border-radius: 50%;
  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;
  margin-right: 30px;
  min-width: 30px;
}

.header-st__icon img {
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.header-st__lang {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  padding: 10px 0;
  width: 37px;
  z-index: 3;
}

.header-st__lang a {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.3px;
  color: #4B506D;
}

.header-st__lang:before {
  content: "";
  position: absolute;
  width: 8px;
  height: 4px;
  background: url("../img/arrow-grey.png") no-repeat center;
  top: 18px;
  right: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header-st__lang:hover .header-st__lang-list {
  display: block;
}

.header-st__lang:hover:before {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.header-st__lang-list {
  display: none;
  position: absolute;
  background: #ffffff;
  -webkit-box-shadow: 0 4px 36px hsla(0, 0%, 52%, 0.4);
          box-shadow: 0 4px 36px hsla(0, 0%, 52%, 0.4);
  z-index: 2;
  width: 210px;
  max-height: 163px;
  padding: 2px 5px 8px;
  left: -84px;
  top: 31px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header-st__lang-list li {
  display: inline-block;
  padding: 5px;
  margin: 2px;
  border-bottom: 1px solid #DC0500;
  border-radius: 2px;
}

.header-st__lang-list li a {
  margin-bottom: 0;
  padding: 0;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.3px;
  color: #4B506D;
  display: block;
}

.header-st__lang-list li a:hover {
  color: #DC0500;
}

.header-st__profile {
  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;
  margin-left: 30px;
  position: relative;
  cursor: pointer;
  padding: 5px 0 5px 30px;
}

.header-st__profile:before {
  content: "";
  position: absolute;
  width: 1px;
  height: 32px;
  background: #DFE0EB;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.header-st__profile-name {
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: #252733;
  max-width: 111px;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}

.header-st__profile-photo {
  width: 44px;
  height: 44px;
  background: #ffffff url("../img/auth-nophoto.svg") no-repeat center;
  background-size: contain;
  border-radius: 50%;
  border: 1px solid #DFE0EB;
  padding: 2px;
  margin-left: 14px;
}

.header-st__profile-photo img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.header-st__profile-desc {
  display: none;
  position: absolute;
  width: 193px;
  background: #ffffff;
  border: 1px solid #DFE0EB;
  border-radius: 8px;
  z-index: 3;
  top: 48px;
  right: 0;
}

.header-st__profile-desc.js-open {
  display: block;
}

.header-st__profile-link {
  padding: 5px 14px;
  height: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #DFE0EB;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0.2px;
  color: #000;
}

.header-st__profile-link:last-child {
  border-bottom: 0;
}

.header-st__profile-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 30px;
  min-width: 30px;
}

.header-st__menu-toggle {
  display: none;
  width: 16px;
  height: 16px;
  background: url("../img/menu.svg") no-repeat center;
}

.header-st__auth {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 0 5px 30px;
  position: relative;
  margin-left: 30px;
}

.header-st__auth:before {
  content: "";
  position: absolute;
  width: 1px;
  height: 32px;
  background: #dfe0eb;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.header-st__auth-btn {
  font-size: 14px;
  line-height: 16px;
  color: #000;
  padding: 8px 16px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.header-st__auth-btn:hover {
  background: #000;
  color: #ffffff;
}

.header-st__auth-btn_bb {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(55, 81, 255, 0.1)), to(rgba(55, 81, 255, 0.1))), #FFFFFF;
  background: -o-linear-gradient(bottom, rgba(55, 81, 255, 0.1), rgba(55, 81, 255, 0.1)), #FFFFFF;
  background: linear-gradient(0deg, rgba(55, 81, 255, 0.1), rgba(55, 81, 255, 0.1)), #FFFFFF;
  border: 1px solid #3751FF;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 8px;
  color: #000;
  margin: 0 12px 0 0;
}

.header-st__auth-btn_bb:hover {
  border-color: #000;
}

.header-st__auth-btn_nb {
  color: #ffffff;
  background: #3751FF;
  border-radius: 5px;
}

.header-st__logo {
  display: none;
}

.header-st__mobile {
  display: none;
}

.header-st__basket {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 30px;
  position: relative;
  background: #FFFFFF url("../img/basket2.svg") no-repeat center;
  /* #DFE0EB */
  border: 1px solid #DFE0EB;
}

.header-st__basket.active:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #DC0500;
  border: 1px solid #DFE0EB;
  right: -3px;
  top: -3px;
}

.menu__auth {
  display: none;
}

/*
.icon-menu {
	display: none;
	@media (max-width: $mobile) {
		display: block;
		position: relative;
		width: rem(30);
		height: rem(18);
		z-index: 5;
		@media (any-hover: none) {
			cursor: default;
		}
		span,
		&::before,
		&::after {
			content: "";
			transition: all 0.3s ease 0s;
			right: 0;
			position: absolute;
			width: 100%;
			height: rem(2);
			background-color: #000;
		}
		&::before {
			top: 0;
		}
		&::after {
			bottom: 0;
		}
		span {
			top: calc(50% - rem(1));
		}
		.menu-open & {
			span {
				width: 0;
			}
			&::before,
			&::after {
			}
			&::before {
				top: calc(50% - rem(1));
				transform: rotate(-45deg);
			}
			&::after {
				bottom: calc(50% - rem(1));
				transform: rotate(45deg);
			}
		}
	}
}
*/

.f-table {
  padding: 24px 0;
}

.f-table__title {
  font-size: 14px;
  line-height: 1.2142857143;
  letter-spacing: 0.2px;
  color: #9FA2B4;
  font-weight: 600;
}

.f-table__title:not(:last-child) {
  margin-bottom: 0.875rem;
}

.f-table__wrap {
  background: #FFFFFF;
  border: 1px solid #DFE0EB;
  border-radius: 8px;
}

.f-table__wrap table {
  width: 100%;
  font-size: 14px;
  letter-spacing: 0.2px;
  text-align: left;
}

.f-table__wrap th {
  padding: 30px 5px 13px;
  font-weight: 600;
  line-height: 1.2142857143;
  color: #9FA2B4;
}

.f-table__wrap th:nth-child(1) {
  padding-left: 32px;
}

.f-table__wrap tbody {
  color: #252733;
}

.f-table__wrap tr:not(:last-child) td {
  border-bottom: 1px solid #DFE0EB;
}

.f-table__wrap td {
  padding: 18px 5px 21px;
  line-height: 1.4285714286;
}

.f-table__wrap td:nth-child(1) {
  padding-left: 32px;
}

.f-table__date {
  font-weight: 600;
}

.medit {
  padding-top: 24px;
}

.medit.stop [data-button] {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.medit.stop [data-timer-stop] {
  display: none;
}

.medit.finish [data-button] {
  display: none;
}

.medit.finish [data-timer-stop] {
  display: none;
}

.medit.finish [data-timer-finish] {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.medit [data-timer-finish] {
  display: none;
}

.medit [data-button] {
  display: none;
}

.medit__content {
  background: #FFFFFF;
  max-width: 620px;
  border: 1px solid #DFE0EB;
  border-radius: 8px;
  margin: 0 auto;
  padding: 24px 16px;
}

.medit__title {
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: #9FA2B4;
}

.medit__title:not(:last-child) {
  margin-bottom: 1.5rem;
}

.medit__head-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}

.medit__select {
  position: relative;
}

.medit__input {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 7;
  width: 100%;
  pointer-events: none;
}

.medit__input input {
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  text-align: center;
  letter-spacing: 1px;
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  display: block;
  height: 52px;
  padding-right: 13px;
}

.medit__input input::-webkit-input-placeholder {
  color: #9FA2B4;
}

.medit__input input::-moz-placeholder {
  color: #9FA2B4;
}

.medit__input input:-ms-input-placeholder {
  color: #9FA2B4;
}

.medit__input input::-ms-input-placeholder {
  color: #9FA2B4;
}

.medit__input input::placeholder {
  color: #9FA2B4;
}

.medit__sel-label {
  font-weight: 500;
  font-size: 10px;
  line-height: 1.2;
  color: #9FA2B4;
  text-align: center;
  margin-top: 6px;
}

.medit__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 16px 0 36px;
  gap: 16px;
}

.medit__tag {
  display: inline-block;
  padding: 7px 16px;
  border: 1px solid #DFE0EB;
  border-radius: 8px;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.2px;
  color: #9FA2B4;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.69, 0.75, 0.51);
  -o-transition: all 0.3s cubic-bezier(0.39, 0.69, 0.75, 0.51);
  transition: all 0.3s cubic-bezier(0.39, 0.69, 0.75, 0.51);
}

.medit__tag:hover {
  background: #F6F6F6;
}

.medit__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.medit__timer-item {
  width: 126px;
}

.medit__timer-value {
  width: 100%;
  height: 132px;
  background: #F7F8FC;
  border-radius: 10px;
  padding: 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;
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 1px;
  color: #252733;
}

.stop .medit__timer-value {
  color: #9FA2B4;
}

.medit__timer-value.stop {
  color: #9FA2B4;
}

.medit__time-out {
  margin-top: 8px;
  color: #9FA2B4;
  text-align: center;
}

.medit__time-out p {
  font-weight: 500;
  font-size: 10px;
  line-height: 12px;
  letter-spacing: 1px;
}

.medit__time-out-value {
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
}

.form-medit__label-span {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.2px;
  color: #252733;
  display: inline-block;
}

.form-medit__label-span:not(:last-child) {
  margin-bottom: 1rem;
}

.audio-timer {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
}

.app {
  position: fixed;
  bottom: 1.5625rem;
}

.app__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0.75rem;
  gap: 0.5rem;
  width: 19.0625rem;
  height: 6rem;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.16);
  border-radius: 0.5rem;
}

.app__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.app__title {
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.25rem;
  letter-spacing: 0.2px;
  color: #252733;
}

.app__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
}

.app__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.375rem 0.625rem;
  width: 100%;
  height: 2.5rem;
  background-color: #dfe0eb;
  border-radius: 0.25rem;
}

.app__icon {
  margin-right: 0.625rem;
}

/**/

.red {
  color: #DC0500;
}

.blue-lite {
  color: #88A7F5;
}

.orange {
  color: #F5BC4A;
}

.green {
  color: #00A912;
}

.grey {
  color: #9FA2B4;
}

.bg-blue {
  background: #3751FF;
}

.bg-red {
  background: #DC0500;
}

.bg-greydark {
  background: #3D3D3D;
}

.bg-lightgrey {
  background: #F7F8FC;
}

/**/

.hidden {
  display: none;
}

.visible {
  display: block;
}

/**/

.student-wrap {
  background: #F7F8FC;
  min-height: 100vh;
  padding-bottom: 30px;
}

.menu {
  width: 184px;
  background: #ffffff;
  padding: 31px 0 24px;
  height: 100vh;
  position: fixed;
  overflow: hidden;
  overflow-y: auto;
  -webkit-transition: width 0.3s ease;
  -o-transition: width 0.3s ease;
  transition: width 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.menu.js-open {
  width: 46px;
  overflow: hidden;
}

.menu.js-open .menu__close {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.menu.js-open .logo {
  opacity: 0;
}

.menu.js-open .logo-small {
  opacity: 1;
}

.menu.js-open .menu__list a {
  font-size: 0;
}

.menu.js-open .menu__list-num,
.menu.js-open .menu__chat,
.menu.js-open .menu__social {
  opacity: 0;
  pointer-events: none;
}

.menu__close-menu {
  display: none;
}

.menu__logo {
  padding: 0 14px;
  display: block;
  margin-bottom: 66px;
  height: 31px;
  position: relative;
  width: 184px;
}

.menu__logo .logo {
  width: 150px;
  height: 31px;
  position: absolute;
  /* transform: scale(1.15); */
  top: 3px;
  left: 0;
  right: 0;
  opacity: 1;
  margin: auto;
}

.menu__logo .logo-small {
  height: 31px;
  position: absolute;
  opacity: 0;
}

.menu__list {
  width: 184px;
}

.menu__list li.active a {
  background: #F7F8F9;
}

.menu__list li.active a:before {
  opacity: 1;
}

.menu__list li.active .menu__list-icon svg path {
  fill: #DC0500;
}

.menu__list a {
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0.2px;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  height: 56px;
  padding: 0 14px;
  white-space: nowrap;
  position: relative;
}

.menu__list a:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 100%;
  background: #DC0500;
  left: 0;
  top: 0;
  opacity: 0;
}

.menu__list-profile,
.menu__list-exit {
  display: none;
}

.menu__list-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 30px;
  min-width: 30px;
}

.menu__list-num {
  background: #3751FF;
  min-width: 30px;
  height: 18px;
  padding: 3px 5px;
  border-radius: 50px;
  font-size: 10px;
  line-height: 12px;
  text-align: center;
  letter-spacing: 0.2px;
  color: #ffffff;
  position: absolute;
  right: 14px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.menu__chat {
  padding: 0 14px;
  margin-bottom: 34px;
}

.menu__chat-link {
  border: 1px solid #DFE0EB;
  border-radius: 8px;
  width: 100%;
  height: 40px;
  background: #ffffff;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.2px;
  color: #9FA2B4;
  padding: 0 11px 0 19px;
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 14px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.menu__chat-link svg {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.menu__chat-link:hover {
  border: 1px solid #000;
  color: #000;
}

.menu__chat-link:hover svg path {
  fill: #000;
}

.menu__chat-icon {
  width: 32px;
  min-width: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.menu__social {
  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;
  padding: 0 14px 34px;
}

.menu__social-link {
  margin: 0 12px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.menu__social-link svg {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.menu__social-link:hover svg path {
  fill: #000;
}

.menu__close {
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.menu__close svg {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.menu__close:hover svg path {
  fill: #000;
}

.menu__profile {
  display: none;
}

.content-wrap {
  width: calc(100% - 184px);
  margin-left: 184px;
  padding: 0 30px;
  -webkit-transition: width 0.2s ease;
  -o-transition: width 0.2s ease;
  transition: width 0.2s ease;
}

.content-wrap:before {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% - 93px);
  top: 93px;
  background: #F7F8FC;
  opacity: 0;
  pointer-events: none;
  z-index: 3;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.content-wrap.js-menu-open {
  width: calc(100% - 46px);
  margin-left: 46px;
}

.content-wrap.js-profile-open:before {
  opacity: 0.89;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden !important;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

body {
  font-family: "Gilroy";
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  color: #000;
  background: #fff;
  -webkit-box-direction: normal;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  margin: 0;
  min-height: 100vh;
}

body:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #9FA2B4;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

body.js-mobmenu-open:before {
  opacity: 0.6;
}

body.menu-toggle-active:before,
body.auth-box-active:before {
  opacity: 0.6;
  pointer-events: auto;
}

body.my-modal-active {
  height: 100vh;
  overflow-y: hidden;
}

body.my-modal-active .cabinet__desc {
  position: relative;
  z-index: 1003;
}

body.modal-active-h {
  height: 100vh;
  overflow-y: hidden !important;
}

* {
  outline: none;
}

*:focus,
*:hover,
*:active {
  outline: none;
}

.btn.focus,
.btn:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

input,
textarea {
  outline: none;
  border: none;
  border-radius: 0;
}

label {
  margin-bottom: 0;
}

ul {
  padding: 0;
  margin: 0;
}

ul li {
  list-style: none;
}

p {
  margin-bottom: 0;
}

a:hover,
a:focus {
  outline: none;
  text-decoration: none;
}

button {
  border: 0;
}

button:focus {
  outline: none;
}

img {
  max-width: 100%;
}

.slick-list {
  width: 100%;
}

.clear {
  clear: both;
}

a:hover {
  color: #DC0500;
}

h1,
.h1 {
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 0.3px;
  font-weight: 600;
  color: #252733;
}

h2,
.h2 {
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  text-transform: none;
  color: #000;
}

h3,
.h3 {
  font-size: 18px;
  line-height: 30px;
  font-weight: 600;
  color: #000;
}

h4,
.h4 {
  font-size: 18px;
  font-weight: 600;
  color: #000;
}

h5,
.h5 {
  font-size: 16px;
  font-weight: normal;
}

h6,
.h6 {
  font-size: 14px;
  font-weight: normal;
}

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

.flex-bettwen {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex-around {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.flex-jcenter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.bg-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.compensate-for-scrollbar {
  margin-right: 0px !important;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.2px;
}

.pagination a {
  color: #000;
  padding: 0 12px;
}

.pagination a:hover {
  color: #dc0500;
}

.pagination li.active a {
  color: #dc0500;
  font-weight: bold;
}

[data-simplebar] {
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.simplebar-wrapper {
  overflow: hidden;
  width: inherit;
  height: inherit;
  max-width: inherit;
  max-height: inherit;
}

.simplebar-mask {
  direction: inherit;
  position: absolute;
  overflow: hidden;
  padding: 0;
  margin: 0;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: auto !important;
  height: auto !important;
  z-index: 0;
}

.simplebar-offset {
  direction: inherit !important;
  -webkit-box-sizing: inherit !important;
          box-sizing: inherit !important;
  resize: none !important;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0;
  margin: 0;
  -webkit-overflow-scrolling: touch;
}

.simplebar-content-wrapper {
  direction: inherit;
  -webkit-box-sizing: border-box !important;
          box-sizing: border-box !important;
  position: relative;
  display: block;
  height: 100%;
  /* Required for horizontal native scrollbar to not appear if parent is taller than natural height */
  width: auto;
  max-width: 100%;
  /* Not required for horizontal scroll to trigger */
  max-height: 100%;
  /* Needed for vertical scroll to trigger */
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.simplebar-content-wrapper::-webkit-scrollbar,
.simplebar-hide-scrollbar::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.simplebar-content:before,
.simplebar-content:after {
  content: " ";
  display: table;
}

.simplebar-placeholder {
  max-height: 100%;
  max-width: 100%;
  width: 100%;
  pointer-events: none;
}

.simplebar-height-auto-observer-wrapper {
  -webkit-box-sizing: inherit !important;
          box-sizing: inherit !important;
  height: 100%;
  width: 100%;
  max-width: 1px;
  position: relative;
  float: left;
  max-height: 1px;
  overflow: hidden;
  z-index: -1;
  padding: 0;
  margin: 0;
  pointer-events: none;
  -webkit-box-flex: inherit;
      -ms-flex-positive: inherit;
          flex-grow: inherit;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
}

.simplebar-height-auto-observer {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  display: block;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 1000%;
  width: 1000%;
  min-height: 1px;
  min-width: 1px;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.simplebar-track {
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

[data-simplebar].simplebar-dragging {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

[data-simplebar].simplebar-dragging .simplebar-content {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

[data-simplebar].simplebar-dragging .simplebar-track {
  pointer-events: all;
}

.simplebar-scrollbar {
  position: absolute;
  left: 0;
  right: 0;
  min-height: 10px;
}

.simplebar-scrollbar:before {
  position: absolute;
  content: "";
  background: black;
  border-radius: 7px;
  left: 0px;
  right: 2px;
  opacity: 0;
  -webkit-transition: opacity 0.2s 0.5s linear;
  -o-transition: opacity 0.2s 0.5s linear;
  transition: opacity 0.2s 0.5s linear;
}

.simplebar-scrollbar.simplebar-visible:before {
  opacity: 1;
  -webkit-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-duration: 0s;
       -o-transition-duration: 0s;
          transition-duration: 0s;
  background: #3751FF;
  border-radius: 10px;
}

.simplebar-track.simplebar-vertical {
  top: 2px;
  width: 5px;
  background: #D9D9D9;
  right: 5px;
  border-radius: 10px;
}

.simplebar-scrollbar:before {
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
}

.simplebar-track.simplebar-horizontal {
  left: 0;
  height: 11px;
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar {
  right: auto;
  left: 0;
  top: 0;
  bottom: 0;
  min-height: 0;
  min-width: 10px;
  width: auto;
}

/* Rtl support */

[data-simplebar-direction=rtl] .simplebar-track.simplebar-vertical {
  right: auto;
  left: 0;
}

.simplebar-dummy-scrollbar-size {
  direction: rtl;
  position: fixed;
  opacity: 0;
  visibility: hidden;
  height: 500px;
  width: 500px;
  overflow-y: hidden;
  overflow-x: scroll;
  -ms-overflow-style: scrollbar !important;
}

.simplebar-dummy-scrollbar-size > div {
  width: 200%;
  height: 200%;
  margin: 10px 0;
}

.simplebar-hide-scrollbar {
  position: fixed;
  left: 0;
  visibility: hidden;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

@media (min-width: 576px) {
  .container {
    max-width: 100%;
  }
}

@media (min-width: 992px) {
  .header-auth__nolink {
    width: 38.86%;
  }

  .header-auth__lang-box {
    width: 38.86%;
  }
}

@media (min-width: 1200px) {
  .header-auth .container {
    max-width: 1170px;
  }

  .container {
    max-width: 1396px;
  }
}

@media (max-width: 991px) {
  .menu {
    display: none;
    width: 265px;
    padding-top: 24px;
    left: 0;
    z-index: 2;
    border-radius: 0 8px 8px 0;
  }

  .menu__logo {
    margin-bottom: 38px;
  }

  .menu.js-mobmenu-open {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .menu__logo {
    padding: 0 30px;
  }

  .menu__list {
    width: 100%;
  }

  .menu__list a {
    padding: 0 30px;
  }

  .menu__list-profile,
  .menu__list-exit {
    display: block;
  }

  .menu__list-num {
    right: 26px;
  }

  .menu__chat {
    padding: 0 57px;
  }

  .menu__social {
    padding: 0 57px;
  }

  .menu__close {
    display: none;
  }

  .menu__close-menu {
    display: block;
    position: absolute;
    width: 24px;
    height: 24px;
    background: url("../img/close.svg") no-repeat center;
    right: 20px;
    top: 37px;
  }

  .menu__profile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 30px 18px;
  }

  .menu__profile-name {
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    letter-spacing: 0.2px;
    color: #252733;
    max-width: 111px;
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
  }

  .menu__profile-photo {
    width: 44px;
    height: 44px;
    background: #ffffff url("../img/auth-nophoto.svg") no-repeat center;
    background-size: contain;
    border-radius: 50%;
    border: 1px solid #DFE0EB;
    padding: 2px;
    margin-right: 14px;
  }

  .content-wrap {
    width: 100%;
    margin-left: 0;
    padding: 0 13px;
  }

  .header-st__lang-list {
    right: -50px;
    left: auto;
  }

  .header-st__menu-toggle {
    display: block;
    margin-left: 30px;
  }

  .header-st__profile {
    display: none;
  }

  .menu {
    display: none;
    width: 265px;
    padding-top: 24px;
    left: 0;
    z-index: 3;
    border-radius: 0 8px 8px 0;
  }

  .menu__logo {
    margin-bottom: 38px;
  }

  .menu.js-mobmenu-open {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .menu__logo {
    padding: 0 30px;
  }

  .menu__list {
    width: 100%;
  }

  .menu__list a {
    padding: 0 30px;
  }

  .menu__list-profile,
  .menu__list-exit {
    display: block;
  }

  .menu__list-num {
    right: 26px;
  }

  .menu__chat {
    padding: 0 57px;
  }

  .menu__social {
    padding: 0 57px;
  }

  .menu__close {
    display: none;
  }

  .menu__close-menu {
    display: block;
    position: absolute;
    width: 24px;
    height: 24px;
    background: url("../img/close.svg") no-repeat center;
    right: 20px;
    top: 37px;
  }

  .menu__profile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 30px 18px;
  }

  .menu__profile-name {
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    letter-spacing: 0.2px;
    color: #252733;
    max-width: 111px;
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
  }

  .menu__profile-photo {
    width: 44px;
    height: 44px;
    background: #ffffff url("../img/auth-nophoto.svg") no-repeat center;
    background-size: contain;
    border-radius: 50%;
    border: 1px solid #DFE0EB;
    padding: 2px;
    margin-right: 14px;
  }

  .content-wrap {
    width: 100%;
    margin-left: 0;
    padding: 0 13px;
  }
}

@media screen and (max-width: 768px) {
  .f-table__wrap table {
    font-size: 12px;
  }

  .f-table__wrap table {
    border: 0;
  }

  .f-table__wrap table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }

  .f-table__wrap table tr {
    display: block;
  }

  .f-table__wrap table tr:not(:last-child) {
    border-bottom: 1px solid #ddd;
  }

  .f-table__wrap table td {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 10px;
    padding: 10px;
  }

  .f-table__wrap table td:not(:last-child) {
    border-bottom: 0;
  }

  .f-table__wrap table td:first-child {
    padding-left: 10px;
  }

  .f-table__wrap table td::before {
    content: attr(data-label);
    font-weight: bold;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30%;
            flex: 0 0 30%;
  }

  .f-table__date {
    text-align: right;
  }

  .f-table__text {
    text-align: right;
  }
}

@media (max-width: 48em) {
  .medit__tags {
    gap: 8px;
    margin: 16px 0 24px;
  }

  .medit__tag {
    padding: 3px 12px;
    font-size: 12px;
  }
}

@media (max-width: 767px) {
  .header-st__auth {
    display: none;
  }

  .header-st {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .header-st__title {
    display: none;
  }

  .header-st__logo {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-top: -12px;
  }

  .header-st__others .header-st__step,
  .header-st__others .header-st__icon {
    display: none;
  }

  .header-st__mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .header-st__mobile .header-st__step,
  .header-st__mobile .header-st__icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .menu__auth {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .menu__auth .header-st__auth {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 0;
    padding-left: 0;
  }

  .menu__auth .header-st__auth:before {
    display: none;
  }
}

@media (max-width: 667px) {
  .header-st__menu-toggle {
    margin-left: 16px;
  }

  .header-st__basket {
    margin-right: 16px;
  }
}

@media (max-width: 374px) {
  .content-wrap {
    padding: 0;
  }

  .header-st__icon {
    margin-right: 0;
  }

  .content-wrap {
    padding: 0;
  }
}

@media (max-width: 34.375em) {
  .select {
    width: 100%;
  }

  .medit__head-row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .medit__select {
    width: calc(50% - 10px);
  }

  .medit__timer-item {
    width: calc(50% - 10px);
  }

  .medit__timer-value {
    height: 100px;
  }
}

@media (max-width: 23.4375em) {
  .app {
    left: 1.875rem;
    right: 1.875rem;
  }

  .app__wrapper {
    width: 100%;
  }
}

@media (max-width: 23.375em) {
  .app {
    left: 0.9375rem;
    right: 0.9375rem;
  }
}

@media (min-width: 667px) and (max-width: 767px) {
  .header-st {
    position: relative;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding-left: 160px;
  }

  .header-st__logo {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    position: absolute;
    left: 0;
  }

  .header-st__mobile {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .header-st__others {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

@media (any-hover: hover) {
  .button:hover {
    background: #071682;
  }

  .button_border:hover {
    background: #9FA2B4;
    color: #fff;
  }

  .button_red:hover {
    background: #940a05;
    color: #fff;
  }

  .button_grey:hover {
    background: #bfc0c7;
    color: #252733;
  }

  .select__option:hover {
    background: #F6F6F6;
  }
}