
/* -------------------------------------------- */
/*                                              */
/*                 Cart page                    */
/*                                              */
/* -------------------------------------------- */


.shopping-progress{
        max-width: 1600px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px 0;
    }
    .shopping-progress-step{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 60px;
        cursor: pointer;
        color: var(--text-color);
        text-decoration: none;
    }
	.shopping-progress-step:last-child{
		cursor: auto;
	}
    .shopping-progress-step-label {
        text-transform: capitalize;
    }
    .shopping-progress-connector {
        flex-grow: 1;
        height: 2px;
        background-color: #cecece;
    }
    .shopping-progress-step.active{
        
    }
    .shopping-progress-step.active .shopping-progress-step-icon{
        color: var(--accent-color);
    }
    .shopping-progress-step.active .shopping-progress-step-label{
        color: var(--accent-color);
        font-weight: 900;
    }
    .shopping-progress-connector.active{
        background: linear-gradient(90deg, var(--accent-color) 0%, #cecece 100%);
    }

.cart-page .woocommerce-notices-wrapper{
    margin-top: 20px;
    padding:0 var(--default-padding);
}
.cart-page .woocommerce-notices-wrapper .woocommerce-message{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding:10px 0 10px 20px;
    color:#a80000;
    border-left: 20px solid #a80000;
    border-bottom: 2px solid #a80000;
    background-color: #f5f5f5;
    border-radius: 25px;
}
.cart-page .woocommerce-notices-wrapper .woocommerce-message a{
    border-radius: 20px;
    text-decoration:none;
    font-family: 'Montserrat', 'Roboto', Sans-serif;
    font-weight:500;
    font-size:11px;
    color:#000;
    text-transform:uppercase;
    background-color:var(--accent-color);
    padding:20px 30px;
    position:relative;
    cursor:pointer;
}

.cart-page .woocommerce-notices-wrapper .woocommerce-error {
	padding: 0;
	margin:0;
}
.cart-page .woocommerce-notices-wrapper .woocommerce-error li{
	display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0 10px 10px;
    color:#a60808;
    border-left: 20px solid #a60808;
    background-color: #f5f5f5;
    border-radius: 25px;
	border-bottom: 2px solid #a60808;
}
.cart-page .content .cart-title{
    padding-bottom:80px;
    font-family: 'Montserrat', 'Roboto', Sans-serif;
    font-weight:700;
    font-size:25px;
    text-transform:uppercase;
    margin-top: 40px;
}
.cart-page .content .woocommerce-cart-form > .shop_table{
    width:100%;
	padding-bottom: 20px;
}
.cart-page .calculated_shipping .shop_table{
	width:max-content;
}
.cart-page .shop_table thead th{
    border-bottom:1px solid var(--accent-color);
    padding-bottom:10px;
    font-family: 'Montserrat', 'Roboto', Sans-serif;
    font-weight:600;
    font-size:13px;
    text-transform:uppercase;
}
.cart-page .shop_table thead .product-name{
    text-align:left;
}
.cart-page .shop_table tbody .product-price, .cart-page .shop_table tbody .product-quantity, .cart-page .shop_table tbody .product-subtotal{
    text-align:center;
}
.cart-page .shop_table tbody .product-quantity .quantity-form{
    display:flex;
    align-items:center;
    justify-content:center;
}
.cart-page .shop_table tbody .product-quantity .quantity-form .reduce-quantity-button{
    margin-right:5px;
    cursor:pointer;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.cart-page .shop_table tbody .product-quantity .quantity-form .increase-quantity-button{
    margin-left:5px;
    cursor:pointer;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.cart-page .shop_table tbody tr:not(:last-child) td{
    padding:20px 5px;
    border-bottom:1px solid var(--accent-color);
}
.cart-page .shop_table tbody .product-name{
    display:flex;
}
.cart-page .shop_table tbody .product-name .product-details{
    margin-left:20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.cart-page .shop_table tbody .product-name .product-details a{
    color:#000;
    text-decoration:none;
    font-family: 'Montserrat', 'Roboto', Sans-serif;
    font-weight:500;
    font-size:17px;
}
.cart-page .shop_table tbody .product-name .product-details dd, .cart-page .shop_table tbody .product-name .product-details dd p{
	margin:0;
}
.cart-page .shop_table tbody .product-name .product-details .unavailable-product{
	background-color:#fce5b9;
	color:#925f08;
	display:flex;
	padding:10px;
}
.cart-page .shop_table tbody .product-name .product-details .unavailable-product i{
	color:#925f08;
	margin-right:5px;
}
.cart-page .shop_table tbody .product-name .product-details .split-product{
	background-color: #ff00002e;
    color: #000000;
	display:flex;
	padding:10px;	
}
.cart-page .shop_table tbody .product-name .product-details .split-product i{
	color:#b30000;
	margin-right:5px;
}
.cart-page .shop_table tbody .product-name .variation{
    font-family: 'Montserrat', 'Roboto', Sans-serif;
	font-size: 14px;
}
.cart-page .shop_table tbody .product-quantity input{
    width: 60px;
    padding: 10px 0;
    text-align: center;
}
.cart-page .shop_table tbody .product-remove a{
    color:#FD5050;
    text-decoration:none;
    font-family: 'Montserrat', 'Roboto', Sans-serif;
    font-weight:600;
    font-size:13px;
	display:flex;
	width:max-content;
}
.cart-page .shop_table .product-thumbnail img{
    width:50px;
    height:50px;
}
.cart-page .shop_table tbody .actions .actions-content{
    width:100%;
    display:flex;
    justify-content:space-between;
}
.cart-page .shop_table tbody .actions .actions-content .coupon{
    padding: 20px 0;
    border-bottom:1px solid var(--accent-color);
}
.cart-page .shop_table tbody .actions .actions-content .coupon input{
    padding:17px;
    font-family: 'Montserrat', 'Roboto', Sans-serif;
    font-weight:400;
    font-size:13px;
}
.cart-page .shop_table tbody .actions .actions-content .button-holder{
    padding:20px 0;
}
.cart-page .shop_table tbody .actions .actions-content .button-holder button[disabled], .cart-page .shop_table tbody .actions .actions-content .button-holder button:disabled{
    opacity: 0.5;
    pointer-events: none;
}
.cart-page .shop_table tbody .actions .actions-content button{
    display: inline-block;
}
.cart-page .wc-proceed-to-checkout .mp-default-button{
    display: inline-block;
    background-color: var(--button-color);
    color: #fff;
}
.cart-page .wc-proceed-to-checkout .mp-default-button:hover{
    color: #fff;
    background-color: var(--accent-color);
}
.cart-page .customerNotice{
	font-family: 'Montserrat', 'Roboto', Sans-serif;
}
.cart-page .content .cart-collaterals{
    font-family: 'Montserrat', 'Roboto', Sans-serif;
    font-weight:500;
    font-size:17px;
    margin-top:50px;
}
.cart-page .content .cart-collaterals .shop_table{
    font-family: 'Montserrat', 'Roboto', Sans-serif;
    font-weight:400;
    font-size:14px;
}
.cart-page .content .cart-collaterals .shop_table th{
    text-align:left;
	padding-right: 20px;
}
.cart-page .content .cart-collaterals .shop_table td{
    padding-left:10px;
}
.cart-page .content .cart-collaterals .shop_table .woocommerce-remove-coupon{
    color: var(--accent-color);
}
.cart-page .content .cart-collaterals .shop_table .woocommerce-shipping-methods{
	list-style:none;
	padding:0;
	margin-top:20px;
}
.cart-page .content .cart-collaterals .shop_table .woocommerce-shipping-methods li{
    display: flex;
    cursor: pointer;
    padding: 2px;
}
.cart-page .content .cart-collaterals .shop_table .woocommerce-shipping-methods li label{
    cursor: pointer;
}
.woocommerce-shipping-destination {
    max-width: 400px;
}
.cart-page .content .cart-collaterals .shop_table .shipping-calculator-button{
	text-decoration:none;
	color:var(--accent-color);
}
.cart-page .content .cart-collaterals .shop_table .order-total td{
	padding-top:20px;
}
.cart-page .content .cart-collaterals .shop_table .order-total th{
    padding-top: 20px;
}
.cart-page .content .cart-collaterals .wc-proceed-to-checkout{
    margin-top:70px;
}
.cart-page .mp-more-products{
    margin-top: 80px;
}
.cart-page .mpmp-title{
    font-size: 25px;
    font-weight: 800;
}
.cart-page .mpsp-carousel{
    margin-bottom: 40px;
}
.woocommerce .mp-cart-warning-message{
    padding: 0 var(--default-padding);
}
.woocommerce .mp-cart-warning-message p{
    border: 3px solid #e3750e;
    padding: 10px;
    border-radius: 5px;
}
.mp-product-flash-cart{
    width: fit-content;
    padding: 5px 10px;
    border-radius: 10px;
    background-color: #2196F3;
    margin-top: 10px;
    font-size: 13px;
    color: #fff;
}

/* Cart - Empty*/
.cart-empty{
    padding:0 var(--defaultPadding);
    font-family: 'Montserrat', 'Roboto', Sans-serif;
    font-weight:500;
    font-size:18px;
    margin-top:50px;
}
.woocommerce-notices-wrapper .cart-empty{
    padding:0;
}
.return-to-shop{
    padding:0 var(--defaultPadding);
    margin:40px 0 80px 0;
}
.return-to-shop .button{
    font-family: 'Montserrat', 'Roboto', Sans-serif;
    font-weight: 500;
    font-size: 11px;
    color: #000;
    text-transform: uppercase;
    background-color: var(--accent-color);
    border-radius: 0;
    padding: 20px 30px;
    position: relative;
    cursor: pointer;
    border:none;
    text-decoration:none;
}
/* END - Cart Empty */







    
    

.cart-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 50px;
    margin-top: 50px;
}
.cart-page .content .cart-title{
    padding-bottom: 0;
    margin-top: 0;
}
.cart-details{
    display: flex;
    column-gap: 20px;
}
.cart-detail-box{
    display: flex;
    column-gap: 5px;
}
.cart-detail-label{
    display: flex;
}
.refresh-time{
    width: 50px;
    text-align: center;
}



.cart-content{
    display: flex;
    column-gap: 40px;
}
.cart-products{
    flex-grow: 1;
}
.cart-shipping{
    background-color: #13243c;
    border-radius: 10px;
    padding: 20px;
    color: #fff;
    max-width: 400px;
    width: calc(100% - 40px);
    height: fit-content;
}

.mp-cart-product-unit-price{
    color: #737373;
}
.cart-page .shop_table tbody .actions .actions-content{
    margin-top: 30px;
}
.cart-page .shop_table tbody .actions .actions-content .coupon{
    padding: 0;
    border: 1px solid #13243c;
    display: flex;
    height: 40px;
}
.cart-page .shop_table tbody .actions .actions-content .coupon .input-text{
    border: none;
    padding: 0 17px;
    width: 100px;
}
.cart-page .shop_table tbody .actions .actions-content .coupon .input-text:focus{
    outline: none;
}
.cart-page .shop_table tbody .actions .actions-content .coupon .button{
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 1000px;
}
.cart-page .shop_table tbody .actions .actions-content .button-holder{
    padding: 0;
}


.cart-page .content .cart-collaterals{
    margin-top: 0;
}
.cart-page .content .cart-collaterals .cart_totals h2{
    margin: 0 0 30px 0;
}
.cart-page .content .cart-collaterals .shop_table{
    width: 100%;
    display: flex;
}
.cart-page .content .cart-collaterals .shop_table tbody{
    display: flex;
    flex-direction: column;
    width: 100%;
}
.cart-page .content .cart-collaterals .shop_table td{
    padding:0;
}
.cart_totals .shop_table tr {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cart-subtotal{
    padding-bottom: 10px;
}
.cart-subtotal th{
    font-weight: 400;
}
.cart_totals .shop_table .woocommerce-shipping-totals{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 20px 0;
}
.woocommerce-shipping-totals td{
    padding: 10px 0 0 0;
    margin-top: 20px;
    width: 100%;
}

.mp-shipping-select{
    position: relative;
}
.mp-shipping-select-current{
    height: 20px;
    cursor: pointer;
    border-bottom: 1px solid var(--accent-color);
    padding: 0 10px;
    display: flex;
    column-gap: 10px;
}
.mp-shipping-select-current span{
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.mp-shipping-select-options{
    position: absolute;
    top: 20px;
    left: 0;
    overflow: hidden;
    height: 0;
    transition: 0.3s all ease-out;
    background-color: #fff;
    border-radius: 5px;
    color: #000;
    max-height: 300px;
    box-shadow: -3px 3px 10px #b4b3b3;
}
.mp-shipping-select-options::-webkit-scrollbar {
    width: 8px;
}
.mp-shipping-select-options::-webkit-scrollbar-track {
    background: #a8a8a8;
}
.mp-shipping-select-options::-webkit-scrollbar-thumb {
    background-color: #3d3d3d;
    border-radius: 10px;
    border: 2px solid #a8a8a8;
}
.mp-shipping-select-options::-webkit-scrollbar-thumb:hover {
    background-color: #232323;
}
.mp-shipping-select-options ul{
    margin: 0;
    padding: 5px;
}
.cart-page .content .cart-collaterals .shop_table .woocommerce-shipping-methods{
    margin-top: 0;
}
.mp-shipping-select-options input.shipping_method{
    opacity: 0;
    width: 0;
    height: 0;
    margin-right: 0;
    min-width: 0;
}
.cart-page .content .cart-collaterals .shop_table .woocommerce-shipping-methods li{
    padding: 4px 10px;
    border-bottom: 1px solid #dddddd;
    align-items: center;
}
.mp-shipping-select-option.mp-active{
    background-color: #d8d8d8;
}
.mp-shipping-select-option:hover{
    background-color: #d8d8d8;
}

.cart-page .shop_table tbody tr:not(:last-child) td{
    border-bottom: none;
}
.cart-page .content .cart-collaterals .shop_table .order-total th{
    font-size: 18px;
    padding-top: 10px;
}
.cart-page .content .cart-collaterals .shop_table .order-total td{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.cart-page .content .cart-collaterals .shop_table .order-total td strong{
    font-size: 18px;
}
.cart-page .content .cart-collaterals .wc-proceed-to-checkout{
    margin-top: 30px;
}
.cart-page .wc-proceed-to-checkout .mp-default-button{
    background-color: var(--accent-color);
    width: calc(100% - 40px);
    text-align: center;
}

.cart-page .shop_table tbody .product-quantity .quantity-form .reduce-quantity-button{
	width: 20px;
	display: flex;
	justify-content: center;
	margin-right: 0;
}
.cart-page .shop_table tbody .product-quantity .quantity-form .increase-quantity-button{
	width: 20px;
	display: flex;
	justify-content: center;
	margin-left: 0;
}

.mp-shipping-cost-row th{
    font-weight: 400;
}


/* -------------------------------------------- */
/*                                              */
/*             Responsiveness                   */
/*                                              */
/* -------------------------------------------- */

@media screen and (max-width: 1000px){
	.cart-content{
		flex-direction: column;
	}

	.cart-page .content .woocommerce-cart-form > .shop_table .cart_item .product-name{
		width: 100%;
		justify-content: flex-start;
	}
	.cart-page .content .woocommerce-cart-form > .shop_table .cart_item .product-quantity{
		justify-content: flex-start;
		column-gap: 10px;
	}
	.cart-page .content .woocommerce-cart-form > .shop_table .cart_item .product-subtotal{
		justify-content: flex-start;
		column-gap: 10px;
	}
	.cart-page .content .woocommerce-cart-form > .shop_table .cart_item .product-remove{
		justify-content: flex-start;
	}
	.cart-page .content .woocommerce-cart-form > .shop_table tbody tr:nth-child(2){
		padding-bottom: 20px;
		border: none;
	}
	.cart-page .content .woocommerce-cart-form > .shop_table tbody .actions-content{
		flex-direction: column-reverse;
		row-gap: 20px;
	}
}
@media screen and (max-width: 768px){
	.cart-header{
		flex-direction: column;
		row-gap: 20px;
	}
	.cart-details{
		flex-direction: column;
		row-gap: 5px;
	}
	.cart-detail-box{
		justify-content: center;
	}
	.cart-shipping{
	    margin: 0 auto;
	}
}
@media screen and (max-width: 768px){


    .cart-page .content .woocommerce-cart-form > .shop_table thead{
        display: none;
    }
    .cart-page .content .woocommerce-cart-form > .shop_table tbody{
        width: 100%;
        display: flex;
        flex-direction: column;
        row-gap: 20px;
    }
    .cart-page .content .woocommerce-cart-form > .shop_table tbody tr{
        display: flex;
        flex-direction: column;
        width: 100%;
        justify-content: space-between;
        border-bottom: 1px solid var(--accent-color);
    }
    .cart-page .content .woocommerce-cart-form > .shop_table .cart_item td{
        border-bottom: none;
        display: flex;
        justify-content: space-between;
        padding: 10px;
        align-items: center;
    }
    .cart-page .content .woocommerce-cart-form > .shop_table td.product-price::before {
        content: attr(data-title) ": ";
    }
    .cart-page .content .woocommerce-cart-form > .shop_table td.product-quantity::before {
        content: attr(data-title) ": ";
    }
    .cart-page .content .woocommerce-cart-form > .shop_table td.product-subtotal::before {
        content: attr(data-title) ": ";
    }
    .cart-page .content .woocommerce-cart-form > .shop_table tbody .product-remove{
        display: flex;
        justify-content: flex-end;
    }
    .cart-page .shop_table tbody .product-quantity input{
        padding: 7px 0;
        border: 1px solid #a9a9a9;
        outline: none;
    }
    .cart-page .shop_table tbody .actions .actions-content{
        flex-direction: column;
    }
    .cart-page .shop_table tbody .actions .actions-content .coupon{
        display: flex;
        justify-content: space-between;
    }
    .cart-page .shop_table tbody .actions .actions-content .button-holder button{
        width: 100%;
    }
    .cart-page .content .cart-collaterals .shop_table .woocommerce-shipping-methods li {
        padding: 5px 0;
    }
    .cart-page .content .cart-collaterals .shop_table .order-total th{
        padding-top:20px;
    }
    .cart-page .wc-proceed-to-checkout .mp-default-button{
        width: calc(100% - 40px);
        display: flex;
        justify-content: center;
    }


}