.loader {
    background: rgba(255, 255, 255, 0.8) url(/img/loader.gif) center center no-repeat;
    background-size: 320px;
    width: 100%;
    height: 100vh;
    display: block;
    position: fixed;
    z-index: 10000;
    left: 0px;
    top: 0px;
}
.basket-section {
    background: #fff;
    padding-bottom: 70px;
}
.basket {
    width: 100%;
    /* border: 1px solid #000; */
    border-spacing: 0px 15px;
}
.basket thead th {
    font-size: 15px;
    text-transform: uppercase;
    color: #808080;
    padding-bottom: 15px;
}
.thn{
    text-align: left;
}

.basket-item {
    
    background: #fff;
    border-radius: 5px;
}
.basket-item>td {
    padding-top: 25px;
    padding-bottom: 15px;
    vertical-align: top;
    min-width: 150px;
    text-align: center;
    border: none;
    border-top: 1px solid #E0EAF2;
    /* border-bottom: 1px solid #E0EAF2; */
}
td.basket-item-number {
    text-align-last: left;
    min-width: auto;
    padding: 15px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    border-left: 1px solid #E0EAF2;
    padding-top: 25px;
}
td.basket-item-last {
    min-width: auto;
    padding: 15px;
    padding-top: 25px;
}
.basket-product-info {
    display: flex;
}

.basket-product-img {
    display: block;
    width: 80px;
}

.basket-product-img img{
    display: block;
    max-width: 100%;
    width: 100%;
}
.basket-product-content {
    padding-left: 20px;
}

.basket-product-name {
    font-size: 18px;
    text-decoration: none;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    display: block;
}
.basket-product-name:hover {
    color: #1b34f3;
}
.basket-product-name:hover {
    text-decoration: underline;
}

.basket-product-remove {
    border: none;
    background: none;
    border-radius: 4px;
    font-size: 16px;
    line-height: 14px;
    color: #333;
    text-align: center;
    width: 35px;
    cursor: pointer;
}

.basket-product-quantity-plus,
.basket-product-quantity-minus {
    border: none;
    background: none;
    border-radius: 4px;
    font-size: 16px;
    line-height: 14px;
    color: #333;
    text-align: center;
    width: 35px;
    height: 35px;
    cursor: pointer;
}
.basket-product-quantity-input {
    border: none;
    height: 35px;
    max-width: 40px;
    text-align: center;
}
.basket-product-price {
    font-size: 18px;
    color: #333;
    font-weight: 600;
}
.basket-product-summ {
    font-size: 18px;
    color: #333;
    font-weight: 600;
}

.basket-product-prop {
    color: #8e8c8c;
    text-align: left;
    margin-bottom: 4px;   
}

.basket-summ {
    font-size: 24px;
    font-weight: 600;
}

.basket-button {
    border: none;
    display: inline-flex;
    height: 60px;
    padding: 0px 35px;
    overflow: hidden;
    background: #1B34F3;
    border-radius: 5px;
    color: #fff;
    font-size: 18px;
    line-height: 22px;
    margin-top: 0px;
    cursor: pointer;
    text-decoration: none;
    align-items: center;
    justify-content: center;
}

.basket-order-wrapper {
    display: flex;
    justify-content: flex-end;
}

.basket-bottom {
    align-items: center;
}

.basket-error {
    font-size: 18px;
    color: #E6005C;
}
.mobile-bi-title{
    display: none;
}

@media (max-width: 768px) {
    .basket thead{
        display: none;
    }
    .basket-item td.td-content {
        display: block;
        width: 100%;
    }
    .basket-item>td {
        display: inline-block;
        border-top: none;
        text-align: left;
        width: 33%;
        min-width: unset;
    }
    .basket-item {
        border-bottom: 1px solid #E0EAF2;
        display: flex;
        flex-wrap: wrap;
        position: relative;
    }
    .mobile-bi-title{
        display: block;
        color: #333333;
        font-size: 18px;
        font-weight: 600;
        text-align: left;
        margin-bottom: 10px;
    }
    .basket-product-price,
    .basket-product-quantity,
    .basket-product-summ {
        /* padding-left: 30px; */
    }
    td.basket-item-last {
        width: 0px;
    }
    .basket-product-quantity-plus,
    .basket-product-quantity-minus {
        display: none;
    }
    .basket-summ {
        margin-bottom: 30px;
    }

    .basket-product-remove {
        position: absolute;
        top: 65px;
        right: 15px;
    }
}