.basket-data {
    text-align: center;
    margin: auto;
    display: table;
    width: 95%;
    border-collapse: collapse;
    border-spacing: 5px;
}

.basket-data .head-names {
    font-weight: bolder;
}

.basket-data .item-product {
    display: table-row;
    padding: 3px 5px;
    font-size: 18px;
    margin-bottom: 10px;
}

.basket-data .item-product div {
    display: table-cell;
    text-align: left;
    border-bottom: 2px solid #F2F2F2;
    padding: 5px 7px;
    vertical-align: middle;
}

.basket-data .item-product .image {
    width: 70px;
    padding-right: 50px;
    height: 80px;
}

.basket-data .item-product .count {
    padding-left: 10px;
}

.basket-data .item-product .image img {
    width: 100%;
    height: 100%;
    margin: auto;
    object-fit: cover;
    object-position: 0 0;
    border: 1px solid #F2F2F2;
}

.price span {
    font-size: 12px;
}

.remove {
    text-align: center;
    color: #F20009;
    font-size: 18px;
    cursor: pointer;
}

.remove i {
    padding: 7px;
    transition: 0.25s;
    border: 1px solid #F20009;
}

.remove i:hover {
    background-color: #F20009;
    color: white;
}

.order {
    padding-left: 3%;
}

.order div {
    vertical-align: middle;
    display: inline-block;
}

.order .price {
    font-size: 24px;
}

.order .price span {
    font-size: 12px;
}

.order.send-checkout a {
    border: none;
    font-weight: bolder;
    background-color: #F20009;
    color: white;
    font-size: 16px;
    padding: 5px 12px;
    cursor: pointer;
    text-decoration: none;
    text-transform: uppercase;
}

.for-mobile {
    display: none;
}

hr {
    display: none;
}

.counter input {
    width: 30px;
    display: inline-block !important;
    text-align: center !important;
}

.counter .plus, .counter .minus {
    border: none !important;
    cursor: pointer;
    display: inline-block !important;
}

@media only screen and (max-width: 768px) {
    .basket-data .item-product {
        display: block;
    }

    .basket-data .head-names {
        display: none;
    }

    .basket-data .item-product .image {
        padding-right: 15px;
    }

    .basket-data .item-product .name {
        font-size: 16px;
    }

    .basket-data .item-product > .count, .basket-data .item-product > .price, .basket-data .item-product > .remove {
        display: none;
    }

    .for-mobile {
        display: inline-flex;
        width: 100%;
        justify-content: space-between;
    }

    .for-mobile div {
        display: inline-block;
    }

    .basket-data .item-product div {
        border: none;
    }

    hr {
        width: 100%;
        display: block;
    }

}