﻿/* @extend */
.toggle-basket {
  position: relative;
  cursor: pointer;
  color: #fff;
  background-color: #0bd69c;
  box-shadow: 0 20px 40px 5px rgba(0, 232, 191, 0.36);
}
.toggle-basket:before {
  content: "";
  display: block;
  position: absolute;
  width: 40px;
  height: 32px;
  right: 0;
  top: 0;
}
.toggle-basket span {
  display: inline-block !important;
}
.toggle-basket .js__basket__total-count {
  position: absolute;
  width: 20px;
  height: 20px;
  line-height: 20px;
  left: 5px;
  top: -5px;
  margin-right: 10px;
  text-align: center;
  border-radius: 50%;
  background-color: #f05646;
}
@media (max-width: 1119px) {
  .toggle-basket .js__basket__total-count {
    left: -15px;
    top: 5px;
  }
}
.toggle-basket.active + div {
  visibility: visible;
  opacity: 1;
}
@media (min-width: 1200px) {
  .toggle-basket.active + div {
    visibility: initial;
    transform: translateX(0);
    opacity: 1;
  }
}
.toggle-basket.active + div li {
  position: relative;
}
@media (max-width: 1199px) {
  .toggle-basket.active i svg path {
    fill: #0BD69C;
  }
}
.toggle-basket.sticky {
  position: fixed;
  top: 3px;
  margin: 0;
  z-index: 1000;
}
.toggle-basket:hover {
  box-shadow: 0 30px 40px 20px rgba(0, 232, 191, 0.36);
}
@media (max-width: 1119px) {
  .toggle-basket.neon-btn {
    min-width: initial;
    max-height: initial;
    padding: 0;
    background-color: transparent;
    border-radius: initial;
    box-shadow: none;
  }
  .toggle-basket.neon-btn::before {
    content: none;
  }
  .toggle-basket.neon-btn:hover {
    box-shadow: none;
    transform: none;
  }
  .toggle-basket.neon-btn i svg {
    width: 18px;
    height: auto;
  }
  .toggle-basket.neon-btn i svg path {
    fill: #969696;
    transition: fill 400ms;
  }
  .toggle-basket.neon-btn i::after {
    display: none;
  }
  .toggle-basket.neon-btn .basket__text {
    display: none;
  }
}

.basket-preview {
  visibility: hidden;
  position: fixed;
  width: 100%;
  height: calc(100vh - 88px);
  top: 88px;
  left: 0;
  padding: 10px 28px;
  background: rgba(255, 255, 255, 0.81);
  -webkit-backdrop-filter: blur(34.5px);
  backdrop-filter: blur(34.5px);
  font-size: 13px;
  font-weight: 100;
  transition: visibility 0.4s, opacity 0.4s, transform 0.5s;
  opacity: 0;
  z-index: 998;
  isolation: isolate;
}
@media (min-width: 1200px) {
  .basket-preview {
    visibility: initial;
    width: 33.33333333%;
    height: 290px;
    bottom: -290px;
    left: 20px;
    padding: 10px;
    background-color: #fff;
    backdrop-filter: initial;
    border: 2px solid #fff;
    border-radius: 4px;
    transform: translateX(-1000px);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
  }
}
.basket-preview .basket-preview__top-cn {
  display: none;
  justify-content: space-between;
  align-items: end;
  padding: 2vh 0 3vh;
}
.basket-preview .basket-preview__top-cn .basket-preview__dash, .basket-preview .basket-preview__top-cn .basket-preview__close-preview-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 54px;
  height: 54px;
  background-color: #fff;
  border-radius: 50%;
}
.basket-preview .basket-preview__top-cn .basket-preview__dash {
  flex-direction: column;
  row-gap: 3px;
}
.basket-preview .basket-preview__top-cn .basket-preview__dash .dash-dot {
  display: block;
  width: 3px;
  height: 3px;
  background-color: #969696;
  border-radius: 50%;
}
.basket-preview .basket-preview__top-cn .basket-preview__top-cn-title {
  position: relative;
  padding: 15px 0;
  font-size: 15px;
  font-weight: bold;
  color: #000;
}
.basket-preview .basket-preview__top-cn .basket-preview__top-cn-title::before {
  content: "";
  display: block;
  position: absolute;
  width: 120px;
  height: 3px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 3px;
  background: #0BD69C;
  box-shadow: 0px 6px 18px 0px #0BD69C;
}
.basket-preview .basket-preview__middle-cn .basket-preview__header .row {
  margin: 0 0 5px 0;
  background-color: #0bd69c;
  line-height: 30px;
  box-shadow: 0 1px 1px rgba(0, 232, 191, 0.36);
  border-radius: 2px;
  color: #fff;
}
.basket-preview .basket-preview__middle-cn .basket-preview__body i.fa-plus, .basket-preview .basket-preview__middle-cn .basket-preview__body i.fa-minus {
  background-color: #3f3f3f;
  color: #eee;
  display: block;
  height: 100%;
  padding: 0 6px;
  cursor: pointer;
}
.basket-preview .basket-preview__middle-cn .basket-preview__body i.fa-plus:before, .basket-preview .basket-preview__middle-cn .basket-preview__body i.fa-minus:before {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}
.basket-preview .basket-preview__middle-cn .basket-preview__body i.btn-delete {
  cursor: pointer;
  font-size: 20px;
  position: relative;
  top: 2px;
  color: black;
}
.basket-preview .basket-preview__middle-cn .basket-preview__body i.btn-delete:hover {
  color: #d52527;
}
.basket-preview .basket-preview__middle-cn .basket-preview__body input {
  width: 29px;
  line-height: 28px;
  text-align: center;
  border: 0 none;
  background-color: #dfdfdf;
  color: black;
  height: 100%;
}
.basket-preview .basket-preview__middle-cn .basket-preview__body .price {
  color: #d52527;
}
.basket-preview .basket-preview__middle-cn .basket-preview__checkout-btn {
  border: 2px solid #f05646;
  background-color: #f05646;
  bottom: 10px;
  color: #fff;
  line-height: 30px;
  position: absolute;
  right: 10px;
  text-align: center;
  padding: 0 10px;
  z-index: 10;
  border-radius: 4px;
  text-decoration: none;
}
@media (max-width: 1199px) {
  .basket-preview .basket-preview__middle-cn .basket-preview__checkout-btn {
    min-width: 100px;
    right: initial;
    left: 10px;
  }
}
.basket-preview .basket-preview__middle-cn .basket-empty-preview {
  display: none;
}
.basket-preview .basket-preview__middle-cn .basket-preview__report {
  position: absolute;
  right: 10px;
  bottom: 17px;
  color: #000;
  font-size: 15px;
  font-weight: bold;
}
@media (min-width: 1200px) {
  .basket-preview .basket-preview__middle-cn .basket-preview__report {
    right: initial;
    left: 20px;
  }
}
.basket-preview .basket-preview__middle-cn .row {
  margin: 0 0 5px 0;
  background-color: #fff;
  line-height: 30px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  border-radius: 2px;
  color: white;
}
.basket-preview .basket-preview__bottom-cn {
  display: none;
  justify-content: center;
  align-items: center;
  column-gap: 30px;
}
.basket-preview .basket-preview__bottom-cn .basket-consult-btn {
  color: #fff;
  background-color: #f05646;
  box-shadow: 0 15px 40px 5px #f59489;
  text-decoration: none;
}
.basket-preview .basket-preview__bottom-cn .basket-consult-btn:hover {
  box-shadow: 0 30px 50px 10px #f9bfb9;
}
.basket-preview .basket-preview__bottom-cn .basket-store-btn {
  color: #fff;
  background-color: #0bd69c;
  -webkit-box-shadow: 0 20px 40px 5px rgba(0, 232, 191, 0.36);
  box-shadow: 0 20px 40px 5px rgba(0, 232, 191, 0.36);
  text-decoration: none;
  border: none;
  cursor: pointer;
}
.basket-preview .basket-preview__bottom-cn .basket-store-btn:hover {
  color: #fff;
  box-shadow: 0 30px 40px 20px rgba(0, 232, 191, 0.36);
  transform: translateY(-5px);
}
.basket-preview ul {
  list-style: none;
}
.basket-preview #basket-preview {
  height: 175px;
}
@media (max-width: 1199px) {
  .basket-preview #basket-preview {
    position: relative;
    height: 300px;
    padding-bottom: 60px;
    overflow: auto;
  }
}
.basket-preview #basket-preview > span {
  background-color: #e0dddd;
  height: 32px;
  line-height: 30px;
  border-radius: 2px;
  display: block;
}
.basket-preview #basket-preview .row {
  background-color: #fff;
  height: auto;
  line-height: 23px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.basket-preview #basket-preview .row div:first-child {
  padding: 0px;
}
.basket-preview #basket-preview .row .basket__pre-order-price {
  color: #777;
  font-family: tahoma;
  font-size: 10px;
}
.basket-preview #basket-preview .row .basket__custom-products {
  color: #555;
  font-size: 11px;
  font-family: Tahoma;
  display: block;
}
.basket-preview #basket-preview .row > div {
  padding-right: 12px;
  padding-left: 12px;
  font-weight: 400;
  white-space: nowrap;
}
.basket-preview #basket-preview .row > div:nth-child(1) > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.basket-preview #basket-preview .row > div:nth-child(1) > div:nth-child(1) {
  flex-basis: 80px;
  margin-right: 2px;
  height: 26px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-top: 4px;
}
@media (min-width: 1200px) {
  .basket-preview #basket-preview .row > div {
    font-size: 12px;
  }
}
.basket-preview #basket-preview .row > div:nth-child(2) > div {
  line-height: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.basket-preview #basket-preview .row a {
  color: #111;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
}
.basket-preview #basket-preview .row a:hover, .basket-preview #basket-preview .row a:focus {
  text-decoration: none;
  color: #fd990f;
}

body.basket__empty .basket-preview__checkout-btn {
  display: none;
}

@media (max-width: 1199px) {
  .basket-preview .basket-preview__top-cn, .basket-preview .basket-preview__bottom-cn {
    display: flex;
  }
  .basket-preview .basket-preview__middle-cn {
    position: relative;
    margin-bottom: 30px;
    background-color: #fff;
    border-radius: 18px;
    box-shadow: 0px 24px 69px 0px rgba(0, 0, 0, 0.09);
  }
  body.basket__empty .basket-preview .basket-preview__middle-cn {
    padding: 6vh 3vh 6vh;
  }
  body.basket__empty .basket-preview .basket-preview__middle-cn .basket-preview__header, body.basket__empty .basket-preview .basket-preview__middle-cn .basket-preview__body {
    display: none;
  }
  body.basket__empty .basket-preview .basket-preview__middle-cn .basket-empty-preview {
    display: block;
  }
  body.basket__empty .basket-preview .basket-preview__middle-cn .basket-empty-preview .basket-empty-preview__images {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 6vh;
  }
  body.basket__empty .basket-preview .basket-preview__middle-cn .basket-empty-preview .basket-empty-preview__images .images__cloud-behind {
    position: absolute;
    aspect-ratio: 96/56;
    max-height: 6vh;
    top: 50%;
    left: 10px;
    transform: translateY(-70%);
    z-index: 1;
  }
  body.basket__empty .basket-preview .basket-preview__middle-cn .basket-empty-preview .basket-empty-preview__images .images__cloud-front {
    position: absolute;
    aspect-ratio: 102/60;
    max-height: 6vh;
    top: 0;
    right: 0;
    z-index: 3;
  }
  body.basket__empty .basket-preview .basket-preview__middle-cn .basket-empty-preview .basket-empty-preview__images .images__shopping-bag {
    position: relative;
    aspect-ratio: 276/250;
    max-height: 26vh;
    z-index: 2;
  }
  body.basket__empty .basket-preview .basket-preview__middle-cn .basket-empty-preview .basket-empty-preview__notifs .notif-1 {
    color: #000;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
  }
  body.basket__empty .basket-preview .basket-preview__middle-cn .basket-empty-preview .basket-empty-preview__notifs .notif-2 {
    color: #696969;
    font-size: 12px;
    font-weight: 400;
    text-align: center;
  }
}
.basket {
  width: 100%;
  font-size: 12px;
  line-height: 30px;
  font-weight: 100;
  background-color: #fff;
  padding: 10px 35px;
  border-radius: 6px;
}
@media (max-width: 767px) {
  .basket .basket__header,
  .basket .basket__body,
  .basket .basket-wrap__empty {
    padding: 0;
  }
}
.basket .basket__header {
  border-bottom: 1px solid #787A87;
}
@media (max-width: 767px) {
  .basket .basket__header {
    display: none;
  }
}
.basket .basket__header [class*=col-] {
  font-size: 94%;
  white-space: nowrap;
  height: 30px;
  line-height: 30px;
  color: #787A87;
}
.basket .basket__custom-products {
  color: #A8A8A8;
  text-align: right;
}
.basket .basket__custom-products span {
  display: inline-block;
}
.basket .basket__custom-products span:nth-child(2n+1) {
  padding-left: 4px;
}
.basket .basket__custom-products i {
  font-size: 14px !important;
}
.basket .basket__pre-order-price {
  color: #777;
}
.basket .basket__body__has-child > div,
.basket .basket__body__has-child > a {
  line-height: 22px;
  width: 100%;
}
.basket .basket__body__has-child > a {
  display: block;
  color: #111;
}
.basket .basket__body__has-child.basket__body__price span {
  color: #858585;
  font-size: 11px;
  margin-right: 2px;
}
@media (min-width: 768px) {
  .basket [class*=col-] {
    border-left: 0 none;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .basket [class*=col-].body__title, .basket [class*=col-].h__title {
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .basket .basket__body .row {
    border: 1px solid #ddd;
    margin: 10px;
    padding: 0;
    position: relative;
    background-color: #fff;
  }
}
.basket .basket__body > span {
  border: 1px dashed #ccc;
  height: 32px;
  line-height: 30px;
  border-radius: 2px;
  display: block;
  margin-top: 15px;
  color: #f90;
}
@media (max-width: 767px) {
  .basket .basket__body .basket__item > div.row > div {
    margin: 1px 0;
    padding-right: 0;
    background-color: #f9f9f9;
    height: auto;
    line-height: 30px;
  }
  .basket .basket__body .basket__item > div.row > div:before {
    background-color: #f0f0f0;
    content: attr(data-title);
    float: right;
    height: 30px;
    margin-left: 10px;
    text-indent: 6px;
    width: 80px;
  }
  .basket .basket__body .basket__item > div.row > div img {
    max-width: 160px;
    margin: auto;
  }
  .basket .basket__body .basket__item > div.row > div:nth-child(1) {
    line-height: 0;
  }
  .basket .basket__body .basket__item > div.row > div:nth-child(1):before {
    content: "";
    float: none;
    width: 0;
    border: 0 none;
  }
  .basket .basket__body .basket__item > div.row > div:nth-child(5) {
    padding-left: 15px;
  }
  .basket .basket__body .basket__item > div.row > div input {
    width: 50px;
    height: 30px;
  }
  .basket .basket__body .basket__item > div.row > div:last-of-type {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    display: none;
  }
  .basket .basket__body .basket__item > div.row > div:last-of-type:before {
    width: 44px;
    margin: 0;
    padding: 0;
    background-color: transparent;
  }
  .basket .basket__body .body__report .row {
    height: 32px;
  }
  .basket .basket__body .body__report .row > [class*=col-] {
    height: 30px;
    line-height: 30px;
  }
  .basket .basket__body .body__report .row > [class*=col-]:nth-child(2) {
    background-color: #F0F0F0;
  }
}
.basket .basket__body [class*=col-] {
  overflow: hidden;
  height: 120px;
  border-top: 0 none;
}
.basket .basket__body [class*=col-].body__img {
  margin: 10px 0;
}
.basket .basket__body [class*=col-] input {
  border: 0 none;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.1) inset;
  height: 100%;
  width: 100%;
}
.basket .basket__body [class*=col-] i {
  font-size: 22px;
}
.basket .basket__body [class*=col-] i.fa-trash {
  color: #d52527;
  cursor: pointer;
}
.basket .basket__body [class*=col-] i.fa-plus, .basket .basket__body [class*=col-] i.fa-minus {
  font-size: 10px;
  cursor: pointer;
}
.basket .basket__body .body__price {
  padding: 0;
  font-weight: bold;
}
.basket .basket__body .body__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.basket .basket__body .body__title a {
  color: #333;
  font-weight: bold;
}
.basket .basket__item {
  border-bottom: 1px solid #ECECEC;
}
@media (min-width: 768px) {
  .basket .body__report {
    padding: 15px 0;
  }
  .basket .body__report [class*=col-] {
    height: 32px;
    line-height: 18px;
    justify-content: flex-end;
    font-weight: bold;
  }
}
@media (max-width: 767px) {
  .basket .body__report > .row {
    margin-bottom: 5px;
    margin-top: 0;
  }
  .basket .body__report > .row > div {
    display: inline-block;
  }
  .basket .body__report > .row > div:nth-child(2) {
    width: 110px;
    padding: 0 10px 0 0;
  }
}
.basket .basket-wrap__empty {
  border: 1px solid #ccc;
  height: 60px;
  line-height: 60px;
  margin: 0 -15px;
}
.basket .fa-times {
  color: #d52527;
}
.basket .fa-check {
  color: #008000;
}
.basket .basket__delete-button {
  cursor: pointer;
  color: #787A87;
}
.basket .basket__action {
  display: flex;
  padding: 10px;
  border: 1px solid #cbcbcb;
  border-radius: 6px;
  align-items: center;
  width: 85%;
  font-weight: bold;
}
@media (max-width: 767px) {
  .basket .basket__action {
    display: inline-block;
    padding: 0 5px;
    width: unset;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .basket .basket__action {
    padding: 7px 5px;
    width: 100%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .basket .basket__action {
    padding: 7px 5px;
    width: 100%;
  }
}

.basket .basket__header {
  border-bottom: 1px solid #f05646;
}
.basket .basket__header [class*=col-] {
  color: #f05646;
}
.basket .basket__delete-button {
  color: #f05646;
}

body.basket__wait .js__btn-buy {
  position: relative;
  background-color: #fff !important;
  border-color: transparent !important;
  cursor: wait !important;
}
body.basket__wait .js__btn-buy:after {
  content: "" !important;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border-top: 2px solid #999;
  border-right: 2px solid transparent;
  animation: loading-spin 0.6s linear infinite;
  display: inline-block;
  position: absolute;
  bottom: 6px;
  left: 50%;
  top: 0 !important;
  margin-left: -10px;
}

.submitted-order-info .basket .basket__body > div.row > div:last-of-type {
  position: relative;
  top: auto;
  left: auto;
  margin: 0;
  padding: 0;
}
.submitted-order-info .basket .basket__body > div.row > div:last-of-type:before {
  background-color: #f0f0f0;
  margin-left: 10px;
  text-indent: 6px;
  width: 80px;
}
@media (max-width: 767px) {
  .submitted-order-info .panel-body {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  #Body .toggle-basket:after {
    display: none;
  }
}
.basket-preview .basket-preview__body .basket__extra-title {
  display: block;
  font-family: tahoma;
  font-size: 0.86em;
  color: #555;
}

@media (max-width: 767px) {
  .basket__custom-products {
    margin-right: 30px;
  }
}
.basket__fetching {
  position: relative;
  background-color: #fff !important;
  border-color: transparent !important;
  cursor: wait !important;
}
.basket__fetching:after {
  content: "" !important;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border-top: 2px solid #999;
  border-right: 2px solid transparent;
  animation: loading-spin 0.6s linear infinite;
  display: inline-block;
  position: absolute;
  bottom: 6px;
  left: 50%;
  top: 0 !important;
  margin-left: -10px;
}
