
/*cart container*/

.cart-container {
    display: flex;
    flex-direction: column-reverse;
}


/*Before Items*/

.page-title-wrapper {
    margin-top: 20px;

}

.header-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    border-bottom: 1px solid #d1d1d1;
    padding: 5px;
    margin-bottom: 20px;

}

.item-name {
    font-weight: bold;
}

.item-count {
    opacity: 50%;
}


/*Items*/

.cart.item {
    margin-bottom: 20px;
    border-bottom: 1px solid #d1d1d1;
    padding: 10px 0px;
}

.item-info {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.additional-item-infos-wrapper {
    display: flex;
    flex-direction: column;
    width:100%;
}

.item-actions {
    margin-left: auto;
}

.action-edit {
    display: none !important;
}

.cart.table-wrapper .actions-toolbar > .action {
    background: unset;
    margin-bottom: 0px;
    padding: 0px;
}

.cart.table-wrapper .actions-toolbar > .action:hover {
    background: unset;
}

.product-item-details-wrapper {
    display: flex;
    margin-bottom: 5px;
}

.item-name a {
    font-weight: bold;
}

.item-delivery-wrapper {
    display: flex;
    flex-direction: row;
}

.product-info-wrapper {
    font-size: 0.85em;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.delivery-status.in-stock {
    color: green;
}

.delivery-status.out-of-stock {
    color: red;
}

@media only screen and (max-width:479px) {
    .item-detailed-infos-wrapper {
        align-items: flex-start;
    }
    .item-actions {
        display: block !important;
    }
}
@media only screen and (min-width:480px) {
    .item-data-group {
        display: flex;
        gap: 10px;
        flex: 1;
        justify-content: space-between;
    }
    .price-info-wrapper {
        text-align: right;
    }
    .item-detailed-infos-wrapper {
        align-items: flex-end;
    }
    .product-item-details-wrapper {
        align-items: center;
    }
}

.item-sku-wrapper {
    display: flex;
    gap: 5px;
}

.item-delivery-wrapper {
    gap: 5px;
}


.item-detailed-infos-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 15px;
}

.qty-wrapper {
    display:flex;
    flex-direction: row;
    align-items: baseline;
}

.qty-label {
    font-weight: bold;
}

.cart.table-wrapper .col.qty[data-th]:before {
    content: none !important;
}

.qty-input {
    padding:0px !important;
    margin-left:15px;
}

.refresh-button {
    font-size: 11px;
    height: 20px;
    line-height: 20px;
    padding: 0 6px 0 7px;
    background-color: #ebd16a;
    color: #000;
    margin-left: 15px;
    border-radius: 10px;

}

.refresh-button:hover{
    background-color: rgba(245, 201, 65, 0.958);
    color: #333;
}

.price-info-wrapper {
    font-size: 0.85em;
}

.subtotal-price {
    font-weight: bold;
    font-size: 1.4em;
}

.price-including-tax {
    margin-right: 0;
}

.normal-price .price {
    color: #070605;
    font-size: inherit;
}


.end-price {
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 2px;
}
.end-price.special-price {
    color: #f23b3b;
}

.you-save {
    color: green;
}

.subtotal-wrapper {margin-top: 5px;}

.price-wrapper > div {
    display: inline-block;
}

.subtotal-wrapper > div {
    display: inline-block;
}

.cart-summary,
.header-wrapper {
    background: #f3f3f3 !important;
    border: none !important;
}


/*Select Menu*/

select.input-text.qty.select {
    text-align: center;
}

/*advanced-infos*/
#advanced-infos-wrapper{
    display:flex;
    flex-direction: column;
    margin: 40px 0px;
}

.ow-box {
    min-height: 20px;
    min-width: 100px;
    border: 1px solid #ccc;
    border-radius: 2px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.payment-infos-wrapper .ow-boxes, .delivery-infos-wrapper .ow-boxes {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    flex-basis: 100%;
    gap: 10px;
}

.info-title {
    flex:1 0 100%;
    font-weight: bold;
    margin-bottom: 10px;
}

.delivery-infos-wrapper {
    margin-top:40px;
}



.delivery-infos-wrapper .ow-box {
    border:none;
}

.payment-container {
    min-height: 22px;
    width: 100px;
    font-weight: lighter;
    text-align: center;
    font-size: 14px;
}



/*disable summary cart features*/

#block-shipping {
    display: none;
}


/*Media Queries*/

@media only screen and (min-width:768px) {

    .cart-container {
        display: unset;
        flex-direction: unset;
    }

    .item-info {
        flex-wrap: unset;
    }

    .product-item-details-wrapper {
        flex-direction: row;
    }

    /*advanced-infos*/

    #advanced-infos-wrapper{
        display:flex;
        flex-direction: row;
        margin: 40px 0px;
    }

    .delivery-infos-wrapper {
        margin-left:50px;
        margin-top:unset;
    }

    .checkout-cart-index .cart.item .item-info .col.item {
        min-width: 180px;
        padding-top: 0px;
    }
}

.cart-summary > .title {
    margin-bottom: 15px;
}

.fieldset.coupon {
    display: flex;
    gap: 8px;
}

form#discount-coupon-form {
    margin-top: 10px;
}
form#discount-coupon-form label {
    display: none;
}

div#block-discount {
    margin-bottom: 20px;
}

div#block-discount .title {
    cursor: pointer;
}
div#block-discount .title:after {
    float: right;
    font-family: 'FontAwesome';
    font-size: 15px;
    content: '\f107';
}

div#block-discount.active .title:after {
    content: '\f106';
}

div#block-discount .button-as-link, .button-as-link.action {
    background: #004a75;
    color: white;
    padding: 14px 8px;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1;
}

.cart .item-actions .actions-toolbar {
    column-gap: 10px;
}

.cart.item .actions-toolbar > .gift-options-cart-item {
    margin: 0;
}

tr.totals-tax {
    display: none;
}

a.action.action-delete:before {
    content: '\f00d';
    font-family: 'Font Awesome 5 Free';
    font-size: 18px;
    font-weight: 900;
}

a.action.action-delete {
    width: 12px;
    height: 20px;
    overflow: hidden;
	position: relative;
    right: -8px;
}
.item-availability {
    margin-bottom: 5px;
}

.availability-status:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    color: white;
    font-size: 11px;
    font-weight: 900;
    background: green;
    border-radius: 50%;
    width: 14px;
    display: inline-block;
    box-sizing: border-box;
    height: 14px;
    text-align: center;
    vertical-align: text-top;
}