/* 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;
}


.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;
}

.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;
}