/* normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */

input,
textarea {
  display: block;
  width: 100%;
  font-family: 'Gilroy', Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  height: 54px;
  padding: 16px 0px;
  color: #000;
  background-color: #fff;
  border: none;
  border-bottom: 1px solid #eaeaea;
  border-radius: 0;
  text-overflow: ellipsis;
  box-shadow: none !important;
  transition: border-color 0.3s, color 0.3s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #a9a9a9;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #a9a9a9;
  opacity: 1;
}
input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #a9a9a9;
  opacity: 1;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #a9a9a9;
}
textarea {
  height: 54px;
  resize: none;
  overflow: hidden;
}
label {
  display: inline-block;
  font-family: 'Gilroy', Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #000;
}
button {
  font-family: 'Gilroy', Arial, Helvetica, sans-serif;
  background-color: transparent;
  padding: 0;
  border: none;
}
img {
  max-width: 100%;
}
.svg-icon {
  fill: currentColor;
}
a,
input,
label,
button {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
}
a,
input,
label,
span,
button::selection {
  background: transparent;
}
a,
input,
label,
button::-moz-selection {
  background: transparent;
}
@media only screen and (min-width: 1024px) {
  a:hover {
    color: #19863e;
  }
}
@media only screen and (max-width: 767px) {
  h1,
  h2 {
    font-size: 24px;
  }
}
/* Blocks */
.wrapper {
  display: flex;
  flex-flow: column nowrap;
  min-height: 100%;
  overflow: hidden;
}
.wrapper--iframe {
  height: 100vh;
}
.wrapper--iframe iframe {
  border: none;
}
.wrapper--vis {
  overflow: visible;
}
.main {
  position: relative;
  display: flex;
  flex-flow: column nowrap;
  flex-grow: 1;

}
.container {
	display: flex;
    /* Не забудьте добавить префиксы для Safari */
    display: -webkit-flex;
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 40px;
}
@media only screen and (max-width: 1199px) {
  .container {
	  display: flex;
    /* префиксы для Safari */
    display: -webkit-flex;
    padding: 0 20px;
  }
}
.link {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #1d9e49;
}
.link .svg-icon {
  flex-shrink: 0;
  margin-right: 15px;
}
.content h3 {
  margin: 50px 0 14px;
}
.content h3:first-child {
  margin-top: 0;
}
.content h3:last-child {
  margin-bottom: 0;
}
.content .tabs__controls {
  justify-content: flex-start;
  margin-top: 20px;
}
.content .tabs__button {
  margin-right: 0;
}
.content .tabs__item.is-active {
  padding-top: 18px;
}
.content table {
  width: 100%;
  border-collapse: collapse;
}
.content th {
  font-size: 14px;
  line-height: 1.38;
  font-weight: 400;
  color: #a9a9a9;
  text-align: left;
  padding: 15px 0;
  cursor: pointer;
  min-width: 120px;
}
.content th:last-child {
  text-align: right;
  padding-right: 17px;
  min-width: inherit;
}
.content th.sorted[data-order="1"],
.content th.sorted[data-order="-1"] {
  position: relative;
  color: #1d9e49;
}
.content th.sorted[data-order="1"]::after,
.content th.sorted[data-order="-1"]::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 10px solid #1d9e49;
  transform: translate(0, -50%);
  transform-origin: center;
  margin-left: 7px;
  transition: transform 0.3s;
}
.content th.sorted[data-order="1"]::after {
  transform: translate(0, -50%) rotate(180deg);
}
.content td {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  color: #000;
  padding: 12px 50px 12px 0;
}
.content td:last-child {
  text-align: right;
  padding-right: 0;
  white-space: nowrap;
  padding-right: 17px;
}
.content td:nth-of-type(2) {
  font-weight: 500;
}
.content tbodys tr {
  border-top: 1px solid #eaeaea;
}
.content tbodys tr:first-child {
  border-top: none;
}
.ul li,
.ol li {
  font-size: 16px;
  line-height: 24px;
  position: relative;
  margin-bottom: 10px;
}
.ul li::before,
.ol li::before {
  display: block;
  position: absolute;
}
.ul li {
  padding-left: 28px;
}
.ul li::before {
  content: '';
  left: 9px;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #1d9e49;
}
.ul-brand2 li::before {
  background-color: #f20f0f;
}
.ol {
  counter-reset: num;
}
.ol li {
  counter-increment: num;
  padding-left: 32px;
}
.ol li::before {
  content: counter(num);
  left: 0;
  top: 2px;
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  width: 20px;
  border-radius: 50%;
  color: #fff;
  background-color: #1d9e49;
  text-align: center;
}
.ol-brand2 li::before {
  background-color: #f20f0f;
}
.is-hidden {
  display: none !important;
}
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
  background-color: #1d9e49;
  border-color: #1d9e49;
}
.smartbanner {
  z-index: 999;
  position: fixed !important;
}
@media only screen and (max-width: 767px) {
  .content h3 {
    margin: 40px 0 14px;
  }
  .content th {
    width: 50%;
  }
  .content th:nth-child(n+3) {
    display: none;
  }
  .content tr {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-end;
  }
  .content td {
    padding: 12px 12px 6px 0;
    width: 50%;
  }
  .content td:last-child {
    text-align: left;
    padding-bottom: 12px;
  }
  .content td:nth-child(n+3) {
    padding-top: 0;
    margin-left: 50%;
  }
}
.sitemap {
  background-color: #fff;
  color: #000;
  flex-grow: 1;
  overflow-y: auto;
  display: flex;
  flex-flow: column nowrap;
}
.sitemap__head {
  display: flex;
  align-items: center;
  height: 100px;
  border-bottom: 1px solid #f3f3f3;
}
.sitemap__logo {
  line-height: 0;
}
.sitemap__main {
  flex-grow: 1;
  padding-top: 50px;
  padding-bottom: 50px;
}
.sitemap__divider {
  border-bottom: 6px solid #eee;
  margin-bottom: 20px;
}
.sitemap__container {
  display: flex;
}
.sitemap__list {
  display: block;
  width: 50%;
  padding-right: 50px;
}
.sitemap__item {
  display: block;
  margin: 0 0 20px;
}
.sitemap__link {
  font-family: 'Gilroy', Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  color: #000;
}
.sitemap__link:hover {
  color: #1d9e49;
}
@media only screen and (max-width: 1023px) {
  .sitemap__list {
    column-count: 1;
  }
}
.button {
  display: inline-flex;
  align-items: center;
  position: relative;
  font-family: 'Gilroy', Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  padding: 13px 48px;
  text-align: center;
  justify-content: center;
  color: #fff;
  border: none;
  border-radius: 52px;
  background-color: #1d9e49;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.3s, background-color 0.3s, opacity 0.3s;
}
.button-sm {
  font-size: 14px;
  line-height: 20px;
  padding: 6px 13px;
}
.button--black {
  background-color: #000;
  transition: opacity 0.3s;
}
.button--red {
  background-color: #f20f0f;
  transition: opacity 0.3s;
}
.button--grey {
  background-color: #f3f3f3;
  color: #000;
}
.button--other {
  background-color: #f3f3f3;
  color: #000;
  border-radius: 65px;
}
.button--other .svg-icon {
  display: flex;
  margin-right: 12px;
}
.button--other#appleid-signin {
  padding: 0;
/*div {
				display: none !important;
			}*/
}
.button--other#appleid-signin text {
  fill: #000;
}
.button--other#appleid-signin rect {
  transition: all 0.3s;
  fill: #f3f3f3;
  stroke: #f3f3f3;
}
.button--bordered {
  background-color: transparent;
  border: 2px solid #1d9e49;
  color: #1d9e49;
  transition: color 0.3s, border-color 0.3s, background-color 0.3s;
}
@media (hover: hover) {
  .button--bordered:hover {
    border-color: #19863e;
  }
}
.button-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
  font-family: 'Gilroy', Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 500;
  padding: 16px 48px;
  text-align: center;
  color: #000;
  border: none;
  border-radius: 12px;
  background-color: #f3f3f3;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  margin-top: 30px;
  transition: color 0.3s, background-color 0.3s, opacity 0.3s;
}
@media only screen and (min-width: 1024px) {
  .button:hover {
    color: #fff;
    background-color: #19863e;
  }
  .button--black:hover {
    background-color: #000;
    opacity: 0.8;
  }
  .button--red:hover {
    background-color: #f20f0f;
    opacity: 0.8;
  }
  .button--other:hover {
    color: #000;
    background-color: #d9d9d9;
  }
  .button--other:hover#appleid-signin {
    background: none !important;
  }
  .button--other:hover#appleid-signin rect {
    fill: #d9d9d9;
    stroke: #d9d9d9;
  }
  .button-more:hover {
    color: #fff;
    background-color: #19863e;
  }
}
.system-message {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  pointer-events: none;
  z-index: 10000;
  display: flex;
  align-items: center;
  flex-direction: column;
  opacity: 1;
}
.system-message__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 500px;
  min-height: 44px;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  background-color: #1d9e49;
  border-radius: 200px;
  padding: 14px 70px 14px 50px;
  margin-top: 15px;
  pointer-events: auto;
  transform: translateY(0);
  transition: all 0.3s;
}
.system-message__item.is-hide {
  transform: translateY(-200%);
}
.system-message__item.is-error {
  background-color: #f20f0f;
}
.system-message__item.is-success {
  background-color: #1d9e49;
}
.system-message__close {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 32px;
  height: 32px;
  margin-top: -16px;
  border-radius: 50%;
  background-color: #fff;
  cursor: pointer;
  transition: opacity 0.3s;
}
.system-message__close::before,
.system-message__close::after {
  position: absolute;
  top: 15px;
  left: 7px;
  z-index: 2;
  width: 18px;
  height: 2px;
  background-color: #000;
  transition: background-color 0.3s ease;
  content: '';
}
.system-message__close::before {
  transform: rotate(45deg);
}
.system-message__close::after {
  transform: rotate(-45deg);
}
@media only screen and (min-width: 1024px) {
  .system-message__close:hover {
    opacity: 0.7;
  }
}
@media only screen and (max-width: 1023px) {
  .system-message__item {
    padding: 14px 50px 14px 20px;
  }
}
.apps {
  display: inline-flex;
  align-items: flex-start;
}
.apps__button {
  flex-shrink: 0;
  width: 163px;
  height: 51px;
  background-color: #000;
  margin-right: 15px;
  border-radius: 4px;
  overflow: hidden;
  transition: background-color 0.3s;
}
.apps__button img {
  width: auto;
  height: 100%;
}
.apps__button:last-child {
  margin-right: 0;
}
.apps__button--en {
  background-color: transparent;
  height: 46px;
  width: 162px;
}
.apps--sm .apps__button {
  width: 104px;
  height: 32px;
}
@media only screen and (max-width: 767px) {
  .apps__button {
    width: 130px;
    height: 40px;
    margin-right: 12px;
  }
}
.asana-detail {
  padding: 50px 0 110px;
}
.asana-detail__container {
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 40px;
}
@media only screen and (max-width: 1199px) {
  .asana-detail__container {
    padding: 0 20px;
  }
}
.asana-detail__back {
  margin: 0 0 30px;
}
.asana-detail__back span {
  text-overflow: ellipsis;
  overflow: hidden;
  width: 173px;
  white-space: nowrap;
}
.asana-detail__download {
  cursor: pointer;
  display: none;
}
.asana-detail__title {
  margin: 0 0 16px;
}
.asana-detail__head {
  width: 100%;
  max-width: 711px;
  margin-bottom: 30px;
}
.asana-detail__subhead {
  display: none;
}
.asana-detail__wrap {
  display: flex;
  display: flex;
  flex-flow: row wrap;
  margin-left: -12px;
  margin-right: -12px;
}
.asana-detail__main {
  width: 62.5%;
  padding-left: 12px;
  padding-right: 12px;
}
.asana-detail__main:last-child {
  margin-top: 50px;
}
.asana-detail__controls {
  display: flex;
  width: 100%;
  margin: 32px 0 45px;
}
.asana-detail__controls--short {
  display: none;
  margin: 20px 0;
}
.asana-detail__controls--relative {
  position: relative;
  z-index: 7;
  margin-bottom: 0;
}
.asana-detail__controls-main {
  position: relative;
  z-index: 7;
  flex-grow: 1;
  display: flex;
}
.asana-detail__controls-main svg {
  margin-right: 10px;
}
.asana-detail__controls-side {
  flex-shrink: 0;
  margin-left: 40px;
  display: flex;
}
.asana-detail__button {
  flex-shrink: 0;
  flex-grow: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #f3f3f3;
  color: #1d9e49;
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  padding: 13px;
  border-radius: 52px;
  cursor: pointer;
  margin-right: 6px;
  transition: color 0.3s, background-color 0.3s;
}
.asana-detail__button--mobile {
  flex-grow: 0;
  width: 20px;
  height: 20px;
  display: none;
}
.asana-detail__button:last-child {
  margin-top: 1px;
  margin-right: 0;
}
.asana-detail__button .svg-icon {
  flex-shrink: 0;
  fill: currentColor;
}
.asana-detail__button.is-active {
  color: #fff;
  background-color: #1d9e49;
}
.asana-detail__button.is-active .svg-icon {
  fill: #fff;
  transition: fill 0.3s;
}
.asana-detail__button.is-disabled,
.asana-detail__button--disabled,
.asana-detail__button.is-playAd {
  pointer-events: none;
  color: #aaa;
  border-color: #aaa;
}
.asana-detail__button.is-playAd {
  background-color: #f3f3f3;
}
.asana-detail__button.is-playAd .svg-icon {
  fill: #aaa;
}
.asana-detail__side {
  width: 37.5%;
  padding-left: 12px;
  padding-right: 12px;
  max-width: 456px;
  margin-left: auto;
}
.asana-detail__button--mobile[data-element="toggleFavorite"] .svg-icon {
  fill: #fff;
  stroke: #1d9e49;
}
.asana-detail__button--mobile[data-element="toggleFavorite"].is-active {
  background-color: transparent;
}
.asana-detail__button--mobile[data-element="toggleFavorite"].is-active .svg-icon {
  fill: #f20f0f;
  stroke: #f20f0f;
}
.asana-detail-video {
  display: block;
  width: 100%;
  position: relative;
  margin-bottom: 20px;
}
.asana-detail-video__box {
  width: 100%;
  padding-bottom: 56.25%;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}
.asana-detail-video__box > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.asana-detail-video__icon {
  display: none;
  position: absolute;
  width: 106px;
  height: 88px;
  border-radius: 53px 53px 0 0;
  background-color: #fff;
  padding: 0 20px;
  bottom: 0;
  left: 40px;
  line-height: 0;
}
.asana-detail-video__icon > img {
  width: 100%;
  height: auto;
}
@media only screen and (min-width: 1024px) {
  .asana-detail__button:hover {
    color: #fff;
    background-color: #19863e;
  }
}
@media only screen and (max-width: 1440px) {
  .asana-detail__time {
    display: none;
  }
}
@media only screen and (max-width: 1199px) {
  .asana-detail__main {
    width: 66.66666666666666%;
    padding-left: 12px;
    padding-right: 12px;
  }
  .asana-detail__side {
    width: 33.33333333333333%;
    padding-left: 12px;
    padding-right: 12px;
/*padding-left: 40px;
			width: 375px;*/
  }
}
@media only screen and (max-width: 1023px) {
  .asana-detail__main {
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
    margin-bottom: 40px;
  }
  .asana-detail__time {
    display: inline-flex;
  }
  .asana-detail__side {
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
    max-width: 100%;
    margin-left: 0;
  }
  .asana-detail__controls--short {
    display: block;
  }
  .asana-detail__controls--challenge {
    display: none;
  }
  .asana-detail-video {
    padding-bottom: 30px;
  }
  .asana-detail-video__icon {
    display: flex;
  }
}
@media only screen and (max-width: 767px) {
  .asana-detail {
    padding: 15px 0 52px;
  }
  .asana-detail__back {
    margin: 3px 0 0;
  }
  .asana-detail__back span {
    display: none;
  }
  .asana-detail__head {
    margin-bottom: 11px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
  .asana-detail__subhead {
    display: block;
    text-align: center;
  }
  .asana-detail__download {
    margin: 3px 0 0;
    display: flex;
    margin-left: 15px;
  }
  .asana-detail__title {
    font-size: 16px;
    line-height: 1.38;
    text-align: center;
    margin: 0;
  }
  .asana-detail__subtitle {
    font-size: 12px;
    line-height: 1.17;
    color: #727373;
    margin: 0 0 12px;
  }
  .asana-detail__info {
    text-align: center;
    margin: 0 0 12px;
  }
  .asana-detail__info .infoblock__list {
    justify-content: center;
  }
  .asana-detail__controls-side {
    display: none;
  }
  .asana-detail__button {
    display: inline-flex;
    background-color: #fff;
    border: 2px solid #1d9e49;
  }
  .asana-detail__button--video {
    display: none;
  }
  .asana-detail__button--mobile {
    display: flex;
    background-color: transparent;
    border: unset;
    margin-left: 0;
    margin-top: -5px;
  }
  .asana-detail-video {
    width: auto;
    margin: 0 -20px 10px;
  }
  .asana-detail-video__box {
    border-radius: 0;
  }
}
@media only screen and (max-width: 374px) {
  .asana-detail__time {
    display: none;
  }
}
@media only screen and (max-width: 374px) {
  bodys[data-route="asana-details"] .asana-detail__controls {
    margin-bottom: 0;
  }
}
.banner {
  background-color: #f4f1ed;
  overflow: hidden;
}
.banner__container {
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 40px;
}
@media only screen and (max-width: 1199px) {
  .banner__container {
    padding: 0 20px;
  }
}
.banner__row {
  display: flex;
  flex-flow: row wrap;
  margin-left: -12px;
  margin-right: -12px;
}
.banner__col--main {
  width: 58.333333333333336%;
  padding-left: 12px;
  padding-right: 12px;
}
.banner__col--image {
  width: 41.66666666666667%;
  padding-left: 12px;
  padding-right: 12px;
}
.banner__main {
  position: relative;
  z-index: 2;
}
.banner__title {
  margin: 0 0 24px;
}
.banner__title span {
  color: #1d9e49;
}
.banner__text {
  font-size: 20px;
  line-height: 28px;
  max-width: 640px;
}
.banner__controls {
  margin-top: 40px;
}
.banner--type1 .banner__col--main {
  width: 58.333333333333336%;
  padding-left: 12px;
  padding-right: 12px;
}
.banner--type1 .banner__col--image {
  width: 41.66666666666667%;
  padding-left: 12px;
  padding-right: 12px;
}
.banner--type1 .banner__main {
  padding: 97px 0 128px;
}
.banner--type1 .banner__image {
  display: block;
  width: 358px;
  height: auto;
  line-height: 0;
  margin: 0 auto;
  position: relative;
  margin-bottom: -115px;
}
.banner--type1 .banner__image-figure {
  position: absolute;
  display: flex;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.banner--type1 .banner__image-figure .svg-icon {
  flex-shrink: 0;
  margin: auto;
  animation: spin 10s linear infinite;
}
.banner--type1 .banner__image-figure--first {
  color: #1d9e49;
}
.banner--type1 .banner__image-figure--first .svg-icon {
  animation-duration: 40s;
}
.banner--type1 .banner__image-figure--second {
  color: #f20f0f;
}
.banner--type1 .banner__image-figure--second .svg-icon {
  animation-duration: 60s;
}
.banner--type1 .banner__image-main {
  display: block;
  width: 100%;
  height: auto;
  line-height: 0;
  position: relative;
  z-index: 3;
}
.banner--type2 .banner__col--image {
  position: relative;
}
.banner--type2 .banner__main {
  padding: 120px 0 138px;
}
.banner--type2 .banner__image {
  display: block;
  width: 769px;
  max-width: 769px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  height: auto;
  margin-bottom: -20px;
}
@media only screen and (max-width: 1199px) {
  .banner__col--main {
    width: 66.66666666666666%;
    padding-left: 12px;
    padding-right: 12px;
  }
  .banner__col--image {
    width: 33.33333333333333%;
    padding-left: 12px;
    padding-right: 12px;
  }
  .banner--type1 .banner__col--main {
    width: 66.66666666666666%;
    padding-left: 12px;
    padding-right: 12px;
  }
  .banner--type1 .banner__col--image {
    margin-left: 0%;
    width: 33.33333333333333%;
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media only screen and (max-width: 1023px) {
  .banner {
    text-align: center;
  }
  .banner__col--main {
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }
  .banner__col--image {
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }
  .banner__text {
    margin: 0 auto;
  }
  .banner--type1 .banner__col--main {
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }
  .banner--type1 .banner__col--image {
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }
  .banner--type1 .banner__main {
    padding: 70px 0 20px;
  }
  .banner--type2 .banner__main {
    padding: 70px 0 40px;
  }
  .banner--type2 .banner__image {
    left: 55%;
    position: relative;
  }
}
@media only screen and (max-width: 767px) {
  .banner__title {
    font-size: 20px;
    line-height: 24px;
    margin: 0 auto 12px;
    max-width: 280px;
  }
  .banner__title br {
    display: none;
  }
  .banner__text {
    font-size: 16px;
    line-height: 22px;
    max-width: 320px;
  }
  .banner__controls {
    margin-top: 26px;
  }
  .banner--type1 .banner__image {
    width: 312px;
  }
  .banner--type1 .banner__image-figure {
    transform: scale(0.86, 0.86) translate(-50%, -50%);
  }
}
@-moz-keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-o-keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.buy {
  background-color: #fff;
  height: calc(var(--vh, 1vh) * 100);
}
.buy__warning {
  display: inline-block;
  width: 100%;
  color: #1d9e49;
  font-size: 10px;
  line-height: 12px;
  text-align: center;
}
.buy__price-value {
  display: inline-block;
  font-weight: 400;
  margin-left: auto;
}
.buy__radio-wrapper {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 2px solid #a9a9a9;
  display: flex;
  justify-content: center;
  align-items: center;
}
.buy__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.buy__action-marker {
  display: block;
  min-width: 50px;
  text-align: center;
  margin: 0 auto 13px auto;
  padding: 1px 6px;
  font-size: 12px;
  line-height: 18px;
  font-style: normal;
  color: #fff;
  border-radius: 6px;
  background-color: #f20f0f;
}
.buy--tips {
  background: url("../images/tips-bg.jpg") center no-repeat;
  background-size: cover;
}
.buy__close {
  display: flex;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: fixed;
  top: 15px;
  left: 15px;
  z-index: 100;
  color: #fff;
  background-color: rgba(0,0,0,0.3);
  cursor: pointer;
  transition: color 0.3s;
}
.buy__close .svg-icon {
  margin: auto;
  width: 12px;
}
.buy__logo {
  width: 207px;
  margin: 90px auto 0;
}
.buy__container {
  width: 100%;
  height: 100%;
}
.buy__row {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.buy__col {
  height: 100%;
  width: 50%;
  flex-grow: 1;
}
.buy__col--main {
  display: flex;
  height: 100%;
  overflow-y: auto;
}
.buy__image {
  height: 100%;
}
.buy__image--mat {
  text-align: center;
  margin: 0 auto 50px auto;
}
.buy__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
.buy__video {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.buy__video > * {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
.buy__main {
  padding: 30px 20px 20px;
  margin: auto;
  max-width: 439px;
/*min-height: 100%;*/
}
.buy__title {
  margin: 0 0 40px;
  font-size: 24px;
  line-height: 34px;
  font-weight: 400;
  text-align: center;
}
.buy__title--mat {
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
}
.buy__box {
  position: relative;
  margin: 0 auto;
  max-width: 375px;
  padding: 25px 15px 20px 25px;
  border-top: 1px solid #f3f3f3;
  border-bottom: 1px solid #f3f3f3;
}
.buy__box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 5px;
  background-color: #1d9e49;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.buy__subscribe {
  margin: 33px auto 0;
  max-width: 336px;
}
.buy__list {
  display: flex;
  flex-flow: row wrap;
  margin-left: -12px;
  margin-right: -12px;
  margin: 0 -3px;
}
.buy__list--mat {
  display: flex;
  flex-direction: column-reverse;
}
.buy__item {
  width: 33.33333333333333%;
  padding-left: 12px;
  padding-right: 12px;
  padding: 0 3px;
  flex-grow: 1;
  flex-shrink: 0;
}
.buy__item.is-active .buy-card {
  background-color: #1d9e49;
  border-color: #1d9e49;
}
.buy__item.is-active .buy-card__top {
  color: #fff;
}
.buy__item.is-active .buy-card__top i {
  visibility: visible;
  opacity: 1;
}
.buy__list--mat .buy__item:last-child {
  border-bottom: 1px solid #f3f3f3;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.buy__list--mat .buy__item {
  display: flex;
  gap: 10px;
  align-items: center;
  width: 100%;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
}
.buy__controls {
  margin: 28px auto 0;
}
.buy__buttons {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.buy__button {
  flex-shrink: 0;
  width: 162px;
  height: 52px;
  margin-left: 24px;
  padding: 10px 33px;
}
.buy__button:first-child {
  margin-left: 0;
}
.buy__button:only-child {
  width: 100%;
  max-width: 348px;
}
.buy__button-text {
  margin-left: 8px;
}
.buy__link {
  cursor: pointer;
  margin-top: 15px;
  width: 100%;
  justify-content: center;
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
}
.buy__note {
  margin-top: 23px;
  color: #a9a9a9;
  font-size: 9px;
  line-height: 12px;
  text-align: center;
}
.buy__note b {
  font-weight: normal;
}
.buy__note span {
  display: block;
  margin-top: 10px;
}
.buy__note a {
  font-size: 10px;
  border-bottom: 1px solid currentColor;
}
.buy--subscription-state .buy__main {
  min-height: 100%;
  width: 100%;
  max-width: 100%;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.buy--subscription-state .buy__wrap {
  margin-top: auto;
  background: #f4f1ed;
  position: relative;
  padding: 115px 25px 55px;
  overflow: hidden;
}
.buy--subscription-state .buy__wrap::before {
  content: '';
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-top: 55px solid #fff;
  border-left: 25vw solid transparent;
  border-right: 25vw solid transparent;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.buy--subscription-state .buy__box {
  border-bottom: none;
}
.buy--subscription-state .buy__title {
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  margin: 0 0 20px;
}
.buy--subscription-state .buy__title--mat {
  margin: 0 0 30px;
}
.buy--happy-end {
  height: unset;
}
.buy--happy-end .buy__main {
  padding: 0;
}
.buy--happy-end .buy__title {
  font-size: 18px;
  line-height: 1.44;
  margin: 0 0 10px;
}
.buy--happy-end .buy__title--mat {
  margin: 0 0 20px;
}
.buy--happy-end .buy__title b {
  font-weight: 500;
}
.buy--happy-end .buy__box .ul {
  line-height: 22px;
}
.buy--happy-end .buy__subtitle {
  margin: 0 0 15px;
  text-align: center;
  display: none;
}
.buy-card {
  margin-top: 8px;
  border-radius: 4px;
  border: 2px solid #f3f3f3;
  background-color: #f3f3f3;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}
.buy-card--marker {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  border-radius: 50%;
  margin: 0;
  border: unset;
  background-color: #fff;
}
.buy-card__top {
  position: relative;
  padding: 21px 15px 15px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  transition: color 0.3s;
}
.buy-card__top i {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 1px 6px;
  font-size: 12px;
  line-height: 18px;
  font-style: normal;
  color: #fff;
  border-radius: 6px;
  border: 2px solid #fff;
  background-color: #f20f0f;
  opacity: 0;
  visibility: hidden;
  transition: visibility 0.3s, opacity 0.3s;
}
.buy-card__content {
  border-radius: 3px;
  background-color: #fff;
  padding: 20px 10px;
}
.buy-card__price {
  font-size: 24px;
  line-height: 28px;
  font-weight: 500;
}
.buy-card__note {
  font-size: 10px;
  line-height: 16px;
  font-weight: 400;
  color: #727373;
  margin-top: 1px;
}
.buy-card.is-active {
  background-color: #1d9e49;
  border-color: #1d9e49;
}
.buy-card.is-active .buy-card__top {
  color: #fff;
}
.buy-card.is-active .buy-card__top i {
  visibility: visible;
  opacity: 1;
}
.buy-subscription-state {
  padding: 45px 25px;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
.buy-subscription-state__title {
  font-size: 30px;
  line-height: 35px;
  font-weight: 600;
  margin: 0 0 58px;
}
.buy-subscription-state__form .checkbox {
  height: auto;
}
.buy-subscription-state-progress {
  margin-bottom: 24px;
}
.buy-subscription-state-progress__labels {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  color: #a9a9a9;
  margin: 0 0 12px;
}
.buy-subscription-state-progress__labels-item--val {
  color: #000;
}
.buy-subscription-state-progress__track {
  position: relative;
  width: 100%;
  height: 16px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #f3f3f3;
}
.buy-subscription-state-progress__bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background-color: #1d9e49;
  border-radius: 8px;
}
@media only screen and (min-width: 1441px) {
  .buy--subscription-state .buy__wrap {
    margin-top: auto;
    background: #f4f1ed;
    position: relative;
    padding: 115px 25px 55px;
    overflow: hidden;
  }
  .buy--subscription-state .buy__wrap::before {
    content: '';
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    border-top: 55px solid #fff;
    border-left: 25vw solid transparent;
    border-right: 25vw solid transparent;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .buy--subscription-state .buy__box {
    max-width: 26vw;
    padding: 1.73vw 1.04vw 1.38vw 1.73vw;
  }
  .buy--subscription-state .buy__box .ul li {
    font-size: 1.11vw;
    line-height: 1.5;
    margin: 0 0 0.69vw;
    padding-left: 2vw;
  }
  .buy--subscription-state .buy__box .ul li::before {
    width: 0.416vw;
    height: 0.416vw;
    top: 0.5625em;
  }
  .buy--subscription-state .buy__title {
    font-size: 1.38vw;
    line-height: 1.2;
    margin: 0 0 1.38vw;
  }
  .buy--subscription-state .buy__note {
    font-size: 0.625vw;
    line-height: 1.33;
    margin-top: 1.6vw;
  }
  .buy--subscription-state .buy__note a {
    font-size: 0.625vw;
    line-height: 1.33;
    margin-top: 1.6vw;
  }
}
@media only screen and (max-width: 1023px) {
  .buy--happy-end .buy__content {
    display: none;
  }
  .buy--happy-end .buy__content--mat {
    display: flex;
  }
  .buy--happy-end .buy__subtitle {
    display: inline-block;
  }
}
@media only screen and (max-width: 767px) {
  .buy {
    overscroll-behavior: none;
    touch-action: none;
  }
  .buy__logo {
    margin: 66px auto 0;
  }
  .buy__row {
    display: block;
    overflow-y: auto;
  }
  .buy__col {
    width: 100%;
  }
  .buy__col--image {
    height: 250px;
  }
  .buy__col--main {
    height: auto;
    min-height: calc(100% - 250px);
    overflow: hidden;
  }
  .buy__image img:nth-of-type(1) {
    display: none;
  }
  .buy__image img:nth-of-type(2) {
    display: block;
  }
  .buy__main {
    padding: 10px 16px 25px;
  }
  .buy__content {
    display: none;
  }
  .buy__content--mat {
    display: flex;
  }
  .buy__subscribe {
    margin-top: 0;
  }
  .buy__controls {
    margin-top: 20px;
  }
  .buy__button {
    margin-left: 16px;
  }
  .buy__note {
    margin-top: 15px;
  }
  .buy--subscription-state .buy__main {
    margin: 0;
  }
  .buy--subscription-state .buy__wrap {
    padding: 80px 0 40px;
  }
  .buy--subscription-state .buy__wrap::before {
    border-width: 40px 50vw 0;
  }
  .buy--subscription-state .buy__content {
    display: block;
  }
  .buy-subscription-state {
    padding: 26px 20px 26px;
  }
  .buy-subscription-state__title {
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    margin: 0 0 34px;
  }
}
.catalog__container {
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 40px;
}
@media only screen and (max-width: 1199px) {
  .catalog__container {
    padding: 0 20px;
  }
}
.catalog__wrap {
  padding: 40px 0 130px;
}
.catalog__title {
  margin: 0 0 30px;
}
.catalog__filter {
  margin-bottom: 48px;
  position: relative;
  z-index: 10;
}
.catalog-section {
  margin-bottom: 48px;
}
.catalog-section:last-child {
  margin: 0;
}
.catalog-section__title {
  display: flex;
  align-items: center;
  font-size: 18px;
  line-height: 26px;
  margin: 0 0 28px;
}
.catalog-section__title .svg-icon {
  fill: #1d9e49;
  margin-left: 10px;
}
.catalog-section__block {
  margin-bottom: 62px;
}
.catalog-section__block:last-child {
  margin: 0;
}
.catalog-section__subtitle {
  color: #727373;
  font-size: 14px;
  line-height: 20px;
  margin: 0 0 28px;
  overflow: hidden;
}
.catalog-section__subtitle span {
  position: relative;
}
.catalog-section__subtitle span::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 100%;
  margin-left: 5px;
  width: 100vw;
  height: 10px;
  background-color: #eaeaea;
}
.catalog-section__control {
  margin-top: 28px;
}
.catalog-section__button {
  width: 100%;
  font-size: 12px;
  line-height: 18px;
  border-radius: 12px;
  padding: 16px 30px;
}
.catalog-section--recommend {
  margin-top: 60px;
}
.catalog-section--recommend .catalog-list {
  margin-bottom: 0;
}
.catalog-section--recommend .catalog-list__item {
  width: 100%;
  padding-left: 12px;
  padding-right: 12px;
  margin: 0;
}
.catalog-section--favorites.is-filter-enabled,
.catalog-section--popular-asana.is-filter-enabled,
.catalog-section--popular.is-filter-enabled,
.catalog-section--active.is-filter-enabled {
  display: none;
}
.catalog-section--main .catalog-section__main ~ .filter-search-results-empty {
  display: none;
}
.catalog-section--main .catalog-section__main.is-empty ~ .filter-search-results-empty {
  display: block;
}
.catalog-list {
  display: flex;
  flex-flow: row wrap;
  margin-left: -12px;
  margin-right: -12px;
  margin-bottom: -24px;
/*.infoblock__item--multiple-durations {
		display: none;
	}*/
}
.catalog-list__item {
  width: 25%;
  padding-left: 12px;
  padding-right: 12px;
  flex-shrink: 0;
  margin: 0 0 20px;
}
.catalog-list__item.is-multiple .infoblock__item--multiple-durations {
  display: inline-flex;
}
.catalog-list__item.is-multiple .infoblock__item--one-duration,
.catalog-list__item.is-multiple .infoblock__item--asanas,
.catalog-list__item.is-multiple .infoblock__item--points,
.catalog-list__item.is-multiple .infoblock__item--kcal {
  display: none;
}
.catalog-card {
  display: block;
  color: #000;
  background-color: #fff;
  border-radius: 12px;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 2px 27px rgba(0,0,0,0.072);
}
.catalog-card__gift {
  display: flex;
  position: absolute;
  width: 24px;
  height: 24px;
  color: #fff;
  overflow: hidden;
  border-radius: 50%;
  top: 10px;
  right: 10px;
  z-index: 2;
}
.catalog-card__gift::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.5);
  backdrop-filter: blur(3px);
  pointer-events: none;
  z-index: -1;
}
.catalog-card__gift .svg-icon {
  width: 16px;
  height: 16px;
  margin: auto;
}
.catalog-card__progress {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
}
.catalog-card__image {
  width: 100%;
  min-height: 188px;
  padding-bottom: 56.25%;
  position: relative;
  overflow: hidden;
}
.catalog-card__image > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.catalog-card__image-play {
  display: flex;
  position: absolute;
  z-index: 2;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #f20f0f;
  color: #fff;
}
.catalog-card__image-play .svg-icon {
  width: 13px;
  height: auto;
  margin: auto;
  transform: translateX(10%);
}
.catalog-card__main {
  padding: 10px 10px 12px;
}
.catalog-card__title {
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin: 0 0 8px;
}
.catalog-card__infoblock {
  color: #727373;
}
.catalog-card--empty {
  background-color: #f6f6f6;
  box-shadow: none;
  width: 335px;
  min-height: 200px;
}
.catalog-card--empty .catalog-card__main {
  height: 100%;
  padding: 10px 28px 34px 29px;
}
.catalog-card--empty .catalog-card__icon {
  display: flex;
  justify-content: center;
  width: 163px;
  height: 124px;
  margin: 0 auto 10px;
}
.catalog-card--empty .catalog-card__icon img {
  opacity: 0.5;
}
.catalog-card--empty .catalog-card__title {
  font-size: 12px;
  line-height: 14px;
  text-align: center;
  color: rgba(114,115,115,0.8);
  white-space: normal;
  max-width: 265px;
  margin: 0 auto;
}
.catalog-card-asana {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  color: #000;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 2px 27px rgba(0,0,0,0.05);
  padding: 16px 10px 20px 27px;
  height: 136px;
}
.catalog-card-asana__title {
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  margin: 0 0 4px;
  max-height: 88px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
.catalog-card-asana__subtitle {
  font-size: 12px;
  line-height: 14px;
  font-weight: 500;
  color: #727373;
}
.catalog-card-asana__image {
  flex-shrink: 0;
  line-height: 0;
  width: 100px;
  height: 100px;
}
.catalog-card-progress {
  display: flex;
  align-items: flex-start;
}
.catalog-card-progress__img {
  width: 40px;
  height: 40px;
  display: block;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  filter: grayscale(1);
}
.catalog-card-progress__content {
  flex-shrink: 0;
  display: inline-flex;
  font-size: 12px;
  line-height: 14px;
  font-weight: 500;
  overflow: hidden;
  border-radius: 0 100px 100px 0;
  transform: translate(-11px, 3px);
  position: relative;
  color: #000;
  opacity: 0;
  transition: opacity 0.3s;
}
.catalog-card-progress__indicator-back {
  padding: 5px 10px 5px 10px;
  background-color: #19863e;
  color: #fff;
}
.catalog-card-progress__indicator-front {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 5px 10px 5px 10px;
  top: 0;
  left: 0;
  background-color: #fff;
  transition: clip-path 0.3s, color 0.3s;
}
.catalog-card-progress__line {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background-color: #1d9e49;
  z-index: -1;
}
.catalog-card-progress--default .catalog-card-progress__content {
  display: none;
}
.catalog-card-progress--finished .catalog-card-progress__img {
  filter: grayscale(0);
}
.catalog-card-progress--finished .catalog-card-progress__content {
  color: #fff;
  opacity: 1;
  padding: 5px 10px 5px 10px;
}
.catalog-card-progress--finished .catalog-card-progress__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.5);
  backdrop-filter: blur(3px);
  pointer-events: none;
  z-index: -1;
}
.catalog-card-progress--restarted .catalog-card-progress__content {
  padding: 0;
  color: #000;
}
@media only screen and (max-width: 1199px) {
  .catalog-list {
    margin: 0 -8px -20px;
  }
  .catalog-list__item {
    width: 33.33333333333333%;
    padding-left: 12px;
    padding-right: 12px;
    padding: 0 8px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 1023px) {
  .catalog__title {
    display: none;
  }
  .catalog__wrap {
    padding: 0 0 40px;
  }
  .catalog__main {
    padding-top: 18px;
  }
  .catalog__filter {
    margin: 0;
    position: unset;
    z-index: unset;
  }
  .catalog__filter ~ .catalog__main {
    padding-top: 180px;
  }
  .catalog-section--favorites {
    display: block;
  }
  .catalog-section--favorites,
  .catalog-section--popular,
  .catalog-section--active {
    position: relative;
    margin-left: -20px;
    margin-right: -20px;
  }
  .catalog-section--favorites .catalog-section__title,
  .catalog-section--popular .catalog-section__title,
  .catalog-section--active .catalog-section__title {
    padding-left: 20px;
  }
  .catalog-section--favorites .catalog-section__main,
  .catalog-section--popular .catalog-section__main,
  .catalog-section--active .catalog-section__main {
    display: flex;
    overflow: hidden;
    padding-bottom: 20px;
  }
  .catalog-section--favorites .catalog-section__main .catalog-list,
  .catalog-section--popular .catalog-section__main .catalog-list,
  .catalog-section--active .catalog-section__main .catalog-list {
    flex-wrap: nowrap;
  }
  .catalog-section--favorites .catalog-section__control,
  .catalog-section--popular .catalog-section__control,
  .catalog-section--active .catalog-section__control {
    display: none;
  }
  .catalog-section--favorites .catalog-card__title,
  .catalog-section--popular .catalog-card__title,
  .catalog-section--active .catalog-card__title {
    max-width: 300px;
  }
  .catalog-section--favorites .catalog-list,
  .catalog-section--popular .catalog-list,
  .catalog-section--active .catalog-list {
    flex-shrink: 0;
    padding-left: 20px;
    padding-right: 20px;
  }
  .catalog-section--favorites .catalog-list__item,
  .catalog-section--popular .catalog-list__item,
  .catalog-section--active .catalog-list__item {
    flex-shrink: 0;
    width: auto;
    height: 256px;
  }
  .catalog-section--favorites .catalog-list__item--empty,
  .catalog-section--popular .catalog-list__item--empty,
  .catalog-section--active .catalog-list__item--empty {
    height: auto;
  }
  .catalog-section--favorites .is-hidden,
  .catalog-section--popular .is-hidden,
  .catalog-section--active .is-hidden {
    display: block !important;
  }
  .catalog-list__item {
    width: 50%;
    padding-left: 12px;
    padding-right: 12px;
    padding: 0 8px;
  }
  .catalog-card {
    min-width: 335px;
  }
}
@media only screen and (max-width: 767px) {
  .catalog-section {
    margin-bottom: 20px;
  }
  .catalog-section--favorites .catalog-list__item,
  .catalog-section--popular .catalog-list__item,
  .catalog-section--active .catalog-list__item {
    width: calc(100vw - 25px);
    height: auto;
  }
  .catalog-list__item {
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
    padding: 0 5px;
  }
  .catalog-list__item--empty {
    padding: 0;
    transform: translateX(8px);
  }
  .catalog-card--empty {
    width: calc(100vw - 40px);
  }
}
bodys[data-route="asanas"] .catalog-section--popular-asana .catalog-section__block {
  margin-bottom: 62px;
}
bodys[data-route="asanas"] .catalog__filter {
  margin-bottom: 20px;
}
@media only screen and (max-width: 1023px) {
  bodys[data-route="asanas"] .catalog__filter {
    margin: 0;
  }
  bodys[data-route="asanas"] .catalog__filter ~ .catalog__main {
    padding-top: 143px;
  }
}
.chart {
  position: relative;
}
.chart__canvas[data-type="person"] {
  width: 100% !important;
}
.chart--circle {
  width: 196px;
  margin: 0 auto;
}
.chart--circle .chart-labels {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
}
.chart--circle .chart-labels__item {
  flex-basis: 0;
  flex-grow: 1;
  flex-shrink: 0;
  padding: 0 12px;
  text-align: center;
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
}
.chart--circle .chart-labels__item--brand1 {
  color: #1d9e49;
}
.chart--circle .chart-labels__item--brand2 {
  color: #023313;
}
.chart--bar::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 20px;
  width: 100%;
  background-color: rgba(255,255,255,0.5);
}
.chart--bar-xs {
  display: none;
}
.chart--radar {
  margin: 0 auto;
  padding-bottom: 50px;
  width: 100%;
  max-width: 412px;
  padding: 30px;
}
.chart--radar .chart__main {
  padding: 55px;
  position: relative;
}
.chart--radar .chart__image {
  position: absolute;
  width: 48px;
  height: 48px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 3px solid #fff;
  line-height: 0;
  border-radius: 50%;
  background: url("../images/avatar-female.jpg") 50% 50% no-repeat;
  background-size: cover;
  overflow: hidden;
  margin: 0 auto;
}
.chart--radar .chart__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #fff;
}
.chart--radar .chart__image img[src=""] {
  opacity: 0;
}
.chart--radar .chart__image[data-gender ~="male"] {
  background: url("../images/avatar-male.jpg") 50% 50% no-repeat !important;
  background-size: cover;
}
.chart--radar .chart__image[data-gender ~="other"] {
  background: url("../images/avatar-other.jpg") 50% 50% no-repeat !important;
  background-size: cover;
}
.chart--radar .chart-labels__item {
  position: absolute;
  left: 50%;
  top: 0;
  width: auto;
  height: 50%;
  transform: translateX(-50%);
  transform-origin: 50% 100%;
}
.chart--radar .chart-labels__item:nth-child(1) {
  transform: translateX(-50%);
}
.chart--radar .chart-labels__item:nth-child(1) .chart-labels__title {
  color: #1d9e49;
}
.chart--radar .chart-labels__item:nth-child(2) {
  transform: translateX(-50%) rotate(60deg);
}
.chart--radar .chart-labels__item:nth-child(2) .chart-labels__card {
  transform: rotate(-60deg);
}
.chart--radar .chart-labels__item:nth-child(2) .chart-labels__title {
  color: #ffc000;
}
.chart--radar .chart-labels__item:nth-child(3) {
  transform: translateX(-50%) rotate(120deg);
}
.chart--radar .chart-labels__item:nth-child(3) .chart-labels__card {
  transform: rotate(-120deg);
}
.chart--radar .chart-labels__item:nth-child(3) .chart-labels__title {
  color: #8760fb;
}
.chart--radar .chart-labels__item:nth-child(4) {
  transform: translateX(-50%) rotate(180deg);
}
.chart--radar .chart-labels__item:nth-child(4) .chart-labels__card {
  transform: rotate(-180deg);
}
.chart--radar .chart-labels__item:nth-child(4) .chart-labels__title {
  color: #ea1b5b;
}
.chart--radar .chart-labels__item:nth-child(5) {
  transform: translateX(-50%) rotate(240deg);
}
.chart--radar .chart-labels__item:nth-child(5) .chart-labels__card {
  text-align: right;
  transform: rotate(-240deg) translateX(-25px);
}
.chart--radar .chart-labels__item:nth-child(5) .chart-labels__title {
  color: #e955d6;
}
.chart--radar .chart-labels__item:nth-child(6) {
  transform: translateX(-50%) rotate(300deg);
}
.chart--radar .chart-labels__item:nth-child(6) .chart-labels__card {
  text-align: right;
  transform: rotate(-300deg) translateX(-25px);
}
.chart--radar .chart-labels__item:nth-child(6) .chart-labels__title {
  color: #00deff;
}
.chart--radar .chart-labels__title {
  font-size: 14px;
  line-height: 20px;
}
.chart--radar .chart-labels__val {
  font-size: 10px;
  line-height: 16px;
}
.chart--bar-chart {
  height: 200px;
}
@media only screen and (max-width: 1199px) {
  .chart--bar {
    display: none;
  }
  .chart--bar-xs {
    display: block;
  }
}
@media only screen and (max-width: 1199px) {
  .chart--bar {
    display: block;
  }
  .chart--bar-xs {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .chart--bar {
    display: none;
  }
  .chart--bar-xs {
    margin: 0 -10px;
    display: block;
  }
}
@media only screen and (max-width: 374px) {
  .chart--radar {
    padding: 10px;
    transform: translateX(15px);
  }
  .chart--radar .chart__main {
    padding: 45px;
  }
  .chart--radar .chart-labels__title {
    font-size: 12px;
    line-height: 16px;
  }
}
.checkbox {
  display: inline-flex;
  align-items: flex-start;
  vertical-align: middle;
  white-space: nowrap;
}
.checkbox__control {
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  border: 2px solid #a9a9a9;
  border-radius: 50%;
}
.checkbox__input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 3;
  margin: 0;
  cursor: pointer;
}
.checkbox__input:checked ~ .checkbox__icon {
  opacity: 1;
}
.checkbox__input.is-disabled {
  pointer-events: none;
}
.checkbox__icon {
  position: relative;
  background-color: #1d9e49;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border: 1px solid #fff;
  color: #fff;
  border-radius: 50%;
  opacity: 0;
  z-index: 2;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s, opacity 0.3s;
  cursor: pointer;
}
.checkbox__icon .svg-icon {
  flex-shrink: 0;
  fill: currentColor;
}
.checkbox__label {
  flex-grow: 1;
  font-family: 'Gilroy', Arial, Helvetica, sans-serif;
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  margin: 0 0 0 9px;
  cursor: pointer;
  white-space: normal;
  user-select: none;
}
.checkbox--toggle .checkbox__control {
  width: 47px;
  height: 28px;
  border-radius: 0;
  background-color: transparent;
  border: none;
}
.checkbox--toggle .checkbox__icon {
  display: flex;
  width: 47px;
  height: 28px;
  background-color: #a9a9a9;
  border: none;
  border-radius: 14px;
  position: relative;
  opacity: 1 !important;
  transition: background-color 0.3s;
}
.checkbox--toggle .checkbox__icon .svg-icon {
  display: none;
}
.checkbox--toggle .checkbox__icon::after {
  content: '';
  display: block;
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  top: 2px;
  left: 3px;
  background-color: #fff;
  transform: translateX(0);
  transition: transform 0.3s;
}
.checkbox--toggle .checkbox__icon--fake {
  background-color: #1d9e49;
}
.checkbox--toggle .checkbox__icon--fake::after {
  transform: translateX(17px);
}
.checkbox--toggle .checkbox__input:checked ~ .checkbox__icon {
  background-color: #1d9e49;
}
.checkbox--toggle .checkbox__input:checked ~ .checkbox__icon::after {
  transform: translateX(17px);
}
.checkbox--flex {
  display: flex;
  width: 100%;
  height: 54px;
  align-items: center;
}
.checkbox--flex .checkbox__label {
  margin: 0;
}
.checkbox--button .checkbox__control {
  border: none;
}
.checkbox--button .checkbox__input {
  z-index: 1;
}
.checkbox--button .checkbox__icon {
  width: auto;
  height: auto;
  font-size: 14px;
  line-height: 20px;
  padding: 6px 12px;
  color: #000;
  background-color: #f3f3f3;
  border-radius: 32px;
  opacity: 1;
  border: none;
  transition: background-color 0.3s, color 0.3s;
}
.checkbox--button .checkbox__input:checked ~ .checkbox__icon {
  background-color: #1d9e49;
  color: #fff;
}
.checkbox--button .checkbox__input--fake ~ .checkbox__icon {
  background-color: #1d9e49;
  color: #fff;
}
.checkbox--block {
  width: 100%;
}
.checkbox--block .checkbox__control {
  width: 100%;
}
.checkbox--block .checkbox__icon {
  width: 100%;
  padding: 6px 15px;
  justify-content: flex-start;
}
.select--choices {
  opacity: 0;
}
.choices {
  font-size: 16px;
  line-height: 22px;
  z-index: 9;
  font-family: 'Gilroy', Arial, Helvetica, sans-serif;
}
.choices::after {
  margin-top: -3px !important;
  right: 6px !important;
  width: 10px !important;
  height: 6px !important;
  border: none !important;
  background: url("../images/angle-down.svg") 50% 50% no-repeat;
  background-size: contain;
}
.choices__inner {
  font-size: 16px;
  line-height: 22px;
  padding: 14px 40px 14px 14px !important;
  background-color: transparent;
  border: none;
  min-height: 54px;
}
.choices__list {
  padding: 0 !important;
}
.choices__list--dropdown {
  width: auto !important;
  min-width: 100%;
  background-color: #fff !important;
  border: none !important;
  border-top: 3px solid #1d9e49 !important;
  box-shadow: 0px 2px 27px rgba(0,0,0,0.072);
  border-radius: 4px;
  margin-top: 0 !important;
  opacity: 0;
  visibility: hidden;
}
.choices__list--dropdown.is-active {
  opacity: 1;
  visibility: visible;
}
.choices__list--dropdown .choices__list {
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
}
.choices__list--dropdown .choices__list::-webkit-scrollbar {
  width: 2px;
  height: 2px;
  border-radius: 2px;
}
.choices__list--dropdown .choices__list::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 2px;
}
.choices__list--dropdown .choices__list::-webkit-scrollbar-thumb {
  background-color: transparent;
  border-radius: 2px;
}
.choices__list--dropdown .choices__item {
  font-size: 14px !important;
  font-weight: 500;
  line-height: 20px !important;
  padding: 11px 14px !important;
}
.choices__item {
  padding: 0 !important;
  white-space: nowrap !important;
  word-break: normal !important;
  transition: color 0.3s;
  border-bottom: 1px solid #eaeaea;
  background-color: transparent !important;
}
.choices__item:last-child {
  border-bottom: none;
}
.choices__item.is-highlighted {
  color: #1d9e49 !important;
}
.choices.is-open::after {
  transform: scale(1, -1);
}
.choices--gender {
  width: 160px;
  text-align: center;
}
.choices--gender .choices__inner {
  padding: 14px 30px 14px 20px !important;
  text-align: right;
}
.course-banner {
  background-color: transparent;
  border-radius: 0;
  box-shadow: none;
}
.course-banner__row {
  display: flex;
  flex-flow: row wrap;
  margin-left: -12px;
  margin-right: -12px;
}
.course-banner__col--image {
  width: 25%;
  padding-left: 12px;
  padding-right: 12px;
}
.course-banner__col--main {
  width: 75%;
  padding-left: 12px;
  padding-right: 12px;
  padding-left: 40px;
}
.course-banner__col--control {
  margin-left: 25%;
  width: 75%;
  padding-left: 12px;
  padding-right: 12px;
  padding-left: 40px;
  margin-top: -52px;
}
.course-banner__image {
  border-radius: 12px;
  width: 100%;
  padding-bottom: 56.25%;
  position: relative;
  overflow: hidden;
}
.course-banner__image > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.course-banner__image-play {
  display: flex;
  position: absolute;
  z-index: 2;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #f20f0f;
  color: #fff;
}
.course-banner__image-play .svg-icon {
  width: 13px;
  height: auto;
  margin: auto;
  transform: translateX(10%);
}
.course-banner__main {
  display: flex;
  height: 100%;
  padding: 0;
}
.course-banner__content {
  flex-grow: 1;
  overflow: hidden;
  padding-bottom: 70px;
}
.course-banner__text {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 10px;
}
.course-banner__title {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.17;
  color: #1d9e49;
  white-space: normal;
  margin: 0;
}
.course-banner__icon {
  flex-shrink: 0;
  width: 160px;
  height: 100%;
  position: relative;
  line-height: 0;
  margin-left: 20px;
}
.course-banner__icon img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media only screen and (max-width: 1199px) {
  .course-banner__col--image {
    width: 33.33333333333333%;
    padding-left: 12px;
    padding-right: 12px;
  }
  .course-banner__col--main {
    width: 66.66666666666666%;
    padding-left: 12px;
    padding-right: 12px;
  }
  .course-banner__col--control {
    margin-left: 33.33333333333333%;
    width: 66.66666666666666%;
    padding-left: 12px;
    padding-right: 12px;
    margin-top: -52px;
  }
}
@media only screen and (max-width: 1023px) {
  .course-banner__col--image {
    width: 33.33333333333333%;
    padding-left: 12px;
    padding-right: 12px;
  }
  .course-banner__col--main {
    width: 66.66666666666666%;
    padding-left: 12px;
    padding-right: 12px;
  }
  .course-banner__col--control {
    margin-left: 33.33333333333333%;
    width: 66.66666666666666%;
    padding-left: 12px;
    padding-right: 12px;
    margin-top: -52px;
  }
  .course-banner__text {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    margin: 0;
  }
  .course-banner__title {
    font-size: 18px;
    line-height: 1.2;
  }
  .course-banner__icon {
    flex-shrink: 0;
    width: 144px;
    height: 100%;
    min-height: 154px;
    margin-left: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .course-banner__col--image {
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }
  .course-banner__col--main {
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
    order: -1;
    margin-bottom: 34px;
  }
  .course-banner__col--control {
    margin-left: 0%;
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
    margin-top: 24px;
  }
  .course-banner__main {
    align-items: center;
  }
  .course-banner__content {
    padding: 0;
  }
  .course-banner__button {
    width: 100%;
  }
}
.error {
  margin: auto;
}
.error__container {
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 40px;
}
@media only screen and (max-width: 1199px) {
  .error__container {
    padding: 0 20px;
  }
}
.error__wrap {
  text-align: center;
}
.error__image {
  margin: 0 auto 40px;
  width: 246px;
  height: auto;
  line-height: 0;
}
.error__content {
  max-width: 380px;
  margin: 0 auto;
}
.error__title {
  font-size: 32px;
  line-height: 28px;
  font-weight: 500;
  margin: 0 0 17px;
  color: #f20f0f;
}
.error__text {
  font-size: 16px;
  line-height: 20px;
  color: #000;
  margin: 0 0 40px;
  padding: 0 50px;
}
@media only screen and (max-width: 767px) {
  .error__title {
    font-size: 24px;
    line-height: 28px;
    margin: 0 0 15px;
  }
  .error__text {
    font-size: 14px;
    margin: 0 0 50px;
  }
}
:root {
  --button404: #b3b3b3;
  --button-color404: #0a0a0a;
  --shadow404: #000;
  --bg404: #737373;
  --header404: #7a7a7a;
  --color404: #fafafa;
  --lit-header404: #e6e6e6;
  --speed404: 7s;
}
@property --swing-x404 {
  initial-value: 0;
  inherits: false;
  syntax: '<integer>';
}
@property --swing-y404 {
  initial-value: 0;
  inherits: false;
  syntax: '<integer>';
}
.error-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg404);
  color: var(--color404);
  perspective: 1200px;
}
.error-page * {
  transform-style: preserve-3d;
}
.error-page a {
  text-transform: uppercase;
  text-decoration: none;
  background: va404r(--button);
  color: var(404 --button-color);
  padding: 1rem 4rem;
  border-radius: 4rem;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
}
.error-page p {
  font-weight: 100;
}
.error-page h1 {
  animation: swing var(--speed404) infinite alternate ease-in-out;
  font-size: clamp(5rem, 40vmin, 20rem);
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  margin-bottom: 1rem;
  letter-spacing: 1rem;
  transform: translate3d(0, 0, 0vmin);
  --x: calc(50% + (var(--swing-x404) * 0.5) * 1%);
  background: radial-gradient(var(--lit-header404), var(--header404) 45%) var(--x) 100%/200% 200%;
  -webkit-background-clip: text;
  color: transparent;
}
.error-page h1:after {
  animation: swing var(--speed404) infinite alternate ease-in-out;
  content: "404";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--shadow404);
  filter: blur(1.5vmin);
  transform: scale(1.05) translate3d(0, 12%, -10vmin) translate(calc((var(--swing-x404, 0) * 0.05) * 1%), calc((var(--swing-y404) * 0.05) * 1%));
}
.error-page .cloak {
  animation: swing var(--speed404) infinite alternate-reverse ease-in-out;
  height: 100%;
  width: 100%;
  transform-origin: 50% 30%;
  transform: rotate(calc(var(--swing-x404) * -0.25deg));
  background: radial-gradient(40% 40% at 50% 42%, transparent, #000 35%);
}
.error-page .cloak__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  overflow: hidden;
}
.error-page .cloak__container {
  height: 250vmax;
  width: 250vmax;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.error-page .info {
  text-align: center;
  line-height: 1.5;
  max-width: clamp(16rem, 90vmin, 25rem);
}
.error-page .info > p {
  margin-bottom: 3rem;
}
@-moz-keyframes swing {
  0% {
    --swing-x404: -100;
    --swing-y404: -100;
  }
  50% {
    --swing-y404: 0;
  }
  100% {
    --swing-y404: -100;
    --swing-x404: 100;
  }
}
@-webkit-keyframes swing {
  0% {
    --swing-x404: -100;
    --swing-y404: -100;
  }
  50% {
    --swing-y404: 0;
  }
  100% {
    --swing-y404: -100;
    --swing-x404: 100;
  }
}
@-o-keyframes swing {
  0% {
    --swing-x404: -100;
    --swing-y404: -100;
  }
  50% {
    --swing-y404: 0;
  }
  100% {
    --swing-y404: -100;
    --swing-x404: 100;
  }
}
@keyframes swing {
  0% {
    --swing-x404: -100;
    --swing-y404: -100;
  }
  50% {
    --swing-y404: 0;
  }
  100% {
    --swing-y404: -100;
    --swing-x404: 100;
  }
}
.faq__item {
  margin-bottom: 30px;
}
.faq__item:last-child {
  margin-bottom: 0;
}
.faq-card {
  position: relative;
}
.faq-card__title {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  color: #1d9e49;
  cursor: pointer;
  user-select: none;
  transition: color 0.3s;
}
.faq-card__drop {
  height: 0;
  overflow: hidden;
  transition: height 0.3s;
}
.faq-card__content {
  padding: 20px 0 0;
  font-size: 18px;
  line-height: 1.44;
}
.faq-card.is-active .faq-card__title {
  color: #000;
}
@media only screen and (min-width: 1024px) {
  .faq-card__title:hover {
    color: #19863e;
  }
}
@media only screen and (max-width: 767px) {
  .faq__item {
    margin-bottom: 20px;
  }
  .faq-card__content {
    padding-top: 15px;
    font-size: 16px;
    line-height: 1.5;
  }
}
.filter {
  position: relative;
}
.filter__wrap {
  overflow: hidden;
  will-change: top;
}
.filter__transform-container {
  transition: transform 0.3s;
  background-color: #fff;
}
.filter__row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.filter__col--main {
  width: calc(100% - 250px);
}
.filter__col--side {
  width: 250px;
  display: flex;
  padding-top: 52px;
}
.filter__reset {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #1d9e49;
  margin-left: auto;
  cursor: pointer;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.3s;
}
.filter__reset .svg-icon {
  fill: #727373;
  margin: 0 10px 0 0;
}
.filter__reset.is-disabled {
  opacity: 0;
  pointer-events: none;
}
.filter-section__list {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}
.filter-section--tags {
  max-width: 960px;
  margin-bottom: 18px;
  opacity: 0;
}
.filter-section--tags.is-init {
  opacity: 1;
}
.filter-section--tags .filter-section__list {
  flex-wrap: nowrap;
  margin: 0 0 -14px -4px;
}
.filter-section--tags .filter-section__item {
  display: inline-block;
  vertical-align: top;
  padding: 0 0 14px 4px;
}
.filter-section--tags .filter-section__button {
  display: inline-flex;
  vertical-align: top;
  width: 46px;
  height: 32px;
  color: #727373;
  background-color: #f3f3f3;
  border-radius: 32px;
  cursor: pointer;
  margin-left: 10px;
}
.filter-section--tags .filter-section__button .svg-icon {
  margin: auto;
  transition: transform 0.3s;
}
.filter-section--tags.is-open .filter-section__list {
  flex-wrap: wrap;
  display: inline-flex;
  padding-right: 50px;
}
.filter-section--tags.is-open .filter-section__item {
  display: inline-block !important;
}
.filter-section--tags.is-open .filter-section__button .svg-icon {
  transform: rotate(180deg);
}
.filter-section--time .filter-section__item {
  display: inline-flex;
  align-items: center;
  vertical-align: top;
}
.filter-section--time .filter-section__item::before {
  content: '';
  display: block;
  margin: 0 10px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #a9a9a9;
}
.filter-section--time .filter-section__item:first-child::before {
  display: none;
}
.filter-search {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 8;
  pointer-events: none;
  height: calc(100vh - 179px);
  max-height: 530px;
}
.filter-search__overlay {
  display: block;
  position: absolute;
  width: 100vw;
  left: 50%;
  top: -20px;
  height: 0;
  transform: translateX(-50%);
  background-color: #fff;
  z-index: 1;
  transition: height 0.3s;
}
.filter-search__overlay:before {
  content: '';
  display: block;
  position: absolute;
  width: 100vw;
  left: 50%;
  top: 100%;
  height: 10000vh;
  transform: translateX(-50%);
  background-color: rgba(0,0,0,0.4);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s;
}
.filter-search__wrap {
  margin-left: auto;
  position: relative;
  width: 248px;
  transition: width 0.3s;
  z-index: 2;
}
.filter-search__container {
  width: 100%;
  max-width: 746px;
  margin: 0 auto;
  height: 100%;
}
.filter-search__close {
  display: flex;
  position: absolute;
  right: 0;
  top: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #f3f3f3;
  color: #000;
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
  transition: opacity 0.3s, background-color 0.3s, color 0.3s;
}
.filter-search__close .svg-icon {
  margin: auto;
}
.filter-search__close .svg-icon--back {
  display: none;
}
.filter-search__head {
  padding: 0 10px;
}
.filter-search__main {
  padding: 34px 0 90px;
  overflow-y: hidden;
  height: 100%;
}
.filter-search.is-results .filter-search-results--results {
  display: block;
}
.filter-search.is-results .filter-search-results--default,
.filter-search.is-results .filter-search-results--empty {
  display: none;
}
.filter-search.is-empty .filter-search-results--empty {
  display: block;
}
.filter-search.is-empty .filter-search-results--default,
.filter-search.is-empty .filter-search-results--results {
  display: none;
}
.filter-search-form {
  position: relative;
  width: 100%;
  pointer-events: auto;
}
.filter-search-form__input {
  width: 100%;
  border: 1px solid #d0d0d0;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  padding: 6px 40px;
  height: 32px;
  border-radius: 32px;
  caret-color: #1d9e49;
}
.filter-search-form__input:placeholder-shown ~ .filter-search-form__reset {
  opacity: 0;
  pointer-events: none;
}
.filter-search-form__icon {
  position: absolute;
  width: 16px;
  height: 16px;
  left: 15px;
  top: 7px;
  color: #d0d0d0;
}
.filter-search-form__reset {
  color: #1d9e49;
  position: absolute;
  display: flex;
  width: 24px;
  height: 24px;
  top: 4px;
  right: 13px;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.3s;
}
.filter-search-form__reset .svg-icon {
  margin: auto;
}
.filter-search-results {
  opacity: 0;
  pointer-events: none;
  overflow: auto;
  height: 100%;
  scrollbar-width: thin;
  scrollbar-color: #d0d0d0 transparent;
  padding: 0 10px;
}
.filter-search-results::-webkit-scrollbar {
  width: 2px;
  height: 2px;
  border-radius: 2px;
}
.filter-search-results::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 2px;
}
.filter-search-results::-webkit-scrollbar-thumb {
  background-color: #d0d0d0;
  border-radius: 2px;
}
.filter-search-results__title {
  font-size: 12px;
  line-height: 14px;
  font-weight: 500;
  color: #727373;
}
.filter-search-results__subtitle {
  font-size: 12px;
  line-height: 14px;
  font-weight: 500;
  color: #727373;
}
.filter-search-results__item {
  border-bottom: 1px solid #eaeaea;
}
.filter-search-results__link {
  display: flex;
  padding: 22px 0;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  color: #000;
}
.filter-search-results__text {
  flex-grow: 1;
}
.filter-search-results__category {
  flex-shrink: 0;
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
  color: #1d9e49;
}
.filter-search-results--results,
.filter-search-results--empty {
  display: none;
}
.filter-search-results-empty {
  padding: 80px 0 60px;
  text-align: center;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  color: #727373;
}
.filter-search-results-empty__image {
  width: 126px;
  line-height: 0;
  margin: 0 auto 18px;
  opacity: 0.3;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
.filter-controls {
  display: flex;
  align-items: center;
  padding: 18px 20px 0 20px;
  overflow: hidden;
  transition: height 0.3s, padding 0.3s, margin 0.3s, background-color 0.3s;
  display: none;
}
.filter-controls__button {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: #1d9e49;
}
.filter-controls__button--close {
  display: none;
}
.filter-controls__button--close,
.filter-controls__button--user {
  margin-right: 20px;
}
.filter-controls__button--filter {
  margin-left: 20px;
}
.filter-controls__button .svg-icon {
  margin: auto;
}
.filter-controls__search {
  flex-grow: 1;
  position: relative;
}
.filter-mobile {
  display: flex;
  flex-flow: column nowrap;
  position: fixed;
  top: 100%;
  height: calc(100% - 58px);
  left: 0;
  width: 100%;
  transform: translateY(0);
  background-color: #fff;
  z-index: 6;
  transition: transform 0.3s;
}
.filter-mobile__wrap {
  padding-top: 20px;
  flex-grow: 1;
  display: flex;
  flex-flow: column nowrap;
  overflow: hidden;
}
.filter-mobile__main {
  padding: 0 20px 20px;
  flex-grow: 1;
  overflow-y: auto;
}
.filter-mobile__controls {
  flex-shrink: 0;
  padding: 20px;
}
.filter-mobile__button {
  width: 100%;
  padding: 0;
}
.filter-mobile__button-reset,
.filter-mobile__button-main {
  color: currentColor;
}
.filter-mobile__button-reset {
  flex-grow: 0;
  flex-shrink: 0;
  padding: 16px 20px 16px 30px;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.filter-mobile__button-reset.is-disabled {
  display: none;
}
.filter-mobile__button-main {
  padding: 16px 20px;
  flex-grow: 1;
}
.filter-mobile-section__title {
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  margin: 0 0 13px;
}
.filter-mobile-section__list {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}
.filter-mobile-section--tags .filter-mobile-section__list {
  margin: 0 0 -12px -16px;
}
.filter-mobile-section--tags .filter-mobile-section__item {
  display: inline-block;
  width: 25%;
  vertical-align: top;
  padding: 0 0 12px 16px;
}
.filter-mobile-section--time {
  margin: 0 -20px 25px;
}
.filter-mobile-section--time .filter-mobile-section__title {
  padding: 0 20px;
  margin: 0;
}
.filter-mobile-section--time .filter-mobile-section__list {
  margin: 0;
  padding: 10px 20px;
  flex-wrap: nowrap;
  overflow: hidden;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
}
.filter-mobile-section--time .filter-mobile-section__list::-webkit-scrollbar {
  width: 0px;
  height: 0px;
  border-radius: 0px;
}
.filter-mobile-section--time .filter-mobile-section__list::-webkit-scrollbar-track {
  background: transparent;
}
.filter-mobile-section--time .filter-mobile-section__list::-webkit-scrollbar-thumb {
  background-color: transparent;
  border-radius: 0px;
}
.filter-mobile-section--time .filter-mobile-section__item {
  display: inline-flex;
  align-items: center;
  vertical-align: top;
}
.filter-mobile-section--time .filter-mobile-section__item::before {
  content: '';
  display: block;
  margin: 0 10px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #a9a9a9;
}
.filter-mobile-section--time .filter-mobile-section__item:first-child::before {
  display: none;
}
.filter-brief {
  display: block;
  align-items: center;
  position: absolute;
  top: 20px;
  left: 50%;
  z-index: 5;
  transform: translate(-50%, -50%);
  font-size: 14px;
  line-height: 20px;
  padding: 6px 13px;
  color: #fff;
  background-color: #1d9e49;
  border-radius: 16px;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  transition: opacity 0.3s;
}
.filter-brief__item {
  vertical-align: top;
  flex-shrink: 0;
  align-items: center;
  margin-right: 10px;
  display: none;
  margin: 0 5px;
}
.filter-brief__item span {
  flex-shrink: 0;
}
.filter-brief__item .svg-icon {
  flex-shrink: 0;
  margin-right: 10px;
}
.filter-brief__item.is-active {
  display: inline-flex;
}
bodys[data-route="asanas"] .filter-mobile-section--time {
  display: none;
}
@supports (-webkit-overflow-scrolling: touch) {
  input,
  textarea {
    font-size: 16px;
  }
}
@media only screen and (min-width: 1024px) {
  .filter-search__close:hover {
    background-color: #1d9e49;
    color: #fff;
  }
}
@media only screen and (max-width: 1023px) {
  .filter {
    position: absolute;
    top: 71px;
    left: 0;
    width: 100vw;
  }
  .filter__col--main {
    width: 100%;
    height: 97px;
    overflow: hidden;
    transition: height 0.3s;
  }
  .filter__col--side {
    display: none;
  }
  .filter__wrap {
    height: auto;
    padding: 0;
    z-index: 9;
    transition: top 0.3s /*, z-index 0s $duration*/;
  }
  .filter-mobile__wrap {
    flex-grow: 0;
  }
  .filter-section {
    margin: 0;
  }
  .filter-section__list {
    margin: 0;
    padding: 10px 20px;
    flex-wrap: nowrap;
    overflow: hidden;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: transparent transparent;
  }
  .filter-section__list::-webkit-scrollbar {
    width: 0px;
    height: 0px;
    border-radius: 0px;
  }
  .filter-section__list::-webkit-scrollbar-track {
    background: transparent;
  }
  .filter-section__list::-webkit-scrollbar-thumb {
    background-color: transparent;
    border-radius: 0px;
  }
  .filter-section--tags {
    max-width: none;
    border-bottom: 1px solid #f3f3f3;
  }
  .filter-section--tags .filter-section__list {
    margin: 0;
  }
  .filter-section--tags .filter-section__item {
    padding-bottom: 0;
    display: inline-block !important;
  }
  .filter-section--tags .filter-section__item--button {
    display: none !important;
  }
  .filter-section--tags .filter-section__item:first-child {
    padding-left: 0;
  }
  .filter-controls {
    display: flex;
  }
  .filter-search {
    position: fixed;
    top: 100%;
    height: calc(100% - 125px);
    left: 0;
    width: 100%;
    transform: translateY(0);
    background-color: #fff;
    z-index: 6;
    transition: transform 0.3s;
    max-height: 100%;
  }
  .filter-search__overlay {
    display: none;
  }
  .filter-search__wrap {
    width: 100%;
    padding-top: 20px;
  }
  .filter-search__container {
    max-width: 100%;
    height: 100%;
    display: flex;
    flex-flow: column nowrap;
    overflow: hidden;
  }
  .filter-search__head {
    padding: 20px 20px;
    display: flex;
    align-items: center;
    display: none;
  }
  .filter-search__close {
    width: 24px;
    height: 24px;
    margin-right: 20px;
    position: static;
    order: -1;
    background-color: transparent;
    color: #1d9e49;
    opacity: 1;
  }
  .filter-search__close .svg-icon--cross {
    display: none;
  }
  .filter-search__close .svg-icon--back {
    display: block;
  }
  .filter-search__main {
    padding: 0 20px 20px;
    flex-grow: 1;
    min-height: 0;
    overflow-y: auto;
  }
  .filter-search-results {
    overflow: unset;
  }
}
@media only screen and (max-width: 767px) {
  .filter-mobile__wrap {
    flex-grow: 1;
  }
  .filter-mobile-section--tags .filter-mobile-section__item {
    width: 50%;
  }
}
.footers {
  border-top: 1px solid #f3f3f3;
}
.footers__container {
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 40px;
}
@media only screen and (max-width: 1199px) {
  .footers__container {
    padding: 0 20px;
  }
}
.footers__wrap {
  padding: 57px 0 54px;
}
.footers__logo {
  width: 207px;
  flex-shrink: 0;
  line-height: 0;
}
.footers__lang {
  font-size: 14px;
  line-height: 20px;
  padding: 6px 13px;
  border-radius: 32px;
  background-color: #f3f3f3;
  color: #000;
  cursor: pointer;
  transition: background-color 0.3s;
}
.footers__lang ins {
  text-decoration: none;
  display: none;
}
@media (hover: hover) {
  .footers__lang:hover {
    background-color: rgba(243,243,243,0.663);
  }
}
.footers__row {
  display: flex;
  flex-flow: row wrap;
  margin-left: -12px;
  margin-right: -12px;
}
.footers__col--nav {
  width: 100%;
  padding-left: 12px;
  padding-right: 12px;
}
.footers__col--lang {
  width: 16.666666666666664%;
  padding-left: 12px;
  padding-right: 12px;
  text-align: right;
}
.footers__bottom {
  margin-top: 130px;
  display: flex;
  flex-flow: row wrap;
  margin-left: -12px;
  margin-right: -12px;
  flex-flow: row nowrap;
}
.footers__bottom-block {
  width: 33.33333333333333%;
  padding-left: 12px;
  padding-right: 12px;
  display: flex;
  align-items: center;
}
.footers__bottom-block--left {
  justify-content: flex-start;
  order: 1;
}
.footers__bottom-block--center {
  justify-content: center;
  order: 2;
}
.footers__bottom-block--right {
  justify-content: flex-end;
  order: 3;
}
.footers__copy {
  display: flex;
  align-items: center;
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
  color: #a9a9a9;
}
.footers__copy svg {
  margin: 0 5px;
}
.footers--promo .footers__wrap {
  display: flex;
  justify-content: space-between;
  padding: 33px 0 54px;
}
.footers-nav {
  display: flex;
  flex-flow: row wrap;
  margin-left: -12px;
  margin-right: -12px;
  flex-flow: row nowrap;
}
.footers-nav__block {
  width: 25%;
  padding-left: 12px;
  padding-right: 12px;
}
.footers-nav__title {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #1d9e49;
  margin-bottom: 16px;
}
.footers-nav__item {
  margin-bottom: 10px;
}
.footers-nav__item:last-child {
  margin-bottom: 0;
}
.footers-nav__link {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #000;
}
@media only screen and (max-width: 1023px) {
  .footers {
    padding-bottom: 56px;
  }
}
@media only screen and (max-width: 767px) {
  .footers__wrap {
    position: relative;
    padding: 8px 0 40px;
  }
  .footers__col--nav,
  .footers__col--lang {
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }
  .footers__bottom {
    text-align: center;
    margin-top: 40px;
    flex-flow: column;
  }
  .footers__bottom-block {
    width: 100%;
    padding: 0 20px;
  }
  .footers__bottom-block--left,
  .footers__bottom-block--right {
    justify-content: center;
  }
  .footers__bottom-block--left {
    order: 3;
  }
  .footers__bottom-block--center {
    order: 1;
    margin-bottom: 30px;
  }
  .footers__bottom-block--right {
    order: 2;
    margin-bottom: 30px;
  }
  .footers__logo {
    width: 184px;
  }
  .footers--promo .footers__wrap {
    display: block;
    text-align: center;
    padding: 33px 0;
  }
  .footers-nav {
    display: block;
    margin: 0 -20px;
    text-align: center;
  }
  .footers-nav__block {
    width: 100%;
    padding: 25px 20px;
    border-bottom: 1px solid #f3f3f3;
  }
}
.form__title {
  font-size: 40px;
  line-height: 45px;
  text-align: center;
  margin: 0 0 50px;
}
.form__field {
  margin-bottom: 20px;
}
.form__field:last-child {
  margin-bottom: 0;
}
.form__field--inline {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #eaeaea;
  position: relative;
  margin: 0;
  transition: border-color 0.3s;
}
.form__field--inline:last-child:not(:only-child) {
  border-bottom: none;
}
.form__field--inline .form__label {
  flex-grow: 1;
  margin-right: 20px;
  font-weight: 500;
  white-space: nowrap;
}
.form__field--inline .form-input {
  flex-shrink: 0;
  width: 190px;
  border-bottom: none;
}
.form__field--inline .form-input--repeat-new-password {
  flex-shrink: 1;
}
.form__field--inline .form-input__input:not([readonly]):focus {
  box-shadow: 0 1px 0 #1d9e49 !important;
}
.form__field--inline .choices {
  width: 190px;
}
.form__field--pills {
  flex-wrap: wrap;
  border-bottom: none;
}
.form__field--password .form-input {
  width: 190px;
}
.form__field--password.is-pass-visible .form-input__icon--closed {
  display: block;
}
.form__field--password.is-pass-visible .form-input__icon--opened {
  display: none;
}
.form__field--password.is-pass-visible ~ .form__field.form__field--password {
  display: none;
}
.form__field--password.is-pass-visible ~ .form__field.form__field--check .form__text[data-type="equal"] {
  display: none;
}
.form__field--check {
  margin-top: 20px;
}
.form__field--check .form__text {
  margin-top: 10px;
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
  color: #000;
}
.form__field--check .form__text:first-child {
  margin-top: 0;
}
.form__field--check .form__text .svg-icon {
  fill: #d0d0d0;
  margin-right: 12px;
}
.form__field--check .form__text.is-active .svg-icon {
  fill: #1d9e49;
}
.form__field--location {
  border-bottom: none;
}
.form__field--captcha {
  margin-top: 33px;
}
.form__field--unbordered {
  border: none;
}
.form__controls--toggle-autorenew {
  opacity: 0;
  max-height: 0;
  transition: opacity 0.3s, max-height 0.3s;
}
.form__controls--toggle-autorenew .form__button:nth-of-type(n+2) {
  margin-left: 15px;
}
.form__controls--toggle-autorenew.is-active {
  opacity: 1;
  max-height: 500px;
}
.form__button.is-disabled {
  background-color: #d0d0d0;
  pointer-events: none;
}
.form__link--icon {
  display: inline-flex;
  align-items: center;
}
.form__link--icon .svg-icon {
  margin-right: 12px;
}
.form__captcha img {
  width: 100%;
  line-height: 0;
}
.form.is-loading {
  pointer-events: none;
}
.form.is-loading .lds-ellipsis {
  display: block;
}
.form.is-loading .form__button::before {
  content: '\00a0';
}
.form.is-loading .form__button-text {
  display: none;
}
.form--feedback .form__message {
  font-size: 12px;
  line-height: 18px;
  color: #f20f0f;
  display: none;
}
.form--feedback .form__message.is-active {
  display: block;
}
.form--feedback .form__button {
  margin-top: 46px;
  width: 100%;
}
.form--feedback .form-success {
  height: 0;
  overflow: hidden;
  text-align: center;
  font-size: 14px;
  line-height: 20px;
}
.form--feedback .form-success__image {
  width: 165px;
  height: auto;
  position: relative;
  margin: 90px auto 25px;
}
.form--feedback .form-success__image::before {
  content: '';
  display: block;
  position: absolute;
  width: 350px;
  height: 325px;
  background: url("../images/confetti.svg") 50% 50% no-repeat;
  background-size: contain;
  left: 50%;
  margin-left: -145px;
  bottom: 40px;
  transform: scale(0);
  transform-origin: center bottom;
  transition: transform 0.3s;
}
.form--feedback .form-success__image img {
  width: 100%;
  position: relative;
}
.form--feedback .form-success__title {
  font-size: 24px;
  line-height: 1.16;
  margin: 0 0 15px;
}
.form--feedback .form-success__control {
  margin-top: 50px;
}
.form--feedback .form-success__button {
  width: 100%;
}
.form--feedback.is-success .form__box {
  display: none;
}
.form--feedback.is-success .form-success {
  height: auto;
  overflow: visible;
}
.form--feedback.is-success .form-success__image::before {
  transform: scale(1);
}
.form--selection {
  display: flex;
  width: 100%;
  align-items: flex-start;
  position: relative;
}
.form--selection .form__field {
  margin: 0;
}
.form--selection .form__field--theme,
.form--selection .form__field--time {
  width: calc((100% - 275px) / 2);
  margin-right: 1px;
}
.form--selection .form__field--theme .select__control {
  border-radius: 26px 0 0 26px;
}
.form--selection .form__field--theme .select.is-open .select__control {
  border-radius: 26px 0 0 0;
}
.form--selection .form__field--controls {
  flex-shrink: 0;
  width: 273px;
}
.form--selection .form__button {
  width: 100%;
  border-radius: 0 26px 26px 0;
  padding: 13px 28px;
}
.form--payment .form__title {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  margin-bottom: 25px;
}
.form--payment .form__message {
  display: none;
  margin-bottom: 20px;
  color: #f00;
}
.form--payment .form__row {
  display: flex;
  flex-flow: row wrap;
  margin-left: -12px;
  margin-right: -12px;
}
.form--payment .form__col {
  width: 50%;
  padding-left: 12px;
  padding-right: 12px;
}
.form--payment .form__field {
  margin: 0;
}
.form--payment .form__field--checkbox,
.form--payment .form__field--controls {
  margin-top: 28px;
}
.form--payment .form__field.is-error .form__input {
  color: #f20f0f;
}
.form--payment .form__field.is-error .form__input::-webkit-input-placeholder {
  color: #f20f0f;
}
.form--payment .form__field.is-error .form__input::-moz-placeholder {
  color: #f20f0f;
  opacity: 1;
}
.form--payment .form__field.is-error .form__input:-moz-placeholder {
  color: #f20f0f;
  opacity: 1;
}
.form--payment .form__field.is-error .form__input:-ms-input-placeholder {
  color: #f20f0f;
}
.form--payment .form__button {
  width: 100%;
}
.form--payment.is-error .form__message {
  display: block;
}
.form--webapp .form__main.is-error .form-input__input {
  color: #f20f0f;
}
.form--webapp .form__main.is-error .form-input__input::-webkit-input-placeholder {
  color: #f20f0f;
}
.form--webapp .form__main.is-error .form-input__input::-moz-placeholder {
  color: #f20f0f;
  opacity: 1;
}
.form--webapp .form__main.is-error .form-input__input:-moz-placeholder {
  color: #f20f0f;
  opacity: 1;
}
.form--webapp .form__main.is-error .form-input__input:-ms-input-placeholder {
  color: #f20f0f;
}
.form--webapp .form__main.is-error .form__message {
  opacity: 1;
  display: block;
}
.form--webapp .form__title {
  font-size: 30px;
  line-height: 35px;
  text-align: left;
}
.form--webapp .form__box {
  padding: 0 20px;
}
.form--webapp .form__button {
  width: 100%;
/*max-width: 335px;*/
}
.form--webapp .form__field {
  margin-bottom: 0;
}
.form--webapp .form__field--controls {
  text-align: center;
}
.form--webapp .form__field--other-controls {
  text-align: center;
}
.form--webapp .form__field--other-controls .form__controls {
  margin-top: 14px;
}
.form--webapp .form__field--other-controls .form__text {
  margin-top: 34px;
}
.form--webapp .form__controls {
  margin-top: 40px;
}
.form--webapp .form__controls-box .form__controls {
  margin-top: 14px;
}
.form--webapp .form__link {
  color: #727373;
}
.form--webapp .form__link--icon {
  color: #1d9e49;
}
.form--webapp .form__top {
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
  margin: 30px 0;
}
.form--webapp .form__text {
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
  margin-top: 16px;
}
.form--webapp .form__text--divide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
  max-width: 335px;
  margin: 20px auto;
}
.form--webapp .form__text--divide span {
  position: relative;
  color: #000;
}
.form--webapp .form__text--divide span::before,
.form--webapp .form__text--divide span::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  height: 1px;
  background-color: #d0d0d0;
  width: 100vw;
}
.form--webapp .form__text--divide span::before {
  right: 100%;
  margin-right: 20px;
}
.form--webapp .form__text--divide span::after {
  left: 100%;
  margin-left: 20px;
}
.form--webapp .form__message {
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
  color: #f20f0f;
  text-align: left;
  opacity: 0;
  transition: opacity 0.3s;
  display: none;
}
.form--webapp .form__message.is-active {
  opacity: 1;
}
.form--webapp .g_id_signin {
  display: flex;
  justify-content: center;
}
.form--webapp .g_id_signin > div {
  flex-grow: 1;
}
.form--webapp.is-create .form__control-box {
  display: none;
}
.form--profile-editor {
  flex-grow: 1;
  display: flex;
  flex-flow: column nowrap;
  overflow: hidden;
}
.form--profile-editor .form__scroll {
  flex-grow: 1;
  overflow: hidden;
  overflow-y: auto;
  padding-bottom: 40px;
  scrollbar-width: thin;
  scrollbar-color: #a9a9a9 transparent;
}
.form--profile-editor .form__scroll::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  border-radius: 6px;
}
.form--profile-editor .form__scroll::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 6px;
}
.form--profile-editor .form__scroll::-webkit-scrollbar-thumb {
  background-color: #a9a9a9;
  border-radius: 6px;
}
.form--profile-editor .form__block {
  padding: 0 45px 20px;
}
.form--profile-editor .form__block-title {
  font-size: 14px;
  line-height: 20px;
  color: #727373;
  margin: 0 0 8px;
}
.form--profile-editor .form__block--location {
  padding-bottom: 0;
}
.form--profile-editor .form__block--location-inner {
  padding-top: 0;
  padding-bottom: 0;
}
.form--profile-editor .form__block--info,
.form--profile-editor .form__block--email,
.form--profile-editor .form__block--phone {
  border-bottom: 20px solid #f3f3f3;
}
.form--profile-editor .form__block--info + .form__block,
.form--profile-editor .form__block--email + .form__block,
.form--profile-editor .form__block--phone + .form__block {
  padding-top: 20px;
}
.form--profile-editor .form__field {
  min-height: 54px;
}
.form--profile-editor .form__field--inline .form-input,
.form--profile-editor .form__field--inline .choices {
  width: 240px;
}
.form--profile-editor .form__field--userpic {
  text-align: center;
}
.form--profile-editor .form__field--location .form-input {
  flex-grow: 1;
  width: auto;
}
.form--profile-editor .form__field--checks .checkbox,
.form--profile-editor .form__field--checks .radio {
  border-bottom: 1px solid #eaeaea;
}
.form--profile-editor .form__field.is-error {
  border-bottom-color: #f20f0f;
}
.form--profile-editor .form__label {
  padding: 15px 0;
}
.form--profile-editor .form__arrow {
  flex-shrink: 0;
  display: flex;
  width: 26px;
  height: 26px;
  color: #727373;
}
.form--profile-editor .form__arrow .svg-icon {
  margin: auto;
}
.form--profile-editor .form__pills {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  margin: 10px 0 -10px -4px;
}
.form--profile-editor .form__pills > div {
  margin: 0 0 10px 4px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  border-radius: 16px;
  display: flex;
  align-items: center;
  background-color: #f3f3f3;
}
.form--profile-editor .form__pills > div > div {
  margin-left: 5px;
}
.form--profile-editor .form__controls {
  flex-shrink: 0;
  padding: 0 45px 40px;
  position: relative;
}
.form--profile-editor .form__controls::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 100%;
  right: 0;
  height: 40px;
  background: linear-gradient(0deg, #fff 0%, rgba(255,255,255,0) 100%);
}
.form--profile-editor .form__controls--inline {
  display: flex;
}
.form--profile-editor .form__controls--inline button:nth-of-type(n+2),
.form--profile-editor .form__controls--inline a:nth-of-type(n+2) {
  margin-left: 30px;
}
.form--profile-editor .form__button {
  display: block;
  width: 100%;
}
.form--profile-editor .form__links {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  font-size: 12px;
  line-height: 14px;
}
.form--profile-editor .form__links button {
  color: #727373;
  margin: 0 20px;
}
.form--nav-mobile .form__field--checks .radio {
  padding: 16px 20px;
  border-bottom: 1px solid #eaeaea;
  position: relative;
}
.form--nav-mobile .form__field--checks .radio__label {
  position: absolute;
  z-index: 10;
}
.form--nav-mobile .form__field--checks .radio--field {
  position: relative;
  padding: 0 20px;
}
.form--nav-mobile .form__field--checks .radio__control {
  width: 100%;
  height: 100%;
}
.form--nav-mobile .form__field--checks .radio__icon {
  position: absolute;
  right: 0;
  top: calc(50% - 9px);
}
.form--nav-mobile .form__button--link {
  position: absolute;
  top: 16px;
  right: 20px;
  padding: 0;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  background-color: transparent;
  color: #1d9e49;
}
.form--send {
  height: 100%;
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.form--send input,
.form--send textarea {
  font-weight: 500;
}
.form--send .form__phone:valid {
  transition: border-color 0.3s;
  border-bottom-color: transparent;
}
.form--send .form__header--send-data {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  width: 100vw;
  margin-top: 23px;
  align-items: center;
  justify-content: center;
}
.form--send .form__header--send-data span {
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
}
.form--send .form__header--send-data button {
  position: absolute;
  left: 23px;
  top: 2px;
  cursor: pointer;
}
.form--send .form__box {
  width: 70%;
  max-width: 810px;
  padding: 80px 20px 20px 20px;
  margin: 0 auto;
}
.form--send .form__message {
  display: none;
  margin-bottom: 20px;
  margin-top: 15px;
  color: #f20f0f;
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
}
.form--send .form__wrapper {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}
.form--send .form__col {
  width: 50%;
}
.form--send .form__col:nth-child(odd) {
  padding-right: 35px;
}
.form--send .form__col:nth-child(even) {
  padding-left: 35px;
}
.form--send .form__controls {
  display: flex;
  flex-direction: column;
}
.form--send .form__button {
  width: 335px;
  margin: 86px auto 0 auto;
}
.form-success {
  height: 0;
  width: 100%;
  overflow: hidden;
  text-align: center;
  font-size: 14px;
  line-height: 20px;
}
.form-success .success__image {
  height: auto;
  position: relative;
  margin: 90px auto 25px;
/*&::before {
			content: '';
			display: block;
			position: absolute;
			width: 750px;
			height: 590px;
			background: url(../images/confetti.svg) 50% 50% no-repeat;
			background-size: contain;
			left: calc(50% - 355px);
			bottom: -25px;
			transform: scale(0);
			transform-origin: center bottom;
			transition: transform $duration;
		}*/
}
.form-success .success__image img {
  width: 100%;
  position: relative;
}
.form-success .success__image svg {
  width: auto;
  height: auto;
}
.form-success__title {
  font-size: 24px;
  line-height: 1.16;
  margin: 0 0 15px;
}
.form-success__control {
  margin-top: 50px;
}
.form-success__button {
  width: 335px;
}
.form-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #eaeaea;
  position: relative;
}
.form-input [data-lastpass-icon-root] {
  display: none;
}
.form-input__input {
  border-bottom: none;
  text-align: right;
  align-items: flex-end;
  padding: 14px;
  transition: box-shadow 0.3s;
}
.form-input__input::-webkit-date-and-time-value {
  text-align: right;
}
.form-input__input--with-unit {
  padding-right: 4px;
}
.form-input__input:placeholder-shown + .form-input__special-value {
  opacity: 0.5;
}
.form-input__special-value {
  margin-left: 4px;
}
.form-input__control {
  display: flex;
  position: absolute;
  top: 50%;
  right: 14px;
  width: 26px;
  height: 26px;
  cursor: pointer;
  transform: translateY(-50%);
}
.form-input__control + .form-input__input {
  padding-right: 44px;
}
.form-input__control--location {
  color: #1d9e49;
  pointer-events: none;
}
.form-input__control--location + .form-input__input {
  padding-right: 55px;
}
.form-input__control--status {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  color: #fff;
}
.form-input__control--status .svg-icon {
  margin: auto;
}
.form-input__control--success {
  cursor: text;
  background-color: #1d9e49;
}
.form-input__control--error {
  background-color: #f20f0f;
}
.form-input__control--button {
  position: static;
  transform: none;
}
.form-input__control .form-input__icon--closed {
  display: none;
}
.form-userpic {
  display: inline-block;
  position: relative;
}
.form-userpic.is-loading .form-userpic__image::before {
  animation-play-state: running;
  opacity: 1;
}
.form-userpic__image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
/*&[data-type="other"] {
			background: url('../images/avatar-other.jpg') 50% 50% no-repeat;
			background-size: cover;
		}

		&[data-type="female"] {
			background: url('../images/avatar-female.jpg') 50% 50% no-repeat;
			background-size: cover;
		}

		&[data-type="male"] {
			background: url('../images/avatar-male.jpg') 50% 50% no-repeat;
			background-size: cover;
		}*/
}
.form-userpic__image::before {
  opacity: 0;
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  border-radius: 50%;
  border: 4px solid transparent;
  border-bottom-color: #1d9e49;
  animation: ava-loading 1.3s linear infinite forwards paused;
  transition: opacity 0.3s;
}
.form-userpic__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #fff;
}
.form-userpic__image img[src=""] {
  opacity: 0;
}
.form-userpic__control {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 3px solid #fff;
  background-color: #1d9e49;
  color: #fff;
  transform: translate(25%, 19%);
  cursor: pointer;
}
.form-userpic__control .svg-icon {
  margin: auto;
}
.form-userpic__input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  opacity: 0;
  cursor: pointer;
}
.form-userpic[data-gender="female"] .form-userpic__image {
  background: url("../images/avatar-female.jpg") 50% 50% no-repeat;
  background-size: cover;
}
.form-userpic[data-gender="male"] .form-userpic__image {
  background: url("../images/avatar-male.jpg") 50% 50% no-repeat;
  background-size: cover;
}
.form-userpic[data-gender="other"] .form-userpic__image {
  background: url("../images/avatar-other.jpg") 50% 50% no-repeat;
  background-size: cover;
}
.is-success .form__main {
  display: none;
}
.is-success .form__box {
  width: 100%;
}
.is-success .form__header {
  display: none;
}
.is-success .form-success {
  height: auto;
  overflow: visible;
}
.is-success .form-success .success__image::before {
  transform: scale(1);
}
.lds-ellipsis {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  margin-left: -40px;
  margin-top: -38px;
  transform: scale(0.8);
}
.lds-ellipsis div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #fff;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}
@media only screen and (min-width: 1024px) {
  .form--webapp .form__link:hover {
    color: #1d9e49;
  }
}
@media only screen and (max-width: 1023px) {
  .form--selection {
    flex-wrap: wrap;
  }
  .form--selection .form__field--theme {
    width: calc(50% - 1px);
  }
  .form--selection .form__field--theme .select__control {
    border-radius: 26px 0 0 26px;
  }
  .form--selection .form__field--theme .select__dropdown {
    top: 52px;
  }
  .form--selection .form__field--theme .select.is-open .select__control {
    border-radius: 26px 0 0 0;
  }
  .form--selection .form__field--time {
    width: 50%;
    margin-right: 0;
  }
  .form--selection .form__field--time .select__control {
    border-radius: 0 26px 26px 0;
  }
  .form--selection .form__field--time .select.is-open .select__control {
    border-radius: 0 26px 0 0;
  }
  .form--selection .form__field--controls {
    flex-shrink: 0;
    width: 100%;
    margin-top: 20px;
  }
  .form--selection .form__button {
    border-radius: 26px;
    width: 100%;
  }
  .form--login .form__field--controls,
  .form--login .form__field--other-controls {
    padding: 0;
  }
}
@media only screen and (max-width: 767px) {
  .form__title {
    font-size: 24px;
    line-height: 28px;
    margin: 0 0 23px;
  }
  .form--feedback .form__button {
    margin-top: 34px;
  }
  .form--feedback .form-success__image {
    margin-top: 150px;
  }
  .form--selection {
    flex-wrap: wrap;
  }
  .form--selection .form__field--theme {
    width: 100%;
    margin: 0 0 1px;
  }
  .form--selection .form__field--theme .select__control {
    border-radius: 20px 20px 0 0;
  }
  .form--selection .form__field--theme .select__dropdown {
    top: 0;
  }
  .form--selection .form__field--theme .select.is-open .select__control {
    border-radius: 20px 20px 0 0;
  }
  .form--selection .form__field--time {
    width: 100%;
  }
  .form--selection .form__field--time .select__control {
    border-radius: 0 0 20px 20px;
  }
  .form--selection .form__field--time .select.is-open .select__control {
    border-radius: 0 0 20px 20px;
  }
  .form--login {
    padding-top: 20px;
  }
  .form--login-pass {
    padding-top: 60px;
  }
  .form--login-pass .form__top {
    position: absolute;
    top: 0;
    margin: 20px 0 16px;
  }
  .form--profile-editor .form__scroll {
    padding-bottom: 0;
  }
  .form--profile-editor .form__block {
    padding: 0 20px !important;
  }
  .form--profile-editor .form__block--userpic {
    padding-bottom: 20px !important;
  }
  .form--profile-editor .form__block--userpic,
  .form--profile-editor .form__block--location {
    border-bottom: 20px solid #f3f3f3;
  }
  .form--profile-editor .form__block--location-inner .is-hidden {
    display: none;
  }
  .form--profile-editor .form__block--health-inner {
    background-color: #fff;
  }
  .form--profile-editor .form__block--health-inner .form__block-title {
    background-color: #f3f3f3;
    margin: 0 -20px;
    padding: 20px 20px 10px;
  }
  .form--profile-editor .form__field--inline .form-input,
  .form--profile-editor .form__field--inline .choices {
    width: 190px;
  }
  .form--profile-editor .form__controls {
    position: static;
    padding: 0 20px 20px;
  }
  .form--profile-editor .form__controls:before {
    display: none;
  }
  .form--profile-editor .form__controls--bg {
    background-color: #f3f3f3;
  }
  .form--profile-editor .form__links {
    margin-top: 20px;
  }
  .form--profile-editor .form__links a {
    margin: 0 8px;
  }
  .form--profile-editor .form__button--link {
    position: absolute;
    top: 22px;
    right: 20px;
    width: auto !important;
    padding: 0;
    font-size: 14px;
    line-height: 22px;
    color: #1d9e49;
    background-color: transparent;
  }
  .form--profile-editor .form__button--link.is-disabled {
    color: #a9a9a9;
  }
  .form--profile-editor .form-input__input {
    padding: 14px 0;
  }
  .form--profile-editor .form-input__control {
    right: 0;
  }
  .form--profile-editor .form-input__control + .form-input__input {
    padding-right: 30px;
  }
  .form--profile-editor .form-input__control--location + .form-input__input {
    padding-right: 40px;
  }
  .form--profile-editor-location .form__controls {
    padding: 20px;
  }
  .form--profile-editor-health .form__controls {
    padding: 0;
  }
  .form--send {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .form--send .form__box {
    width: 100%;
    margin-top: 17px;
  }
  .form--send .form__col {
    width: calc(100% + 20px);
    margin-right: -20px;
  }
  .form--send .form__col:nth-child(odd) {
    padding-right: 0;
  }
  .form--send .form__col:nth-child(even) {
    padding-left: 0;
  }
  .form--send .form__col--address {
    order: 2;
  }
  .form--send .form__col--tel {
    order: 3;
  }
  .form--send .form__col--comment {
    order: 4;
  }
  .form--send .form__controls {
    display: flex;
    flex-direction: column;
  }
  .form--send .form__button {
    margin: 46px auto 0 auto;
    background-color: #1d9e49;
    pointer-events: auto;
  }
}
@media only screen and (max-width: 374px) {
  .form__field--inline .form-input {
    flex-shrink: 1;
    width: auto;
  }
  .form--profile-editor .form__field--inline .form-input {
    flex-shrink: 1;
    width: auto;
  }
}
@-moz-keyframes ava-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes ava-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-o-keyframes ava-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes ava-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-moz-keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@-o-keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@-moz-keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@-webkit-keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@-o-keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@-moz-keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}
@-webkit-keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}
@-o-keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}
.header {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  background-color: #000;
  box-shadow: 0 2px 27px rgba(0,0,0,0.07);
  z-index: 99;
}
.header ~ .main {
  padding-top: 74px;
}
.header__container {
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 40px;
}
@media only screen and (max-width: 1199px) {
  .header__container {
    padding: 0 20px;
  }
}
.header__wrap {
  display: flex;
  align-items: center;
}
.header__logo {
  width: 183px;
  flex-shrink: 0;
  line-height: 0;
  margin-right: 90px;
}
.header__controls {
  margin-left: auto;
  display: flex;
  align-items: center;
}
.header__button {
  display: flex;
  width: 24px;
  height: 24px;
  line-height: 0;
  color: #1d9e49;
  cursor: pointer;
  transition: color 0.3s;
}
.header__button .svg-icon {
  margin: auto;
}
.header__button--logout {
  margin-left: 40px;
}
.header__burger {
  display: none;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background-color: transparent;
  color: #1d9e49;
  padding: 0;
  border: none;
  position: relative;
  z-index: 3;
  cursor: pointer;
  transition: color 0.3s;
}
.header__burger i {
  display: block;
  position: absolute;
  height: 2px;
  width: 16px;
  border-radius: 2px;
  background: currentColor;
  left: 50%;
  margin-left: -8px;
  top: 50%;
  transform: rotate(0deg);
  transition: width 0.3s, margin 0.3s, top 0.3s, transform 0.3s;
}
.header__burger i:nth-child(1) {
  margin-top: -6px;
}
.header__burger i:nth-child(2),
.header__burger i:nth-child(3) {
  margin-top: -1px;
}
.header__burger i:nth-child(4) {
  margin-top: 4px;
}
.header-profile {
  position: relative;
  margin: 27px 0 24px;
  display: flex;
}
.header-profile__button {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #000;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
}
.header-profile__button .svg-icon {
  fill: #1d9e49;
  margin-right: 15px;
  flex-shrink: 0;
}
.header-profile__button-count {
  display: inline-flex;
  position: relative;
  margin-left: 10px;
  font-size: 14px;
  line-height: 20px;
  color: #f20f0f;
}
.header-profile__button-count::before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 50%;
  left: -6px;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background-color: #a9a9a9;
}
.header-profile__popup {
  position: absolute;
  right: 0;
  top: 102%;
  z-index: 100;
  max-width: 375px;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s, opacity 0.3s;
}
@media only screen and (min-width: 1024px) {
  .header__button:hover {
    color: #19863e;
  }
  .header-profile:hover .header-profile__popup,
  .header-profile.is-open .header-profile__popup {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.3s;
  }
  .header-profile__button,
  .header-profile__button-count {
    cursor: pointer;
    transition: opacity 0.3s;
  }
  .header-profile__button:hover,
  .header-profile__button-count:hover {
    opacity: 0.7;
  }
}
@media only screen and (max-width: 1023px) {
  .header {
    z-index: 9;
    box-shadow: none;
    background-color: #000;
    transition: transform 0.3s;
  }
  .header ~ .main {
    padding-top: 70px;
  }
  .header::before {
    display:;
    position:;
    content: "";
    top: 0;
    left: 50%;
    width: 100vw;
    height: 100%;
    border-bottom: 1px solid #f3f3f3;
    transform: translateX(-50%);
    background-color: ;
    backdrop-filter: blur(10px);
    z-index: 2;
  }
  .header__wrap {
    padding: 23px 0;
  }
  .header__logo,
  .header__button {
    position: relative;
    z-index: 3;
  }
  .header__logo {
    margin-right: 30px;
  }
  .header__burger {
    display: block;
    position: relative;
    z-index: 3;
  }
  .header__nav {
    display: none;
  }
  .header__controls {
    margin-left: auto;
  }
  .header__button--logout {
    margin-left: 10px;
  }
  .header-profile {
    display: none;
/*margin: 0;
		z-index: 2;

		&__button {
			.svg-icon {
				margin-right: 5px;
			}

			span {
				display: none;
			}
		}

		&__button-count {
			white-space: nowrap;
		}*/
  }
}
@media only screen and (max-width: 767px) {
  .header__nav {
    display: none;
  }
}
.infoblock {
  color: #000;
}
.infoblock__list {
  display: flex;
  margin-left: -14px;
}
.infoblock__item {
  display: inline-flex;
  vertical-align: top;
  align-items: center;
  white-space: nowrap;
}
.infoblock__item:only-child {
  margin: 0;
}
.infoblock__icon {
  flex-shrink: 0;
  display: flex;
  width: 16px;
  height: 16px;
  color: #a9a9a9;
  margin-right: 6px;
}
.infoblock__icon .svg-icon {
  margin: auto;
}
.infoblock__content {
  margin: 0;
}
.infoblock__content span::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  margin: 0 4px;
  background-color: currentColor;
}
.infoblock__content span b {
  display: none;
  font-weight: normal;
}
.infoblock__content span:first-child::before {
  display: none;
}
.infoblock__content span:last-child b {
  display: inline;
}
.infoblock--card {
  color: #727373;
}
.infoblock--card .infoblock__list {
  flex-wrap: wrap;
  margin-left: -8px;
  margin-bottom: -4px;
}
.infoblock--card .infoblock__item {
  margin: 0 0 4px 8px;
}
.infoblock--card .infoblock__icon {
  margin-right: 4px;
}
.infoblock--card .infoblock__content {
  font-size: 12px;
  line-height: 14px;
}
@media only screen and (max-width: 767px) {
  .infoblock__icon {
    margin-right: 3px;
  }
  .infoblock__content--small {
    font-size: 12px;
    line-height: 14px;
  }
}
@media only screen and (max-width: 374px) {
  .infoblock--card .infoblock__list {
    margin-left: -8px;
  }
  .infoblock--card .infoblock__item {
    margin: 0 0 0 8px;
  }
  .infoblock--card .infoblock__content {
    font-size: 10px;
  }
}
.intro__container {
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 40px;
}
@media only screen and (max-width: 1199px) {
  .intro__container {
    padding: 0 20px;
  }
}
.intro__row {
  display: flex;
  flex-flow: row wrap;
  margin-left: -12px;
  margin-right: -12px;
  align-items: center;
}
.intro__col--main {
  width: 58.333333333333336%;
  padding-left: 12px;
  padding-right: 12px;
}
.intro__col--image {
  width: 41.66666666666667%;
  padding-left: 12px;
  padding-right: 12px;
}
.intro__main {
  position: relative;
  z-index: 2;
}
.intro__title {
  font-size: 40px;
  line-height: 45px;
  margin: 0 0 14px;
}
.intro__title span {
  color: #1d9e49;
}
.intro__text {
  font-size: 20px;
  line-height: 28px;
  max-width: 502px;
}
.intro__controls {
  margin-top: 40px;
}
.intro__image {
  display: block;
  width: 358px;
  height: auto;
  line-height: 0;
  margin: 0 auto;
  position: relative;
}
.intro__image-figure {
  position: absolute;
  display: flex;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.intro__image-figure .svg-icon {
  flex-shrink: 0;
  margin: auto;
  animation: spin 10s linear infinite;
}
.intro__image-figure--first {
  color: #1d9e49;
}
.intro__image-figure--first .svg-icon {
  animation-duration: 40s;
}
.intro__image-figure--second {
  color: #f20f0f;
}
.intro__image-figure--second .svg-icon {
  animation-duration: 60s;
}
.intro__image-main {
  display: block;
  width: 100%;
  height: auto;
  line-height: 0;
  position: relative;
  z-index: 3;
}
.intro--profile {
  background-color: #f4f1ed;
}
@media only screen and (max-width: 1199px) {
  .intro__col--main {
    width: 66.66666666666666%;
    padding-left: 12px;
    padding-right: 12px;
  }
  .intro__col--image {
    width: 33.33333333333333%;
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media only screen and (max-width: 1023px) {
  .intro {
    text-align: center;
  }
  .intro__col--main {
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }
  .intro__col--image {
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }
  .intro__main {
    margin-top: 40px;
  }
  .intro__text {
    margin: 0 auto;
  }
}
@media only screen and (max-width: 767px) {
  .intro__main {
    margin-top: 26px;
  }
  .intro__title {
    font-size: 24px;
    line-height: 28px;
    margin: 0 0 24px;
  }
  .intro__text {
    font-size: 18px;
    line-height: 22px;
  }
  .intro__controls {
    margin-top: 26px;
  }
  .intro__image {
    width: 312px;
  }
  .intro__image-figure {
    transform: scale(0.86, 0.86) translate(-50%, -50%);
  }
}
@-moz-keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-o-keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.lesson {
  padding: 50px 0 30px;
}
.lesson__container {
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 40px;
}
@media only screen and (max-width: 1199px) {
  .lesson__container {
    padding: 0 20px;
  }
}
.lesson__container--challenges {
  background-color: #fff;
}
.lesson__back {
  width: 17%;
  margin: 0 0 30px;
}
.lesson__back--asanas {
  width: 23%;
}
.lesson__back--mobile {
  padding-top: 3px;
}
.lesson__back--challenges {
  width: 23%;
  margin: 0 0 25px;
}
.lesson__title {
  margin: 0 0 16px;
}
.lesson__title--challenges {
  max-width: 65%;
  padding-bottom: 20px;
  white-space: nowrap;
  margin: -50px auto 0 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}
.lesson__subtitle {
  margin: 0 0 14px;
}
.lesson__controls {
  display: flex;
  overflow: hidden;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
}
.lesson__controls::-webkit-scrollbar {
  width: 0px;
  height: 0px;
  border-radius: 0px;
}
.lesson__controls::-webkit-scrollbar-track {
  background: transparent;
}
.lesson__controls::-webkit-scrollbar-thumb {
  background-color: transparent;
  border-radius: 0px;
}
.lesson__box {
  margin-top: 40px;
}
.lesson__button {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  background-color: #f3f3f3;
  color: #000;
  font-size: 14px;
  line-height: 20px;
  padding: 6px 13px;
  border-radius: 16px;
  cursor: pointer;
  margin-right: 4px;
  transition: color 0.3s, background-color 0.3s;
}
.lesson__button .svg-icon {
  flex-shrink: 0;
  margin-right: 7px;
  fill: #1d9e49;
}
.lesson__button.is-active {
  color: #fff !important;
  background-color: #1d9e49;
}
.lesson__button.is-active .svg-icon {
  fill: #fff;
}
.lesson__info {
  margin-top: 20px;
}
.lesson__notes {
  width: 66.6%;
  column-count: 2;
}
.lesson__note {
  position: relative;
  margin-top: 44px;
  padding-left: 23px;
  font-size: 14px;
  line-height: 20px;
  color: #727373;
}
.lesson__note:before {
  display: block;
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background-color: #eaeaea;
}
.lesson__info-block {
  display: none;
}
.lesson__top {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
  background-color: #fff;
}
.lesson__top-mobile {
  display: none;
  position: relative;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  overflow: hidden;
}
.lesson__top-mobile--lesson-detail {
  margin-bottom: 20px;
}
.lesson__top-info {
  display: flex;
  max-width: 90%;
  margin: 0 auto 1rem auto;
  flex-direction: column;
}
.lesson__top-info span {
  max-width: 100%;
  color: #000;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  text-align: center;
  margin: 0 auto 11px;
}
.lesson__top-info--lesson-detail {
  margin-bottom: 0;
}
.lesson__top-info--lesson-detail span {
  margin-bottom: 0;
}
.lesson__top-info span:nth-child(2) {
  margin: 0 auto;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 14px;
  color: #727373;
}
.lesson__timeline {
  position: relative;
  transition: transform 0.3s;
  background-color: #fff;
}
.lesson__timeline:before {
  display: block;
  position: absolute;
  content: "";
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 2px;
  background-color: #f3f3f3;
}
.lesson__timeline-count {
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  color: #a9a9a9;
}
.lesson__timeline-progress {
  display: flex;
  width: 322px;
  margin: 12px auto 0 auto;
  position: relative;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.lesson__timeline-progress:before {
  display: block;
  position: absolute;
  content: "";
  z-index: 2;
  left: 0;
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  background-color: #f3f3f3;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: background-color 0.3s;
}
.lesson__timeline-progress svg {
  fill: #f3f3f3;
  transition: fill 0.3s;
}
.lesson__timeline-progress.is-start:before {
  background-color: #1d9e49;
}
.lesson__timeline-progress.is-finished svg {
  fill: #1d9e49;
}
.lesson__timeline-bar {
  width: 293px;
  height: 6px;
  border-radius: 3px;
  background-color: #f3f3f3;
}
.lesson__timeline-bar-green {
  position: relative;
  z-index: 1;
  width: 0;
  height: 6px;
  border-radius: 3px;
  background-color: #1d9e49;
  opacity: 0;
  transition: opacity 0.3s;
}
.lesson__timeline-bar-green svg {
  position: absolute;
  top: -4px;
  right: 0px;
}
.lesson__timeline-bar-green.is-start {
  display: flex;
  opacity: 1;
}
.lesson__timeline-days {
  display: flex;
  margin-top: 20px;
  overflow-x: scroll;
}
.lesson__timeline-days::-webkit-scrollbar {
  height: 6px;
}
.lesson__timeline-days::-webkit-scrollbar-thumb {
  position: relative;
  background-color: #1d9e49;
  border-radius: 5px;
  visibility: hidden;
}
@media (hover: hover) {
  .lesson__timeline-days:hover::-webkit-scrollbar-thumb {
    visibility: visible;
  }
}
.lesson__timeline-days li:first-child {
  margin-left: auto;
}
.lesson__timeline-days li:last-child {
  margin-right: auto;
}
.lesson__timeline-day {
  display: flex;
  position: relative;
  flex-direction: column;
  width: auto;
  height: 64px;
  padding: 5px;
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  color: #a9a9a9;
  cursor: pointer;
}
.lesson__timeline-day svg {
  transform: scale(0);
  transition: transform 0.3s;
  position: absolute;
  left: calc(50% - 7px);
}
.lesson__timeline-day:before {
  display: block;
  position: absolute;
  content: "";
  top: 10px;
  left: calc(50% - 2px);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #a9a9a9;
}
.lesson__timeline-day.is-active {
  color: #000;
}
.lesson__timeline-day.is-active:before {
  background-color: #000;
}
.lesson__timeline-day.is-active:after {
  display: block;
  position: absolute;
  content: "";
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 3px;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  background-color: #1d9e49;
}
.lesson__timeline-day--current svg {
  transform: scale(1);
}
.lesson__timeline-day--finished:before {
  display: block;
  position: absolute;
  content: "";
  top: 5px;
  left: 40%;
  width: 8px;
  height: 5px;
  border: 2px solid #1d9e49;
  border-radius: 0;
  border-top: none;
  border-right: none;
  background-color: transparent;
  transform: rotate(-40deg);
}
.lesson__timeline-day--finished.is-active:before {
  background-color: transparent;
}
.lesson__timeline-info {
  padding-bottom: 12px;
  margin-top: auto;
}
.lesson-scheme {
  padding: 35px 0 0;
}
.lesson-scheme__list {
  display: grid;
  grid-template-rows: 170px;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  grid-auto-rows: 170px;
  grid-gap: 35px 46px;
}
.lesson-scheme__item {
  position: relative;
}
.lesson-scheme__item::before {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100px;
  width: 100vw;
  height: 1px;
  background-color: #eaeaea;
}
.lesson-scheme__item::after {
  content: '';
  position: absolute;
  top: 100px;
  width: 100vw;
  height: 11px;
  margin-top: -5px;
  background-color: #fff;
  border: 2px solid #eaeaea;
  box-sizing: border-box;
  z-index: 1;
  display: none;
}
.lesson-scheme__item:first-child::before {
  left: 0;
  transform: translateX(0%);
}
.lesson-scheme__item:first-child::after {
  display: block;
  left: -100vw;
  border-top: none;
  border-bottom: none;
  border-left: none;
}
.lesson-scheme__item:last-child::after {
  display: block;
  left: 100%;
  border-top: none;
  border-bottom: none;
  border-right: none;
}
.lesson-scheme-card {
  position: relative;
  text-align: center;
  width: 100px;
  height: 170px;
  margin: 0 auto;
}
.lesson-scheme-card__image {
  line-height: 0;
}
.lesson-scheme-card__title {
  margin-top: 7px;
  font-size: 10px;
  line-height: 9px;
  font-weight: 500;
  color: #000;
  text-align: center;
  display: block;
  display: -webkit-box;
  height: 36px;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lesson-scheme-card__note {
  position: absolute;
  top: 100%;
  font-size: 12px;
  line-height: 14px;
  font-weight: 500;
  color: #fff;
  width: 100%;
  left: 0;
}
.lesson-scheme-card__note-list {
  display: inline-block;
  max-width: 100%;
  background-color: #a9a9a9;
  padding: 3px 8px;
  border-radius: 10px;
}
.lesson-scheme-card__note-item {
  margin: 0 2px;
}
.lesson-list__item {
  margin-bottom: 35px;
}
.lesson-list__item:last-child {
  margin-bottom: 0;
}
.lesson-list--asana {
  position: relative;
}
.lesson-list--asana .lesson-list__title {
  position: absolute;
  bottom: 100%;
  left: 0;
  margin-bottom: 28px;
}
.lesson-list--asana .lesson-list__item {
  margin-bottom: 20px;
}
.lesson-list--asana .lesson-list__item:last-child {
  margin-bottom: 0;
}
.lesson-list--asana .lesson-list__text {
  margin-top: 54px;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  max-width: 240px;
}
.lesson-card {
  display: block;
  color: #000;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 2px 27px rgba(0,0,0,0.072);
}
.lesson-card__image {
  width: 100%;
  padding-bottom: 56.25%;
  position: relative;
  overflow: hidden;
}
.lesson-card__image > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.lesson-card__main {
  padding: 10px 10px 12px;
}
.lesson-card__title {
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin: 0 0 8px;
}
.lesson-card__infoblock {
  color: #727373;
}
@media only screen and (min-width: 1024px) {
  .lesson__button:hover {
    color: #1d9e49;
  }
  .lesson-card--sm {
    display: flex;
    border-radius: 0;
    box-shadow: none;
  }
  .lesson-card--sm .lesson-card__image {
    flex-shrink: 0;
    width: 170px;
    height: 93px;
    padding-bottom: 0;
    border-radius: 12px;
  }
  .lesson-card--sm .lesson-card__main {
    flex-grow: 1;
    padding: 0;
    margin-left: 24px;
    overflow: hidden;
  }
  .lesson-card--sm .lesson-card__title {
    font-size: 20px;
    line-height: 24px;
    white-space: normal;
    margin: 0 0 8px;
  }
}
@media only screen and (max-width: 1440px) {
  .lesson__controls {
    margin: 0 -120px;
    padding: 0 120px;
  }
}
@media only screen and (max-width: 1199px) {
  .lesson__controls {
    margin: 0 -80px;
    padding: 0 80px;
  }
  .lesson__notes {
    width: 80%;
  }
  .lesson__timeline {
    margin-bottom: 20px;
  }
  .lesson__timeline:before {
    left: -20px;
    width: calc(100% + 40px);
  }
  .lesson__timeline-days::-webkit-scrollbar {
    display: none;
  }
  .lesson__timeline-day.is-active:after {
    bottom: 7px;
  }
}
@media only screen and (max-width: 1023px) {
  .lesson {
    padding: 20px 0 0 0;
  }
  .lesson__title--challenges {
    max-width: 55%;
  }
  .lesson__controls {
    margin: 0 -40px;
    padding: 0 40px 20px 40px;
  }
  .lesson__controls--center {
    justify-content: center;
  }
  .lesson__note {
    display: none;
  }
  .lesson__notes {
    width: 100%;
  }
  .lesson__info-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
  }
  .lesson__info-block::before {
    display: block;
    position: absolute;
    content: "";
    top: 0;
    left: -20px;
    height: 1px;
    width: calc(100% + 40px);
    background-color: #f3f3f3;
  }
  .lesson__info-block--small {
    position: relative;
    justify-content: flex-start;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .lesson__info-block--small:after {
    display: block;
    position: absolute;
    content: "";
    left: -20px;
    bottom: 0;
    width: calc(100% + 40px);
    height: 1px;
    background-color: #eaeaea;
  }
  .lesson-scheme__list {
    grid-gap: 35px 24px;
  }
  .lesson-list__list {
    display: flex;
    flex-wrap: nowrap;
    margin: 0 -40px;
    padding: 0 40px;
    overflow: hidden;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: transparent transparent;
  }
  .lesson-list__list::-webkit-scrollbar {
    width: 0px;
    height: 0px;
    border-radius: 0px;
  }
  .lesson-list__list::-webkit-scrollbar-track {
    background: transparent;
  }
  .lesson-list__list::-webkit-scrollbar-thumb {
    background-color: transparent;
    border-radius: 0px;
  }
  .lesson-list__item {
    flex-shrink: 0;
    width: 354px;
    padding-right: 20px;
    margin-bottom: 40px !important;
  }
  .lesson-list--asana .lesson-list {
    position: static;
  }
  .lesson-list--asana .lesson-list__title {
    position: static;
  }
  .lesson-list--asana .lesson-list__text {
    margin-top: 0;
  }
  .lesson-card__title br {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .lesson__title {
    margin: 0 10px 0 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition: max-height 0.3s;
  }
  .lesson__title--challenges {
    white-space: normal;
    height: auto;
    max-height: 100px;
  }
  .lesson__back {
    margin: 0;
  }
  .lesson__back--asanas {
    width: auto;
    margin: 0;
  }
  .lesson__top-mobile {
    display: flex;
  }
  .lesson__top-mobile--challenges {
    align-items: flex-start;
    background-color: #fff;
    margin-bottom: 0;
    overflow: hidden;
    z-index: 5;
  }
  .lesson__top {
    display: none;
  }
  .lesson__controls {
    margin: 0 -20px;
    padding: 0 20px 20px 20px;
  }
  .lesson__notes {
    column-count: unset;
  }
  .lesson__back {
    width: auto;
  }
  .lesson__info-block--small {
    gap: 8px;
    font-size: 12px;
    line-height: 14px;
  }
  .lesson__container {
    transition: padding 0.3s, transform 0.3s;
  }
  .lesson__container.is-scroll {
    position: fixed;
    z-index: 8;
    padding-top: 20px;
    height: 118px;
    top: 71px;
    left: 0;
    background-color: #fff;
    overflow: hidden;
  }
  .lesson__timeline.is-scroll {
    transform: translateY(-35px);
  }
  .lesson__timeline.is-scroll .lesson__timeline-progress,
  .lesson__timeline.is-scroll .lesson__timeline-days,
  .lesson__timeline.is-scroll .lesson__timeline-day {
    margin: 0 auto;
  }
  .section[data-element="resultRenderChallenge"] {
    padding: 0;
  }
  .section[data-element="resultRenderChallenge"].is-scroll {
    padding: 190px 0 0 0;
  }
  .lesson__container.is-scroll .lesson__title {
    white-space: nowrap;
  }
  .lesson__container.is-scroll .lesson__title--challenges {
    max-height: 44px;
  }
  .lesson__container.is-scroll .lesson__top-mobile--lesson-detail {
    margin-bottom: 0;
  }
  .lesson-scheme__list {
    grid-gap: 35px 12px;
  }
  .lesson-list__item {
    width: 339px;
    padding-right: 5px;
  }
}
@media only screen and (max-width: 374px) {
  .lesson__top {
    flex-direction: row;
    align-items: center;
  }
  .lesson__top span {
    display: none;
  }
  .lesson-list__item {
    width: 310px;
    padding-right: 5px;
  }
  .lesson-card__title {
    font-size: 16px;
  }
}
.lesson-detail {
  padding: 0 0 180px;
}
.lesson-detail__container {
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 40px;
}
@media only screen and (max-width: 1199px) {
  .lesson-detail__container {
    padding: 0 20px;
  }
}
.lesson-detail__wrap {
  display: flex;
}
.lesson-detail__main {
  flex-grow: 1;
}
.lesson-detail__video {
  margin-bottom: 47px;
}
.lesson-detail__side {
  flex-shrink: 0;
  width: 370px;
  margin-left: 100px;
}
.lesson-detail__content .content p {
  hyphens: auto;
}
.lesson-detail__content--challenge {
  margin-top: 20px;
}
.lesson-detail-note {
  display: flex;
  align-items: center;
  font-weight: 500;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  padding: 15px 30px 15px 18px;
  margin: 40px 0;
}
.lesson-detail-note:first-child {
  margin-top: 0;
}
.lesson-detail-note:last-child {
  margin-bottom: 0;
}
.lesson-detail-note__icon {
  flex-shrink: 0;
  line-height: 0;
  width: 32px;
  height: 32px;
  color: #1d9e49;
  margin-right: 16px;
}
.lesson-detail-note__icon .svg-icon {
  width: 100%;
  height: auto;
  fill: currentColor;
}
.lesson-detail-block {
  margin-bottom: 70px;
}
.lesson-detail-block:last-child {
  margin-bottom: 0;
}
.lesson-detail-block__title {
  margin: 0 0 10px;
}
.lesson-detail-block--img {
  border-radius: 40px;
  background-color: #f3f3f3;
  width: 100%;
  height: 340px;
  position: relative;
  -webkit-box-shadow: 0px 9px 18px 1px rgba(0,0,0,0.18);
  -moz-box-shadow: 0px 9px 18px 1px rgba(0,0,0,0.18);
  box-shadow: 0px 9px 18px 1px rgba(0,0,0,0.18);
  overflow: hidden;
}
.lesson-detail-block--img svg {
  position: absolute;
  top: 31px;
  left: 34px;
}
.lesson-detail-block--img img {
  position: absolute;
  bottom: 15%;
  right: 50%;
  transform: translate(50%, 0%);
  width: 277px;
  height: 277px;
}
.lesson-detail-block--img-small {
  position: absolute;
  bottom: -20px;
  left: 3%;
  width: 107px;
  height: 107px;
  background-color: #fff;
  border-radius: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  z-index: 6;
  pointer-events: none;
  opacity: 0;
}
.lesson-detail-block--img-small img {
  width: 66px;
  height: 66px;
}
.lesson-detail-info__item:not(:last-child) {
  border-bottom: 1px solid #eaeaea;
}
.lesson-detail-info__item {
  display: flex;
  width: 100%;
  font-size: 16px;
  line-height: 22px;
  min-height: 46px;
  padding: 12px 0;
}
.lesson-detail-info__item--type1 {
  color: #1d9e49;
}
.lesson-detail-info__item--type2 {
  color: #e955d6;
}
.lesson-detail-info__item--type3 {
  color: #00deff;
}
.lesson-detail-info__item--type4 {
  color: #ffc000;
}
.lesson-detail-info__item--type5 {
  color: #ea1b5b;
}
.lesson-detail-info__item--type6 {
  color: #8760fb;
}
.lesson-detail-info__item--reward {
  align-items: center;
}
.lesson-detail-info__item--popular,
.lesson-detail-info__item--rarely {
  align-items: center;
}
.lesson-detail-info__title {
  font-weight: 500;
  width: 160px;
  flex-shrink: 0;
}
.lesson-detail-info__main {
  flex-grow: 1;
  text-align: right;
}
.lesson-detail-info__icon {
  position: relative;
  line-height: 0;
  color: #727373;
  margin-right: 12px;
}
.lesson-detail-info__icon .svg-icon--main {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.lesson-detail-info__text {
  color: #000;
  margin-right: 12px;
  font-weight: 500;
}
.lesson-detail-info__number {
  color: #000;
  background-color: #f3f3f3;
  border-radius: 18px;
  padding: 6px 13px;
  margin-left: auto;
  font-size: 14px;
  line-height: 20px;
  white-space: nowrap;
}
.lesson-detail-card {
  background-color: #f3f3f3;
  overflow: hidden;
  border-radius: 40px;
  min-height: 296px;
  position: relative;
}
.lesson-detail-card__image {
  line-height: 0;
  width: 277px;
  margin: -62px auto 0;
}
.lesson-detail-card__image img {
  width: 100%;
  height: auto;
}
.lesson-detail-card__logo {
  position: absolute;
  left: 34px;
  top: 31px;
}
.lesson-detail-asana__content {
  margin-top: 45px;
  margin-bottom: 51px;
}
.lesson-detail-asana__content--favorable {
  margin-right: 50px;
}
.lesson-detail-asana__content--favorable,
.lesson-detail-asana__content--contraindications {
  margin-top: 30px;
  margin-bottom: 0;
  width: 45%;
}
.lesson-detail-asana__effects {
  display: flex;
  justify-content: space-between;
}
.lesson-detail-asana__content-text {
  display: flex;
  align-items: baseline;
}
.lesson-detail-asana__wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lesson-detail-asana__text-marker {
  width: 20px;
  justify-content: center;
  align-items: center;
  display: flex;
  background-color: #1d9e49;
  padding: 10px;
  height: 20px;
  border-radius: 50px;
  font-size: 12px;
  color: #fff;
  margin-right: 10px;
}
.lesson-detail-asana__item {
  position: relative;
  padding-left: 20px;
}
.lesson-detail-asana__item:before {
  display: block;
  position: absolute;
  content: "";
  left: 0;
  top: 0.5em;
  transform: translateY(0);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #f20f0f;
}
.lesson-detail-asana__item--favorable:before {
  background-color: #1d9e49;
}
@media only screen and (max-width: 1199px) {
  .lesson-detail__side {
    width: 317px;
    margin-left: 50px;
  }
}
@media only screen and (max-width: 1023px) {
  .lesson-detail__wrap {
    display: block;
  }
  .lesson-detail__side {
    width: 100%;
    margin: 60px 0 0;
  }
  .lesson-detail-block--img {
    display: none;
  }
  .lesson-detail-block--img-small {
    opacity: 1;
  }
  .lesson-detail-asana__effects {
    flex-direction: column;
  }
  .lesson-detail-asana__content {
    margin-top: 35px;
    margin-bottom: 45px;
  }
  .lesson-detail-asana__content--favorable,
  .lesson-detail-asana__content--contraindications {
    margin-right: 0;
    margin-bottom: 0;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .lesson-detail {
    padding-bottom: 40px;
  }
  .lesson-detail--card {
    min-width: 339px;
    margin: 0 20px;
    margin-bottom: 50px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 2px 27px 0px rgba(0,0,0,0.07);
  }
  .lesson-detail__side {
    margin: 43px 0 0;
  }
  .lesson-detail__video {
    margin-bottom: 33px;
  }
  .lesson-detail-note {
    padding: 15px 20px 15px 18px;
    font-size: 12px;
    line-height: 18px;
  }
  .lesson-detail-block {
    margin-bottom: 50px;
  }
  .lesson-detail-block:last-child {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 374px) {
  .lesson-detail-block--img-small {
    width: 70px;
    height: 70px;
    bottom: -5px;
  }
  .lesson-detail-block--img-small img {
    width: 43px;
    height: 43px;
  }
}
bodys.is-scheme .lesson-detail {
  display: none;
}
bodys.is-scheme .lesson {
  display: none;
}
bodys.is-scheme .banner {
  display: none;
}
@media only screen and (max-width: 1023px) {
  bodys.is-scheme .footers {
    display: none;
  }
}
bodys.is-scheme .scheme {
  display: flex;
}
.login {
  height: calc(var(--vh, 1vh) * 100);
}
.login__container {
  height: 100%;
  width: 100%;
  overflow-y: auto;
}
.login__row {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  min-height: 100%;
}
.login__col {
  width: 50%;
  flex-grow: 1;
}
.login__col--main {
  display: flex;
  padding: 88px 0 60px;
}
.login__col--image {
  position: relative;
  overflow: hidden;
}
.login__slider {
  position: absolute !important;
  width: 100%;
  height: 100%;
}
.login__slider .tns-item {
  flex-shrink: 0;
}
.login__form {
  width: 100%;
  max-width: 395px;
  margin: auto;
}
.login-heading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}
.login-heading__container {
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 40px;
  max-width: 100%;
}
@media only screen and (max-width: 1199px) {
  .login-heading__container {
    padding: 0 20px;
  }
}
.login-heading__wrap {
  padding: 44px 0 26px;
  display: flex;
  align-items: center;
}
.login-heading__logo {
  width: 207px;
  flex-shrink: 0;
  line-height: 0;
}
.login-heading__close {
  display: flex;
  width: 32px;
  height: 32px;
  border-radius: 70px;
  position: fixed;
  top: 38px;
  right: 45px;
  z-index: 100;
  color: #000;
  background-color: #f3f3f3;
  cursor: pointer;
  transition: color 0.3s;
}
.login-heading__close .svg-icon {
  margin: auto;
  width: 14px;
}
@media only screen and (max-width: 1365px) {
  .login-heading__container {
    padding: 0 40px;
  }
}
@media only screen and (max-width: 1199px) {
  .login-heading__container {
    padding: 0 40px;
  }
}
@media only screen and (max-width: 1023px) {
  .login-heading__container {
    padding: 0 20px;
  }
  .login-heading__close {
    right: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .login {
    padding: 70px 0 0;
  }
  .login__col {
    width: 100%;
  }
  .login__col--main {
    padding: 20px 0 40px;
  }
  .login__col--image {
    display: none;
  }
  .login--pass .login__container {
    position: relative;
  }
  .login--pass .login__row {
    align-items: stretch;
  }
  .login-heading {
    z-index: 9;
    border-bottom: 1px solid #f3f3f3;
  }
  .login-heading__wrap {
    padding: 24px 0 21px;
  }
  .login-heading__logo {
    position: relative;
    width: 184px;
    z-index: 3;
  }
  .login-heading__close {
    display: none;
  }
}
.nav__list {
  display: flex;
}
.nav__item {
  margin-right: 24px;
}
.nav__item:last-child {
  margin-right: 0;
}
.nav__link {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  line-height: 20px;
  padding: 25px 10px 22px;
  border-bottom: 3px solid transparent;
  color: #000;
}
.nav__link .svg-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-right: 15px;
  color: #1d9e49;
}
.nav__link .svg-icon--challenges {
  stroke: #1d9e49;
}
.nav__link.is-active {
  border-bottom-color: #1d9e49;
}
.mobile-menu {
  position: relative;
  z-index: 10;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3px 0 6px 0;
  background-color: #fff;
  border-top: 1px solid #f3f3f3;
  transition: transform 0.4s;
  display: none;
}
@media only screen and (max-width: 1199px) {
  .nav__item {
    margin-right: 10px;
  }
  .nav__item:last-child {
    margin-right: 0;
  }
  .nav__link {
    padding: 25px 10px 22px 5px;
  }
}
@media only screen and (max-width: 1023px) {
  .nav__list {
    justify-content: center;
  }
  .nav__item {
    width: 25%;
    max-width: 100px;
    margin-right: 5px;
    text-align: center;
  }
  .nav__item:last-child {
    margin-right: 0;
  }
  .nav__link {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    line-height: 1.2;
    color: #727373;
    border-bottom: none;
    padding: 0;
    transition: color 0.3s;
  }
  .nav__link .svg-icon {
    color: currentColor;
    margin: 0 auto 3px;
  }
  .nav__link .svg-icon--challenges {
    stroke: #727373;
  }
  .nav__link.is-active {
    color: #1d9e49;
  }
  .nav__link.is-active .svg-icon--challenges {
    stroke: #1d9e49;
  }
  .mobile-menu {
    display: block;
    padding-top: 3px;
    padding-bottom: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .mobile-menu {
    padding-bottom: 6px;
  }
}
@media only screen and (max-width: 767px) and (orientation: landscape) {
  .mobile-menu {
    padding-top: 3px;
    padding-bottom: 16px;
  }
}
.nav-mobile {
  display: none;
  background-color: #f3f3f3;
  padding: 70px 0 0;
  text-align: left;
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
  transform: translateY(0);
  transition: transform 0.3s;
}
.nav-mobile__row {
  display: flex;
  font-weight: 500;
}
.nav-mobile__text {
  margin-top: 8px;
  font-size: 14px;
  padding-left: 34px;
}
.nav-mobile__text-link {
  margin-top: 16px;
  font-size: 16px;
  padding-left: 34px;
}
.nav-mobile__wrap {
  position: relative;
  height: 100%;
}
.nav-mobile__section {
  display: flex;
  flex-flow: column nowrap;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #f3f3f3;
  left: 100%;
  z-index: 99;
  transition: transform 0.3s;
}
.nav-mobile__section--main {
  position: relative;
  left: auto;
  z-index: 8;
}
.nav-mobile__section.is-active {
  transform: translateX(-100%);
}
.nav-mobile__scroll {
  flex-grow: 1;
  overflow-y: auto;
}
.nav-mobile__block {
  background-color: #fff;
  margin-bottom: 20px;
}
.nav-mobile__block.is-disabled {
  pointer-events: none;
}
.nav-mobile__block.is-disabled .nav-mobile-link {
  color: #aaa;
}
.nav-mobile__block.is-disabled svg {
  fill: #aaa;
}
.nav-mobile__block.is-disabled .checkbox__icon--fake {
  background-color: #aaa;
}
.nav-mobile__item {
  border-bottom: 1px solid #eaeaea;
}
.nav-mobile__item--profile-popup {
  border-bottom: unset;
}
.nav-mobile__item--enter {
  padding: 14px 20px;
  border-top: 1px solid #eaeaea;
  display: flex;
  flex-direction: column;
}
.nav-mobile__item--profile-bordered {
  position: relative;
}
.nav-mobile__item--profile-bordered::before {
  display: block;
  position: absolute;
  content: "";
  bottom: 0;
  left: 54px;
  width: 100%;
  height: 1px;
  background-color: #eaeaea;
}
.nav-mobile__footers {
  padding: 0 20px 125px;
  text-align: center;
}
.nav-mobile__logo {
  line-height: 0;
  margin: 0 0 20px;
}
.nav-mobile__control {
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  color: #000;
}
.nav-mobile__head {
  position: relative;
  background-color: #fff;
  margin-bottom: 30px;
  padding: 16px 100px;
}
.nav-mobile__back {
  display: flex;
  width: 24px;
  height: 24px;
  color: #1d9e49;
  position: absolute;
  left: 15px;
  top: 50%;
  margin-top: -12px;
}
.nav-mobile__back .svg-icon {
  margin: auto;
}
.nav-mobile__title {
  text-align: center;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
}
.nav-mobile-link {
  cursor: pointer;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 15px 15px 15px 20px;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  color: #000;
}
.nav-mobile-link--ad {
  padding: 0 15px 0 20px;
}
.nav-mobile-link__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  line-height: 0;
  margin-right: 10px;
  color: #1d9e49;
}
.nav-mobile-link__icon .svg-icon {
  width: 100%;
  height: auto;
}
.nav-mobile-link__control {
  margin-left: auto;
  display: flex;
  align-items: center;
}
.nav-mobile-link__value {
  font-weight: 400;
}
.nav-mobile-link__title {
  transition: color 0.3s;
}
.nav-mobile-link__arrow {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  line-height: 0;
  margin-left: 5px;
  color: #727373;
}
.nav-mobile-link__arrow .svg-icon {
  width: 100%;
  height: auto;
}
.nav-mobile-link:hover .nav-mobile-link__title {
  color: #1d9e49;
}
.nav-mobile-profile {
  padding: 20px 20px;
  display: flex;
  align-items: center;
  width: 100%;
  font-size: 14px;
  line-height: 20px;
  min-height: 160px;
}
.nav-mobile-profile__image {
  flex-shrink: 0;
  width: 94px;
  height: 94px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  margin-right: 24px;
}
.nav-mobile-profile__image[data-gender="other"] {
  background: url("../images/avatar-other.jpg") 50% 50% no-repeat;
  background-size: cover;
}
.nav-mobile-profile__image[data-gender="female"] {
  background: url("../images/avatar-female.jpg") 50% 50% no-repeat;
  background-size: cover;
}
.nav-mobile-profile__image[data-gender="male"] {
  background: url("../images/avatar-male.jpg") 50% 50% no-repeat;
  background-size: cover;
}
.nav-mobile-profile__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #fff;
}
.nav-mobile-profile__image img[src=""] {
  opacity: 0;
}
.nav-mobile-profile__main {
  flex-grow: 1;
}
.nav-mobile-profile__title {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
}
.nav-mobile-profile__text {
  margin: 4px 0 0;
}
.nav-mobile-profile__link {
  display: inline-block;
  font-weight: 500;
  margin-top: 8px;
}
.nav-mobile-catalog {
  width: 100%;
  padding: 12px 0;
  overflow-x: auto;
}
.nav-mobile-catalog__list {
  display: flex;
  padding: 0 25px;
}
.nav-mobile-catalog__item {
  flex-shrink: 0;
  padding-right: 15px;
}
.nav-mobile-catalog__item:last-child {
  padding-right: 25px;
}
.nav-mobile-catalog-card {
  display: block;
  width: 115px;
  font-size: 10px;
  line-height: 12px;
  font-weight: 500;
  color: #727373;
}
.nav-mobile-catalog-card__image {
  display: block;
  width: 115px;
  height: 62px;
  border-radius: 6px;
  background-color: #f3f3f3;
  overflow: hidden;
  margin: 0 0 7px;
}
.nav-mobile-catalog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nav-mobile-catalog-card__title {
  display: block;
  color: #000;
  font-size: 12px;
  line-height: 14px;
  margin: 0 0 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nav-mobile-catalog-card__text {
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.nav-mobile-catalog-card__text span {
  display: inline-block;
}
.nav-mobile-catalog-card__text span::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background-color: currentColor;
  margin: 0 4px;
}
.nav-mobile-catalog-card__text span:last-child::after {
  display: none;
}
@media only screen and (max-width: 1023px) {
  .nav-mobile {
    display: block;
  }
}
.not-found {
  padding: 110px 0 140px;
}
.not-found__container {
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 40px;
}
@media only screen and (max-width: 1199px) {
  .not-found__container {
    padding: 0 20px;
  }
}
.not-found__wrap {
  text-align: center;
}
.not-found__image {
  margin: 0 auto 27px;
  width: 181px;
  height: auto;
  line-height: 0;
}
.not-found__image--error {
  width: auto;
  margin-bottom: 47px;
}
.not-found__title {
  font-size: 40px;
  line-height: 45px;
  font-weight: 600;
  margin: 0 0 10px;
}
.not-found__title--err {
  color: #f20f0f;
}
.not-found__text {
  font-size: 18px;
  line-height: 26px;
  color: #a9a9a9;
  margin: 0 0 55px;
}
.not-found__text--err {
  color: #000;
  max-width: 441px;
  margin: 0 auto 28px auto;
}
@media only screen and (max-width: 767px) {
  .not-found {
    padding: 50px 0 100px;
  }
  .not-found__title {
    font-size: 24px;
    line-height: 28px;
    margin: 0 0 10px;
  }
  .not-found__text {
    margin: 0 0 30px;
  }
  .not-found__text--err {
    margin: 0 auto 28px auto;
  }
}
.popup {
  display: flex;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  overflow-y: auto;
  background-color: rgba(0,0,0,0.5);
  z-index: 99;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s, opacity 0.3s;
}
.popup__shadow-box {
  display: none;
  left: 0;
  z-index: 7;
  height: 50px;
  width: 100%;
  position: absolute;
  bottom: 80px;
  background: linear-gradient(0deg, #fff 43%, rgba(255,255,255,0) 100%);
}
.popup__mobile-button {
  position: relative;
  z-index: 8;
  width: 335px;
  min-height: 52px;
  margin: 0 auto;
  padding: 13px 84px 13px 84px;
  display: none;
}
.popup__scroll-block {
  height: 100%;
  padding-bottom: 70px;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
}
.popup__scroll-block::-webkit-scrollbar {
  width: 0px;
  height: 0px;
  border-radius: 0px;
}
.popup__scroll-block::-webkit-scrollbar-track {
  background: transparent;
}
.popup__scroll-block::-webkit-scrollbar-thumb {
  background-color: transparent;
  border-radius: 0px;
}
.popup__box {
  background-color: #fff;
  width: 100%;
  max-width: 774px;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 100%;
  transform: translateX(0);
  transition: transform 0.3s;
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
}
.popup__box--profile {
  max-width: 375px;
}
.popup__box--scheme-info {
  max-width: 650px;
}
.popup__box::-webkit-scrollbar {
  width: 0px;
  height: 0px;
  border-radius: 0px;
}
.popup__box::-webkit-scrollbar-track {
  background: transparent;
}
.popup__box::-webkit-scrollbar-thumb {
  background-color: transparent;
  border-radius: 0px;
}
.popup__main--profile {
  margin-top: -30px;
}
.popup__controls {
  display: flex;
  align-items: center;
  width: calc(100% - 50px);
  margin: 25px auto 0 auto;
  justify-content: space-between;
}
.popup__link--to-profile {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
  bottom: 0;
  right: 0;
  height: 53px;
  width: 375px;
  background-color: #1d9e49;
  color: #fff;
  transition: background-color 0.3s;
}
.popup__logout {
  transition: opacity 0.3s;
}
.popup__close {
  display: flex;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f4f1ed;
  position: absolute;
  top: 40px;
  right: 40px;
  color: #000;
  cursor: pointer;
  z-index: 99;
  transition: color 0.3s;
}
.popup__close--simple {
  position: relative;
  top: unset;
  right: unset;
  margin-right: -15px;
  background-color: transparent;
}
.popup__close--simple .svg-icon {
  fill: #1d9e49;
  transition: fill 0.3s;
}
.popup__close--simple:hover .svg-icon {
  fill: #19863e;
}
.popup__close--mobile-button {
  position: absolute;
  bottom: 0;
  width: 335px;
  padding: 13px 84px 13px 84px;
  border-radius: 30px;
  background-color: #1d9e49;
  color: #fff;
  text-align: center;
}
.popup__close .svg-icon {
  margin: auto;
}
.popup__header {
  height: 69px;
  background-color: #fff;
  padding: 28px 20px 25px;
  display: none;
}
.popup__logo {
  width: 184px;
  line-height: 0;
}
.popup.is-open {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s;
}
.popup.is-open .popup__box {
  transform: translateX(-100%);
  transition: transform 0.3s;
}
.popup--buy {
  overflow-y: hidden;
}
.popup--buy .popup__close {
  width: 32px;
  height: 32px;
  top: 50px;
  left: 30px;
  color: #fff;
  background-color: rgba(0,0,0,0.3);
}
.popup--buy .popup__box {
  max-width: 100%;
}
.popup--payment .popup__box {
  position: relative;
  margin: auto;
  width: 100%;
  height: auto;
  max-width: 375px;
  transform: none;
  border-radius: 20px;
  padding: 36px 20px 23px;
  left: 0;
}
.popup--payment.is-open .popup__box {
  transform: none;
}
.popup--full-screen {
  z-index: 101;
}
.popup--full-screen .popup__box {
  max-width: unset;
  left: 0;
  width: 100%;
  transform: none !important;
}
.popup--full-screen .popup__main {
  height: 100%;
  display: flex;
}
.popup--profile-editor {
  height: auto;
  bottom: 0;
}
.popup--profile-editor .popup__box {
  max-width: 648px;
}
.popup--profile-editor .popup__main {
  height: 100%;
}
.popup--profile-editor .popup__close {
  z-index: 99;
}
.popup--happy-end {
  z-index: 97;
  pointer-events: none;
  transition: background-color 0.3s;
  visibility: visible !important;
  opacity: 1 !important;
  background-color: rgba(0,0,0,0);
  min-height: 100vh;
}
.popup--happy-end .popup__box {
  pointer-events: auto;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  overflow-y: auto;
  background-color: #f3f3f3;
  padding: 140px 0 100px;
  transform: translateY(-100%);
  transition: transform cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
}
.popup--happy-end .popup__close {
  top: 140px;
  background-color: #fff;
}
.popup--happy-end .popup__wrap {
  margin: 0 auto;
  max-width: 1024px;
  padding: 0 40px;
}
.popup--happy-end .popup__header {
  display: block;
  height: unset;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin-bottom: 62px;
}
.popup--happy-end .popup__title {
  margin: 0;
}
.popup--happy-end .popup__share,
.popup--happy-end .popup__back {
  color: #1d9e49;
  display: none;
}
.popup--happy-end .popup__list {
  display: flex;
  flex-flow: row wrap;
  margin: -24px -12px 0;
}
.popup--happy-end .popup__item {
  width: 50%;
  padding: 0 12px;
  margin-top: 24px;
}
.popup--happy-end .popup__item:nth-child(1) {
  width: 100%;
}
.popup--happy-end .popup__item--short:nth-child(1) {
  width: 50%;
  display: flex;
  flex-direction: column;
}
.popup--happy-end.is-open {
  background-color: rgba(0,0,0,0.5);
  transition: background-color 0.3s;
}
.popup--happy-end.is-open .popup__box {
  transform: translateY(0%);
}
.popup--tips {
  z-index: 99;
}
.popup--tips .popup__tips {
  position: relative;
  width: 375px;
  height: max-content;
  padding: 45px 20px 20px 20px;
  margin: auto;
  background-color: #fff;
  border-radius: 25px;
}
.popup--tips .popup__tips-caption {
  text-align: center;
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 34px;
}
.popup--tips .popup__tips-list {
  display: flex;
  flex-wrap: wrap;
}
.popup--tips .popup__tips-list li {
  width: 50%;
  flex-shrink: 0;
  margin-bottom: 20px;
}
.popup--tips .popup__tips-button {
  display: flex;
  width: 155px;
  height: 52px;
  padding: 13px;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  gap: 10px;
  flex-shrink: 0;
  background-color: #f3f3f3;
  color: #000;
}
.popup--tips.is-open {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s;
}
.popup--reward {
  height: calc(100% - 70px);
  transform: translateY(71px);
  background-color: #fff;
  z-index: 98;
}
.popup--reward .popup__reward {
  position: absolute;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background-color: #fff;
  padding: 22px 20px 20px 20px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  transition: transform 0.3s;
}
.popup--reward .popup__reward-wrap {
  padding: 40px 40px 30px;
  text-align: center;
}
.popup--reward .popup__reward-content {
  display: flex;
  justify-content: center;
  gap: 10%;
  flex-wrap: wrap;
}
.popup--reward .popup__reward-main {
  margin: auto 0;
}
.popup--reward .popup__reward-image {
  position: relative;
  margin: 0 auto 40px;
  width: 180px;
  height: auto;
  line-height: 0;
  z-index: 2;
  filter: grayscale(100%);
  opacity: 0.5;
}
.popup--reward .popup__reward-image.is-active {
  filter: grayscale(0);
  opacity: 1;
}
.popup--reward .popup__reward-text {
  display: inline-block;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 15px;
}
.popup--reward .popup__reward-date {
  display: block;
  color: #727373;
}
.popup--reward .popup__reward-control {
  display: flex;
  justify-content: center;
  padding-bottom: 20px;
  z-index: 3;
  position: relative;
}
.popup--reward .popup__reward .success__animation {
  display: none;
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -20%);
  z-index: 1;
}
.popup--reward .popup__reward .success__animation.is-active {
  display: block;
}
.popup--send-data {
  z-index: 101;
}
.popup--send-data .popup__box {
  display: flex;
  justify-content: space-around;
  position: relative;
  z-index: 10;
  height: 100vh;
  max-width: 100vw;
  left: 0;
}
.popup--send-data .popup__send {
  display: flex;
  height: 100%;
  flex-direction: column;
}
.popup--send-data.is-open .popup__box {
  transform: none;
}
.popup-banner {
  background-color: #fff;
  overflow: hidden;
}
.popup-banner__main {
  position: relative;
  z-index: 2;
}
.popup-banner__title {
  margin: 0 0 24px;
}
.popup-banner__title span {
  color: #1d9e49;
}
.popup-banner__text {
  font-size: 20px;
  line-height: 28px;
  max-width: 502px;
  margin: 0 auto;
}
.popup-banner__controls {
  margin-top: 40px;
}
.popup-banner--type1 .popup-banner__image {
  display: block;
  width: 358px;
  height: auto;
  line-height: 0;
  margin: 60px auto -195px;
  position: relative;
}
.popup-banner--type1 .popup-banner__image-figure {
  position: absolute;
  display: flex;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.popup-banner--type1 .popup-banner__image-figure .svg-icon {
  flex-shrink: 0;
  margin: auto;
  animation: spin 10s linear infinite;
}
.popup-banner--type1 .popup-banner__image-figure--first {
  color: #1d9e49;
}
.popup-banner--type1 .popup-banner__image-figure--first .svg-icon {
  animation-duration: 40s;
}
.popup-banner--type1 .popup-banner__image-figure--second {
  color: #f20f0f;
}
.popup-banner--type1 .popup-banner__image-figure--second .svg-icon {
  animation-duration: 60s;
}
.popup-banner--type1 .popup-banner__image-main {
  display: block;
  width: 100%;
  height: auto;
  line-height: 0;
  position: relative;
  z-index: 3;
}
.popup-banner--type1 .popup-banner__main {
  padding: 60px 40px;
  position: relative;
  background-color: #fff;
  z-index: 5;
  text-align: center;
}
.popup-banner--type1 .popup-banner__main::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  height: 1px;
  width: 500px;
  background-color: #d0d0d0;
  transform: translateX(-50%);
}
.popup-banner--type2 .popup-banner__image {
  width: 100%;
  height: auto;
  line-height: 0;
}
.popup-banner--type2 .popup-banner__main {
  padding: 50px 40px;
  text-align: center;
}
.popup-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 50px 60px 40px;
  height: 100%;
}
.popup-card__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.popup-card__main {
  margin-right: auto;
}
.popup-card__logo {
  margin-bottom: 20px;
}
.popup-card__title {
  font-size: 24px;
  line-height: 1.42;
  margin-bottom: 30px;
}
.popup-card__title b {
  font-weight: 500;
}
.popup-card__title--short {
  text-align: center;
}
.popup-card__subtitle {
  font-size: 18px;
  line-height: 1.2;
  margin: 0 0 15px;
}
.popup-card__subtitle b {
  font-size: 20px;
  font-weight: 500;
}
.popup-card__text {
  padding: 0 15px;
  color: #727373;
}
.popup-card__top {
  margin: 0 0 30px;
}
.popup-card__button {
  margin-top: 38px;
  padding: 13px 64px;
}
.popup-card__link {
  font-size: 18px;
  line-height: 26px;
  display: none;
}
.popup-card--statistics {
  padding: 25px 44px 25px 64px;
  min-height: 462px;
}
.popup-card--statistics .popup-card__main {
  width: 100%;
  padding-right: 50%;
  position: relative;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  height: 100%;
}
.popup-card--statistics .popup-card__main--short {
  padding-right: 0;
  justify-content: flex-start;
}
.popup-card--statistics .popup-card__logo {
  order: -1;
}
.popup-card--statistics .popup-card__logo--short {
  order: unset;
  margin: 0 auto;
}
.popup-card--statistics .popup-card__chart {
  position: absolute;
  right: 0;
  top: 0;
}
.popup-card--statistics .popup-card__chart--short {
  position: relative;
}
.popup-card--statistics .popup-card__control {
  display: inline-flex;
  flex-flow: column nowrap;
}
.popup-card--statistics .popup-card__button {
  max-width: 227px;
  display: none;
}
.popup-card--statistics .popup-card__button--tips {
  display: inline-block;
  max-width: 335px;
  padding: 13px 34px;
}
.popup-card--statistics .infoblock__list--short {
  justify-content: center;
}
.popup-card--preview {
  text-align: center;
}
.popup-card--preview .popup-card__button {
  width: 100%;
}
.popup-card-video {
  position: relative;
  display: block;
  transition: opacity 0.3s;
}
.popup-card-video__box {
  width: 100%;
  padding-bottom: 56.25%;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}
.popup-card-video__box > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.popup-card-video__button {
  background-color: transparent;
  padding: 0;
  border: none;
  font-family: 'Gilroy', Arial, Helvetica, sans-serif;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 101;
  transition: color 0.3s, opacity 0.3s;
  cursor: pointer;
}
.popup-card-video__button span {
  background-color: #f20f0f;
  border-radius: 50%;
  display: flex;
  width: 52px;
  height: 52px;
}
.popup-card-video__button span .svg-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}
@media only screen and (min-width: 1024px) {
  .popup__close:hover {
    color: #1d9e49;
  }
  .popup__logout:hover {
    opacity: 0.8;
  }
  .popup__link:hover {
    color: #fff;
    background-color: #19863e;
  }
}
@media only screen and (max-width: 1023px) {
  .popup--reward {
    height: 100%;
    transform: translate(0);
  }
  .popup--reward .popup__reward-content {
    flex-direction: column;
  }
  .popup--happy-end .popup__box {
    padding: 50px 0 18px;
  }
  .popup--happy-end .popup__wrap {
    padding: 0;
  }
  .popup--happy-end .popup__item--short:nth-child(1) {
    width: 100%;
    display: block;
  }
  .popup--happy-end .popup__list {
    margin: 0;
  }
  .popup--happy-end .popup__item {
    width: 100%;
    padding: 0;
  }
  .popup--happy-end .popup__item:last-child {
    margin-bottom: 60px;
  }
  .popup--happy-end .popup__title {
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
  }
  .popup--happy-end.is-no-subscription .popup__item:nth-child(1) {
    width: 100%;
  }
  .popup--happy-end.is-no-subscription .popup-card--statistics {
    padding: 25px 20px 34px;
  }
  .popup--happy-end.is-no-subscription .popup-card--preview {
    padding: 40px 20px;
  }
  .popup-card {
    padding: 40px 20px;
    border-radius: 0;
    margin: 0 auto;
  }
  .popup-card__link {
    display: inline-block;
    margin-top: 26px;
  }
  .popup-card__link--tips {
    max-width: 100%;
  }
  .popup-card__main {
    max-width: 460px;
    margin: 0 auto;
  }
  .popup-card__title {
    font-size: 18px;
    line-height: 26px;
    margin: 0 0 36px;
  }
  .popup-card__info {
    margin-bottom: 6px;
    text-align: center;
  }
  .popup-card__button {
    margin-top: 30px;
  }
  .popup-card--statistics {
    padding: 25px 20px 34px;
  }
  .popup-card--statistics .popup-card__logo {
    order: 0;
    margin: 6px 0 0;
  }
  .popup-card--statistics .popup-card__chart {
    position: static;
  }
  .popup-card--statistics .popup-card__main {
    padding-right: 0;
    text-align: center;
  }
  .popup-card--statistics .popup-card__button {
    max-width: 335px;
    display: inline-block;
  }
  .popup-card--statistics .popup-card__button--tips {
    margin: 30px auto 0 auto;
  }
  .popup-card--statistics .infoblock__list {
    justify-content: center;
  }
}
@media only screen and (max-width: 767px) {
  .popup__box {
    display: flex;
    flex-flow: column nowrap;
  }
  .popup__box--scheme-info {
    top: auto;
    left: 0;
    bottom: 0;
    transform: translate(0, 100%);
    max-width: unset;
    width: 100%;
    height: 63%;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    padding-bottom: 30px;
    padding-top: 50px;
  }
  .popup__box--scheme-info::before {
    left: 0;
    z-index: 6;
    height: 50px;
    width: 100%;
    pointer-events: none;
    display: block;
    position: absolute;
    content: "";
    top: 30px;
    background: linear-gradient(180deg, #fff 44%, rgba(255,255,255,0) 100%);
  }
  .popup__shadow-box {
    display: block;
  }
  .popup__header {
    display: block;
    flex-shrink: 0;
  }
  .popup__main {
    flex-grow: 1;
  }
  .popup__close {
    background-color: transparent;
    width: 24px;
    height: 24px;
    top: 24px;
    right: 20px;
    color: #1d9e49;
  }
  .popup__close--hiding {
    display: none;
  }
  .popup__mobile-button {
    display: inline-flex;
  }
  .popup--profile-editor {
    top: 70px;
    background-color: transparent;
    z-index: 8;
  }
  .popup--profile-editor .popup__close {
    display: none;
  }
  .popup--profile-editor .popup__box {
    width: 100%;
    max-width: 100%;
  }
  .popup--profile-editor .form__controls--inline {
    flex-direction: column;
  }
  .popup--profile-editor .form__controls--inline button:nth-of-type(n+2) {
    margin-left: 0;
    margin-top: 20px;
  }
  .popup--happy-end .popup__box {
    padding: 0 0 18px;
  }
  .popup--happy-end .popup__wrap {
    width: 100%;
    padding: 0;
  }
  .popup--happy-end .popup__header {
    padding: 25px 20px 11px;
    justify-content: space-between;
    margin: 0;
    background-color: #fff;
  }
  .popup--happy-end .popup__share,
  .popup--happy-end .popup__back {
    display: block;
  }
  .popup--happy-end .popup__close {
    display: none;
  }
  .popup--tips .popup__tips {
    position: absolute;
    bottom: 0;
    transform: translateY(100%);
    width: 100%;
    padding: 45px 0px 20px 0px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    transition: transform 0.3s;
  }
  .popup--tips .popup__tips-content {
    width: 375px;
    margin: 0 auto;
  }
  .popup.is-open .popup__box--scheme-info {
    transform: translate(0, 0);
  }
  .popup.is-open .popup__tips {
    transform: translateY(0);
  }
  .popup-banner {
    min-height: 100%;
  }
  .popup-banner__text {
    font-size: 18px;
    line-height: 22px;
  }
  .popup-banner--type1 {
    display: flex;
    flex-flow: column nowrap;
  }
  .popup-banner--type1 .popup-banner__image {
    display: block;
    width: 358px;
    line-height: 0;
    margin: auto auto -185px;
    position: relative;
  }
  .popup-banner--type1 .popup-banner__image-main {
    display: block;
    width: 100%;
    height: auto;
    line-height: 0;
    position: relative;
    z-index: 3;
  }
  .popup-banner--type1 .popup-banner__main {
    order: -1;
    padding: 68px 20px 10px;
    margin-top: 0;
  }
  .popup-banner--type1 .popup-banner__main::before {
    display: none;
  }
  .popup-banner--type2 .popup-banner__main {
    padding: 40px 20px;
    position: relative;
    background-color: #fff;
    z-index: 5;
    text-align: center;
  }
  .popup-card {
    height: unset;
    min-height: unset;
  }
}
@media only screen and (max-width: 374px) {
  .popup-banner--type1 .popup-banner__image {
    width: 312px;
  }
  .popup-banner--type1 .popup-banner__image-figure {
    transform: scale(0.86, 0.86) translate(-50%, -50%);
  }
}
@-moz-keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-o-keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.preloader {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 99;
  display: flex;
  text-align: center;
  padding: 150px 20px;
}
.preloader__wrap {
  margin: 0 auto;
}
.preloader__image {
  width: 176px;
  height: 176px;
  position: relative;
  margin: 0 auto 23px;
}
.preloader__image-main {
  display: flex;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #fff;
  position: relative;
}
.preloader__image-main img {
  flex-shrink: 0;
  margin: auto;
}
.preloader__image-figure {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: spin 10s linear infinite;
}
.preloader__image-figure--first {
  animation-duration: 15s;
}
.preloader__image-figure--first::before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 15px;
  top: 15px;
  background-color: #f20f0f;
  border-radius: 50%;
}
.preloader__image-figure--second {
  animation-duration: 20s;
}
.preloader__image-figure--second::before {
  content: '';
  display: block;
  position: absolute;
  width: 196px;
  height: 196px;
  left: -7px;
  top: -16px;
  background-color: #1d9e49;
  border-radius: 50%;
}
.preloader__title {
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  margin: 0 0 20px;
}
.preloader__progress {
  margin: 0 auto;
  display: block;
  width: 105px;
  height: 3px;
  background-color: #dadad4;
  position: relative;
}
.preloader__progress span {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 62%;
  background-color: #1d9e49;
}
.preloader--new {
  position: fixed;
  background-color: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.preloader--new .preloader__wrap {
  width: 100%;
  max-width: 30%;
  margin: 0 auto;
}
.preloader--new .preloader__lottie {
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  text-align: center;
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  .preloader {
    padding: 110px 0;
  }
  .preloader--new .preloader__wrap {
    max-width: 45%;
  }
}
@-moz-keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-o-keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.profile {
  position: relative;
  z-index: 4;
}
.profile__container {
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 40px;
}
@media only screen and (max-width: 1199px) {
  .profile__container {
    padding: 0 20px;
  }
}
.profile-info__wrap {
  padding-bottom: 56px;
}
.profile-info__top {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 3;
  padding-top: 45px;
}
.profile-info__email {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
}
.profile-info__email-icon {
  flex-shrink: 0;
  display: inline-flex;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  color: #fff;
  background-color: #f20f0f;
  margin-left: 7px;
}
.profile-info__email-icon .svg-icon {
  margin: auto;
}
.profile-info__email[data-target="confirm"] {
  cursor: pointer;
}
.profile-info__back {
  position: absolute;
  top: calc(100% + 34px);
  left: 0;
  display: none;
}
.profile-info__main {
  text-align: center;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  margin-top: -44px;
}
.profile-info__main.is-hidden {
  display: none;
}
.profile-info__avatar {
  position: relative;
  margin-bottom: 26px;
}
.profile-info__avatar i {
  position: absolute;
  bottom: 0;
  left: 50%;
  font-size: 10px;
  line-height: 12px;
  font-weight: 500;
  font-style: normal;
  color: #fff;
  padding: 2px 8px;
  background-color: #1d9e49;
  border-radius: 8px;
  transform: translate(-50%, 50%);
  white-space: nowrap;
}
.profile-info__avatar-image {
  width: 155px;
  height: 155px;
  line-height: 0;
  border-radius: 50%;
  background: url("../images/avatar-female.jpg") 50% 50% no-repeat;
  background-size: cover;
  overflow: hidden;
  margin: 0 auto;
}
.profile-info__avatar-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #fff;
}
.profile-info__avatar-image img[src=""] {
  opacity: 0;
}
.profile-info__avatar-image[data-gender ~="male"] {
  background: url("../images/avatar-male.jpg") 50% 50% no-repeat !important;
  background-size: cover;
}
.profile-info__avatar-image[data-gender ~="other"] {
  background: url("../images/avatar-other.jpg") 50% 50% no-repeat !important;
  background-size: cover;
}
.profile-info__controls {
  display: flex;
}
.profile-info__control {
  margin-top: 10px;
}
.profile-info__button {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  background-color: #f3f3f3;
  color: #000;
  font-size: 14px;
  line-height: 20px;
  padding: 6px 13px;
  border-radius: 16px;
  cursor: pointer;
  transition: color 0.3s, background-color 0.3s;
}
.profile-info__button .svg-icon {
  flex-shrink: 0;
  margin-right: 7px;
  fill: #1d9e49;
}
.profile-info__name {
  font-size: 24px;
  line-height: 26px;
  font-weight: 500;
  margin-bottom: 10px;
}
.profile-info__progress {
  margin: 0 auto 7px;
  display: block;
  width: 105px;
  height: 3px;
  background-color: #dadad4;
  position: relative;
  border-radius: 1.5px;
}
.profile-info__progress span {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 62%;
  background-color: #1d9e49;
  border-radius: 1.5px;
}
.profile-info__label {
  font-size: 12px;
  line-height: 14px;
  font-weight: 500;
  padding: 0 15px;
}
.profile-info__list {
  display: flex;
  margin-top: 26px;
  justify-content: center;
  width: 100%;
}
.profile-info__item {
  width: 25%;
  max-width: 95px;
  align-self: center;
}
.profile-info__value {
  font-size: 30px;
  line-height: 30px;
  color: #1d9e49;
  margin-bottom: 3px;
}
.profile-info--sm .profile-info__avatar {
  margin-bottom: 23px;
}
.profile-info--sm .profile-info__avatar-image {
  width: 94px;
  height: 94px;
}
.profile-info--sm .profile-info__list {
  margin-top: 16px;
}
.profile-info--sm .profile-info__control {
  font-weight: 500;
}
.profile-info--empty .profile-info__label {
  width: 100%;
  max-width: 300px;
  font-size: 14px;
  line-height: 20px;
}
.profile-info--empty .profile-info__control {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  margin-top: 14px;
}
.profile-info-subscription {
  flex-shrink: 0;
  display: inline-flex;
  background-color: #1d9e49;
  color: #fff !important;
  font-size: 14px;
  line-height: 20px;
  border-radius: 16px;
  cursor: pointer;
  overflow: hidden;
  transition: color 0.3s, background-color 0.3s;
  margin-left: 15px;
}
.profile-info-subscription__left {
  padding: 6px 13px;
  transition: background-color 0.3s;
}
.profile-info-subscription__left--red {
  background-color: #f20f0f;
  border-right: 1px solid #fff;
}
.profile-info-subscription__main {
  display: inline-flex;
  align-items: center;
  padding: 6px 13px;
}
.profile-info-subscription__main svg {
  margin-right: 10px;
}
.profile-content__item {
  padding-top: 180px;
  margin-top: -100px;
}
.profile-content__item .profile-history__row:nth-of-type(n+10) {
  display: none;
}
.profile-content__item.is-history-open .profile-content__button--history span:nth-of-type(1) {
  display: none;
}
.profile-content__item.is-history-open .profile-content__button--history span:nth-of-type(2) {
  display: block;
}
.profile-content__item.is-history-open .profile-history__row:nth-of-type(n+5) {
  display: flex;
}
.profile-content__title {
  font-size: 24px;
  line-height: 28px;
  font-weight: 500;
  margin: 0 0 36px;
}
.profile-content__button {
  background-color: #f3f3f3;
  border-radius: 12px;
  width: 100%;
  padding: 16px 50px 15px;
  text-align: center;
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
  margin-top: 10px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}
.profile-content__button--history {
  color: #000;
}
.profile-content__button--history span:nth-of-type(2) {
  display: none;
}
.profile-content__bottom {
  position: relative;
  z-index: 1;
}
.profile-stat__list {
  display: flex;
  flex-flow: row wrap;
  margin-left: -12px;
  margin-right: -12px;
}
.profile-stat__item {
  width: 100%;
  padding-left: 12px;
  padding-right: 12px;
  display: flex;
  flex-flow: column nowrap;
}
.profile-stat__item:nth-child(1) {
  width: 442px;
  border-right: 1px solid #eaeaea;
}
.profile-stat__item:nth-child(2) {
  width: calc(100% - 442px);
}
.profile-stat__box {
  position: relative;
  text-align: center;
  padding: 40px 0 50px;
}
.profile-stat__box--tabs {
  height: 450px;
}
.profile-stat__box .preloader-lottie--stat {
  position: absolute;
  height: 250px;
  inset: auto;
  bottom: 0;
}
.profile-stat__title {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  margin: 0 0 12px;
}
.profile-stat__description {
  font-size: 16px;
  line-height: 22px;
}
.profile-stat__description span {
  font-weight: 700;
}
.profile-stat__description span.success-item {
  color: #1d9e49;
}
.profile-stat__description span.error {
  color: #f20f0f;
}
.profile-stat__image {
  width: 100%;
  max-width: 195px;
  height: auto;
  line-height: 0;
  margin: 30px auto 0;
}
.profile-content-nav {
  height: 60px;
}
.profile-content-nav__box {
  height: 60px;
  background-color: #fff;
  box-shadow: 0 27px 27px rgba(0,0,0,0.03); /*0 2px 27px alpha($c1, 0.0718969)*/
  z-index: 98;
  overflow: hidden;
  transition: border-color 0.3s;
}
.profile-content-nav__container {
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 40px;
  overflow-x: auto;
  scroll-behavior: smooth;
  height: calc(100% + 20px);
  margin-bottom: -20px;
}
@media only screen and (max-width: 1199px) {
  .profile-content-nav__container {
    padding: 0 20px;
  }
}
.profile-content-nav__wrap {
  display: flex;
}
.profile-content-nav__list {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  transition: margin 0.3s;
}
.profile-content-nav__item {
  margin: 0 26px 0 0;
  flex-shrink: 0;
}
.profile-content-nav__item:last-child {
  margin-right: 0;
}
.profile-content-nav__link {
  color: #000;
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  padding: 18px 20px 15px 0;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  cursor: pointer;
}
.profile-content-nav__link .svg-icon {
  fill: none;
  stroke: #1d9e49;
  stroke-width: 2;
  margin-right: 12px;
  flex-shrink: 0;
}
.profile-content-nav__link sup {
  margin-left: 6px;
  color: #a9a9a9;
}
.profile-content-nav__link.is-active {
  border-bottom-color: #1d9e49;
}
.profile-content-nav.is-fixed .profile-content-nav__box {
  height: 68px;
  top: 74px;
  left: 0;
  right: 0;
  position: relative;
}
.profile-content-nav.is-fixed .profile-content-nav__list {
  margin-right: 0;
}
.profile-content-nav.is-fixed .profile-content-nav__link {
  font-size: 14px;
  line-height: 20px;
  padding: 24px 0 21px;
}
.profile-content-nav.is-fixed .profile-content-nav__link .svg-icon {
  display: none;
}
.profile-content-nav.is-fixed .profile-content-nav-user {
  opacity: 1;
  width: auto;
  margin-right: auto;
  transition: opacity 0.3s;
}
.profile-content-nav:not(.is-fixed) .profile-content-nav__box {
  padding-right: 0 !important;
}
.profile-content-nav-user {
  display: flex;
  align-items: center;
  opacity: 0;
  width: 0;
  white-space: nowrap;
}
.profile-content-nav-user__image {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 18px;
}
.profile-content-nav-user__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.profile-awards__category {
  overflow: hidden;
  font-size: 14px;
  line-height: 20px;
  color: #727373;
}
.profile-awards__category span {
  position: relative;
  padding-right: 16px;
}
.profile-awards__category span::before,
.profile-awards__category span::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  height: 1px;
  width: 100vw;
  background-color: #a9a9a9;
}
.profile-awards__item {
  flex-grow: 1;
  cursor: pointer;
}
.profile-awards__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  grid-gap: 40px 22px;
  padding: 40px 0 60px;
}
.profile-awards--challenges {
  margin-bottom: 60px;
}
.profile-awards--challenges .profile-awards__item:nth-of-type(n+13) {
  display: none;
}
.profile-awards--challenges.is-rewards-open .profile-content__button--history span:nth-of-type(1) {
  display: none;
}
.profile-awards--challenges.is-rewards-open .profile-content__button--history span:nth-of-type(2) {
  display: block;
}
.profile-awards--challenges.is-rewards-open .profile-awards__item:nth-of-type(n+5) {
  display: block;
}
.profile-awards-card {
  text-align: center;
  max-width: 110px;
  margin: 0 auto;
  position: relative;
}
.profile-awards-card::before {
  content: '';
  display: block;
  position: absolute;
  bottom: 100%;
  width: 100%;
  height: 25px;
}
.profile-awards-card__image {
  width: 70px;
  height: 70px;
  line-height: 0;
  position: relative;
  margin: 10px auto;
  filter: grayscale(100%);
  opacity: 0.5;
}
.profile-awards-card__count {
  position: absolute;
  right: 0;
  top: -7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 14px;
  font-weight: 500;
  font-style: normal;
  color: #fff;
  padding: 5px;
  background-color: #f20f0f;
  width: 24px;
  height: 24px;
  border-radius: 50%;
}
.profile-awards-card__count:empty {
  display: none;
}
.profile-awards-card__count--popup {
  top: 10px;
  right: 20px;
}
.profile-awards-card__title {
  font-size: 14px;
  line-height: 20px;
  margin: 0 0 9px;
}
.profile-awards-card__date {
  font-size: 12px;
  line-height: 14px;
  color: #727373;
}
.profile-awards-card.is-active .profile-awards-card__image {
  filter: grayscale(0);
  opacity: 1;
}
.profile-awards-popup {
  position: absolute;
  bottom: 100%;
  left: 50%;
  width: 192px;
  border-radius: 5px;
  box-shadow: 0px 2px 27px rgba(0,0,0,0.072);
  transform: translateX(-50%);
  margin-bottom: 23px;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s, opacity 0.3s;
}
.profile-awards-popup::before {
  content: '';
  width: 34px;
  height: 34px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  left: 50%;
  bottom: -5px;
  transform: translateX(-50%) rotate(45deg);
}
.profile-awards-popup__main {
  width: 100%;
  background-color: #fff;
  border-radius: 5px;
  position: relative;
  padding: 30px 20px;
  font-size: 14px;
  line-height: 20px;
}
.profile-history {
  font-size: 16px;
  line-height: 22px;
  overflow: hidden;
}
.profile-history__row {
  display: flex;
  flex-flow: row wrap;
  margin-left: -12px;
  margin-right: -12px;
  flex-wrap: nowrap;
  position: relative;
  align-items: center;
  border-top: 1px solid #eaeaea;
  padding: 17px 15px 17px 5px;
  min-height: 79px;
  transition: background-color 0.3s;
  z-index: 1;
}
.profile-history__col:nth-child(1) {
  width: 16.666666666666664%;
  padding-left: 12px;
  padding-right: 12px;
  font-size: 13px;
  line-height: 16px;
  font-weight: 500;
  color: #727373;
  flex-shrink: 0;
  min-width: 165px;
}
.profile-history__col:nth-child(2) {
  width: 33.33333333333333%;
  padding-left: 12px;
  padding-right: 12px;
  color: #000;
}
.profile-history__col:nth-child(3) {
  width: 33.33333333333333%;
  padding-left: 12px;
  padding-right: 12px;
  color: rgba(0,0,0,0.34);
  text-align: center;
}
.profile-history__col:nth-last-child(-n+2) {
  width: 8.333333333333332%;
  padding-left: 12px;
  padding-right: 12px;
  text-align: right;
  min-width: 150px;
  flex-shrink: 0;
  color: #000;
}
.profile-history__col.is-done .profile-history__image {
  display: block;
  position: absolute;
  right: 23px;
  top: 50%;
  transform: translateY(-50%);
}
.profile-history__infoblock {
  display: inline-flex;
  vertical-align: top;
  align-items: center;
  white-space: nowrap;
  margin: 0;
  color: #1d9e49;
}
.profile-history__infoblock-icon {
  flex-shrink: 0;
  display: flex;
  width: 12px;
  height: 12px;
  color: #a9a9a9;
  margin-left: 6px;
}
.profile-history__infoblock-icon .svg-icon {
  margin: auto;
}
.profile-history__infoblock.red {
  color: #f20f0f;
}
.profile-history__image {
  width: 48px;
  height: 48px;
  line-height: 0;
  margin-left: auto;
  display: none;
}
.profile-card {
  background-color: #fff;
  box-shadow: 0px 2px 27px rgba(0,0,0,0.072);
  min-width: 375px;
}
.profile-card__banner {
  position: relative;
  width: 100%;
  margin-top: 20px;
  height: 182px;
}
.profile-card__banner img {
  position: absolute;
  inset: 0;
}
.profile-card__banner--mobile {
  margin-top: -20px;
  height: 250px;
}
.profile-card__banner--mobile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.profile-card__banner-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding: 45px 150px 45px 30px;
}
.profile-card__banner-text {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  font-feature-settings: 'kern' off;
}
.profile-card__button-link {
  margin-top: 10px;
  text-align: center;
  background-color: #1d9e49;
  color: #fff;
  font-size: 14px;
  line-height: 20px;
  padding: 6px 13px;
  max-width: 128px;
  border-radius: 18px;
  transition: background-color 0.3s;
}
.profile-card__info {
  padding: 17px 0 25px;
}
.profile-card__info--popup {
  padding-top: 0;
  padding-bottom: 0;
}
.profile-card__line {
  height: 20px;
  background-color: #f3f3f3;
}
.profile-card__line--white {
  background-color: #fff;
}
.profile-card__container {
  padding-top: 15px;
}
.profile-card__block {
  padding: 15px 20px;
  border-top: 1px solid #f3f3f3;
  cursor: pointer;
  display: block;
  text-align: left;
  width: 100%;
}
.profile-card__block:first-child {
  border-top: none;
}
.profile-card__block--history {
  padding-left: 0;
  padding-right: 0;
}
.profile-card__subtitle {
  display: inline-flex;
  align-items: center;
  color: #000;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.3s;
}
.profile-card__subtitle .svg-icon {
  fill: #1d9e49;
  margin-right: 12px;
  flex-shrink: 0;
}
.profile-card__subtitle--history {
  padding-left: 20px;
}
.profile-card__list {
  position: relative;
  display: flex;
  margin-top: 24px;
  overflow-x: auto;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 10px;
}
.profile-card__list::-webkit-scrollbar {
  height: 7px;
}
.profile-card__list::-webkit-scrollbar-thumb {
  position: relative;
  background-color: #1d9e49;
  border-radius: 5px;
  visibility: hidden;
}
.profile-card__list:hover::-webkit-scrollbar-thumb {
  visibility: visible;
}
.profile-card__item {
  padding-left: 15px;
  flex-shrink: 0;
}
.profile-card__item:first-child {
  padding-left: 20px;
}
.profile-card__item:last-child {
  padding-right: 20px;
}
.profile-card__item--all-mobile {
  padding: 0;
}
.profile-card__link {
  display: block;
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
  padding: 17px 15px 14px;
  text-align: center;
  box-shadow: 0px 2px 27px rgba(0,0,0,0.072);
  background-color: #fff;
  color: #000;
}
.profile-card .profile-info__main {
  margin-top: 0;
}
.profile-card--popup {
  box-shadow: unset;
}
.profile-history-card {
  max-width: 115px;
}
.profile-history-card__image {
  width: 100%;
  padding-bottom: 53.91%;
  position: relative;
  overflow: hidden;
  margin-bottom: 6px;
  border-radius: 6px;
}
.profile-history-card__image > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.profile-history-card__image--green {
  height: 65px;
  width: 117px;
  background-color: #1d9e49;
}
.profile-history-card__image--green span {
  display: block;
  margin: 0 auto;
  height: 100%;
  padding-top: 3px;
  text-align: center;
  color: #fff;
  font-size: 64px;
}
.profile-history-card__image--mobile {
  height: 62px;
}
.profile-history-card__title {
  font-size: 12px;
  line-height: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  color: #000;
  width: 112px;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}
.profile-history-card__title::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 24px;
  background-image: linear-gradient(270deg, #fff 0%, rgba(255,255,255,0) 100%);
}
.profile-history-card__info {
  font-size: 10px;
  line-height: 12px;
  font-weight: 500;
  color: #727373;
}
.profile-history-card__info span {
  padding-right: 18px;
  position: relative;
}
.profile-history-card__info span::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 8px;
  display: block;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background-color: #a9a9a9;
}
.profile-history-card__info span:last-child::after {
  display: none;
  padding-right: 0;
}
@media only screen and (min-width: 1024px) {
  .profile-info__button:hover {
    color: #1d9e49;
  }
  .profile-info-subscription:hover {
    background-color: #19863e;
  }
  .profile-info-subscription:hover .profile-info-subscription__left {
    background-color: #cf0b0b;
  }
  .profile-content-nav__link:hover {
    color: #1d9e49;
  }
  .profile-content__button:hover {
    color: #fff;
    background-color: #1d9e49;
  }
  .profile-card__link:hover {
    color: #1d9e49;
  }
  .profile-card__button-link:hover {
    color: #fff;
    background-color: #19863e;
  }
  .profile-card__subtitle:hover {
    color: #1d9e49;
  }
  .profile-card__subtitle:hover .svg-icon {
    color: #1d9e49;
  }
  .profile-awards-card:hover .profile-awards-popup {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.3s;
  }
  .profile-history__row:hover {
    background-color: rgba(244,241,237,0.188);
  }
}
@media only screen and (max-width: 1199px) {
  .profile-history__col:nth-last-child(-n+2) {
    min-width: 100px;
  }
}
@media only screen and (max-width: 1023px) {
  .profile-card {
    min-width: unset;
    max-width: 375px;
  }
  .profile-content__item {
    padding-top: 160px;
    margin-top: -100px;
  }
  .profile-stat__item:nth-child(1) {
    border-right: none;
  }
  .profile-stat__item:nth-child(n) {
    width: 100%;
  }
  .profile-stat__item::after {
    content: '';
    display: block;
    height: 18px;
    margin-left: -40px;
    width: 100vw;
    background-color: #f3f3f3;
  }
  .profile-awards__list {
    grid-gap: 40px 11px;
  }
  .profile-history__row {
    flex-wrap: wrap;
    position: relative;
  }
  .profile-history__row:first-child {
    border-top-color: transparent;
  }
  .profile-history__col:nth-child(1) {
    width: 66.66666666666666%;
    padding-left: 12px;
    padding-right: 12px;
    min-width: inherit;
  }
  .profile-history__col:nth-child(2) {
    width: 66.66666666666666%;
    padding-left: 12px;
    padding-right: 12px;
    order: 3;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .profile-history__col:nth-child(3) {
    display: none;
  }
  .profile-history__col:nth-child(4) {
    width: 33.33333333333333%;
    padding-left: 12px;
    padding-right: 12px;
    min-width: inherit;
    order: 4;
  }
  .profile-history__col:nth-child(5) {
    width: 33.33333333333333%;
    padding-left: 12px;
    padding-right: 12px;
    min-width: inherit;
    order: 2;
  }
  .profile-content-nav.is-fixed .profile-content-nav__box {
    top: 0;
  }
}
@media only screen and (max-width: 767px) {
  .profile-info__top {
    padding: 16px 0;
    margin-bottom: 44px;
  }
  .profile-info__top::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -20px;
    display: block;
    height: 1px;
    width: calc(100% + 40px);
    background-color: #f3f3f3;
  }
  .profile-info__main {
    margin-top: 0;
  }
  .profile-info__email {
    max-width: 155px;
  }
  .profile-info__email span[data-element="userEmail"] {
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .profile-info__button:first-child {
    position: absolute;
    top: calc(100% + 27px);
    right: 0;
  }
  .profile-info__back {
    display: block;
  }
  .profile-card__banner--mobile {
    height: 186px;
  }
  .profile-card__banner--mobile img {
    height: 186px;
  }
  .profile-content-nav {
    position: relative;
    z-index: 2;
  }
  .profile-content-nav__list {
    justify-content: flex-start;
  }
  .profile-content-nav.is-fixed .profile-content-nav__box {
    top: 0;
    height: 60px;
  }
  .profile-content-nav.is-fixed .profile-content-nav__list {
    margin: 0 auto;
  }
  .profile-content-nav.is-fixed .profile-content-nav__item:last-child {
    margin-right: 20px;
  }
  .profile-content-nav.is-fixed .profile-content-nav__link {
    font-size: 16px;
    line-height: 22px;
    padding: 18px 0 15px;
  }
  .profile-content-nav.is-fixed .profile-content-nav__link .svg-icon {
    display: block;
  }
  .profile-content-nav-user {
    display: none;
  }
  .profile-content__title {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 26px;
  }
  .profile-content__item {
    position: relative;
  }
  .profile-content__item::after {
    content: '';
    display: block;
    height: 18px;
    width: 100%;
    background-color: #f3f3f3;
    margin-top: 30px;
  }
  .profile-content__item:last-child {
    padding-bottom: 30px;
  }
  .profile-content__item:last-child::after {
    display: none;
  }
  .profile-content__table {
    padding-bottom: 30px;
  }
  .profile-awards__list {
    padding: 30px 0 60px;
    margin: 0 -20px;
  }
  .profile-awards__category {
    text-align: center;
    color: #000;
  }
  .profile-awards__category span {
    padding-left: 16px;
  }
  .profile-awards__category span::before {
    right: 100%;
    left: inherit;
  }
  .profile-stat__item::after {
    margin-left: -20px;
  }
  .profile-stat__item:last-child::after {
    display: none;
  }
}
.profile-editor {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.profile-editor__section {
  display: flex;
  flex-flow: column nowrap;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  left: 100%;
  background-color: #fff;
  z-index: 9;
  transition: transform 0.3s;
}
.profile-editor__section--main {
  position: relative;
  left: auto;
  z-index: 8;
}
.profile-editor__section--main .profile-editor__close {
  display: flex;
  width: 24px;
  height: 24px;
  color: #1d9e49;
  display: none;
  position: absolute;
  left: 20px;
  top: 22px;
}
.profile-editor__section--main .profile-editor__close .svg-icon {
  margin: auto;
}
.profile-editor__section--main .profile-editor__title {
  margin: 0 !important;
}
.profile-editor__section--location .profile-editor__head {
  padding-bottom: 12px;
}
.profile-editor__section.is-active {
  transform: translateX(-100%);
}
.profile-editor__head {
  padding: 45px 45px 40px;
  flex-shrink: 0;
}
.profile-editor__back {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #1d9e49;
  cursor: pointer;
  margin-bottom: 10px;
}
.profile-editor__back .svg-icon {
  margin-right: 15px;
}
.profile-editor__main {
  flex-grow: 1;
  overflow: hidden;
  display: flex;
  flex-flow: column nowrap;
}
.profile-editor__content {
  text-align: center;
  padding: 0 45px 55px;
  font-size: 14px;
  line-height: 20px;
}
.profile-editor__image {
  margin: 0 auto 25px;
  line-height: 0;
}
.profile-editor__title {
  font-size: 24px;
  line-height: 28px;
  min-height: 28px;
  margin: 0 0 15px;
}
.profile-editor__text {
  max-width: 360px;
  margin: 0 auto;
}
.profile-editor [data-elements ~= "profileEditorBtn"] {
  cursor: pointer;
}
.profile-editor [data-elements ~= "profileEditorBtn"] label {
  cursor: pointer;
}
.profile-editor-search {
  border: 1px solid #a9a9a9;
  width: 100%;
  height: 32px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}
.profile-editor-search__icon {
  display: flex;
  width: 24px;
  height: 24px;
  color: #727373;
  position: absolute;
  top: 4px;
  left: 10px;
}
.profile-editor-search__icon .svg-icon {
  margin: auto;
}
.profile-editor-search__input {
  font-size: 14px;
  line-height: 20px;
  padding: 6px 10px 6px 40px;
  height: 30px;
  border: none;
}
.profile-editor-search__input::-webkit-input-placeholder {
  color: #a9a9a9;
}
.profile-editor-search__input::-moz-placeholder {
  color: #a9a9a9;
  opacity: 1;
}
.profile-editor-search__input:-moz-placeholder {
  color: #a9a9a9;
  opacity: 1;
}
.profile-editor-search__input:-ms-input-placeholder {
  color: #a9a9a9;
}
@media only screen and (max-width: 767px) {
  .profile-editor__section--main .profile-editor__title {
    padding: 0 75px;
  }
  .profile-editor__section--main .profile-editor__close {
    display: flex;
  }
  .profile-editor__section--location .profile-editor__head {
    padding: 14px 20px 22px 64px;
  }
  .profile-editor__section--location .profile-editor__title {
    display: none;
  }
  .profile-editor__section--location .profile-editor__back {
    top: 18px;
  }
  .profile-editor__section--health .profile-editor__title {
    padding: 0 75px;
  }
  .profile-editor__section--health .profile-editor__main {
    background-color: #f3f3f3;
  }
  .profile-editor__section--confirm .profile-editor__title {
    font-size: 32px;
    margin-top: 45px;
    text-align: left;
    line-height: 1.4;
  }
  .profile-editor__head {
    padding: 22px 20px;
    text-align: center;
  }
  .profile-editor__back {
    width: 24px;
    height: 24px;
    display: flex;
    position: absolute;
    left: 20px;
    top: 21px;
    margin: 0;
  }
  .profile-editor__back .svg-icon {
    margin: auto;
  }
  .profile-editor__back span {
    display: none;
  }
  .profile-editor__title {
    font-size: 16px;
    line-height: 22px;
    min-height: 22px;
  }
  .profile-editor-search {
    display: block;
    width: 100%;
  }
}
.progress-bar {
  display: flex;
  position: relative;
  height: 30px;
  border-radius: 15px;
  overflow: hidden;
}
.progress-bar__bar {
  flex-grow: 1;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  position: relative;
  padding-left: 15px;
}
.progress-bar__bar span {
  flex-shrink: 0;
  display: block;
  position: relative;
  background-color: #1d9e49;
  width: 0;
  height: 100%;
}
.progress-bar__bar span::before {
  content: '';
  display: block;
  position: absolute;
  width: 30px;
  top: 0;
  height: 100%;
  right: 100%;
  margin-right: -15px;
  border-radius: 15px;
  background-color: #1d9e49;
}
.progress-bar__val {
  flex-shrink: 0;
  display: block;
  width: 48px;
  height: 100%;
  text-align: center;
  font-size: 16px;
  line-height: 24px;
  border-radius: 15px;
  color: #000;
  background-color: #fff;
  border: 3px solid #1d9e49;
  margin-left: -15px;
  position: relative;
}
.progress-bar--type2 .progress-bar__bar span {
  background-color: #e955d6;
}
.progress-bar--type2 .progress-bar__bar span::before {
  background-color: #e955d6;
}
.progress-bar--type2 .progress-bar__val {
  border-color: #e955d6;
}
.progress-bar--type3 .progress-bar__bar span {
  background-color: #00deff;
}
.progress-bar--type3 .progress-bar__bar span::before {
  background-color: #00deff;
}
.progress-bar--type3 .progress-bar__val {
  border-color: #00deff;
}
.progress-bar--type4 .progress-bar__bar span {
  background-color: #ffc000;
}
.progress-bar--type4 .progress-bar__bar span::before {
  background-color: #ffc000;
}
.progress-bar--type4 .progress-bar__val {
  border-color: #ffc000;
}
.progress-bar--type5 .progress-bar__bar span {
  background-color: #ea1b5b;
}
.progress-bar--type5 .progress-bar__bar span::before {
  background-color: #ea1b5b;
}
.progress-bar--type5 .progress-bar__val {
  border-color: #ea1b5b;
}
.progress-bar--type6 .progress-bar__bar span {
  background-color: #8760fb;
}
.progress-bar--type6 .progress-bar__bar span::before {
  background-color: #8760fb;
}
.progress-bar--type6 .progress-bar__val {
  border-color: #8760fb;
}
.promo {
  overflow: hidden;
}
.promo__container {
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 40px;
}
@media only screen and (max-width: 1199px) {
  .promo__container {
    padding: 0 20px;
  }
}
.promo__row {
  display: flex;
  flex-flow: row wrap;
  margin-left: -12px;
  margin-right: -12px;
}
.promo__col {
  width: 41.66666666666667%;
  padding-left: 12px;
  padding-right: 12px;
}
.promo__col--main {
  width: 41.66666666666667%;
  padding-left: 12px;
  padding-right: 12px;
}
.promo__col--image {
  width: 58.333333333333336%;
  padding-left: 12px;
  padding-right: 12px;
  align-self: stretch;
}
.promo__subtitle {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  margin: 0 0 12px;
}
.promo__title {
  font-size: 30px;
  line-height: 35px;
  font-weight: 600;
  margin: 0 0 18px;
}
.promo__text {
  font-size: 20px;
  line-height: 28px;
  max-width: 432px;
}
.promo__text a {
  color: #f20f0f;
  font-weight: 600;
  text-decoration: underline;
}
.promo__text a:hover {
  color: #cf0b0b;
}
.promo__controls {
  margin-top: 38px;
}
.promo__button {
  padding: 13px 24px;
  position: relative;
}
.promo__button::after {
  content: 'Ссылка скопирована';
  display: block;
  font-size: 0;
}
.promo__button.is-disabled {
  font-size: 0;
  opacity: 0.8;
  pointer-events: none;
}
.promo__button.is-disabled::after {
  font-size: 18px;
}
.promo__image {
  position: relative;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.promo__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  max-width: none;
}
.promo--section0 {
  padding: 75px 0 56px;
  border-bottom: 1px solid #eaeaea;
}
.promo--section0 .promo__title {
  font-size: 40px;
  line-height: 45px;
  font-weight: 600;
  margin: 0 0 22px;
}
.promo--section0 .promo__col {
  width: 41.66666666666667%;
  padding-left: 12px;
  padding-right: 12px;
  margin-right: 8.333333333333332%;
}
.promo--section1 .promo__col--main {
  padding-top: 124px;
  padding-bottom: 164px;
}
.promo--section1 .promo__subtitle {
  display: flex;
  font-size: 30px;
  line-height: 30px;
  font-weight: 400;
  margin: 0 0 26px;
  color: #1d9e49;
}
.promo--section1 .promo__subtitle .svg-icon {
  margin-right: 10px;
}
.promo--section1 .promo__controls {
  margin-top: 22px;
}
.promo--section1 .promo__image {
  position: relative;
}
.promo--section1 .promo__image img {
  width: 109%;
  top: 15%;
  transform: translate(8%, calc(var(--scroll) * 0.3));
}
.promo--section2 {
  background-color: #f7f4f0;
}
.promo--section2 .promo__col--main {
  padding-top: 190px;
  padding-bottom: 114px;
}
.promo--section2 .promo__image img {
  width: 160%;
  top: auto;
  bottom: -20%;
  transform: translate(-8%, calc(var(--scroll) * 0.15));
}
.promo--section3 {
  background-color: #eaeaea;
}
.promo--section3 .promo__col--main {
  padding-top: 153px;
  padding-bottom: 118px;
}
.promo--section3 .promo__image img {
  top: 30%;
  width: 105%;
  transform: translate(9%, calc(var(--scroll) * 0.2));
}
.promo--section4 {
  background-color: #f5f5f6;
}
.promo--section4 .promo__col--main {
  padding-top: 143px;
  padding-bottom: 156px;
}
.promo--section4 .promo__title {
  margin-bottom: 27px;
}
.promo--section4 .promo__text {
  margin-right: -20px;
  max-width: none;
}
.promo--section4 .promo__image img {
  width: 225%;
  top: 30%;
  transform: translate(-39%, calc(var(--scroll) * 0.3));
}
@media only screen and (max-width: 1023px) {
  .promo__col {
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
    margin-right: 0%;
  }
  .promo__text {
    max-width: 740px;
  }
  .promo--section0 {
    padding: 75px 0 56px;
    border-bottom: 1px solid #eaeaea;
  }
  .promo--section0 .promo__col {
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
    margin-right: 0%;
  }
  .promo--section0 .promo__col:first-child {
    margin-bottom: 1em;
  }
  .promo--section1 .promo__col--main {
    padding-top: 75px;
    padding-bottom: 20px;
  }
  .promo--section1 .promo__image {
    padding-bottom: 58%;
  }
  .promo--section1 .promo__image img {
    width: 100%;
    height: 120%;
    object-fit: contain;
    transform: translate(3%, calc(var(--scroll) * 0.3));
  }
  .promo--section2 .promo__col--main {
    padding-top: 75px;
    padding-bottom: 0px;
  }
  .promo--section2 .promo__image {
    padding-bottom: 88%;
  }
  .promo--section2 .promo__image img {
    width: 160%;
    transform: translate(-13%, calc(var(--scroll) * 0.15));
  }
  .promo--section3 .promo__col--main {
    padding-top: 75px;
    padding-bottom: 30px;
  }
  .promo--section3 .promo__image {
    padding-bottom: 58%;
  }
  .promo--section3 .promo__image img {
    top: 15%;
    width: 100%;
    height: 120%;
    object-fit: contain;
    transform: translate(4%, calc(var(--scroll) * 0.2));
  }
  .promo--section4 .promo__col--main {
    padding-top: 75px;
    padding-bottom: 50px;
  }
  .promo--section4 .promo__text {
    margin-right: 0px;
  }
  .promo--section4 .promo__image {
    padding-bottom: 60%;
  }
  .promo--section4 .promo__image img {
    width: 200%;
    transform: translate(-35%, calc(var(--scroll) * 0.3));
  }
}
@media only screen and (max-width: 767px) {
  .promo__col {
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
    margin-right: 0%;
  }
  .promo__col--main {
    position: relative;
    z-index: 2;
  }
  .promo__col--image {
    padding: 0;
  }
  .promo__title {
    font-size: 24px;
    line-height: 28px;
    margin: 0 0 25px;
  }
  .promo__text {
    font-size: 18px;
    line-height: 26px;
  }
  .promo__controls {
    margin-top: 25px;
  }
  .promo__button {
    padding: 13px 38px;
  }
  .promo--section0 {
    padding: 35px 0 40px;
  }
  .promo--section0 .promo__col:first-child {
    margin-bottom: 2em;
  }
  .promo--section0 .promo__title {
    font-size: 30px;
    line-height: 35px;
    margin: 0 0 23px;
  }
  .promo--section0 .promo__text {
    font-size: 20px;
    line-height: 28px;
  }
  .promo--section1 .promo__col--main {
    padding-top: 50px;
    padding-bottom: 30px;
  }
  .promo--section1 .promo__col--image {
    padding: 0;
  }
  .promo--section1 .promo__subtitle {
    font-size: 16px;
    line-height: 22px;
    margin: 0 0 21px;
  }
  .promo--section1 .promo__subtitle .svg-icon {
    width: 18px !important;
    height: 22px !important;
  }
  .promo--section1 .promo__image {
    padding-bottom: 66%;
  }
  .promo--section1 .promo__image img {
    width: 120%;
    height: 120%;
    object-fit: contain;
    transform: translate(-3%, calc(var(--scroll) * 0.3));
  }
  .promo--section2 .promo__col--main {
    padding-top: 57px;
    padding-bottom: 13px;
  }
  .promo--section2 .promo__image {
    padding-bottom: 88%;
  }
  .promo--section2 .promo__image img {
    width: 170%;
    transform: translate(-13%, calc(var(--scroll) * 0.15));
  }
  .promo--section3 .promo__col--main {
    padding-top: 55px;
    padding-bottom: 50px;
  }
  .promo--section3 .promo__image {
    padding-bottom: 103%;
  }
  .promo--section3 .promo__image img {
    width: 130%;
    height: 122%;
    object-fit: contain;
    transform: translate(-5%, calc(var(--scroll) * 0.2));
  }
  .promo--section4 .promo__col--main {
    padding-top: 75px;
    padding-bottom: 0px;
  }
  .promo--section4 .promo__text {
    margin-right: 0px;
  }
  .promo--section4 .promo__image {
    padding-bottom: 72%;
  }
  .promo--section4 .promo__image img {
    width: 200%;
    transform: translate(-35%, calc(var(--scroll) * 0.3));
  }
}
.radio {
  display: inline-flex;
  align-items: flex-start;
  vertical-align: middle;
  white-space: nowrap;
}
.radio__control {
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
.radio__input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 3;
  margin: 0;
  cursor: pointer;
}
.radio__input:checked ~ .radio__icon {
  border-color: #1d9e49;
}
.radio__input:checked ~ .radio__icon::before {
  opacity: 1;
}
.radio__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border: 2px solid #727373;
  color: #1d9e49;
  border-radius: 50%;
  z-index: 2;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}
.radio__icon::before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin: -4px 0 0 -4px;
  background-color: #1d9e49;
  opacity: 0;
  transition: opacity 0.3s;
}
.radio__label {
  flex-grow: 1;
  font-family: 'Gilroy', Arial, Helvetica, sans-serif;
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  margin: 0 0 0 9px;
  cursor: pointer;
  white-space: normal;
  user-select: none;
}
.radio--text {
  display: flex;
  align-items: center;
  position: relative;
  height: 54px;
  border-bottom: 1px solid #eaeaea;
}
.radio--text .radio__label {
  margin: 0;
  transition: color 0.3s;
}
.radio--text .radio__input:checked ~ .radio__label {
  color: #1d9e49;
}
.radio--flex {
  display: flex;
  width: 100%;
  height: 54px;
  align-items: center;
}
.radio--flex .radio__label {
  margin: 0;
}
.radio--flex-center {
  justify-content: center;
}
.radio--link .radio__icon {
  display: flex;
  width: auto;
  height: auto;
  border-radius: 0;
  border: none;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  color: #252525;
  min-width: 24px;
}
.radio--link .radio__icon::before {
  display: none;
}
.radio--link .radio__icon .svg-icon {
  margin: auto;
}
.radio--link .radio__input:checked ~ .radio__icon {
  color: #1d9e49;
}
.select {
  position: relative;
  z-index: 1;
}
.select__control {
  display: flex;
  position: relative;
  width: 100%;
  font-family: 'Gilroy', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  height: 52px;
  padding: 13px 54px 13px 30px;
  color: #000;
  background-color: #fff;
  cursor: pointer;
  overflow: hidden;
  z-index: 2;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: border-color 0.3s, color 0.3s, border-radius 0.3s;
}
.select__control-result {
  display: inline-block;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.select__control-qty {
  display: inline-block;
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  width: 20px;
  height: 20px;
  text-align: center;
  border-radius: 50%;
  background-color: #f3f3f3;
  margin: 3px 0 3px 5px;
}
.select__control-qty:empty {
  display: none;
}
.select__control span[data-placeholder]:empty::before {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  content: attr(data-placeholder);
  color: #a9a9a9;
  transition: color 0.3s;
}
.select__arrow {
  position: absolute;
  width: 24px;
  height: 24px;
  top: 14px;
  right: 24px;
  display: flex;
  color: #a9a9a9;
  transition: transform 0.3s;
}
.select__arrow .svg-icon {
  fill: currentColor;
  margin: auto;
}
.select__result {
  display: inline;
}
.select__dropdown {
  height: auto;
  width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0px 2px 27px rgba(0,0,0,0.072);
  visibility: hidden;
  opacity: 0;
  z-index: 1;
  transition: visibility 0s 0.3s, opacity 0.3s;
}
.select__head {
  display: none;
  position: relative;
  height: 72px;
  width: 100%;
}
.select__title {
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  color: #000;
  text-align: center;
  padding: 28px 54px 22px;
}
.select__close {
  position: absolute;
  left: 20px;
  top: 27px;
  width: 24px;
  height: 24px;
  display: flex;
  color: #1d9e49;
  cursor: pointer;
}
.select__close .svg-icon {
  margin: auto;
}
.select__clear {
  display: block;
  position: absolute;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  right: 20px;
  top: 27px;
  color: #1d9e49;
  cursor: pointer;
}
.select__clear ~ .select__title {
  padding: 28px 90px 22px;
}
.select__box {
  max-height: 300px;
  border-top: 1px solid #f3f3f3;
  overflow: hidden;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #1d9e49 transparent;
}
.select__box::-webkit-scrollbar {
  width: 2px;
  height: 2px;
  border-radius: 2px;
}
.select__box::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 2px;
}
.select__box::-webkit-scrollbar-thumb {
  background-color: #1d9e49;
  border-radius: 2px;
}
.select__block {
  background-color: #f3f3f3;
  padding-top: 20px;
}
.select__subtitle {
  font-size: 14px;
  line-height: 20px;
  color: #727373;
  padding: 0 30px 10px;
}
.select__option {
  border-bottom: 1px solid #f3f3f3;
}
.select__option:last-child {
  border-bottom: none;
}
.select__option.is-disabled .select-checkbox,
.select__option.is-disabled .select-radio {
  opacity: 0.3;
  pointer-events: none;
}
.select[data-type="single"] .select-radio__control {
  display: none;
}
.select--pills {
  position: static;
}
.select--pills .select__dropdown {
  border-radius: 0 4px 4px 4px;
  z-index: 2;
}
.select--pills .select__box {
  border-top: none;
  padding: 33px 45px 33px 25px;
  max-height: 320px;
}
.select--pills .select__list {
  display: flex;
  flex-flow: row wrap;
  margin: -10px 0 0 -8px;
}
.select--pills .select__option {
  border: none;
  margin: 10px 0 0 8px;
}
.select--pills .select-checkbox__label,
.select--pills .select-radio__label {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  padding: 6px 12px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  cursor: pointer;
  background-color: #f3f3f3;
}
.select--pills .select-checkbox__input:checked ~ .select-checkbox__label,
.select--pills .select-radio__input:checked ~ .select-checkbox__label,
.select--pills .select-checkbox__input:checked ~ .select-radio__label,
.select--pills .select-radio__input:checked ~ .select-radio__label {
  color: #fff !important;
  background-color: #1d9e49 !important;
}
.select.is-open {
  z-index: 9;
}
.select.is-open .select__control {
  z-index: 3;
}
.select.is-open .select__arrow {
  transform: scale(1, -1);
}
.select.is-open .select__dropdown {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s;
}
.select-checkbox,
.select-radio {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.select-checkbox__input,
.select-radio__input {
  display: none;
}
.select-checkbox__input:checked ~ .select-checkbox__label,
.select-radio__input:checked ~ .select-checkbox__label,
.select-checkbox__input:checked ~ .select-radio__label,
.select-radio__input:checked ~ .select-radio__label {
  color: #1d9e49;
  background-color: #fff !important;
}
.select-checkbox__label,
.select-radio__label {
  flex-grow: 1;
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  padding: 13px 15px 13px 30px;
  background-color: #fff;
  transition: color 0.3s, background-color 0.3s;
}
.select-checkbox__control,
.select-radio__control {
  flex-shrink: 0;
  margin-left: 15px;
}
.select-checkbox__control {
  display: flex;
  width: 24px;
  height: 24px;
  background-color: #f3f3f3;
  border-radius: 4px;
  color: #1d9e49;
}
.select-checkbox__control .svg-icon {
  margin: auto;
  opacity: 0;
  transition: opacity 0.3s;
}
.select-checkbox__input:checked ~ .select-checkbox__control .svg-icon {
  opacity: 1;
}
.select-radio__control {
  display: flex;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid #727373;
  position: relative;
  transition: border-color 0.3s;
}
.select-radio__control::after {
  content: '';
  display: block;
  position: absolute;
  width: 8px;
  height: 8px;
  top: 50%;
  left: 50%;
  margin: -4px 0 0 -4px;
  border-radius: 50%;
  background-color: #1d9e49;
  opacity: 0;
  transition: opacity 0.3s;
}
.select-radio__input:checked ~ .select-radio__control {
  border-color: #1d9e49;
}
.select-radio__input:checked ~ .select-radio__control::after {
  opacity: 1;
}
.is-error .select__control {
  border-color: #f20f0f;
}
.is-error .select__control span[data-placeholder]:empty::before {
  color: #f20f0f;
}
@media only screen and (min-width: 1024px) {
  .select--pills .select-checkbox:hover .select-checkbox__label,
  .select--pills .select-radio:hover .select-checkbox__label,
  .select--pills .select-checkbox:hover .select-radio__label,
  .select--pills .select-radio:hover .select-radio__label {
    background-color: #dbdbdb;
  }
  .select-checkbox:hover .select-checkbox__label,
  .select-radio:hover .select-checkbox__label,
  .select-checkbox:hover .select-radio__label,
  .select-radio:hover .select-radio__label {
    background-color: #f3f3f3;
  }
}
@media only screen and (max-width: 767px) {
  .select {
    position: static;
  }
  .select__dropdown {
    position: fixed;
    top: 0;
    left: auto;
    right: 100%;
    width: 100%;
    height: 100%;
    padding-top: 0;
    border-radius: 0 !important;
    background-color: #fff;
    transform: translateX(0);
    box-shadow: none !important;
    visibility: visible;
    opacity: 1;
    z-index: 99;
    transition: transform 0.3s;
  }
  .select__head {
    display: block;
  }
  .select__box {
    height: calc(100% - 72px);
    max-height: calc(100% - 72px);
  }
  .select__subtitle {
    padding: 0 20px 10px;
  }
  .select[data-type="single"] .select-radio__control {
    display: block;
  }
  .select--pills .select__dropdown {
    z-index: 99;
  }
  .select--pills .select__box {
    height: calc(100% - 72px);
    max-height: calc(100% - 72px);
    padding: 0;
    border-top: 1px solid #f3f3f3;
  }
  .select--pills .select__list {
    display: block;
    margin: 0;
  }
  .select--pills .select__option {
    border-bottom: 1px solid #f3f3f3;
    margin: 0;
  }
  .select--pills .select__option:last-child {
    border-bottom: none;
  }
  .select--pills .select-checkbox,
  .select--pills .select-radio {
    padding: 14px 20px;
  }
  .select--pills .select-checkbox__label,
  .select--pills .select-radio__label {
    padding: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    background-color: transparent;
    border-radius: 0;
  }
  .select--pills .select-checkbox__input:checked ~ .select-checkbox__label,
  .select--pills .select-radio__input:checked ~ .select-checkbox__label,
  .select--pills .select-checkbox__input:checked ~ .select-radio__label,
  .select--pills .select-radio__input:checked ~ .select-radio__label {
    color: #000 !important;
    background-color: #fff !important;
  }
  .select.is-open .select__dropdown {
    transform: translateX(100%);
    transition: transform 0.3s;
  }
  .select-checkbox,
  .select-radio {
    padding: 14px 20px;
  }
  .select-checkbox__label,
  .select-radio__label {
    padding: 0;
    font-size: 16px;
    line-height: 22px;
  }
  .select-checkbox {
    padding: 13px 20px;
  }
  .select-checkbox__control {
    display: flex;
    width: 47px;
    height: 28px;
    background-color: #a9a9a9;
    border-radius: 14px;
    position: relative;
    transition: background-color 0.3s;
  }
  .select-checkbox__control .svg-icon {
    display: none;
  }
  .select-checkbox__control::after {
    content: '';
    display: block;
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    top: 2px;
    left: 3px;
    background-color: #fff;
    transform: translateX(0);
    transition: transform 0.3s;
  }
  .select-checkbox__input:checked ~ .select-checkbox__label {
    color: #000 !important;
    background-color: #fff !important;
  }
  .select-checkbox__input:checked ~ .select-checkbox__control {
    background-color: #1d9e49;
  }
  .select-checkbox__input:checked ~ .select-checkbox__control::after {
    transform: translateX(17px);
  }
  .select-radio__control {
    display: flex;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid #727373;
    position: relative;
    transition: border-color 0.3s;
  }
  .select-radio__control::after {
    content: '';
    display: block;
    position: absolute;
    width: 8px;
    height: 8px;
    top: 50%;
    left: 50%;
    margin: -4px 0 0 -4px;
    border-radius: 50%;
    background-color: #1d9e49;
    opacity: 0;
    transition: opacity 0.3s;
  }
  .select-radio__input:checked ~ .select-radio__label {
    color: #000 !important;
    background-color: #fff !important;
  }
  .select-radio__input:checked ~ .select-radio__control {
    border-color: #1d9e49;
  }
  .select-radio__input:checked ~ .select-radio__control::after {
    opacity: 1;
  }
}
.selection {
  background-color: #f4f1ed;
}
.selection__container {
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 40px;
}
@media only screen and (max-width: 1199px) {
  .selection__container {
    padding: 0 20px;
  }
}
.selection__row {
  display: flex;
  flex-flow: row wrap;
  margin-left: -12px;
  margin-right: -12px;
  align-items: flex-end;
}
.selection__col--main {
  width: 100%;
  padding-left: 12px;
  padding-right: 12px;
}
.selection__col--image {
  width: 16.666666666666664%;
  padding-left: 12px;
  padding-right: 12px;
  margin-left: -16.666666666666664%;
}
.selection__main {
  position: relative;
  margin: 136px 0 128px;
  z-index: 2;
}
.selection__title {
  margin: 0 0 17px;
  max-width: 620px;
}
.selection__text {
  font-size: 20px;
  line-height: 28px;
  max-width: 684px;
}
.selection__form {
  margin-top: 36px;
  max-width: 725px;
}
.selection__image {
  display: block;
  width: 100%;
  line-height: 0;
}
.selection__image img {
  width: auto;
  max-width: 328px;
  margin-left: -80px;
}
@media only screen and (max-width: 1199px) {
  .selection__text {
    max-width: 650px;
  }
}
@media only screen and (max-width: 1023px) {
  .selection__main {
    position: static;
  }
  .selection__form {
    max-width: 100%;
  }
  .selection__col--image {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .selection__main {
    margin: 60px 0 64px;
  }
  .selection__title {
    font-size: 20px;
    line-height: 24px;
  }
  .selection__text {
    font-size: 16px;
    line-height: 22px;
  }
  .selection__form {
    margin-top: 27px;
  }
}
.slider {
  position: relative;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s;
}
.slider.is-init {
  opacity: 1;
}
.slider__list {
  display: flex;
  align-items: stretch;
  height: 100%;
}
.slider__item {
  flex-shrink: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.slider__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
.tns-outer {
  height: 100%;
}
.tns-inner {
  height: 100%;
}
.stat {
  padding: 50px 0 110px;
}
.stat__container {
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 40px;
}
@media only screen and (max-width: 1199px) {
  .stat__container {
    padding: 0 20px;
  }
}
.stat__title {
  text-align: center;
  margin: 0 0 33px;
}
.stat__controls {
  display: flex;
  justify-content: center;
  margin-bottom: 42px;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
}
.stat__controls::-webkit-scrollbar {
  width: 0px;
  height: 0px;
  border-radius: 0px;
}
.stat__controls::-webkit-scrollbar-track {
  background: transparent;
}
.stat__controls::-webkit-scrollbar-thumb {
  background-color: transparent;
  border-radius: 0px;
}
.stat__button {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  background-color: #f3f3f3;
  color: #000;
  font-size: 14px;
  line-height: 20px;
  padding: 6px 12px;
  cursor: pointer;
  margin-right: 1px;
  transition: color 0.3s, background-color 0.3s;
}
.stat__button .svg-icon {
  flex-shrink: 0;
  margin-right: 7px;
  fill: #1d9e49;
}
.stat__button:first-child {
  border-radius: 16px 0 0 16px;
}
.stat__button:last-child {
  border-radius: 0 16px 16px 0;
  margin-right: 0;
}
.stat__button.is-active {
  color: #fff !important;
  background-color: #1d9e49;
}
.stat__button.is-active .svg-icon {
  fill: #fff;
}
.stat-info {
  padding: 35px 0;
  border-bottom: 1px solid rgba(151,151,151,0.4);
}
.stat-info__list {
  display: flex;
  flex-flow: row wrap;
  margin-left: -12px;
  margin-right: -12px;
}
.stat-info__item {
  width: 33.33333333333333%;
  padding-left: 12px;
  padding-right: 12px;
}
.stat-info-card {
  width: 100%;
  max-width: 160px;
  margin: 0 auto;
  text-align: center;
}
.stat-info-card__content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 2px;
}
.stat-info-card__val {
  font-size: 40px;
  line-height: 45px;
  font-weight: 600;
}
.stat-info-card__icon {
  display: flex;
  width: 16px;
  height: 16px;
  color: #a9a9a9;
  margin-left: 10px;
  margin-right: -26px;
}
.stat-info-card__icon .svg-icon {
  margin: auto;
}
.stat-info-card__label {
  font-size: 16px;
  line-height: 22px;
}
.stat-charts {
  padding: 40px 0;
  border-bottom: 1px solid rgba(151,151,151,0.4);
  margin-bottom: 48px;
}
.stat-charts__list {
  display: flex;
  flex-flow: row wrap;
  margin-left: -12px;
  margin-right: -12px;
}
.stat-charts__item {
  width: 100%;
  padding-left: 12px;
  padding-right: 12px;
  display: flex;
  flex-flow: column nowrap;
}
.stat-charts__item:nth-child(1) {
  width: 226px;
}
.stat-charts__item:nth-child(1) .stat-charts__main {
  margin: auto 0;
}
.stat-charts__item:nth-child(2) {
  width: calc((100% - 226px) * 0.6);
}
.stat-charts__item:nth-child(3) {
  width: calc((100% - 226px) * 0.4);
}
.stat-charts__title {
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  margin: 0 0 24px;
}
.stat-charts__main {
  margin-top: auto;
}
.stat-lessons__row {
  display: flex;
  flex-flow: row wrap;
  margin-left: -12px;
  margin-right: -12px;
}
.stat-lessons__col {
  width: 50%;
  padding-left: 12px;
  padding-right: 12px;
}
.stat-lessons__title {
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  margin-bottom: 47px;
}
.stat-lessons__title .svg-icon {
  flex-shrink: 0;
  margin-left: 10px;
}
.stat-lessons__title .svg-icon--brand1 {
  fill: #1d9e49;
}
.stat-lessons__title .svg-icon--brand2 {
  fill: #f20f0f;
}
@media only screen and (min-width: 1024px) {
  .stat__button:hover {
    color: #1d9e49;
  }
}
@media only screen and (max-width: 1199px) {
  .stat-lessons__col {
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
    margin-bottom: 60px;
  }
  .stat-lessons__col:last-child {
    margin-bottom: 0;
  }
  .stat-charts__item:nth-child(2),
  .stat-charts__item:nth-child(3) {
    width: calc((100% - 226px) * 0.5);
  }
}
@media only screen and (max-width: 1023px) {
  .stat-charts {
    display: block;
    width: 100%;
    border-bottom: none;
    padding-bottom: 0;
  }
  .stat-charts__list {
    margin: 0;
  }
  .stat-charts__item {
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-bottom: 35px;
    border-bottom: 1px solid rgba(151,151,151,0.4);
    margin-bottom: 35px;
  }
  .stat-charts__item:last-child {
    margin-bottom: 0;
  }
  .stat-lessons__title {
    margin: 0 0 20px;
  }
  .stat-lessons__col {
    margin-bottom: 20px;
  }
  .stat-lessons__col:last-child {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .stat {
    padding: 24px 0 45px;
  }
  .stat__title {
    margin: 0 0 24px;
  }
  .stat__controls {
    margin-bottom: 30px;
  }
  .stat-info {
    padding: 24px 0;
  }
  .stat-info__list {
    margin: 0 -10px;
  }
  .stat-info__item {
    padding: 0;
    border-left: none;
  }
  .stat-info-card {
    max-width: 98px;
  }
  .stat-info-card__content {
    align-items: center;
  }
  .stat-info-card__val {
    font-size: 24px;
    line-height: 28px;
    white-space: nowrap;
  }
  .stat-info-card__icon {
    width: 16px;
    height: 16px;
    margin-left: 7px;
    margin-right: -10px;
  }
  .stat-info-card__label {
    font-size: 12px;
    line-height: 14px;
  }
}
.static {
  padding: 120px 0 150px;
}
.static__container {
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 40px;
}
@media only screen and (max-width: 1199px) {
  .static__container {
    padding: 0 20px;
  }
}
.static__row {
  display: flex;
  flex-flow: row wrap;
  margin-left: -12px;
  margin-right: -12px;
}
.static__col--side {
  width: 41.66666666666667%;
  padding-left: 12px;
  padding-right: 12px;
}
.static__col--main {
  width: 58.333333333333336%;
  padding-left: 12px;
  padding-right: 12px;
}
.static__title {
  max-width: 387px;
}
.static__main {
  max-width: 630px;
  padding-top: 10px;
  font-size: 18px;
  line-height: 1.44;
}
.static__main h2 {
  font-size: 24px;
  line-height: 28px;
  font-weight: 500;
  margin: 54px 0 18px;
}
.static__main h2:first-child {
  margin-top: 0;
}
.static__main h2:last-child {
  margin-bottom: 0;
}
.static__main p {
  margin: 1em 0;
}
.static__main p:first-child {
  margin-top: 0;
}
.static__main p:last-child {
  margin-bottom: 0;
}
.static__main ul {
  list-style: disc;
  padding: 0 0 0 20px;
}
.static__main ul li {
  margin-bottom: 10px;
}
.static__form {
  width: 100%;
  max-width: 336px;
  margin: 0 auto;
}
@media only screen and (max-width: 1023px) {
  .static {
    padding: 60px 0 100px;
  }
  .static__col--side,
  .static__col--main {
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }
  .static__col--side {
    margin-bottom: 30px;
  }
  .static__main {
    padding-top: 0;
    max-width: 100%;
    font-size: 16px;
    line-height: 1.5;
  }
  .static__main h2 {
    font-size: 20px;
    line-height: 28px;
    margin: 46px 0 10px;
  }
  .static__main h2:first-child {
    margin-top: 0;
  }
  .static__main h2:last-child {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .static {
    padding: 20px 0 60px;
  }
}
.success {
  margin: 50px auto;
  display: flex;
  align-items: center;
}
.success__container {
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}
@media only screen and (max-width: 1199px) {
  .success__container {
    padding: 0 20px;
  }
}
.success__wrap {
  text-align: center;
}
.success__animation {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.success__animation lottie-player {
  display: block;
  width: 100%;
  height: 100%;
}
.success__image {
  position: relative;
  margin: 0 auto 40px;
  width: 240px;
  height: auto;
  line-height: 0;
  z-index: 2;
}
.success__image--verification {
  width: 299px;
  height: 355px;
}
.success__image svg {
  width: 100%;
  height: 100%;
}
.success__content {
  max-width: 400px;
  margin: 0 auto;
}
.success__content--verification {
  max-width: 441px;
}
.success__title {
  font-size: 32px;
  line-height: 1.16;
  font-weight: 500;
  margin: 0 0 35px;
  color: #000;
}
.success__title--verification {
  margin-bottom: 15px;
}
.success__text {
  font-size: 16px;
  line-height: 20px;
  color: #000;
  margin: 0 0 40px;
  padding: 0 50px;
}
.success__text--verification {
  padding: 0;
  margin-bottom: 27px;
}
.success__text span {
  font-weight: 700;
}
.success__bottom {
  line-height: 0;
  margin: 54px 0 60px;
}
.success--login,
.success--change-pass {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}
.success--login .success__container,
.success--change-pass .success__container {
  position: static;
}
.success--login .success__wrap,
.success--change-pass .success__wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.success--login .success__box,
.success--change-pass .success__box {
  position: relative;
  width: 100%;
}
.success--login .success__control,
.success--change-pass .success__control {
  text-align: center;
}
.success--login .success__control .button,
.success--change-pass .success__control .button {
  width: 100%;
  max-width: 335px;
}
.success--change-pass .success__image {
  width: 147px;
}
@media only screen and (max-width: 1440px) {
  .success--login,
  .success--change-pass {
    align-items: flex-end;
  }
}
@media only screen and (max-width: 767px) {
  .success__title {
    font-size: 24px;
  }
  .success__text {
    font-size: 14px;
    margin: 0 0 45px;
    padding: 0 30px;
  }
  .success__animation {
    width: 120%;
  }
  .success--login .success__title,
  .success--change-pass .success__title {
    margin: 0 0 15px;
  }
  .success--login .success__bottom,
  .success--change-pass .success__bottom {
    display: none;
  }
  .success--login .success__container,
  .success--change-pass .success__container {
    align-self: stretch;
    display: flex;
    flex-flow: column nowrap;
  }
  .success--login .success__wrap,
  .success--change-pass .success__wrap {
    flex-grow: 1;
  }
  .success--login .success__image {
    width: 165px;
  }
  .success--change-pass .success__image {
    width: 107px;
  }
}
.tabs__controls {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}
.tabs__controls-asanas {
  display: flex;
  margin-top: 15px;
}
.tabs__button {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  background-color: #f3f3f3;
  color: #000;
  font-size: 14px;
  line-height: 20px;
  padding: 6px 12px;
  cursor: pointer;
  margin-right: 1px;
  transition: color 0.3s, background-color 0.3s;
}
.tabs__button .svg-icon {
  flex-shrink: 0;
  margin-right: 7px;
  fill: #1d9e49;
}
.tabs__button:first-child {
  border-radius: 16px 0 0 16px;
}
.tabs__button:last-child {
  border-radius: 0 16px 16px 0;
  margin-right: 0;
}
.tabs__button.is-active {
  color: #fff !important;
  background-color: #1d9e49;
}
.tabs__button.is-active .svg-icon {
  fill: #fff;
}
.tabs__box {
  position: relative;
}
.tabs__item {
  position: relative;
  height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}
.tabs__item.is-active {
  height: auto;
  padding: 35px 0 0;
  opacity: 1;
  visibility: visible;
  overflow: visible;
}
.tabs-info__item {
  display: none;
}
.tabs-info__item.is-active {
  display: block;
}
.video {
  display: block;
  width: 100%;
  position: relative;
}
.video__box {
  width: 100%;
  padding-bottom: 56.25%;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}
.video__box > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.yogi__head {
  transform-origin: center top;
  animation: head ease-in infinite;
  animation-duration: 3s;
}
.yogi__hand,
.yogi__top {
  transform-origin: center top;
  animation: hands ease-in infinite;
  animation-duration: 3s;
}
@-moz-keyframes head {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  10% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  16% {
    transform: translate(0px, 3px) rotate(0deg);
  }
  33% {
    transform: translate(6px, 0px) rotate(8deg);
  }
  44% {
    transform: translate(6px, 0px) rotate(8deg);
  }
  50% {
    transform: translate(0px, 3px) rotate(0deg);
  }
  66% {
    transform: translate(-6px, 0px) rotate(-8deg);
  }
  77% {
    transform: translate(-6px, 0px) rotate(-8deg);
  }
  83% {
    transform: translate(0px, 3px) rotate(0deg);
  }
  100% {
    transform: translate(0px, 0px) rotate(0deg);
  }
}
@-webkit-keyframes head {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  10% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  16% {
    transform: translate(0px, 3px) rotate(0deg);
  }
  33% {
    transform: translate(6px, 0px) rotate(8deg);
  }
  44% {
    transform: translate(6px, 0px) rotate(8deg);
  }
  50% {
    transform: translate(0px, 3px) rotate(0deg);
  }
  66% {
    transform: translate(-6px, 0px) rotate(-8deg);
  }
  77% {
    transform: translate(-6px, 0px) rotate(-8deg);
  }
  83% {
    transform: translate(0px, 3px) rotate(0deg);
  }
  100% {
    transform: translate(0px, 0px) rotate(0deg);
  }
}
@-o-keyframes head {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  10% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  16% {
    transform: translate(0px, 3px) rotate(0deg);
  }
  33% {
    transform: translate(6px, 0px) rotate(8deg);
  }
  44% {
    transform: translate(6px, 0px) rotate(8deg);
  }
  50% {
    transform: translate(0px, 3px) rotate(0deg);
  }
  66% {
    transform: translate(-6px, 0px) rotate(-8deg);
  }
  77% {
    transform: translate(-6px, 0px) rotate(-8deg);
  }
  83% {
    transform: translate(0px, 3px) rotate(0deg);
  }
  100% {
    transform: translate(0px, 0px) rotate(0deg);
  }
}
@keyframes head {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  10% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  16% {
    transform: translate(0px, 3px) rotate(0deg);
  }
  33% {
    transform: translate(6px, 0px) rotate(8deg);
  }
  44% {
    transform: translate(6px, 0px) rotate(8deg);
  }
  50% {
    transform: translate(0px, 3px) rotate(0deg);
  }
  66% {
    transform: translate(-6px, 0px) rotate(-8deg);
  }
  77% {
    transform: translate(-6px, 0px) rotate(-8deg);
  }
  83% {
    transform: translate(0px, 3px) rotate(0deg);
  }
  100% {
    transform: translate(0px, 0px) rotate(0deg);
  }
}
@-moz-keyframes hands {
  0% {
    transform: translate(0, 0px);
  }
  10% {
    transform: translate(0, 0px);
  }
  16% {
    transform: translate(0, -3px);
  }
  33% {
    transform: translate(0, 0px);
  }
  44% {
    transform: translate(0, 0px);
  }
  50% {
    transform: translate(0, -3px);
  }
  66% {
    transform: translate(0, 0px);
  }
  77% {
    transform: translate(0, 0px);
  }
  83% {
    transform: translate(0, -3px);
  }
  100% {
    transform: translate(0, 0px);
  }
}
@-webkit-keyframes hands {
  0% {
    transform: translate(0, 0px);
  }
  10% {
    transform: translate(0, 0px);
  }
  16% {
    transform: translate(0, -3px);
  }
  33% {
    transform: translate(0, 0px);
  }
  44% {
    transform: translate(0, 0px);
  }
  50% {
    transform: translate(0, -3px);
  }
  66% {
    transform: translate(0, 0px);
  }
  77% {
    transform: translate(0, 0px);
  }
  83% {
    transform: translate(0, -3px);
  }
  100% {
    transform: translate(0, 0px);
  }
}
@-o-keyframes hands {
  0% {
    transform: translate(0, 0px);
  }
  10% {
    transform: translate(0, 0px);
  }
  16% {
    transform: translate(0, -3px);
  }
  33% {
    transform: translate(0, 0px);
  }
  44% {
    transform: translate(0, 0px);
  }
  50% {
    transform: translate(0, -3px);
  }
  66% {
    transform: translate(0, 0px);
  }
  77% {
    transform: translate(0, 0px);
  }
  83% {
    transform: translate(0, -3px);
  }
  100% {
    transform: translate(0, 0px);
  }
}
@keyframes hands {
  0% {
    transform: translate(0, 0px);
  }
  10% {
    transform: translate(0, 0px);
  }
  16% {
    transform: translate(0, -3px);
  }
  33% {
    transform: translate(0, 0px);
  }
  44% {
    transform: translate(0, 0px);
  }
  50% {
    transform: translate(0, -3px);
  }
  66% {
    transform: translate(0, 0px);
  }
  77% {
    transform: translate(0, 0px);
  }
  83% {
    transform: translate(0, -3px);
  }
  100% {
    transform: translate(0, 0px);
  }
}
.player {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}
.player:fullscreen {
  border-radius: 0;
}
.player:fullscreen .player__logo {
  opacity: 0;
}
.player:fullscreen[data-playstate="playing"] .player__fullscreen-logo,
.player:fullscreen[data-playstate="paused"] .player__fullscreen-logo {
  display: block;
  width: calc(183px * 1.5);
}
.player:fullscreen .player__container {
  height: 100vh;
  padding: 0;
  border-radius: 0;
}
.player:fullscreen .player__video {
  width: 100%;
  height: 100%;
  background-size: cover;
  object-fit: cover;
  border-radius: 0;
}
.player:fullscreen .player__header-data {
  font-size: 24px;
  line-height: 28px;
}
.player:fullscreen .player__current-asana {
  display: flex;
  gap: 20px;
  width: 176px;
}
.player:fullscreen .player__progress-time {
  font-size: 48px;
  line-height: 56px;
  margin-bottom: 20px;
}
.player:fullscreen .player__progress {
  left: 55px;
  width: calc(100% - 110px);
}
.player:fullscreen .svg-icon--fullscreen {
  display: block;
}
.player:fullscreen .svg-icon--window {
  display: none;
}
.player:fullscreen .player-popup {
  right: 35px;
}
.player:fullscreen .player-popup--music {
  max-height: 407px;
}
.player:fullscreen .player-popup--music::after {
  right: 75px;
}
.player:fullscreen .player-popup--volume::after {
  right: 135px;
}
.player:fullscreen .player-popup--warning {
  position: relative;
  bottom: auto;
  right: auto;
  left: auto;
  background-color: transparent;
  color: #fff;
}
.player:fullscreen .player-popup--warning label {
  color: #fff;
}
.player:fullscreen .player-popup__close {
  display: none;
}
.player:fullscreen .player-popup__message {
  color: #fff;
}
.player:fullscreen .button--bordered {
  color: #fff;
  border-color: #fff;
}
@media (hover: hover) {
  .player:fullscreen .button--bordered:hover {
    border-color: #19863e;
  }
}
.player::before,
.player::after {
  display: block;
  position: absolute;
  content: "";
  z-index: 2;
  width: 100%;
  height: 80px;
  transition: transform 0.3s;
}
.player::before {
  transform: translateY(-100%);
  background-image: linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 100%);
}
.player::after {
  bottom: 0;
  transform: translateY(100%);
  background-image: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 100%);
}
.player.is-loading {
  opacity: 1;
  pointer-events: none;
}
.player.is-loading .player__loader {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}
.player__loader {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 20;
  background-color: rgba(0,0,0,0.475);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}
.player__loader lottie-player {
  width: 200px;
  height: 200px;
}
.player__fullscreen-logo {
  display: none;
  width: 183px;
  position: fixed;
  top: 30px;
  left: 55px;
  z-index: 1;
}
.player__header {
  display: flex;
  width: 100%;
  padding: 30px 55px;
  justify-content: space-between;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  color: #fff;
  transform: translateY(-100px);
  transition: transform 0.3s;
}
.player__header-data {
  display: flex;
  align-items: center;
  gap: 12px;
}
.player__ad-mark {
  position: absolute;
  opacity: 0;
  top: 20px;
  right: 35px;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  pointer-events: none;
  transition: opacity 0.3s;
}
.player__play-pause {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  background-color: #f20f0f;
  border-radius: 50%;
  transition: background-color 0.3s, opacity 0.3s, box-shadow 0.3s;
  cursor: pointer;
  opacity: 0;
}
.player__play-pause::before,
.player__play-pause::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  content: "";
}
.player__play-pause::before {
  left: 19px;
  transition: all 0.2s linear;
  width: 0;
  height: 12px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid #fff;
}
.player__play-pause::after {
  right: 15px;
  transition: all 0.3s;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 12px solid #fff;
}
.player__container {
  position: relative;
  border-radius: 16px;
  padding-bottom: 56.25%;
}
.player__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  object-fit: cover;
}
.player__video--preview {
  transition: opacity 0.3s;
  opacity: 0;
  visibility: hidden;
}
.player__controls {
  display: flex;
  gap: 35px;
  padding: 10px;
  position: absolute;
  bottom: -40px;
  right: -10px;
  z-index: 7;
}
.player__controls .svg-icon--fullscreen {
  display: none;
}
.player__controls-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  cursor: pointer;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .player__controls-button:hover {
    opacity: 0.8;
  }
}
.player__progress {
  position: absolute;
  z-index: 5;
  bottom: -2px;
  left: 25px;
  width: calc(100% - 50px);
  color: #fff;
  transform: translateY(0);
  transition: transform 0.3s;
}
.player__progress-time {
  display: inline-block;
  font-size: 24px;
  line-height: 28px;
  margin-bottom: 10px;
}
.player__progress-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 6px;
  background-color: rgba(255,255,255,0.2);
  border-radius: 15px;
  cursor: pointer;
  transition: height 0.3s;
}
@media (hover: hover) {
  .player__progress-container:hover {
    height: 10px;
  }
}
.player__progress-container .player__progress-bar {
  position: absolute;
  display: block;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-color: #f20f0f;
  transform: scaleX(0);
  transform-origin: 0 0;
  transition: transform linear 0.3s;
}
.player__progress-container .player__progress-loading {
  display: none;
  position: absolute;
  z-index: 1;
  width: 50%;
  height: 100%;
  background-color: rgba(255,255,255,0.4);
}
.player__current-asana {
  display: flex;
  gap: 10px;
  width: 100px;
  flex-direction: column;
  position: absolute;
  z-index: 1;
  bottom: 31px;
  right: 0;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.player__asana-progress {
  display: block;
  height: 7px;
  border-radius: 20px;
  position: relative;
  margin-top: auto;
  position: relative;
  overflow: hidden;
  background-color: #fff;
}
.player__asana-progress span {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: #1d9e49;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  transform: scaleX(0);
  transform-origin: 0 0;
  transition: transform linear 0.3s;
}
.player .player__lock {
  display: none;
}
.player .player__overlay {
  position: fixed;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  z-index: 15;
  background-color: rgba(1,1,1,0.5);
  bottom: 0;
  opacity: 0;
  pointer-events: none;
  transition: background 0.3s, opacity 0.3s;
}
.player .player__overlay.is-open {
  opacity: 1;
}
.player .player__overlay.is-open .player-popup--warning {
  opacity: 1;
  pointer-events: auto;
}
.player .player__overlay.is-open .player-popup--warning::after {
  display: none;
}
.player.is-loading .player__play-pause {
  display: none;
}
.player.is-loading .player__progress {
  display: none;
}
.player-popup {
  display: flex;
  flex-direction: column;
  gap: 30px;
  opacity: 0;
  transition: opacity 0.3s;
  position: absolute;
  z-index: 6;
  right: 20px;
  bottom: 75px;
  color: #fff;
  background-color: rgba(0,0,0,0.9);
  padding: 20px;
  border-radius: 20px;
  pointer-events: none;
}
.player-popup::after {
  display: block;
  position: absolute;
  content: "";
  bottom: -8px;
  background-color: rgba(0,0,0,0.9);
  width: 20px;
  height: 20px;
  border-radius: 5px;
  transform: rotate(45deg);
}
.player-popup__drag-toggle {
  display: none;
}
.player-popup--volume {
  min-width: 300px;
}
.player-popup--volume::after {
  right: 117px;
}
.player-popup--music {
  background-color: #000;
  height: calc(100% - 75px);
  width: 375px;
  padding: 55px 0 36px 0;
}
.player-popup--music::after {
  right: 60px;
}
.player-popup--music .player-popup__shadow-box,
.player-popup--music::before {
  left: 0;
  z-index: 7;
  height: 50px;
  width: 100%;
  pointer-events: none;
}
.player-popup--music .player-popup__shadow-box {
  position: absolute;
  bottom: 110px;
  background: linear-gradient(0deg, #000 16%, rgba(255,255,255,0) 100%);
}
.player-popup--music::before {
  display: block;
  position: absolute;
  content: "";
  top: 30px;
  background: linear-gradient(180deg, #000 44%, rgba(255,255,255,0) 100%);
}
.player-popup__button {
  flex-shrink: 0;
}
.player-popup__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid #252525;
}
.player-popup__wrapper .checkbox--flex {
  width: auto;
}
.player-popup__wrapper--music {
  display: none;
}
.player-popup__sound-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}
.player-popup__sound-value {
  background: #727373;
  width: 100%;
  height: 2px;
  background-size: 50% 100%;
  background-repeat: no-repeat;
  background-image: linear-gradient(#1d9e49, #1d9e49);
  padding: unset;
  border-bottom: unset;
}
.player-popup__sound-value::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: 3px solid #000;
  height: 24px;
  width: 24px;
  border-radius: 50%;
  background-color: #1d9e49;
  cursor: pointer;
}
.player-popup__sound-value::-moz-range-thumb {
  border: 3px solid #000;
  height: 24px;
  width: 24px;
  border-radius: 50%;
  background-color: #1d9e49;
  cursor: pointer;
}
.player-popup__sound-value::-ms-thumb {
  border: 3px solid #000;
  height: 24px;
  width: 24px;
  border-radius: 50%;
  background-color: #1d9e49;
  cursor: pointer;
}
.player-popup__sound-value::-webkit-slider-runnable-track {
  -webkit-appearance: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  background: transparent;
  cursor: pointer;
}
.player-popup__sound-value::-moz-range-track {
  cursor: pointer;
  box-shadow: none;
  background: transparent;
}
.player-popup__sound-value::-ms-track {
  cursor: pointer;
  box-shadow: none;
  background: transparent;
}
.player-popup__sound-button {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.player-popup__track-title {
  display: inline-block;
  font-size: 16px;
  line-height: 22px;
  transition: color 0.3s;
  margin-right: auto;
}
.player-popup__track-title::first-letter {
  text-transform: uppercase;
}
.player-popup__playlist-container {
  height: 100%;
  overflow: hidden;
}
.player-popup__track-duration {
  color: #727373;
  transition: color 0.3s;
  font-size: 14px;
  line-height: 20px;
}
.player-popup__save-box {
  display: none;
}
.player-popup__save-box input {
  display: none;
}
.player-popup__save-box label {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #252525;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin-left: 20px;
  cursor: pointer;
}
.player-popup__save-box .player-popup__save-indicator {
  width: 12px;
  height: 12px;
  background-color: #1d9e49;
  border-radius: 50%;
  transition: transform 0.3s;
  transform: scale(0);
}
.player-popup__save-box input:checked + label .player-popup__save-indicator {
  transform: scale(1);
}
.player-popup__playlist {
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
  height: 100%;
  overflow-y: scroll;
  padding: 20px;
  padding-bottom: 25px;
}
.player-popup__playlist::-webkit-scrollbar {
  width: 10px;
}
.player-popup__playlist::-webkit-scrollbar-thumb {
  background-color: #393939;
}
.player-popup__volume-list {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
.player-popup__playlist-item {
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: lowercase;
}
.player-popup__trak-box {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #252525;
}
.player-popup__trak-box .player-popup__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #1d9e49;
  transform: scaleX(0);
  transform-origin: 0 0;
  transition: transform linear 0.3s;
}
.player-popup__playlist-button {
  position: relative;
  z-index: 5;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #252525;
  flex-shrink: 0;
  cursor: pointer;
  transition: background-color 0.3s, opacity 0.3s;
}
@media (hover: hover) {
  .player-popup__playlist-button:hover {
    opacity: 0.8;
  }
}
.player-popup__playlist-button::before,
.player-popup__playlist-button::after {
  display: block;
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-7px);
  transition: left 0.3s;
}
.player-popup__playlist-button::before {
  left: 50%;
  height: 14px;
  width: 5px;
  border-radius: 4px;
}
.player-popup__playlist-button::after {
  left: 40%;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-left: 11px solid #1d9e49;
  border-bottom: 7px solid transparent;
}
.player-popup .player-popup__playlist-button.is-playing {
  background-color: #1d9e49;
}
.player-popup .player-popup__playlist-button.is-playing::before,
.player-popup .player-popup__playlist-button.is-playing::after {
  height: 14px;
  width: 4px;
  border-radius: 4px;
  background-color: #fff;
}
.player-popup .player-popup__playlist-button.is-playing::before {
  left: 57%;
}
.player-popup .player-popup__playlist-button.is-playing::after {
  left: 33%;
  border: unset;
}
.player-popup .player-popup__playlist-button.is-playing + .player-popup__trak-box .player-popup__track-title {
  color: #1d9e49;
}
.player-popup .player-popup__playlist-button.is-playing + .player-popup__trak-box .player-popup__track-title + .player-popup__track-duration {
  color: #fff;
}
.player-popup__button--playlist {
  margin: 0 auto;
  width: calc(100% - 40px);
}
.player-popup--warning {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 80px 0;
  border-radius: 0;
  background-color: #fff;
  color: #000;
}
.player-popup--warning label {
  margin-left: 10px;
  cursor: pointer;
}
.player-popup--warning .player-popup__save-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
}
.player-popup__text {
  display: inline-block;
  margin-bottom: 20px;
}
.player-popup__text--menu {
  margin-bottom: 0;
}
.player-popup__text--small {
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 0;
}
.player-popup__close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f3f3f3;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .player-popup__close:hover {
    opacity: 0.7;
  }
}
.player-popup__content {
  display: flex;
  gap: 18px;
  flex-direction: column;
  max-width: 600px;
  padding: 0 20px;
  margin: 0 auto;
  text-align: center;
}
.player-popup__caption {
  margin-bottom: 0;
}
.player-popup__message {
  padding: 0 30px 10px 30px;
  font-size: 20px;
  line-height: 28px;
  color: #131415;
}
.player-popup__button-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding-bottom: 10px;
}
.player-popup__button-block button {
  min-width: 241px;
}
.player[data-playstate="playing"][data-type="ad"] {
  pointer-events: none;
}
.player[data-playstate="playing"][data-type="ad"] .player__current-asana {
  display: none;
}
.player[data-playstate="playing"][data-type="ad"] .player__header {
  display: none;
}
.player[data-playstate="playing"][data-type="ad"] .player__ad-mark {
  opacity: 1;
  z-index: 1;
}
.player[data-playstate="playing"][data-type="ad"] .player__play-pause {
  display: none;
}
.player[data-preview="is-preview"] .player__play-pause {
  display: block;
  opacity: 1;
}
.player[data-preview="is-preview"] .player__video--preview {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.player[data-playstate="autorizedFalse"],
.player[data-daystate="availableFalse"] {
  cursor: auto;
}
.player[data-playstate="autorizedFalse"] .player__lock-wrapper,
.player[data-daystate="availableFalse"] .player__lock-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.player[data-playstate="autorizedFalse"] .player__lock-button,
.player[data-daystate="availableFalse"] .player__lock-button {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
}
.player[data-playstate="autorizedFalse"] .player__lock-button-icon,
.player[data-daystate="availableFalse"] .player__lock-button-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px auto;
  width: 52px;
  height: 52px;
  background-color: #f20f0f;
  border-radius: 50%;
  transition: box-shadow 0.3s, transform 0.3s;
}
@media (hover: hover) {
  .player[data-playstate="autorizedFalse"] .player__lock-button-icon:hover,
  .player[data-daystate="availableFalse"] .player__lock-button-icon:hover {
    box-shadow: 0px 4px 4px rgba(0,0,0,0.25);
  }
}
.player[data-playstate="autorizedFalse"] .player__message,
.player[data-daystate="availableFalse"] .player__message {
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  color: #fff;
}
.player[data-playstate="autorizedFalse"] .player__play-pause,
.player[data-daystate="availableFalse"] .player__play-pause {
  display: none;
}
.player[data-playstate="autorizedFalse"] .player__header,
.player[data-daystate="availableFalse"] .player__header {
  display: none;
}
.player[data-playstate="autorizedFalse"] .player__progress,
.player[data-daystate="availableFalse"] .player__progress {
  display: none;
}
.player[data-playstate="autorizedFalse"] .player__current-asana,
.player[data-daystate="availableFalse"] .player__current-asana {
  display: none;
}
.player[data-playstate="autorizedFalse"] .player__lock,
.player[data-daystate="availableFalse"] .player__lock {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0,0,0,0.3);
  width: 100%;
  height: 100%;
  z-index: 1;
}
.player[data-playstate="restartDay"] {
  cursor: auto;
}
.player[data-playstate="restartDay"] .player__lock-wrapper {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.player[data-playstate="restartDay"] .player__lock-wrapper--finished {
  border-right: 2px solid rgba(255,255,255,0.3);
}
.player[data-playstate="restartDay"] .player__restart-day {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background-color: #1d9e49;
  border-radius: 50%;
  margin: 0 auto;
  cursor: pointer;
  transition: box-shadow 0.3s, transform 0.3s;
  position: relative;
}
.player[data-playstate="restartDay"] .player__restart-day svg {
  fill: #fff;
  position: absolute;
  left: 20px;
}
@media (hover: hover) {
  .player[data-playstate="restartDay"] .player__restart-day:hover {
    box-shadow: 0px 4px 4px rgba(0,0,0,0.25);
  }
}
.player[data-playstate="restartDay"] .player__message {
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  color: #fff;
  width: min-content;
}
.player[data-playstate="restartDay"] .player__play-pause {
  display: none;
}
.player[data-playstate="restartDay"] .player__header {
  display: none;
}
.player[data-playstate="restartDay"] .player__progress {
  display: none;
}
.player[data-playstate="restartDay"] .player__current-asana {
  display: none;
}
.player[data-playstate="restartDay"] .player__lock {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0,0,0,0.3);
  width: 100%;
  height: 100%;
  z-index: 1;
}
@media (hover: hover) {
  .player[data-playstate="paused"] .player__play-pause:hover {
    box-shadow: 0px 4px 4px rgba(0,0,0,0.25);
  }
}
.player[data-playstate="playing"] .player__play-pause {
  background-color: #1d9e49;
}
.player[data-playstate="playing"] .player__play-pause::before {
  border-top-width: 0;
  border-bottom-width: 0;
  border-left: 4px solid #fff;
  height: 15px;
  left: 18px;
}
.player[data-playstate="playing"] .player__play-pause::after {
  border-top-width: 0;
  border-bottom-width: 0;
  border-left: 4px solid #fff;
  height: 15px;
  right: 20px;
}
.player[data-playstate="playing"] .player__current-asana,
.player[data-playstate="paused"] .player__current-asana {
  opacity: 1;
}
.player[data-popup="music"] .player__current-asana,
.player[data-popup="volume"] .player__current-asana {
  opacity: 0;
}
.player[data-popup="volume"] .player-popup--volume {
  opacity: 1;
  pointer-events: auto;
}
.player[data-popup="music"] .player-popup--music {
  opacity: 1;
  pointer-events: auto;
}
@media (hover: hover) {
  .player:not(.is-loading):not(.is-fullscreen):hover::after,
  .player:not(.is-loading):not(.is-fullscreen)[data-popup="music"]::after,
  .player:not(.is-loading):not(.is-fullscreen)[data-popup="volume"]::after {
    transform: translateY(0%);
  }
  .player:not(.is-loading):not(.is-fullscreen):hover::before,
  .player:not(.is-loading):not(.is-fullscreen)[data-popup="music"]::before,
  .player:not(.is-loading):not(.is-fullscreen)[data-popup="volume"]::before {
    transform: translateY(0%);
  }
  .player:not(.is-loading):not(.is-fullscreen):hover .player__header,
  .player:not(.is-loading):not(.is-fullscreen)[data-popup="music"] .player__header,
  .player:not(.is-loading):not(.is-fullscreen)[data-popup="volume"] .player__header {
    transform: translateY(0%);
  }
  .player:not(.is-loading):not(.is-fullscreen):hover .player__play-pause,
  .player:not(.is-loading):not(.is-fullscreen)[data-popup="music"] .player__play-pause,
  .player:not(.is-loading):not(.is-fullscreen)[data-popup="volume"] .player__play-pause {
    opacity: 1;
  }
  .player:not(.is-loading):not(.is-fullscreen):hover .player__play-pause:hover,
  .player:not(.is-loading):not(.is-fullscreen)[data-popup="music"] .player__play-pause:hover,
  .player:not(.is-loading):not(.is-fullscreen)[data-popup="volume"] .player__play-pause:hover {
    box-shadow: 0px 4px 4px rgba(0,0,0,0.25);
  }
  .player:not(.is-loading):not(.is-fullscreen):hover .player__controls,
  .player:not(.is-loading):not(.is-fullscreen)[data-popup="music"] .player__controls,
  .player:not(.is-loading):not(.is-fullscreen)[data-popup="volume"] .player__controls {
    opacity: 1;
    pointer-events: auto;
    bottom: unset;
  }
  .player:not(.is-loading):not(.is-fullscreen):hover .player__progress,
  .player:not(.is-loading):not(.is-fullscreen)[data-popup="music"] .player__progress,
  .player:not(.is-loading):not(.is-fullscreen)[data-popup="volume"] .player__progress {
    transform: translateY(-62px);
  }
}
.player.player:not(.is-loading):not(.is-fullscreen).is-tap-hover::after {
  transform: translateY(0%);
}
.player.player:not(.is-loading):not(.is-fullscreen).is-tap-hover::before {
  transform: translateY(0%);
}
.player.player:not(.is-loading):not(.is-fullscreen).is-tap-hover .player__header {
  transform: translateY(0%);
}
.player.player:not(.is-loading):not(.is-fullscreen).is-tap-hover .player__play-pause {
  opacity: 1;
}
.player.player:not(.is-loading):not(.is-fullscreen).is-tap-hover .player__play-pause:hover {
  box-shadow: 0px 4px 4px rgba(0,0,0,0.25);
}
.player.player:not(.is-loading):not(.is-fullscreen).is-tap-hover .player__controls {
  opacity: 1;
  pointer-events: auto;
  bottom: unset;
}
.player.player:not(.is-loading):not(.is-fullscreen).is-tap-hover .player__progress {
  transform: translateY(-62px);
}
@media only screen and (min-width: 1024px) {
  .is-fullscreen.is-hover::after,
  .is-fullscreen[data-popup="music"]::after,
  .is-fullscreen[data-popup="volume"]::after {
    transform: translateY(0%);
  }
  .is-fullscreen.is-hover::before,
  .is-fullscreen[data-popup="music"]::before,
  .is-fullscreen[data-popup="volume"]::before {
    transform: translateY(0%);
  }
  .is-fullscreen.is-hover .player__header,
  .is-fullscreen[data-popup="music"] .player__header,
  .is-fullscreen[data-popup="volume"] .player__header {
    transform: translateY(0%);
  }
  .is-fullscreen.is-hover .player__play-pause,
  .is-fullscreen[data-popup="music"] .player__play-pause,
  .is-fullscreen[data-popup="volume"] .player__play-pause {
    opacity: 1;
  }
  .is-fullscreen.is-hover .player__play-pause:hover,
  .is-fullscreen[data-popup="music"] .player__play-pause:hover,
  .is-fullscreen[data-popup="volume"] .player__play-pause:hover {
    box-shadow: 0px 4px 4px rgba(0,0,0,0.25);
  }
  .is-fullscreen.is-hover .player__controls,
  .is-fullscreen[data-popup="music"] .player__controls,
  .is-fullscreen[data-popup="volume"] .player__controls {
    opacity: 1;
    pointer-events: auto;
    bottom: unset;
  }
  .is-fullscreen.is-hover .player__progress,
  .is-fullscreen[data-popup="music"] .player__progress,
  .is-fullscreen[data-popup="volume"] .player__progress {
    transform: translateY(-62px);
  }
  .is-fullscreen.is-hover.is-hover .player__controls,
  .is-fullscreen[data-popup="music"].is-hover .player__controls,
  .is-fullscreen[data-popup="volume"].is-hover .player__controls {
    opacity: 1;
    pointer-events: auto;
  }
}
@media only screen and (max-width: 1365px) {
  .player__controls {
    bottom: 10px;
  }
  .player[data-playstate="paused"] .player__play-pause {
    opacity: 1;
  }
  .player[data-playstate="paused"] .player__current-asana {
    opacity: 0;
  }
  .player[data-playstate="paused"] .player__controls {
    opacity: 1;
  }
  .player[data-playstate="playing"] .player__current-asana {
    bottom: 20px;
    opacity: 1;
  }
  .player[data-playstate="playing"] .player__play-pause {
    opacity: 0;
  }
  .player[data-playstate="playing"] .player__controls {
    opacity: 0;
    pointer-events: none;
  }
  .player.player:not(.is-loading):not(.is-fullscreen).is-tap-hover::after {
    display: none;
  }
  .player.player:not(.is-loading):not(.is-fullscreen).is-tap-hover::before {
    display: none;
  }
  .player.player:not(.is-loading):not(.is-fullscreen).is-tap-hover .player__header {
    display: none;
  }
  .player.player:not(.is-loading):not(.is-fullscreen).is-tap-hover .player__play-pause {
    opacity: 1;
  }
  .player.player:not(.is-loading):not(.is-fullscreen).is-tap-hover .player__progress {
    transform: none;
  }
  .player.player:not(.is-loading):not(.is-fullscreen).is-tap-hover .player__controls {
    opacity: 1;
    bottom: 10px;
    pointer-events: auto;
  }
  .player.player:not(.is-loading):not(.is-fullscreen).is-tap-hover .player__current-asana {
    opacity: 0;
  }
  .player[data-playstate="playing"].is-tap-hover .player__play-pause {
    opacity: 1;
  }
}
@media only screen and (max-width: 1023px) {
  .player:fullscreen[data-playstate="playing"] .player__fullscreen-logo,
  .player:fullscreen[data-playstate="paused"] .player__fullscreen-logo {
    display: block;
    width: 183px;
  }
  .player:fullscreen .player-popup {
    right: auto;
    padding-bottom: 35px;
  }
  .player:fullscreen .player__current-asana {
    display: flex;
    gap: 10px;
    width: 100px;
  }
  .player:fullscreen .player__progress-time {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 10px;
  }
  .player:fullscreen .player__logo {
    width: calc(183px * 1);
  }
  .player:fullscreen .player__header-data {
    font-size: 14px;
    line-height: 20px;
  }
  .player__progress-time--asanas {
    display: none;
  }
  .player .player__volume-overlay,
  .player .player__music-overlay {
    position: fixed;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    z-index: 15;
    background-color: rgba(1,1,1,0.5);
    bottom: 0;
    opacity: 0;
    pointer-events: none;
    transition: background 0.3s, opacity 0.3s;
    z-index: 91;
  }
  .player__header {
    padding: 20px;
  }
  .player__logo {
    width: 30%;
  }
  .player[data-popup="music"] .player__music-overlay {
    opacity: 1;
  }
  .player[data-popup="volume"] .player__volume-overlay {
    opacity: 1;
  }
  .player-popup {
    position: absolute;
    bottom: auto;
    z-index: 16;
    background-color: #000;
    right: auto;
  }
  .player-popup--music {
    height: 60%;
  }
  .player-popup::after {
    display: none;
  }
  .player-popup--music {
    max-height: 70%;
  }
  .player-popup--warning {
    bottom: 0;
    background-color: #fff;
  }
  .player__current-asana {
    bottom: 20px;
  }
  .player__play-pause {
    opacity: 1;
  }
}
@media only screen and (max-width: 767px) {
  .player {
    border-radius: 0;
    width: calc(100% + 40px);
    margin-left: -20px;
  }
  .player:fullscreen.is-hover .player__current-asana {
    opacity: 0;
  }
  .player:fullscreen.is-hover .player__controls {
    opacity: 1;
    pointer-events: auto;
  }
  .player:fullscreen .player-popup {
    width: 100%;
    right: 0;
  }
  .player:fullscreen .player__volume-overlay,
  .player:fullscreen .player__music-overlay {
    bottom: 0;
  }
  .player:fullscreen .player-popup__text--small {
    color: #fff;
  }
  .player__controls-button--asanas {
    display: none;
  }
  .player__header-data {
    font-size: 12px;
  }
  .player__video {
    border-radius: 0;
  }
  .player__container {
    border-radius: 0;
  }
  .player__current-asana {
    width: 60px;
  }
  .player-popup {
    position: absolute;
    right: 0;
    bottom: 0;
    padding-bottom: 40px;
    background-color: #fff;
    width: 100%;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .player-popup--music .player-popup__shadow-box,
  .player-popup--music::before {
    left: 0;
    z-index: 7;
    height: 50px;
    width: 100%;
    pointer-events: none;
  }
  .player-popup--music .player-popup__shadow-box {
    position: absolute;
    bottom: 110px;
    background: linear-gradient(0deg, #fff 43%, rgba(255,255,255,0) 100%);
  }
  .player-popup--music::before {
    display: block;
    position: absolute;
    content: "";
    top: 30px;
    background: linear-gradient(180deg, #fff 44%, rgba(255,255,255,0) 100%);
  }
  .player-popup--warning {
    padding: 38px 0;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }
  .player-popup--volume,
  .player-popup--music {
    transform: translateY(100%);
    opacity: 1;
    transition: transform 0.3s;
  }
  .player[data-popup="volume"] .player-popup--volume {
    transform: translateY(0);
  }
  .player[data-popup="music"] .player-popup--music {
    transform: translateY(0);
  }
  .player-popup__close {
    display: none;
  }
  .player-popup__button-block {
    flex-direction: column;
  }
  .player-popup__message {
    padding: 0 0 10px 0;
    font-size: 18px;
    line-height: 22px;
  }
  .player-popup__playlist-button {
    background-color: #f3f3f3;
  }
  .player-popup__save-box label {
    border: 2px solid #a9a9a9;
  }
  .player-popup__playlist-button.is-playing + .player-popup__trak-box .player-popup__track-title + .player-popup__track-duration {
    color: #000;
  }
  .player-popup__trak-box {
    border-bottom: 1px solid #eaeaea;
  }
  .player-popup__sound-value {
    background: #d0d0d0;
    background-size: 50% 100%;
    background-repeat: no-repeat;
    background-image: linear-gradient(#1d9e49, #1d9e49);
  }
  .player-popup__sound-value::-webkit-slider-thumb {
    border: 3px solid #fff;
    box-shadow: 0px 2px 9px rgba(17,30,22,0.188);
  }
  .player-popup__sound-value::-moz-range-thumb {
    border: 3px solid #fff;
    box-shadow: 0px 2px 9px rgba(17,30,22,0.188);
  }
  .player-popup__sound-value::-ms-thumb {
    border: 3px solid #fff;
    box-shadow: 0px 2px 9px rgba(17,30,22,0.188);
  }
  .player-popup__playlist {
    padding-bottom: 25px;
  }
  .player-popup__playlist::-webkit-scrollbar {
    display: none;
  }
  .player-popup__playlist::-webkit-scrollbar-thumb {
    display: none;
  }
  .player-popup__wrapper {
    border-bottom: 1px solid #eaeaea;
  }
  .player-popup__text {
    color: #000;
  }
  .player-popup__track-title {
    color: #000;
  }
  .player-popup__drag-toggle {
    position: absolute;
    z-index: 7;
    top: 10px;
    left: calc(50% - 20px);
    display: block;
    width: 40px;
    height: 5px;
    background-color: #eaeaea;
    border-radius: 6px;
  }
  .player-popup__playlist-button.is-playing + .player-popup__trak-box .player-popup__track-title + .player-popup__track-duration {
    color: #000;
  }
}
bodys.is-popup-open {
  position: relative;
}
@media only screen and (max-width: 1023px) {
  bodys.is-popup-open {
    height: 100vh;
    overflow-y: hidden;
  }
}
bodys.is-warning-open.is-iphone {
  height: auto;
  overflow-y: auto;
}
bodys.is-fullscreen.is-iphone,
bodys.is-fullscreen.is-ipad {
  background-color: #000;
  height: 100vh;
  overflow-y: hidden;
}
bodys.is-fullscreen.is-iphone .player,
bodys.is-fullscreen.is-ipad .player {
  position: fixed;
  z-index: 100;
  inset: 0;
  border-radius: 0;
}
bodys.is-fullscreen.is-iphone .player .player__logo,
bodys.is-fullscreen.is-ipad .player .player__logo {
  opacity: 0;
}
bodys.is-fullscreen.is-iphone .player .player__progress,
bodys.is-fullscreen.is-ipad .player .player__progress {
  left: 75px;
  width: calc(100% - 150px);
}
bodys.is-fullscreen.is-iphone .player .player__video,
bodys.is-fullscreen.is-ipad .player .player__video {
  border-radius: 0;
  height: 100vh;
  background-color: #4e4e4e;
}
bodys.is-fullscreen.is-iphone .player .player__container,
bodys.is-fullscreen.is-ipad .player .player__container {
  border-radius: 0;
}
bodys.is-fullscreen.is-iphone .player .svg-icon--fullscreen,
bodys.is-fullscreen.is-ipad .player .svg-icon--fullscreen {
  display: block;
}
bodys.is-fullscreen.is-iphone .player .svg-icon--window,
bodys.is-fullscreen.is-ipad .player .svg-icon--window {
  display: none;
}
bodys.is-fullscreen.is-iphone .player[data-playstate="playing"] .player__fullscreen-logo,
bodys.is-fullscreen.is-ipad .player[data-playstate="playing"] .player__fullscreen-logo,
bodys.is-fullscreen.is-iphone .player[data-playstate="paused"] .player__fullscreen-logo,
bodys.is-fullscreen.is-ipad .player[data-playstate="paused"] .player__fullscreen-logo {
  display: block;
  width: 183px;
  top: 20px;
  left: 55px;
  z-index: 1;
}
bodys.is-fullscreen.is-iphone .player[data-playstate="playing"][data-type="ad"] .player__fullscreen-logo,
bodys.is-fullscreen.is-ipad .player[data-playstate="playing"][data-type="ad"] .player__fullscreen-logo {
  display: none;
}
bodys.is-iphone .player__loader,
bodys.is-ipad .player__loader {
  background-color: #f3f3f3;
}
bodys.is-iphone .player-popup--volume,
bodys.is-ipad .player-popup--volume {
  gap: 20px;
}
bodys.is-iphone .player-popup__volume-list,
bodys.is-ipad .player-popup__volume-list {
  display: none;
}
bodys.is-iphone .player-popup__wrapper,
bodys.is-ipad .player-popup__wrapper {
  border-bottom: none;
  padding-bottom: 0;
}
bodys.is-iphone .player-popup__wrapper:first-child,
bodys.is-ipad .player-popup__wrapper:first-child {
  margin-top: 20px;
}
bodys.is-iphone .player-popup__wrapper--music,
bodys.is-ipad .player-popup__wrapper--music {
  display: flex;
}
@media only screen and (max-width: 767px) {
  bodys.is-iphone .player-popup,
  bodys.is-ipad .player-popup {
    padding-bottom: 100px;
  }
  bodys.is-iphone .player-popup--music .player-popup__shadow-box,
  bodys.is-ipad .player-popup--music .player-popup__shadow-box {
    bottom: 170px;
  }
}
@media (orientation: landscape) and (min-width: 1199px) {
  bodys.is-ipad .player.is-tap-hover::after {
    transform: translateY(0%);
  }
  bodys.is-ipad .player.is-tap-hover::before {
    transform: translateY(0%);
  }
  bodys.is-ipad .player.is-tap-hover .player__header {
    transform: translateY(0%);
  }
  bodys.is-ipad .player.is-tap-hover .player__play-pause {
    opacity: 1;
  }
  bodys.is-ipad .player.is-tap-hover .player__play-pause:hover {
    box-shadow: 0px 4px 4px rgba(0,0,0,0.25);
  }
  bodys.is-ipad .player.is-tap-hover .player__controls {
    opacity: 1;
    pointer-events: auto;
    bottom: unset;
  }
  bodys.is-ipad .player.is-tap-hover .player__progress {
    transform: translateY(-62px);
  }
}
bodys[data-route="asana-details"] .player__current-asana {
  display: none;
}
bodys[data-route="asana-details"] .player:fullscreen .player__current-asana {
  display: none;
}
@media only screen and (max-width: 1023px) and (orientation: landscape) {
  .player-popup--music {
    max-height: 100vh;
    height: 100vh;
    border-radius: 0;
  }
}
@media only screen and (max-width: 767px) and (orientation: portrait) {
  .player__header {
    display: none;
  }
  .player__current-asana {
    display: none;
  }
}
.scheme {
  display: none;
  padding: 50px 40px 50px 40px;
  position: relative;
  z-index: 8;
}
.scheme__start-timer {
  position: absolute;
  overflow: hidden;
  z-index: 10;
  top: 93px;
  left: calc(50% - 117px);
  width: 226px;
  height: 226px;
  background-color: #f20f0f;
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.3s;
}
.scheme__start-timer.is-start {
  transform: scale(1);
}
.scheme__start-items {
  display: flex;
  transition: opacity 0.3s, transform 0.3s;
  justify-content: center;
  align-items: center;
  height: 226px;
  color: #fff;
  font-weight: 600;
  font-size: 148px;
  line-height: 174px;
  margin: 0 auto;
  opacity: 1;
}
.scheme__start-items.is-start {
  animation: slide 1s infinite;
}
.scheme .player__play-pause--scheme {
  opacity: 1;
  top: 180px;
  left: calc(50% - 30px);
  transform: scale(4.1);
}
@media (hover: hover) {
  .scheme .player__play-pause--scheme:hover {
    box-shadow: 0px 4px 4px rgba(0,0,0,0.25);
  }
}
.scheme__container {
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 40px;
}
@media only screen and (max-width: 1199px) {
  .scheme__container {
    padding: 0 20px;
  }
}
.scheme__wrapper {
  display: flex;
  flex-direction: column;
}
.scheme__info-block {
  white-space: nowrap;
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  flex-direction: column;
  text-align: center;
  margin: 0 0 74px 0;
}
.scheme__info-block--bottom {
  margin: 34px 0 0 0;
}
.scheme__title {
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 45%;
  margin: 0 auto 6px auto;
}
.scheme__subtitle {
  color: #a9a9a9;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 35%;
  margin: 0 auto;
}
.scheme__back {
  position: absolute;
  left: 0;
  top: 8px;
  display: flex;
  gap: 10px;
  align-items: center;
  color: #1d9e49;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  transition: opacity 0.3s, color 0.3s, transform 0.3s;
  cursor: pointer;
  transform: translateY(0);
  pointer-events: auto;
}
.scheme__back span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
  text-align: left;
}
.scheme__back--mobile {
  display: none;
  position: relative;
  color: #000;
  font-size: 16px;
  line-height: 22px;
  width: 100%;
  max-height: 50px;
  overflow: hidden;
  transition: max-height 0.3s, opacity 0.3s, margin 0.3s;
  margin-bottom: 60px;
}
.scheme__back--mobile span {
  margin: 0 auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 70%;
}
.scheme__top {
  position: relative;
}
.scheme__player {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.scheme__progress {
  display: flex;
  justify-content: center;
  position: absolute;
  width: 555px;
  z-index: 2;
  top: -20px;
  left: calc(50% - 277px);
}
.scheme__asana-progress {
  opacity: 0;
  display: flex;
  width: 278px;
  height: 3px;
  margin: 20px auto 0 auto;
  position: relative;
  background-color: #efefef;
  transition: opacity 0.3s;
}
.scheme__asana-progress span {
  display: block;
  width: 278px;
  height: 105%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #1d9e49;
  transform: scaleX(0);
  transform-origin: 0 0;
  transition: transform linear 0.3s;
}
.scheme__asana-marker {
  position: absolute;
  z-index: 1;
  top: -3px;
  left: -1px;
  background-color: #1d9e49;
  height: 9px;
  width: 9px;
  border-radius: 50%;
  border: 1px solid #fff;
  transform: translateX(0);
  transform-origin: 0 0;
  transition: transform linear 0.3s;
}
.scheme__progress-bar {
  position: relative;
  transform: scale(-1, 1);
  left: calc(50% - 65px);
}
.scheme__progress-bar svg {
  position: absolute;
  top: 0;
  left: 0;
  stroke: #f3f3f3;
  stroke-width: 16px;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.scheme__asana-bars {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
}
.scheme__asana-bar {
  width: 2px;
  height: 3px;
  opacity: 0.45;
  background-color: #c4c4c4;
  transition: background-color 0.3s;
  position: absolute;
  top: 0;
}
.scheme__asana-bar.is-active {
  background-color: #fff;
}
.scheme__progress-path {
  stroke: #f20f0f;
  stroke-dasharray: 650;
  stroke-dashoffset: 650;
  transition: stroke-dashoffset 0.3s;
}
.scheme__position {
  position: absolute;
  top: 0;
  left: 0;
  width: 42px;
  height: 42px;
}
.scheme__position svg {
  width: 100%;
}
.scheme__counter {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  font-size: 30px;
  line-height: 30px;
}
.scheme__counter-current {
  margin-right: 5px;
}
.scheme__remain {
  display: flex;
  flex-direction: column;
  color: #a9a9a9;
}
.scheme__remain-subtitle {
  font-size: 12px;
  line-height: 14px;
  font-weight: 500;
  text-align: right;
}
.scheme__image {
  margin: 0 auto;
  line-height: 0;
  z-index: 1;
  opacity: 0.3;
  transition: opacity 0.3s;
}
.scheme__image img {
  height: 444px;
  width: 100%;
  object-fit: contain;
}
.scheme__bottom {
  position: relative;
}
.scheme__button {
  width: 176px;
  margin: 0 auto;
  padding: 6px 13px;
  border-radius: 999px;
  background-color: #f3f3f3;
  color: #000;
  font-size: 14px;
  line-height: 16px;
  cursor: pointer;
  transition: background-color 0.5s, opacity 0.3s, color 0.5s;
  pointer-events: auto;
  opacity: 1;
}
.scheme__button:focus,
.scheme__button:active {
  background-color: #1d9e49;
  color: #fff;
}
.scheme__button.is-timer {
  opacity: 0;
  pointer-events: none;
}
.scheme__timer {
  margin-top: 23px;
  font-size: 55px;
  line-height: 55px;
  color: #a9a9a9;
  transition: opacity 0.3s;
  transform-style: color 0.3s;
}
.scheme__controls {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 40px;
  transform: translateY(12px);
  transition: transform 0.3s, opacity 0.3s;
}
.scheme__controls.is-timer {
  opacity: 0;
  pointer-events: none;
}
.scheme__control {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #f3f3f3;
  color: #1d9e49;
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  padding: 13px;
  border-radius: 52px;
  cursor: pointer;
  margin-right: 6px;
  transition: color 0.3s, background-color 0.3s;
}
.scheme__control:last-child {
  margin-right: 0;
}
.scheme__control--mobile {
  display: none;
}
.scheme__control .svg-icon {
  flex-shrink: 0;
  fill: currentColor;
}
.scheme__control .svg-icon--music,
.scheme__control .svg-icon--video {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
}
.scheme__control .svg-icon--music circle,
.scheme__control .svg-icon--video circle {
  fill: currentColor;
}
.scheme__control .svg-icon--video path {
  fill: currentColor;
}
.scheme__control span {
  margin-left: 10px;
}
.scheme__control.is-active {
  color: #fff !important;
  background-color: #1d9e49;
}
.scheme__control.is-active .svg-icon {
  fill: #fff;
}
.scheme-info {
  padding: 40px 90px 40px 40px;
}
.scheme-info__title {
  font-size: 30px;
  font-weight: 600;
  line-height: 35px;
  margin-bottom: 5px;
}
.scheme-info__subtitle {
  font-size: 14px;
  line-height: 20px;
  color: #727373;
}
.scheme-info__block {
  margin-top: 30px;
}
.scheme-info__list {
  margin-top: 20px;
}
.scheme-info__item {
  padding-left: 24px;
  position: relative;
}
.scheme-info__item:before {
  display: block;
  position: absolute;
  content: "";
  left: 0;
  top: 0.5em;
  transform: translateY(0);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #1d9e49;
}
.scheme-info__list--contraindications li:before {
  background-color: #f20f0f;
}
.scheme-info__link {
  display: inline-block;
  margin-top: 30px;
  padding-right: 15px 34px 0 0;
}
.scheme-info__link svg {
  margin-top: -10px;
}
.scheme__player[data-playstate="paused"] .scheme__image {
  opacity: 0.3;
}
.scheme__player[data-playstate="paused"] .player__play-pause--scheme {
  opacity: 1;
  pointer-events: auto;
}
.scheme__player[data-playstate="playing"] .scheme__image {
  opacity: 1;
}
.scheme__player[data-playstate="playing"] .scheme__asana-progress {
  opacity: 1;
}
.scheme__player[data-playstate="playing"] .scheme__timer {
  color: #000;
}
.scheme__player[data-playstate="playing"] .scheme__button {
  opacity: 0;
  pointer-events: none;
  display: none;
}
.scheme__player[data-playstate="playing"] .player__play-pause {
  opacity: 0;
  pointer-events: none;
  background-color: #1d9e49;
}
.scheme__player[data-playstate="playing"] .player__play-pause::before {
  border-top-width: 0;
  border-bottom-width: 0;
  border-left: 4px solid #fff;
  height: 15px;
  left: 18px;
}
.scheme__player[data-playstate="playing"] .player__play-pause::after {
  border-top-width: 0;
  border-bottom-width: 0;
  border-left: 4px solid #fff;
  height: 15px;
  right: 20px;
}
.player__volume-overlay--scheme .player-popup,
.player__music-overlay--scheme .player-popup {
  color: #000;
  bottom: 110px;
  font-weight: 500;
  background-color: #fff;
  box-shadow: 0px 4px 54px 0px rgba(0,0,0,0.1);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.player__volume-overlay--scheme .player-popup__button,
.player__music-overlay--scheme .player-popup__button {
  width: 335px;
  margin: 0 auto;
}
.player__volume-overlay--scheme .player-popup__wrapper,
.player__music-overlay--scheme .player-popup__wrapper {
  border-bottom: 1px solid #eaeaea;
}
.player__volume-overlay--scheme .player-popup__sound-value,
.player__music-overlay--scheme .player-popup__sound-value {
  background: #d0d0d0;
  background-size: 50% 100%;
  background-repeat: no-repeat;
  background-image: linear-gradient(#1d9e49, #1d9e49);
}
.player__volume-overlay--scheme .player-popup__sound-value::-webkit-slider-thumb,
.player__music-overlay--scheme .player-popup__sound-value::-webkit-slider-thumb {
  border: 3px solid #fff;
  box-shadow: 0px 2px 9px 0px rgba(17,30,22,0.188);
}
.player__volume-overlay--scheme .player-popup::after,
.player__music-overlay--scheme .player-popup::after {
  bottom: -8px;
  left: 50%;
  background-color: #fff;
  border-radius: 0;
}
.player__volume-overlay--scheme .player-popup__text,
.player__music-overlay--scheme .player-popup__text {
  width: 100%;
  text-align: left;
}
.player__volume-overlay--scheme .player-popup__playlist-button,
.player__music-overlay--scheme .player-popup__playlist-button {
  background-color: #f3f3f3;
}
.player__volume-overlay--scheme .player-popup__playlist,
.player__music-overlay--scheme .player-popup__playlist {
  padding-bottom: 25px;
}
.player__volume-overlay--scheme .player-popup__playlist::-webkit-scrollbar,
.player__music-overlay--scheme .player-popup__playlist::-webkit-scrollbar {
  display: none;
}
.player__volume-overlay--scheme .player-popup__playlist::-webkit-scrollbar-thumb,
.player__music-overlay--scheme .player-popup__playlist::-webkit-scrollbar-thumb {
  display: none;
}
.player__volume-overlay--scheme .player-popup--volume,
.player__music-overlay--scheme .player-popup--volume {
  right: 30px;
}
.player__volume-overlay--scheme .player-popup--music,
.player__music-overlay--scheme .player-popup--music {
  right: 88px;
  min-height: 420px;
  padding-top: 20px;
}
.player__volume-overlay--scheme .player-popup--music .player-popup__shadow-box,
.player__music-overlay--scheme .player-popup--music .player-popup__shadow-box,
.player__volume-overlay--scheme .player-popup--music::before,
.player__music-overlay--scheme .player-popup--music::before {
  left: 0;
  z-index: 7;
  height: 30px;
  width: 100%;
  pointer-events: none;
}
.player__volume-overlay--scheme .player-popup--music .player-popup__shadow-box,
.player__music-overlay--scheme .player-popup--music .player-popup__shadow-box {
  position: absolute;
  bottom: 110px;
  background: linear-gradient(0deg, #fff 43%, rgba(255,255,255,0) 100%);
}
.player__volume-overlay--scheme .player-popup--music::before,
.player__music-overlay--scheme .player-popup--music::before {
  display: block;
  position: absolute;
  content: "";
  top: 10px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background: linear-gradient(180deg, #fff 44%, rgba(255,255,255,0) 100%);
}
.player__volume-overlay--scheme .player-popup--music .player-popup__playlist,
.player__music-overlay--scheme .player-popup--music .player-popup__playlist {
  padding-top: 10px;
}
.scheme[data-popup="volume"] .scheme__control--volume {
  color: #fff;
  background-color: #a9a9a9;
}
.scheme[data-popup="volume"] .player-popup--volume {
  z-index: 10;
  opacity: 1;
  pointer-events: auto;
}
.scheme[data-popup="music"] .scheme__control--music {
  color: #fff;
  background-color: #a9a9a9;
}
.scheme[data-popup="music"] .player-popup--music {
  z-index: 10;
  opacity: 1;
  pointer-events: auto;
}
@media (hover: hover) {
  .scheme__button:hover {
    background-color: #f4f1ed;
  }
  .scheme__control:hover {
    color: #fff;
    background-color: #a9a9a9;
  }
  .scheme__back:hover {
    color: #19863e;
  }
  .scheme__player[data-playstate="playing"] .scheme__player-hover-block {
    position: absolute;
    left: calc(50% - 200px);
    top: 0;
    z-index: 10;
    width: 400px;
    height: 100%;
  }
  .scheme__player[data-playstate="playing"] .scheme__player-hover-block:hover .player__play-pause {
    opacity: 1;
    pointer-events: auto;
  }
}
@media only screen and (max-width: 1365px) {
  .scheme__player[data-playstate="playing"].is-tap-hover .player__play-pause {
    opacity: 1;
    pointer-events: auto;
  }
}
@media only screen and (max-width: 1023px) {
  .scheme {
    padding: 0 0 150px 0;
  }
  .scheme__back {
    display: none;
  }
  .scheme__back--mobile {
    display: flex;
  }
  .scheme__title {
    max-width: 80%;
  }
  .scheme__subtitle {
    max-width: 65%;
  }
  .scheme__controls {
    position: fixed;
    z-index: 10;
    background-color: #fff;
    border-top: 1px solid #f3f3f3;
    width: 100%;
    padding: 10px 0 30px 0;
    display: flex;
    justify-content: center;
    gap: 55px;
    bottom: 0;
    transform: translateY(0);
  }
  .scheme__control {
    background-color: #fff;
    margin: 0;
  }
  .scheme__control--share {
    display: none;
  }
  .scheme__control--mobile {
    display: flex;
    padding-right: 0;
    background-color: transparent;
  }
  .scheme .player-popup--volume,
  .scheme .player-popup--music {
    transform: translateY(100%);
    opacity: 1;
    transition: transform 0.3s;
  }
  .player__volume-overlay,
  .player__music-overlay {
    position: fixed;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    z-index: 15;
    background-color: rgba(1,1,1,0.5);
    bottom: 0;
    opacity: 0;
    pointer-events: none;
    transition: background 0.3s, opacity 0.3s;
  }
  .player__volume-overlay--scheme .player-popup,
  .player__music-overlay--scheme .player-popup {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100%;
  }
  .player__volume-overlay--scheme .player-popup::after,
  .player__music-overlay--scheme .player-popup::after {
    display: none;
  }
  .player[data-popup="volume"] .player-popup--volume {
    transform: translateY(0);
  }
  .player[data-popup="music"] .player-popup--music {
    transform: translateY(0);
  }
  .scheme[data-popup="music"] .player__music-overlay {
    opacity: 1;
  }
  .scheme[data-popup="music"] .player-popup--music {
    height: 400px;
    transform: translateY(0);
  }
  .scheme[data-popup="volume"] .player__volume-overlay {
    opacity: 1;
  }
  .scheme[data-popup="volume"] .player-popup--volume {
    transform: translateY(0);
  }
  .player-popup--music {
    max-height: unset;
  }
}
@media only screen and (max-width: 767px) {
  .scheme .player__play-pause--scheme {
    top: 180px;
    transform: scale(1);
  }
  .scheme__start-timer {
    top: 25px;
  }
  .scheme__mobile-wrapper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 57px;
  }
  .scheme__title {
    font-size: 20px;
    line-height: 24px;
  }
  .scheme__subtitle {
    font-size: 12px;
    line-height: 14px;
  }
  .scheme__position {
    width: 30px;
    height: 30px;
  }
  .scheme__progress {
    display: flex;
    justify-content: space-around;
    position: absolute;
    width: 290px;
    z-index: 2;
    top: -20px;
    left: calc(50% - 145px);
  }
  .scheme__progress-bar {
    margin-top: -20px;
    left: 50%;
  }
  .scheme__progress-bar svg {
    width: 290px;
  }
  .scheme__image img {
    height: 312px;
  }
  .scheme__controls {
    bottom: 0;
  }
  .scheme-info {
    padding: 20px;
  }
  .scheme-info__title {
    display: none;
  }
  .scheme-info__subtitle--main {
    display: inline-block;
    width: 100%;
    margin-top: 0;
    text-align: center;
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
    color: #000;
  }
  .scheme-info__block {
    margin-top: 25px;
  }
  .scheme-info__list {
    margin-top: 10px;
  }
}
bodys.is-scheme .header {
  transition: transform 0.3s;
  transform: translateY(0);
}
bodys.is-scheme.is-schemePlaying .header {
  transform: translateY(-100%);
}
bodys.is-scheme.is-schemePlaying .footer {
  display: none;
}
body.is-scheme.is-schemePlaying .scheme {
  padding: 50px 0 100px 0;
}
body.is-scheme.is-schemePlaying .scheme .scheme__back--mobile {
  max-height: 0;
  opacity: 0;
  margin: 0;
  color: #fff;
}
@media only screen and (max-width: 1023px) {
  body.is-scheme.is-schemePlaying .scheme {
    padding: 0 0 50px 0;
  }
  body.is-scheme.is-schemePlaying .scheme__controls {
    transform: translateY(100%);
  }
  body.is-scheme.is-schemePlaying body.is-scheme.is-warning-open.is-popup-open {
    height: auto;
    overflow: hidden;
  }
}
@media only screen and (max-width: 767px) {
  body.is-scheme.is-schemePlaying .scheme {
    margin-top: -45px;
  }
  body.is-scheme.is-schemePlaying .scheme .scheme__controls {
    transform: translateY(100%);
  }
}
body.is-scheme.is-warning-open {
  height: auto;
  overflow: auto;
}
body.is-scheme.is-warning-open.is-overflow {
  height: auto;
  overflow: hidden;
}
@-moz-keyframes slide {
  0% {
    transform: translateY(100%);
  }
  50% {
    transform: scale(1);
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-100%);
  }
}
@-webkit-keyframes slide {
  0% {
    transform: translateY(100%);
  }
  50% {
    transform: scale(1);
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-100%);
  }
}
@-o-keyframes slide {
  0% {
    transform: translateY(100%);
  }
  50% {
    transform: scale(1);
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-100%);
  }
}
@keyframes slide {
  0% {
    transform: translateY(100%);
  }
  50% {
    transform: scale(1);
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-100%);
  }
}
@media only screen and (max-width: 1023px) and (orientation: landscape) {
  .player-popup--music {
    max-height: 100vh;
    height: 100vh;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
  }
}
.social {
  margin: 50px 0 50px 0;
}
.social__text {
  color: #727373;
  margin-bottom: 20px;
}
.social__list {
  display: flex;
  gap: 10px;
  width: 100%;
  justify-content: center;
  margin: 0 0 50px 0;
}
.social__icon {
  height: 40px;
  width: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f3f3f3;
  color: #1d9e49;
  border-radius: 50%;
  transition: color 0.3s, background-color 0.3s;
}
.social__icon .svg-icon {
  height: 24px;
}
.social__icon .svg-icon--tm {
  fill: none;
  stroke: currentColor;
}
.social__icon .svg-icon--tm circle {
  stroke: currentColor;
}
.social__icon .svg-icon--tm path {
  fill: currentColor;
}
@media only screen and (min-width: 1024px) {
  .social__icon:hover {
    color: #fff;
    background-color: #19863e;
  }
}
@media only screen and (max-width: 767px) {
  .social {
    margin: 50px 0 50px 0;
  }
}
.preloader-lottie {
  position: fixed;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  width: 100%;
  height: 100%;
  pointer-events: none;
  inset: 0;
  z-index: 20;
  background-color: rgba(0,0,0,0.475);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
  opacity: 0;
}
.preloader-lottie lottie-player {
  width: 200px;
  height: 200px;
}
body.is-popup {
  height: 100vh;
  overflow-y: hidden;
}
body.is-profile-nav-fixed .header {
  box-shadow: inset 0 0 0 1px #f3f3f3;
}
body.is-search-open .filter-search {
  pointer-events: auto;
}
body.is-search-open .filter-search__overlay {
  height: calc(100% + 20px);
}
body.is-search-open .filter-search__overlay::before {
  opacity: 1;
}
body.is-search-open .filter-search__wrap {
  width: 100%;
}
body.is-search-open .filter-search__close {
  opacity: 1;
  pointer-events: auto;
}
body.is-search-open .filter-search-results {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.3s 0.3s;
}
body.is-loading .preloader-lottie {
  opacity: 1;
  z-index: 22;
  pointer-events: auto;
}
body[data-auth] .header-profile {
  display: flex;
}
body[data-auth] .filter-controls__button--user {
  display: block;
}
body[data-route="faq"] .header__button--download,
body[data-route="terms"] .header__button--download {
  display: inline-flex;
}
body[data-route="success-login"] .login-heading {
  position: relative;
  order: 2;
}
body[data-route="success-login"] .login-heading__wrap {
  justify-content: center;
  padding: 54px 0 60px;
}
body[data-route="success-login"] .login-heading__logo {
  width: 163px;
}
body[data-playstate="playing"] .lesson__timeline-day {
  pointer-events: none;
}
@media only screen and (max-width: 1023px) {
  body.is-overflow .mobile-menu {
    transform: translateY(100%);
  }
  body.is-nav-open {
    overflow: hidden;
  }
  body.is-nav-open .mobile-menu {
    transform: translateY(100%);
  }
  body.is-nav-open .header__burger i,
  body.is-nav-open .login-heading__burger i {
    margin-top: -1px;
  }
  body.is-nav-open .header__burger i:nth-child(1),
  body.is-nav-open .login-heading__burger i:nth-child(1),
  body.is-nav-open .header__burger i:nth-child(4),
  body.is-nav-open .login-heading__burger i:nth-child(4) {
    width: 0;
    margin-left: 0;
  }
  body.is-nav-open .header__burger i:nth-child(2),
  body.is-nav-open .login-heading__burger i:nth-child(2) {
    transform: rotate(45deg);
  }
  body.is-nav-open .header__burger i:nth-child(3),
  body.is-nav-open .login-heading__burger i:nth-child(3) {
    transform: rotate(-45deg);
  }
  body.is-nav-open .nav-mobile {
    transform: translateY(100%);
  }
  body.is-nav-open .filter__wrap {
    z-index: 8;
    transition: top 0.3s, z-index 0s;
  }
  body.is-popup-open .mobile-menu {
    transform: translateY(100%);
  }
  body.is-select-open {
    overflow: hidden;
  }
  body.is-smartbanner .header {
    top: 84px;
  }
  body.is-smartbanner .popup--profile-editor,
  body.is-smartbanner .profile-content-nav.is-fixed .profile-content-nav__box {
    top: 154px;
  }
  body.is-search-open .filter__wrap {
    top: 0;
  }
  body.is-search-open .mobile-menu {
    transform: translateY(100%);
  }
  body.is-search-open .filter-controls {
    background-color: #fff;
  }
  body.is-search-open .filter-controls__button--close {
    display: block;
  }
  body.is-search-open .filter-controls__button--filter,
  body.is-search-open .filter-controls__button--user {
    display: none;
  }
  body.is-search-open .filter-search {
    transform: translateY(-100%);
    pointer-events: auto;
  }
  body.is-filter-open {
    height: 100vh;
    overflow-y: hidden;
  }
  body.is-filter-open .filter__wrap {
    top: 0;
  }
  body.is-filter-open .mobile-menu {
    transform: translateY(100%);
  }
  body.is-filter-open .filter-controls {
    background-color: #fff;
  }
  body.is-filter-open .filter-controls__button--close {
    display: block;
  }
  body.is-filter-open .filter-controls__button--filter,
  body.is-filter-open .filter-controls__button--user {
    display: none;
  }
  body.is-filter-open .filter-mobile {
    transform: translateY(-100%);
    pointer-events: auto;
  }
  body[data-route="success-login"] .login-heading {
    order: 0;
  }
  body[data-route="success-login"] .login-heading__wrap {
    padding: 24px 0 21px;
  }
  body[data-auth] .header-profile {
    display: none;
  }
  body[data-mobile-smart-scroll="1"] .mobile-menu,
  body[data-mobile-smart-scroll="2"] .mobile-menu {
    transform: translateY(100%);
  }
}
/* background: */
progress::-webkit-progress-bar {background-color: #dddddb;  height: 7px; width: 100%;}
progress {background-color: #dddddb;  width: 100%;}

/* value: */
progress::-webkit-progress-value {background-color:#3c9200 !important;}
progress::-moz-progress-bar {background-color: #3c9200 !important;}
progress {color: #3c9200;}
/* burger: */
.burger-checkbox {
  position: absolute;
  visibility: hidden;
}
.burger {
  position: relative;
  z-index: 1;
  cursor: pointer;
  display: block;
  position: relative;
  border: none;
  background: transparent;
  width: 40px;
  height: 26px;
}
.burger::before,
.burger::after {
  content: '';
  left: 0;
  position: absolute;
  display: block;
  width: 100%;
  height: 4px;
  border-radius: 10px;
  background: #000;
}
.burger::before {
  top: 0;
  box-shadow: 0 11px 0 #000;
  transition: box-shadow .3s .15s, top .3s .15s, transform .3s;
}
.burger::after {
  bottom: 0;
  transition: bottom .3s .15s, transform .3s;
}
.burger-checkbox:checked + .burger::before {
  top: 11px;
  transform: rotate(45deg);
  box-shadow: 0 6px 0 rgba(0,0,0,0);
  transition: box-shadow .15s, top .3s, transform .3s .15s;
}
.burger-checkbox:checked + .burger::after {
  bottom: 11px;
  transform: rotate(-45deg);
  transition: bottom .3s, transform .3s .15s;
}
.menu-list {
  top: 0;
  left: 0;
  position: absolute;
  display: grid;
  gap: 12px;
  padding: 10px 0;
  margin: 0;
  background: orange;
  list-style-type: none;
  transform: translateX(-120%);
  transition: .3s;
  width: 200px;
}
.menu-item {
  display: block;
  padding-top: 3px;
  color: white;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
}
.menu-item:hover {
  background: rgba(146,204,0,.8)
}
.burger-checkbox:checked ~ .menu-list {
  transform: translateX(0);
}
.anchor {
margin-top: 0px;
display: inline-block;
position: relative;
height: 1px;
width: 1px;
}
.keks {
  width: 100%;
  background-color:#388404;
  object-fit: fill;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);/* координаты точек фигуры катринки - можно менять */
}
.kekscard {
	background-color: #77cce9;
	clip-path: circle(0 at 50% 50%);
	border: 2px solid gray;
}
.keksblack {
  width: 300px;
  background-color: #ccc;
  object-fit: contain;
  clip-path: ellipse(100px 100px at center);
}
figure {
    width:100%; /* Ширина области */
	height: 500px; /* Высота области */
   
    margin: auto; /* Обнуляем отступы */
    overflow: hidden; /* Прячем всё за пределами */
    min-width: 300px; /* Минимальная ширина */
	padding: 0 5px 0 0;
	
   }
   figure img { 
    width: 100%; /* Ширина изображений */
    margin: auto; /* Сдвигаем вверх */
	padding: 0 10px 0 0;
	
   }
 .parent {
  
  display: flex;
  justify-content: center;
  padding: 10px 5px 10px 5px;
  border: 2px solid gray;
}

.child {
	margin-left: auto;
  margin-right: auto;
  border: 10px ;
  text-align: center;
}  
.roundgreenright {
    border-radius: 50%;
	border: 3px solid #388404;
	padding: 3px 3px 3px 3px;
	float: right; /* Выравнивание по правому краю  */ 
    margin: 10px 0 10px 10px; /* Отступы вокруг картинки */
   }
.roundgreenleft {
    border-radius: 50%;
	border: 2px solid #388404;
	padding: 3px 3px 3px 3px;
	float: left; /* Выравнивание по правому краю  */ 
    margin: 10px 10px 10px 0 ; /* Отступы вокруг картинки */
   }
.roundredright {
    border-radius: 50%;
	border: 3px solid red;
	padding: 3px 3px 3px 3px;
	float:right; /* Выравнивание по левому краю */
    margin: 10px 0 10px 10px ; /* Отступы вокруг картинки */
   }
.roundredleft {
    border-radius: 50%;
	border: 5px solid red;
	padding: 3px 3px 3px 3px;
	float:left; /* Выравнивание по левому краю */
    margin: 10px  10px 10px 0; /* Отступы вокруг картинки */
   }
 .roundwhiteright {
    border-radius: 50%;
	border: 3px solid white;
	padding: 3px 3px 3px 3px;
	float:right; /* Выравнивание по левому краю */
    margin:10px 10px 10px 10px  ; /* Отступы вокруг картинки */
   }
.roundwhiteleft {
    border-radius: 50%;
	border: 3px solid white;
	padding: 3px 3px 3px 3px;
	float:left; /* Выравнивание по левому краю */
    margin: 10px 10px 10px 0; /* Отступы вокруг картинки */
   }
 .semi_circle {
    border-radius: 100% 0% 0% 100%   / 50% 50% 50% 50% ;
	border: 3px solid #388404;
	padding: 3px 3px 3px 3px;
	float:left; /* Выравнивание по левому краю */
	margin: 0 20px 10px 0; /* Отступы вокруг картинки */
}
 .semi_circle_right {
    border-radius:  0% 100% 100%  0%  / 50% 50% 50% 50% ;
	border: 3px solid #388404;
	padding: 3px 3px 3px 3px;
	float:right; /* Выравнивание по левому краю */
	margin: 0 0 10px 20px ; /* Отступы вокруг картинки */
}
  
.leftimg {
    float:left; /* Выравнивание по левому краю */
    margin: 7px 7px 7px 0; /* Отступы вокруг картинки */
   }
.rightimg  {
    float: right; /* Выравнивание по правому краю  */ 
    margin: 7px 0 7px 7px; /* Отступы вокруг картинки */
   }
.box {
  
  padding: 0 0 0 10px; /* Отступы вокруг  */
}

p {
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 10px;
}
/* контейнер рамкой с промежутком под текст  */
.text_theme{
	font-size:15px;
	border-left: 50px solid #388404;
	border-right: 10px solid #388404;
	padding-left:20px;
	padding-right:20px;
}

.box_theme{
	
	border-left: 3px solid #388404;
	border-right: 3px solid #388404;
	border-bottom: 3px solid #388404;
	padding: 20px;
	width:100% - 20px;
}
/* Показать Больше-Меньше /* --Читать далее -------  */ */
.read-more-state {
display: none;
}

.read-more-target {
opacity: 0;
max-height: 0;
font-size: 0;
transition: .25s ease;
}

.read-more-state:checked ~ .read-more-wrap .read-more-target {
opacity: 1;
font-size: inherit;
max-height: 999em;
}

.read-more-state ~ .read-more-trigger:before {
content: 'Показать больше';
}

.read-more-state:checked ~ .read-more-trigger:before {
content: 'Показать меньше';
}

.read-more-trigger {
cursor: pointer;
display: inline-block;
padding: 0 .5em;
color: #666;
font-size: .9em;
line-height: 2;
border: 1px solid #ddd;
border-radius: .25em;
}

/* --Увеличить фото при наведении-------  */

.blok1 {
	position: relative;
	cursor:pointer;
	display:inline-block;
	width: 100%
	}
.blok1 img + img {
	margin: auto;
	position:absolute;
	left: 0;
	top:10;
	right: 0;
	z-index:9999;
	max-width: 80%;
	display: none;}
.blok1:hover img + img {
	display: block;
	}
/* --Читать больше ------- */
.collapsible {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
}

.toggle-btn {
  width: 100%;
  padding: 10px;
  background: #93d200;
  border: none;
  text-align: left;
  cursor: pointer;
  font-weight: bold;
  outline: none; /* Убираем контур фокуса */
}

.content {
  padding: 15px;
  display: none;
}

/* Визуальный индикатор активной кнопки */
.toggle-btn.active {
  background: #e0e0e0;
}
.green-bar {
  width: 100%;
  height: 5px;
  background-color: #3d9201; /* зелёный цвет */
}
/* complex-grid упражнения */
.complex-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.complex-item {
    flex: 1 1 calc(50% - 10px); /* Две колонки с отступами */
    min-width: 300px; /* Минимальная ширина блока */
    box-sizing: border-box;
}

/* Адаптивность: на экранах меньше 768 px — одна колонка */
@media (max-width: 767px) {
    .complex-item {
        flex: 1 1 100%;
        min-width: auto;
    }
}
/*Картинка ratio 5X2*/
.ratio-5-2 {
  width: 100%;
  aspect-ratio: 5 / 2; /* или  2 / 1 */
}