.cart-block .cart-items {
    display: block;
}
.cart-block .cart-items .item {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    margin-bottom: 10px;
    position: relative;
}
.cart-block .cart-items .item .picture {
    width: 20%;
    padding: 5px;
    text-align: center;
}
.cart-block .cart-items .item .picture img {
    max-width: 95%;
}
.cart-block .cart-items .item .description {
    width: 70%;
    padding: 5px;
    border-left: 2px solid #fff;
    border-right: 2px solid #fff;
    font-size: 15px;
}
.cart-block .cart-items .item .description .price {
    color: var(--bs-primary);
}
.cart-block .cart-items .item .remove-item {
    padding:5px;
}
.cart-block .cart-item-amount {
    display: flex;
    flex-wrap: nowrap;
    padding: 20px 0;
    margin-right: 10px;
}
.cart-block .cart-item-amount .count-minus {
    width: 35px;
    text-align: left;
    background-color: var(--bs-light);
    padding: 5px 0;
    border-radius: 50px 0 0 50px;
    text-align: center;
    cursor: pointer;
}
.cart-block .cart-item-amount .count-minus:hover {
    background-color: var(--bs-secondary);
    color: #fff;
}
.cart-block .cart-item-amount .count-plus {
    width: 35px;
    text-align: right;
    background-color: var(--bs-light);
    padding: 5px 0;
    border-radius: 0 50px 50px 0;
    text-align: center;
    cursor: pointer;
}
.cart-block .cart-item-amount .count-plus:hover {
    background-color: var(--bs-secondary);
    color: #fff;
}
.cart-block .cart-item-amount .count-input {
    width: 35px;
    padding: 5px 0;
}
.cart-block .cart-item-amount .count-input input {
    width: 95%;
    text-align: center;
    border: none;
    margin: 0 1px;
    padding: 0;
}
.cart-block .cart-item-amount .count-input input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.cart-block .cart-item-amount .count-input input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.cart-block .cart-items .qty-counter {
    top: 5px;
    left: 5px;
}
.cart-block .cart-items .old-price {
    text-decoration: line-through;
    color: #bdbdbd;
    font-size: 0.9rem;
    padding-top: 5px;
}
.cart-block .total-block {
    padding: 40px 0;
}
.cart-block .total-block .line {
    display: flex;
    flex-wrap: nowrap;
    padding: 8px 0;
}
.cart-block .total-block .line .name {
    padding: 8px 20px 5px 10px;
    font-weight: 700;
    width: 50%;
    border-radius: 0.25rem;
    text-align: left;
    background: #f4f4f4;
}
.cart-block .total-block .line .item {
    width: 50%;
    padding: 8px 10px;
}