.icon-box_item .bx-basket {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cartline_wrapper {
  position: absolute;
  cursor: default;
  right: -1px;
  top: 100%;
  padding-top: 10px;
  display: block;
  pointer-events: none;
  z-index: 1;
}

.header .sticky .cartline_wrapper {
  right: 65px;
}

.cartline_wrapper-wrp {
  width: 100%;
  min-width: 310px;
  max-width: 312px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
  background-color: #fff;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-600px);
  overflow: hidden;
  transition: all 0s 0.3s, opacity .3s ease;
}

.header #basket_in:hover .cartline_wrapper-wrp {
  opacity: 1;
  pointer-events: auto;
  z-index: 1000;
  transition: opacity .3s ease;
  transform: translateY(0);
}

.header #basket_in:hover .cartline_wrapper {
  pointer-events: auto;
}

.scroll_bar_main::-webkit-scrollbar {
  width: 3px;
  background-color: #fff;
}

.scroll_bar_main::-webkit-scrollbar-thumb {
  background-color: var(--main_color);
}

.cartline_wrapper .wrapper-inner {
  position: relative;
}

.cart-list-wrapper {
  overflow: hidden;
  max-height: 276px;
}

.cart-list-item {
  padding: 10px;
  position: relative;
  border-bottom: 0;
}

.cart-list-item + .cart-list-item {
  border-top: solid 1px var(--border);
}

.cart-list-item-wrapper-img {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-direction: column;
  flex-direction: column;
}

.cart-list-item-wrapper-img img {
  max-width: 100%;
  max-height: 100%;
}

.cart-list-item-img {
  margin-right: 10px;
}

.cart-list-item-name-box {
  line-height: 16px;
  transition: color .1s ease;
  display: inline-block;
  margin-right: 25px;
}

.cart-list-item-name-box .item_name {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  height: 32px;
  -webkit-box-orient: vertical;
  padding: 0;
  overflow: hidden;
  line-height: 16px;
  color: var(--main-txt);
  margin-bottom: 3px;
}

.cart-list-item-name-box .item_name:hover {
  color: var(--main_color);
}

.cart-list-item-price .price {
  font-size: 13px;
  font-weight: 500;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}


.cartline_wrapper .product_item-link {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  text-align: left;
}

.cartline_wrapper .product-item-container {
}

.cartline_wrapper .swiper-wrapper {
  padding: 0 1px;
}

.cartline_wrapper .product_item_wrapper_img {
  height: 150px;
  line-height: 150px;
}

.cartline_wrapper .product_item_wrapper_img .product_item_img-bg {
  max-width: 90%;
  max-height: 90%;
  border: none;
}

.cartline_wrapper .product_item_name_box {
  height: 34px;
  font-size: 12px;
  padding: 0;
  margin: 10px 0;
  overflow: hidden;
}

.cartline_wrapper .product_item_name_box a.item_name {
  font-size: 12px;
  color: var(--main_link_color);
  text-align: left;
}

.product_item__cart.on-basket .product-item-amount, .bx-catalog-element.on-basket .product-detail-byu-container .product-item-amount {
  display: block;
}

.basket-popup .popup-window-buttons {
  display: flex;
  justify-content: flex-end;
}

.basket-popup .popup-window-buttons span:nth-child(2) {
  margin-left: 10px;
}

.cart-list-item .close-btn {
  background: none !important;
  width: 20px;
  height: 20px;
  top: calc(50% - 10px);
  right: 10px;
}

.cart-list-item .close-btn:hover {
  opacity: 0.5;
}

.cart-list-item .close-btn:hover:active {
  opacity: 0.3;
}

.cartline_footer .btn_fill {
  width: 100%;
}

.cart-link {
  position: relative;
}