.h-middle .pull-right .cart-header-top {
    display: block;
    position: relative;
    color: #000;
    text-decoration: none;
    font-weight: normal;
}

.h-middle .pull-right .cart-header-top__count {
    position: absolute;
    left: 40px;
    top: 0;
    border-radius: 13px;
    background: linear-gradient(180deg, #FFD27D 0%, #FF5904 100%), #D9D9D9;
    color: #fff;
    height: 13px;
    width: 13px;
    display: flex;
    font-size: 10px;
    align-items: center;
    justify-content: center;

}

.h-middle .pull-right span.cart-header-top__title {
}

.bx-basket {
}

.basket-line-block {
    position: relative;
    padding-left: 25px;
    white-space: nowrap;
    font-size: 13px;
}

.bx-closed .bx-basket-item-list {
    display: none;
}

.bx-opener .bx-basket-item-list {
    display: block;
}

@media (max-width: 767px){
    .bx-opener .bx-basket-item-list {
        display: none;
    }
}

.bx-basket-item-list {
    position: absolute;
    width: 700px;
    max-height: 500px;
    overflow: auto;
    right: 0;
    z-index: 2;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 114px 0px rgba(0, 0, 0, 0.25);
    border-radius: 15px;
    padding: 20px;
}

.basket-item-list-h {
    font-weight: 600;
    font-size: 18px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(233, 233, 233, 1);
}
.bx-basket-item-list-item{
    border-bottom: 1px solid rgba(233, 233, 233, 1);
    display: grid;
    grid-template-columns: 70px auto 120px;
    padding: 20px 0;
    align-items: center;
    grid-column-gap: 20px;
}
.bx-basket-item-list-item-price-block{
    min-width: 100px;
}
.bx-basket-item-list-item-price-summ{
    font-size: 16px;
    font-weight: bold;
}
.bx-basket-item-total{
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
}
.bx-basket-item-total-h{
    font-weight: 400;
    font-size: 13px;
}
.bx-basket-item-total-sum{
    font-size: 16px;
    font-weight: bold;
}
.bx-basket-item-total-r{
    display: flex;
    grid-column-gap: 10px;
}
.btn-order, .btn-basket{
    color: #fff;
    border-radius: 5px;
    padding: 10px 15px;
}
.btn-order{
    background: rgba(0, 168, 223, 1);
    padding: 9px 16px !important;
    font-weight: 700 !important;
    text-decoration: none;
    transition: all 0.1s ease-in-out;
}
.btn-order:hover{
    color: #fff !important;
    opacity: 0.7;
}