@charset "UTF-8";
/*
  $list: a, b, d, e, f;
  $new-list: insert-nth($list, 3, c);     // a, b, c, d, e, f
*/
/*
  $list: a, b, r, a, c a, d a, b, r, a;
  $new-list: replace($list, a, u);       // u, b, r, u, c a, d a, b, r, u;
*/
/*
  $list: a, b, z, d, e, f;
  $new-list: replace-nth($list,   3, c); // a, b, c, d, e, f
  $new-list: replace-nth($list,  -2, c); // a, b, c, d, z, f
*/
/*
  $list: a, b z, c, z, d, z, e, f;
  $new-list: remove($list, z);       // a, b z, c, d, e, f;
*/
/*
  $list: a, b, z, c, d, e, f;
  $new-list: remove-nth($list,   3); // a, b, c, d, e, f
  $new-list: remove-nth($list,  -2); // a, b, z, c, d, f
*/
/*
  $list: a, b, c, d, e, f;
  $new-list: slice($list, 3, 5);   // c, d, e
  $new-list: slice($list, 4, 4);   // d
*/
/*
  $list: a, b, c d e, f, g, h;
  $new-list: reverse($list);       // h, g, f, c d e, b, a
  $new-list: reverse($list, true); // h, g, f, e d c, b, a
*/
/*
    Добавляет константу к каждому значению карты.

    Пример:
      $map: (
        (1024px, 0): 100px,
        (768px, 1024px): 80px,
        (0, 768px): 60px,
      )

      > map_add($map, 10px)
      (
        (1024px, 0): 110px,
        (768px, 1024px): 90px,
        (0, 768px): 70px,
      )
 */
/*
    Получение ключа карты $map media-интервалов,
    в который входит искомый интервал $media.
    Если искомый интервал находится на границе
    двух или более интервалов карты, генерируется ошибка.

    Пример:
      $map: (
        (1024px, 0): 100px,
        (768px, 1024px): 80px,
        (0, 768px): 60px,
      )

      > media_map_key($map, (1200px, 0))
      (1024px, 0)
 */
/*
    Получение среза media-карты.

    Пример:
      $map: (
        (1024px, 0): 100px,
        (768px, 1024px): 80px,
        (0, 768px): 60px,
      )

      > media_map_slice($map, (640px, 1200px))
      (
        (1024px, 1200px): 100px,
        (768px, 1024px): 80px,
        (640px, 768px): 60px,
      )
 */
/*
  Многоколоночная верстка через flexbox.

  Пример:
    .list {
      display: flex;
      flex-wrap: wrap;

      .item {
        @include flex-columns(2, 10px, 10px);
      }
    }
*/
/*
  Пример:
    input {
      color: #808080;
      ...
      @include placeholder {
        color: red;
      }
    }
*/
.gmap-label {
  position: absolute;
  font-size: 0;
}
.gmap-label:before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  z-index: 1;
  background: #F8554B;
  border: 1px solid #808080;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.gmap-label span {
  display: inline-block;
  padding-left: 0.8em;
  margin-top: -0.5em;
  color: #303030;
  font-weight: bold;
  font-size: 12px;
  font-size: 0.75rem;
}

@charset "UTF-8";
/*
  $list: a, b, d, e, f;
  $new-list: insert-nth($list, 3, c);     // a, b, c, d, e, f
*/
/*
  $list: a, b, r, a, c a, d a, b, r, a;
  $new-list: replace($list, a, u);       // u, b, r, u, c a, d a, b, r, u;
*/
/*
  $list: a, b, z, d, e, f;
  $new-list: replace-nth($list,   3, c); // a, b, c, d, e, f
  $new-list: replace-nth($list,  -2, c); // a, b, c, d, z, f
*/
/*
  $list: a, b z, c, z, d, z, e, f;
  $new-list: remove($list, z);       // a, b z, c, d, e, f;
*/
/*
  $list: a, b, z, c, d, e, f;
  $new-list: remove-nth($list,   3); // a, b, c, d, e, f
  $new-list: remove-nth($list,  -2); // a, b, z, c, d, f
*/
/*
  $list: a, b, c, d, e, f;
  $new-list: slice($list, 3, 5);   // c, d, e
  $new-list: slice($list, 4, 4);   // d
*/
/*
  $list: a, b, c d e, f, g, h;
  $new-list: reverse($list);       // h, g, f, c d e, b, a
  $new-list: reverse($list, true); // h, g, f, e d c, b, a
*/
/*
    Добавляет константу к каждому значению карты.

    Пример:
      $map: (
        (1024px, 0): 100px,
        (768px, 1024px): 80px,
        (0, 768px): 60px,
      )

      > map_add($map, 10px)
      (
        (1024px, 0): 110px,
        (768px, 1024px): 90px,
        (0, 768px): 70px,
      )
 */
/*
    Получение ключа карты $map media-интервалов,
    в который входит искомый интервал $media.
    Если искомый интервал находится на границе
    двух или более интервалов карты, генерируется ошибка.

    Пример:
      $map: (
        (1024px, 0): 100px,
        (768px, 1024px): 80px,
        (0, 768px): 60px,
      )

      > media_map_key($map, (1200px, 0))
      (1024px, 0)
 */
/*
    Получение среза media-карты.

    Пример:
      $map: (
        (1024px, 0): 100px,
        (768px, 1024px): 80px,
        (0, 768px): 60px,
      )

      > media_map_slice($map, (640px, 1200px))
      (
        (1024px, 1200px): 100px,
        (768px, 1024px): 80px,
        (640px, 768px): 60px,
      )
 */
/*
  Многоколоночная верстка через flexbox.

  Пример:
    .list {
      display: flex;
      flex-wrap: wrap;

      .item {
        @include flex-columns(2, 10px, 10px);
      }
    }
*/
/*
  Пример:
    input {
      color: #808080;
      ...
      @include placeholder {
        color: red;
      }
    }
*/
#addresses {
  display: flex;
  flex-direction: column;
  background: url("/static/img/bg-shop.jpg") no-repeat center;
  background-size: cover;
  position: relative;
}
#addresses:before {
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, #000000 90.2%);
  width: 100%;
  height: 55%;
  left: 0;
  top: 0;
  z-index: 0;
  position: absolute;
}
@media all and (max-width: 767px) {
  #addresses .grid, #addresses .gc, #addresses [class*=gc-] {
    padding: 0;
  }
}
#addresses .phone {
  display: inline-block;
  position: relative;
  color: #FFFFFF;
  letter-spacing: 0.05em;
  padding: 7px 0px 7px 30px;
  transition: color 0.5s;
  font-weight: bold;
  font-family: "Red Hat Display", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.3125;
}
@media all and (max-width: 767px) {
  #addresses .phone {
    border-bottom: 1px solid #676A6F;
    border-top: 1px solid #676A6F;
    padding: 15px 20px 15px 50px;
    width: 100%;
  }
}
#addresses .phone:hover {
  color: #A057FD;
  transition: color 0.5s;
}
#addresses .phone:before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: 10px;
  width: 20px;
  height: 20px;
  background: url(/static/img/sprite.svg) no-repeat;
  background-position: 15.4761904762% 0%;
  background-size: 2038.4615384615% 780.7692307692%;
}
@media all and (max-width: 767px) {
  #addresses .phone:before {
    left: 20px;
    top: 17px;
  }
}
#addresses .wrapper {
  display: block;
  padding: 7px 0;
  box-sizing: border-box;
}
@media all and (max-width: 767px) {
  #addresses .wrapper {
    border-bottom: 1px solid #676A6F;
    padding: 15px 20px;
  }
}
#addresses .wrapper .mail {
  display: inline-block;
  color: #FFFFFF;
  padding-left: 30px;
  position: relative;
  transition: color 0.5s;
  font-weight: bold;
  font-family: "Red Hat Display", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.3125;
}
#addresses .wrapper .mail:hover {
  color: #A057FD;
  transition: color 0.5s;
}
#addresses .wrapper .mail:before {
  content: "";
  display: block;
  position: absolute;
  left: 1px;
  top: 7px;
  width: 20px;
  height: 20px;
  background: url(/static/img/sprite.svg) no-repeat;
  background-position: 20.6349206349% 0%;
  background-size: 2038.4615384615% 780.7692307692%;
}
#addresses .wrapper .info {
  display: block;
  padding-top: 5px;
  padding-left: 30px;
  color: #FFFFFF;
  opacity: 0.6;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.3571428571;
}
#addresses .hours-list {
  display: flex;
  flex-direction: column;
  padding: 7px 0px 7px 30px;
  position: relative;
}
@media all and (max-width: 767px) {
  #addresses .hours-list {
    border-bottom: 1px solid #676A6F;
    padding: 15px 20px 15px 50px;
  }
}
#addresses .hours-list:before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: 18px;
  width: 20px;
  height: 20px;
  background: url(/static/img/sprite.svg) no-repeat;
  background-position: 16.0784313725% 26.2295081967%;
  background-size: 2650% 1015%;
}
@media all and (max-width: 767px) {
  #addresses .hours-list:before {
    left: 20px;
  }
}
#addresses .hours-list .item {
  color: #FFFFFF;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.4375;
}

.contact-page {
  background: url("/static/img/bg-shop.jpg") no-repeat center;
  background-size: cover;
}
.contact-page .title-h1 {
  padding-bottom: 15px;
}
.contact-page .contact-form {
  padding-bottom: 40px;
}
.contact-page .buttons {
  max-width: 335px;
  margin: 0 auto;
}
.contact-page .buttons .btn {
  width: 100%;
}

.thank-you-page {
  background: url("/static/img/bg-shop.jpg") no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 350px;
  padding-bottom: 300px;
}
@media all and (max-width: 767px) {
  .thank-you-page {
    padding-top: 280px;
    padding-bottom: 200px;
  }
}
.thank-you-page__wrapper {
  text-align: center;
}
.thank-you-page__wrapper-title {
  color: #FFFFFF;
  display: inline-block;
  padding-bottom: 80px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
  font-weight: normal;
  font-family: "Cookie", cursive;
  font-size: 176px;
  font-size: 11rem;
  line-height: 1;
}
@media all and (min-width: 768px) and (max-width: 1023px) {
  .thank-you-page__wrapper-title {
    font-size: 80px;
    font-size: 5rem;
    line-height: 1.125;
  }
}
@media all and (max-width: 767px) {
  .thank-you-page__wrapper-title {
    padding-bottom: 40px;
    font-size: 55px;
    font-size: 3.4375rem;
    line-height: 1.0909090909;
  }
}
.thank-you-page__wrapper-title:before {
  content: "";
  width: 400px;
  height: 400px;
  position: absolute;
  left: 50%;
  top: -60%;
  transform: translate(-50%, 0);
  z-index: -1;
  background: url("/static/img/popular_bg.png") no-repeat;
  background-size: contain;
  background-position: center;
}
@media all and (max-width: 767px) {
  .thank-you-page__wrapper-title:before {
    top: -160px;
    width: 300px;
    height: 300px;
  }
}
.thank-you-page__wrapper-title:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 146px;
  height: 146px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: #000;
  filter: blur(25px);
  z-index: -1;
}
.thank-you-page__wrapper-description {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  color: #FFFFFF;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  font-weight: 900;
  font-family: "Red Hat Display", sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.3;
}
@media all and (max-width: 767px) {
  .thank-you-page__wrapper-description {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.3571428571;
  }
}
.thank-you-page__wrapper .btn-wr {
  max-width: 250px;
  margin: 20px auto 0 auto;
}
.thank-you-page__wrapper .btn-wr .btn {
  width: 100%;
}

