{

}


/*BASKET*/

.basket {
    margin-top: 20px;
}

.basket__inner {
    display: flex;
    gap: 8%;
}

.your-basket {
    width: 65%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}


.basket__items {
    border-top: 1px solid var(--less-dark-color);
    border-bottom: 1px solid var(--less-dark-color);
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 11px 0;
}

.basket__item {
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid var(--less-dark-color);
    padding: 10px 0 10px 0;
    gap: 20px;
    position: relative;
}

.basket__item .img-wrapper img {
    max-width: 180px;
    height: 180px;
    object-fit: cover;
}

.basket__item:last-of-type {
    border-bottom: unset;
}

.product-name {
    font-family: var(--font-family-1);
    font-size: 18px;
}

.basket__product-price {
    margin: 5px 0 0 0;
}
.basket__product-price bdi {
    font-weight: bold;
}

.cart-count-input {
    text-align: center;
}

.cross-btn {
    margin-top: -10px;
    position: absolute;
    top: 6px;
    right: 0;
    cursor: pointer;
}


@media (max-width: 1024px) {
    .basket__inner {
        flex-wrap: wrap;
        gap: 100px 0;
    }

    .your-basket {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .basket {
        margin-top: 32px;
    }

    .your-basket {
        gap: 30px;
    }

    .basket__item-content {
        max-width: 156px;
    }

    .basket__product-price {
        margin: 27px 0 0 0;
    }

    .counter {
        margin: 20px 0 0 0;
    }

    .basket__product-name {
        font-size: 16px;
    }
}

/*BASKET_END*/

/*ORDER*/
.order {
    width: 50%;
    background-color: var(--pastel-color);
    padding: 45px;
    max-height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.order__title {
    text-align: center;
    margin-bottom: unset;

}

.order__data {
    display: flex;
    flex-direction: column;
    gap: 10px;

}

.order__data-item {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
}

.order-data__form-coupon {
    width: 100%;
}

.input__wrapper.coupon {
    display: flex;
    justify-content: space-between;
}

.woocommerce .cart-collaterals .cart_totals.order__data_type_bottom { /*WOOCOMERCE*/
    margin: 15px 0 0 0;
    gap: 20px;
    width: unset;
}

.order__data_type_bottom .order__data-item {
    font-size: 20px;
    border-bottom: 1px solid var(--less-dark-color);
}

.woocommerce ul#shipping_method li input[checked="checked"] {
    background: var(--dark-color);
    width: 4px;
    height: 4px;
    border-radius: 50%;
}
.woocommerce ul#shipping_method li label {
    cursor: pointer;
}
.woocommerce ul#shipping_method li {
    display: flex;
    align-items: center;

}
.woocommerce ul#shipping_method li label:hover {
    opacity: 0.6;
}

.order__input {
    font-size: 12px;
    padding: 0 10px 0 0;
}


.order__btn {
    margin-top: 20px;
    font-size: 14px;
    width: 100%;
}
.woocommerce .basket__item a.remove:hover {
    background-color: unset;
    opacity: 0.6;
}
.coupon-btn {
    padding: 5px;
}

@media (max-width: 1024px) {
    .order {
        width: 100%;
        padding: 14px;
        gap: 36px;
    }

    .order__title {
        font-size: 30px;
        text-align: start;
    }

    .order__data-item {
        font-size: 16px;
    }

    .order__data_type_bottom {
        margin: 0;
    }

    .order__btn {
        margin: 0;
        max-width: unset;
    }

}

/*ORDER_END*/