@charset "UTF-8";
:root {
  --font-family: "Inter", sans-serif;
  --content-width: 1200px;
  --container-offset: 20px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --white-color: #fff;
  --bg-color: #FAFAFA;
  --black-color: #222222;
  --grey-color: #888888;
  --green-color: #2AB446;
  --red-color: #F43C3C;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable value-keyword-case */
@font-face {
  font-family: "Inter";
  src: url("../fonts/../fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/../fonts/Inter-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/../fonts/Inter-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/../fonts/Inter-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/../fonts/Inter-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/../fonts/Inter-Black.woff2") format("woff2");
  font-weight: 900;
  font-display: swap;
  font-style: normal;
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  color: var(--dark-color);
  background-color: var(--bg-color);
}

p,
h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

.page {
  height: 100%;
  font-family: var(--font-family);
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

.main {
  padding-top: var(--header-height);
}
.main__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media (max-width: 1024px) {
  .main__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.main__wrapper .main__content {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
.main__wrapper .main__content > :not(:last-child) {
  margin-bottom: 40px;
}
.main__wrapper .sidebar {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 360px;
  flex: 0 0 360px;
}
@media (max-width: 1024px) {
  .main__wrapper .sidebar {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.flex--aic {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.flex--jcc {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.flex--wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex--gap-12 {
  gap: 12px;
}
@media (max-width: 576px) {
  .flex--wrap-576 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.page__body {
  margin: 0;
  min-width: 360px;
  min-height: 100%;
  font-size: 16px;
}

img {
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

a {
  text-decoration: none;
}

.is-hidden {
  display: none !important;
  /* stylelint-disable-line declaration-no-important */
}

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

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

.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}
.input-reset::-webkit-search-decoration, .input-reset::-webkit-search-cancel-button, .input-reset::-webkit-search-results-button, .input-reset::-webkit-search-results-decoration {
  display: none;
}

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

.container {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}
@media (max-width: 576px) {
  .container {
    padding: 0 20px;
  }
}
@media (max-width: 376px) {
  .container {
    padding: 0 10px;
  }
}

.centered {
  text-align: center;
}

.dis-scroll {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

.page--ios .dis-scroll {
  position: relative;
}

.ibg {
  display: block;
  position: relative;
}

.ibg img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
}

.burger {
  min-width: 24px;
  --burger-width: 24px;
  --burger-height: 18px;
  --burger-line-height: 4px;
  position: relative;
  z-index: 500;
  border: none;
  padding: 0;
  width: var(--burger-width);
  height: var(--burger-height);
  color: #000;
  background-color: transparent;
  cursor: pointer;
  display: none;
}
.burger::before, .burger::after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 4px;
  border-radius: 50%;
  height: var(--burger-line-height);
  background-color: currentColor;
}
.burger::before {
  top: 0;
}
.burger::after {
  top: calc(100% - var(--burger-line-height));
}
.burger__line {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 4px;
  border-radius: 50%;
  height: var(--burger-line-height);
  background-color: currentColor;
}
.burger--active {
  color: #242424;
}
.burger--active::before {
  color: var(--green-color);
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.burger--active::after {
  color: var(--green-color);
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.burger--active .burger__line {
  color: var(--green-color);
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
@media (max-width: 1024px) {
  .burger {
    display: block;
  }
}

.svg-icon {
  fill: #878787;
  width: 20px;
  height: 20px;
}

.title {
  font-weight: 800;
  text-transform: uppercase;
  color: var(--black-color);
}
.title span {
  color: var(--green-color);
}
.title--main {
  font-size: 40px;
}
@media (max-width: 768px) {
  .title--main {
    font-size: 28px;
  }
}
.title--section-large {
  font-size: 36px;
  color: var(--white-color);
}
.title--section-large span {
  color: var(--red-color);
}
@media (max-width: 768px) {
  .title--section-large {
    font-size: 28px;
  }
}
.title--section {
  font-size: 26px;
}
@media (max-width: 1024px) {
  .title--section {
    font-size: 24px;
  }
}
.title--section-s {
  font-size: 20px;
}
.title--subsection {
  font-size: 17px;
}
.title--section-secondary {
  font-size: 18px;
}
.title--small-bold {
  font-size: 14px;
}
.title--small-semibold {
  font-weight: 600;
  font-size: 14px;
}
.title--small {
  font-weight: 700;
  font-size: 13px;
}
.title--center {
  text-align: center;
}

.text {
  font-weight: 500;
}
.text--lg {
  font-size: 18px;
  color: var(--grey-color);
}
@media (max-width: 768px) {
  .text--lg {
    font-size: 15px;
  }
}
.text--md {
  font-size: 16px;
  color: var(--white-color);
}
.text--base {
  font-size: 15px;
  color: var(--grey-color);
}
.text--base-black {
  font-weight: 400;
  font-size: 14px;
  color: var(--black-color);
}
.text--m-black {
  font-weight: 800;
  font-size: 13px;
  color: var(--black-color);
}
.text--m {
  font-weight: 600;
  font-size: 13px;
  color: var(--black-color);
}
.text--sm {
  font-size: 12px;
  color: var(--black-color);
}
.text--xs {
  font-size: 11px;
  color: var(--grey-color);
}
.text--grey {
  color: var(--grey-color);
}
.text--black {
  color: var(--black-color);
}
.text--white {
  color: var(--white-color);
}
.text--green {
  color: var(--green-color);
}
.text--red {
  color: var(--red-color);
}
.text--three-truths {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* Ограничение в 3 строки */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 45px;
}

/* Начальное состояние элемента (скрыт) */
.hidden-toggle-box {
  max-height: 0px;
  opacity: 0;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-right: 0 !important;
  padding-right: 0 !important;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  clip-path: inset(0 0 100% 0);
  -webkit-transition: opacity 0.3s ease-in, clip-path 0.3s ease-in, padding 0.3s ease-in, margin 0.3s ease-in, -webkit-transform 0.3s ease-in;
  transition: opacity 0.3s ease-in, clip-path 0.3s ease-in, padding 0.3s ease-in, margin 0.3s ease-in, -webkit-transform 0.3s ease-in;
  transition: transform 0.3s ease-in, opacity 0.3s ease-in, clip-path 0.3s ease-in, padding 0.3s ease-in, margin 0.3s ease-in;
  transition: transform 0.3s ease-in, opacity 0.3s ease-in, clip-path 0.3s ease-in, padding 0.3s ease-in, margin 0.3s ease-in, -webkit-transform 0.3s ease-in;
}

.show-toggle-box {
  opacity: 1;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  clip-path: inset(0 0 0 0);
  -webkit-transition: opacity 0.3s ease-out, clip-path 0.3s ease-out, padding 0.3s ease-out, margin 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, clip-path 0.3s ease-out, padding 0.3s ease-out, margin 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out, clip-path 0.3s ease-out, padding 0.3s ease-out, margin 0.3s ease-out;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out, clip-path 0.3s ease-out, padding 0.3s ease-out, margin 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.header {
  position: fixed;
  z-index: 100;
  width: 100%;
  background-color: #fff;
  padding-right: inherit;
}
.header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 60px;
  min-height: 112px;
  -webkit-transition: min-height 0.3s ease 0s;
  transition: min-height 0.3s ease 0s;
}
@media (max-width: 1200px) {
  .header__wrapper {
    gap: 40px;
  }
}
@media (max-width: 1024px) {
  .header__wrapper {
    gap: 20px;
  }
}
.header__city {
  position: relative;
}
@media (max-width: 1024px) {
  .header__city {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
  }
}
.header.sticky .header__wrapper {
  min-height: 80px;
}

.logo {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 183px;
  flex: 0 0 183px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 768px) {
  .logo {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 52px;
    flex: 0 0 52px;
  }
}
.logo img {
  max-height: 72px;
  -webkit-transition: max-height 0.3s ease 0s;
  transition: max-height 0.3s ease 0s;
}
.logo__text {
  width: 86px;
  height: 20px;
}
@media (max-width: 768px) {
  .logo__text {
    display: none;
  }
}

.header.sticky .logo img {
  max-height: 52px;
}

.nav {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
}
.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 12px;
}
.nav__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2px;
  font-weight: 500;
  font-size: 15px;
  color: var(--black-color);
  border-radius: 24px;
  padding: 8px 12px;
  min-height: 26px;
  line-height: 115%;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: transparent;
  -webkit-transition: background-color 0.3s ease 0s;
  transition: background-color 0.3s ease 0s;
}
@media (any-hover: hover) {
  .nav__link:hover {
    background-color: #f3f3f3;
  }
}
.nav__sub-list .nav__link {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
@media (max-width: 1024px) {
  .nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: fixed;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    left: 50%;
    top: 0;
    -webkit-transform: translate(-50%, -100%);
    -ms-transform: translate(-50%, -100%);
    transform: translate(-50%, -100%);
    z-index: 100;
    height: auto;
    width: 95%;
    background-color: #fff;
    -webkit-box-shadow: 0 0 52px 0 rgba(0, 0, 0, 0.06);
    box-shadow: 0 0 52px 0 rgba(0, 0, 0, 0.06);
    padding: 20px 32px;
    margin: 122px auto 15px auto;
    overflow-y: auto;
    visibility: hidden;
    border-radius: 16px;
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    color: #242424;
    gap: 20px;
  }
  .nav .nav__link {
    padding: 2px 12px;
  }
  .nav .nav__list {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 calc(50% - 20px);
    flex: 0 1 calc(50% - 20px);
  }
  .nav .nav__sub-list {
    position: relative;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 calc(50% - 20px);
    flex: 0 1 calc(50% - 20px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
  }
  .nav .nav__sub-list .nav__link {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .nav .nav__link.dropdown__btn {
    display: none;
  }
  .nav .nav__sub-list.dropdown__list {
    opacity: 1;
    pointer-events: all;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    position: relative;
    top: auto;
    right: auto;
    z-index: 9;
    width: auto;
    background-color: transparent;
    border-radius: 0;
    padding: 0px;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .nav.menu--active {
    visibility: visible;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
  .nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.city-popup {
  position: absolute;
  top: calc(100% + 10px);
  /* Размещаем сразу под кнопкой */
  left: 0;
  z-index: 100;
  width: 240px;
  background-color: #fff;
  border-radius: 12px;
  padding: 12px;
  -webkit-box-shadow: 0 0 52px 0 rgba(0, 0, 0, 0.08);
  box-shadow: 0 0 52px 0 rgba(0, 0, 0, 0.08);
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  /* Убираем из виду */
  -webkit-transform: translate(0, -100%);
  -ms-transform: translate(0, -100%);
  transform: translate(0, -100%);
  opacity: 0;
  pointer-events: none;
}
.city-popup__text {
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--black-color);
  margin-bottom: 4px;
}
.city-popup__text span {
  color: var(--green-color);
}
.city-popup__description {
  font-weight: 500;
  font-size: 11px;
  color: var(--grey-color);
}
.city-popup__buttons {
  margin-top: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.city-popup__button {
  font-size: 13px;
  font-weight: 600;
  color: var(--grey-color);
  border-bottom: 2px solid transparent;
  -webkit-transition: border-bottom 0.3s ease 0s;
  transition: border-bottom 0.3s ease 0s;
}
@media (any-hover: hover) {
  .city-popup__button:hover {
    border-bottom: 2px solid rgba(136, 136, 136, 0.5215686275);
  }
}
.city-popup__button--edit {
  color: var(--green-color);
}
@media (any-hover: hover) {
  .city-popup__button--edit:hover {
    border-bottom: 2px solid rgba(42, 180, 70, 0.5215686275);
  }
}
.city-popup.show {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
  pointer-events: all;
}

.buttons-wrapper {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  display: none;
}
@media (max-width: 1024px) {
  .buttons-wrapper {
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px;
  }
}
.buttons-wrapper .btn-icon {
  height: 20px;
}

.auth-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.auth-buttons .btn {
  white-space: nowrap;
}

.user-card {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: absolute;
  top: 120px;
  /* Отступ от хедера */
  right: 20px;
  /* Прижат к правому краю */
  background: white;
  padding: 20px;
  border-radius: 10px;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  width: auto;
  gap: 20px;
  max-width: 350px;
  width: 90%;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  opacity: 0;
}

.user-card.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.user-card__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
.user-card__bottom {
  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;
  gap: 16px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.user-card__image {
  display: block;
  overflow: hidden;
  border-radius: 6px;
  position: relative;
  width: 96px;
  height: 96px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 96px;
  flex: 0 0 96px;
}
.user-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.user-card__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 2px;
}
.user-card__name {
  margin-bottom: 8px;
}
.user-card__section > :not(:last-child) {
  margin-bottom: 8px;
}
.user-card__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 4px;
}
.user-card__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
}
.user-card__link {
  border-radius: 4px;
  width: 20px;
  height: 20px;
  background: #f3f3f3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: background 0.3s ease 0s;
  transition: background 0.3s ease 0s;
}
.user-card__link svg {
  width: 14px;
  height: 14px;
}
@media (any-hover: hover) {
  .user-card__link:hover {
    background: #e4e4e4;
  }
}

.tag {
  white-space: nowrap;
}

.footer {
  padding: 20px 0;
  background-color: var(--white-color);
}
.footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(51, 51, 51, 0.12);
}
@media (max-width: 768px) {
  .footer__top {
    gap: 12px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-bottom: 16px;
  }
}
.footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 20px;
}
@media (max-width: 768px) {
  .footer__bottom {
    padding-top: 16px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
  }
}
.footer__bottom .footer__link {
  text-decoration: underline;
  word-wrap: nowrap;
  white-space: nowrap;
}
.footer__nav {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
}
@media (max-width: 768px) {
  .footer__nav {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}
.footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 12px;
}
@media (max-width: 768px) {
  .footer__list {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 6px;
  }
}
.footer__link-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2px;
  font-weight: 500;
  font-size: 15px;
  color: var(--black-color);
  border-radius: 24px;
  padding: 8px 12px;
  min-height: 26px;
  line-height: 115%;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: transparent;
  -webkit-transition: background-color 0.3s ease 0s;
  transition: background-color 0.3s ease 0s;
}
@media (max-width: 768px) {
  .footer__link-item {
    padding: 8px 2px;
  }
}
@media (any-hover: hover) {
  .footer__link-item:hover {
    background-color: #f3f3f3;
  }
}
.footer__copyright {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
}
/* Стили для кастомного селекта */
.custom-select {
  position: relative;
  cursor: pointer;
}

/* Верхний блок (отображает выбранное значение) */
.custom-select__top {
  background: #f4f4f4;
  padding: 10px;
  border-radius: 5px;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.custom-select__top.placeholder {
  color: #888888;
}

/* Список элементов */
.custom-select__list {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 100%;
  background: #fff;
  border-radius: 5px;
  z-index: 10;
  padding: 0;
  overflow: visible;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  transform: translateY(-10px);
  -webkit-transition: opacity 0.3s ease, visibility 0.3s, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s, -webkit-transform 0.3s ease;
}

/* Элементы списка */
.custom-select__item {
  padding: 10px;
  list-style: none;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}

.custom-select__item:hover {
  background: #f0f0f0;
}

/* Активный элемент */
.custom-select__item.active {
  background: #007bff;
  color: #fff;
}

/* Открытый селект с плавным появлением */
.custom-select--open .custom-select__list {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.custom-select--open .arrow-down::after {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.custom-scroll {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.custom-scroll__content {
  height: 100%;
  overflow-y: scroll;
  -ms-overflow-style: none; /* Для старых версий IE */
  scrollbar-width: none; /* Для Firefox */
}
.custom-scroll__content::-webkit-scrollbar {
  display: none; /* Для Chrome, Safari и Edge */
}

.custom-scroll__track {
  position: absolute;
  left: 6px;
  top: 30px;
  bottom: 0;
  width: 4px;
  background: #F3F3F3;
  border-radius: 4px;
  height: calc(100% - 70px);
}

.custom-scroll__thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30px;
  background: #C3C3C3;
  border-radius: 4px;
}

.btn {
  min-height: 44px;
  color: #fff;
  border-radius: 8px;
  padding: 10px 24px;
  font-weight: 600;
  font-size: 17px;
  background-color: transparent;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}
.btn span {
  color: inherit;
  font-size: inherit;
  z-index: 3;
  position: relative;
}
.btn::after {
  content: "";
  z-index: 2;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 8px;
  background-color: var(--green-color);
}
.btn::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 4px;
  left: 4px;
  width: 100%;
  height: 100%;
  background-color: var(--red-color);
  border-radius: 8px;
  /* Совпадает с родителем */
  -webkit-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
}
@media (any-hover: hover) {
  .btn:hover::before {
    -webkit-transform: translate(-1px, -1px);
    -ms-transform: translate(-1px, -1px);
    transform: translate(-1px, -1px);
  }
}
.btn--second::after {
  content: "";
  background: var(--red-color);
}
.btn--second::before {
  content: "";
  background-color: var(--green-color);
}
.btn--outline span {
  color: var(--green-color);
}
.btn--outline::after {
  content: "";
  border: 3px solid var(--green-color);
  color: var(--green-color);
  background-color: #ffffff;
}
.btn--outline::before {
  content: "";
  background-color: transparent;
  clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 87%, 89% 89%, 98% 0);
  border: 3px solid var(--red-color);
}
.btn--outline-white span {
  color: var(--white-color);
}
.btn--outline-white::after {
  content: "";
  border: 3px solid var(--white-color);
  color: var(--white-color);
  background-color: transparent;
}
.btn--outline-white::before {
  content: "";
  background-color: transparent;
  clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 87%, 89% 89%, 98% 0);
  border: 3px solid var(--red-color);
}
.btn--lg {
  min-height: 56px;
  padding-left: 32px;
  padding-right: 32px;
}
.btn--small {
  font-size: 14px;
  font-weight: 600;
  min-height: 36px;
  padding-left: 20px;
  padding-right: 20px;
}
.btn--width100 {
  width: 100%;
}
.btn-- span {
  word-wrap: no-wrap;
}

.btn-grey {
  border-radius: 24px;
  padding: 8px;
  min-height: 26px;
  font-weight: 500;
  font-size: 14px;
  line-height: 115%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--black-color);
  position: relative;
  -webkit-transition: background-color 0.3s ease 0s;
  transition: background-color 0.3s ease 0s;
  background-color: #f3f3f3;
}
.btn-grey--big {
  padding: 8px 12px;
  min-height: 36px;
}
.btn-grey--rectangle {
  padding: 20px 18px;
  min-height: 36px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  color: #888;
}
.btn-grey--rectangle.active {
  font-weight: 600;
  color: var(--green-color);
}
.btn-grey--icon-location::before {
  content: "";
  position: relative;
  margin-right: 2px;
  width: 14px;
  height: 14px;
  background-image: url("../img/svg/map-point.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.btn-grey__close {
  position: relative;
  margin-left: 4px;
  background-size: contain;
  background-image: url(../img/svg/close.svg);
  background-repeat: no-repeat;
  width: 12px;
  height: 12px;
}
@media (any-hover: hover) {
  .btn-grey:hover {
    background-color: #eeeeee;
  }
}

.heart-icon {
  position: relative;
}
.heart-icon::after {
  content: "";
  background-image: url(../img/svg/heart.svg);
  background-repeat: no-repeat;
  width: 14px;
  height: 14px;
  position: absolute;
  right: 0;
  top: 0;
}

span.btn-toggle__text {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 8px 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
  -ms-hyphens: auto;
  hyphens: auto; /* Позволяет переносить слова по слогам (если поддерживается) */
}

.btn-toggle__default {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

.btn-toggle__active {
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  opacity: 0;
  background-color: var(--green-color);
  border-radius: 8px;
}

.btn-toggle--active .btn-toggle__default {
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  opacity: 0;
}

.btn-toggle--active .btn-toggle__active {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

.btn-toggle--active span.btn-toggle__text.btn-toggle__active {
  height: auto;
  bottom: 0;
}

.search-icon {
  position: relative;
}
.search-icon::after {
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 24px;
  position: absolute;
  margin-right: 4px;
  background-size: contain;
  background-image: url(../img/svg/search-profile.svg);
  background-repeat: no-repeat;
  width: 14px;
  height: 14px;
}

.dropdown {
  position: relative;
}
.dropdown__btn {
  position: relative;
  z-index: 10;
}
.dropdown__list {
  position: absolute;
  top: calc(100% + 10px);
  /* Размещаем сразу под кнопкой */
  right: 0;
  z-index: 9;
  width: auto;
  background-color: #fff;
  border-radius: 12px;
  padding: 12px;
  -webkit-box-shadow: 0 0 52px 0 rgba(0, 0, 0, 0.08);
  box-shadow: 0 0 52px 0 rgba(0, 0, 0, 0.08);
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition: opacity 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  transition: opacity 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, opacity 0.3s ease 0s;
  transition: transform 0.3s ease 0s, opacity 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  /* Убираем из виду */
  -webkit-transform: translate(0, -100%);
  -ms-transform: translate(0, -100%);
  transform: translate(0, -100%);
  opacity: 0;
  pointer-events: none;
}
.dropdown__list.show {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
  pointer-events: all;
}

.arrow-down {
  position: relative;
  text-decoration: none;
}

.arrow-down::after {
  content: "";
  position: relative;
  width: 12px;
  height: 12px;
  background-image: url("../img/svg/arrow-down.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
}

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

.toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.toggle:not(:last-child) {
  margin-bottom: 10px;
}

/* Стили для самого тогла */
.toggle__true-label {
  position: relative;
  display: inline-block;
  width: 28px;
  height: 14px;
}

.toggle__input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle__slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #f3f3f3;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 34px;
}

.toggle__slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  border-radius: 50%;
  left: 0px;
  bottom: -1px;
  background-color: #c3c3c3;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.toggle__input:checked + .toggle__slider:before {
  -webkit-transform: translateX(12px);
  -ms-transform: translateX(12px);
  transform: translateX(12px);
  background-color: var(--green-color);
}

/* Стили для текста, который идет рядом с тоглом */
.toggle__label {
  font-size: 16px;
}

.form__group--four {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(25% - 12px);
  flex: 0 1 calc(25% - 12px);
}
@media (min-width: 1024px) and (max-width: 1250px) {
  .form__group--four {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 33%;
    flex: 0 1 33%;
  }
}
@media (min-width: 577px) and (max-width: 766px) {
  .form__group--four {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 calc(50% - 12px);
    flex: 0 1 calc(50% - 12px);
  }
}
@media (max-width: 576px) {
  .form__group--four {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
  }
}
.form__group--two {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(50% - 12px);
  flex: 0 1 calc(50% - 12px);
}
@media (max-width: 576px) {
  .form__group--two {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
  }
}
@media (max-width: 768px) {
  .form__group--two-tablet {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 calc(50% - 6px);
    flex: 0 1 calc(50% - 6px);
  }
}
.form__group--full {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
}
.form__group--search > :not(:last-child) {
  margin-bottom: 8px;
}
.form__group--prefix-right {
  position: relative;
}
.form__group--prefix-right span {
  position: absolute;
  font-weight: 500;
  font-size: 13px;
  color: #888;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 24px;
  width: 14px;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.form__group--prefix-right input {
  padding-right: 40px;
}
.form__group-input-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
}
.form__input-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.form__input-group > :not(:last-child) {
  margin-right: 4px;
}
.form__input-group--prefix-left {
  position: relative;
}
.form__input-group--prefix-left span {
  position: absolute;
  font-weight: 500;
  font-size: 13px;
  color: #888;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 24px;
  width: 14px;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.form__input-group--prefix-left input {
  padding-left: 60px;
}
.form__row .form__btn-close {
  margin-top: 14px;
}
.form__row .form__btn-close svg {
  fill: #c3c3c3;
}
.form__list-city {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.form__label {
  margin: 0 0 4px 12px;
}
.form__input, .form__textarea {
  border-radius: 24px;
  padding: 8px 20px;
  background-color: #f3f3f3;
  width: 100%;
  min-height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--black-color);
  font-weight: 500;
  font-size: 13px;
}
.form__input--large {
  min-height: 52px;
  padding: 8px 24px;
  font-size: 15px;
}
.form__input::-webkit-input-placeholder, .form__textarea::-webkit-input-placeholder {
  color: #888888;
}
.form__input::-moz-placeholder, .form__textarea::-moz-placeholder {
  color: #888888;
}
.form__input:-ms-input-placeholder, .form__textarea:-ms-input-placeholder {
  color: #888888;
}
.form__input::-ms-input-placeholder, .form__textarea::-ms-input-placeholder {
  color: #888888;
}
.form__input::placeholder, .form__textarea::placeholder {
  color: #888888;
}
.form__input--search {
  padding: 8px 24px 8px 44px;
}
.form__textarea {
  min-height: 120px;
  resize: vertical;
  border: transparent;
  line-height: 1.5;
  overflow: auto;
  white-space: pre-wrap;
}
.form__actions {
  margin-top: 16px;
}
.form__actions:not(:last-child) {
  margin-bottom: 20px;
}
.form__actions > :not(:last-child) {
  margin-bottom: 8px;
}
.form__link {
  display: inline-block;
  text-decoration: underline;
}
.form__link--right {
  text-align: right;
  width: 100%;
}
.form__text {
  white-space: nowrap;
}
.form__text--center {
  text-align: center;
}
.form__social-login > :not(:last-child) {
  margin-bottom: 12px;
}
.form__select-top {
  border-radius: 24px;
  padding: 8px 20px;
  background-color: #f3f3f3;
  width: 100%;
  min-height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--black-color);
  font-weight: 500;
  font-size: 13px;
}
.form__select-list {
  border-radius: 24px;
  background-color: #fdfdfd;
}
.form__select-item {
  color: var(--black-color);
  font-weight: 500;
  font-size: 13px;
  border-radius: 24px;
  padding: 16px 20px;
  background-color: transparent;
  width: 100%;
}
.form__select-item.custom-select__item.active {
  background-color: transparent;
  color: var(--green-color);
}

.graph-modal__content .form__group {
  margin-bottom: 8px;
}
.graph-modal__content .form__group--margin-top {
  margin-top: 16px;
}
.graph-modal__content .form__actions {
  margin-top: 16px;
  width: 100%;
}
.graph-modal__content .form__actions .btn {
  width: 100%;
}

.social-login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}
.social-login__button {
  width: 40px;
  height: 40px;
  background-color: #f3f3f3;
  border-radius: 4px;
  -webkit-transition: background-color 0.3s ease 0s;
  transition: background-color 0.3s ease 0s;
}
@media (any-hover: hover) {
  .social-login__button:hover {
    background-color: #d8d8d8;
  }
}

@media (max-width: 1024px) {
  .account-content__block--personal.form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (max-width: 576px) {
  .account-content__block--personal.form .form__group:nth-child(1) {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .account-content__block--personal.form .form__btn-close--second-then-756 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .account-content__block--personal.form .form__group:nth-child(2) {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .account-content__block--personal.form .form__group:nth-child(3) {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
}

.rating {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  gap: 8px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.rating__input {
  display: none;
}

.rating__label {
  width: 30px;
  height: 30px;
  background-size: contain;
  cursor: pointer;
}
.rating__label .rating__svg-icon {
  width: 28px;
  height: 28px;
  -webkit-transition: fill 0.3s ease 0s;
  transition: fill 0.3s ease 0s;
  fill: #F3F3F3;
}

.rating__input:checked ~ .rating__label,
.rating__label:hover,
.rating__label:hover ~ .rating__label {
  background-size: contain;
}
.rating__input:checked ~ .rating__label .rating__svg-icon,
.rating__label:hover .rating__svg-icon,
.rating__label:hover ~ .rating__label .rating__svg-icon {
  fill: #FF9000;
}

.hero {
  position: relative;
}
.hero .hero__container {
  position: relative;
}
.hero__body {
  height: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 80px 0;
}
.hero__body--column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.hero__body > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
}
@media (max-width: 768px) {
  .hero__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 40px 0;
    gap: 40px;
  }
}
.hero__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.hero__title {
  margin-bottom: 12px;
}
.hero__title--account {
  margin: 60px 0;
}
.hero__buttons {
  margin-top: 52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 768px) {
  .hero__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px;
    max-width: 500px;
    width: 100%;
    margin: 52px auto 0 auto;
  }
}
.hero__image {
  padding: 0px 0px 30% 0px;
}
@media (max-width: 768px) {
  .hero__image {
    padding: 0px 0px 40% 0px;
  }
}
@media (max-width: 600px) {
  .hero__image {
    padding: 0px 0px 59% 0px;
  }
}
.hero__image img {
  -o-object-fit: contain;
  object-fit: contain;
}

.breadcrumbs {
  margin-bottom: 32px;
}
.breadcrumbs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.breadcrumbs__item {
  font-weight: 500;
  font-size: 14px;
  color: var(--black-color);
}
.breadcrumbs__item.active {
  color: var(--green-color);
}
.breadcrumbs__item:not(:last-child)::after {
  content: "/";
  position: relative;
  padding: 0 4px;
  color: inherit;
}
.breadcrumbs__link {
  font-weight: 500;
  font-size: 14px;
  color: var(--black-color);
}

.section {
  margin-bottom: 60px;
}
.section__title {
  margin-bottom: 12px;
}
.section__content > :not(:last-child) {
  margin-bottom: 12px;
}
.section__text:not(:last-child) {
  margin-bottom: 10px;
}
.section__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
@media (max-width: 768px) {
  .cards {
    gap: 8px;
  }
}
.cards--column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.cards--wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cards__footer {
  margin-top: 12px;
}
.cards--grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 768px) {
  .cards--grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}

.card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  gap: 16px;
  border-radius: 12px;
  padding: 20px;
  background-color: #ffffff;
}
.card--three {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(33.333% - 16px);
  flex: 0 1 calc(33.333% - 16px);
}
.card--two {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(50% - 16px);
  flex: 0 1 calc(50% - 16px);
}
.card--small {
  padding: 12px;
  gap: 6px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.card--middle {
  padding: 16px;
  gap: 8px;
}
.card--row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
@media (max-width: 576px) {
  .card--column-576 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.card--center-aic {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.card--center-jcc {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .card {
    padding: 12px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
  }
}
@media (max-width: 768px) {
  .card--768-two {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 calc(50% - 4px);
    flex: 0 1 calc(50% - 4px);
  }
}
@media (max-width: 576px) {
  .card--768-two {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 calc(50% - 4px);
    flex: 0 1 calc(50% - 4px);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.card__image {
  display: block;
  overflow: hidden;
  border-radius: 6px;
  position: relative;
}
.card__image--fixed-96 {
  width: 96px;
  height: 96px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 96px;
  flex: 0 0 96px;
}
.card__image--fixed-96 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.card__image--fixed-100 {
  width: 100px;
  height: 100px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100px;
  flex: 0 0 100px;
  -ms-flex-item-align: start;
  align-self: flex-start;
}
.card__image--fixed-100 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.card__image--fixed-116 {
  width: 116px;
  height: 96px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 116px;
  flex: 0 0 116px;
}
.card__image--fixed-116 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.card__image--fixed-72 {
  width: 72px;
  height: 72px;
}
.card__image--fixed-72 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.card__image--fixed-52 {
  width: 52px;
  height: 52px;
}
.card__image--fixed-52 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.card__image--fixed-40 {
  width: 40px;
  min-width: 40px;
  height: 40px;
}
.card__image--fixed-40 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.card__image--full-width {
  width: 100%;
  height: 120px;
  min-height: 120px;
  border-radius: 8px;
}
@media (max-width: 576px) {
  .card__image--full-width {
    height: 92px;
    min-height: 92px;
  }
}
.card__image--full-width img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.card__image--content {
  width: 100%;
  height: auto;
}
.card__image--content img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}
.card__image--stretch {
  width: 100%;
  height: 100%;
}
.card__image--stretch img {
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
  object-fit: fill;
  -o-object-position: center;
  object-position: center;
}
.card__image--opacity {
  opacity: 0.9;
}
.card__wrapper-button-action {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  pointer-events: none;
}
.card__wrapper-button-action svg {
  fill: #fff;
  width: 26px;
  height: 20px;
}
.card__button-action {
  pointer-events: all;
  padding: 6px;
}
.card__button-action.active svg {
  fill: #ff5f5f;
}
.card__icons {
  position: absolute;
  top: 6px;
  left: 6px;
  padding: 4px;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  font-size: 10px;
  background-color: var(--white-color);
  letter-spacing: 2px;
}
.card__content > :not(:last-child) {
  margin-bottom: 6px;
}
@media (max-width: 768px) {
  .card__content--center {
    text-align: center;
  }
}
.card__content--full-width {
  -webkit-box-flex: 1;
  -ms-flex: 1 1;
  flex: 1 1;
  -ms-flex-item-align: start;
  align-self: flex-start;
}
.card__text--m-auto {
  margin-top: auto;
}
.card__link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 12px;
  -webkit-box-shadow: 0 0 52px 0 rgba(0, 0, 0, 0);
  box-shadow: 0 0 52px 0 rgba(0, 0, 0, 0);
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
@media (any-hover: hover) {
  .card__link:hover {
    -webkit-box-shadow: 0 0 52px 0 rgba(0, 0, 0, 0.08);
    box-shadow: 0 0 52px 0 rgba(0, 0, 0, 0.08);
  }
}
.card__header {
  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;
  width: 100%;
  gap: 8px;
}
.card__header--together {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
}
.card__footer {
  margin-top: 8px;
}
.card__details {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2fr;
  grid-template-columns: 1fr 2fr;
  /* Первая колонка 1/3 ширины, вторая — 2/3 */
  gap: 8px;
  /* Отступы между ячейками */
}
.card__detail-item {
  display: contents;
  /* Чтобы дочерние элементы выстраивались по сетке */
}
.card--ticket .card__wrapper.flex {
  gap: 8px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.card--ticket .card__content {
  text-align: center;
}
.card--ticket .card__button {
  width: 100%;
}
.card--ticket .card__footer {
  width: 100%;
}
.card--player .card__wrapper.flex {
  gap: 12px;
}
.card--player .card__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.card--player .card__button {
  width: 100%;
}
.card--player .card__footer {
  width: 100%;
}
@media (max-width: 576px) {
  .card__wrapper--column-576 {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .card__wrapper--column-576 .card__content > :not(:last-child) {
    margin-bottom: 0px;
  }
  .card__wrapper--column-576 .card__content > :last-child {
    margin-top: 8px;
  }
}

.align-self-center {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

.star::before {
  content: "";
  display: block;
  position: relative;
  background-image: url(../img/svg/star.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 14px;
  height: 14px;
}

.card-style {
  border-radius: 12px;
  padding: 20px;
  background: var(--white-color);
}
@media (max-width: 576px) {
  .card-style {
    padding: 12px;
  }
}

.cta {
  position: relative;
  border-radius: 24px;
  padding: 40px;
  background: linear-gradient(135deg, #444 0%, #111 100%);
  overflow: hidden;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .cta {
    padding: 32px;
  }
}
.cta__body > :not(:last-child) {
  margin-bottom: 32px;
}
.cta__body.flex {
  gap: 40px;
}
@media (max-width: 768px) {
  .cta__body.flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
  }
}
.cta__title {
  margin-bottom: 12px;
  max-width: 600px;
}
.cta__text {
  max-width: 600px;
}
.cta::before, .cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}
.cta::before {
  background-image: url("../img/line-1.png");
  opacity: 1;
}
.cta.impulse::after {
  background-image: url("../img/wind-green-red.svg");
  right: -43%;
  left: auto;
  top: -10%;
  height: 124%;
  background-size: contain;
}
@media (max-width: 768px) {
  .cta.impulse::after {
    right: -57%;
    left: auto;
    top: 13%;
    height: 85%;
  }
}
.cta .flex::after {
  display: none;
}
.cta .flex > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
}
.cta__wrapper > :not(:last-child) {
  margin-bottom: 32px;
}
.cta__image {
  overflow: hidden;
  border-radius: 12px;
  padding: 0px 0px 25% 0px;
}
@media (max-width: 768px) {
  .cta__image {
    padding: 0px 0px 35% 0px;
  }
}
@media (max-width: 576px) {
  .cta__image {
    padding: 0px 0px 77% 0px;
  }
}

.slider-swiper {
  max-width: 800px;
}
.slider-swiper__slide {
  width: auto;
  /* чтобы слайд не растягивался на всю ширину */
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  /* Слайд не будет сжиматься */
}
.slider-swiper.swiper--simple .slider-swiper__slide {
  width: calc((100% - 80px) / 6);
}
@media (max-width: 768px) {
  .slider-swiper.swiper--simple .slider-swiper__slide {
    width: calc((100% - 24px) / 4);
  }
}
@media (max-width: 576px) {
  .slider-swiper.swiper--simple .slider-swiper__slide {
    width: calc((100% - 16px) / 3);
  }
}
@media (max-width: 1024px) {
  .slider-swiper.swiper--large-cards .card__image--full-width {
    width: 100%;
    height: 160px;
    min-height: 160px;
    border-radius: 8px;
  }
}

.slider-section {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.slider-section__button {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  width: 16px;
  height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
}
.slider-section__button--prev {
  background-image: url("../img/svg/right-arrow.svg");
  /* Стрелка вправо */
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.slider-section__button--next {
  background-image: url("../img/svg/right-arrow.svg");
  /* Стрелка вправо */
}
@media (any-hover: hover) {
  .slider-section__button:hover {
    opacity: 0.8;
  }
}
.slider-section__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  width: auto !important;
  right: 0;
  left: auto !important;
  top: auto !important;
  bottom: auto !important;
}
.slider-section__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #B1B1B1;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.slider-section__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #2AB446;
}

.section__slider-navigation {
  margin-top: -12px;
  margin-bottom: 8px;
}
@media (max-width: 1024px) {
  .section__slider-navigation {
    margin-top: 0;
  }
}

.swiper--two-rows.swiper.swiper-grid-column > .swiper-wrapper {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
  /* Убираем вертикальное направление */
}
.swiper--two-rows.swiper.swiper-grid-column .swiper-slide {
  margin-top: 16px !important;
}
.swiper--filtered.swiper.swiper-grid-column > .swiper-wrapper {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
  /* Убираем вертикальное направление */
}
.swiper--filtered.swiper.swiper-grid-column .swiper-slide {
  margin-top: 16px !important;
}
.section__filter {
  margin: 30px 0;
}

.swiper .swiper-slide.card {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}

.gallery__swiper {
  margin-bottom: 12px;
  max-width: 100%;
  max-width: 800px;
}

.gallery--main {
  border-radius: 8px;
  overflow: hidden;
}

.gallery--thumbs {
  margin-top: 10px;
}

.gallery__thumb img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.gallery__image {
  padding: 0px 0px 50% 0px;
}

.gallery__slide-thumb {
  padding: 0px 0px 53% 0px;
  border-radius: 8px;
  overflow: hidden;
  opacity: 0.52;
}

.gallery__thumbs-grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(114px, 1fr));
  gap: 4px;
  margin-bottom: 12px;
}

.gallery__slide-thumb.active {
  opacity: 1;
}

.ads-block {
  min-height: 200px;
  max-height: 220px;
  width: 100%;
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  margin-bottom: 60px;
}
.ads-block img,
.ads-block frame {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
}
.ads-block.sidebar__ad {
  min-height: 480px;
}

.sidebar > * {
  margin-bottom: 40px;
}
.sidebar__title {
  margin-bottom: 8px;
}
.sidebar__list > *:not(:last-child) {
  margin-bottom: 8px;
}
.sidebar__list--cities {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 4px;
}
.sidebar__list--cities > *:not(:last-child) {
  margin-bottom: 0px;
}
.sidebar__item {
  border-radius: 12px;
  padding: 12px 12px 37px 12px;
  overflow: hidden;
  position: relative;
  background-color: var(--white-color);
}
.sidebar__subtitle {
  margin-bottom: 4px;
}
.sidebar__text {
  display: -webkit-box;
  -webkit-line-clamp: 3; /* Ограничение в 3 строки */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sidebar__link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
@media (any-hover: hover) {
  .sidebar__link:hover .sidebar__link-text {
    text-decoration: underline;
  }
}
.sidebar__link-text {
  position: relative;
  font-size: 14px;
  font-weight: 600;
  color: var(--green-color);
}
.graph-modal__container {
  border-radius: 12px;
  padding: 24px;
  max-width: 360px;
}
.graph-modal__title {
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  text-align: center;
  color: var(--black-color);
  margin-bottom: 20px;
}
.graph-modal__close {
  background-image: url(../img/svg/close.svg);
  background-repeat: no-repeat;
  width: 14px;
  height: 14px;
}
.form__group--four {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(25% - 12px);
  flex: 0 1 calc(25% - 12px);
}
@media (min-width: 1024px) and (max-width: 1250px) {
  .form__group--four {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 33%;
    flex: 0 1 33%;
  }
}
@media (min-width: 577px) and (max-width: 766px) {
  .form__group--four {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 calc(50% - 12px);
    flex: 0 1 calc(50% - 12px);
  }
}
@media (max-width: 576px) {
  .form__group--four {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
  }
}
.form__group--two {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(50% - 12px);
  flex: 0 1 calc(50% - 12px);
}
@media (max-width: 576px) {
  .form__group--two {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
  }
}
@media (max-width: 768px) {
  .form__group--two-tablet {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 calc(50% - 6px);
    flex: 0 1 calc(50% - 6px);
  }
}
.form__group--full {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
}
.form__group--search > :not(:last-child) {
  margin-bottom: 8px;
}
.form__group--prefix-right {
  position: relative;
}
.form__group--prefix-right span {
  position: absolute;
  font-weight: 500;
  font-size: 13px;
  color: #888;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 24px;
  width: 14px;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.form__group--prefix-right input {
  padding-right: 40px;
}
.form__group-input-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
}
.form__input-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.form__input-group > :not(:last-child) {
  margin-right: 4px;
}
.form__input-group--prefix-left {
  position: relative;
}
.form__input-group--prefix-left span {
  position: absolute;
  font-weight: 500;
  font-size: 13px;
  color: #888;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 24px;
  width: 14px;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.form__input-group--prefix-left input {
  padding-left: 60px;
}
.form__row .form__btn-close {
  margin-top: 14px;
}
.form__row .form__btn-close svg {
  fill: #c3c3c3;
}
.form__list-city {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.form__label {
  margin: 0 0 4px 12px;
}
.form__input, .form__textarea {
  border-radius: 24px;
  padding: 8px 20px;
  background-color: #f3f3f3;
  width: 100%;
  min-height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--black-color);
  font-weight: 500;
  font-size: 13px;
}
.form__input--large {
  min-height: 52px;
  padding: 8px 24px;
  font-size: 15px;
}
.form__input::-webkit-input-placeholder, .form__textarea::-webkit-input-placeholder {
  color: #888888;
}
.form__input::-moz-placeholder, .form__textarea::-moz-placeholder {
  color: #888888;
}
.form__input:-ms-input-placeholder, .form__textarea:-ms-input-placeholder {
  color: #888888;
}
.form__input::-ms-input-placeholder, .form__textarea::-ms-input-placeholder {
  color: #888888;
}
.form__input::placeholder, .form__textarea::placeholder {
  color: #888888;
}
.form__input--search {
  padding: 8px 24px 8px 44px;
}
.form__textarea {
  min-height: 120px;
  resize: vertical;
  border: transparent;
  line-height: 1.5;
  overflow: auto;
  white-space: pre-wrap;
}
.form__actions {
  margin-top: 16px;
}
.form__actions:not(:last-child) {
  margin-bottom: 20px;
}
.form__actions > :not(:last-child) {
  margin-bottom: 8px;
}
.form__link {
  display: inline-block;
  text-decoration: underline;
}
.form__link--right {
  text-align: right;
  width: 100%;
}
.form__text {
  white-space: nowrap;
}
.form__text--center {
  text-align: center;
}
.form__social-login > :not(:last-child) {
  margin-bottom: 12px;
}
.form__select-top {
  border-radius: 24px;
  padding: 8px 20px;
  background-color: #f3f3f3;
  width: 100%;
  min-height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--black-color);
  font-weight: 500;
  font-size: 13px;
}
.form__select-list {
  border-radius: 24px;
  background-color: #fdfdfd;
}
.form__select-item {
  color: var(--black-color);
  font-weight: 500;
  font-size: 13px;
  border-radius: 24px;
  padding: 16px 20px;
  background-color: transparent;
  width: 100%;
}
.form__select-item.custom-select__item.active {
  background-color: transparent;
  color: var(--green-color);
}

.graph-modal__content .form__group {
  margin-bottom: 8px;
}
.graph-modal__content .form__group--margin-top {
  margin-top: 16px;
}
.graph-modal__content .form__actions {
  margin-top: 16px;
  width: 100%;
}
.graph-modal__content .form__actions .btn {
  width: 100%;
}

.social-login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}
.social-login__button {
  width: 40px;
  height: 40px;
  background-color: #f3f3f3;
  border-radius: 4px;
  -webkit-transition: background-color 0.3s ease 0s;
  transition: background-color 0.3s ease 0s;
}
@media (any-hover: hover) {
  .social-login__button:hover {
    background-color: #d8d8d8;
  }
}

@media (max-width: 1024px) {
  .account-content__block--personal.form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (max-width: 576px) {
  .account-content__block--personal.form .form__group:nth-child(1) {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .account-content__block--personal.form .form__btn-close--second-then-756 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .account-content__block--personal.form .form__group:nth-child(2) {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .account-content__block--personal.form .form__group:nth-child(3) {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
}

.rating {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  gap: 8px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.rating__input {
  display: none;
}

.rating__label {
  width: 30px;
  height: 30px;
  background-size: contain;
  cursor: pointer;
}
.rating__label .rating__svg-icon {
  width: 28px;
  height: 28px;
  -webkit-transition: fill 0.3s ease 0s;
  transition: fill 0.3s ease 0s;
  fill: #F3F3F3;
}

.rating__input:checked ~ .rating__label,
.rating__label:hover,
.rating__label:hover ~ .rating__label {
  background-size: contain;
}
.rating__input:checked ~ .rating__label .rating__svg-icon,
.rating__label:hover .rating__svg-icon,
.rating__label:hover ~ .rating__label .rating__svg-icon {
  fill: #FF9000;
}

.map-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  min-height: 520px;
}
@media (max-width: 576px) {
  .map-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px;
  }
}
.map-block__column {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
}
.map-block__column--map-list {
  background-color: var(--white-color);
  overflow: hidden;
  border-radius: 12px;
  padding: 16px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 256px;
  flex: 0 0 256px;
}
.map-block__column--map-list > :not(:last-child) {
  margin-bottom: 12px;
}
@media (max-width: 576px) {
  .map-block__column--map-list {
    overflow: visible;
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
  }
  .map-block__column--map-list .custom-scroll__track {
    display: none;
  }
}
.map-block__column--map {
  background-color: var(--white-color);
  border-radius: 24px;
  overflow: hidden;
}

.map {
  display: block;
  position: relative;
  padding: 0px 0px 50% 0px;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  height: 520px;
}
.map iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
}

.search {
  position: relative;
}
.search svg {
  position: absolute;
  filL: #C3C3C3;
  top: 50%;
  left: 16px;
  width: 16px;
  height: 16px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.search__input {
  padding-left: 36px;
}

.map-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-height: 512px;
  border-radius: 12px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  /* Вертикальный скролл */
  /* Разворачиваем направление (скролл-бар слева) */
  /* Тонкий скролл для Firefox */
  /* Цвета скролл-бара (для Firefox) */
}
@media (max-width: 576px) {
  .map-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    overflow-x: scroll;
  }
}
.map-list__item {
  max-width: 224px;
}
@media (max-width: 576px) {
  .map-list__item {
    min-width: 224px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.map-list__item.active {
  background-color: #f3f3f3;
}

.item-map-list {
  padding: 12px;
  background-color: var(--white-color);
  border-radius: 12px;
  cursor: pointer;
}
.item-map-list > :not(:last-child) {
  margin-bottom: 8px;
}
.item-map-list__content > :not(:last-child) {
  margin-bottom: 2px;
}
.item-map-list__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.item-map-list__title {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.item-map-list__rating {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.item-map-list__button-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.item-map-list__button-action .heart-icon {
  height: 16px;
  width: 16px;
  fill: #C3C3C3;
}
.item-map-list__button-action .active {
  fill: var(--red-color);
}
.item-map-list__footer {
  margin-top: auto;
}
.tabs__panel {
  display: none;
}

.tabs__nav {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.tabs__panel--active {
  display: block;
}

.tabs__nav-btn:focus {
  background-color: var(--bg-color);
}

.tabs__nav-btn--active {
  background-color: #f3f3f3;
}

.sidebar.sidebar--account > * {
  margin-bottom: 12px;
}

.account-notification {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  max-width: 500px;
}
.account-notification__close {
  position: absolute;
  right: 4px;
  top: 4px;
  background-image: url(../img/svg/close.svg);
  background-repeat: no-repeat;
  width: 14px;
  height: 14px;
}
.account-notification__title {
  margin-bottom: 2px;
}
.account-menu__title {
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--black-color);
  margin-bottom: 20px;
}
.account-menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}
.account-menu__button {
  font-weight: 600;
  font-size: 15px;
  color: var(--black-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 12px;
  padding: 6px 6px 6px 6px;
  margin-left: -6px;
  background-color: transparent;
  -webkit-transition: background-color 0.3s ease 0s;
  transition: background-color 0.3s ease 0s;
}
.account-menu__button svg.svg-icon {
  fill: #C3C3C3;
  width: 20px;
  height: 20px;
  margin-right: 4px;
}
.account-menu__button.active {
  color: var(--green-color);
}
.account-menu__button.active svg.svg-icon {
  fill: var(--green-color);
}
@media (any-hover: hover) {
  .account-menu__button:hover {
    background-color: #f9f9f9;
  }
}
.account-menu__item--logout {
  margin-top: 20px;
}

.account-status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 500px;
}
.account-status__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.account-status__level {
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  color: var(--black-color);
}
.account-status__points {
  font-weight: 900;
  font-size: 28px;
  text-transform: uppercase;
  color: var(--black-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 6px 0;
}
.account-status__points svg {
  margin-left: 6px;
  fill: var(--green-color);
}
.account-content--slider-section.section {
  margin-top: 15px;
}
.account-content--slider-section.section:not(:last-child) {
  margin-bottom: 40px;
}
.account-content > :not(:last-child) {
  margin-bottom: 12px;
}
.account-content__toggles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.account-content__wrapper--toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media (max-width: 1024px) {
  .account-content__wrapper--toggle {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px;
  }
}
.account-content__wrapper--item-player {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
.account-content__wrapper--item-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
.account-content__wrapper--item-action svg {
  fill: #c3c3c3;
}
@media (max-width: 576px) {
  .account-content__wrapper--item-action {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
  }
}
.account-content__wrapper .form__select-top {
  background-color: #ffffff;
}
@media (max-width: 576px) {
  .account-content__button {
    margin: 0 0 0 auto;
  }
}
.account-content__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}
.account-content__buttons svg {
  fill: #c3c3c3;
}
.account-content__header {
  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;
}
.account-content__section > :not(:last-child) {
  margin-bottom: 12px;
}
.account-content__section--event-card > :not(:last-child) {
  margin-bottom: 24px;
}
.account-content__section--event-card > :not(:last-child) .account-content__item > :not(:last-child) {
  margin-bottom: 4px;
}
.account-content__item--style-row {
  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;
  gap: 20px;
  border-radius: 12px;
  padding: 12px;
  background: #f3f3f3;
}
.account-content__item--style-row:not(:last-child) {
  margin-bottom: 4px;
}
.account-content__item--gap-12 {
  gap: 12px;
}
@media (max-width: 576px) {
  .account-content__item--wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.account-content__item--100 {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
}
.account-content__item--two-column {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(50% - 6px);
  flex: 0 1 calc(50% - 6px);
}
@media (max-width: 768px) {
  .account-content__item--two-column {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
  }
}
.account-content__text--m-auto {
  margin-top: auto;
}
.account-content__content-row {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
.account-content__content-row > :not(:last-child) {
  margin-bottom: 4px;
}
.account-content__content-column-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.account-content__block--image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.account-content__block--flex {
  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;
  gap: 12px;
}
@media (max-width: 576px) {
  .account-content__block--column-576 {
    -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;
  }
}
.account-content__image {
  overflow: hidden;
  border-radius: 6px;
  position: relative;
}
.account-content__image--fixed-96 {
  width: 96px;
  height: 96px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 96px;
  flex: 0 0 96px;
}
.account-content__image--fixed-96 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.account-content__info.title span {
  color: var(--black-color);
  margin-left: 4px;
}

svg.svg-icon--red {
  fill: var(--red-color);
}

.button-text {
  padding: 10px 0;
  margin: 20px 0 50px 0;
}

.social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 4px;
}
.social .toggle {
  margin-bottom: 0;
}
.social__list {
  width: 100%;
}
.social__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}
.social__controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
}
@media (max-width: 576px) {
  .social__controls {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 4px;
  }
}
.social__button {
  width: 40px;
  height: 40px;
  background-color: #f3f3f3;
  border-radius: 4px;
  -webkit-transition: background-color 0.3s ease 0s;
  transition: background-color 0.3s ease 0s;
}
@media (any-hover: hover) {
  .social__button:hover {
    background-color: #d8d8d8;
  }
}
.social__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
  padding: 16px 0;
  gap: 16px;
}
@media (max-width: 576px) {
  .social__item {
    -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;
  }
}
.social__status {
  font-weight: 600;
}
.social__icon-wrapper {
  width: 40px;
  height: 40px;
  background-color: #f3f3f3;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.social__icon {
  fill: #878787;
  width: 20px;
  height: 20px;
}

.schedule__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.schedule__day {
  border-radius: 12px;
  padding: 12px;
  background: #f3f3f3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 12px;
}
.schedule__day:not(:last-child) {
  margin-bottom: 12px;
}
.schedule__empty {
  border-radius: 12px;
  padding: 20px;
  background: #f3f3f3;
  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;
  gap: 12px;
}
@media (max-width: 576px) {
  .schedule__empty {
    padding: 12px;
  }
  .schedule__empty .schedule__title {
    font-size: calc(10px + 1vw);
  }
}
.schedule__date {
  margin-top: 8px;
  font-weight: 800;
  font-size: 24px;
  text-transform: uppercase;
  color: var(--black-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.schedule__date span {
  display: block;
  font-weight: 800;
  font-size: 10px;
  text-transform: uppercase;
  color: inherit;
}
.schedule__day-list {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
.schedule__item {
  padding: 12px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 8px;
}
.schedule__item:not(:last-child) {
  border-bottom: 1px solid #c3c3c3;
}
.schedule__columns-wrapper {
  padding: 12px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}
@media (max-width: 576px) {
  .schedule__columns-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.schedule__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 65%;
  flex: 1 1 65%;
}
.schedule__title {
  font-weight: 800;
  font-size: 15px;
  text-transform: uppercase;
  color: var(--black-color);
}
.schedule__status {
  font-weight: 600;
  font-size: 10px;
}
.schedule__status.green {
  color: var(--green-color);
}
.schedule__status.red {
  color: var(--red-color);
}
.schedule__column--second {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 35%;
  flex: 1 1 35%;
}
.schedule__wrapper-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.schedule__label {
  font-weight: 500;
  font-size: 12px;
  color: #888;
}
.schedule__team {
  font-weight: 500;
  font-size: 12px;
}
.schedule__location {
  font-weight: 500;
  font-size: 12px;
}

.player-card {
  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;
  gap: 16px;
  border-radius: 12px;
  padding: 12px;
  background: #f3f3f3;
}
.player-card:not(:last-child) {
  margin-bottom: 4px;
}
@media (max-width: 768px) {
  .player-card {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.player-card__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
.player-card__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.player-card__actions svg {
  fill: #c3c3c3;
}
@media (max-width: 768px) {
  .player-card__actions--multi-column {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
  }
  .player-card__actions--multi-column .player-card__toggles {
    gap: 4px;
  }
}
@media (max-width: 650px) {
  .player-card__actions--multi-column .form {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
}
@media (max-width: 576px) {
  .player-card__actions--multi-column {
    gap: 16px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
  }
}
.player-card__image {
  overflow: hidden;
  border-radius: 6px;
  position: relative;
  width: 72px;
  height: 72px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 72px;
  flex: 0 0 72px;
}
.player-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.player-card__details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.player-card__age {
  margin-top: auto;
}
.player-card__toggles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.player-card__controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}
.player-card__controls svg {
  fill: #c3c3c3;
}
.player-card__control-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}
.player-card .form__select-top {
  background-color: #ffffff;
}

.add-images {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[6];
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}
.add-images__preview-image {
  width: 100%;
  aspect-ratio: 130/92;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}
.add-images__preview-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
@media (max-width: 768px) {
  .add-images {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}

.add-images__input {
  border-radius: 20px;
  overflow: hidden;
}
@media (any-hover: hover) {
  .add-images__preview-image:hover .add-images__preview-remove {
    opacity: 1;
    pointer-events: all;
  }
  .add-images__preview-image:hover .add-images__preview-info {
    bottom: 4px;
  }
}
.add-images__preview-image.active .add-images__preview-remove {
  opacity: 1;
  pointer-events: all;
}
.add-images__preview-image.active .add-images__preview-info {
  bottom: 4px;
}
@media (max-width: 576px) {
  .add-images__preview-image.active .add-images__preview-info {
    font-size: 7px;
  }
}
.add-images__preview-image.removing {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.add-images__preview-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
}
.add-images__preview-remove {
  pointer-events: none;
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  color: #fff;
  right: 0;
  top: 0;
  font-weight: bold;
  background: rgba(0, 0, 0, 0.6);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  -webkit-transition: opacity 0.22s;
  transition: opacity 0.22s;
}
.add-images__preview-remove::after {
  content: "";
  background: url("../img/svg/close.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 8px;
  top: 8px;
  width: 16px;
  height: 16px;
}
.add-images__preview-info {
  position: absolute;
  right: 0;
  bottom: -30px;
  left: 0;
  height: 24px;
  color: #bebebe;
  font-size: 0.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 15px;
  -webkit-transition: bottom 0.22s;
  transition: bottom 0.22s;
}
.add-images__preview-info-progress {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: #42b983;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: width 0.22s;
  transition: width 0.22s;
}
.add-images input[type=file] {
  display: none;
}
.add-images__text {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
.add-images--no-wrapp {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
@media (max-width: 768px) {
  .add-images--no-wrapp {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.partner-share > :not(:last-child) {
  margin-bottom: 20px;
}
.partner-share__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 16px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.partner-share__header .form {
  width: 100%;
}
.partner-share__wrapper-title {
  max-width: 400px;
}
.partner-share__wrapper-title > :not(:last-child) {
  margin-bottom: 4px;
}
.partner-share__wrapper-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
}
@media (max-width: 576px) {
  .partner-share__wrapper-actions {
    -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;
  }
}
.partner-share__title {
  font-weight: 800;
  font-size: 20px;
  text-transform: uppercase;
  color: var(--black-color);
}
.partner-share__subtitle {
  font-weight: 500;
  font-size: 15px;
  color: var(--black-color);
}
.partner-share__details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 768px) {
  .partner-share__details {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.partner-share__image {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 220px;
  flex: 0 0 220px;
  width: 100%;
  padding-bottom: 21%;
  border-radius: 24px;
  overflow: hidden;
}
@media (max-width: 576px) {
  .partner-share__image {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    padding-bottom: 65%;
  }
}
.partner-share__button {
  word-wrap: nowrap;
  white-space: nowrap;
}

.copy-link {
  border-radius: 24px;
  padding: 8px 20px;
  background-color: #f3f3f3;
  width: 100%;
  max-width: 220px;
  height: 40px;
  min-height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--black-color);
  font-weight: 500;
  font-size: 13px;
  gap: 8px;
  position: relative;
  overflow: hidden;
}
.copy-link__text {
  word-wrap: no-wrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.copy-link__button {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.copy-link__icon {
  width: 14px;
  height: 14px;
}

.copy-notification {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--green-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  border-radius: 24px;
  padding: 8px 20px;
  width: 100%;
  height: 100%;
  font-size: 14px;
  opacity: 0;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: opacity 0.3s ease-in-out, -webkit-transform 0.5s ease-in-out;
  transition: opacity 0.3s ease-in-out, -webkit-transform 0.5s ease-in-out;
  transition: opacity 0.3s ease-in-out, transform 0.5s ease-in-out;
  transition: opacity 0.3s ease-in-out, transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  pointer-events: none;
}

.copy-notification.visible {
  opacity: 1;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.team-card {
  border-radius: 12px;
  padding: 24px;
  background-color: var(--white-color);
}
.team-card > :not(:last-child) {
  margin-bottom: 24px;
}
.team-card__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
.team-card__image {
  display: block;
  overflow: hidden;
  border-radius: 6px;
  position: relative;
  width: 120px;
  height: 120px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 120px;
  flex: 0 0 120px;
  opacity: 0.9;
}
.team-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.team-card__column {
  padding: 6px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 576px) {
  .team-card__column {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.team-card__button {
  margin-top: auto;
}
@media (max-width: 576px) {
  .team-card__button {
    margin-bottom: 8px;
  }
}
.place-card--bg {
  border-radius: 12px;
  padding: 24px;
  background-color: var(--white-color);
}
@media (max-width: 1024px) {
  .place-card--bg {
    padding: 12px;
  }
}
.place-card > :not(:last-child) {
  margin-bottom: 24px;
}
.place-card__fav-button {
  position: absolute;
  top: 16px;
  right: 16px;
}
.place-card__fav-button svg path {
  -webkit-transition: fill 0.3s ease 0s;
  transition: fill 0.3s ease 0s;
}
@media (any-hover: hover) {
  .place-card__fav-button:hover svg path {
    fill: var(--red-color);
  }
}
.place-card__big-image {
  position: relative;
  padding: 0px 0px 54% 0px;
  border-radius: 24px;
  overflow: hidden;
}
.place-card__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 4px;
}
.place-card__rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  gap: 4px;
}
.place-card.star::before {
  width: 15px;
  height: 15px;
}
.place-card__description {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}
.place-card__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.place-card__main-link {
  font-weight: 400;
  font-size: 11px;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}
.place-card__link {
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--black-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  line-height: 15px;
  white-space: nowrap;
}
.place-card__link svg {
  fill: #C3C3C3;
}
.place-card__social {
  margin-left: auto;
}
@media (max-width: 1024px) {
  .place-card__social {
    margin-left: 0;
  }
}
.place-card__social .social__icon {
  width: 10px;
  height: 10px;
}
.place-card__social .social__button {
  width: 20px;
  height: 20px;
}
.place-card__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
  width: 100%;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 600px) {
  .place-card__actions {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.place-card__button {
  margin-right: auto;
}
@media (max-width: 1024px) {
  .place-card__button {
    margin-right: none;
  }
}
@media (max-width: 600px) {
  .place-card__button {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
  }
}
.place-card__main-link {
  font-weight: 400;
  font-size: 11px;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  color: #888;
}
.place-card__title-row {
  margin-bottom: 4px;
}
.place-card__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.booking__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media (max-width: 576px) {
  .booking__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.booking__halls {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 256px;
  flex: 0 0 256px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 12px;
  padding: 16px;
  background-color: var(--white-color);
}
@media (max-width: 768px) {
  .booking__halls {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 224px;
    flex: 0 0 224px;
    padding: 12px;
  }
}
@media (max-width: 576px) {
  .booking__halls {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    overflow-x: scroll; /* разрешаем горизонтальную прокрутку */
    /* Скрываем скроллбар */
    /* Для Firefox */
    scrollbar-width: none; /* скрыть скроллбар в Firefox */
    /* Если нужно убрать любой маргин и паддинги для блока */
    padding: 0;
    margin: 0;
  }
  .booking__halls::-webkit-scrollbar {
    display: none; /* для WebKit-браузеров (Chrome, Safari) */
  }
}
.booking__schedule {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border-radius: 12px;
  padding: 20px;
  background-color: var(--white-color);
}
.booking__schedule > :not(:last-child) {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .booking__schedule {
    padding: 12px;
  }
}
@media (max-width: 576px) {
  .booking__schedule {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
  }
}
.schedule-booking__footer {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.schedule-booking__summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.schedule-booking__date-item {
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
}
.schedule-booking__price-item {
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
}

.hall-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  padding: 16px;
}
@media (max-width: 768px) {
  .hall-card {
    padding: 12px;
  }
}
@media (max-width: 576px) {
  .hall-card {
    min-width: 200px;
    max-width: 230px;
  }
}
.hall-card__image {
  display: block;
  overflow: hidden;
  border-radius: 6px;
  position: relative;
  width: 100%;
  height: 120px;
  min-height: 120px;
  border-radius: 8px;
}
.hall-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.hall-card__info {
  margin-bottom: 8px;
}
.hall-card__title {
  margin-bottom: 4px;
}
.hall-card.active {
  background: #f3f3f3;
}

.calendar__header {
  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;
  margin-bottom: 12px;
}
.calendar__nav {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
}
.calendar__nav--prev, .calendar__nav--next {
  color: #666;
}
.calendar__month {
  font-weight: 500;
  font-size: 16px;
}
.calendar__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[7];
  grid-template-columns: repeat(7, 1fr);
  grid-auto-rows: 40px;
  gap: 4px;
}
.calendar__day {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 8px;
  padding: 8px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  background: #f3f3f3;
}
.calendar__day--active {
  position: relative;
}
.calendar__day--active::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  right: 8px;
  top: 8px;
  background-color: var(--green-color);
}
.calendar__day--focus {
  background-color: var(--green-color);
  color: #fff;
}
.calendar__day--disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.calendar__day--inactive {
  opacity: 0.4;
  cursor: default;
}

.time-list__title {
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.time-list__slots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 12px;
}

.time-slot {
  background: #eee;
  border-radius: 8px;
  padding: 10px 14px;
  min-width: 120px;
  text-align: center;
  cursor: pointer;
}
.time-slot--active {
  background: #4CAF50;
  color: #fff;
  font-weight: 600;
}
.time-slot__range {
  font-size: 14px;
}
.time-slot__price {
  font-size: 14px;
  font-weight: 500;
}