/* c-table
------------------------------------------------------------------- */
.c-table caption,
.c-table th,
.c-table td {
    padding: 10px;
    border-bottom: 1px solid #dadada;
}

.c-table th {
    text-transform: uppercase;
}


.c-table__total {
	font-size: 18px;
	color: #000;
	margin-bottom: 20px;
}
.rrc {
	min-width: max-content;
}
@media (max-width: 767px) {
 
    .c-table__total {
        font-size: 16px;
        text-align: center;
        font-weight: 400;
    }

    .l-body__order .product-cart {
        margin: 0 0 0 -10px;
    }
.deleteItemFromCart.delete-btn.js-delete-from-cart {
	position: absolute;
	top: 10px;
	right: 10px;
}
.c-table tr {
	display: flex;
	flex-wrap: wrap;
	margin-top: 16px;
	border-radius: 7px;
	background: rgba(255,255,255,0.6);
	box-shadow: 0 1px 5px rgba(0,0,0,0.1);
	padding: 15px;
	position: relative;
}
.cart-img-link {
	display: flex !important;
	width: 100% !important;
	height: 150px !important;
	justify-content: center;
	align-items: center;
}
.cart-img-link img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}  
.td-mob.count-cell .cart_form.js-amount-wrap {
	max-width: 200px;
	margin: auto;
	display: flex;
	justify-content: center;
}
 
    .c-table tr:first-of-type {
        margin-top: 0;
    }

    .c-table th {
        display: none;
    }

    .c-table td {
        line-height: 1.4;
        display: block;
        width: 100%;
        margin-bottom: -1px;
        text-align: center;
        box-sizing: border-box;
    }

    .c-table__count,
    .c-table__price,
    .c-table__remove {
        display: flex!important;
        align-items: center;
    }

    .c-table__count {
        justify-content: flex-start;
        flex: 1 1 30%;
    }

    .c-table__price {
        justify-content: center;
        flex: 1 1 30%;
    }

    .c-table__remove {
        justify-content: flex-end;
        flex: 1 1 20px;
    }
.c-table caption, .c-table th, .c-table td {
	border: none !important;
}  
}

.c-table--overflow {
    overflow: auto;
}

.c-table--hover td {
    -webkit-transition: background-color .1s linear;
    -o-transition: background-color .1s linear;
    transition: background-color .1s linear;
}

.c-table--hover tr:hover td {
    background-color: #fdfde2;
}

.c-table--striped tr:nth-of-type(even) {
    background: #f3f3f3;
}

.c-table__img,
.c-table__count,
.c-table__price,
.c-table__remove {
    text-align: center;
}

.c-table__remove a:hover {
    color: #cd4449;
}

.c-table__link {
    font-weight: 600;
}

.c-table__link:hover {
    text-decoration: underline;
}

.c-table__quantity {
	font-size: 14px;
	font-weight: 600;
	color: #000;
}
.c-table__price {
    font-weight: 600;
}
.small-cart-table
.c-table__footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    margin-top: 16px;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
}
.small-cart-table .deleteItemFromCart.js-delete-from-cart {
	position: absolute;
	top: 0;
	right: 0;
}
.small-cart-table .icon__cart-remove.uk-icon.uk-close {
	color: #000;
	width: 10px;
	height: 10px;
	border: 1px solid #ec1d23;
	border-radius: 10px;
	padding: 3px;
}
@media (max-width: 767px) {
    .c-table__footer {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

.c-table--scroll {
	overflow: auto;
	max-height: 70vh;
}

.c-modal .c-table {
    margin-top: 16px;
}

.c-table__name.name-cell {
    max-width: 650px;
}