.cart {
	position: fixed;
	top: 0;
	right: -640px;
	width: 100%;
	max-width: 640px;
	height: 100%;
	padding: 30px 0 0;
	background: var(--color-text-white);
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	z-index: 99;
}

.cart.opened {
	right: 0;
	box-shadow: 5px 0px 10px #000;
}

.cart__loading {
	height: 100%;
}

.spinner--cart {
	height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cart td {
	font-size: 14px;
	padding: 20px 10px;
}

.cart__product {
	border-bottom: 1px solid #999999;
}

.cart form {
	width: fit-content;
}

.cart__product-remove {
	width: 30px;
}

.cart__close {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	background: var(--color-text-white);
	font-size: 0;
	line-height: 0;
	width: 40px;
	height: 40px;
	cursor: pointer;
}

.cart__close::before,
.cart__close::after {
	content: '';
	width: 20px;
	height: 2px;
	background: #000;
	position: absolute;
	top: 50%;
	left: 50%;
}

.cart__remove {
	position: relative;
	background: unset;
	border: none;
	color: #333333;
	opacity: 0.8;
	width: 30px;
	height: 30px;
	padding: 0;
	margin-top: 5px;
}

.cart__close::after {
	transform: translate(-50%, 50%) rotate(45deg);
}

.cart__close::before {
	transform: translate(-50%, 50%) rotate(-45deg);
}

.cart__name {
	font-size: 20px;
	line-height: 24px;
	font-weight: 400;
	padding-left: 12px;
	padding-top: 10px;
}

.cart__items-count {
	padding-left: 12px;
	margin: 33px 0 13px;
	font-size: 17px;
	color: #CD6639;
}

.price {
	color: #CD6639;
}

.cart__decrease-btn,
.cart__increase-btn {
	display: block;
	text-align: center;
	border: 1px solid var(--border-color);
	width: 35px;
	height: 35px;
	background: var(--color-text-primary);
	cursor: pointer;
}

.cart__decrease-btn {
	border-right: none;
}

.cart__increase-btn {
	border-left: none;
}

.cart__prices {
	color: var(--color-text-primary);
	background: var(--color-bg-secondary);
	padding: 20px 20px 30px;
	width: 100%;
	margin-top: auto;
	border-top: 1px solid #999999;
}

.cart__price {
	display: flex;
	justify-content: space-between;
	height: 50px;
    align-items: center;
}

.cart__price:not(.total) {
    border-bottom: 1px solid #999999CC;
}

.cart__price.total {
	font-size: 20px;
}

.cart__actions {
	display: flex;
	justify-content: space-between;
	gap: 13px;
	margin-top: 24px;
}

.checkout__offer {
	display: grid;
	grid-template-columns: 160px 15px;
	margin-top: 15px;
	margin-bottom: 5px;
}

.checkout__offer input[type="radio"] {
	width: auto;
}

.checkout__offer label {
	font-size: .8rem;
}
.cart__product-amount input {
	text-align: center;
}

.cart__actions a,
.cart__actions .cart__continue-shopping {
	/* color: var(--color-text-secondary); */
	padding: 10px 20px;
	width: 100%;
	display: block;
	min-width: max-content;
	font-size: 20px;
	/* border-width: 2px;
	border-style: solid;
	border-color: transparent; */
	border-radius: 3px;
	transition: .2s all;
	/* background: var(--color-bg-primary); */
	cursor: pointer;
	text-align: center;
}

.cart__actions a.disabled {
	opacity: 0.5;
	pointer-events: none;
}

.cart__actions a.cart__continue-shopping{
	text-align: left;
}

.cart__continue-shopping {
	color: #828282;
	text-align: left;
}

.input--cart {
	padding: 9px 6px;
	font-size: 1rem;
	width: 50px;
}

/* .cart__actions a:hover {
	background: var(--color-bg-hover);
} */

.cart__amount {
	display: flex;
	justify-content: center;
}

.cart__product-price {
	margin-top: 12px;
	color: #CE6839CC;
	font-size: 1rem;
	display: flex !important;
    align-items: center;
    gap: 6px;
}

.cart__product-vat {
	display: inline !important;
    color: var(--color-text-primary);
    font-weight: 300;
    font-size: 13px;
}

.cart__product-image__wrapper {
	border: 1px solid #D9D9D9;
	padding: 10px;
	border-radius: 10px;
	width: fit-content;
    height: fit-content;
}

.radio-label-container {
	display: flex;
    align-items: center;
    gap: 5px;
}

.radio-label-container label {
	margin-bottom: 0px !important;
}

.cart__product-image {
	max-width: 94px;
}

.montonio-target-container .montonio-bank-select-class {
	height: auto;
}

.cart__product-image__wrapper img {
	height: 100%;
    width: 100%;
    object-fit: contain;
	min-width: 50px;
	min-height: 50px;
}

.cart__product-name span {
	display: block;
	word-break: break-word;
}

.cart__product-package {
	color: var(--color-text-teritary);
    font-size: .7rem;
}

.cart__product-package span {
	display: inline;
}


.cart__table {
	width: 100%;
}

.cart__product-amount form {
	/* display: flex;
	gap: 10px;
	width: 140px; */
	margin: auto;
	width: max-content;
	display: flex;
}

.cart__update {
	font-size: .8rem;
	border: none;
	margin-left: 10px;
	text-decoration: underline;
}

.cart__product-code {
	color: var(--color-text-teritary);
	font-size: .7rem;
}

.cart__tabs {
	display: flex;
	cursor: pointer;
	margin-top: 1rem;
	border-bottom: 1px solid #ccc;
}

.cart__tab {
	flex: 1;
	text-align: center;
	padding: 10px;
	background-color: #ffffff;
	margin: 0 2px;
}

.cart__tab.active {
	background-color: #f1f1f1;
}

.cart__tab-content {
	display: none;
}

.cart__tab-content.active {
	display: block;
}

.cart__form-container {
	padding: 20px;
	background: var(--color-text-white);
}

.cart__form-group {
	margin-bottom: 15px;
}

.cart__form-label {
	display: block;
	margin-bottom: 5px;
}

.cart__form-input,
.cart__form-select {
	width: 100%;
	padding: 8px;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
}

.cart__form-select {
	height: 38px;
}

.cart__product td {
	vertical-align: top;
}

.cart-order-import-general-error {
	position: fixed;
	text-align: center;
	width: 70%;
	padding: 16px;
	left: 50%;
	top: 10%;
	transform: translate(-50%, -50%);
	transition: opacity 0.3s;
	color: #1D2433;
	background-color: #FFEFEC;
	z-index:100;
}

@media(max-width: 550px) {
	.cart__actions {
		flex-wrap: wrap;
    	flex-direction: column-reverse;
		gap: 0;
	}

	.cart__prices {
		padding: 20px 20px 10px;
	}

	.cart__continue-shopping {
		text-align: center !important;
	}
}

@media(max-width: 440px) {
	.cart__product-amount form {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 5px;
	}

	.cart__update {
		margin-left: 0;
	}

	.cart__product-price {
		width: 60px;
	}

	.cart__product-image__wrapper {
		padding: 5px;
		border-radius: 10px;
		width: 50px;
		height: 50px;
	}

	.cart__product-image__wrapper img {
		min-width: 30px;
		min-height: 30px;
	}
}

.cart__product-amount__not-available {
	color: red;
    margin-top: 10px;
    font-size: .9rem;
    font-weight: 600;
}