

/* Start:/configurator/css/styles.css?177253033711959*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

@keyframes flareAnimation {
	0% {
		left: -150%;
	}
	100% {
		left: 150%;
	}
}

@keyframes placeHolderShimmer {
		0% {
			background-position: 0 0;
		}

		100% {
			background-position: 10000px 0;
		}
	}

.flex {
	display: flex;
	flex-wrap: wrap;
}
.new-btn {
	border-radius: 10px;
	background: #343232;
	display: inline-block;
	padding: 20px 42px;
	font-size: 18px;
	font-weight: 600;
	text-align: center;
	transition: 300ms;
	text-decoration: none!important;
	color: #fff!important;
	position: relative;
	outline: none;
	border: none;
	overflow: hidden;
}
.new-btn:hover {
	background: #E32026;
	transform: scale(1.03);
}
.new-btn--animated:after {
	content: '';
	position: absolute;
	top: 0;
	height: 100%;
	width: 45px;
	transform: skewX(-45deg);
	left: -150%;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.4));
	animation: flareAnimation 3s infinite linear; 
}
.slick-slide,
.slick-slide * {
	outline: none!important;
}
.input-class {
	display: block;
	height: 60px;
	width: 100%;
	border-radius: 8px;
	border: 1px solid rgba(0, 0, 0, 0.2);
	transition: 300ms;
	padding: 0 20px;
	font-size: 18px;
	font-weight: 500;
}
.input-class:focus {
	border-color: #343232;
}
.input-class::placeholder {
	transition: 300ms;
}
.input-class:focus::placeholder {
	opacity: 0;
}
.con--page,
.con--page * {
	font-family: 'Montserrat', sans-serif;
}
.con--page {
	margin: 0 -150px;
	padding: 40px 0 60px 0;
	color: #343232;
	font-weight: 500;
	position: relative;
}
.con--page img {
	max-width: 100%;
	display: block;
}
.con__row {
	gap: 60px;
}
.con__col--1,
.con__col--3 {
	flex: 0 0 350px;
}
.con__col--2 {
	flex: 1;
	max-width: 620px;
	margin: 0 auto;
}
.con__title {
	font-size: 40px;
	text-align: center;
	font-weight: 600;
	margin-bottom: 35px;
	justify-content: center;
}
.con__title > span {
	position: relative;
}
.con__items {
	display: grid;
	grid-template-columns: 100%;
	gap: 45px;
}
.con__item > label {
	display: block;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 20px;
}
.con__input {
	display: block;
	border-radius: 5px;
	height: 45px;
}
.con__select > select {
	background: url(/configurator/css/../img/select-arrow.svg) no-repeat right 10px top 50% #fff;
	height: 50px;
	line-height: 50px;
	white-space: nowrap;
	width: 100%;
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 8px;
	padding: 0 40px 0 16px;
	position: relative;
	cursor: pointer;
	transition: 300ms;
	font-size: 14px;
	appearance: none;
	-webkit-appearance: none;
}
.con__select > select option {
	padding: 8px 15px;
	display: block;
}
.con__checkboxes {
	display: grid;
	grid-template-columns: 100%;
	gap: 12px;
}
.con__checkbox {
	position: relative;
}
.con__checkbox > input {
	position: absolute;
	opacity: 0;
}
.con__checkbox > label {
	padding: 0 0 0 33px;
	min-height: 24px;
	position: relative;
	display: block;
	cursor: pointer;
	font-weight: 500;
	font-size: 14px;
}
.con__checkbox > label:before {
	content: '';
	width: 22px;
	height: 22px;
	border-radius: 5px;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	cursor: pointer;
	border: 1px solid rgba(0, 0, 0, 0.2);
}
.con__checkbox > label:after {
	content: '';
	background: #343232;
	width: 10px;
	height: 10px;
	border-radius: 3px;
	position: absolute;
	top: 6px;
	left: 6px;
	opacity: 0;
	transition: 300ms;
	z-index: 2;
}
.con__checkbox > input:checked + label {
	border-color: #343232;
}
.con__checkbox > input:checked + label:after {
	opacity: 1;
}
.con__radios {
	gap: 4px;
	position: relative;
	padding-bottom: 30px;
}
.con__radio > input {
	position: absolute;
	opacity: 0;
}
.con__radio > label {
	display: block;
	font-weight: 500;
	font-size: 15px;
	cursor: pointer;
}
.con__radio-ico {
	width: 38px;
	height: 38px;
	padding: 4px;
	border: 1px solid transparent;
	border-radius: 50px;
}
.con__radio-ico img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50px;
}
.con__radio-title {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 3;
	font-size: 14px;
	display: none;
}
.con__radio-title > span {
	color: #343232;
}
.con__radio > input:checked + label .con__radio-ico {
	border-color: #343232;
}
.con__radio > input:checked + label .con__radio-title {
	display: block;
}
.con__calc {
	margin-top: 50px;
}
.con__calc-title {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 22px;
}
.con__calc-items {
	border: 1px solid rgba(0, 0, 0, 0.2);
	padding: 15px;
	display: grid;
	grid-template-columns: 100%;
	gap: 18px;
	border-radius: 5px;
}
.con__calc-item {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 8px;
}
.con__calc-item-title {
	font-size: 13px;
	color: rgba(0, 0, 0, 0.4);
	font-weight: 600;
}
.con__calc-item-dotted {
	border-bottom: 1px dotted rgba(0, 0, 0, 0.2);
	transform: translateY(-2px);
}
.con__calc-item-value {
	font-size: 19px;
	font-weight: 600;
}
.con__images-block {
	margin-bottom: 30px;
}
.con__image {
	display: flex;
	height: 100%;
}
.con__image > a {
	display: flex;
	width: 100%;
	height: 390px;
	justify-content: center;
	align-items: center;
	position: relative;
}
.con__image > a:before {
	content: '';
	background: url(/bitrix/images/lbg.png) no-repeat center / contain;
	width: 30%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	opacity: 0.3;
}
.con__image > a > img {
	max-width: 100%;
	max-height: 100%;
}
.con__thumbs {
	position: relative;
}
.con__thumb {
	/*padding: 10px;*/
}
.con__thumb-box {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100px;
	border: 1px solid transparent;
	cursor: pointer;
	transition: 300ms;
	border-radius: 5px;
}
.con__thumb-box > img {
	max-width: 90%;
	max-height: 90%;
}
.con__thumb.slick-current .con__thumb-box {
	border-color: #343232;
}
.con__arrow {
	position: absolute;
	top: 50%;
	margin-top: -24px;
	z-index: 10;
	cursor: pointer;
}
.con__arrow svg {
	display: block;
}
.con__arrow svg {
	fill: #343232;
}
.con__arrow svg .border {
	color: #343232;
}
.con__arrow--prev {
	left: 25px;
}
.con__arrow--next {
	right: 25px;
}
.con__arrow--next svg {
	transform: rotate(180deg);
}
.con__arrow:hover svg {
	fill: #343232;
}
.con__arrow:hover svg .border {
	color: #343232;
}
.slick-slider {
	width: 100%;
}
.con__bottom {
	margin-top: 60px;
}
.con__bottom-cont {
	width: 100%;
}
.con__summary {
	margin-bottom: 50px;
	justify-content: space-between;
	gap: 25px 15px;
	align-items: center;
}
.con__summary-left {
	align-items: center;
	margin-bottom: 10px;
}
.con__summary-title {
	font-size: 24px;
	font-weight: 600;
}
.con__summary-currencies {
	gap: 8px;
	margin-left: 10px;
}
.con__summary-currency {
	border-radius: 5px;
	padding: 6px 12px;
	background: #f2f2f2;
	cursor: pointer;
	border: 1px solid transparent;
}
.con__summary-currency.active {
	color: #343232;
	border-color: #343232;
}
.con__summary-comission {
	color: rgba(0, 0, 0, 0.6);
	font-size: 13px;
}
.con__summary-value {
	text-align: right;
	font-size: 30px;
	font-weight: bold;
	letter-spacing: 1px;
	margin-bottom: 15px;
}
.con__summary-rates {
	gap: 4px;
	align-items: center;
	font-weight: 600;
	text-align: right;
}
.con__summary-rates i {
	font-style: normal!important;
}
.con__order {
	justify-content: center;
}
.con__preloader {
	background: #fff;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
}
.con__preloader-in {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	padding-top: 100px;
}
.con__preloader-in svg {
	width: 150px;
	height: 150px;
}
.con--loading .con__animate {
	content: '';
	animation-duration: 30s;
	animation-fill-mode: forwards;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
	animation-name: placeHolderShimmer;
	background: #f2f2f2;
	background: linear-gradient(to right, #eee 8%, #dcdcdc 18%, #eee 33%);
	filter: blur(1px);
	border-radius: 5px;
}
.con--loading .con__animate * {
	visibility: hidden!important;
	opacity: 0!important;
}
.con__thumbs-block {
	height: 98px;
}
.con__main {
	position: relative;
}
.con__form {
	background: #fff;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.27);
	padding: 45px 30px;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transform: scale(0);
	visibility: hidden;
	transition: 300ms;
	z-index: 50;
}
.con__form-title {
	font-size: 30px;
	font-weight: 500;
	text-align: center;
	margin-bottom: 22px;
}
.con__form-subtitle {
	text-align: center;
	font-size: 18px;
	margin-bottom: 40px;
}
.con__form-labels {
	display: grid;
	grid-template-columns: 100%;
	gap: 25px;
	margin-bottom: 30px;
}
.con__form-submit {
	justify-content: center;
}
.con__form-center {
	max-width: 380px;
	margin: 0 auto;
}
.con__form-close {
	cursor: pointer;
	position: absolute;
	top: 14px;
	right: 14px;
	z-index: 11;
}
.con--form-opened .con__form {
	transform: scale(1);
	visibility: visible;
}
.con--form-opened .con__order {
	display: none;
}
.con__form-success {
	background: #fff;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	transform: scale(0);
	visibility: hidden;
	justify-content: center;
	align-items: center;
	padding: 20px 30px;
}
.con__form-success-ico {
	background: #67d967;
	width: 200px;
	height: 200px;
	border-radius: 100px;
	border: 15px solid rgba(0, 0, 0, 0.1);
	margin: 0 auto 40px auto;
	justify-content: center;
	align-items: center;
}
.con__form-success-ico > svg {
	width: 80%;
	transform: scale(0);
	transition: 750ms;
}
.con__form-success-ico > svg > path {
	fill: #fff;
}
.con__form-success-title {
	font-size: 30px;
	font-weight: 500;
	text-align: center;
	margin-bottom: 30px;
}
.con__form-success-text {
	text-align: center;
	font-size: 17px;
	line-height: 1.5;
}
.con__form-success--visible {
	transform: scale(1);
	visibility: visible;
	z-index: 10;
}
.con__form-success--visible .con__form-success-ico > svg {
	transform: scale(1);
}

.detail .con__radios {
	padding-bottom: 0;
}
.detail .con__radio-title {
	display: none!important;
}
.detail .con__items {
	gap: 30px;
}
.detail .info .price .price_val {
	font-size: 28px;
}
.detail .con__summary-currencies {
	margin: 10px 0 0 0;
	justify-content: center;
}
.dchars {
	margin-top: 20px;
}
.dchars__items {
	display: grid;
	grid-template-columns: 100%;
	gap: 18px;
}
.dchars__item {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 8px;
}
.dchars__item-title {
	font-size: 14px;
	color: rgba(0, 0, 0, 0.7);
	font-weight: 400;
}
.dchars__item-dotted {
	border-bottom: 1px dotted rgba(0, 0, 0, 0.2);
	transform: translateY(-2px);
}
.dchars__item-value {
	font-size: 14px;
	font-weight: 600;
}
.visible-mobile {
	display: none!important;
}
.con--first .con__bottom,
.con--first .con__calc,
.con--first .con__item--options {
	display: none!important;
}
.con--first .con__title > span:before {
	content: '';
	background: url(/configurator/img/arrow2.png) no-repeat center / contain;
	width: 60px;
	height: 60px;
	position: absolute;
	right: calc(100% + 28px);
	top: 25px;
}
.con--loading .con__title {
	visibility: hidden;
}
@media(max-width: 1500px) {
	.con--page {
		margin: 0;
	}
	.con__row {
		gap: 30px;
	}
	.con__col--2 {
		max-width: 450px;
	}
	.con__col--1, 
	.con__col--3 {
		flex: 0 0 280px;
	}
	.con__summary-value {
		text-align: left;
	}
}
@media(max-width: 1250px) {
	.con__col {
		flex: 0 0 100%;
		max-width: 100%;
	}
	/*.con__col--2 {
		order: -1;
	}*/
	.visible-desktop {
		display: none!important;
	}
	.visible-mobile {
		display: block!important;
	}
	.con--first .con__title > span:before {
		display: none;
	}
}
@media(max-width: 991px) {
	.con__items {
		gap: 20px;
	}
	.con__item > label {
		margin-bottom: 13px;
	}
	.con__calc {
		margin-top: 35px;
	}
	.con__image > a {
		height: 250px;
	}
	.con__form {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}
	.con__summary {
		margin-bottom: 25px;
	}
	.con__bottom {
		margin-top: 35px;
	}
	.con__title {
		font-size: 33px;
	}
}
/* End */
/* /configurator/css/styles.css?177253033711959 */
