

/* Start:/local/templates/jackarno/components/bitrix/sale.basket.basket/.default/style.css?17709442587742*/

.cart-container {
	margin-top: 60px;
	display: flex;
}
.cart-title {
	font-weight: 500;
	font-size: 20px;
	border-bottom: 1px solid #ddd;
	padding-bottom: 20px;
}
.forms {
	margin-bottom: 30px;
    min-width: 430px;
}

@media screen and (max-width: 1024px) {
	.cart-container {
		flex-direction: column;
		margin-top: 23px;
	}
	.forms {
		display: flex;
		flex-direction: column-reverse;
		gap: 10px;
        min-width: auto;
	}
}

.order-form {
	border-radius: 5px;
	border: 1px solid #ddd;
	padding: 1.5rem;
	margin-top: 0;
	box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.25);
	background: #fff;
	max-height: fit-content;
	width: 100%;
}

.order-form form {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.order-form input {
	border: 1px solid #D1D1D1;
	padding: 1rem;
	transition: .3s;
	height: 44px;
	width: 100%;
}
.order-form__input.promocode .form-group {
	margin: 20px 0 0 ;
}

.order-form input.p-black::-moz-placeholder {
	color: #111111;
}

.order-form input.p-black::placeholder {
	color: #111111;
}

.order-form input.p-black:focus::-moz-placeholder {
	color: #c2c2c2;
}

.order-form input.p-black:focus::placeholder {
	color: #c2c2c2;
}

.order-form input:focus {
	border-color: #6e6e6e;
}

.order-form .form-group {
	margin-bottom: 1.5rem;
}

.order-form .form-group label {
	font-size: 14px;
	margin-bottom: .5rem;
	display: inline-block;
}

.order-form .form-group label.big {
	margin-bottom: 1rem;
	font-size: 20px;
	font-weight: 600;
	text-transform: uppercase;
}

.order-form .form-group .input-group.w-button {
	position: relative;
}

.order-form .form-group .input-group.w-button button {
	transition: .3s;
	background-color: #111111;
	color: #fff;
	position: absolute;
	right: 3px;
	top: 3px;
	height: calc(100% - 6px);
	border-radius: 5px;
	font-size: 13px;
	padding: 0 1rem;
	line-height: 13px;
}

.order-form .form-group .input-group.w-button button:hover {
	background-color: #2a2a2a;
}

.order-form .form-group--half {
	display: flex;
	justify-content: space-between;
}

.order-form .form-group--half input {
	width: calc(50% - .75rem);
}

.order-form .btn {
	height: 50px;
	font-size: 14px;
	text-align: center;
	color: #ffffff;
	display: flex;
	width: 100%;
	border-radius: 5px;
	font-weight: 400;
	flex-direction: column;
	justify-content: center;
}
.order-form .btn > div:nth-child(2) {
	font-size: 12px;
}
.order-form .btn > div span {
	text-decoration: line-through;
	color: #a4a4a4;
}
.order-form .btn--green {
	background-color: #17A34D;
}

.order-form .btn--green:hover {
	background-color: #17b353;
}

.order-form__info {
	font-size: 14px;
	display: flex;
	flex-direction: column;
	margin-bottom: 1rem;
}
.order-form__info > div {
	display: flex;
	justify-content: space-between;
	font-weight: 400;
	font-size: 14px;
	margin-bottom: 10px;
}
.order-form__sticky {

}

.order-form__info .order-form__price-title {
	font-weight: 500;
	font-size: 16px;
	margin-bottom: 30px;
}
.order-form__info .order-form__price-row {

}
.order-form__info .order-form__price-row--red {
	color: #d30b3b;
}
.order-form__info .order-form__price-row--all {
	font-weight: 500;
	font-size: 16px;
	margin-top: 32px;
}

.order-form__button-sticky.active {
	transition: box-shadow .3s;
}

@media screen and (max-width: 767px) {

	.order-form__button-sticky {
		padding: 1rem;
		position: fixed;
		bottom: 51px;
		left: 0;
		background-color: #fff;
		width: 100%;
		border-radius: 5px 5px 0 0;
		box-shadow: 0px -5px 16px #0000000f;
		animation: cart-sticky .3s linear;
		border: 1px solid #f2f2f2;
		z-index: 100;
	}
}

@keyframes cart-sticky {
	0% {transform: translateY(100%)}
	100% {
		transform: translateY(0%);
	}
}

@media (min-width: 768px) {

	.cart-items {
		margin-right: 30px;
	}
}

@media (min-width: 1024px) {

	.cart-items {
		margin-right: 50px;
	}
}

@media (min-width: 1280px) {

	.cart-items {
		margin-right: 100px;
	}
}

.cart-items {
	width: 100%;
}

.cart-item {
	display: flex;
}

.cart-item:not(:last-child) {
	padding-bottom: 1.5rem;
}

.cart-item:not(:first-child) {
	padding-top: 1.5rem;
}

@media (min-width: 1024px) {
	.cart-item:not(:last-child) {
		padding-bottom: 2.5rem;
	}
	.cart-item:not(:first-child) {
		padding-top: 2.5rem;
	}
}

.cart-item__img {
	margin-right: 1.5rem;
}

@media (min-width: 1024px) {

	.cart-item__img {
		margin-right: 2rem
	}
}

.cart-item__img img {
	min-width: 142px;
	border-radius: 5px;
}

.cart-item__container {
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-direction: column;
}

@media (min-width: 1024px) {

	.cart-item__container {
		flex-direction: column;
	}
}

.cart-item__top {
	display: flex;
	display: flex;
	justify-content: space-between;
}

.cart-item__price .price {
	display: flex;
	gap: .5rem;
	align-items: center;
	margin-bottom: .625rem;
}

@media (min-width: 1024px) {

	.cart-item__price .price {
		gap: 1rem
	}
}

.cart-item__price .price-red {
	font-weight: 800;
}

.cart-item__price .price-old{
	font-weight: 300;
	font-size: 12px;
	line-height: 27px;
}

.cart-item__price .price-percent {
	font-weight: 300;
	font-size: 16px;
}

.cart-item__controls {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
}

@media (min-width: 1024px) {

	.cart-item__controls {
		align-items: flex-end
	}
}

.cart-item__price {
	display: flex;
	gap: 7px;
}
.cart-item__title {
	font-weight: 400;
	font-size: 14px;
}
.cart-item__counter {
	display: flex;
	align-items: center;
	margin-bottom: 1.25rem;
	border: 1px solid #ddd;
	border-radius: 5px;
	padding: 4px 16px;
	gap: 4px;
}

@media (min-width: 1024px) {

	.cart-item__counter {
		margin-bottom: 0
	}
}

.cart-item__counter > div {
	margin-right: 1rem;
}

.cart-item__counter a {
	font-size: 20px;
	margin-top: -3px;
}

.cart-item__counter input {
	width: 1.5rem;
	text-align: center;
}

.cart-item__b-links {
	color: #0000004d;
	flex-direction: column;
	gap: .25rem;
	margin-left: -9px;
}

.cart-item__b-links > div {
	min-width: 140px;
}

@media (min-width: 1280px) {

	.cart-item__b-links {
		margin-left: 0;
		flex-direction: row;
		gap: 1rem
	}
	.cart-item__b-links > div {
		min-width: auto;
	}
}

.cart-item__b-links a {
	display: flex;
	align-items: center;
	font-weight: 300;
	font-size: 14px;
}

.cart-item__b-links a svg {
	transition: .15s;
	fill: #0000004d;
	float: left;
	height: 15px;
}

.cart-item__b-links a:hover {
	color: #111111;
}

.cart-item__b-links a:hover svg {
	fill: #111111;
}

.cart-item__b-links .cart-item__tofav svg {
	height: 26px;
	margin-top: -4px;
}
@media (max-width: 1024px) {
	.cart-item__top {
		flex-direction: column;
		flex: 1;
		padding-bottom: 10px;
	}
	.cart-item__controls {
		align-items: flex-end;
	}
	.cart-item__counter {
		margin: 0;
	}
	.cart-item__b-links {
		flex-direction: row;
	}
	.cart-item__b-links > div {
		min-width: auto;
	}
	.cart-item__b-links > div span {
		display: none;
	}
}
#promocode_err_text {
	margin-top: 5px;
	font-size: 14px;
	display: flex;
	justify-content: space-between;
}
#promocode_err_text > span {
	cursor: pointer;
	color: #969696;
	letter-spacing: .5px;
}
.coupon-before-price {
	text-decoration: line-through;
	color: #939292;
	margin-right: .5rem;
}
.order-form__reg {
	margin-top: 10px;
}

.order-form__reg-firstline {
	font-weight: 500;
	font-size: 24px;
	margin-bottom: 20px;
    line-height: 30px;
}
.order-form__reg-desc {
	font-weight: 300;
	font-size: 14px;
	margin-bottom: 20px;
}
.order-form__reg-button {
	width: 100%;
	color: #000 !important;
}
.to-checkout-button.loading {
	position: relative;
	color: #808080;
}
.to-checkout-button.loading .loader-overlay {
	position: absolute;
	display: flex;
	width: 100%;
	justify-content: center;
	background-color: #ffffff4d;
	height: 100%;
	align-items: center;
}







/* End */
/* /local/templates/jackarno/components/bitrix/sale.basket.basket/.default/style.css?17709442587742 */
