@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;
      }
    }
*/
.shipping-methods .validation-error {
  color: #F18B71;
  margin-bottom: 20px;
  text-align: left;
  font-size: 12px;
  font-size: 1rem;
  line-height: 1.3125;
  display: flex;
}

.cart-block {
  padding-top: 150px;
  background: url("/static/img/bg-shop.jpg") no-repeat center;
  background-size: cover;
}
.cart-block .title-h1 {
  padding-bottom: 25px;
}
.cart-block .payment-error {
  color: #F18B71;
  margin-bottom: 20px;
  text-align: center;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.3125;
  display: block;
}
.cart-block .payment-error a {
  color: #8B8B8B;
  transition: opacity 0.5s;
}
.cart-block .payment-error a:hover {
  opacity: 0.5;
  transition: opacity 0.5s;
}
.cart-block__list {
  display: flex;
  flex-direction: column;
  margin: -8px 0;
}
@media all and (max-width: 767px) {
  .cart-block__list {
    padding-bottom: 25px;
  }
}
.cart-block__item {
  padding: 8px 0;
  box-sizing: border-box;
}
.cart-block__item-wrapper {
  padding: 10px;
  box-sizing: border-box;
  display: flex;
  background: #35393E;
  border-radius: 5px;
  position: relative;
}
@media all and (min-width: 480px) and (max-width: 1023px) {
  .cart-block__item-wrapper {
    padding: 25px;
  }
}
@media all and (max-width: 479px) {
  .cart-block__item-wrapper {
    padding: 25px 25px 10px 10px;
  }
}
.cart-block__item-image-box {
  width: 82px;
  height: 100px;
  margin-right: 15px;
  position: relative;
}
.cart-block__item-image-box .section-image {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: contain;
  z-index: 1;
}
.cart-block__item-info {
  display: flex;
  flex-direction: column;
  margin-right: auto;
}
.cart-block__item-name {
  display: inline-block;
  padding-bottom: 10px;
  color: #FFFFFF;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.3125;
}
.cart-block__item-price {
  display: inline-block;
  color: #FFFFFF;
  font-weight: bold;
  font-family: "Red Hat Display", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.3333333333;
}
.cart-block .delete-product {
  width: 18px;
  height: 18px;
  background: url("/static/img/cross.png") no-repeat;
  opacity: 0.8;
  transition: opacity 0.5s;
}
@media all and (max-width: 1023px) {
  .cart-block .delete-product {
    position: absolute;
    top: 8px;
    right: 8px;
  }
}
.cart-block .delete-product:hover {
  opacity: 1;
  transition: opacity 0.5s;
}
.cart-block .quantity {
  margin-top: auto;
  padding-bottom: 10px;
}
.cart-block .quantity__btn_remove {
  position: relative;
  width: 20px;
  height: 20px;
  background: transparent;
  margin-right: 15px;
}
.cart-block .quantity__btn_remove:before {
  content: "";
  position: absolute;
  left: 3px;
  top: 55%;
  width: 12px;
  height: 1px;
  background-color: #FFFFFF;
  transition: opacity 0.5s;
}
.cart-block .quantity__btn_remove:hover:before {
  opacity: 0.5;
  transition: opacity 0.5s;
}
.cart-block .quantity__btn_add {
  position: relative;
  width: 20px;
  height: 20px;
  background: transparent;
  margin-left: 15px;
}
.cart-block .quantity__btn_add:hover:before, .cart-block .quantity__btn_add:hover:after {
  opacity: 0.5;
  transition: opacity 0.5s;
}
.cart-block .quantity__btn_add:before {
  content: "";
  position: absolute;
  left: 4px;
  top: 55%;
  transform: translateY(-50%);
  width: 12px;
  height: 2px;
  background-color: #FFFFFF;
  transition: opacity 0.5s;
}
.cart-block .quantity__btn_add:after {
  content: "";
  position: absolute;
  left: inherit;
  top: 55%;
  right: 4px;
  transform: translateY(-50%) rotate(90deg);
  width: 12px;
  height: 2px;
  background-color: #FFFFFF;
  transition: opacity 0.5s;
}
.cart-block .quantity__input {
  width: 25px;
  border-radius: 50em !important;
  text-align: center;
  color: #FFFFFF;
  background-color: transparent;
  font-size: 20px;
  line-height: 26px;
}
@media all and (min-width: 1024px) {
  .cart-block .quantity__input {
    width: 25px;
  }
}
.cart-block__order-wrapper {
  padding: 25px 20px;
  box-sizing: border-box;
  background: #35393E;
  border-radius: 5px;
}
@media all and (max-width: 767px) {
  .cart-block__order-wrapper {
    padding: 0;
    background: transparent;
  }
}
.cart-block__order-wrapper .wrapper-part {
  display: flex;
  flex-direction: column;
  padding: 15px 0;
  border-bottom: 1px solid white;
}
.cart-block__order-wrapper .wrapper-part .title {
  color: #FFFFFF;
  font-weight: bold;
  font-family: "Red Hat Display", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.3333333333;
}
@media all and (max-width: 767px) {
  .cart-block__order-wrapper .wrapper-part .title {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.3125;
  }
}
.cart-block__order-wrapper .wrapper-part .total {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  font-family: "Red Hat Display", sans-serif;
}
.cart-block__order-wrapper .wrapper-part .total p {
  font-weight: bold;
  font-family: "Red Hat Display", sans-serif;
}
.cart-block__order-wrapper .wrapper-part div {
  display: flex;
  color: #FFFFFF;
  justify-content: space-between;
  padding-bottom: 10px;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.3125;
}
@media all and (max-width: 767px) {
  .cart-block__order-wrapper .wrapper-part div {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.3571428571;
  }
}
.cart-block__order-wrapper .wrapper-part div:last-of-type {
  padding-bottom: 10px;
}
.cart-block__order-wrapper .wrapper-part div p {
  font-weight: 500;
}
.cart-block__order-wrapper .wrapper-part.total {
  border-bottom: none;
}
.cart-block__order #applied-promos {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 20px;
}
.cart-block__order #applied-promos .applied-text {
  display: inline-block;
  color: #FFFFFF;
  font-weight: 900;
  font-family: "Red Hat Display", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
}
.cart-block__order #applied-promos .apllied-promo {
  display: inline-block;
  color: #A057FD;
  padding-top: 5px;
  width: 100%;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
}
.cart-block__order #applied-promos #del_promo_code {
  width: 100%;
  text-align: left;
  color: red;
  display: block;
  padding-top: 10px;
  background: none;
  transition: opacity 0.5s;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.1428571429;
}
.cart-block__order #applied-promos #del_promo_code:hover {
  opacity: 0.5;
  transition: opacity 0.5s;
}
.cart-block__order .coupon {
  display: flex;
}
.cart-block__order .coupon .field {
  width: 70%;
  margin-right: 15px;
  margin-bottom: inherit;
}
.cart-block__order .coupon .field input {
  color: black;
}
.cart-block__order .coupon .btn {
  width: 30%;
  max-height: 51px;
  margin-top: auto;
  color: #FFFFFF;
  background: #F18B71;
  transition: opacity 0.5s, color 0.5s;
}
.cart-block__order .coupon .btn:hover {
  opacity: 0.5;
  color: #35393E;
  transition: opacity 0.5s, color 0.5s;
}
.cart-block__order .coupon input {
  background: #FFFFFF;
}
.cart-block__order .hidden-btn {
  display: none;
}
.cart-block__order .coupon-error {
  color: #F18B71;
  margin-bottom: 10px;
  padding-top: 15px;
  text-align: center;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.3125;
}
.cart-block__order .btn-wr {
  max-width: 100%;
  height: 51px;
  margin-top: 30px;
}
.cart-block__order .btn-wr .btn {
  width: 100%;
}

#checkout-form .title {
  display: block;
  padding-bottom: 15px;
  color: #FFFFFF;
  font-weight: bold;
  font-family: "Red Hat Display", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.3125;
}
#checkout-form .field-shipping_method .info {
  display: flex;
  flex-direction: column;
  margin-left: 36px;
}
#checkout-form .field-shipping_method .info .note {
  display: block;
  color: #FFFFFF;
  padding-bottom: 2px;
  padding-top: 7px;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.3571428571;
}
#checkout-form .field-shipping_method .info .time {
  color: #FFFFFF;
  opacity: 0.5;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.3333333333;
}
#checkout-form .field-shipping_method .price {
  margin-left: auto;
  color: #FFFFFF;
  font-weight: bold;
  font-family: "Red Hat Display", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.3125;
}
#checkout-form .field-shipping_method label {
  display: flex;
  align-items: center;
}
#checkout-form .field-shipping_method label:before {
  left: 0;
  top: 7px;
}
#checkout-form .field-shipping_method label:after {
  left: 4px;
  top: 11px;
}
#checkout-form .field-shipping_method li:last-of-type label {
  border-bottom: none;
}
#checkout-form .field-billing_method label {
  border-bottom: none;
  padding: 8px 0;
}
#checkout-form .field-billing_method label span {
  margin-left: 30px;
}
#checkout-form .field-billing_method label:before {
  left: 0;
  top: 9px;
}
#checkout-form .field-billing_method label:after {
  left: 4px;
  top: 13px;
}
#checkout-form .field-expiration, #checkout-form .field-security_code {
  width: 50%;
  display: inline-block;
}
#checkout-form .field-expiration {
  padding-right: 20px;
}
#checkout-form .cart-block__form-button-wrapper {
  max-width: 335px;
  margin: 40px auto 0 auto;
}
#checkout-form .cart-block__form-button-wrapper .btn {
  width: 100%;
}

.checkout-block__list {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid white;
  margin: -8px 0;
  padding-top: 15px;
}
.checkout-block__item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 8px 0;
  box-sizing: border-box;
  width: 100%;
}
.checkout-block__item-info {
  display: flex;
  flex-direction: column;
}
.checkout-block__item-name {
  display: block;
  color: #FFFFFF;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.3571428571;
}
.checkout-block__item-count {
  color: #FFFFFF;
  opacity: 0.5;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.3571428571;
}
.checkout-block__item-price {
  color: #FFFFFF;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.3571428571;
}

.wrapper-checkout-list .wrapper-part {
  display: flex;
  flex-direction: column;
  padding: 15px 0;
  border-bottom: 1px solid white;
}
.wrapper-checkout-list .wrapper-part .title {
  color: #FFFFFF;
  font-weight: bold;
  font-family: "Red Hat Display", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.3333333333;
}
@media all and (max-width: 767px) {
  .wrapper-checkout-list .wrapper-part .title {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.3125;
  }
}
.wrapper-checkout-list .wrapper-part .total {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  font-family: "Red Hat Display", sans-serif;
}
.wrapper-checkout-list .wrapper-part .total p {
  font-weight: bold;
  font-family: "Red Hat Display", sans-serif;
}
.wrapper-checkout-list .wrapper-part div {
  display: flex;
  color: #FFFFFF;
  justify-content: space-between;
  padding-bottom: 10px;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.3125;
}
@media all and (max-width: 767px) {
  .wrapper-checkout-list .wrapper-part div {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.3571428571;
  }
}
.wrapper-checkout-list .wrapper-part div:last-of-type {
  padding-bottom: 10px;
}
.wrapper-checkout-list .wrapper-part div p {
  font-weight: 500;
}
.wrapper-checkout-list .wrapper-part.total {
  border-bottom: none;
}

.empty-cart-page {
  padding-top: 170px;
  padding-bottom: 300px;
}
@media all and (max-width: 767px) {
  .empty-cart-page {
    padding-top: 90px;
    padding-bottom: 200px;
  }
}
.empty-cart-page .title-h1 {
  padding-bottom: 0;
  text-align: center;
  position: relative;
  font-size: 160px;
  font-size: 10rem;
  line-height: 1.1;
  font-weight: normal;
  font-family: "Cookie", cursive;
}
@media all and (min-width: 768px) and (max-width: 1023px) {
  .empty-cart-page .title-h1 {
    font-size: 80px;
    font-size: 5rem;
    line-height: 1.125;
  }
}
@media all and (max-width: 767px) {
  .empty-cart-page .title-h1 {
    font-size: 55px;
    font-size: 3.4375rem;
    line-height: 1.0909090909;
  }
}
.empty-cart-page .title-h1:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 152px;
  height: 203px;
  left: 50%;
  transform: translate(-50%, 0);
  top: -180px;
  z-index: 1;
  background: url("/static/img/empty.png") no-repeat;
  background-size: contain;
}
@media all and (min-width: 768px) and (max-width: 1023px) {
  .empty-cart-page .title-h1:before {
    width: 100px;
    height: 150px;
    top: -130px;
  }
}
@media all and (max-width: 767px) {
  .empty-cart-page .title-h1:before {
    width: 50px;
    height: 100px;
    top: -80px;
  }
}
.empty-cart-page .description {
  max-width: 680px;
  margin: 0 auto;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  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) {
  .empty-cart-page .description {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.3571428571;
  }
}
.empty-cart-page .description p, .empty-cart-page .description a {
  display: inline-block;
}
.empty-cart-page .description a {
  color: #A057FD;
  transition: color 0.5s;
}
.empty-cart-page .description a:hover {
  color: #FFF845;
  transition: color 0.5s;
}

