@charset "UTF-8";

/* Калькулятор стоимости лазерной коррекции зрения.
   Подключается только на странице калькулятора (см. art.kiev). */

.lc {
	margin: 10px 0 70px;
}

.lc *,
.lc *:before,
.lc *:after {
	box-sizing: border-box;
}

/* ---------- вводный блок ---------- */

.lc-intro {
	display: flex;
	align-items: center;
	gap: 40px;
	background: linear-gradient(120deg, #f3f6fd 0%, #f7f3fb 55%, #fdf3fa 100%);
	border-radius: 18px;
	padding: 32px 38px;
	margin: 0 0 34px;
}

.lc-intro__text p {
	margin: 0;
	font-size: 15px;
	line-height: 26px;
	color: #445a8c;
}

.lc-intro__badges {
	list-style: none;
	margin: 0;
	padding: 0;
	flex: 0 0 300px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.lc-intro__badges li {
	position: relative;
	padding: 0 0 0 22px;
	line-height: 20px;
}

.lc-intro__badges li:before {
	content: "";
	position: absolute;
	left: 0;
	top: 7px;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: linear-gradient(135deg, #3366cc, #a6358f);
}

.lc-intro__badges b {
	display: block;
	font: 600 15px/22px "glaza";
	color: #30477b;
}

.lc-intro__badges span {
	display: block;
	font-size: 13px;
	color: #7b88a8;
}

/* ---------- сетка ---------- */

.lc-grid {
	display: flex;
	align-items: flex-start;
	gap: 30px;
}

.lc-form {
	flex: 1 1 auto;
	min-width: 0;
}

.lc-result {
	flex: 0 0 360px;
	position: sticky;
	top: 20px;
}

/* ---------- шаг ---------- */

.lc-step {
	background: #fff;
	border: 1px solid #e6ebf6;
	border-radius: 16px;
	padding: 26px 30px 30px;
	margin: 0 0 18px;
	box-shadow: 0 2px 10px rgba(48, 71, 123, .05);
}

.lc-step__head {
	display: flex;
	align-items: center;
	gap: 14px;
}

.lc-step__head i {
	flex: 0 0 34px;
	height: 34px;
	border-radius: 50%;
	background: linear-gradient(135deg, #3366cc, #8e3591);
	color: #fff;
	font: 600 15px/34px "glaza";
	font-style: normal;
	text-align: center;
}

.lc-step__title {
	margin: 0;
	font: 600 19px/26px "glaza";
	color: #30477b;
	text-transform: none;
}

.lc-step__hint {
	margin: 12px 0 0;
	font-size: 13px;
	line-height: 21px;
	color: #7b88a8;
}

.lc-step__hint b {
	color: #5b6c96;
}

/* ---------- чипы выбора ---------- */

.lc-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 20px 0 0;
}

.lc-chip {
	flex: 1 1 170px;
	border: 1px solid #dde4f2;
	background: #fbfcff;
	border-radius: 12px;
	padding: 14px 16px;
	text-align: left;
	cursor: pointer;
	font-family: "glaza", Arial, sans-serif;
	color: #30477b;
	transition: border-color .2s, box-shadow .2s, transform .2s, background-color .2s;
}

.lc-chip b {
	display: block;
	font: 600 15px/22px "glaza";
}

.lc-chip span {
	display: block;
	font-size: 12px;
	line-height: 18px;
	color: #8b96b3;
	transition: color .2s;
}

.lc-chip:hover {
	border-color: #b9c8ea;
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(48, 71, 123, .09);
}

.lc-chip.is-active {
	background: linear-gradient(135deg, #3366cc, #8e3591);
	border-color: transparent;
	color: #fff;
	box-shadow: 0 8px 18px rgba(88, 63, 158, .28);
}

.lc-chip.is-active span {
	color: rgba(255, 255, 255, .78);
}

.lc-chips--sm .lc-chip {
	flex: 1 1 150px;
}

/* ---------- ползунки ---------- */

.lc-range {
	margin: 22px 0 0;
}

.lc-range__value {
	font: 600 30px/34px "glaza";
	color: #30477b;
	margin: 0 0 14px;
}

.lc-range__value em {
	font: 400 14px/20px "glaza";
	font-style: normal;
	color: #8b96b3;
}

.lc-range input[type=range] {
	-webkit-appearance: none;
	appearance: none;
	display: block;
	width: 100%;
	height: 6px;
	border-radius: 6px;
	background: linear-gradient(to right, #3366cc 0%, #a6358f var(--lc-p, 25%), #e4e9f4 var(--lc-p, 25%), #e4e9f4 100%);
	cursor: pointer;
	margin: 0;
}

.lc-range input[type=range]::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: #fff;
	border: 2px solid #8e3591;
	box-shadow: 0 3px 8px rgba(48, 71, 123, .3);
	cursor: grab;
	transition: transform .15s;
}

.lc-range input[type=range]::-webkit-slider-thumb:active {
	transform: scale(1.15);
}

.lc-range input[type=range]::-moz-range-thumb {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: #fff;
	border: 2px solid #8e3591;
	box-shadow: 0 3px 8px rgba(48, 71, 123, .3);
	cursor: grab;
}

.lc-range input[type=range]::-moz-range-track {
	height: 6px;
	border-radius: 6px;
	background: transparent;
}

.lc-range input[type=range]:focus {
	outline: none;
}

.lc-range__scale {
	display: flex;
	justify-content: space-between;
	margin: 8px 2px 0;
	font-size: 12px;
	color: #a2abc4;
}

/* ---------- превью зрения ---------- */

.lc-vision {
	margin: 26px 0 0;
	border-radius: 12px;
	background: #f6f8fd;
	padding: 22px 20px 18px;
	text-align: center;
	overflow: hidden;
}

.lc-vision__scene {
	font-family: Arial, "glaza", sans-serif;
	color: #30477b;
	letter-spacing: 6px;
	transition: filter .25s ease-out;
	will-change: filter;
}

.lc-vision__line--1 {
	font-size: 40px;
	line-height: 48px;
	font-weight: bold;
}

.lc-vision__line--2 {
	font-size: 26px;
	line-height: 34px;
	font-weight: bold;
}

.lc-vision__line--3 {
	font-size: 17px;
	line-height: 26px;
	font-weight: bold;
}

.lc-vision__cap {
	margin: 14px 0 0;
	font-size: 12px;
	color: #8b96b3;
}

.lc-vision__cap b {
	color: #8e3591;
}

/* ---------- чекбоксы ---------- */

.lc-opts {
	margin: 20px 0 0;
}

.lc-opt {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 16px 18px;
	border: 1px solid #e6ebf6;
	border-radius: 12px;
	margin: 0 0 10px;
	cursor: pointer;
	transition: border-color .2s, background-color .2s;
}

.lc-opt:hover {
	border-color: #b9c8ea;
	background: #fbfcff;
}

.lc-opt input {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.lc-opt__box {
	flex: 0 0 22px;
	height: 22px;
	margin: 1px 0 0;
	border: 2px solid #c6d1e9;
	border-radius: 6px;
	position: relative;
	transition: border-color .2s, background-color .2s;
}

.lc-opt__box:after {
	content: "";
	position: absolute;
	left: 6px;
	top: 2px;
	width: 5px;
	height: 10px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg) scale(0);
	transition: transform .15s;
}

.lc-opt input:checked~.lc-opt__box {
	background: linear-gradient(135deg, #3366cc, #8e3591);
	border-color: transparent;
}

.lc-opt input:checked~.lc-opt__box:after {
	transform: rotate(45deg) scale(1);
}

.lc-opt input:focus~.lc-opt__box {
	box-shadow: 0 0 0 3px rgba(51, 102, 204, .18);
}

.lc-opt.is-off {
	opacity: .55;
}

.lc-opt__body {
	flex: 1 1 auto;
	min-width: 0;
}

.lc-opt__body b {
	display: block;
	font: 600 15px/22px "glaza";
	color: #30477b;
}

.lc-opt__body span {
	display: block;
	font-size: 12px;
	line-height: 19px;
	color: #8b96b3;
}

.lc-opt__price {
	flex: 0 0 auto;
	font: 600 15px/22px "glaza";
	color: #8e3591;
	white-space: nowrap;
}

/* ---------- панель результата ---------- */

.lc-result__inner {
	background: linear-gradient(155deg, #2f4f9e 0%, #46409b 48%, #8e3591 100%);
	border-radius: 18px;
	padding: 28px 28px 26px;
	color: #fff;
	box-shadow: 0 16px 34px rgba(48, 51, 123, .25);
}

.lc-result__label {
	font-size: 12px;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .6);
}

.lc-result__prog {
	font: 600 23px/30px "glaza";
	margin: 6px 0 0;
}

.lc-result__note {
	font-size: 13px;
	line-height: 20px;
	color: rgba(255, 255, 255, .72);
	margin: 10px 0 0;
}

.lc-result__total {
	margin: 22px 0 0;
	padding: 20px 0 0;
	border-top: 1px solid rgba(255, 255, 255, .2);
}

.lc-result__total-label {
	font-size: 12px;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .6);
}

.lc-result__total-value {
	font: 600 42px/50px "glaza";
	margin: 2px 0 0;
	white-space: nowrap;
}

.lc-result__total-value i {
	font-style: normal;
	font-size: 24px;
	margin: 0 0 0 6px;
	color: rgba(255, 255, 255, .7);
}

.lc-result__total-sub {
	font-size: 13px;
	color: rgba(255, 255, 255, .72);
}

.lc-result__list {
	list-style: none;
	margin: 20px 0 0;
	padding: 18px 0 0;
	border-top: 1px solid rgba(255, 255, 255, .2);
}

.lc-result__list li {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	font-size: 13px;
	line-height: 20px;
	padding: 5px 0;
	color: rgba(255, 255, 255, .85);
}

.lc-result__list li span {
	flex: 0 0 auto;
	font-weight: 600;
	color: #fff;
	white-space: nowrap;
}

.lc-result__alt {
	font-size: 13px;
	line-height: 20px;
	color: rgba(255, 255, 255, .85);
	background: rgba(255, 255, 255, .1);
	border-radius: 10px;
	padding: 12px 14px;
	margin: 16px 0 0;
}

.lc-result__alt:empty {
	display: none;
}

.lc-result__alt b {
	color: #fff;
}

.lc-result__actions {
	margin: 22px 0 0;
}

.lc-btn {
	display: block;
	width: 100%;
	text-align: center;
	border: 0;
	border-radius: 8px;
	padding: 13px 16px;
	font: 600 15px/20px "glaza";
	cursor: pointer;
	text-decoration: none;
	transition: background-color .25s, color .25s, box-shadow .25s;
}

.lc-btn--main {
	background: #fff;
	color: #8e3591;
	box-shadow: 0 6px 16px rgba(0, 0, 0, .16);
}

.lc-btn--main:hover {
	background: #ffeafc;
	color: #7d2b80;
}

.lc-btn--ghost {
	background: transparent;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, .45);
	margin: 10px 0 0;
	font-family: "glaza", Arial, sans-serif;
}

.lc-btn--ghost:hover {
	background: rgba(255, 255, 255, .14);
	border-color: #fff;
}

.lc-result__disclaimer {
	margin: 18px 0 0;
	font-size: 11px;
	line-height: 17px;
	color: rgba(255, 255, 255, .55);
}

/* ---------- заявка ---------- */

.lc-lead {
	display: flex;
	gap: 40px;
	align-items: flex-start;
	margin: 34px 0 0;
	background: #f6f8fd;
	border-radius: 18px;
	padding: 34px 38px;
	scroll-margin-top: 90px;
}

.lc-lead__text {
	flex: 1 1 auto;
}

.lc-lead__title {
	font: 600 24px/30px "glaza";
	color: #30477b;
	margin: 0 0 12px;
}

.lc-lead__text p {
	margin: 0;
	font-size: 14px;
	line-height: 24px;
	color: #5b6c96;
}

.lc-lead__phone {
	margin: 18px 0 0;
	font: 600 26px/32px "glaza";
}

.lc-lead__phone a {
	color: #8e3591;
	text-decoration: none;
	font: inherit;
}

.lc-lead__phone span {
	color: #8b96b3;
	font-weight: 400;
}

.lc-lead__form {
	flex: 0 0 400px;
}

.lc-lead__form .inp_1 {
	max-width: none;
}

.lc-lead__summary {
	font-size: 12px;
	line-height: 19px;
	color: #7b88a8;
	background: #fff;
	border: 1px dashed #ccd6ec;
	border-radius: 8px;
	padding: 12px 14px;
	margin: 0 0 12px;
	white-space: pre-line;
}

.lc-lead__form .sogl {
	margin: 0 0 14px;
}

.lc-lead__form .send {
	width: 100%;
}

/* ---------- вопросы ---------- */

.lc-facts {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	margin: 34px 0 0;
}

.lc-fact {
	flex: 1 1 260px;
	border: 1px solid #e6ebf6;
	border-radius: 14px;
	padding: 22px 24px;
}

.lc-fact__q {
	font: 600 16px/23px "glaza";
	color: #30477b;
	margin: 0 0 8px;
}

.lc-fact__a {
	font-size: 13px;
	line-height: 21px;
	color: #7b88a8;
}

/* ---------- адаптив ---------- */

@media only screen and (max-width:1160px) {
	.lc-result {
		flex: 0 0 320px;
	}

	.lc-intro {
		padding: 28px 30px;
		gap: 30px;
	}

	.lc-intro__badges {
		flex: 0 0 250px;
	}

	.lc-lead__form {
		flex: 0 0 340px;
	}
}

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

	.lc-grid,
	.lc-intro,
	.lc-lead {
		display: block;
	}

	.lc-intro__badges {
		flex-direction: row;
		flex-wrap: wrap;
		gap: 18px;
		margin: 22px 0 0;
	}

	.lc-intro__badges li {
		flex: 1 1 200px;
	}

	.lc-result {
		position: static;
		margin: 22px 0 0;
	}

	.lc-lead__form {
		margin: 26px 0 0;
	}

	.lc-lead__form .inp_1,
	.lc-lead__form .send,
	.lc-lead__summary {
		max-width: 460px;
	}
}

@media only screen and (max-width:600px) {
	.lc-intro {
		padding: 22px 20px;
	}

	.lc-step {
		padding: 20px 18px 24px;
	}

	.lc-lead {
		padding: 24px 20px;
	}

	.lc-chip {
		flex: 1 1 100%;
	}

	.lc-result__inner {
		padding: 24px 20px;
	}

	.lc-result__total-value {
		font: 600 34px/42px "glaza";
	}

	.lc-opt {
		flex-wrap: wrap;
		padding: 14px;
	}

	.lc-opt__price {
		width: 100%;
		padding: 0 0 0 36px;
	}

	.lc-vision__line--1 {
		font-size: 30px;
		line-height: 38px;
	}

	.lc-vision__line--2 {
		font-size: 21px;
		line-height: 29px;
	}
}
