.cart-table table {
	background-color: transparent;
	border: none;
}
.cart-table table {
	width: 100%;
}
.cart-table table tbody {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
}
.cart-table tr {
	display: flex;
	width: 100%;
	gap: 24px;
	padding: 24px;
	border-radius: 20px;
	border: 1px solid var(--sk-border);
	background-color: #fff;
}
.cart-table table td {
	display: block;
	border: none;
	padding: 0;
}
.cart-table table td.cart-document-table-info {
	display: flex;
	flex: 1;
}
.cart-table table td.cart-document-remove {
	position: relative;
	text-align: right;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 12px;
}
.cart-table .remove-btn {
	position: relative;
    display: flex;
    width: 40px;
    height: 40px;
    min-width: 40px;
    border: 1px solid #e9e9e9;
    border-radius: 50%;
    background-color: #fff;
    color: #68695e;
    align-items: center;
    justify-content: center;
	transition: all 0.3s ease-out;
}
.cart-table .remove-btn:hover {
	background-color: #000;
	border-color: #000;
	color: #fff;
}
.cart-table .remove-btn svg {
	fill: #68695e;
	width: 16px;
	height: 16px;
}
.cart-table .remove-btn:hover svg {
	fill: #fff;
}
.cart-table .document-table-info *:last-child {
	margin-bottom: 0;
}
.cart-table .document-table-info .maxtitle-3 {
	font-size: 22px;
	line-height: 1.5;
	margin-bottom: 8px;
}
.cart-table .document-img img {
	border-radius: 10px;
	width: 120px;
}
.cart-table .document-table-info .document-cat {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.cart-table .document-table-info .document-cat .tag-candidate {
	color: #000;
	font-size: 13px;
	padding: 4px 12px;
	border-radius: 3.40282e38px;
	border: 1px solid #f4ee7880;
	background-color: #f4ee784d;
}
.cart-table .price-label {
	font-weight: 400;
	font-size: 28px;
	font-family: 'PT Serif';
}
.cart-total {
	background-color: #fff;
    border-radius: 24px;
    padding: 32px;
	border: 1px solid #e9e9e9;
	box-shadow: 0 10px 40px #00000014;
}
.cart-total-row {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
	padding: 24px 0;
	font-size: 15px;
	color: #68695e;
}
.cart-total-row.top span:last-child {
	color: #000;
	font-weight: 500;
}
.cart-total-row.total {
	border-top: 1px solid #e9e9e9;
	margin-bottom: 20px;
	font-weight: 500;
	color: #000
}
.cart-total-row.total span {
	font-size: 18px;
}
.cart-total-row.total span:last-child {
	font-weight: 400;
	font-size: 32px;
	line-height: 1.25;
	font-family: 'PT Serif';
}
.cart-total-bottom {
	margin-top: 24px;
	font-size: 13px;
	color: #68695e;
	display: flex;
	align-items: center;
	gap: 8px;
	justify-content: center;
}
.cart-total-bottom svg {
	width: 16px;
	height: 16px;
	stroke: currentcolor;
}
.cart-total .btn {
    background-color: var(--sk-blue);
    padding: 18px;
}
.cart-total .btn:before {
	background-color: var(--sk-pirmary);
}
.cart-total .maxtitle-4 {
	font-size: 26px;
}
@media (max-width: 767px) {
	.cart-table tr {
		flex-direction: column;
		padding: 16px;
		gap: 0;
	}
	.cart-table .document-img {
		margin-bottom: 16px;
	}
	.cart-table .document-img img {
		border-radius: 10px;
		width: 100%;
		height: auto;
		object-fit: cover;
		aspect-ratio: 16 / 12;
	}
	.cart-table .document-table-info .maxtitle-3 {
		font-size: 20px;
	}
	.cart-table table td.cart-document-remove {
		position: relative;
		text-align: left;
		display: flex;
		flex-direction: row;
		align-items: center;
		gap: 12px;
		justify-content: space-between;
		padding: 16px 0 0;
		margin-top: 16px;
		border-top: 1px solid var(--sk-border);
	}
	.cart-total {
    	padding: 24px;
	}
	.cart-total .maxtitle-4 {
		font-size: 24px;
		margin-bottom: 0;
	}
	.cart-total-row.total {
    	margin-bottom: 0px;
	}
}