@charset "utf-8";

/* Cart */
.page-cart--content {
  align-items: flex-start;
  position: relative;
  margin: calc(0px + 50 * ((100vw - 320px) / (1600 - 320))) auto 16px;
  justify-content: space-between;
  flex-wrap: nowrap;
  column-gap: 20px;
  z-index: 4;
}

.prod-cart--title {
  margin: 0 0 32px;
  flex-wrap: nowrap;
  font-size: 20px;
  font-weight: bold;
}

.prod-cart--title .icon {
  position: relative;
  margin-right: 12px;
  width: 45px;
  height: 45px;
  --fill: #252c37;
  --strok: #252c37;
}

.ordering-title {
  position: relative;
  padding: 0 6px;
  margin: 12px 0 22px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.3;
}

.cart-form {
  padding: 0 5px 15px;
  margin: 90px 0;
}

.prod-cart--head {
  margin: 0 0 26px;
  padding: 0 4px 0 6px;
}

.quant-cart {
  font-size: 14px;
  color: var(--win-text);
}

.quant-cart b {
  margin: 0 6px;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-price-dark);
}

.cart-back--btn {
  border-radius: 16px;
  display: inline-block;
  position: relative;
  padding: 2px 10px 2px 22px;
  font-size: 13px;
  color: var(--win-text);
  cursor: pointer;
  transition: 0.3s;
}

.cart-back--btn:hover {
  background: rgb(35, 42, 51);
  transform: scale(1.1);
}

.cart-back--btn svg {
  position: absolute;
  transform: rotate(90deg);
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  fill: var(--win-text);
}

.cart-prod--wrap {
  position: sticky;
  padding: 6px 8px;
  margin: 0 0 32px 0;
  min-width: 440px;
  max-width: 600px;
  flex: 0 1 600px;
  top: 96px;
  overflow: hidden;
}

.prod-cart {
  background: #2e343e;
  border-radius: var(--box-br);
  margin: 0 auto 38px;
  padding: 22px 2vw 12px;
  outline: 8px solid var(--box-cont-bg);
}

.prod-cart-line {
  align-items: center;
  background: rgba(25, 33, 43, 0.9);
  border-radius: var(--box-br);
  box-shadow: var(--box-shad);
  position: relative;
  padding: 6px;
  margin-bottom: 8px;
  flex-wrap: nowrap;
  font-size: calc(12px + 2 * ((100vw - 320px) / (1600 - 320)));
  color: var(--win-sub-title);
  transition: 0.2s;
}

.prod-cart-line:hover {
  background: rgba(19, 26, 34, 0.9);
}

.prod-cart-img {
  align-self: flex-start;
  display: inline-block;
  border-radius: 16px;
  position: relative;
  flex: 0 1 80px;
  min-width: 65px;
  line-height: 0;
  overflow: hidden;
}

.prod-cart-img img {
  width: 100%;
}

.prod-cart-name {
  display: inline-block;
  position: relative;
  padding-right: 90px;
  max-width: 340px;
  margin: 0 0 8px;
  min-height: 30px;
  font-size: 14px;
  color: var(--win-text);
  line-height: 1.2;
}

/* Stickers in cart */
.cart-str {
  position: absolute;
  right: 0;
  top: 8px;
  width: 24px;
}

/* END Stickers in cart */

.prod-cart--wish,
.prod-cart--dell {
  border-radius: 14px;
  padding: 5px 8px;
  position: absolute;
  top: 8px;
  right: 50px;
  transition: 0.2s;
  cursor: pointer;
  --fill: #d0d0d0;
}

.prod-cart--dell {
  right: 4px;
}

.prod-cart--wish svg,
.prod-cart--dell svg {
  width: 20px;
  height: 20px;
}

.prod-cart--wish:hover,
.prod-cart--dell:hover {
  background: #2b3540;
  transform: scale(1.1);
}

.prod-cart--wish:hover svg,
.prod-cart--wish.add {
  --fill: #ff3f3f;
}

.prod-cart--dell:hover .icon {
  fill: #ff476a;
}

.prod-cart-line:hover .prod-cart--dell {
  display: block;
}

.prod-cart-options {
  line-height: 1.8;
  white-space: nowrap;
}

.prod-cart-art {
  font-size: 12px;
}

.prod-cart-price span {
  font-size: 14px;
}

.prod-cart-price .old-price {
  color: #999;
  text-decoration: line-through;
  margin-right: 5px;
}

.prod-cart-info {
  flex: auto;
  padding: 0 6px 4px 12px;
}

.prod-cart-data span {
  color: var(--win-text);
  font-weight: 500;
}

.prod-nqty {
  flex: 0 0 30%;
  padding: 0 2px;
  font-size: 16px;
  text-align: center;
  white-space: nowrap;
}

.prod-nqty b {
  font-weight: 500;
  color: var(--win-title);
}

.prod-cart-data {
  align-items: center;
  flex-wrap: nowrap;
  column-gap: 8px;
}

.prod-cart small {
  margin-left: 2px;
  font-size: 14px;
}

.prod-cart-qty {
  position: relative;
  width: 110px;
  justify-content: center;
  flex-wrap: nowrap;
}

.prod-cart-minus,
.prod-cart-plus {
  background: #2d3540;
  border-radius: 12px;
  display: block;
  padding: 4px 6px;
  min-width: 34px;
  cursor: pointer;
  flex: 0 0 33%;
  text-align: center;
  font-size: 18px;
  transition: 0.3s;
  opacity: 0.6;
}

.prod-cart-plus:hover,
.prod-cart-minus:hover {
  background: #55ba4a;
  transform: scale(1.05);
  color: #fff;
  opacity: 1;
}

.prod-cart-minus:hover {
  background: #fb6363;
}

.prod-cart-summ {
  position: relative;
  padding: 0 8px;
  text-align: right;
}

.prod-cart-summ b {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-price-dark);
}

.cart-total {
  position: relative;
  padding: 4px;
  margin: 22px 0;
}

.cart-total-summ {
  flex: 8;
  font-size: 14px;
  color: var(--color-dop);
  text-align: right;
}

.cts-text {
  color: var(--win-text);
}

.cts-qtw {
  text-align: right;
  margin-left: 5px;
  color: var(--win-text);
  white-space: nowrap;
}

.cts-qtw.hide {
  opacity: .5;
  text-decoration: line-through;
}

.cts-qtw-value {
  color: var(--color-price-dark);
  font-size: 18px;
  font-weight: 500;
}

.promo-cod-label {
  background: #1a222c;
  box-shadow: var(--box-shad);
  border-radius: 16px;
  padding: 4px 12px 4px 8px;
  font-size: 13px;
  color: var(--win-sub-title);
  flex-wrap: nowrap;
  white-space: nowrap;
}

.pr-info--text {
  background: #1c6388;
  border-radius: var(--box-br);
  box-shadow: 0 0 30px -5px #000;
  position: absolute;
  padding: 10px 14px;
  font-size: 14px;
  left: -8px;
  line-height: 1.6;
  color: #e3eaee;
  cursor: pointer;
  width: 225px;
  top: -160px;
  text-align: left;
  transform: scale3D(0.5, 0.5, 1);
  transform-origin: left bottom;
  transition: transform 0.3s var(--box-trs) 0s, opacity 0.4s ease 0s;
  opacity: 0;
  z-index: 10;
}

.promo-info:hover .pr-info--text {
  opacity: 1;
  transform: scale3D(1, 1, 1);
}

.promo-info {
  position: relative;
  white-space: normal;
}

.promo-info .icon {
  position: relative;
  margin-right: 6px;
  --fill: #e3e114;
}

.promo-stic {
  top: 13px;
  right: -215px;
  width: 195px;
}

.promo-stic span {
  font-size: 12px !important;
  color: green !important;
}

.promo-stic img {
  width: 50px;
  vertical-align: middle;
}

.cart-triger {
  scroll-padding: 0 20px;
  margin: 0 -10px;
  padding: 4px;
  flex-wrap: wrap;
  gap: 10px;
}

.cart-triger--item {
  background: #e8f5fb;
  border-radius: 16px;
  min-height: 118px;
  max-width: 292px;
  padding: 12px;
  flex: 0 0 calc(50% - 5px);
  flex-flow: row nowrap;
  position: relative;
  line-height: 1.5em;
  font-size: 13px;
  transition: 0.3s;
  scroll-snap-align: center;
}

.cart-triger--item:nth-child(2) {
  background: #ebf4eb;
}

.cart-triger--item:nth-child(3) {
  background: #fff5ee;
}

.cart-triger--item:nth-child(4) {
  background: #faf1fb;
}

.cart-triger--item:hover {
  transform: translateY(-3px);
}

.cart-triger--item svg {
  position: relative;
  flex: 0 0 40px;
  margin: 0 12px 0 1px;
  width: auto;
  height: 65px;
}

.cart-triger--item .ct-title {
  margin-bottom: 4px;
  font-size: 15px;
  font-weight: 500;
}

.cart-triger--icon {
  position: relative;
  width: 60px;
  height: 60px;
  margin: 0 15px 0 0;
}

.order-paid {
  background: #e3f7dc;
  padding: 2px 10px;
}

.cart-form h3 {
  text-align: left;
  margin: 0 auto 8px;
  width: 323px;
  font-size: 11px;
  color: #bbb;
}

.cart-form h3 span {
  border-radius: 50%;
  border: 1px solid #ff5600;
  padding: 3px 7px;
  font-size: 14px;
  color: #000;
  margin-right: 3px;
}

/* Form input */
.form-step--title {
  border-radius: var(--inp-br);
  position: relative;
  padding: 14px 14px 7px 14px;
  max-width: 420px;
  margin: 10px auto 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--win-sub-title);
  transition: 0.3s;
}

.form-step--title.fst-btn {
  background: #262b33;
  padding: 14px;
  width: 100%;
  text-align: left;
  color: #97a3af;
}

.form-step--title.fst-btn.show {
  margin-bottom: 16px;
  /* display: none; */
}

.form-step--title.fst-btn:hover {
  background: rgba(19, 26, 34, 0.9);
}

.f-inp--icon {
  position: absolute;
  left: 14px;
  top: calc(50% - 11px);
  width: 22px;
  height: 22px;
  --fill: var(--win-text);
  --strok: var(--win-text);
}

.form-input--comment .f-inp--icon {
  left: 10px;
  top: 10px;
  --strok: var(--win-text);
}

.form-inp {
  background: var(--inp-bg);
  border: 1px solid #1d232c;
  box-shadow: var(--box-shad);
  display: block;
  padding: 25px 10px 15px 46px;
  width: 100%;
  font-size: 17px;
  transition: 0.3s;
  color: var(--win-text);
}

.form-inp:hover,
.form-inp:focus {
  background: var(--inp-bg-hover);
  border: 1px solid #585e6c;
  box-shadow: none;
}

.form-input--wrap .i-location {
  top: 12px;
}

textarea.form-inp {
  min-height: 61px;
  line-height: 1.4;
}

.f-confirm .form-inp,
.form-input--time.form-input--wrap.f-confirm,
.form-input--time.f-confirm {
  border: 1px solid #187b04;
}

.f-error .form-inp,
.f-error .form-input--time {
  border-color: #ff4747;
}

.baloon {
  background: #ca4747;
  box-shadow: 0 4px 8px -6px #000;
  border-radius: 12px;
  display: none;
  position: absolute;
  padding: 6px 14px 6px 34px;
  text-align: center;
  top: 12px;
  right: 6px;
  font-size: 12px;
  color: #fff;
  z-index: 8;
}

.ballon-address {
  top: auto;
  bottom: 8px;
}

.baloon:before {
  content: "";
  background: url(/icons/notice-white.svg) no-repeat 50% 50% /100%;
  position: absolute;
  top: calc(50% - 9px);
  left: 8px;
  width: 18px;
  height: 18px;
}

.order-form-wrap .baloon {
  position: absolute;
  top: 10px;
  right: 4px;
  min-width: 200px;
  padding: 9px 35px 9px 15px;
}

.form-step--title .form-step--icon {
  border-radius: 50%;
  position: absolute;
  top: calc(50% - 14px);
  right: 8px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  transform: rotate(-90deg);
  transition: 0.3s;
  fill: #eee;
}

.pulse {
  box-shadow: 0 0 0 rgba(255, 255, 255, 0.6);
  animation: pulse 2s infinite;
}

.pulse:hover {
  -webkit-animation: none;
  animation: none;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }

  70% {
    -webkit-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
  }
}

@keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }

  70% {
    -webkit-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
    box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
    box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
  }
}

.fst-btn.show .form-step--icon {
  transform: rotate(0deg);
  animation: none;
}

.must-enter:after {
  content: "*";
  position: absolute;
  top: 4px;
  left: 12px;
  height: 10px;
  font-size: 16px;
  color: #fd7777;
}

.must-enter.correct:after {
  color: #1ea203;
}

.form-dop--wrap {
  position: relative;
  transition: opacity 0.3s ease-in-out 0s, transform 0.3s ease-in-out 0s,
    max-height 0.3s ease-in-out 0s;
  transform: scale3d(1, 0, 1);
  transform-origin: top;
  margin: 0 auto;
  max-height: 0;
  max-width: 420px;
  opacity: 0;
}

.form-dop--wrap.show {
  transform: scale3d(1, 1, 1);
  max-height: 999px;
  opacity: 1;
}

.form-input-more--wrap {
  position: relative;
  gap: 8px;
}

.form-input--wrap.form-input--more {
  flex: 1 0 32%;
  margin: 0;
  padding: 1px;
  overflow: hidden;
}

.input-more {
  padding: 22px 10px 15px;
  text-align: center;
}

.form-lable {
  background: var(--inp-bg);
  border-radius: 16px;
  position: absolute;
  pointer-events: none;
  padding: 18px 6px;
  top: 2px;
  left: 4px;
  width: calc(100% - 8px);
  font-size: calc(13px + 1 * ((100vw - 320px) / (1600 - 320)));
  text-align: center;
  transition: 0.3s;
  color: var(--win-text);
  white-space: nowrap;
}

.long-l {
  pointer-events: none;
  text-align: left;
  left: 42px;
  width: calc(100% - 48px);
  z-index: 1;
}

.form-inp:hover+.form-lable {
  background: var(--inp-bg-hover);
}

.form-inp:focus+.form-lable,
.form-inp:not(:placeholder-shown)+.form-lable {
  background: inherit;
  top: 6px;
  padding: 0 4px;
  font-size: 10px;
  color: #7b8297;
}

.input-more:focus+.form-lable {
  background: inherit;
}

.form-data--cart .select2-container.select2-container--default {
  left: 42px;
  top: 24px;
}

.form-inp::-webkit-input-placeholder {
  color: #424b59;
}

.form-inp::-moz-placeholder {
  color: #424b59;
}

.form-inp:-moz-placeholder {
  color: #424b59;
}

.form-inp:-ms-input-placeholder {
  color: #424b59;
}

.form-inp::placeholder {
  color: #424b59;
}

.form-input--wrap.form-input--time {
  flex: 0 0 23%;
  background: var(--inp-bg);
  border: 1px solid #1d232c;
  border-radius: var(--inp-br);
  box-shadow: var(--box-shad);
  padding: 16px 10px;
  margin: 0;
  text-align: center;
  transition: 0.3s;
  color: var(--win-text);
  cursor: pointer;
}

.form-input--time:hover {
  background: var(--inp-bg-hover);
  border: 1px solid #585e6c;
  box-shadow: none;
}

.form-input--date {
  text-align: left;
}

/* END Form input */

/* Order send form */
.cart-order--form {
  position: relative;
  min-width: 300px;
  max-width: 600px;
  margin-bottom: 32px;
  flex: 0 1 600px;
  padding: 6px 8px;
}

.form-data {
  background: #2e343e;
  border-radius: var(--box-br);
  outline: 8px solid var(--box-cont-bg);
  padding: 15px 2vw 20px;
  margin-bottom: 40px;
}

.form-step {
  max-width: 420px;
  margin: 8px auto 32px;
  position: relative;
}

.form-options--list {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
}

.form-step--name {
  position: relative;
  flex: 1;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--win-title);
  z-index: 1;
}

.form-input--wrap {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto 10px;
}

.form-win--btn {
  border-radius: var(--inp-br);
  padding: 22px 10px 22px 50px;
  margin: 0 0 12px;
  transition: 0.3s;
}

.form-win--btn-title {
  font-size: 14px;
}

.new-address--form {
  max-width: 420px;
  margin: 0 auto;
  column-gap: calc(5px + 3 * ((100vw - 320px) / (1600 - 320)));
}

.form-step .baloon {
  position: absolute;
  top: -5px;
}

.form-step:before {
  content: "";
  border-radius: 50%;
  border: 1px solid #3e8ff7;
  position: relative;
  padding: 0px;
  width: 22px;
  height: 22px;
  margin-right: 6px;
  text-align: center;
  font-size: 16px;
  color: #f7f7f7;
}

.step-1:before {
  content: "1";
}

.step-2:before {
  content: "2";
}

.step-3:before {
  content: "3";
}

.order-comment {
  min-height: 100px;
}

/* Subscribe for mailing */
.f-box {
  padding: 4px 0;
  position: relative;
  width: 300px;
  margin: 0 auto;
}

.f-box:before {
  content: "";
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.9em;
  color: #777;
}

.form-input--wrap.form-input--comment {
  margin-top: 12px;
}

.s-cribe {
  margin: 0 auto;
  max-width: 420px;
  position: relative;
  padding: 8px 4px;
  font-size: 13px;
  transition: 0.2s;
  cursor: pointer;
  color: var(--win-text);
}

.s-cribe .icon {
  cursor: pointer;
  position: relative;
  margin-right: 6px;
  width: 26px;
  height: 26px;
  --strok: #eee;
  --inner: #2e343e;
}

.s-cribe b {
  margin-right: 8px;
  font-weight: 500;
}

.s-cribe:hover {
  color: #fff;
}

.check-1 {
  cursor: pointer;
}

#sub_sms:checked+.icon,
#sub-email:checked+.icon,
.s-cribe .icon.dann {
  --strok: #24a503;
  --inner: #24a503;
}

/* END Subscribe for mailing */

/* Order total summ */
.total-payment {
  background: #252c37;
  border-radius: var(--box-br);
  outline: 8px solid var(--box-cont-bg);
  position: relative;
  padding: 30px 15px 20px;
  margin: 0 0 35px;
  text-align: right;
  color: var(--win-text);
  line-height: 2;
  overflow: hidden;
}

.aferta {
  text-align: center;
  font-size: 13px;
  line-height: 1.4;
  margin-top: 20px;
}

.aferta a {
  cursor: pointer;
  color: #1f90f0;
}

.aferta a:hover {
  text-decoration: underline;
  color: #0576d7;
}

.form-data--info {
  position: relative;
  background: #f0f0f0;
  border-radius: 16px;
  padding: 6px 8px;
  margin: 0 0 32px;
  flex-wrap: nowrap;
}

.form-data--info-text {
  padding: 0 8px 0 6px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
}

.form-next--btn {
  flex: 1 1 auto;
  position: relative;
  padding: 12px 25px;
  max-width: 220px;
  min-width: 180px;
}

.form-next--btn svg {
  position: absolute;
  width: 22px;
  height: 22px;
  fill: #fff;
  top: calc(50% - 11px);
  transform: rotate(-90deg);
  transition: 0.3s;
  right: 12px;
}

.form-next--btn:hover svg {
  transform: rotate(0);
}

.total-payment--item {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 420px;
  padding: 5px 10px;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
}

.total-payment--item span {
  font-size: 16px;
  color: var(--color-price-dark);
}

.tp-summ {
  margin-bottom: 45px;
}

.tp-summ.total-payment--item span {
  font-size: 18px;
}

.total-payment--item small {
  margin-left: 2px;
  font-size: 14px;
  font-weight: normal;
  color: var(--win-sub-title);
}

.total-payment--item hr {
  flex: 1 0 auto;
  height: 0;
  bottom: -6px;
  position: relative;
  border: 0.5px dashed var(--color-dop);
  margin: 0 10px;
}

.order-send {
  display: block;
  margin: 0 auto;
  max-width: 420px;
  position: relative;
  padding: 15px 20px;
  width: 100%;
}

.order-send svg {
  position: absolute;
  right: 26px;
  top: calc(50% - 11px);
  transition: transform 0.3s var(--box-trs) 0s;
  width: 22px;
  height: 22px;
  --strok: #eee;
}

.order-send:hover svg {
  transform: translateX(6px);
}

/* END Order total summ */

/* Info blocks */

.or-info-inner {
  border-top: 1px solid #545a64;
  padding: 12px 0 0;
  column-gap: 6px;
  scroll-padding: 0 20px;
}

.or-info--linck {
  border-radius: 14px;
  position: relative;
  padding: 4px 12px;
  font-size: 13px;
  transition: 0.4s;
  flex: 0 0 auto;
  flex-wrap: nowrap;
  color: #88929d;
  cursor: pointer;
}

.or-info--linck:hover {
  transform: translateY(-3px);
  background: #1a222c;
  color: #939fab;
}

.or-info--linck .i-send {
  position: relative;
  left: -2px;
  margin-right: 6px;
  transition: 0.3s;
}

.or-info--linck:hover .i-send {
  fill: #2984f9;
}

.i-send--wrap {
  position: relative;
}

.i-send--info {
  background: #fbf4e7;
}

.cart-triger--text a {
  color: #1d5ffc;
}

.cart-triger--text a:hover {
  text-decoration: underline;
}

.i-send--info .phon-link {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: var(--blue);
  margin: 4px 0 0 4px;
}

.i-send--info:hover .phon-link {
  text-decoration: underline;
}

.i-send--info a svg {
  position: relative;
  transform: rotate(-90deg);
  width: 15px;
  height: 15px;
  margin-left: 2px;
  fill: var(--blue);
  top: -2px;
}

.order-form-tabs .fa-close {
  top: 11px;
  right: 12px;
}

/* END Info blocks */

/* If cart is empty */
.cart-empty {
  position: relative;
  min-height: 60vh;
  margin-bottom: 40px;
  text-align: center;
}

.cart-empty--title {
  margin: 40px 30px 10px;
  font-size: calc(0.7vw + 24px);
  font-weight: 500;
  text-align: center;
}

.cart-empty--link {
  flex-wrap: nowrap;
  align-items: center;
  max-width: 246px;
  margin: 0 auto;
  font-size: 16px;
  transition: 0.2s;
}

.cart-empty--link:hover {
  color: #2177dd;
  text-decoration: underline;
}

.cart-empty--link svg {
  position: relative;
  margin-left: 6px;
  width: 14px;
  height: 14px;
}

.cart-empty--sorch {
  position: relative;
  max-width: 450px;
  margin: 20px auto 100px;
}

/* END If cart is empty */

/* Form option win */
.delivery-method--list {
  position: relative;
  max-width: 500px;
  min-width: 300px;
}

.f-options--title {
  position: relative;
  margin: 0 0 30px;
  font-size: calc(16px + 2 * ((100vw - 320px) / (1600 - 320)));
  font-weight: 500;
  color: var(--win-title);
}

.f-options--title .f-options--title-icon {
  position: relative;
  flex: 0 0 50px;
  margin-right: 1vw;
  width: 45px;
  height: 45px;
  transform: translateX(-20px);
  transition: var(--box-show-trs);
  opacity: 0;
}

.win-modal--wrap.show .f-options--title-icon {
  transform: translateX(0);
  opacity: 1;
}

.f-options--title-text {
  flex: 1 1 200px;
}

.f-options--item {
  background: #3a414d;
  box-shadow: -1px -1px 0 0px #575d63;
  border: 1px solid #3a414d;
  border-radius: var(--box-br);
  display: flex;
  align-items: flex-start;
  flex-flow: row nowrap;
  position: relative;
  padding: 6px;
  margin: 0 auto 10px;
  max-width: 430px;
  min-height: 94px;
  cursor: pointer;
  transition: 0.3s;
}

.f-options--item:hover,
.form-options--list .f-options--item {
  background: var(--inp-bg);
  border-color: #6e737d;
  box-shadow: none;
  z-index: 2;
}

.form-options--list .f-options--item {
  border-color: #1ea203;
}

.f-options-item--icon {
  flex: 0 0 80px;
  background: #e6e6e6;
  border-radius: 14px;
  margin-right: 15px;
  padding: 4px;
  overflow: hidden;
  z-index: 1;
}

.f-options-item--icon svg {
  width: 100%;
  height: auto;
  padding: 10px;
}

.f-options-item--icon img {
  width: 100%;
  /* Black and White effect */
  filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
  /* Firefox 10+, Firefox on Android */
  filter: gray;
  /* IE6-9 */
  -webkit-filter: grayscale(1);
  /* Google Chrome, Safari 6+ & Opera 15+ */
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}

.f-options--item.select img,
.f-options--item:hover img,
.f-confirm .f-options--item img,
.form-options--list .f-options-item--icon img {
  filter: none;
  -webkit-filter: grayscale(0);
}

.f-options--item.select,
.f-options--item.select .f-info--text,
.f-confirm .f-options--item {
  border-color: #1ea203;
  background: var(--inp-bg);
}

.f-confirm:after {
  content: "";
  background: url(/icons/icon-ok.svg) 0 0/100% no-repeat;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
}

.f-confirm .f-confirm:after {
  display: none;
}

.f-options-item--info {
  flex: 1 1 auto;
  font-size: 14px;
  line-height: 1.4;
  color: #aab4c1;
}

.f-options-item--info small {
  margin-left: 1px;
}

.f-options-item--info .f-info--price {
  margin-top: 6px;
}

.f-info--title {
  margin: 8px 0 4px;
  min-height: 28px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--win-title);
}

.f-info--text {
  background: #1d232c;
  box-shadow: 0 20px 18px -4px rgba(0, 0, 0, 0.9);
  border-radius: 0 0 20px 20px;
  border: 1px solid #6e737d;
  border-top: none;
  position: absolute;
  padding: 0 10px 10px 100px;
  width: calc(100% + 2px);
  left: -1px;
  top: 75px;
  min-height: 35px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out 0s, transform 0.3s ease-in-out 0s;
  transform: scale3d(1, 0.2, 1);
  transform-origin: top;
}

.f-options--item:hover .f-info--text {
  opacity: 1;
  transform: scale3d(1, 1, 1);
}

.f-info--text-open {
  position: relative;
  margin: 0 0 6px;
}

.f-info--text-open b {
  color: var(--win-text);
  font-weight: 500;
}

.f-info-payment--title {
  font-size: 15px;
  font-weight: 500;
  color: var(--win-title);
  margin: 3px 0 8px;
}

.f-info-payment--text {
  color: #9ba2b3;
}

.f-info--price {
  padding: 0 0 10px;
}

.f-info--price b {
  font-size: 14px;
  font-weight: 500;
  color: var(--win-title);
}

/* END Form option win */

/* Arrow & Hover Animation */
.cart-arrow .icon {
  background: #eee;
  border-radius: 5px 50px 50px;
  cursor: pointer;
  position: absolute;
  top: 90px;
  left: calc(50% - 40px);
  width: 80px;
  height: 30px;
  padding: 0 8px;
  transition: 0.3s;
}

.cart-arrow:hover .icon {
  transform: translateY(4px);
}

/* Win. Addresses list */

.goto-addresses--btn,
.chanch-adddress--btn {
  border-radius: 16px;
  position: relative;
  padding: 6px 12px 6px 18px;
  font-size: 13px;
  color: #579cf5;
  fill: #2a71cc;
  cursor: pointer;
  transition: 0.3s;
  left: 12px;
  white-space: nowrap;
}

.goto-addresses--btn {
  bottom: 8px;
  max-width: 150px;
}

.goto-addresses--btn:hover,
.chanch-adddress--btn:hover {
  transform: scale(1.03);
  background: #13171c;
}

.goto-addresses--btn svg,
.chanch-adddress--btn svg {
  position: relative;
  transform: rotate(-90deg);
  left: 3px;
  width: 16px;
  height: 16px;
}

.win-address--list .ud-address--item {
  background: var(--inp-bg);
  border: var(--inp-brd);
  cursor: pointer;
  color: var(--win-text);
}

.win-address--list .ud-delivery--item:hover {
  box-shadow: 0 6px 15px -2px #181e2b;
}

.win-address--list .list-arrow:hover {
  font-size: 18px;
}

.win-address--list .left-arrow {
  background: linear-gradient(to right, rgb(43, 49, 62), transparent);
  color: #fff;
}

.win-address--list .right-arrow {
  background: linear-gradient(to left, rgb(43, 49, 62), transparent);
  color: #fff;
}

.ud-delivery--item.f-confirm:before {
  top: 10px;
  right: 10px;
}

.ud-address--item .ud-delivery--title {
  color: var(--win-title);
}

.ud-address--item .ud-delivery--sign {
  color: #518fe0;
  font-weight: normal;
}

.ud-address--item .ud-delivery--sign svg,
.ud-address--item .ud-delivery--sign svg {
  --strok: #a1adbb;
  --fill: #a1adbb;
}

.f-error .baloon {
  display: block !important;
}

.visit-time--err.baloon {
  top: 68px;
  left: 6;
  right: auto;
}

/* User discount */
.cart-discount {
  column-gap: 12px;
}

.cart-discount--price {
  border-radius: 16px;
  background-image: -webkit-linear-gradient(0deg,
      var(--yellow),
      var(--red),
      var(--pink),
      var(--purple));
  padding: 0 10px;
  color: #fff;
  font-size: 13px;
  flex: 0 1 100px;
  line-height: 1.4;
}

.cart-discount--price small,
.cart-discount--price span {
  color: #fff !important;
}

.cart-discount--descript {
  background: #41516a;
  border-radius: 0 20px;
  padding: 8px 16px;
  line-height: 1.4;
  font-size: 13px;
  font-weight: normal;
  position: absolute;
  right: 0;
  z-index: 1;
  top: -55px;
  text-align: left;
  transition: 0.5s;
}

.cart-discount--price:hover .cart-discount--descript {
  top: 0;
}

/* User discount */

@media (max-width: 920px) {
  .page-cart--content {
    flex-wrap: wrap;
    justify-content: center;
  }

  .cart-prod--wrap {
    position: relative;
    top: 0;
    margin: 0 0 30px;
    flex: 0 1 100%;
    overflow: hidden;
  }

  .ordering-title {
    padding: 0;
    margin: 0 0 28px;
    font-size: 18px;
    text-align: center;
  }

  .cart-order--form {
    flex: 0 1 100%;
    max-width: 600px;
    overflow: hidden;
  }
}

@media (max-width: 512px) {
  .form-data--info {
    justify-content: center;
    padding: 12px 0 14px;
    flex-wrap: wrap;
  }

  .form-data--info-text {
    flex: 1 0 100%;
    margin: 0 0 20px;
    padding: 0;
    text-align: center;
  }

  .or-info--linck {
    font-size: 14px;
  }

  .cart-triger {
    flex-wrap: nowrap;
  }

  .cart-triger--item {
    min-width: 285px;
  }
}

@media (max-width: 469px) {
  .promo-cod {
    margin: 0 auto 28px;
  }

  .cart-total {
    flex-wrap: wrap;
  }

  .cart-prod--wrap {
    min-width: 300px;
  }

  .cart-total {
    margin: 12px 0 6px;
  }

  .cart-total-summ {
    flex: 1 1 100%;
    margin-bottom: 12px;
  }

  .cts-qtw {
    text-align: center;
  }
}

@media (max-width: 449px) {
  .prod-cart-info {
    padding-top: 6px;
  }

  .prod-cart-data {
    align-items: center;
    flex-wrap: wrap;
  }

  .prod-cart--wish,
  .prod-cart--dell {
    top: 4px;
    right: 48px;
  }

  .prod-cart--dell {
    right: 0;
  }

  .prod-cart-qty {
    position: relative;
    width: 88px;
    top: -8px;
  }

  .prod-cart-summ {
    flex: 1 1 100%;
    margin: 6px 0 0;
    padding: 4px 8px;
  }
}

@media (max-width: 359px) {
  .page-cart--content {
    padding: 0;
  }

  .prod-cart-summ {
    background: inherit;
    padding: 0;
  }
}