.tx-red {
	color: #ec0e17;
}
.box-content {
	padding-bottom: 40px;
}
.cart-list {
	margin-bottom: 20px;
}
.table-cart {
	width: 100%;
	border: 1px solid var(--c1);
}
.table-cart th,
.table-cart td {
	padding: 10px;
}
.table-cart th {
	color: white;
	font-weight: 400;
	background: var(--c1);
}
.table-cart th:not(:last-child) {
	border-right: 1px solid white;
}
.table-cart th.column-remove {
	border-right: 0 ! important;
}
.table-cart tbody tr:not(:last-child) td {
	border-bottom: 1px solid #f1f2f6;
}
.table-cart tfoot td {
	padding: 15px 10px;
	background: #f1f2f6;
}
.column-picture a {
	display: table;
}
.column-picture span {
	display: table-cell;
	vertical-align: middle;	
}
.column-picture .img {
	padding: 5px;
	transition: all .3s ease;
	border: 1px solid #e6e6e6;
}
.column-picture .img:hover {
	border-color: var(--c1);
}
.column-picture .img img {
	width: 50px;
	height: 50px;
	object-fit: cover;
}
.column-picture .txt {
	padding-left: 10px;
}
.cart-totals span::after {
	content: ':';
	margin-left: 5px;
}
.cart-totals b {
	font-size: 18px;
}

.qtys {
	height: 40px;
	background: white;
	display: inline-flex;
	border: 1px solid #dde0eb;
}
.qtys .button {
	color: #999;
	width: 38px;
	height: 38px;
	padding: 10px;
	display: block;
	cursor: pointer;
	transition: all .3s ease;
}
.qtys .button:hover {
	color: white;
	background: var(--c1);
}
.qtys .form-control {
	width: 50px;
	border: none;
	height: 38px;
	font-size: 16px;
	font-weight: 700;
	border-radius: 0;
	box-shadow: none;
	background: none;
	text-align: center;
	border-left: 1px solid #dde0eb;
	border-right: 1px solid #dde0eb;
}

.form-cart {
	padding: 30px;
	margin-bottom: 20px;
	border: 1px solid #dbdbdb;
}
.form-cart p {
	color: #666;
}
.form-cart p:not(:last-child) {
	margin-bottom: 3px;
}
.form-cart p strong {
	font-size: 16px;
}

button.remove {
	outline: none;
	box-shadow: none;
	border: none;
	padding: 0;
	margin: 0;
	background: none;
	font-size: 26px;
	color: gray;
}
button.remove:hover {
	color: var(--c1);
}
.form-cart .box-head {
	margin-bottom: 15px;
}
.form-cart .form-field {
	margin-top: 10px;
}
.form-cart .form-field label {
	margin: 0;
	cursor: pointer;
	font-weight: 400;
	line-height: 40px;
}
.form-cart .required::after {
	color: red;
	content: '*';
	margin-left: 3px;
}
.form-cart .form-control {
	height: 40px;	
	border-radius: 0;
	-webkit-appearance: none;
}
.form-cart .form-control:not(:focus) {
	box-shadow: none;
	border: 1px solid #dbdbdb;
}
.tx-indent {
	text-indent: 30px;
}

.btn-checkout {
	outline: none;
	box-shadow: none;
	border: none;
	height: 40px;
	color: white;
	padding: 0 55px;
	font-size: 16px;
	border-radius: 3px;
	background: var(--c1);
	transition: all .3s ease;
}
.btn-checkout::after {
	content: '\f061';
	margin-left: 10px;
	font-family: FontAwesome;
}
.btn-checkout:hover {
	background: var(--c2);
}
.cart-finished {
	padding: 60px 20px;
	margin-bottom: 20px;
	border: 1px solid #ddd;
	background: url(../images/cart-finished.png) no-repeat 220px center;
	background-size: 260px 184px;
}
.cart-finished p:last-child {
	margin: 0;
}

.back-home a {
	color: white;
	font-size: 16px;
	padding: 10px 35px;
	border-radius: 3px;
	background: var(--c1);
	display: inline-block;
	transition: all .3s ease;
}
.back-home a::before {
	margin-right: 5px;
}
.back-home a:hover {
	background: var(--c2);
}
.cart-note b {
	font-size: 20px;
	color: var(--c2);
}
.cart-note::before {
	margin-right: 10px;
}

@media screen and (max-width: 1200px){
	.form-cart .form-field label {
		text-indent: 0;
	}
}

@media screen and (max-width: 992px){
	.form-cart .form-field .col-sm-12:first-child {
		margin-bottom: 10px;
	}
	.cart-finished {
		padding: 20px;
		border-radius: 4px;
		background-position: 20px center;
	}
}
@media screen and (max-width: 767px){
	.box-content {
		padding-bottom: 30px;
	}
	.column-picture span {
		vertical-align: top;
	}
	.column-picture span.img {
		width: 50px;
		height: 50px;
	}
	.column-picture span.img img {
		width: 40px;
		height: 40px;
	}
	.column-picture .txt {
		width: calc(100% - 50px);
	}
	.tbl-to-div {
		overflow: hidden;
		position: relative;
	}
	.tbl-to-div .row-item {
		border-radius: 3px;
		position: relative;
		border: 1px solid #dbdbdb;
		padding: 15px 40px 15px 15px;
	}
	.tbl-to-div .row-item :not(:last-child) {
		margin-bottom: 10px;		
	}
	.tbl-to-div .row-item > li {
		display: flex;
		margin-bottom: 10px;
	}
	.tbl-to-div .row-item > li:last-child {
		margin-bottom: 0;
	}
	.tbl-to-div .row-item > li .row0 {
		width: 80px;
		white-space: nowrap;
	}
	.tbl-to-div .row-item > li .row0::after {
		content: ':';
		margin-left: 2px;
	}
	.tbl-to-div .row-item > li .row1 {
		text-align: left;
		width: calc(100% - 100px);
	}
	.tbl-to-div .row-item > li.column-remove {
		right: 10px;
		position: absolute;
	}
	.tbl-to-div .row-item > li.column-subtotal .row0 {
		color: #333;
	}
	.tbl-to-div .row-item > li.column-subtotal .row1 {
		font-weight: 700;
	}
	.form-cart {
		padding: 15px;
		border-radius: 3px;
	}
	.form-cart .form-field label {
		text-indent: 0;
		line-height: 1.5;
		margin-bottom: 3px;
	}
	.qtys {
		height: 30px;
	}
	.qtys .button {
		width: 28px;
		height: 28px;
		padding: 5px 9px;
	}
	.qtys .form-control {
		height: 28px;
	}
	.cart-finished {
		padding: 15px;
		background: none;
		border-radius: 3px;
	}
}