.bx-sbb-empty-cart-container {
  background-color: var(--light-gray);
  padding: 32px 0 40px 0;
}

.basket-checkout-container {
  display: flex;
  align-items: flex-end;
  margin-bottom: 0px;
  padding: 20px;
  border: 1px solid var(--border);
  background-color: #fff;
  opacity: 1;
  flex-wrap: wrap;
}

.basket-checkout-container.basket-checkout-container-fixed {
  position: fixed;
  top: 0;
  z-index: 100;
}

.basket-checkout-container.basket-checkout-container-fixed-hide {
  opacity: 0;
}

/*region Coupon*/
.basket-coupon-section .form-group {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  margin-top: 5px;
  margin-bottom: 0;
}

.basket-coupon-section .form-control {
  border-color: var(--border);
  height: 50px;
  border-radius: 0;
  box-shadow: none;
  border-right: none;
  transition: .3s ease;
}

.basket-coupon-section .form-control:focus {
  border-color: var(--main_color);
}

.basket-coupon-block-field-description {
  margin-bottom: 5px;
}

.basket-coupon-block-field {
  min-width: 235px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.basket-coupon-alert {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  min-height: 0;
  width: 100%;
  font-size: 13px;
  line-height: 14px;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  align-items: center;
}

.basket-coupon-text {
  position: relative;
  display: block;
  word-break: break-word;
  line-height: 1;
  color: var(--secondary-txt);
  font-weight: 400;
}

.basket-coupon-text strong {
  text-transform: uppercase;
  font-weight: 500;
  color: var(--secondary-txt);
}

.basket-coupon-alert .close-btn {
  position: relative;
  top: unset;
  right: unset;
  background: none !important;
}

.basket-coupon-alert .close-btn:hover {
  opacity: 0.5;
}

.basket-coupon-alert .close-btn:hover:active {
  opacity: 0.3;
}


/*endregion*/

/*region Checkout*/

.basket-checkout-section-inner {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  align-items: flex-end;
}


/**/
.basket-checkout-block-total {
  font-weight: 500;
}

.basket-checkout-block-total-inner {
  display: inline-block;
  max-width: 100%;
  text-align: left;
}

.basket-checkout-block-total-title {
  font-size: 16px;
  line-height: 20px;
  margin-right: 10px;
}

.basket-checkout-block-total-description {
  border-top: 1px solid var(--border);
  margin-top: 3px;
  padding-top: 5px;
}

.basket-checkout-block-total-description span {
  color: var(--secondary-txt);
  font-size: 14px;
  font-weight: 400;
}

/**/
.basket-checkout-block-total-price {
  padding-left: 10px;
  text-align: right;
}

.basket-checkout-block-total-price-inner {
  position: relative;
  display: inline-block;
  text-align: right;
}

.basket-coupon-block-total-price-current {
  color: var(--main-txt);
  font-size: 20px;
  display: inline-block;
}

.basket-coupon-block-total-price-old {
  position: relative;
  display: inline-block;
  padding: 0 1px;
  font-weight: 400;
  color: var(--secondary-txt);
  font-size: 14px;
  line-height: 14px;
  text-decoration: line-through;
  margin-left: 6px;
}

.basket-coupon-block-total-price-difference,
.basket-coupon-block-total-price-difference span {
  max-width: 100%;
  color: var(--stocks);
  text-align: right;
  font-size: 12px;
}

.basket-coupon-block-total-price-difference {
  margin-bottom: 5px;
}

/**/
.basket-checkout-block-btn {
  margin-left: 50px;
}

.basket-checkout-section {
  margin-left: auto;
}

.basket-notification-section {
  width: 100%;
}

.basket-block-notification {
  position: relative;
  display: block;
  margin-top: 10px;
  padding: 8px 15px;
  min-width: 100%;
  width: 100%;
  border-radius: 1px;
  background-color: #edf8e0;
  color: #6a9997;
}

.basket-block-notification:after {
  position: absolute;
  top: -7px;
  right: 80px;
  width: 16px;
  height: 16px;
  background-color: #edf8e0;
  content: '';
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}

/*endregion*/

/*region Basket item list wrapper*/
.basket-items-list-wrapper,
.basket-items-list-wrapper-compact {
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

/*header*/
.basket-items-list-header {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -ms-flex-align: center;
  padding: 14px 20px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fff;
  -webkit-box-align: center;
  align-items: center;
  /*justify-content: space-between;*/
}

.basket-items-list-header.basket-items-list-header-fixed {
  position: fixed;
  top: 0;
  z-index: 99;
  margin-left: -1px;
  border: 1px solid #ddd;
}

.basket-items-list-header-title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: 300ms all ease;
  -o-text-overflow: ellipsis;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.basket-items-search-field + .basket-items-list-header-title {
  padding-left: 10px;
}

.basket-items-search-field + .basket-items-list-header-filter {
  /*padding-left: 10px;*/
  /*text-align: right;*/
  /*-webkit-box-flex: 3;*/
  /*-ms-flex: 3;*/
  /*flex: 3;*/
}

.basket-items-list-header-filter {
  margin-left: auto;
}

.basket-items-search-field .form-control {
  z-index: 1;
  border-radius: 0;
  border: 1px solid #dfdfdf;
  font-size: 14px;
  box-shadow: none;
}

.basket-items-list-header-filter-item {
  cursor: pointer;
  transition: .3s ease;
  opacity: .4;
  margin-left: 10px;
}

.basket-items-list-header-filter-item.active {
  cursor: default;
  opacity: 1 !important;
}

.basket-items-list-header-filter-item:hover {
  opacity: .7;
}

.basket-items-search-field {
  transition: 300ms all ease;
  /*-webkit-box-flex: 1;*/
  /*-ms-flex: 1;*/
  /*flex: 1;*/
}

.basket-items-search-field .input-group-addon {
  white-space: nowrap;
  -ms-flex-wrap: wrap;
}

.basket-items-search-field button.close {
  position: relative;
  bottom: -1px;
  display: inline-block;
  float: none;
  line-height: 11px;
}


/*endregion*/

.basket-items-list-container {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.basket-items-list-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  background-color: #fff;
  opacity: .7;
  -webkit-animation-name: ShowOverlay;
  animation-name: ShowOverlay;
  -webkit-animation-duration: 200ms;
  animation-duration: 200ms;
}

@-webkit-keyframes ShowOverlay {
  0% {
    opacity: 0;
  }
  100% {
    opacity: .7;
  }
}

@keyframes ShowOverlay {
  0% {
    opacity: 0;
  }
  100% {
    opacity: .7;
  }
}

.basket-items-list {
  position: relative;
  padding: 0 20px;
  background-color: #fff;
}

.basket-items-list-table {
  width: 100%;
  border-collapse: collapse;
}

.basket-items-list-item-container {
  position: relative;
}

.basket-items-list-item-container {
  border-top: 1px solid var(--border);
}

.basket-items-list-wrapper-compact .basket-items-list-item-container > td {
  padding-bottom: 15px;
}

.basket-items-list-item-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  background-color: #fff;
  opacity: .7;
}

.basket-items-list-item-container.basket-items-list-item-container-gift,
.basket-items-list-item-container.basket-items-list-item-container-gift > td,
.basket-items-list .basket-items-list-item-container:first-child {
  border-top: none !important;
}

.basket-items-list-item-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  background-color: #fff;
  opacity: .7;
}

.basket-items-list-item-descriptions {
  -ms-flex-order: 1;
  padding: 20px 20px 20px 0;
  width: 50%;
  vertical-align: top;
  -webkit-box-ordinal-group: 2;
  order: 1;
}

.basket-items-list-item-descriptions-inner {
  position: relative;
  display: flex;
  align-items: flex-start;
}


.basket-item-image-link {
  margin-right: 20px;
  border: 1px solid var(--border);
  transition: .3s ease;
}

.basket-item-image-link:hover {
  border: 1px solid var(--main_color);
}

.basket-item-block-image {
  width: 100px;
  height: 150px;
  display: flex;
  position: relative;
  margin-right: 20px;
}

.basket-items-list-wrapper-compact .basket-item-block-image {
  width: 60px;
  height: 60px;
  line-height: 60px;
  background-color: #fff;
}

.basket-item-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.basket-item-image-link .basket-item-block-image {
  margin-right: 0;
}

.basket-item-block-properties .basket-item-property {
  display: none;
}

.basket-item-block-properties .basket-item-property.fromSet {
  display: flex;
}

.basket-item-block-properties .basket-item-property.basket-item-property-scu-image,
.basket-item-block-properties .basket-item-property.basket-item-property-scu-text {
  display: flex;
}

.basket-items-list-wrapper-compact .basket-item-image {
  max-width: 95%;
  max-height: 95%;
}

.basket-item-image:hover {
  border-color: var(--main_color_hover);
}

/*endregion*/

/*region lable*/

/*Label*/
.basket-item-label-text,
.basket-item-label-ring {
  position: absolute;
  z-index: 1;
  opacity: 1;
}

.basket-items-list-wrapper-compact .basket-item-label-text,
.basket-items-list-wrapper-compact .basket-item-label-ring {
  display: none
}

/* TEXT */
.basket-item-label-text span {
  padding: 2px 5px;
  vertical-align: middle;
  font-weight: bold;
}

.basket-item-label-text.basket-item-label-small span {
  margin-bottom: 1px;
  padding: 2px 7px;
  font-weight: normal;
  font-size: 12px;
  line-height: 14px;
}

.basket-item-label-text.basket-item-label-big span {
  font-size: 12px;
  line-height: 17px;
}


.basket-item-label-ring {
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 47px;
  height: 18px;
  color: #fff;
  background: var(--stocks);
}

.basket-item-label-bottom {
  bottom: 0;
}

.basket-item-label-top {
  top: 0;
}

.basket-item-label-left {
  left: 0;
}

.basket-item-label-right {
  right: 0;
}

.basket-item-label-middle {
  top: 50%;
  transform: translateY(-50%);
}

.basket-item-label-center {
  left: 50%;
  transform: translateX(-50%);
}

.basket-item-label-center.basket-item-label-middle {
  transform: translateX(-50%) translateY(-50%);
}

/*region Info*/
.basket-item-block-info {
  -ms-flex-order: 2;
  padding: 0;
  -webkit-box-ordinal-group: 3;
  order: 2;
}


/*region Name*/
.basket-item-highlighted {
  background: #ff0;
}

.basket-items-list-wrapper-compact .basket-item-info-name {
  margin-bottom: 5px;
  text-align: left;
}

.basket-item-info-name-link {
  display: inline-block;
}

.basket-item-info-name-link span {
  text-transform: uppercase;
  display: block;
  margin-bottom: 15px;
}

/*endregion*/

.basket-item-block-common {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-order: 4;
  -ms-flex-pack: end;
  -ms-flex-align: start;
  -ms-flex: 2;
  -ms-flex-wrap: nowrap;
  -ms-flex-line-pack: baseline;
  flex-wrap: nowrap;
  -webkit-box-pack: end;
  -webkit-box-align: start;
  -webkit-box-ordinal-group: 5;
  -webkit-box-flex: 2;
  justify-content: flex-end;
  align-content: baseline;
  align-items: flex-start;
  flex: 2;
  order: 4;
}

.basket-items-list-wrapper-compact .basket-item-block-common {
  -ms-flex-pack: end;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: end;
  justify-content: flex-end;
}


/*region Properties*/
.basket-item-block-properties {
  display: flex;
  flex-direction: column;
}

.basket-item-property-custom-text {
  order: -1;
}

.basket-item-property,
.basket-item-property-custom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  padding-bottom: 6px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-line-pack: center;
  align-content: center;
}

.basket-items-list-wrapper-compact .basket-item-property,
.basket-items-list-wrapper-compact .basket-item-property-custom {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 10px;
  padding-bottom: 0;
  -ms-flex-line-pack: center;
  align-content: center;
}

.basket-item-property-name,
.basket-item-property-custom-name {
  margin-right: 12px;
  color: var(--secondary-txt);
  font-weight: 400;
}

.basket-item-property-value,
.basket-item-property-custom-value {
  color: var(--secondary-txt);
  font-weight: 400;
}

/*region Custom Column*/

.basket-item-property-custom-content {
  padding: 3px 0;
}

.basket-item-property-custom.basket-item-property-custom-photo {
  display: block;
}

.basket-item-property-custom-photo .basket-item-property-custom-value {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: start;
  -ms-flex-align: stretch;
  min-height: 64px;
  word-spacing: 0;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  align-items: stretch;
  -webkit-box-pack: start;
  justify-content: flex-start;
}

.basket-item-property-custom-photo .basket-item-property-custom-value span {
  display: inline-block;
}

.basket-item-custom-block-photo-link {
  display: block;
  margin-right: 5px;
}

.basket-item-custom-block-photo-item {
  margin-right: 3px;
  width: auto;
  height: 64px;
  border: 1px solid #e4e4e4;
  transition: 300ms all ease;
}

.basket-item-custom-block-photo-item:hover {
  border-color: #ee9200;
}


/*endregion*/

/*scu*/
.basket-items-list-wrapper-compact .basket-item-property.basket-item-property-scu-text,
.basket-items-list-wrapper-compact .basket-item-property.basket-item-property-scu-image,
.basket-items-list-wrapper-compact .basket-item-property.basket-item-scu-color {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

/* .basket-item-property.basket-item-property-scu-text,
.basket-item-property.basket-item-property-scu-image,
.basket-item-property.basket-item-scu-color { display: block; } */

.basket-item-scu-list {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 0;
  padding: 0;
  list-style: none;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.basket-item-scu-item,
.basket-item-scu-item.not-available:hover {
  position: relative;
  display: inline-block;
  margin: 3px 5px 3px 0;
  padding: 0;
  border: 1px solid #efefef;
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: .3s ease;
}

.basket-item-scu-item:hover,
.basket-item-scu-item.not-available:hover {
  border-color: #dfdfdf;
}


.basket-item-scu-item.selected {
  border-color: var(--main_color);
}

.basket-item-scu-item.selected:hover {
  cursor: default
}

.basket-item-scu-item.not-available:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  background: no-repeat center url(data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%20width%3D%2220px%22%20height%3D%2220px%22%20viewBox%3D%220%200%20100%25%20100%25%22%20version%3D%221.1%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%0A%20%20%20%20%3Cline%20x1%3D%220%22%20y1%3D%2220%22%20x2%3D%2220%22%20y2%3D%220%22%20stroke-width%3D%221%22%20stroke%3D%22%23a1a1a1%22/%3E%0A%3C/svg%3E);
  background-size: 100% 100%;
  content: '';
}

.basket-item-scu-item-inner {
  display: block;
  transition: 300ms all ease;
}

.basket-item-scu-item.not-available .basket-item-scu-item-inner {
  opacity: .5;
}

.basket-item-scu-color .basket-item-scu-item-inner,
.basket-item-property-scu-image .basket-item-scu-item-inner {
  width: 20px;
  height: 20px;
  border: 1px solid #fff;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.basket-items-list-wrapper-compact .basket-item-scu-color .basket-item-scu-item-inner,
.basket-items-list-wrapper-compact .basket-item-property-scu-image .basket-item-scu-item-inner {
  width: 16px;
  height: 16px;
  border: 1px solid #fff;
}

.basket-item-property-scu-text .basket-item-scu-item-inner {
  padding: 3px 12px;
  min-width: 30px;
  text-align: center;
  font-size: 12px;
  line-height: 1;
  font-weight: normal;
}

.basket-items-list-wrapper-compact .basket-item-property-scu-text .basket-item-scu-item-inner {
  padding: 1px 2px;
}

/*endregion*/

/*region Amount*/
.basket-items-list-item-amount {
  -ms-flex-order: 3;
  vertical-align: middle;
  -webkit-box-ordinal-group: 4;
  order: 3;
}

.basket-item-block-amount.disabled {
  opacity: 0.6;
  pointer-events: none;
}

/*region Price*/
.basket-items-list-item-price {
  -ms-flex-order: 4;
  padding: 20px 0;
  vertical-align: middle;
  -webkit-box-ordinal-group: 5;
  order: 4;
  width: 140px;
}

.basket-items-list-item-price-for-one {
  -ms-flex-order: 2;
  -webkit-box-ordinal-group: 3;
  order: 2
}

.basket-item-block-price {
  position: relative;
  text-align: right;
  white-space: nowrap;
}


.basket-items-list-item-price-for-one .basket-item-price-title, .basket-items-list-item-price-for-one .basket-item-block-price {
  text-align: left;
}

.basket-item-price-current-text {
  font-size: 20px;
  line-height: 1;
  color: var(--main-txt);
}

.basket-item-price-old-text {
  position: relative;
  display: inline-block;
  margin-bottom: 6px;
  padding: 0 1px;
  font-weight: 400;
  color: var(--secondary-txt);
  font-size: 14px;
  line-height: 14px;
  text-decoration: line-through;
}

.basket-item-price-difference, .basket-item-price-difference span {
  display: inline-block;
  max-width: 100%;
  color: var(--stocks);
  text-align: right;
  font-size: 12px;
}

.basket-item-price-difference {
  margin-top: 4px;
}

/*endregion*/

/*region Actions*/
.basket-items-list-item-remove {
  padding: 20px 0;
  vertical-align: middle;
}

.basket-item-block-actions {
  position: relative;
  opacity: 0;
  transition: 300ms opacity ease;
  text-align: right;
}

.bx-touch .basket-item-block-actions,
.basket-items-list-item-container:hover .basket-item-block-actions {
  opacity: 1;
}

.basket-item-block-actions .close-btn {
  position: relative;
  top: unset;
  right: unset;
  display: block;
  margin-left: auto;
  background: none !important;
}

.basket-item-block-actions .close-btn:hover {
  opacity: 0.5;
}

.basket-item-block-actions .close-btn:hover:active {
  opacity: 0.3;
}

.basket-items-list-wrapper-compact .basket-item-block-actions {
  position: relative;
  top: auto;
  right: auto;
  padding-left: 10px;
}

/*endregion*/

/*endregion*/

.basket-items-list-item-notification-inner {
  position: relative;
  transition: 220ms all ease;
}

/**/

.basket-items-list-item-container.basket-items-list-item-container-expend {
  display: table-row;
}

.basket-items-list-item-container-expend .basket-items-list-item-removed-container {
  position: relative;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -ms-flex-align: center;
  padding: 10px 0;
  transition: 300ms all ease;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.basket-items-list-item-container-expend .basket-items-list-item-removed-container div:first-child {
  padding-right: 15px;
}

.basket-items-list-item-removed-container strong {
  font-weight: 700;
}

@-webkit-keyframes ShowNote {
  0% {
    opacity: 0;
  }
  0%, 50% {
    background-color: #fff;
  }
  50%, 100% {
    opacity: 1;
  }
  100% {
    background-color: #e6f8fe;
  }
}

@keyframes ShowNote {
  0% {
    opacity: 0;
  }
  0%, 50% {
    background-color: #fff;
  }
  50%, 100% {
    opacity: 1;
  }
  100% {
    background-color: #e6f8fe;
  }
}


.basket-items-list-item-container-collapse .basket-item-block-info,
.basket-items-list-item-container-collapse .basket-item-block-common,
.basket-items-list-item-container-collapse .basket-item-block-image {
  opacity: 0;
}

.basket-items-list-item-container.basket-items-list-item-container-collapse > td > div {
  overflow: hidden;
  height: 80px;
  opacity: 0;
}

.basket-items-list-item-removed-block {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
}

.basket-items-list-item-removed-block .faded {
  color: #ccc;
  cursor: default;
}

.basket-items-list-item-removed-anchor {
  border-bottom: 1px dashed;
  color: #333;
  font-weight: bold;
}

.basket-items-list-item-removed-block .close-btn {
  position: relative;
  top: unset;
  right: unset;
  background: none !important;
  margin-left: 10px;
}

.basket-items-list-item-removed-block .close-btn:hover {
  opacity: 0.5;
}

.basket-items-list-item-removed-block .close-btn:hover:active {
  opacity: 0.3;
}

.basket-items-list-item-double {
  margin: 10px 0;
}

.basket-items-list-item-double > div {
  padding: 10px;
  border-radius: 0;
  border-color: var(--main_color);
  background-color: var(--secondary_color);
  color: var(--main-txt);
  font-weight: 400;
  line-height: 1.4;
}

.basket-items-list-item-double-anchor,
.basket-items-list-item-double-anchor:visited,
.basket-items-list-item-double-anchor:focus {
  border-bottom: 1px dashed var(--main-txt);
  color: var(--main-txt);
  text-decoration: none;
  font-weight: 400;
  line-height: 1.4;
  transition: .3s ease;
}

.basket-items-list-item-double-anchor:hover {
  border-bottom: 1px dashed transparent;
  opacity: .6;
}

.basket-items-list-item-warning-container {
  margin: 10px 0;
}

.basket-items-list-item-warning-container > div {
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 0;
  border: 1px solid var(--main_color);
  background-color: var(--secondary_color);
}

.basket-items-list-item-warning-container div {
  font-weight: 400;
  color: var(--main-txt);
}

.basket-items-list-wrapper-compact .basket-items-list-item-container {
  -ms-flex-align: start;
  padding: 17px 0;
  -webkit-box-align: start;
  align-items: flex-start;
}

/*region Gifts*/
.basket-item-gifts-list-container {
  position: relative;
  margin-bottom: 20px;
  border: 1px solid #fceb9f;
  background: #fffef8;
}

.basket-item-gifts-list-container:after {
  position: absolute;
  top: -10px;
  left: 90px;
  display: block;
  width: 17px;
  height: 17px;
  background-color: #fceb9f;
  content: '';
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.basket-item-gifts-list-title {
  padding: 12px 17px;
  background-color: #fceb9f;
  color: #5b5848;
}

.basket-item-gifts-list {
  padding: 15px;
}

.basket-items-list-gift-item {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  border-bottom: 1px solid #f3f2ed;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.basket-item-gifts-list .basket-items-list-gift-item:last-child {
  border-bottom: none;
}

/*region Gift image*/
.basket-item-gift-image-container {
  padding: 10px 0;
  min-width: 48px;
  max-width: 100%;
  width: 168px;
  text-align: center;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.basket-item-gift-image-link {
  display: inline-block;
}

.basket-item-gift-image {
  display: inline-block;
  max-width: 100%;
  max-height: 69px;
  width: auto;
  height: auto;
}

/*endregion*/

/*region Gift title*/
.basket-item-gift-title-container {
  padding: 5px 15px;
  width: 100%;
  -webkit-box-flex: 9;
  -ms-flex: 9;
  flex: 9;
}

.basket-item-gift-title-link {
  color: #333;
  transition: 300ms all ease;
}

/*endregion*/

/*region Gift price*/
.basket-item-gift-price-container {
  text-align: right;
  -webkit-box-flex: 2;
  -ms-flex: 2;
  flex: 2;
}

.basket-item-gift-price-current {
  color: #2f3435;
}

.basket-item-gift-price-old {
  color: #a1a1a1;
  text-decoration: line-through;
}

.basket-item-gift-price-difference {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  padding: 5px 6px 6px;
  background: #e2f0cb;
  color: #525c69;
  text-align: center;
  text-transform: uppercase;
  -webkit-box-align: center;
  align-items: center;
}


/*endregion*/
/*endregion*/

/*region Gift-container*/
.basket-gifts-list-wrapper,
.basket-gifts-list-wrapper-compact {
  margin-bottom: 15px;
  border: 1px solid #c4d6b0;
}

.basket-gifts-list-header {
  padding: 18px 25px 20px;
  border-bottom: 1px solid #c4d6b0;
  background: #f8fbf5;
  transition: 300ms all ease;
}

.basket-gifts-list {
  padding: 0 25px;
}

.basket-gifts-description-container {
  padding: 11px;
  color: #868d96;
  text-align: center;
}

.basket-gifts-list-item-container {
  position: relative;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  overflow: hidden;
  padding: 20px 0;
  border-top: 1px solid #f2f2f2;
  transition: 300ms all ease;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  align-items: center;
}

.basket-gifts-list-item-container:first-child {
  border-top: none;
}

.basket-gift-block-image {
  padding: 5px 15px 5px 0;
  min-width: 50px;
  max-width: 50px;
}

.basket-gift-image-link {
  display: inline-block;
}

.basket-gift-image {
  display: inline-block;
  max-width: 100%;
  max-height: 168px;
  width: auto;
  height: auto;
  transition: 300ms all ease;
}

.basket-gift-block-info {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1
}

.basket-gift-info-name,
.basket-gift-info-name-link {
  margin: 0;
  padding: 0;
  color: #2f3435;
  text-decoration: none;
  transition: 300ms all ease;
}

.basket-gift-info-name-link:hover {
  text-decoration: underline;
  cursor: pointer;
}

.basket-gift-block-common {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-line-pack: center;
  align-content: center;
}

.basket-gift-item-select-btn-container {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  align-items: center;
}

.basket-gift-item-selected {
  padding: 0 10px;
  color: #b6bbbf;
}

.basket-gift-item-select-btn-label {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  margin-bottom: 0;
  -webkit-box-align: center;
  align-items: center;
}

.basket-gift-item-select-input {
  display: none;
}

.basket-gift-item-select-btn-radio {
  position: relative;
  display: inline-block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-right: 10px;
  width: 20px;
  height: 20px;
  border: 10px solid #fff;
  border-radius: 50%;
  background: #468ee5;
  -webkit-box-shadow: 0 0 0 1px #828b95;
  box-shadow: 0 0 0 1px #828b95;
  cursor: pointer;
  transition: 190ms all ease;
}

.basket-gift-item-select-input:checked + .basket-gift-item-select-btn-radio {
  border-width: 5px;
}

.basket-gift-item-select-btn-text {
  text-transform: lowercase;
  cursor: pointer;
}

.basket-gift-item-select-btn-checkbox {
  position: relative;
  display: inline-block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-right: 10px;
  width: 19px;
  height: 19px;
  border: 1px solid #828b95;
  border-radius: 2px;
  background-color: #fff;
  cursor: pointer;
}

.basket-gift-item-select-btn-checkbox:after,
.basket-gift-item-select-btn-checkbox:before {
  position: absolute;
  background-color: #fff;
  content: '';
  opacity: 0;
  transition: 190ms all ease;
}

.basket-gift-item-select-btn-checkbox:after {
  top: 5px;
  left: 5px;
  z-index: 15;
  width: 3px;
  height: 9px;
  border-radius: 1px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.basket-gift-item-select-btn-checkbox:before {
  top: -1px;
  left: 11px;
  z-index: 10;
  width: 5px;
  height: 17px;
  border: 1px solid #fff;
  border-radius: 2px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.basket-gift-item-select-input:checked + .basket-gift-item-select-btn-checkbox:after,
.basket-gift-item-select-input:checked + .basket-gift-item-select-btn-checkbox:before {
  background-color: #468ee5;
  opacity: 1;
}

.bx-step-opacity {
  transition: 500ms opacity ease;
}

/*endregion*/

/*region not found*/
.basket-search-not-found {
  padding: 40px 20px;
}

.basket-search-not-found-icon {
  margin: 0 auto 30px;
  width: 160px;
  height: 160px;
  background: no-repeat center url(data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%22182px%22%20height%3D%22182px%22%20viewBox%3D%220%200%20182%20182%22%20version%3D%221.1%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%3E%0A%20%20%20%20%3Cg%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill-rule%3D%22evenodd%22%20opacity%3D%220.2%22%20fill%3D%22%23A7ABB0%22%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M17%2C70.5%20C17%2C40.9473747%2040.9473747%2C17%2070.5%2C17%20C100.052625%2C17%20124%2C40.9473747%20124%2C70.5%20C124%2C100.052625%20100.052625%2C124%2070.5%2C124%20C40.9473747%2C124%2017%2C100.052625%2017%2C70.5%20M178.408149%2C160.192955%20L129.280894%2C111.056302%20C129.216524%2C111.017683%20129.152154%2C110.991937%20129.100658%2C110.953317%20C136.979557%2C99.5348706%20141.614204%2C85.7220257%20141.614204%2C70.8020936%20C141.614204%2C31.6935917%20109.905496%2C0%2070.8071019%2C0%20C31.7087076%2C0%200%2C31.6935917%200%2C70.8020936%20C0%2C109.910596%2031.7087076%2C141.604187%2070.8071019%2C141.604187%20C85.7152154%2C141.604187%2099.5419113%2C136.969868%20110.948292%2C129.091526%20C110.999788%2C129.143019%20111.012662%2C129.220257%20111.064158%2C129.27175%20L160.204287%2C178.408403%20C164.993422%2C183.197199%20172.846573%2C183.197199%20177.635708%2C178.408403%20L178.408149%2C177.623143%20C183.197284%2C172.834347%20183.197284%2C164.981751%20178.408149%2C160.192955%22/%3E%0A%20%20%20%20%3C/g%3E%0A%3C/svg%3E);
  background-size: cover;
}

.basket-search-not-found-text {
  color: var(--secondary-txt);
  font-weight: 400;
  text-align: center;
}

/*endregion*/
.from-basket-to-catalog {
  margin: 0 auto;
}

.bx-sbb-empty-cart-image {
  width: 56px;
  height: 56px;
  margin: 0 auto;
  background: url("data:image/svg+xml,%3Csvg width='59' height='59' viewBox='0 0 59 59' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M36 27C36 29.1217 35.1571 31.1566 33.6569 32.6569C32.1566 34.1571 30.1217 35 28 35C25.8783 35 23.8434 34.1571 22.3431 32.6569C20.8429 31.1566 20 29.1217 20 27M10.206 19.068H45.794M10.8 17.934C10.2807 18.6264 10 19.4685 10 20.334V47C10 48.0609 10.4214 49.0783 11.1716 49.8284C11.9217 50.5786 12.9391 51 14 51H42C43.0609 51 44.0783 50.5786 44.8284 49.8284C45.5786 49.0783 46 48.0609 46 47V20.334C46 19.4685 45.7193 18.6264 45.2 17.934L41.2 12.6C40.8274 12.1032 40.3443 11.7 39.7889 11.4223C39.2334 11.1446 38.621 11 38 11H18C17.379 11 16.7666 11.1446 16.2111 11.4223C15.6557 11.7 15.1726 12.1032 14.8 12.6L10.8 17.934Z' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Crect x='34.5' y='1.5' width='23' height='23' rx='11.5' fill='%23DFE0E6'/%3E%3Crect x='34.5' y='1.5' width='23' height='23' rx='11.5' stroke='%23F5F5F5' stroke-width='3'/%3E%3Cpath d='M45.89 16.62C45.3167 16.62 44.8033 16.48 44.35 16.2C43.8967 15.9133 43.54 15.5 43.28 14.96C43.02 14.42 42.89 13.7667 42.89 13C42.89 12.2333 43.02 11.58 43.28 11.04C43.54 10.5 43.8967 10.09 44.35 9.81C44.8033 9.52333 45.3167 9.38 45.89 9.38C46.47 9.38 46.9833 9.52333 47.43 9.81C47.8833 10.09 48.24 10.5 48.5 11.04C48.76 11.58 48.89 12.2333 48.89 13C48.89 13.7667 48.76 14.42 48.5 14.96C48.24 15.5 47.8833 15.9133 47.43 16.2C46.9833 16.48 46.47 16.62 45.89 16.62ZM45.89 15.25C46.1633 15.25 46.4 15.1733 46.6 15.02C46.8067 14.8667 46.9667 14.6233 47.08 14.29C47.2 13.9567 47.26 13.5267 47.26 13C47.26 12.4733 47.2 12.0433 47.08 11.71C46.9667 11.3767 46.8067 11.1333 46.6 10.98C46.4 10.8267 46.1633 10.75 45.89 10.75C45.6233 10.75 45.3867 10.8267 45.18 10.98C44.98 11.1333 44.82 11.3767 44.7 11.71C44.5867 12.0433 44.53 12.4733 44.53 13C44.53 13.5267 44.5867 13.9567 44.7 14.29C44.82 14.6233 44.98 14.8667 45.18 15.02C45.3867 15.1733 45.6233 15.25 45.89 15.25Z' fill='%23222222'/%3E%3C/svg%3E%0A") no-repeat center;
  background-size: contain;
}

.bx-sbb-empty-cart-text {
  /*font-size: 24px;*/
  /*text-align: center;*/
  /*font-weight: 400;*/
  /*margin-bottom: 40px;*/
}

.bx-sbb-empty-cart-desc {
  text-align: center;
  color: #000;
  font-size: 16px;
}

.bx-sbb-empty-cart-desc .btn-green-gradient {
  padding: 12px 25px;
}

.basket-item-info-name:before {
  content: none;
}

.basket-item-info-name:after {
  content: none;
}

.basket-item-property-custom.basket-item-property-custom-text.hidden-xs {
  flex-direction: row !important;
}

.basket-coupon-block-coupon-btn.btn_fill {
  width: 150px;
  flex-shrink: 0;
}

.btn_checkout_custom {
  position: relative;
}

.bx-soa-wrapper .main-user-consent-request-announce:before {
  color: #000;
}

.basket-coupon-alert .close-link.fa.fa-times {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  cursor: pointer;
  top: 1px;
}

.basket-coupon-alert .close-link.fa.fa-times:after,
.basket-coupon-alert .close-link.fa.fa-times:before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 14px;
  background: #000;
  content: '';
  opacity: 0.4;
  transition: 300ms background-color ease;
}

.basket-coupon-alert .close-link.fa.fa-times:before {
  content: '' !important;
  -webkit-transform: translate3d(-50%, -50%, 0) rotate(-45deg);
  transform: translate3d(-50%, -50%, 0) rotate(-45deg);
}

.basket-coupon-alert .close-link.fa.fa-times:after {
  -webkit-transform: translate3d(-50%, -50%, 0) rotate(45deg);
  transform: translate3d(-50%, -50%, 0) rotate(45deg);
}

.basket-coupon-alert .close-link.fa.fa-times:hover:after,
.basket-coupon-alert .close-link.fa.fa-times:hover:before {
  background-color: #000;
  opacity: 0.6;
}

.basket-coupon-section {
  width: 42%;
}

.basket-items-search-field input {
  width: 100%;
  height: 40px;
  padding: 0 40px 0 15px;
  border: 1px solid var(--border);
}

.basket-items-search-field input:focus {
  border: 1px solid var(--main_color);
}

.basket-items-search-field .close-btn {
  top: 3px;
  right: 2px;
  background: none !important;
}

.basket-items-search-field .close-btn:hover {
  opacity: 0.5;
}

.basket-items-search-field .close-btn:hover:active {
  opacity: 0.3;
}

.title_box {
  position: relative;
}

.basket_top_btn {
  /*position: absolute;*/
  /*top: 0;*/
  /*right: 0;*/
}

.alert-dismissable .close, .alert-dismissible .close {
  right: -7px;
  top: -9px;
  transition: .3s ease;
}

.basket_top_title.basket_top_title h1 {
  margin-bottom: 0;
}

label[for="basket-all-selector"] {
  cursor: pointer;
}

@media (max-width: 1350px) {
  .basket-checkout-block-btn {
    margin-left: 40px;
  }
}

@media (max-width: 992px) {
  .basket-items-list-item-price {
    width: auto;
  }

  .basket-coupon-section {
    width: 100%;
  }

  .basket-coupon-block-field {
    padding: 0;
    margin-bottom: 15px;
  }

  .basket-items-list-table tbody {
    display: flex;
    flex-direction: column;
  }

  .basket-items-list-item-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: flex-end;
    align-items: center;
  }

  .basket-items-list-item-descriptions {
    width: 100%;
  }

  .basket-items-list-item-remove {
    position: absolute;
    top: -15px;
    right: -5px;
  }

  .basket-items-list-item-price-for-one {
    margin-right: 20px;
  }

  .basket-items-list-item-amount {
    margin-right: auto;
  }

  .basket-coupon-alert:last-child {
    margin-bottom: 20px;
  }

  .basket-checkout-section {
    margin-left: 0;
  }

  .basket-checkout-block-btn {
    margin-left: auto;
  }

  .basket_top_btn {
    /*position: static;*/
    /*margin-bottom: 20px;*/
  }

  .basket-items-list-item-amount {
    padding: 10px 0;
  }
}

@media (max-width: 578px) {
  .basket-items-list-header {
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .basket-items-list-header-filter {
    /*padding-left: 0 !important;*/
    /*padding-bottom: 10px;*/
    margin-left: 0;
  }

  .basket-items-list-header-filter-item {
    margin-left: 0;
    margin-right: 10px;
  }

  .basket-items-search-field {
    width: 100%;
  }

  .basket-checkout-block-btn {
    width: 100%;
    margin-top: 15px;
    margin-left: 0;
  }

  .basket-checkout-block .basket-btn-checkout {
    width: 100%;
  }
}

@media (max-width: 470px) {
  .basket-items-list-item-descriptions-inner {
    flex-direction: column;
  }

  .basket-item-block-info {
    margin-top: 15px;
  }

  .basket-items-list-item-price {
    padding: 10px 0;
  }

  .basket-item-price-current-text {
    font-size: 16px;
  }

  /*.basket-items-list {*/
  /*  padding: 0 10px;*/
  /*}*/
  .basket-checkout-container {
    padding: 20px 10px;
  }

  .basket-items-list-header {
    padding: 14px 10px;
  }

  .title_box {
    flex-wrap: wrap;
  }

  .basket_top_title, .basket_top_btn {
    /*width: 100%;*/
  }
}

@media (max-width: 400px) {
  .basket_top_btn {
    /*display: flex;*/
    /*justify-content: center;*/
  }
}

.bx-basket--mobile .checker {
  width: 16px;
  height: 16px;
}

.bx-basket--mobile .basket-items-list-header {
  padding: 16px;
}

.bx-basket--mobile .basket-items-list {
  padding: 16px;
}

.bx-basket--mobile .basket-items-list-wrapper {
  border-bottom: 1px solid var(--border);
}

.bx-basket--mobile .basket-items-list-item-container {
  border: 0;
}

.bx-basket--mobile .basket-items-list-item-container + .basket-items-list-item-container {
  margin-top: 16px;
}

.bx-basket--mobile .basket-items-list-item-descriptions-inner {
  display: block;
}

.bx-basket--mobile .basket-item-block-image {
  width: auto;
  height: auto;
  display: block;
  margin-right: 0;
  position: relative;
}

.bx-basket--mobile .basket-item-image {
  aspect-ratio: 80 / 96;
  width: 100%;
  height: auto;
  display: block;
}

.bx-basket--mobile .basket-item-image-link {
  margin-right: 0;
  border: 0;
}

.bx-basket--mobile .basket-item-block-image .checker {
  position: absolute;
  left: 3px;
  top: 3px;
  border: 1px solid var(--secondary_color);
  box-sizing: content-box;
}

.bx-basket--mobile .basket-item-info-name-link span {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  text-transform: none;
  margin-bottom: 0;
}

.bx-basket--mobile .basket-item-property,
.bx-basket--mobile .basket-item-property-custom {
  padding-bottom: 0;
  margin-top: 7px;
}

.bx-basket--mobile .product-item-quantity-block {
  margin: 0;
  border-radius: 4px;
  padding: 4px;
  width: auto;
  height: auto;
}

.bx-basket--mobile .product-item-amount-field-btn-minus,
.bx-basket--mobile .product-item-amount-field-btn-plus {
  position: static;
  width: 16px;
}

.bx-basket--mobile .basket-item-scu-item {
  padding: 0;
}

.bx-basket--mobile .basket-item-property-scu-text .basket-item-scu-item-inner {
  padding: 3px 5px;
}

.bx-basket--mobile .basket-item-scu-item, .bx-basket--mobile .basket-item-scu-item.not-available:hover {
  margin: 0;
}

.bx-basket--mobile .basket-item-block-properties .basket-item-property.basket-item-property-scu-image,
.bx-basket--mobile .basket-item-block-properties .basket-item-property.basket-item-property-scu-text {
  display: block;
}

.bx-basket--mobile .basket-items-list-item-price {
  padding: 0;
  margin-top: 7px;
}

.bx-basket--mobile .basket-item-price-current-text {
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
}

.bx-basket--mobile .basket-total-block {
  margin-top: 20px;
}

.bx-basket--mobile .basket-checkout-container {
  display: block;
  padding: 0;
  border: 0;
}

.bx-basket--mobile .basket-checkout-block-total-box {
  padding: 16px;
  border-radius: 4px;
  background-color: var(--light-gray);
  border: 0;
}

.bx-basket--mobile .basket-checkout-block-total-description {
  padding: 0;
  margin: 0;
  border: 0;
}

.bx-basket--mobile .basket-checkout-block-total-description span {
  font-size: 14px;
  line-height: 1;
  color: var(--main_color);
}
.bx-basket--mobile .basket-item-actions-remove {
  top: 8px;
  right: 8px;
}

 .basket-checkout-block-total-description .points {
  border-bottom: 1px dashed var(--gray-50);
  margin-bottom: 7px;
}


