.basket-empty{
    width: 100%;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.075) !important;
    color: #3d464d;
    padding: 20px;
    margin-bottom: 15px;
    margin-top: 15px;
}
.basket-empty-icon {
    width: 120px;
    height: 120px;
    background: #f9f9f9 50% no-repeat;
    margin-bottom: 10px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 auto;
}
.basket-empty-icon img{
    max-height: 60%;
    max-width: 60%;
}
.basket-empty-title{
    font-weight: 500;
    font-size: 1rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.basket-checkout {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.075) !important;
    position: relative;
}
.basket-checkout, .basket-checkout__body {
    background-color: #fff;
}
.basket-checkout__group {
    background: #fff;
    padding: 12px;
}
.basket-checkout__group:first-of-type {
    border-radius: 15px;
}
.basket-checkout__to-shipping-sticky {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 66px;
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
    background-color: #fff;
    -webkit-box-shadow: 0 -3px 4px 0 rgba(0,0,0,.06);
    box-shadow: 0 -3px 4px 0 rgba(0,0,0,.06);
    border-color: #e0e0e2;
    border-style: solid;
    border-width: 1px 0;
    padding: 10px 12px;
    z-index: 1;
}
.basket-checkout__group-divider {
    margin: 0 -12px;
    background-color: #f5f7fa;
    height: 8px;
}
.basket-checkout__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    padding: 6px 24px 12px 0;
    margin: 0 12px;
}
.basket-checkout__items {
    padding: 0;
    list-style: none;
}
.basket-checkout__optional-shipment {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-top: 1px solid #eaeaea;
    font-size: 0.897rem;
    font-size: 1rem;
    line-height: 1.571;
    padding: 16px 4px 24px;
}
.basket-checkout__item {
    border-top: 1px solid #eaeaea;
}
.basket-checkout__item:first-child {
    border-top: none;
}
.basket-checkout__item:first-child .basket__cart-item{
    padding-top: 0;
}
.basket-checkout__item:last-child .basket__cart-item{
    padding-bottom: 0;
}
.sticky-top {
    top: 160px;
    transition: .3s ease-out all;
    -webkit-transition: .3s ease-out all;
}

.downscrolling .sticky-top{
    top: 98px;
}
.upscrolling .sticky-top{
    top: 148px;
}
.basket__cart-item {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; 
    padding: 15px;
}
.basket__cart-item__thumb {
    width: auto;
    min-width: 80px;
}
.basket__cart-item__data {
    width: 80%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 0 12px 0 4px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.basket__cart-item__thumb-img {
    width: 100%;
    display: block;
    min-height: 80px;
    text-align: center;
    position: relative;
}
.basket__cart-item__thumb-img img {
    overflow: visible;
    min-height: 80px;
    min-width: 80px;
    overflow: hidden;
    max-width: 100%;
    max-height: 80px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 6px;
}
.basket__cart-item__thumb-img img[alt]:after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    font-weight: 400;
    color: transparent;
    text-align: center;
    content: attr(alt);
    background: #fff url(../../images/no-images/general.png) no-repeat 50%;
    background-size: contain;
    width: 100%;
}
.basket__cart-item__title {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.375;
    color: #3f3f3f;
    text-align: right;
    margin-bottom: 10px;
    margin-top: 3px;
    width: 100%;
    font-weight: 500;
}
.basket__cart-item__product-data {
    color: #9da0a5;
    font-size: 12px;
    font-size: .857rem;
    line-height: 1.833;
    width: 100%;
    text-align: right;
    padding-right: 0;
    position: relative;
    margin-bottom: 4px;
    font-weight: 500;
}
.basket__cart-item__discount,
.basket__cart-item__discount .currency{
    text-align: left;
    font-size: 10px;
    font-size: .714rem;
    line-height: 10px;
    color: #ef394e;
}
.basket__cart-item__price-row {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
}
.basket__cart-item__discount span {
    font-size: 0.897rem;
    font-size: 1rem;
    line-height: 1.571;
}
.basket__cart-item__quantity-row, .basket__cart-item__sfl-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.c-quantity-selector {
    width: 100px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: 1px solid #eee;
    border-radius: 15px;
    color: #0fabc6;
    font-size: 0.987rem;
    font-size: 1.071rem;
    line-height: 1.467;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}
.basket__cart-item__remove {
    font-size: 12px;
    font-size: .857rem;
    line-height: 1.833;
    color: #777;
    padding: 0 40px 0 20px;
    position: relative;
    cursor: pointer;
    margin-right: 20px;
    font-weight: 400;
    border: 1px solid #eee;
    border-radius: 15px;
    background: #f9f9f9;
}
.basket__cart-item__remove i {
    display: inline-block;
    line-height: 1;
    vertical-align: middle;
    font-size: 16px;
    margin-left: 5px;
    position: absolute;
    right: 4px;
    right: 12px;
    top: calc(50% - 9px);
    opacity: 0.6;
}
.c-quantity-selector button {
    border: none;
    margin: 0;
    padding: 0;
    color: #0fabc6;
    background-color: #fff;
    cursor: pointer;
    width: 33%;
    text-align: center;
    height: 100%;
    border-radius: 15px;
}
.c-quantity-selector button i{
    margin-top: 5px;
}
.c-quantity-selector__number {
    width: 33%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    font-size: 0.987rem;
    font-size: 1.071rem;
    line-height: 15px;
}
.basket__cart-item__product-price {
    text-align: left;
    color: #000;
    font-size: 17px;
    font-size: 1.214rem;
    line-height: 1.294;
}
.basket__cart-item__product-price .currency {
    font-size: 10px;
    font-size: .714rem;
    line-height: 2.2;
}

.input-number__add,
.input-number__sub {
    position: relative;
    height: 100%;
    width: 31px;
    top: 0;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.input-number__add {
    right: 1px;
}

.input-number__sub {
    left: 1px;
}

.input-number__add:after,
.input-number__add:before,
.input-number__sub:after,
.input-number__sub:before {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background: currentColor;
}

.input-number__add:after,
.input-number__add:before,
.input-number__sub:after,
.input-number__sub:before {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background: currentColor;
}

.input-number__add:before,
.input-number__sub:before {
    width: 12px;
    height: 2px;
}

.input-number__add:after,
.input-number__add:before,
.input-number__sub:after,
.input-number__sub:before {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background: currentColor;
}

.input-number__add:after {
    width: 2px;
    height: 12px;
}
.mobile-basket-checkout {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.075) !important;
    position: relative;
    padding: 15px;
    margin-bottom: 10px;
}
.mobile-basket-checkout__group:first-of-type {
    -webkit-border-top-left-radius: 5px;
    border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    border-top-right-radius: 5px;
}
.mobile-basket-checkout__list {
    padding: 0;
    list-style: none;
}
.mobile-cart-item:not(:last-of-type) {
    margin-bottom: 16px;
    border-bottom: 1px solid #eee;
}
.mobile-cart-item__container {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.mobile-cart-item__thumb {
    width: 28%;
    min-width: 104px;
}
.mobile-cart-item__data {
    width: 72%;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 0 16px 12px 4px;
}
.mobile-cart-item__thumb-img {
    width: 100%;
    display: block;
    /*min-height: 100px;*/
    text-align: center;
}
.mobile-cart-item__thumb-img img {
    max-width: 100%;
    max-height: 140px;
    position: relative;
    overflow: hidden;
    /*overflow: visible;*/
    min-height: 100px;
    min-width: 100px;
    margin: 0;
    border-radius: 6px;
}
.mobile-cart-item__thumb-img img[alt]:after {
    min-width: 100px!important;
    min-height: 100px!important;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 101%;
    height: 101%;
    font-weight: 400;
    color: transparent;
    text-align: center;
    content: attr(alt);
    min-height: 60px;
    min-width: 128px;
    background-color: #fff;
    background: #fff url(../../images/no-images/general.png) no-repeat 50%;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
}
.mobile-cart-item__data {
    width: 72%;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 0 16px 12px 4px;
}
.mobile-cart-item__title {
    font-size: 0.897rem;
    font-size: 0.897rem;
    line-height: 1.571;
    color: #2a2a2a;
    text-align: right;
    margin: 6px 0;
    width: 100%;
    font-weight: 500;
}
.mobile-cart-item__product-data {
    color: #777;
    font-size: 11px;
    font-size: .786rem;
    line-height: 20px;
    width: 100%;
    text-align: right;
    padding-right: 0;
    position: relative;
    margin-bottom: 4px;
}
.mobile-cart-item__container {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.mobile-cart-item__thumb {
    width: 28%;
    min-width: 104px;
}
.mobile-cart-item__data {
    width: 72%;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 0 16px 12px 4px;
}
.mobile-quantity-selector {
    width: 100%;
    height: 44px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    border: 1px solid #eee;
    -webkit-border-radius: 15px;
    border-radius: 15px;
    color: #0fabc6;
    font-size: 0.987rem;
    font-size: 1.071rem;
    line-height: 1.467;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 4px;
}
.mobile-cart-item__discount {
    width: 100%;
    text-align: right;
    font-size: 10px;
    font-size: .714rem;
    line-height: 10px;
    color: #ef394e;
}

/*SIDEBAR*/
.basket-checkout-bill {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.075) !important;
    position: relative;
    line-height: 22px;
}
.basket-checkout-bill__summary {
    list-style: none;
    padding: 14px 16px 8px;
    -webkit-padding-start: 16px !important;
}
.basket-checkout-bill__sum-price {
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid #eee;
    font-weight: 500!important;
    color: #000!important;
}
.basket-checkout-bill__delivery-progress {
    display: block!important;
    width: 100%;
}
.basket-checkout-bill__summary li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 10px 0 10px 0;
    color: #232323;
}
.basket-checkout-bill__item-title {
    font-size: 0.897rem;
    font-size: .899rem;
    line-height: 1.692;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-weight: 500;
}
.basket-checkout-bill__price {
    font-size: 0.987rem;
    font-size: 1.071rem;
    line-height: 1.467;
}
.basket-checkout-bill__price .currency {
    font-size: 10px;
    font-size: .714rem;
    line-height: 2.2;
}
.basket-checkout-bill__price--discount {
    color: #ef394e;
}
.fixed-checkout-submit {
    -webkit-border-radius: 0;
    border-radius: 0;
    position: fixed;
    bottom: 0;
    width: 100%;
    right: 0;
    z-index: 9;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-shadow: 0 -1px 2px 0 rgba(0,0,0,.08);
    box-shadow: 0 -1px 2px 0 rgba(0,0,0,.08);
    background-color: #fff;
    padding: 12px;
}
.fixed-checkout-submit__btn {
    font-weight: 400;
    border: none;
    color: #fff;
}
.fixed-checkout-submit__btn, .fixed-checkout-submit__inform-package {
    min-width: 160px;
    padding: 10px 20px;
    font-size: 0.897rem;
    font-size: 1rem;
    line-height: 24px;
    text-align: center;
}
.fixed-checkout-submit__price-info {
    text-align: left;
}
.fixed-checkout-submit__price-info-title {
    color: #777;
    font-size: 10px;
    font-size: .714rem;
    line-height: 2.2;
}
.fixed-checkout-submit__price {
    color: #000;
    font-size: 18px;
    font-size: 1.286rem;
    line-height: 1.222;
    font-weight: 500;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.fixed-checkout-submit__price .currency {
    margin-right: 4px;
    font-weight: 400;
    font-size: 12px;
    font-size: .857rem;
    line-height: 1.833;
}
.sticky-top{
    top: 100px;
}
/*SIDEBAR*/

.related-products {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.075) !important;
    margin-bottom: 0;
    margin-top: 0;
    padding: 9px 20px 11px 20px;
    max-width: 100%;
    overflow: hidden;
}

.related-products .owl-carousel .owl-nav button {
    color: #a8a8a8;
    background-color: #fff;
    width: 49px;
    height: 90px;
}

.related-products .owl-carousel .owl-nav button.owl-prev {
    right: -22px;
    -webkit-box-shadow: -1.5px 0 4px 0 rgba(0, 0, 0, .15);
    box-shadow: -1.5px 0 4px 0 rgba(0, 0, 0, .15);
    border-radius: 5px 0 0 5px;
}

.related-products .owl-carousel .owl-nav button.owl-next {
    left: -22px;
    -webkit-box-shadow: 1.5px 0 4px 0 rgba(0, 0, 0, .15);
    box-shadow: 1.5px 0 4px 0 rgba(0, 0, 0, .15);
    border-radius: 0 5px 5px 0;
}

.block-product .btn-basket {
    height: 48px;
    position: relative;
    padding-left: 40px;
    line-height: 1;
    font-weight: 400;
}
.block-product .btn-basket.btn:not(.hasIcon) i {
    left: 12px;
    right: unset;
}

/*RELATED PRODUCTS*/