
.t-head-row,
.t-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
}

@media(min-width: 700px) {
	.t-head-row,
	.t-row {
		max-width: 80%;
	}
}

@media(max-width: 1500px) {
	.t-head-row,
	.t-row {
		max-width: 70%;
	}
}

@media(max-width: 1400px) {
	.t-head-row,
	.t-row {
		max-width: 50%;
	}
}

@media(max-width: 1200px) {
	.t-head-row,
	.t-row {
		max-width: 30%;
	}
}

@media(max-width: 768px) {
	.t-head-row,
	.t-row {
		flex-wrap:wrap;
		max-width: unset;
	}
}


.t-cell > a {
	display: flex;
	align-items: center;
	gap: 1em;
}

.t-cell a img.basket__img {
	box-shadow: 0px 0px 5px 0px #0000001A;
	padding: 5px;
}

.t-cell.t-price {
	white-space: nowrap;
}

.t-tables-wrap {
	display: flex;
	justify-content: space-between;
	gap: 1em;
}

@media(max-width:975px) {
	.t-tables-wrap {
		flex-wrap: wrap;
	}
}

.t-row .t-cell.t-b {
	flex: 0 0 100%;
}

.t-table {
	display: flex;
	flex-direction: column;
	gap: 1em;
}

[class*=cart] .main {
	margin: 0 auto 2em;
}

@media(max-width:975px) {
	[class*=cart] .main {
		padding: 0 10px;
	}
	.t-table-right {
    justify-content: flex-end;
    display: flex;
    flex: 0 0 100%;
	}
}

.t-messages {
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	gap: 2em;
}

.t-messages [name=BasketRefresh] {
	background-color: #068f9c;
	color: white;
	width: 100%;
	padding: 12px;
	font-size: 16px;
	border-radius: 8px;
}

.t-messages [name=BasketOrder] {
	background-color: #FFA80A;
	color: white;
	width: 100%;
	padding: 12px;
	font-size: 16px;
	border-radius: 8px;
	height: 48px;
}

.t-cell.t-quantity {
	display: flex;
	align-items: center;
	text-align: center;
	background-color: #FFF9F9;
	border-radius: 8px;
}

.cart-table-td_count .minus {
	background-color: #eee;
	display: flex;
	align-items: center;
	height: 34px;
	width: 34px;
	justify-content: center;
	border-radius: 8px;
}

.cart-table-td_count .minus.active {
	background-color: #B0E4EA;
}


.cart-table-td_count .amount {
	display: flex;
}

.cart-table-td_count .plus {
	background-color: #B0E4EA;
	display: flex;
	align-items: center;
	height: 34px;
	width: 34px;
	justify-content: center;
	border-radius: 8px;
}

input[name*="QUANTITY"] {
	height: 34px;
	text-align: center;
}

.t-delay input[id*=DELAY] {
	display: none;
}

.t-delay .favourites__ico {
	width: 2rem;
	height: 2rem;
	stroke: var(--stroke_favourites);
	stroke-width: 2;
	fill: rgba(0, 0, 0, 0);
	margin-left: auto;
	-webkit-transition: var(--transition_time);
	transition: var(--transition_time);
	cursor: pointer;
}

.t-delay .favourites__ico.active, .t-delay .favourites__ico:hover {
	stroke: var(--stroke_favourites_active);
	fill: var(--stroke_favourites_active);
	margin-left: auto;
}

.t-delete .favoudelete_icorites__ico path {
	fill: #D9D9D9;
}

.t-delete .favoudelete_icorites__ico {
	width: 2rem;
	height: 2rem;
	stroke: #D9D9D9;
	stroke-width: 2;
	fill: rgba(0, 0, 0, 0);
	margin-left: auto;
	-webkit-transition: var(--transition_time);
	transition: var(--transition_time);
	cursor: pointer;
}

.t-delete input[id*=DELETE] {
	display: none;
}

.t-delete .delete_ico.active, .t-delete .delete_ico:hover {
	stroke: #B0E4EA;
	fill: #B0E4EA;
	margin-left: auto;
}

.t-delete .delete_ico.active path, .t-delete .delete_ico:hover path {
	fill: #B0E4EA;
}

.t-vat-show > div {
	white-space: nowrap;
}

.t-delay .favourites__ico.infavor {
	stroke: var(--stroke_favourites_active);
	fill: var(--stroke_favourites_active);
	margin-left: auto;
}

.t-messages .btn:hover {
	background: var(--button_bg_hover);
}
.t-messages .btn {
	background: var(--button_bg);
    color: #fff;
    text-decoration: none;
    padding: 12px;
    font-size: 16px;
    border-radius: 8px;
    width: 100%;
    display: block;
    text-align: center;
}

@media(width <= 30rem) {
	.t-head-row, .t-row {
    flex-wrap: wrap;
    margin-bottom: 4em;
	}
}

@media(width <= 25rem) {
	.t-head-row, .t-row {
    flex-wrap: wrap;
    margin-bottom: 3em;
	}
}

.t-discount-percent.colored {
	color: #ff0084;
	font-weight: bold;
}