@import url(https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap);
.step-progress {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    grid-gap: 8px;
    gap: 8px;
}

    .step-progress__bar {
        position: relative;
        -webkit-box-flex: 1;
            -ms-flex-positive: 1;
                flex-grow: 1;
        height: 4px;
        border-radius: 2px;
        background-color: var(--tone-300);
        overflow: hidden;
    }

    .step-progress__bar::before {
            position: absolute;
            left: 0;
            top: 0;
            width: calc(var(--ratio) * 100%);
            height: 100%;
            border-radius: inherit;
            background-color: black;
            -webkit-transition: width 300ms;
            transition: width 300ms;
            content: " ";
        }

    .step-progress__label {
        font-family: Roboto;
        font-size: 12px;
        font-weight: 400;
        line-height: 15px;
        color: var(--tone-500)
    }
:root {
  /* Design system colors */
  --tone-200: rgba(5, 5, 5, 0.06);
  --tone-300: rgba(0, 0, 0, 0.11);
  --tone-400: rgba(0, 0, 0, 0.28);
  --tone-500: rgba(0, 0, 0, 0.51);
  --tone-600: rgba(0, 0, 0, 0.65);
  --tone-700: rgba(0, 0, 0, 0.76);
  --tone-800: rgba(0, 0, 0, 0.86);
  --tone-900: rgba(0, 0, 0, 0.98);

  --absolute-100: #ffffff;
  --absolute-200: #f0f0f0;
  --absolute-300: #e3e3e3;
  --absolute-700: #3d3d3d;
  --absolute-800: #1f1f1f;
  --absolute-900: #050505;

  --aquamarine-500: rgba(1, 135, 144, 1);

  --red-100: rgba(228, 70, 86, 0.1);
  --red-500: rgba(211, 53, 69, 1);

  --blue-100: rgba(0, 122, 255, 0.1);
  --blue-400: rgba(0, 122, 255, 1);

  --text-secondary: rgba(0, 0, 0, 0.54);
  --text-disabled: rgba(0, 0, 0, 0.38);

  --white: white;
  --red: #ff3b2f;
  --light-red: #e44656;
  --transparent-red: rgba(228, 70, 86, 0.1);
  --light-footer-gray: #f1f1f1;
  --light-footer-bg-gray: #f8f8f8;
  --light-text-gray: rgba(0, 0, 0, 0.51);
  --text-black: rgba(0, 0, 0, 0.98);
  --text-black-title-popup: rgba(46, 46, 45, 1);
  --background-light-secondary: #f2f2f7;
  --popup-background: rgba(0, 0, 0, 0.28);
  --gray-border: rgba(0, 0, 0, 0.11);
  --gray-border-light: rgba(194, 194, 194, 0.5);
  --dark-gray: #333333;
  --light-gray: #d9d9d9;
  --medium-gray: #979797;
  --medium-dark-gray: #646464;
  --disabled-gray: #ebebeb;
  --disabled-dark-gray: #c2c2c2;
  --placeholder-gray: #f1f1f1;
  --white: white;
  --black: black;
  --light-black: rgba(61, 61, 61, 1);
  --main: #5648f8;
  --blue: rgba(0, 122, 255, 1);
  --link-blue: rgba(0, 106, 219, 1);
  --medium-main: #c1bbff;
  --light-main: #e7eafb;
  --accent: #22ccd8;
  --light-cookie-accent: rgba(233, 250, 251, 1);
  --light-accent: rgba(34, 204, 216, 0.2);
  --light-background-accent: rgba(144, 247, 254, 0.08);
  --lightest-accent: #b3eef2;
  --mts-red: #e30611;
  --yelow: #ff9f0a;
  --aquamarine: rgba(34, 204, 216, 0.1);

  /* New colors */
  --black-bg: var(--absolute-700);
  --black-hover: var(--absolute-800);

  /* Border-radius variants */
  --radius-sx: 4px;
  --radius-s: 8px;
  --radius-m: 16px;
  --radius-l: 24px;
  --radius-xl: 32px;

  /* Box-shadows */
  --shadow-xl: 0px 25px 59px rgba(0, 0, 0, 0.2);
  --shadow-m: 0px 16px 24px 0px rgba(0, 0, 0, 0.15);

  /**
   * Fonts using while preloading Lato
   * Or if preloading failed
   */
  --fonts: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell,
    "Open Sans", "Helvetica Neue", sans-serif;

  --font-family-main: Roboto;

  --font-size-heading-first: 30px;
  --font-size-heading-second: 22px;
  --font-size-heading-third: 18px;

  /**
   * Margin for the product card
   * Is using in the product grids and sliders
   */
  --product-margin: 8px;

  /**
   * Height of the `Header` component
   */
  --header-height: 84px;

  /**
   * Margins between content and page body
   * On desktop does not make sense because numeric value is unknown
   * 0 here on desktop to not to violate calculations
   */
  --wrapper-margin: 0;
  --wrapper-padding: 120px;

  /**
   * Cards spacings and width
   */

  --card-spacing: 16px;

  --card-width: 282px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
:root {
    --product-margin: 7.5px
}
  }
@media only screen and (max-width: 767px) {
:root {
    --product-margin: 5px
}
  }
@media only screen and (max-width: 767px) {
:root {
    --header-height: 54px
}
  }
@media only screen and (min-width: 768px) and (max-width: 991px),only screen and (max-width: 767px) {
:root {
    --wrapper-margin: 15px
}
  }
@media only screen and (min-width: 992px) {
:root {
    --card-spacing: 24px
}
  }
@media only screen and (min-width: 992px) {
:root {
    --card-width: calc((100% - (var(--card-spacing) * 2)) / 3)
}
  }
/* TODO: complete */
/* 1600 */
/* 1300 */
/* 992 */
/* 992 */
/* 768 */
/* 320 */
.desktop-controls {
  width: 100%;
  padding: 20px 32px 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.11);
  border-top: 1px solid var(--tone-300);
  background-color: white;
  background-color: var(--white);
  z-index: 100;
}
@media only screen and (max-width: 767px) {
.desktop-controls {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: auto;
    padding: 15px 15px 20px 15px
}
  }
.desktop-controls__buttons {
    margin-top: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
@media only screen and (max-width: 767px) {
.desktop-controls__buttons {
      margin-top: 0
  }
    }
.desktop-controls__buttons button {
      width: -webkit-max-content;
      width: -moz-max-content;
      width: max-content;
    }

:root {
  /* Design system colors */
  --tone-200: rgba(5, 5, 5, 0.06);
  --tone-300: rgba(0, 0, 0, 0.11);
  --tone-400: rgba(0, 0, 0, 0.28);
  --tone-500: rgba(0, 0, 0, 0.51);
  --tone-600: rgba(0, 0, 0, 0.65);
  --tone-700: rgba(0, 0, 0, 0.76);
  --tone-800: rgba(0, 0, 0, 0.86);
  --tone-900: rgba(0, 0, 0, 0.98);

  --absolute-100: #ffffff;
  --absolute-200: #f0f0f0;
  --absolute-300: #e3e3e3;
  --absolute-700: #3d3d3d;
  --absolute-800: #1f1f1f;
  --absolute-900: #050505;

  --aquamarine-500: rgba(1, 135, 144, 1);

  --red-100: rgba(228, 70, 86, 0.1);
  --red-500: rgba(211, 53, 69, 1);

  --blue-100: rgba(0, 122, 255, 0.1);
  --blue-400: rgba(0, 122, 255, 1);

  --text-secondary: rgba(0, 0, 0, 0.54);
  --text-disabled: rgba(0, 0, 0, 0.38);

  --white: white;
  --red: #ff3b2f;
  --light-red: #e44656;
  --transparent-red: rgba(228, 70, 86, 0.1);
  --light-footer-gray: #f1f1f1;
  --light-footer-bg-gray: #f8f8f8;
  --light-text-gray: rgba(0, 0, 0, 0.51);
  --text-black: rgba(0, 0, 0, 0.98);
  --text-black-title-popup: rgba(46, 46, 45, 1);
  --background-light-secondary: #f2f2f7;
  --popup-background: rgba(0, 0, 0, 0.28);
  --gray-border: rgba(0, 0, 0, 0.11);
  --gray-border-light: rgba(194, 194, 194, 0.5);
  --dark-gray: #333333;
  --light-gray: #d9d9d9;
  --medium-gray: #979797;
  --medium-dark-gray: #646464;
  --disabled-gray: #ebebeb;
  --disabled-dark-gray: #c2c2c2;
  --placeholder-gray: #f1f1f1;
  --white: white;
  --black: black;
  --light-black: rgba(61, 61, 61, 1);
  --main: #5648f8;
  --blue: rgba(0, 122, 255, 1);
  --link-blue: rgba(0, 106, 219, 1);
  --medium-main: #c1bbff;
  --light-main: #e7eafb;
  --accent: #22ccd8;
  --light-cookie-accent: rgba(233, 250, 251, 1);
  --light-accent: rgba(34, 204, 216, 0.2);
  --light-background-accent: rgba(144, 247, 254, 0.08);
  --lightest-accent: #b3eef2;
  --mts-red: #e30611;
  --yelow: #ff9f0a;
  --aquamarine: rgba(34, 204, 216, 0.1);

  /* New colors */
  --black-bg: var(--absolute-700);
  --black-hover: var(--absolute-800);

  /* Border-radius variants */
  --radius-sx: 4px;
  --radius-s: 8px;
  --radius-m: 16px;
  --radius-l: 24px;
  --radius-xl: 32px;

  /* Box-shadows */
  --shadow-xl: 0px 25px 59px rgba(0, 0, 0, 0.2);
  --shadow-m: 0px 16px 24px 0px rgba(0, 0, 0, 0.15);

  /**
   * Fonts using while preloading Lato
   * Or if preloading failed
   */
  --fonts: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell,
    "Open Sans", "Helvetica Neue", sans-serif;

  --font-family-main: Roboto;

  --font-size-heading-first: 30px;
  --font-size-heading-second: 22px;
  --font-size-heading-third: 18px;

  /**
   * Margin for the product card
   * Is using in the product grids and sliders
   */
  --product-margin: 8px;

  /**
   * Height of the `Header` component
   */
  --header-height: 84px;

  /**
   * Margins between content and page body
   * On desktop does not make sense because numeric value is unknown
   * 0 here on desktop to not to violate calculations
   */
  --wrapper-margin: 0;
  --wrapper-padding: 120px;

  /**
   * Cards spacings and width
   */

  --card-spacing: 16px;

  --card-width: 282px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
:root {
    --product-margin: 7.5px
}
  }
@media only screen and (max-width: 767px) {
:root {
    --product-margin: 5px
}
  }
@media only screen and (max-width: 767px) {
:root {
    --header-height: 54px
}
  }
@media only screen and (min-width: 768px) and (max-width: 991px),only screen and (max-width: 767px) {
:root {
    --wrapper-margin: 15px
}
  }
@media only screen and (min-width: 992px) {
:root {
    --card-spacing: 24px
}
  }
@media only screen and (min-width: 992px) {
:root {
    --card-width: calc((100% - (var(--card-spacing) * 2)) / 3)
}
  }
/* TODO: complete */
/* 1600 */
/* 1300 */
/* 992 */
/* 992 */
/* 768 */
/* 320 */
.mode-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-gap: 4px;
  gap: 4px;
  padding: 6px 12px;
  font-family: Roboto;
}
.mode-button svg path {
    fill: rgba(0, 0, 0, 0.98);
    fill: var(--tone-900);
  }
.mode-button .Button__icon {
    position: unset;
    margin: 0;
  }
.mode-button .Button__text {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    grid-gap: 5px;
    gap: 5px;
  }
.mode-button.Button--main {
  border: 1px solid rgba(0, 106, 219, 1);
  border: 1px solid var(--link-blue);
  background-color: rgba(0, 106, 219, 1);
  background-color: var(--link-blue);
}
.mode-button.Button--main svg path {
    fill: white;
    fill-opacity: unset;
  }

.places-search {
  position: relative;
}

  .places-search__input {
    width: 100%;
    height: 48px;
    padding: 12px 12px 12px 40px;
    border: 1px solid var(--tone-300);
    border-radius: 8px;
    text-overflow: ellipsis;
  }

  .places-search__hint {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 12px 12px 12px 40px;
  }

  .places-search::before {
    content: url(/static/media/search.6a0840b9.svg);
    position: absolute;
    top: 0;
    right: auto;
    bottom: 0;
    left: 12px;
    margin: auto;
    width: 24px;
    height: 24px;
    pointer-events: none;
  }

:root {
  /* Design system colors */
  --tone-200: rgba(5, 5, 5, 0.06);
  --tone-300: rgba(0, 0, 0, 0.11);
  --tone-400: rgba(0, 0, 0, 0.28);
  --tone-500: rgba(0, 0, 0, 0.51);
  --tone-600: rgba(0, 0, 0, 0.65);
  --tone-700: rgba(0, 0, 0, 0.76);
  --tone-800: rgba(0, 0, 0, 0.86);
  --tone-900: rgba(0, 0, 0, 0.98);

  --absolute-100: #ffffff;
  --absolute-200: #f0f0f0;
  --absolute-300: #e3e3e3;
  --absolute-700: #3d3d3d;
  --absolute-800: #1f1f1f;
  --absolute-900: #050505;

  --aquamarine-500: rgba(1, 135, 144, 1);

  --red-100: rgba(228, 70, 86, 0.1);
  --red-500: rgba(211, 53, 69, 1);

  --blue-100: rgba(0, 122, 255, 0.1);
  --blue-400: rgba(0, 122, 255, 1);

  --text-secondary: rgba(0, 0, 0, 0.54);
  --text-disabled: rgba(0, 0, 0, 0.38);

  --white: white;
  --red: #ff3b2f;
  --light-red: #e44656;
  --transparent-red: rgba(228, 70, 86, 0.1);
  --light-footer-gray: #f1f1f1;
  --light-footer-bg-gray: #f8f8f8;
  --light-text-gray: rgba(0, 0, 0, 0.51);
  --text-black: rgba(0, 0, 0, 0.98);
  --text-black-title-popup: rgba(46, 46, 45, 1);
  --background-light-secondary: #f2f2f7;
  --popup-background: rgba(0, 0, 0, 0.28);
  --gray-border: rgba(0, 0, 0, 0.11);
  --gray-border-light: rgba(194, 194, 194, 0.5);
  --dark-gray: #333333;
  --light-gray: #d9d9d9;
  --medium-gray: #979797;
  --medium-dark-gray: #646464;
  --disabled-gray: #ebebeb;
  --disabled-dark-gray: #c2c2c2;
  --placeholder-gray: #f1f1f1;
  --white: white;
  --black: black;
  --light-black: rgba(61, 61, 61, 1);
  --main: #5648f8;
  --blue: rgba(0, 122, 255, 1);
  --link-blue: rgba(0, 106, 219, 1);
  --medium-main: #c1bbff;
  --light-main: #e7eafb;
  --accent: #22ccd8;
  --light-cookie-accent: rgba(233, 250, 251, 1);
  --light-accent: rgba(34, 204, 216, 0.2);
  --light-background-accent: rgba(144, 247, 254, 0.08);
  --lightest-accent: #b3eef2;
  --mts-red: #e30611;
  --yelow: #ff9f0a;
  --aquamarine: rgba(34, 204, 216, 0.1);

  /* New colors */
  --black-bg: var(--absolute-700);
  --black-hover: var(--absolute-800);

  /* Border-radius variants */
  --radius-sx: 4px;
  --radius-s: 8px;
  --radius-m: 16px;
  --radius-l: 24px;
  --radius-xl: 32px;

  /* Box-shadows */
  --shadow-xl: 0px 25px 59px rgba(0, 0, 0, 0.2);
  --shadow-m: 0px 16px 24px 0px rgba(0, 0, 0, 0.15);

  /**
   * Fonts using while preloading Lato
   * Or if preloading failed
   */
  --fonts: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell,
    "Open Sans", "Helvetica Neue", sans-serif;

  --font-family-main: Roboto;

  --font-size-heading-first: 30px;
  --font-size-heading-second: 22px;
  --font-size-heading-third: 18px;

  /**
   * Margin for the product card
   * Is using in the product grids and sliders
   */
  --product-margin: 8px;

  /**
   * Height of the `Header` component
   */
  --header-height: 84px;

  /**
   * Margins between content and page body
   * On desktop does not make sense because numeric value is unknown
   * 0 here on desktop to not to violate calculations
   */
  --wrapper-margin: 0;
  --wrapper-padding: 120px;

  /**
   * Cards spacings and width
   */

  --card-spacing: 16px;

  --card-width: 282px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
:root {
    --product-margin: 7.5px
}
  }
@media only screen and (max-width: 767px) {
:root {
    --product-margin: 5px
}
  }
@media only screen and (max-width: 767px) {
:root {
    --header-height: 54px
}
  }
@media only screen and (min-width: 768px) and (max-width: 991px),only screen and (max-width: 767px) {
:root {
    --wrapper-margin: 15px
}
  }
@media only screen and (min-width: 992px) {
:root {
    --card-spacing: 24px
}
  }
@media only screen and (min-width: 992px) {
:root {
    --card-width: calc((100% - (var(--card-spacing) * 2)) / 3)
}
  }
/* TODO: complete */
/* 1600 */
/* 1300 */
/* 992 */
/* 992 */
/* 768 */
/* 320 */
.map-screen {
  position: relative;
  min-height: 100%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-family: Roboto;
  font-family: var(--font-family-main);

  
}
.map-screen .tour-area-controls {
    position: absolute;
    top: 16px;
    left: 32px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 385px;
    min-width: 385px;
    padding: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    grid-gap: 16px;
    gap: 16px;
    background-color: white;
    background-color: var(--white);
    border-radius: 16px;
    -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
            box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
  }
@media only screen and (max-width: 767px) {
.map-screen .tour-area-controls {
      width: 95%;
      max-width: none;
      min-width: auto;
      left: 0;
      grid-gap: 10px;
      gap: 10px;
      margin: 0 10px 0 10px;
      padding: 8px
  }
    }
.map-screen .tour-area-controls__text {
      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;
      grid-gap: 15px;
      gap: 15px;
    }
.map-screen .tour-area-controls__text__length {
        min-width: -webkit-max-content;
        min-width: -moz-max-content;
        min-width: max-content;
      }
@media only screen and (max-width: 767px) {
.map-screen .tour-area-controls__text__length {
          font-size: 13px;
          font-weight: 500;
          line-height: 15.23px;
          color: rgba(0, 0, 0, 0.51);
          color: var(--tone-500);
          padding-right: 5px
      }
        }
.map-screen .tour-area-controls__text__title {
        font-family: Roboto;
        font-size: 22px;
        font-weight: 600;
        line-height: 25.78px;
        letter-spacing: -0.01em;
      }
@media only screen and (max-width: 767px) {
.map-screen .tour-area-controls__text__title {
          font-size: 16px;
          line-height: 22.4px;
          padding-left: 5px
      }
        }
.map-screen .tour-area-controls__text__subtitle {
        font-size: 13px;
        font-weight: 500;
        line-height: 15.23px;
        text-align: left; 
        color: rgba(0, 0, 0, 0.51); 
        color: var(--tone-500);
        margin-top: 5px;
      }
@media only screen and (max-width: 767px) {
.map-screen .tour-area-controls__text__subtitle {
          padding: 5px 0 0 5px
      }
        }
.map-screen .tour-area-controls__range-slider {
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;

      width: 100%;
      height: 40px;
    }
@media only screen and (max-width: 767px) {
.map-screen .tour-area-controls__range-slider {
        margin-top: -10px;
        padding: 0 5px
    }
      }
.map-screen .tour-area-controls__range-slider::-webkit-slider-runnable-track {
        height: 1px;
        background-color: rgba(0, 0, 0, 0.51);
        background-color: var(--tone-500);
      }
.map-screen .tour-area-controls__range-slider::-moz-range-track {
        height: 1px;
        background-color: rgba(0, 0, 0, 0.51);
        background-color: var(--tone-500);
      }
.map-screen .tour-area-controls__range-slider::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;

        width: 24px;
        height: 24px;
        background-color: white;
        background-color: var(--white);
        border: 1px solid rgba(125, 125, 125, 1);
        border-radius: 100px;
        cursor: pointer;
        -webkit-transform: translateY(calc(-50% + 0.5px));
                transform: translateY(calc(-50% + 0.5px));
      }
.map-screen .tour-area-controls__buttons {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      grid-gap: 16px;
      gap: 16px;
    }
.map-screen .navigation-controls {
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 32px;
    margin: auto;
  }
.map-screen .navigation-controls__zoom-group {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      grid-gap: 8px;
      gap: 8px;
    }
.map-screen .navigation-controls__location-button {
      margin-top: 82px;
    }
/* Простановка размера через props.size не работает с темой "box" */
.map-screen .navigation-controls button {
      width: 42px;
      height: 42px;
    }

:root {
  /* Design system colors */
  --tone-200: rgba(5, 5, 5, 0.06);
  --tone-300: rgba(0, 0, 0, 0.11);
  --tone-400: rgba(0, 0, 0, 0.28);
  --tone-500: rgba(0, 0, 0, 0.51);
  --tone-600: rgba(0, 0, 0, 0.65);
  --tone-700: rgba(0, 0, 0, 0.76);
  --tone-800: rgba(0, 0, 0, 0.86);
  --tone-900: rgba(0, 0, 0, 0.98);

  --absolute-100: #ffffff;
  --absolute-200: #f0f0f0;
  --absolute-300: #e3e3e3;
  --absolute-700: #3d3d3d;
  --absolute-800: #1f1f1f;
  --absolute-900: #050505;

  --aquamarine-500: rgba(1, 135, 144, 1);

  --red-100: rgba(228, 70, 86, 0.1);
  --red-500: rgba(211, 53, 69, 1);

  --blue-100: rgba(0, 122, 255, 0.1);
  --blue-400: rgba(0, 122, 255, 1);

  --text-secondary: rgba(0, 0, 0, 0.54);
  --text-disabled: rgba(0, 0, 0, 0.38);

  --white: white;
  --red: #ff3b2f;
  --light-red: #e44656;
  --transparent-red: rgba(228, 70, 86, 0.1);
  --light-footer-gray: #f1f1f1;
  --light-footer-bg-gray: #f8f8f8;
  --light-text-gray: rgba(0, 0, 0, 0.51);
  --text-black: rgba(0, 0, 0, 0.98);
  --text-black-title-popup: rgba(46, 46, 45, 1);
  --background-light-secondary: #f2f2f7;
  --popup-background: rgba(0, 0, 0, 0.28);
  --gray-border: rgba(0, 0, 0, 0.11);
  --gray-border-light: rgba(194, 194, 194, 0.5);
  --dark-gray: #333333;
  --light-gray: #d9d9d9;
  --medium-gray: #979797;
  --medium-dark-gray: #646464;
  --disabled-gray: #ebebeb;
  --disabled-dark-gray: #c2c2c2;
  --placeholder-gray: #f1f1f1;
  --white: white;
  --black: black;
  --light-black: rgba(61, 61, 61, 1);
  --main: #5648f8;
  --blue: rgba(0, 122, 255, 1);
  --link-blue: rgba(0, 106, 219, 1);
  --medium-main: #c1bbff;
  --light-main: #e7eafb;
  --accent: #22ccd8;
  --light-cookie-accent: rgba(233, 250, 251, 1);
  --light-accent: rgba(34, 204, 216, 0.2);
  --light-background-accent: rgba(144, 247, 254, 0.08);
  --lightest-accent: #b3eef2;
  --mts-red: #e30611;
  --yelow: #ff9f0a;
  --aquamarine: rgba(34, 204, 216, 0.1);

  /* New colors */
  --black-bg: var(--absolute-700);
  --black-hover: var(--absolute-800);

  /* Border-radius variants */
  --radius-sx: 4px;
  --radius-s: 8px;
  --radius-m: 16px;
  --radius-l: 24px;
  --radius-xl: 32px;

  /* Box-shadows */
  --shadow-xl: 0px 25px 59px rgba(0, 0, 0, 0.2);
  --shadow-m: 0px 16px 24px 0px rgba(0, 0, 0, 0.15);

  /**
   * Fonts using while preloading Lato
   * Or if preloading failed
   */
  --fonts: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell,
    "Open Sans", "Helvetica Neue", sans-serif;

  --font-family-main: Roboto;

  --font-size-heading-first: 30px;
  --font-size-heading-second: 22px;
  --font-size-heading-third: 18px;

  /**
   * Margin for the product card
   * Is using in the product grids and sliders
   */
  --product-margin: 8px;

  /**
   * Height of the `Header` component
   */
  --header-height: 84px;

  /**
   * Margins between content and page body
   * On desktop does not make sense because numeric value is unknown
   * 0 here on desktop to not to violate calculations
   */
  --wrapper-margin: 0;
  --wrapper-padding: 120px;

  /**
   * Cards spacings and width
   */

  --card-spacing: 16px;

  --card-width: 282px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
:root {
    --product-margin: 7.5px
}
  }
@media only screen and (max-width: 767px) {
:root {
    --product-margin: 5px
}
  }
@media only screen and (max-width: 767px) {
:root {
    --header-height: 54px
}
  }
@media only screen and (min-width: 768px) and (max-width: 991px),only screen and (max-width: 767px) {
:root {
    --wrapper-margin: 15px
}
  }
@media only screen and (min-width: 992px) {
:root {
    --card-spacing: 24px
}
  }
@media only screen and (min-width: 992px) {
:root {
    --card-width: calc((100% - (var(--card-spacing) * 2)) / 3)
}
  }
/* TODO: complete */
/* 1600 */
/* 1300 */
/* 992 */
/* 992 */
/* 768 */
/* 320 */
.DropdownInput__inputContainer {
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        width: 316px;
      
    }
@media only screen and (max-width: 767px) {
.DropdownInput__inputContainer {
          width: 100%
      
    }
        }
.DropdownInput__playerButton {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background-color: white;
      border: 2px solid rgba(0, 0, 0, 0.98);
      border: 2px solid var(--tone-900);
      cursor: pointer;
    }
.DropdownInput__icon {
      position: absolute;
      z-index: 10;
      left: 12px;
    }
.DropdownInput__icon svg path {
        fill: rgba(0, 0, 0, 0.98);
        fill: var(--tone-900);
        fill-opacity: unset;
      }
.DropdownInput__chevron {
      position: absolute;
      top: 50%;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      background-color: white;
      right: 10px;
    }
.DropdownInput__label {
      position: absolute;
      top: 15px;
      -webkit-transition: all 0.3s ease;
      transition: all 0.3s ease;
      pointer-events: none;
      color: rgba(0, 0, 0, 0.28);
      color: var(--tone-400);
      font-size: 13px;
      font-weight: 500;
      line-height: 18px;
      padding-left: 40px;
      font-family: Roboto;
    }
.DropdownInput__popup {
      position: absolute;
      top: 100%;
      left: 0;
      z-index: 11;
      background-color: white;
      background-color: var(--white);
      border: 1px solid #ccc;
      border-radius: 8px;
      width: 316px;
      max-height: 456px;
      overflow-y: auto;
      border: none;
      -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
              box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
  }
.DropdownInput__popup_spinner {
      width: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      padding: 10px;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
    }
.DropdownInput__listItem {
        color: rgba(0, 0, 0, 0.98);
        color: var(--tone-900);
        font-family: Roboto;
        font-family: var(--font-family-main);
        border-radius: 0;
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content;
        padding: 9px 9px 9px 16px;
        min-width: 100%;
        -webkit-box-pack: left;
            -ms-flex-pack: left;
                justify-content: left;
        list-style-type: none;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        font-size: 18px;
        font-weight: 500;
        line-height: 21.09px;
        text-align: left;
      }
@media only screen and (max-width: 767px) {
.DropdownInput__listItem {
          padding: 9px 0 9px 0
      }
        }
.DropdownInput__input {
        position: relative;
        font-family: Roboto;
        width: 100%;
        height: 48px !important;
        min-height: 48px;
        padding: 12px;
        padding-left: 40px;
        resize: none;
        border-radius: 8px;
        border: 1px solid rgba(0, 0, 0, 0.11);
        border: 1px solid var(--tone-300);
        color: rgba(0, 0, 0, 0.28);
        color: var(--tone-400);
        font-size: 13px;
        font-weight: 500;
        line-height: 18px;
        overflow: hidden;
        cursor: pointer;
    }
.DropdownInput__input:focus {
        border: 1px solid rgba(0, 0, 0, 0.98);
        border: 1px solid var(--tone-900);
        outline: none;
      }
.DropdownInput__input_text {
        min-height: 52px;
        padding: 7px;
        overflow: auto;
      }
.DropdownInput__input_active {
        font-size: 16px;
        font-weight: 400;
        line-height: 15px;
        color: rgba(0, 0, 0, 0.98);
        color: var(--tone-900);
        border: 1px solid rgba(0, 0, 0, 0.98);
        border: 1px solid var(--tone-900);
        background-color: white;
      }
.DropdownInput__input_active:disabled {
          background-color: rgba(5, 5, 5, 0.06);
          background-color: var(--tone-200);
          color: rgba(0, 0, 0, 0.28);
          color: var(--tone-400);
          border: none;
        }
.DropdownInput__input_active::before {
        content: attr(data-label);
        position: absolute;
        top: -7px;
        left: 10px;
        padding: 0 2px;
        font-size: 12px;
        line-height: normal;
        line-height: initial;
        max-height: -webkit-fit-content;
        max-height: -moz-fit-content;
        max-height: fit-content;
        font-weight: 500;
        background-color: white;
        color: rgba(0, 0, 0, 0.28);
        color: var(--tone-400);
        pointer-events: none;
        -webkit-transition: all 0.2s ease;
        transition: all 0.2s ease;
      }
.DropdownInput__input::value.active::before {
        top: -10px;
      }
.DropdownInput__input_disabled {
      opacity: 0.5;
      background-color: rgba(5, 5, 5, 0.06);
      background-color: var(--tone-200);
    }
.DropdownInput__checkbox {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(0, 0, 0, 0.76);
  border: 2px solid var(--tone-700);
  border-radius: 50%;
  margin-right: 10px;
  cursor: pointer;
  position: relative;
}
.DropdownInput__checkbox_block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
.DropdownInput__checkbox:checked {
  background-color: rgba(0, 0, 0, 0.76);
  background-color: var(--tone-700);
}
.DropdownInput__checkbox:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background-color: white;
  border-radius: 50%;
}
.DropdownInput__input:not(:-moz-placeholder-shown) ~ .DropdownInput__label {
    top: -10px;
    padding: 0 1px;
    left: 10px;
    height: auto;
    background-color: white;
    background-color: var(--white);
    font-size: 12px;
    color: rgba(0, 0, 0, 0.28);
    color: var(--tone-400);
  }
.DropdownInput__input:not(:-ms-input-placeholder) ~ .DropdownInput__label {
    top: -10px;
    padding: 0 1px;
    left: 10px;
    height: auto;
    background-color: white;
    background-color: var(--white);
    font-size: 12px;
    color: rgba(0, 0, 0, 0.28);
    color: var(--tone-400);
  }
.DropdownInput__input:focus ~ .DropdownInput__label,
  .DropdownInput__input:not(:placeholder-shown) ~ .DropdownInput__label {
    top: -10px;
    padding: 0 1px;
    left: 10px;
    height: auto;
    background-color: white;
    background-color: var(--white);
    font-size: 12px;
    color: rgba(0, 0, 0, 0.28);
    color: var(--tone-400);
  }
.DropdownInput__input_text::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 0.28);
    color: var(--tone-400);
  }
.DropdownInput__input_text::-moz-placeholder {
    color: rgba(0, 0, 0, 0.28);
    color: var(--tone-400);
  }
.DropdownInput__input_text:-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.28);
    color: var(--tone-400);
  }
.DropdownInput__input_text::-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.28);
    color: var(--tone-400);
  }
.DropdownInput__input_text::placeholder {
    color: rgba(0, 0, 0, 0.28);
    color: var(--tone-400);
  }
.DropdownInput__errorText {
    position: absolute;
    bottom: -17px;
    left: 0;
    color: #ff3b2f;
    color: var(--red);
    font-size: 11.5px;
  }
.DropdownInput__input--error {
    border-color: #ff3b2f;
    border-color: var(--red);
  }
.DropdownInput__inputContainer_error {
    margin-bottom: 22px;  }
.DropdownInput__label--error {
    color: #ff3b2f;
    color: var(--red);
  }
.ErrorPopup .Popup__window {
      width: 390px;
    }
  
      @media (--mobile) {.ErrorPopup .Popup__window {
        width: 100%
    }
      }
    .ErrorPopup__content {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      grid-gap: 16px;
      gap: 16px;
      font-size: 16px;
      font-weight: 600;
      line-height: 22.4px;
      letter-spacing: -0.01em;
      text-align: center;
    }
    .ErrorPopup__image {
      opacity: 0;
      -webkit-transition: opacity 0.5s ease-in-out;
      transition: opacity 0.5s ease-in-out;
      width: 100%;
      height: 198px;
      padding: 0 35px;
    }
    .ErrorPopup__image.loaded {
      opacity: 1;
    }
    .ErrorPopup__title {
        font-size: 20px;
        font-weight: 600;
        line-height: 23.44px;
        letter-spacing: -0.01em;
        text-align: center;
    }
    .ErrorPopup__description {
        font-size: 15px;
        font-weight: 400;
        line-height: 21px;
        text-align: center;        
    }
  
:root {
  /* Design system colors */
  --tone-200: rgba(5, 5, 5, 0.06);
  --tone-300: rgba(0, 0, 0, 0.11);
  --tone-400: rgba(0, 0, 0, 0.28);
  --tone-500: rgba(0, 0, 0, 0.51);
  --tone-600: rgba(0, 0, 0, 0.65);
  --tone-700: rgba(0, 0, 0, 0.76);
  --tone-800: rgba(0, 0, 0, 0.86);
  --tone-900: rgba(0, 0, 0, 0.98);

  --absolute-100: #ffffff;
  --absolute-200: #f0f0f0;
  --absolute-300: #e3e3e3;
  --absolute-700: #3d3d3d;
  --absolute-800: #1f1f1f;
  --absolute-900: #050505;

  --aquamarine-500: rgba(1, 135, 144, 1);

  --red-100: rgba(228, 70, 86, 0.1);
  --red-500: rgba(211, 53, 69, 1);

  --blue-100: rgba(0, 122, 255, 0.1);
  --blue-400: rgba(0, 122, 255, 1);

  --text-secondary: rgba(0, 0, 0, 0.54);
  --text-disabled: rgba(0, 0, 0, 0.38);

  --white: white;
  --red: #ff3b2f;
  --light-red: #e44656;
  --transparent-red: rgba(228, 70, 86, 0.1);
  --light-footer-gray: #f1f1f1;
  --light-footer-bg-gray: #f8f8f8;
  --light-text-gray: rgba(0, 0, 0, 0.51);
  --text-black: rgba(0, 0, 0, 0.98);
  --text-black-title-popup: rgba(46, 46, 45, 1);
  --background-light-secondary: #f2f2f7;
  --popup-background: rgba(0, 0, 0, 0.28);
  --gray-border: rgba(0, 0, 0, 0.11);
  --gray-border-light: rgba(194, 194, 194, 0.5);
  --dark-gray: #333333;
  --light-gray: #d9d9d9;
  --medium-gray: #979797;
  --medium-dark-gray: #646464;
  --disabled-gray: #ebebeb;
  --disabled-dark-gray: #c2c2c2;
  --placeholder-gray: #f1f1f1;
  --white: white;
  --black: black;
  --light-black: rgba(61, 61, 61, 1);
  --main: #5648f8;
  --blue: rgba(0, 122, 255, 1);
  --link-blue: rgba(0, 106, 219, 1);
  --medium-main: #c1bbff;
  --light-main: #e7eafb;
  --accent: #22ccd8;
  --light-cookie-accent: rgba(233, 250, 251, 1);
  --light-accent: rgba(34, 204, 216, 0.2);
  --light-background-accent: rgba(144, 247, 254, 0.08);
  --lightest-accent: #b3eef2;
  --mts-red: #e30611;
  --yelow: #ff9f0a;
  --aquamarine: rgba(34, 204, 216, 0.1);

  /* New colors */
  --black-bg: var(--absolute-700);
  --black-hover: var(--absolute-800);

  /* Border-radius variants */
  --radius-sx: 4px;
  --radius-s: 8px;
  --radius-m: 16px;
  --radius-l: 24px;
  --radius-xl: 32px;

  /* Box-shadows */
  --shadow-xl: 0px 25px 59px rgba(0, 0, 0, 0.2);
  --shadow-m: 0px 16px 24px 0px rgba(0, 0, 0, 0.15);

  /**
   * Fonts using while preloading Lato
   * Or if preloading failed
   */
  --fonts: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell,
    "Open Sans", "Helvetica Neue", sans-serif;

  --font-family-main: Roboto;

  --font-size-heading-first: 30px;
  --font-size-heading-second: 22px;
  --font-size-heading-third: 18px;

  /**
   * Margin for the product card
   * Is using in the product grids and sliders
   */
  --product-margin: 8px;

  /**
   * Height of the `Header` component
   */
  --header-height: 84px;

  /**
   * Margins between content and page body
   * On desktop does not make sense because numeric value is unknown
   * 0 here on desktop to not to violate calculations
   */
  --wrapper-margin: 0;
  --wrapper-padding: 120px;

  /**
   * Cards spacings and width
   */

  --card-spacing: 16px;

  --card-width: 282px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
:root {
    --product-margin: 7.5px
}
  }
@media only screen and (max-width: 767px) {
:root {
    --product-margin: 5px
}
  }
@media only screen and (max-width: 767px) {
:root {
    --header-height: 54px
}
  }
@media only screen and (min-width: 768px) and (max-width: 991px),only screen and (max-width: 767px) {
:root {
    --wrapper-margin: 15px
}
  }
@media only screen and (min-width: 992px) {
:root {
    --card-spacing: 24px
}
  }
@media only screen and (min-width: 992px) {
:root {
    --card-width: calc((100% - (var(--card-spacing) * 2)) / 3)
}
  }
/* TODO: complete */
/* 1600 */
/* 1300 */
/* 992 */
/* 992 */
/* 768 */
/* 320 */
.PlacesGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 24px;
  gap: 24px;
  padding: 8px;
}
@media only screen and (min-width: 992px),only screen and (min-width: 768px) and (max-width: 991px) {
.PlacesGrid {
    max-height: 430px;
    overflow-y: auto;
    overflow-x: hidden
}
  }
@media only screen and (max-width: 767px) {
.PlacesGrid {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 16px;
    gap: 16px;
    margin-bottom: 108px
}
  }
.PlacesGrid__card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    position: relative;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
  }
.PlacesGrid__image-wrapper {
    position: relative;
    width: 100%;
    height: 132px;
    cursor: pointer;
    overflow: hidden;
    border-radius: 16px;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
.PlacesGrid__image-wrapper:hover {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
.PlacesGrid__image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 16px;
    -webkit-transition: -webkit-filter 0.3s ease;
    transition: -webkit-filter 0.3s ease;
    transition: filter 0.3s ease;
    transition: filter 0.3s ease, -webkit-filter 0.3s ease;
  }
.PlacesGrid__circle {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid white;
    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;
    cursor: pointer;
    z-index: 1;
    background-color: transparent;
    -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
    transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
    transition: background-color 0.3s ease, transform 0.3s ease;
    transition: background-color 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  }
.PlacesGrid__circle--selected {
    background-color: rgba(0, 106, 219, 1);
    background-color: var(--link-blue);
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
.PlacesGrid__check {
    color: white;
    font-size: 18px;
    width: 30px;
    height: 26px;
    border-radius: 50%;
    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;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
.PlacesGrid__circle--selected .PlacesGrid__check {
    opacity: 1;
  }
.PlacesGrid__name {
    margin-top: 8px;
    font-size: 13px;
    font-weight: 500;
    line-height: 18.2px;
    text-align: left;
    color: rgba(0, 0, 0, 0.86);
    color: var(--tone-800);
  }

:root {
  /* Design system colors */
  --tone-200: rgba(5, 5, 5, 0.06);
  --tone-300: rgba(0, 0, 0, 0.11);
  --tone-400: rgba(0, 0, 0, 0.28);
  --tone-500: rgba(0, 0, 0, 0.51);
  --tone-600: rgba(0, 0, 0, 0.65);
  --tone-700: rgba(0, 0, 0, 0.76);
  --tone-800: rgba(0, 0, 0, 0.86);
  --tone-900: rgba(0, 0, 0, 0.98);

  --absolute-100: #ffffff;
  --absolute-200: #f0f0f0;
  --absolute-300: #e3e3e3;
  --absolute-700: #3d3d3d;
  --absolute-800: #1f1f1f;
  --absolute-900: #050505;

  --aquamarine-500: rgba(1, 135, 144, 1);

  --red-100: rgba(228, 70, 86, 0.1);
  --red-500: rgba(211, 53, 69, 1);

  --blue-100: rgba(0, 122, 255, 0.1);
  --blue-400: rgba(0, 122, 255, 1);

  --text-secondary: rgba(0, 0, 0, 0.54);
  --text-disabled: rgba(0, 0, 0, 0.38);

  --white: white;
  --red: #ff3b2f;
  --light-red: #e44656;
  --transparent-red: rgba(228, 70, 86, 0.1);
  --light-footer-gray: #f1f1f1;
  --light-footer-bg-gray: #f8f8f8;
  --light-text-gray: rgba(0, 0, 0, 0.51);
  --text-black: rgba(0, 0, 0, 0.98);
  --text-black-title-popup: rgba(46, 46, 45, 1);
  --background-light-secondary: #f2f2f7;
  --popup-background: rgba(0, 0, 0, 0.28);
  --gray-border: rgba(0, 0, 0, 0.11);
  --gray-border-light: rgba(194, 194, 194, 0.5);
  --dark-gray: #333333;
  --light-gray: #d9d9d9;
  --medium-gray: #979797;
  --medium-dark-gray: #646464;
  --disabled-gray: #ebebeb;
  --disabled-dark-gray: #c2c2c2;
  --placeholder-gray: #f1f1f1;
  --white: white;
  --black: black;
  --light-black: rgba(61, 61, 61, 1);
  --main: #5648f8;
  --blue: rgba(0, 122, 255, 1);
  --link-blue: rgba(0, 106, 219, 1);
  --medium-main: #c1bbff;
  --light-main: #e7eafb;
  --accent: #22ccd8;
  --light-cookie-accent: rgba(233, 250, 251, 1);
  --light-accent: rgba(34, 204, 216, 0.2);
  --light-background-accent: rgba(144, 247, 254, 0.08);
  --lightest-accent: #b3eef2;
  --mts-red: #e30611;
  --yelow: #ff9f0a;
  --aquamarine: rgba(34, 204, 216, 0.1);

  /* New colors */
  --black-bg: var(--absolute-700);
  --black-hover: var(--absolute-800);

  /* Border-radius variants */
  --radius-sx: 4px;
  --radius-s: 8px;
  --radius-m: 16px;
  --radius-l: 24px;
  --radius-xl: 32px;

  /* Box-shadows */
  --shadow-xl: 0px 25px 59px rgba(0, 0, 0, 0.2);
  --shadow-m: 0px 16px 24px 0px rgba(0, 0, 0, 0.15);

  /**
   * Fonts using while preloading Lato
   * Or if preloading failed
   */
  --fonts: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell,
    "Open Sans", "Helvetica Neue", sans-serif;

  --font-family-main: Roboto;

  --font-size-heading-first: 30px;
  --font-size-heading-second: 22px;
  --font-size-heading-third: 18px;

  /**
   * Margin for the product card
   * Is using in the product grids and sliders
   */
  --product-margin: 8px;

  /**
   * Height of the `Header` component
   */
  --header-height: 84px;

  /**
   * Margins between content and page body
   * On desktop does not make sense because numeric value is unknown
   * 0 here on desktop to not to violate calculations
   */
  --wrapper-margin: 0;
  --wrapper-padding: 120px;

  /**
   * Cards spacings and width
   */

  --card-spacing: 16px;

  --card-width: 282px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
:root {
    --product-margin: 7.5px
}
  }
@media only screen and (max-width: 767px) {
:root {
    --product-margin: 5px
}
  }
@media only screen and (max-width: 767px) {
:root {
    --header-height: 54px
}
  }
@media only screen and (min-width: 768px) and (max-width: 991px),only screen and (max-width: 767px) {
:root {
    --wrapper-margin: 15px
}
  }
@media only screen and (min-width: 992px) {
:root {
    --card-spacing: 24px
}
  }
@media only screen and (min-width: 992px) {
:root {
    --card-width: calc((100% - (var(--card-spacing) * 2)) / 3)
}
  }
/* TODO: complete */
/* 1600 */
/* 1300 */
/* 992 */
/* 992 */
/* 768 */
/* 320 */
.TourParametersScreen {
  font-family: Roboto;
  font-family: var(--font-family-main);
  position: relative;
  width: 658px;
  padding: 24px 0;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  grid-gap: 16px;
  gap: 16px;
}
@media only screen and (max-width: 767px) {
.TourParametersScreen {
    width: 100%;
    padding: 16px;
    height: 100%
}
  }
.TourParametersScreen__infoButton {
    min-width: 24px;
    height: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border: 1px solid rgba(0, 106, 219, 1);
    border: 1px solid var(--link-blue);
    border-radius: 50%;
    background: transparent;
    color: rgba(0, 106, 219, 1);
    color: var(--link-blue);
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
  }
.TourParametersScreen__popup {
      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;
      grid-gap: 10px;
      gap: 10px;
      width: -webkit-fit-content;
      width: -moz-fit-content;
      width: fit-content;
  }
.TourParametersScreen__popup_text {
      width: 100%;
    }
.TourParametersScreen__popup_title {
      font-weight: 600;
      font-size: 20px;
      line-height: 23.44px;
      letter-spacing: -1%;
      margin-top: 20px;
    }
.TourParametersScreen__popup_info {
      font-weight: 400;
      font-size: 15px;
      line-height: 21px;
      letter-spacing: 0%;
      color: rgba(0, 0, 0, 0.76);
      color: var(--tone-700);
      padding: 16px 0 16px;
    }
.TourParametersScreen__popup_subtitles {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      grid-gap: 18px;
      gap: 18px;
      margin-top: 10px;
    }
.TourParametersScreen__popup_subtitle {
      font-weight: 400;
      font-size: 16px;
      line-height: 22.4px;
      letter-spacing: 0%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      grid-gap: 16px;
      gap: 16px;
    }
.TourParametersScreen__popup_subtitle:last-child {
        margin-bottom: 10px;
      }
.TourParametersScreen__auto-selected {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    grid-gap: 10px;
    gap: 10px;
  }
@media only screen and (max-width: 767px) {
.TourParametersScreen__auto-selected {
      -webkit-box-orient: vertical;
      -webkit-box-direction: reverse;
          -ms-flex-direction: column-reverse;
              flex-direction: column-reverse
  }
    }
.TourParametersScreen__auto-selected_image {
      width: 266px;
      height: 185px;
      margin: 20px 0 40px;
    }
@media only screen and (max-width: 767px) {
.TourParametersScreen__auto-selected_image {
        margin: 0
    }
      }
.TourParametersScreen__auto-selected_title {
      font-weight: 600;
      font-size: 22px;
      line-height: 25.78px;
      letter-spacing: -1%;
      text-align: center;
    }
@media only screen and (max-width: 767px) {
.TourParametersScreen__auto-selected_title {
        margin-top: 10px
    }
      }
.TourParametersScreen__auto-selected_subtitle {
      font-weight: 500;
      font-size: 13px;
      line-height: 18.2px;
      letter-spacing: 0%;
      text-align: center;
      color: rgba(0, 0, 0, 0.51);
      color: var(--tone-500);
      margin-bottom: 20px;
    }
.TourParametersScreen__title {
    font-size: 30px;
    font-weight: 600;
    line-height: 36px;
    text-align: left;
    color: rgba(0, 0, 0, 0.98);
    color: var(--tone-900);
    margin-bottom: 8px;
  }
.TourParametersScreen__helper-text {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      grid-gap: 10px;
      gap: 10px;
  }
.TourParametersScreen__helper-text_block {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      padding-right: 20px;
      margin-top: 20px;
    }
@media only screen and (max-width: 767px) {
.TourParametersScreen__helper-text_block {
        margin-top: 0;
        padding-right: 0;
        grid-gap: 10px;
        gap: 10px
    }
      }
.TourParametersScreen__helper-text_title {
      font-size: 22px;
      font-weight: 600;
      line-height: 25.78px;
      letter-spacing: -0.01em;
      text-align: left;
      color: rgba(0, 0, 0, 0.76);
      color: var(--tone-700);
    }
@media only screen and (max-width: 767px) {
.TourParametersScreen__helper-text_title {
        font-size: 16px;
        line-height: 22.4px
    }
      }
.TourParametersScreen__helper-text_description {
      font-size: 13px;
      font-weight: 500;
      line-height: 18.2px;
      text-align: left;
      color: rgba(0, 0, 0, 0.51);
      color: var(--tone-500);
      margin-top: -8px;
    }
@media only screen and (max-width: 767px) {
.TourParametersScreen__helper-text_description {
        font-size: 13px;
        line-height: 18.2px
    }        
      }
@media only screen and (max-width: 767px) {
.TourParametersScreen__helper-text {
      font-size: 16px;
      font-weight: 600;
      line-height: 22.4px;
      letter-spacing: -0.01em;
      text-align: left
  }

      .TourParametersScreen__helper-text_description {
        font-size: 16px;
        font-weight: 400;
        line-height: 22.4px;
      }
    }
.TourParametersScreen__input-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    grid-gap: 16px;
    gap: 16px;
  }

:root {
  /* Design system colors */
  --tone-200: rgba(5, 5, 5, 0.06);
  --tone-300: rgba(0, 0, 0, 0.11);
  --tone-400: rgba(0, 0, 0, 0.28);
  --tone-500: rgba(0, 0, 0, 0.51);
  --tone-600: rgba(0, 0, 0, 0.65);
  --tone-700: rgba(0, 0, 0, 0.76);
  --tone-800: rgba(0, 0, 0, 0.86);
  --tone-900: rgba(0, 0, 0, 0.98);

  --absolute-100: #ffffff;
  --absolute-200: #f0f0f0;
  --absolute-300: #e3e3e3;
  --absolute-700: #3d3d3d;
  --absolute-800: #1f1f1f;
  --absolute-900: #050505;

  --aquamarine-500: rgba(1, 135, 144, 1);

  --red-100: rgba(228, 70, 86, 0.1);
  --red-500: rgba(211, 53, 69, 1);

  --blue-100: rgba(0, 122, 255, 0.1);
  --blue-400: rgba(0, 122, 255, 1);

  --text-secondary: rgba(0, 0, 0, 0.54);
  --text-disabled: rgba(0, 0, 0, 0.38);

  --white: white;
  --red: #ff3b2f;
  --light-red: #e44656;
  --transparent-red: rgba(228, 70, 86, 0.1);
  --light-footer-gray: #f1f1f1;
  --light-footer-bg-gray: #f8f8f8;
  --light-text-gray: rgba(0, 0, 0, 0.51);
  --text-black: rgba(0, 0, 0, 0.98);
  --text-black-title-popup: rgba(46, 46, 45, 1);
  --background-light-secondary: #f2f2f7;
  --popup-background: rgba(0, 0, 0, 0.28);
  --gray-border: rgba(0, 0, 0, 0.11);
  --gray-border-light: rgba(194, 194, 194, 0.5);
  --dark-gray: #333333;
  --light-gray: #d9d9d9;
  --medium-gray: #979797;
  --medium-dark-gray: #646464;
  --disabled-gray: #ebebeb;
  --disabled-dark-gray: #c2c2c2;
  --placeholder-gray: #f1f1f1;
  --white: white;
  --black: black;
  --light-black: rgba(61, 61, 61, 1);
  --main: #5648f8;
  --blue: rgba(0, 122, 255, 1);
  --link-blue: rgba(0, 106, 219, 1);
  --medium-main: #c1bbff;
  --light-main: #e7eafb;
  --accent: #22ccd8;
  --light-cookie-accent: rgba(233, 250, 251, 1);
  --light-accent: rgba(34, 204, 216, 0.2);
  --light-background-accent: rgba(144, 247, 254, 0.08);
  --lightest-accent: #b3eef2;
  --mts-red: #e30611;
  --yelow: #ff9f0a;
  --aquamarine: rgba(34, 204, 216, 0.1);

  /* New colors */
  --black-bg: var(--absolute-700);
  --black-hover: var(--absolute-800);

  /* Border-radius variants */
  --radius-sx: 4px;
  --radius-s: 8px;
  --radius-m: 16px;
  --radius-l: 24px;
  --radius-xl: 32px;

  /* Box-shadows */
  --shadow-xl: 0px 25px 59px rgba(0, 0, 0, 0.2);
  --shadow-m: 0px 16px 24px 0px rgba(0, 0, 0, 0.15);

  /**
   * Fonts using while preloading Lato
   * Or if preloading failed
   */
  --fonts: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell,
    "Open Sans", "Helvetica Neue", sans-serif;

  --font-family-main: Roboto;

  --font-size-heading-first: 30px;
  --font-size-heading-second: 22px;
  --font-size-heading-third: 18px;

  /**
   * Margin for the product card
   * Is using in the product grids and sliders
   */
  --product-margin: 8px;

  /**
   * Height of the `Header` component
   */
  --header-height: 84px;

  /**
   * Margins between content and page body
   * On desktop does not make sense because numeric value is unknown
   * 0 here on desktop to not to violate calculations
   */
  --wrapper-margin: 0;
  --wrapper-padding: 120px;

  /**
   * Cards spacings and width
   */

  --card-spacing: 16px;

  --card-width: 282px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
:root {
    --product-margin: 7.5px
}
  }
@media only screen and (max-width: 767px) {
:root {
    --product-margin: 5px
}
  }
@media only screen and (max-width: 767px) {
:root {
    --header-height: 54px
}
  }
@media only screen and (min-width: 768px) and (max-width: 991px),only screen and (max-width: 767px) {
:root {
    --wrapper-margin: 15px
}
  }
@media only screen and (min-width: 992px) {
:root {
    --card-spacing: 24px
}
  }
@media only screen and (min-width: 992px) {
:root {
    --card-width: calc((100% - (var(--card-spacing) * 2)) / 3)
}
  }
/* TODO: complete */
/* 1600 */
/* 1300 */
/* 992 */
/* 992 */
/* 768 */
/* 320 */
.welcome-popup .Popup__header {
    padding: 0 16px;
  }
.welcome-popup .Popup__window {
    width: 390px;
    padding: 0 0 24px 0;
    max-height: -webkit-fit-content;
    max-height: -moz-fit-content;
    max-height: fit-content;
  }
@media only screen and (max-width: 767px) {
.welcome-popup .Popup__window {
      width: 100%
  }
    }
.welcome-popup .Popup--bottomSheet .Popup__window {
    padding: 24px 0 24px 0;
  }
.welcome-popup__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    grid-gap: 8px;
    gap: 8px;
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    letter-spacing: -0.01em;
    text-align: left;
  }
.welcome-popup__image {
    opacity: 0;
    -webkit-transition: opacity 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out;
    width: 100%;
    height: 240px;
    -o-object-fit: cover;
       object-fit: cover;
    padding-bottom: 8px;
  }
.welcome-popup__image.loaded {
    opacity: 1;
  }
.welcome-popup__description {
    padding: 0 16px;
  }
.welcome-popup__description_title {
      font-size: 30px;
      font-weight: 600;
      line-height: 36px;
      padding-bottom: 8px;
    }
.welcome-popup__description_subtitle {
      font-size: 16px;
      font-weight: 400;
      line-height: 22.4px;
      color: rgba(0, 0, 0, 0.76);
      color: var(--tone-700);
    }
.welcome-popup__button {
    margin: 0 16px;
    width: 92%;
  }
.welcome-popup__button .Button__text {
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
    }
.welcome-popup__list {
    padding: 0 16px;
    list-style-type: none;
    margin: 0;
  }
.welcome-popup__list li {
      padding: 12px 0;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      grid-gap: 8px;
      gap: 8px;
    }

:root {
  /* Design system colors */
  --tone-200: rgba(5, 5, 5, 0.06);
  --tone-300: rgba(0, 0, 0, 0.11);
  --tone-400: rgba(0, 0, 0, 0.28);
  --tone-500: rgba(0, 0, 0, 0.51);
  --tone-600: rgba(0, 0, 0, 0.65);
  --tone-700: rgba(0, 0, 0, 0.76);
  --tone-800: rgba(0, 0, 0, 0.86);
  --tone-900: rgba(0, 0, 0, 0.98);

  --absolute-100: #ffffff;
  --absolute-200: #f0f0f0;
  --absolute-300: #e3e3e3;
  --absolute-700: #3d3d3d;
  --absolute-800: #1f1f1f;
  --absolute-900: #050505;

  --aquamarine-500: rgba(1, 135, 144, 1);

  --red-100: rgba(228, 70, 86, 0.1);
  --red-500: rgba(211, 53, 69, 1);

  --blue-100: rgba(0, 122, 255, 0.1);
  --blue-400: rgba(0, 122, 255, 1);

  --text-secondary: rgba(0, 0, 0, 0.54);
  --text-disabled: rgba(0, 0, 0, 0.38);

  --white: white;
  --red: #ff3b2f;
  --light-red: #e44656;
  --transparent-red: rgba(228, 70, 86, 0.1);
  --light-footer-gray: #f1f1f1;
  --light-footer-bg-gray: #f8f8f8;
  --light-text-gray: rgba(0, 0, 0, 0.51);
  --text-black: rgba(0, 0, 0, 0.98);
  --text-black-title-popup: rgba(46, 46, 45, 1);
  --background-light-secondary: #f2f2f7;
  --popup-background: rgba(0, 0, 0, 0.28);
  --gray-border: rgba(0, 0, 0, 0.11);
  --gray-border-light: rgba(194, 194, 194, 0.5);
  --dark-gray: #333333;
  --light-gray: #d9d9d9;
  --medium-gray: #979797;
  --medium-dark-gray: #646464;
  --disabled-gray: #ebebeb;
  --disabled-dark-gray: #c2c2c2;
  --placeholder-gray: #f1f1f1;
  --white: white;
  --black: black;
  --light-black: rgba(61, 61, 61, 1);
  --main: #5648f8;
  --blue: rgba(0, 122, 255, 1);
  --link-blue: rgba(0, 106, 219, 1);
  --medium-main: #c1bbff;
  --light-main: #e7eafb;
  --accent: #22ccd8;
  --light-cookie-accent: rgba(233, 250, 251, 1);
  --light-accent: rgba(34, 204, 216, 0.2);
  --light-background-accent: rgba(144, 247, 254, 0.08);
  --lightest-accent: #b3eef2;
  --mts-red: #e30611;
  --yelow: #ff9f0a;
  --aquamarine: rgba(34, 204, 216, 0.1);

  /* New colors */
  --black-bg: var(--absolute-700);
  --black-hover: var(--absolute-800);

  /* Border-radius variants */
  --radius-sx: 4px;
  --radius-s: 8px;
  --radius-m: 16px;
  --radius-l: 24px;
  --radius-xl: 32px;

  /* Box-shadows */
  --shadow-xl: 0px 25px 59px rgba(0, 0, 0, 0.2);
  --shadow-m: 0px 16px 24px 0px rgba(0, 0, 0, 0.15);

  /**
   * Fonts using while preloading Lato
   * Or if preloading failed
   */
  --fonts: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell,
    "Open Sans", "Helvetica Neue", sans-serif;

  --font-family-main: Roboto;

  --font-size-heading-first: 30px;
  --font-size-heading-second: 22px;
  --font-size-heading-third: 18px;

  /**
   * Margin for the product card
   * Is using in the product grids and sliders
   */
  --product-margin: 8px;

  /**
   * Height of the `Header` component
   */
  --header-height: 84px;

  /**
   * Margins between content and page body
   * On desktop does not make sense because numeric value is unknown
   * 0 here on desktop to not to violate calculations
   */
  --wrapper-margin: 0;
  --wrapper-padding: 120px;

  /**
   * Cards spacings and width
   */

  --card-spacing: 16px;

  --card-width: 282px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
:root {
    --product-margin: 7.5px
}
  }
@media only screen and (max-width: 767px) {
:root {
    --product-margin: 5px
}
  }
@media only screen and (max-width: 767px) {
:root {
    --header-height: 54px
}
  }
@media only screen and (min-width: 768px) and (max-width: 991px),only screen and (max-width: 767px) {
:root {
    --wrapper-margin: 15px
}
  }
@media only screen and (min-width: 992px) {
:root {
    --card-spacing: 24px
}
  }
@media only screen and (min-width: 992px) {
:root {
    --card-width: calc((100% - (var(--card-spacing) * 2)) / 3)
}
  }
/* TODO: complete */
/* 1600 */
/* 1300 */
/* 992 */
/* 992 */
/* 768 */
/* 320 */
.on-demand-widget {
  min-height: 100dvh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.on-demand-widget__header {
    width: 100%;
    height: 65px;
    padding: 0 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    background-color: white;
    background-color: var(--white);
    position: sticky;
    z-index: 100;
    top: 0;
  }
@media only screen and (max-width: 767px) {
.on-demand-widget__header {
      padding: 0;
      content-visibility: hidden;
      -webkit-content-visibility: hidden;
      visibility: hidden;
      height: auto;
      display: none
  }
    }
.on-demand-widget__screen-container {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: white;
  }
@media only screen and (max-width: 767px) {
.on-demand-widget__screen-container {
      height: calc(100vh - 130px);
      overflow-y: auto;
      overflow-x: hidden
  }
    }
.on-demand-widget__controls-container {
    position: sticky;
    bottom: 0;
    z-index: 100;
  }
.on-demand-widget .Spinner {
    --spinner-size: 2.5em;
  }


/*# sourceMappingURL=pages-OnDemandWidget.9a25cbd4.chunk.css.map*/