/* Complex */
:root {
	--characteristics-grid-collumn-scheme: 1fr;
	--inner-border-radius: 12px;
	--vj-complex-v1-max-width: 600px;
}
.fancybox__slide:has(.vj-complex-v1) {
	justify-content: start;
}
.vj-complex-v1 .swiper-button-next:after,
.vj-complex-v1 .swiper-button-prev:after {
	content: none;
}


.vj-complex-v1 {
	display: none;
	max-width: 600px;
	width: 100%;
}
.vj-complex-v1__top-row {
	margin-bottom: 10px;
	display: flex;
	justify-content: space-between;
}
.vj-complex-v1__header {
	font-size: 24px;
	line-height: 1.5;
	font-weight: 800;
}
.swiper-complex-v1 {
	margin-bottom: 8px;
	position: relative;
}
.swiper-complex-thumb img {
	cursor: pointer;
}
.vj-complex-v1 .swiper-button-prev,
.vj-complex-v1 .swiper-button-next {
	width: 32px;
	height: 32px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	color: white;
	border: 1px solid white;
	background-color: rgba(255, 255, 255, .5);
	transition: 0.3s ease-in;
}
.vj-complex-v1 .swiper-button-prev:hover,
.vj-complex-v1 .swiper-button-next:hover {
	border-color: var(--popup-theme-color);
	background-color: var(--popup-theme-color);
}
.vj-complex-v1 .swiper-button-prev svg {
	padding-right: 2px;
}
.vj-complex-v1 .swiper-button-next svg {
	padding-left: 2px;
}
.vj-fancy-close {
	font-size: 28px;
}
.vj-complex-v1__sliders-container {
	display: flex;
	flex-direction: column;
}
.swiper-complex-v1 {
	width: 100%;
}
.vj-complex-v1__swiper-container {
	width: 100%;
}

.vj-complex-v1__characteristics {
	display: flex;
	flex-direction: column;
}
.vj-complex-v1__characteristics-header {
	margin: 20px 0;
	font-size: 23;
	font-weight: 400;
	line-height: 1.4;
}
.vj-complex-v1__characteristics-table {
	margin-bottom: 30px;
	display: grid;
	grid-template-columns: var(--characteristics-grid-collumn-scheme);
	gap: 20px;
}
.vj-complex-v1__characteristics-table p {
	font-size: 15px;
}
.vj-complex-v1__characteristics-label {
	margin-bottom: 5px;
	color: rgba(31, 24, 18);
	font-size: 14px;
	font-weight: 800;
	line-height: 1.3;
}
.vj-complex-v1__characteristics-label i {
	font-size: 16px;
}
.vj-complex-v1__characteristics-label img {
	height: 16px;
	margin-right: 5px;
}
.vj-complex-v1__characteristics-text {
	font-size: 12px;
	line-height: 1.3;
}
.vj-complex-v1__price-container {
	margin-bottom: 30px;
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
}
.vj-complex-v1__discount-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
}
.vj-complex-v1__price-text {
	color: #0A0A0A;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.3;
}
.vj-complex-v1__price-discount-percent {
	padding: 3px 10px;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	background: rgba(228, 36, 23, .5);
	border-radius: 25px;
}
.vj-complex-v1__price-old {
	color: rgba(31, 24, 18, .5);
	white-space: nowrap;
	text-decoration: line-through;
}
.vj-complex-v1__price {
	font-size: calc(1.275rem + .3vw);
	line-height: 1.3;
	font-weight: 800;
	white-space: nowrap;
	text-align: center;
}
.vj-complex-v1__socials-wrapper {
	margin-bottom: 15px;
	display: grid;
	grid-template-columns: 1fr;
	align-items: center;
	gap: 30px;
}
.vj-complex-v1__socials-container {
	display: flex;
	align-items: center;
	gap: 45px;
}
.vj-complex-v1__socials-container img	{
	max-width: 100%;
}
.vj-complex-v1__socials-text,
.vj-complex-v1__tip {
	font-size: 15px;
	line-height: 1.2;
	font-weight: 400;
}
.vj-complex-v1__tip {
	margin-bottom: 12px;
}
.vj-complex-v1__form {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.vj-complex-v1__form-label {
	padding: 10px;
	display: flex;
	align-items: center;
	gap: 5px;
	width: 100%;
	background-color: #f6f6f6;
	background-clip: padding-box;
	border: 1px solid var(--popup-theme-color);
	border-radius: var(--elements-border-radius);
	transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.vj-complex-v1__form-label:has(:focus) {
	background-color: #fff;
}
.vj-complex-v1__form-label i {
	font-size: 24px;
}
.vj-complex-v1__form input {
	padding: 0 !important;
	border-radius: 0 !important;
	margin-top: 2px;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1;
	color: #111;
	border: none;
	background-color: transparent;
	outline: none;
}
.vj-complex-v1__button-submit {
	padding: 15px 30px;
}
@media (min-width: 620px) {
	.vj-complex-v1 {
		border-radius: var(--inner-border-radius);
	}
}

@media (min-width: 480px) {
	.vj-complex-v1__discount-row {
		justify-content: end;
	}
	.vj-complex-v1__price {
		text-align: right;
	}
	.vj-complex-v1__price-container {
		grid-template-columns: 2fr 1fr;
	}
	.vj-complex-v1__socials-wrapper {
		grid-template-columns: 3fr 2fr;
	}
	.vj-complex-v1__socials-container {
		gap: 5px;
	}
	.vj-complex-v1__form-label {
		padding: 10px 30px;
	}
}
@media (min-width: 570px) {
	.vj-complex-v1__form {
		flex-direction: row;
	}
}
@media (min-width: 992px) {
	.fancybox__slide:has(.vj-complex-v1) {
		justify-content: center;
	}
	.vj-complex-v1 {
		max-width: 1110px !important;
	}
	.vj-complex-v1__characteristics {
		max-height: 430px;
		overflow-y: auto;
	}
	.vj-complex-v1__characteristics-header {
		margin-top: 0;
	}
	.vj-complex-v1__sliders-container {
		flex-direction: row;
	}
	.vj-complex-v1__sliders-container {
		position: relative;
		gap: 20px;
	}
	.vj-complex-v1__swiper-container {
		position: sticky;
		top: 0;
		width: 58%;
		height: fit-content;
	}
	.vj-complex-v1__socials-wrapper {
		margin-right: 15px;
		gap: 10px;
	}
	.vj-bottom-row {
		margin-top: 15px;
		display: grid;
		grid-template-columns: 39fr 19fr 42fr;
		align-items: center;
		gap: 10px;
	}
	.vj-complex-v1__form {
		align-items: center;
		justify-content: space-between;
	}
	.vj-complex-v1__form input {
		width: 100%;
	}
	.vj-complex-v1__form-label {
		margin-left: 10px;
		padding: 10px;
		/*width:  calc(11.9375rem + 55 * (100vw - 992px) / ( 1129 - 992));*/
	}
	.vj-complex-v1__button-submit {
		padding: 15px;
	}
	.vj-complex-v1__price-container {
		margin-bottom: 0;
		align-content: end;
		flex-grow: 1;
	}
	.vj-complex-v1__price-text {
		height: min-content;
	}
	.vj-complex-v1__price-wrapper {
		height: min-content;
	}
}

@media (min-width: 1126px) {
	.vj-complex-v1__form-label {
		width: 246px;
	}
}