

/* Start:/local/templates/leaugue/assets/css/price_index_what.css?170048239017708*/
@charset "UTF-8";

:root {
  --main-green: #39ad46;
  --second-green: #27ae60;
  --hover-green: #58ca65;
  --dark-green: #1e7d5b;
  --dark-gray: #4f4f4f;
  --mid-gray: #828282;
  --light-gray: #f2f2f2;
  --extra-gray: #333;
  --golos-font: Golos;
  --jost-font: Jost;
}

:root {
  --main-green: #39ad46;
  --second-green: #27ae60;
  --hover-green: #58ca65;
  --dark-green: #1e7d5b;
  --dark-gray: #4f4f4f;
  --mid-gray: #828282;
  --light-gray: #f2f2f2;
  --extra-gray: #333;
  --golos-font: Golos;
  --jost-font: Jost;
}

:root {
  --main-green: #39ad46;
  --second-green: #27ae60;
  --hover-green: #58ca65;
  --dark-green: #1e7d5b;
  --dark-gray: #4f4f4f;
  --mid-gray: #828282;
  --light-gray: #f2f2f2;
  --extra-gray: #333;
  --golos-font: Golos;
  --jost-font: Jost;
}

/*Кнопка меню*/

/*В разметке обязательно должна иметь внутренний span */

/*<button class="burger"><span></span></button>*/

.sidebar {
  flex: 0 0 14.0625rem;
  width: 14.0625rem;
  padding-top: 4.5rem;
}

.sidebar__nav {
  position: sticky;
  top: 2rem;
  padding-bottom: 3rem;
}

.sidebar__nav__list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.sidebar__nav__item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 24px;
  padding: 0px 0px 0px 0.9375rem;
}

.sidebar__nav__item a {
  transition: color 0.3s ease-in;
  font-size: 1.125rem;
  color: #3e3f3e;
}

.sidebar__nav__item a.active {
  color: #379b42;
  font-weight: 600;
}

.sidebar__nav__item:hover a {
  color: #58ca65;
}

:root {
  --main-green: #39ad46;
  --second-green: #27ae60;
  --hover-green: #58ca65;
  --dark-green: #1e7d5b;
  --dark-gray: #4f4f4f;
  --mid-gray: #828282;
  --light-gray: #f2f2f2;
  --extra-gray: #333;
  --golos-font: Golos;
  --jost-font: Jost;
}

.index-modal {
  top: 0;
  background-color: rgba(30, 41, 34, 0.5);
  width: 100%;
  height: 100vh;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 15;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s ease-in;
}

.index-modal__close {
  position: absolute;
  padding: 7px;
  top: 0.9375rem;
  right: 0.9375rem;
}

.index-modal.active {
  visibility: visible;
  opacity: 1;
}

.index-modal__content {
  margin: 0 1rem;
  padding: 0;
  position: relative;
  flex-basis: 38.825rem;
  background-color: #fff;
  color: #000;
}

.index-modal__form {
  padding: 2.9375rem 6.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.index-modal__form.hide {
  display: none;
}

.index__form__title {
  text-align: center;
  color: #000;
  font-size: 1.5rem;
  line-height: 2.125rem;
  font-weight: 600;
  margin-bottom: 1.875rem;
  width: 100%;
}

.index__form__item {
  width: 100%;
  margin-bottom: 2.4375rem;
  position: relative;
}

.index__form__input {
  border: 1px solid #828282;
  height: 2.5rem;
  width: 100%;
  border-radius: 6px;
  padding: 0 1rem;
  box-shadow: 0px 0px 2px 0px #233025;
}

.index__form__input::placeholder {
  font-size: 1.125rem;
}

.index__form__input + span.error {
  font-size: 1rem;
  line-height: 0.9rem;
  color: #dd0d0d;
  position: absolute;
  top: 2.75rem;
  left: 0;
}

.index__form__input.error {
  border: 1px solid #dd0d0d;
}

.index__form__checkboxes {
  margin-top: 0.625rem;
  margin-bottom: 3.375rem;
  align-self: flex-start;
  width: 100%;
}

.checkbox__wrapper {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.checkbox__wrapper:not(:last-child) {
  margin-bottom: 0.625rem;
}

.checkbox__fake {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 1rem;
  flex: 0 0 1rem;
  border: 1px solid #828282;
  border-radius: 4px;
  position: relative;
  margin-right: 0.5rem;
  transition: all 0.3s ease-in;
}

.checkbox__fake svg {
  width: 0.5rem;
}

.checkbox__text {
  color: #252525;
  font-size: 1rem;
  line-height: 1.125rem;
}

.checkbox__link {
  line-height: 1.125rem;
  color: var(--main-green);
  transition: color 0.3s ease-in;
}

.checkbox__link:hover {
  color: var(--hover-green);
}

.checkbox__input:checked + .checkbox__fake,
.checkbox__input:checked + .error + .checkbox__fake {
  border: 1px solid transparent;
  background-color: var(--main-green);
}

.checkbox__input.error + .checkbox__fake,
.checkbox__input.error + .error + .checkbox__fake {
  border: 1px solid #dd0d0d;
}

.checkbox__input.error + .error + .checkbox__fake + .checkbox__text {
  color: #dd0d0d;
}

.checkbox__input.error + .error + .checkbox__fake + .checkbox__text .checkbox__link {
  color: #dd0d0d;
}

.index__form__submit {
  padding: 0.625rem 1.5rem;
  color: white;
  font-size: 1.125rem;
  background-color: #379b42;
  border-radius: 6px;
  transition: background-color 0.2s ease-in;
}

.index__form__submit:hover {
  background-color: var(--hover-green);
}

.index-modal__success {
  padding: 5.1875rem 0.625rem 5.4375rem 0.625rem;
  text-align: center;
}

.index-modal__success.hide {
  display: none;
}

.success__title {
  font-size: 1.5rem;
  line-height: 2.125rem;
  font-weight: 600;
  margin-bottom: 0.625rem;
}

.success__subtitle {
  font-size: 1.125rem;
  line-height: 1.625rem;
}

:root {
  --main-green: #39ad46;
  --second-green: #27ae60;
  --hover-green: #58ca65;
  --dark-green: #1e7d5b;
  --dark-gray: #4f4f4f;
  --mid-gray: #828282;
  --light-gray: #f2f2f2;
  --extra-gray: #333;
  --golos-font: Golos;
  --jost-font: Jost;
}

.success-modal {
  top: 0;
  background-color: rgba(30, 41, 34, 0.5);
  width: 100%;
  height: 100vh;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 15;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s ease-in;
}

.success-modal__close {
  position: absolute;
  padding: 7px;
  top: 0.9375rem;
  right: 0.9375rem;
}

.success-modal.active {
  visibility: visible;
  opacity: 1;
}

.success-modal__content {
  margin: 0 1rem;
  padding: 0;
  position: relative;
  flex-basis: 38.825rem;
  background-color: #fff;
  color: #000;
}

.success__message {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000;
  padding: 6.25rem 0.625rem;
  text-align: center;
}

:root {
  --main-green: #39ad46;
  --second-green: #27ae60;
  --hover-green: #58ca65;
  --dark-green: #1e7d5b;
  --dark-gray: #4f4f4f;
  --mid-gray: #828282;
  --light-gray: #f2f2f2;
  --extra-gray: #333;
  --golos-font: Golos;
  --jost-font: Jost;
}

:root {
  --main-green: #39ad46;
  --second-green: #27ae60;
  --hover-green: #58ca65;
  --dark-green: #1e7d5b;
  --dark-gray: #4f4f4f;
  --mid-gray: #828282;
  --light-gray: #f2f2f2;
  --extra-gray: #333;
  --golos-font: Golos;
  --jost-font: Jost;
}

/*Кнопка меню*/

/*В разметке обязательно должна иметь внутренний span */

/*<button class="burger"><span></span></button>*/

.feedback {
  width: 100%;
  padding: 1.875rem 1.0625rem 1.875rem 1.875rem;
  background-color: #fff;
  border: 1px solid #39ad46;
  border-radius: 0.625rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.feedback__title {
  font-size: 1.5rem;
  color: #252525;
  font-weight: 600;
}

.feedback__subtitle {
  font-size: 1.125rem;
  color: #252525;
}

.feedback__form {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}

.feedback__form label.error {
  font-size: 0.875rem;
  position: absolute;
  top: -1.2rem;
  left: 3px;
  color: #dd0d0d;
}

.feedback__form__input {
  width: 20.4375rem;
  height: 2.5rem;
  padding: 0px 0.875rem;
  border: 1px solid #4f4f4f;
  border-radius: 6px;
}

.feedback__form__input.error {
  border: 1px solid #dd0d0d;
}

.feedback__form__button {
  height: 2.5rem;
  width: 8.75rem;
  color: white;
  font-size: 1.125rem;
  background-color: #379b42;
  margin-left: 5px;
  border-radius: 6px;
  transition: background-color 0.3s ease-in;
}

.feedback__form__button:hover {
  background-color: var(--hover-green);
}

.price-index-what__container {
  display: flex;
}

.green {
  color: var(--main-green);
}

.bold {
  font-weight: 500;
}

.content {
  flex: 1 1 auto;
  padding: 1.8125rem 1.875rem 5.625rem 1.8125rem;
  color: #252525;
}

.section {
  margin-bottom: 4.0625rem;
}

.section .title {
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #252525;
}

.section .desc {
  font-size: 1.25rem;
  line-height: 1.8125rem;
  color: #252525;
}

.section desc .bold {
  font-weight: 600;
}

.faq {
  margin-bottom: 4.375rem;
}

.note {
  display: block;
  font-size: 1.25rem;
  color: #828282;
  margin-top: 0.9375rem;
}

.profit__list {
  margin-top: 2.0625rem;
  display: grid;
  grid-template-columns: repeat(4, 13.5rem);
  grid-gap: 2.375rem;
}

.profit__item {
  display: flex;
  flex-direction: column;
}

.profit__item__img {
  padding: 0px 1.875rem;
  margin-bottom: 1.125rem;
  height: 4.625rem;
}

.profit__item__img img {
  height: 100%;
  max-width: 5.3125rem;
}

.profit__item__title {
  max-width: 12.5rem;
  color: #252525;
  font-size: 1.5rem;
  line-height: 1.875rem;
  font-weight: 600;
  margin-bottom: 1.125rem;
}

.profit__item__desc {
  color: #252525;
  font-size: 1.125rem;
  line-height: 1.625rem;
}

.formation__list {
  margin-top: 2.0625rem;
  display: grid;
  grid-template-columns: repeat(4, 13.5rem);
  grid-gap: 2.375rem;
}

.formation__item {
  display: flex;
  flex-direction: column;
  position: relative;
}

.formation__item__img {
  display: flex;
  align-items: flex-end;
  padding: 0px 1.875rem;
  margin-bottom: 1.125rem;
  height: 5.35rem;
}

.formation__item__img img {
  height: 100%;
  max-width: 5.3125rem;
}

.formation__item__title {
  max-width: 12.5rem;
  color: #252525;
  font-size: 1.5rem;
  line-height: 1.875rem;
  font-weight: 600;
  margin-bottom: 0.9375rem;
}

.formation__item__desc {
  color: #252525;
  font-size: 1.125rem;
  line-height: 1.625rem;
}

.formation__item__arrow {
  position: absolute;
  top: 2.8125rem;
  right: 0;
}

.formation__item__arrow img {
  height: 100%;
  max-width: 3.125rem;
}

.formation__item:nth-child(4) .formation__item__arrow {
  display: none;
}

.scheme {
  width: 40.3125rem;
  height: 40rem;
  margin: 6.875rem auto 0 auto;
  position: relative;
}

.scheme__img {
  height: 100%;
  width: auto;
}

.scheme__title {
  color: #252525;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.6rem;
  position: absolute;
  top: 30%;
  right: 30%;
}

.scheme__member {
  font-size: 1.25rem;
  line-height: 1.5625rem;
  position: absolute;
  border-bottom: 1px solid var(--main-green);
  color: #868181;
}

.scheme__member::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 2.8125rem;
  background-color: var(--main-green);
}

.member__desc {
  display: block;
}

.member__desc__5 {
  display: none;
}

.member_1 {
  top: 9.3125rem;
  left: -7rem;
}

.member_1::after {
  bottom: -2.4375rem;
  right: -1rem;
  transform: rotate(-45deg);
}

.member_2 {
  top: -4rem;
  right: 9.125rem;
  color: #000;
}

.member_2::after {
  bottom: -2.5rem;
  left: -1rem;
  transform: rotate(45deg);
}

.member_3 {
  top: 8.5rem;
  right: -8.625rem;
  color: #000;
}

.member_3::after {
  bottom: -2.4375rem;
  left: -1rem;
  transform: rotate(45deg);
}

.member_4 {
  top: 34.5rem;
  right: 0.625rem;
}

.member_4::after {
  bottom: -0.4375rem;
  left: -1rem;
  transform: rotate(-45deg);
}

.member_5 {
  top: 34.5rem;
  left: 0;
}

.member_5::after {
  bottom: -0.4375rem;
  right: -1rem;
  transform: rotate(45deg);
}

.members__button {
  cursor: pointer;
  display: block;
  margin: 2.5rem auto 0 auto;
  text-transform: uppercase;
  font-size: 1.125rem;
  line-height: 1.4375rem;
  font-family: Inter;
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 6px;
  background-color: var(--main-green);
  transition: background-color 0.3s ease-in;
}

.members__button:hover {
  background-color: var(--hover-green);
}

.faq__item {
  border-radius: 8px;
  background-color: #f2f2f2;
}

.faq__head {
  cursor: pointer;
  margin-top: 0.9375rem;
  padding: 0.75rem 1.875rem;
  position: relative;
}

.faq__head:before,
.faq__head:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 1.3125rem;
  right: 2.5rem;
  top: calc(50% - 0.6875rem);
  background-color: #74737c;
  transition: transform 0.3s ease-in, background-color 0.3s ease-in;
}

.faq__head::after {
  transform: rotate(90deg);
}

.faq__active::before {
  transform: rotate(-45deg);
  background-color: #30ad63;
}

.faq__active::after {
  transform: rotate(45deg);
  background-color: #30ad63;
}

.faq__title {
  color: #252525;
  font-size: 1.5rem;
  font-weight: 500;
  padding-right: 1.875rem;
}

.faq__content {
  display: none;
  color: #252525;
  font-size: 1.25rem;
  padding: 0 1.875rem 0.9375rem;
}

.faq__content__paragraph {
  margin-bottom: 0.8125rem;
  color: #252525;
  font-size: 1.25rem;
}

.faq__content__paragraph.coefficient {
  margin-bottom: 1.4375rem;
}

.faq__content__list {
  list-style-type: none;
  padding: 0;
}

.faq__content__item {
  padding-left: 1rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.faq__content__item:before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  top: 0.5625rem;
  left: 0;
  background-color: #30ad63;
  border-radius: 50%;
}

th,
td {
  border: 1px solid #f2f2f2;
  background-color: rgba(255, 255, 255, 0.9);
}

th {
  padding: 0.8125rem 2rem 0.8125rem 2rem;
  font-size: 0.875rem;
}

td {
  padding: 0.625rem 1.125rem 0.625rem 2rem;
  font-size: 12px;
}

@media (max-width: 768px) {
  .sidebar {
    display: none;
  }

  .index-modal__form {
    padding: 2.9375rem 2rem;
  }

  .index__form__title {
    font-size: 1.25rem;
    line-height: 1.375rem;
    margin-bottom: 1.4375rem;
  }

  .checkbox__wrapper {
    align-items: flex-start;
  }

  .index-modal__success {
    padding: 2.9375rem 0.625rem 2.9375rem 0.625rem;
    text-align: center;
  }

  .success__title {
    font-size: 1.125rem;
    line-height: 1.625rem;
  }

  .feedback {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.875rem 1.25rem;
  }

  .feedback__title {
    font-size: 1.125rem;
  }

  .feedback__subtitle {
    font-size: 0.875rem;
  }

  .feedback__form {
    margin-top: 1rem;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
  }

  .feedback__form__input {
    width: 100%;
    margin-bottom: 7px;
  }

  .price-index-what .wrapper {
    width: 100%;
  }

  .content {
    padding: 1.875rem 1.3125rem 3.4375rem 1.3125rem;
  }

  .section {
    margin-bottom: 3.125rem;
  }

  .section .title {
    font-size: 1.75rem;
    line-height: 2rem;
  }

  .faq {
    margin-bottom: 2rem;
  }

  .profit__list {
    margin-top: 1.875rem;
    grid-gap: 0;
    display: flex;
    flex-direction: column;
    max-width: 23.4375rem;
  }

  .profit__item {
    flex-direction: row;
  }

  .profit__item:not(:last-child) {
    margin-bottom: 2.1875rem;
  }

  .profit__item__img {
    padding: 0 0.9375rem 0 0;
    height: 3.625rem;
  }

  .profit__item__img img {
    width: 3.4375rem;
  }

  .profit__item__title {
    margin-bottom: 0.6875rem;
  }

  .formation__item:nth-child(4) .formation__item__arrow {
    display: block;
  }

  .formation__list {
    margin-top: 1.875rem;
    grid-gap: 0;
    display: flex;
    flex-direction: column;
    max-width: 23.4375rem;
  }

  .formation__item {
    flex-direction: row;
  }

  .formation__item:not(:last-child) {
    margin-bottom: 1.25rem;
    padding-bottom: 4.375rem;
  }

  .formation__item__img {
    padding: 0 0.9375rem 0 0;
    height: 3.625rem;
  }

  .formation__item__img img {
    width: 3.4375rem;
  }

  .formation__item__title {
    margin-bottom: 0.6875rem;
  }

  .formation__item__arrow {
    top: 95%;
    right: 50%;
    transform: rotate(90deg) translateX(-50%);
  }

  .scheme {
    width: 100%;
    height: auto;
    margin-top: 3.375rem;
  }

  .scheme img {
    width: 100%;
    height: auto;
  }

  .scheme__title {
    font-size: 1rem;
    line-height: 1.1rem;
  }

  .scheme__member {
    font-size: 0.875rem;
    line-height: 1.125rem;
  }

  .member__desc {
    display: none;
  }

  .member__desc__5 {
    display: block;
  }

  .member_1 {
    top: 40%;
    left: 24%;
    z-index: -1;
  }

  .member_1::after {
    height: 2.0625rem;
    bottom: -0.3rem;
    right: 5.7rem;
    transform: rotate(-45deg);
  }

  .member_2 {
    top: -2rem;
    right: 50%;
    transform: translateX(50%);
    z-index: -1;
  }

  .member_2::after {
    bottom: -2.5rem;
    left: 1rem;
    transform: rotate(-45deg);
  }

  .member_3 {
    top: 47%;
    right: 24%;
    z-index: -1;
  }

  .member_3::after {
    bottom: -0.2rem;
    left: 6.7rem;
    transform: rotate(29deg);
  }

  .member_4 {
    top: 62%;
    right: 26%;
    z-index: -1;
  }

  .member_4::after {
    bottom: -2.4375rem;
    left: 1rem;
  }

  .member_5 {
    top: 49%;
    left: 23%;
    z-index: -1;
  }

  .member_5::after {
    height: 5.3625rem;
    bottom: -5.4rem;
    right: 5rem;
    transform: rotate(-10deg);
  }

  .faq__head {
    padding: 0.8125rem 0.875rem;
  }

  .faq__head:before,
  .faq__head:after {
    right: 1.25rem;
  }

  .faq__title {
    font-size: 1.1875rem;
    line-height: 1.5rem;
  }

  .faq__content {
    padding: 0 0.8125rem 1.0625rem 0.8125rem;
  }

  .faq__content__item {
    margin-bottom: 0.875rem;
  }

  .faq__content__paragraph.coefficient {
    display: none;
  }

  table {
    padding-top: 0.625rem;
  }

  th {
    padding: 0.6875rem 0.625rem;
  }

  td {
    padding: 0.625rem;
  }
}

@media (max-width: 380px) {
  .scheme__title {
    top: 27%;
    right: 24%;
  }

  .member_5::after {
    height: 3.3625rem;
    bottom: -3.4rem;
    right: 5.2rem;
  }
}
/* End */


/* Start:/local/templates/leaugue/assets/css/feedbackForm.css?17004823902688*/
@charset "UTF-8";
:root {
  --main-green: #39ad46;
  --second-green: #27ae60;
  --hover-green: #58ca65;
  --dark-green: #1e7d5b;
  --dark-gray: #4f4f4f;
  --mid-gray: #828282;
  --light-gray: #f2f2f2;
  --extra-gray: #333;
  --golos-font: Golos;
  --jost-font: Jost
}

.feedback {
  width: 100%;
  padding: 1.875rem 1.0625rem 1.875rem 1.875rem;
  background-color: #fff;
  border: 1px solid #39ad46;
  border-radius: .625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.feedback__title {
  font-size: 1.5rem;
  color: #252525;
  font-weight: 600
}

.feedback__subtitle {
  font-size: 1.125rem;
  color: #252525
}

.feedback__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative
}

.feedback__form label.error {
  font-size: .875rem;
  position: absolute;
  top: -1.2rem;
  left: 3px;
  color: #dd0d0d
}

.feedback__form__input {
  width: 20.4375rem;
  height: 2.5rem;
  padding: 0 .875rem;
  border: 1px solid #4f4f4f;
  border-radius: 6px
}

.feedback__form__input.error {
  border: 1px solid #dd0d0d
}

.feedback__form__button {
  height: 2.5rem;
  width: 8.75rem;
  color: #fff;
  font-size: 1.125rem;
  background-color: #379b42;
  margin-left: 5px;
  border-radius: 6px;
  -webkit-transition: background-color .3s ease-in;
  transition: background-color .3s ease-in
}

.feedback__form__button:hover {
  background-color: var(--hover-green)
}

@media (max-width: 768px) {
  .feedback {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: .875rem 1.25rem
  }

  .feedback__title {
    font-size: 1.125rem
  }

  .feedback__subtitle {
    font-size: .875rem
  }

  .feedback__form {
    margin-top: 1rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    width: 100%
  }

  .feedback__form__input {
    width: 100%;
    margin-bottom: 7px
  }
}

@media (max-width: 400px) {
  .feedback__form__button {
    width: 100%
  }
}
/* End */


/* Start:/local/templates/leaugue/assets/css/sidebar.css?17004823901378*/
@charset "UTF-8";

:root {
  --main-green: #39ad46;
  --second-green: #27ae60;
  --hover-green: #58ca65;
  --dark-green: #1e7d5b;
  --dark-gray: #4f4f4f;
  --mid-gray: #828282;
  --light-gray: #f2f2f2;
  --extra-gray: #333;
  --golos-font: Golos;
  --jost-font: Jost;
}

:root {
  --main-green: #39ad46;
  --second-green: #27ae60;
  --hover-green: #58ca65;
  --dark-green: #1e7d5b;
  --dark-gray: #4f4f4f;
  --mid-gray: #828282;
  --light-gray: #f2f2f2;
  --extra-gray: #333;
  --golos-font: Golos;
  --jost-font: Jost;
}

/*Кнопка меню*/

/*В разметке обязательно должна иметь внутренний span */

/*<button class="burger"><span></span></button>*/

.sidebar {
  flex: 0 0 14.0625rem;
  width: 14.0625rem;
  padding-top: 4.5rem;
}

.sidebar__nav {
  position: sticky;
  top: 2rem;
  padding-bottom: 3rem;
}

.sidebar__nav__list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.sidebar__nav__item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 24px;
  padding: 0px 0px 0px 0.9375rem;
}

.sidebar__nav__item a {
  transition: color 0.3s ease-in;
  font-size: 1.125rem;
  color: #3e3f3e;
}

.sidebar__nav__item a.active {
  color: #379b42;
  font-weight: 600;
}

.sidebar__nav__item:hover a {
  color: #58ca65;
}

@media (max-width: 768px) {
  .sidebar {
    display: none;
  }
}
/* End */


/* Start:/local/templates/leaugue/assets/css/indexModal.css?17004823904039*/
:root {
  --main-green: #39ad46;
  --second-green: #27ae60;
  --hover-green: #58ca65;
  --dark-green: #1e7d5b;
  --dark-gray: #4f4f4f;
  --mid-gray: #828282;
  --light-gray: #f2f2f2;
  --extra-gray: #333;
  --golos-font: Golos;
  --jost-font: Jost;
}

.index-modal {
  top: 0;
  background-color: rgba(30, 41, 34, 0.5);
  width: 100%;
  height: 100vh;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 15;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s ease-in;
}

.index-modal__close {
  position: absolute;
  padding: 7px;
  top: 0.9375rem;
  right: 0.9375rem;
}

.index-modal.active {
  visibility: visible;
  opacity: 1;
}

.index-modal__content {
  margin: 0 1rem;
  padding: 0;
  position: relative;
  flex-basis: 38.825rem;
  background-color: #fff;
  color: #000;
}

.index-modal__form {
  padding: 2.9375rem 6.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.index-modal__form.hide {
  display: none;
}

.index__form__title {
  text-align: center;
  color: #000;
  font-size: 1.5rem;
  line-height: 2.125rem;
  font-weight: 600;
  margin-bottom: 1.875rem;
  width: 100%;
}

.index__form__item {
  width: 100%;
  margin-bottom: 2.4375rem;
  position: relative;
}

.index__form__input {
  border: 1px solid #828282;
  height: 2.5rem;
  width: 100%;
  border-radius: 6px;
  padding: 0 1rem;
  box-shadow: 0px 0px 2px 0px #233025;
}

.index__form__input::placeholder {
  font-size: 1.125rem;
}

.index__form__input + span.error {
  font-size: 1rem;
  line-height: 0.9rem;
  color: #dd0d0d;
  position: absolute;
  top: 2.75rem;
  left: 0;
}

.index__form__input.error {
  border: 1px solid #dd0d0d;
}

.index__form__checkboxes {
  margin-top: 0.625rem;
  margin-bottom: 3.375rem;
  align-self: flex-start;
  width: 100%;
}

.checkbox__wrapper {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.checkbox__wrapper:not(:last-child) {
  margin-bottom: 0.625rem;
}

.checkbox__fake {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 1rem;
  flex: 0 0 1rem;
  border: 1px solid #828282;
  border-radius: 4px;
  position: relative;
  margin-right: 0.5rem;
  transition: all 0.3s ease-in;
}

.checkbox__fake svg {
  width: 0.5rem;
}

.checkbox__text {
  color: #252525;
  font-size: 1rem;
  line-height: 1.125rem;
}

.checkbox__link {
  line-height: 1.125rem;
  color: var(--main-green);
  transition: color 0.3s ease-in;
}

.checkbox__link:hover {
  color: var(--hover-green);
}

.checkbox__input:checked + .checkbox__fake,
.checkbox__input:checked + .error + .checkbox__fake {
  border: 1px solid transparent;
  background-color: var(--main-green);
}

.checkbox__input.error + .checkbox__fake,
.checkbox__input.error + .error + .checkbox__fake {
  border: 1px solid #dd0d0d;
}

.checkbox__input.error + .error + .checkbox__fake + .checkbox__text {
  color: #dd0d0d;
}

.checkbox__input.error + .error + .checkbox__fake + .checkbox__text .checkbox__link {
  color: #dd0d0d;
}

.index__form__submit {
  padding: 0.625rem 1.5rem;
  color: white;
  font-size: 1.125rem;
  background-color: #379b42;
  border-radius: 6px;
  transition: background-color 0.2s ease-in;
}

.index__form__submit:hover {
  background-color: var(--hover-green);
}

.index-modal__success {
  padding: 5.1875rem 0.625rem 5.4375rem 0.625rem;
  text-align: center;
}

.index-modal__success.hide {
  display: none;
}

.success__title {
  font-size: 1.5rem;
  line-height: 2.125rem;
  font-weight: 600;
  margin-bottom: 0.625rem;
}

.success__subtitle {
  font-size: 1.125rem;
  line-height: 1.625rem;
}

@media (max-width: 768px) {
  .index-modal__form {
    padding: 2.9375rem 2rem;
  }

  .index__form__title {
    font-size: 1.25rem;
    line-height: 1.375rem;
    margin-bottom: 1.4375rem;
  }

  .checkbox__wrapper {
    align-items: flex-start;
  }

  .index-modal__success {
    padding: 2.9375rem 0.625rem 2.9375rem 0.625rem;
    text-align: center;
  }

  .success__title {
    font-size: 1.125rem;
    line-height: 1.625rem;
  }
}
/* End */


/* Start:/local/templates/leaugue/components/bitrix/menu/index/style.css?1700482390267*/
.open_poll {
    position: relative;
}
.open_poll::before{
    content: '';
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 100%;
    background: #ff1010;
    top: 55%;
    right: -20px;
    transform: translateY(-50%)
    
}
/* End */


/* Start:/local/components/ligapm/index.question/templates/.default/style.css?170048239020918*/
#answer_area {
    font-family: 'Jost';
    padding-top: 48px;
}

.interview-h2 {
    font-style: normal;
    font-weight: 600;
    font-size: 36px;
    line-height: 40px;
    color: #252525;
}

.interview-desc {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 29px;
    color: #252525;
    margin-top: 12px;
}

.interview-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background: #39AD46;
    border-radius: 48px;
    padding: 8px 36px;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 40px;
    color: #FFFFFF;
    margin: 33px auto 0;
    transition: background-color .3s ease-in;
}

.interview-btn:hover {
    background-color: var(--hover-green);
}

.interview-block-wrap {
    background: #F9F9FB;
    padding: 54px;
    margin: 29px -21px 0;
}

.interview-elem-block {
    background: #FFFFFF;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    padding: 45px 29px;
    margin-top: 24px;
}

.interview-elem-block:first-child {
    margin-top: 0;
}

.interview-elem-title {
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 125%;
    color: #000000;
}

.interview-tabBtn-block {
    display: flex;
    flex-direction: row;
    justify-content: end;
    margin-top: 26px;
}

.interview-tabBtn:first-child {
    margin-right: 16px;
}

.interview-tabBtn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5px 15px;
    border: 1px solid #58CA65;
    border-radius: 26px;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #58CA65;
}

.interview-tabBtn.tab__content_active {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 5px 15px;
    background: #ECF9EE;
    border: 1px solid #379B42;
    border-radius: 26px;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #379B42;
}

.interview-tab-element {
    display: none;
    opacity: 0;
    -webkit-animation: showContent 0.6s forwards;
    animation: showContent 0.6s forwards;
    margin-top: 40px;
}

.interview-tab-element.tab__content_active {
    display: block;
}

@-webkit-keyframes showContent {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes showContent {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.element-block-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2px;
    height: 52px;
}

.element-block-wrap:first-child {
    margin-top: 0;
}

.element-block-name {
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 17px;
    text-align: right;
    color: #000000;
    max-width: 160px;
    width: calc(100% - 168px);
    margin-right: 8px;
}

.element-block-line {
    display: flex;
    width: calc(100% - 168px);
    /*opacity: 0.2;*/
    height: 52px;
}

.element-line-bl {
    width: calc(100% / 3);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.element-line-bl .persent {
    position: absolute;
    left: calc((100% / 2) + (var(--bubble-width) /2) + 5px);
    font-style: normal;
    font-weight: 400;
    font-size: 10px;
    line-height: 14px;
    color: #333333;
}

.round-item::before {
    content: '';
    width: var(--bubble-width);
    height: var(--bubble-width);
    border-radius: 25px;
    /*background: #3741B1;*/
}

.total-elem-5.elem-style-1 .element-block-line, .total-elem-3.elem-style-1 .element-block-line, .total-elem-4.elem-style-1 .element-block-line {
    /*background: #DB0030;*/
    background: rgba(219, 0, 48, 0.2);
}

.total-elem-5.elem-style-2 .element-block-line, .total-elem-4.elem-style-2 .element-block-line {
    /*background: #E46782;*/
    background: rgba(228, 103, 130, 0.2);
}

.total-elem-5.elem-style-3 .element-block-line, .total-elem-3.elem-style-2 .element-block-line, .total-elem-4.elem-style-3 .element-block-line {
    /*background: #B6B7B7;*/
    background: rgba(182, 183, 183, 0.2)
}

.total-elem-5.elem-style-4 .element-block-line, .total-elem-4.elem-style-4 .element-block-line {
    /*background: #6A8DD3;*/
    background: rgba(106, 141, 211, 0.2);
}

.total-elem-5.elem-style-5 .element-block-line, .total-elem-3.elem-style-3 .element-block-line {
    /*background: #3741B1;*/
    background: rgba(55, 65, 177, 0.2);
}

.total-elem-5.elem-style-1 .round-item::before, .total-elem-4.elem-style-1 .round-item::before, .total-elem-3.elem-style-1 .round-item::before {
    background: rgba(219, 0, 48, 1);
    z-index: 1;
}

.total-elem-5.elem-style-2 .round-item::before, .total-elem-4.elem-style-2 .round-item::before {
    background: rgba(228, 103, 130, 1);
    z-index: 1;
}

.total-elem-5.elem-style-3 .round-item::before, .total-elem-4.elem-style-3 .round-item::before, .total-elem-3.elem-style-2 .round-item::before {
    background: rgba(182, 183, 183, 1);
    z-index: 1;
}

.total-elem-5.elem-style-4 .round-item::before, .total-elem-4.elem-style-4 .round-item::before {
    background: rgba(106, 141, 211, 1);
    z-index: 1;
}

.total-elem-5.elem-style-5 .round-item::before, .total-elem-3.elem-style-3 .round-item::before {
    background: rgba(55, 65, 177, 1);
    z-index: 1;
}

.element-block-month {
    display: flex;
    width: calc(100% - 168px);
    margin-left: 168px;
    margin-top: 148px;
}

.element-block-col.col-elem-5 {
    display: flex;
    width: calc(100% - 168px);
    margin-left: 168px;
    margin-top: -134px;
}

.element-block-col.col-elem-5 .element-col {
    margin: 0 19px;
}

.element-block-col.col-elem-4 {
    display: flex;
    width: calc(100% - 168px);
    margin-left: 168px;
    margin-top: -108px;
}

.element-block-col.col-elem-4 .element-col {
    margin: 0 45px;
}

.element-block-col.col-elem-3 {
    display: flex;
    width: calc(100% - 168px);
    margin-left: 168px;
    margin-top: -80px;
}

.element-block-col.col-elem-3 .element-col {
    margin: 0 71px;
}

.interview-р2 {
    font-style: normal;
    font-weight: 600;
    font-size: 36px;
    line-height: 40px;
    color: #252525;
}

.element-month {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: #4F4F4F;
    width: calc(100% / 3);
}

.element-col {
    background: linear-gradient(90deg, #DB0030, #B6B7B7, #3741B1);
    transform: rotate(90deg);
    width: calc(100% / 3);
    height: 1px;
}

#question_area {
    margin-top: 96px;
}

.interview-question-wrap {
    background: #F2F2F2;
    border-radius: 8px;
    padding: 40px 30px;
    margin-top: 24px;
}

.interview-question-wrap-title {
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 35px;
    color: #252525;
    margin-bottom: 14px;
    margin-top: 26px;
}

.finish {
    text-align: center;
    font-size: 1.4em;
    margin-top: 30px;
}

.interview-question-wrap .form-check {
    margin-top: 7px;
}

.interview-question-wrap .form-check:first-child {
    margin-top: 0;
}

.interview-question-wrap .form-check .form-check-label {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 29px;
    color: #252525;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.form-check-label::before {
    content: '';
    background-color: #fff;
    width: 13px;
    height: 13px;
    border: 3px solid #39AD46;
    display: inline-block;
    border-radius: 20px;
    margin-right: 16px;
}

.form-check-input:checked + .form-check-label::before {
    content: '';
    background-color: #39AD46;
}

.interview-subscribe-wrap {
    background: #FFFFFF;
    border: 1px solid #39AD46;
    border-radius: 10px;
    margin: 72px 0;
    padding: 30px;
}

.subscribe-wrap-block {
    display: flex;
    justify-content: space-between;
}

.subscribe-text {
    display: flex;
    flex-direction: column;
}

.subscribe-title {
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 35px;
    color: #252525;
}

.subscribe-desc {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 29px;
    color: #252525;
}

.subscribe-form {
    display: flex;
}

.subscribe-form label {
    margin-right: 5px;
}

.subscribe-form input {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    color: #828282;
    border: 1px solid #39AD46;
    border-radius: 6px;
    padding: 7px 14px;
    min-width: 327px;
}

.btn-submit-subscribe, .btn-next-question {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 8.5px 24px;
    background: #379B42;
    border-radius: 6px;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 23px;
    letter-spacing: -0.015em;
    z-index: 1;
    color: #FFFFFF;
    transition: background-color .3s ease-in;
}

.btn-submit-subscribe:hover, .btn-next-question.active:hover {
    background-color: var(--hover-green);
}

.btn-next-question {
    margin: 41px auto 0;
	background: #7bc983;
	cursor:default;
}
.btn-next-question.active {
    background: #379B42;cursor:pointer;
}
.btn-next-question::after {
    content: '';
    background-image: url("/images/arrow.svg");
    background-repeat: no-repeat;
    width: 17px;
    height: 15px;
    background-size: cover;
    margin-left: 10px;
}

.interview-question-bubble {
    display: flex;
    justify-content: center;
    align-items: center;
}

.interview-question-bubble-elem {
    width: 8px;
    height: 8px;
    background-color: #ECF9EE;
    border: 1px solid #379B42;
    border-radius: 25px;
    margin-right: 16px;
    cursor: pointer;
    transition: background-color .3s ease-in;
}

.interview-question-bubble-elem:hover {
    background-color: #379B42;
}

.interview-question-bubble-elem:last-child {
    margin-right: 0;
}

.interview-question-bubble-elem.is-active {
    background-color: #379B42;
}

.element-block-col.col-elem-3 ~ .element-block-month {
    margin-top: 92px;
}

.element-block-col.col-elem-4 ~ .element-block-month {
    margin-top: 120px;
}

.form-check-input {
    position: absolute;
}

.tooltip-btn, .tooltip-container, .legend-btn, .mobile-lines, .mobile-interview-btn {
    display: none;
}
.legend-desktop {
        display: flex;
        align-items: center;
        justify-content: left;
        font-style: normal;
        font-weight: 500;
        font-size: 18px;
        line-height: 24px;
        color: #39AD46;
        margin-top: 24px;
        margin-bottom: 6px;
        cursor: pointer;
}

.legend_container-desktop {
    padding: 0 ;
}
.legend_container-desktop p {
    font-size: 1rem;
}
@media (max-width: 1550px) {
    .mobile-lines {
        display: block;
        background: linear-gradient(90deg, #DB0030, #B6B7B7, #3741B1);
        transform: rotate(90deg);
        height: 1px;
        margin: 0;
        position: absolute;
    }
    .element-block-wrap.total-elem-5 .mobile-lines {
        top: 133px;
        width: 218px;
    }
    .element-block-wrap.total-elem-4 .mobile-lines {
        top: 107px;
        width: 163px;
    }
    .element-block-wrap.total-elem-3 .mobile-lines {
        top: 80px;
        width: 108px;
    }
    .element-block-col.col-elem-5 ~ .element-block-month {
        margin-top: 10px;
    }
    .element-block-col.col-elem-4 ~ .element-block-month {
        margin-top: 10px;
    }
    .element-block-col.col-elem-3 ~ .element-block-month {
        margin-top: 10px;
    }
    .element-block-col.col-elem-5, .element-block-col.col-elem-3, .element-block-col.col-elem-4 {
        display: none;
    }
}

@media (max-width: 1250px) {
    .subscribe-wrap-block {
        flex-direction: column;
    }
    .subscribe-form-wrap {
        margin-top: 20px;
    }
    .subscribe-form {
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .element-block-wrap {
        position: relative;
    }
    .interview-h2 {
        font-style: normal;
        font-weight: 600;
        font-size: 24px;
        line-height: 28px;
    }
    .interview-desc {
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
        line-height: 22px;
    }
    .interview-btn {
        display: none;
    }
    .mobile-interview-btn {
        display: block;
        font-style: normal;
        font-weight: 500;
        font-size: 18px;
        line-height: 24px;
        text-decoration-line: underline;
        color: #39AD46;
        margin-top: 24px;
        max-width: 335px;
    }
    .content {
        width: 100%;
        border-top: 1px solid #BDBDBD;
        padding: 15px 1.3125rem 3.4375rem 1.3125rem;
        margin-top: 20px;
    }
    .interview-block-wrap {
        padding: 18px 20px;
    }
    .interview-elem-block {
        padding: 23px 20px;
    }
    .interview-elem-title {
        font-style: normal;
        font-weight: 500;
        font-size: 18px;
        line-height: 24px;
    }
    .interview-tabBtn-block {
        flex-direction: column;
    }
    .interview-tabBtn {
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 20px;
    }
    .interview-tabBtn:first-child {
        margin-right: 0;
    }
    .interview-tabBtn:last-child {
        margin-top: 8px;
    }
    .interview-tabBtn.tab__content_active {
        font-weight: 400;
    }
    #answer_area {
        padding-top: 0;
    }
    .element-block-name {
        display: none;
    }
    .element-block-line {
        width: 100%;
    }
    .element-block-month {
        width: 100%;
        margin-left: 0;
    }
    .element-month {
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 20px;
        text-align: center;
    }
    .element-block-col.col-elem-5 {
        width: 100%;
        margin-left: 0;
    }
    .element-block-col.col-elem-3 {
        width: 100%;
        margin-left: 0;
    }
    .element-block-col.col-elem-4 {
        width: 100%;
        margin-left: 0;
    }
    .element-block-col.col-elem-3 .element-col {
        margin: 0 43px;
    }
    #question_area {
        margin-top: 41px;
    }
    .interview-h2 {
        font-style: normal;
        font-weight: 600;
        font-size: 24px;
        line-height: 28px;
    }
    .interview-h2 br {
        display: none;
    }
    .subscribe-wrap-block {
        flex-direction: column;
    }
    .subscribe-form input {
        min-width: unset;
        width: 100%;
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 20px;
        padding: 9px;
    }
    .subscribe-form {
        flex-direction: column;
    }
    .subscribe-title {
        font-style: normal;
        font-weight: 600;
        font-size: 18px;
        line-height: 26px;
    }
    .subscribe-desc {
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 23px;
    }
    .interview-subscribe-wrap {
        padding: 22px;
        margin: 42px 0;
    }
    .subscribe-form-wrap {
        margin-top: 16px;
    }
    .subscribe-form label {
        margin-right: 0;
    }
    .btn-submit-subscribe {
        margin-top: 7px;
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
        line-height: 23px;
    }
    .interview-question-wrap {
        padding: 40px 20px 58px;
        margin-top: 25px;
    }
    .interview-question-bubble {
        justify-content: space-between;
    }
    .form-check-label span {
        max-width: 84%;
    }
    .interview-р2 {
        font-style: normal;
        font-weight: 600;
        font-size: 24px;
        line-height: 28px;
    }
    .interview-question-wrap-title {
        font-style: normal;
        font-weight: 500;
        font-size: 20px;
        line-height: 22px;
        padding: 0 10px;
        margin-bottom: 29px;
    }
    .form-check {
        padding: 0 10px;
    }
    .interview-question-wrap .form-check .form-check-label {
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
        line-height: 22px;
    }
    .btn-next-question {
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
        line-height: 23px;
    }
    .tooltip-container.active {
        position: absolute;
        width: 240px;
        height: 26px;
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 20px;
        text-align: center;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 10px;
        color: #252525;
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid #E0E0E0;
        border-radius: 6px;
        top: 15px;
        left: calc(50% - 120px);
        z-index: 5;
    }
    .tooltip-btn {
        display: block;
        width: 38px;
        height: 38px;
        min-width: 38px;
        min-height: 38px;
        object-fit: cover;
        background-image: url('/images/btnOpen.svg');
        background-repeat: no-repeat;
        background-size: 100%;
        cursor: pointer;
        position: absolute;
        top: -19px;
        right: 0;
        z-index: 2;
    }

    #block-quest-329 .tooltip-btn {
        width: 50px;
        height: 50px;
        min-width: 50px;
        min-height: 50px;
        display: flex;
        justify-content: space-around;
        align-items: center;
        top: -25px;
    }

    #block-quest-329 .tooltip-btn::before {
        content: '';
        box-shadow: 0px 0px 6px 1px #828282;
        width: calc(50% + 3px);
        position: absolute;
        height: calc(50% + 3px);
        display: flex;
        border-radius: 50%;
    }

    #block-quest-330 .tooltip-btn {
        width: 50px;
        height: 50px;
        min-width: 50px;
        min-height: 50px;
        display: flex;
        justify-content: space-around;
        align-items: center;
        top: -25px;
    }

    #block-quest-330 .tooltip-btn::after, #block-quest-330 .tooltip-btn::before {
        content: '';
        position: absolute;
        border: 3px solid rgba(182, 183, 183, 1);
        left: -20px;
        opacity: 0;
        right: -20px;
        top: -20px;
        bottom: -20px;
        border-radius: 50%;
        animation: pulse 1.8s linear infinite;
    }

    #block-quest-330 .tooltip-btn::after::after {
        animation-delay: 1.25s;
    }

    @keyframes pulse {
        0% {
            transform: scale(0.3);
            opacity: 0;
        }
        50% {
            opacity: 1;
        }
        100% {
            transform: scale(0.6);
            opacity: 0;
        }
    }

	.legend-desktop,  .legend_container-desktop{
		display: none;
	}
    .legend-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        font-style: normal;
        font-weight: 500;
        font-size: 18px;
        line-height: 24px;
        text-decoration-line: underline;
        color: #39AD46;
        margin-top: 24px;
        margin-bottom: 6px;
        cursor: pointer;
    }
    .legend-btn::before {
        content: '';
        width: 20px;
        height: 20px;
        object-fit: cover;
        background-image: url('/images/btnOpen-green.svg');
        background-repeat: no-repeat;
        background-size: 100%;
        cursor: pointer;
        margin-right: 5px;
    }
    .legend-modal-window {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        background-color: white;
        padding: 30px 15px;
        box-shadow: 0 3rem 5rem rgb(0 0 0 / 30%);
        z-index: 11;
    }
    .legend-overlay {
        position: absolute;
        top: -20px;
        left: 0;
        width: 100%;
        height: 100.58%;
        background-color: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(3px);
        z-index: 10;
    }
    .legend-modal-close {
        position: absolute;
        top: 15px;
        right: 15px;
        cursor: pointer;
        border: none;
        background-image: url(/images/close-blk.svg);
        background-repeat: no-repeat;
        width: 15px;
        height: 15px;
        background-size: cover;
    }
    .legend_container {
        padding: 0 60px;
    }
    .legend_container p {
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 20px;
        text-align: center;
        color: #252525;
        margin-top: 20px;
    }
    .legend_container p:first-child {
        margin-top: 0;
    }
    .legend-modal-window.hidden, .legend-overlay.hidden {
        display: none;
    }
}
.d_none{
    background: transparent;
}
/* End */
/* /local/templates/leaugue/assets/css/price_index_what.css?170048239017708 */
/* /local/templates/leaugue/assets/css/feedbackForm.css?17004823902688 */
/* /local/templates/leaugue/assets/css/sidebar.css?17004823901378 */
/* /local/templates/leaugue/assets/css/indexModal.css?17004823904039 */
/* /local/templates/leaugue/components/bitrix/menu/index/style.css?1700482390267 */
/* /local/components/ligapm/index.question/templates/.default/style.css?170048239020918 */
