.sl-popup,
.sl-popup * {
	box-sizing: border-box;
}

.sl-popup {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: grid;
	place-items: center;
	padding: 18px;
	font-family: Arial, Helvetica, sans-serif;
	opacity: 0;
	visibility: hidden;
	transition: opacity .22s ease, visibility .22s ease;
}

.sl-popup.is-open {
	opacity: 1;
	visibility: visible;
}

.sl-popup__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(25, 43, 56, .58);
	backdrop-filter: blur(8px);
}

.sl-popup--dark .sl-popup__backdrop {
	background: rgba(0, 10, 19, .78);
}

.sl-popup__dialog {
	position: relative;
	width: min(1500px, 96vw);
	height: min(760px, calc(100vh - 36px));
	min-height: 650px;
	display: grid;
	grid-template-columns: 58% 42%;
	overflow: hidden;
	border: 1px solid rgba(46, 93, 120, .16);
	border-radius: 32px;
	background: #f7fafc;
	box-shadow: 0 32px 90px rgba(25, 54, 73, .34);
	transform: translateY(20px) scale(.985);
	transition: transform .25s ease;
	min-width: 0;
	outline: none;
}

.sl-popup--dark .sl-popup__dialog {
	border-color: rgba(55, 204, 255, .55);
	background: #031521;
	box-shadow: 0 32px 90px rgba(0, 0, 0, .5);
}

.sl-popup.is-open .sl-popup__dialog {
	transform: none;
}

.sl-popup__close {
	position: absolute;
	z-index: 8;
	top: 17px;
	right: 17px;
	width: 42px;
	height: 42px;
	border: 1px solid rgba(20, 42, 59, .16);
	border-radius: 50%;
	background: rgba(255, 255, 255, .9);
	cursor: pointer;
}

.sl-popup__close span {
	position: absolute;
	left: 11px;
	top: 20px;
	width: 20px;
	height: 2px;
	background: #283c49;
}

.sl-popup__close span:first-child {
	transform: rotate(45deg);
}

.sl-popup__close span:last-child {
	transform: rotate(-45deg);
}

.sl-popup__visual {
	position: relative;
	overflow: hidden;
	padding: 39px 34px 31px 44px;
	color: #253845;
	background:
		radial-gradient(circle at 75% 56%, rgba(74, 177, 225, .2), transparent 30%),
		linear-gradient(145deg, #fff 0%, #edf5f8 58%, #e5f0f5 100%);
	min-width: 0;
}

.sl-popup--dark .sl-popup__visual {
	padding-top: 42px;
	color: #f4f8fb;
	background:
		radial-gradient(circle at 82% 56%, rgba(15, 179, 239, .24), transparent 26%),
		radial-gradient(circle at 12% 85%, rgba(0, 182, 236, .12), transparent 28%),
		linear-gradient(130deg, #020e17 0%, #052338 60%, #041823 100%);
}

.sl-popup--dark .sl-popup__visual::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image: radial-gradient(circle, rgba(10, 195, 245, .38) 1px, transparent 1.5px);
	background-size: 14px 14px;
	mask-image: radial-gradient(circle at 3% 95%, #000, transparent 29%);
}

.dot-field {
	position: absolute;
	pointer-events: none;
	background-image: radial-gradient(circle, rgba(14, 162, 221, .32) 1.6px, transparent 2px);
	background-size: 13px 13px;
}

.dot-field--left {
	width: 310px;
	height: 390px;
	left: -220px;
	top: 45px;
	mask-image: radial-gradient(ellipse at right, #000 5%, transparent 69%);
}

.dot-field--bottom {
	width: 570px;
	height: 280px;
	left: -80px;
	bottom: -205px;
	mask-image: radial-gradient(ellipse at top, #000 5%, transparent 70%);
}

.radial-mark {
	position: absolute;
	width: 390px;
	aspect-ratio: 1;
	top: -235px;
	left: 52%;
	border-radius: 50%;
	border: 1px solid rgba(85, 184, 225, .22);
	box-shadow: 0 0 0 32px rgba(68, 177, 222, .035), 0 0 0 72px rgba(68, 177, 222, .025);
}

.radial-mark::before {
	content: "";
	position: absolute;
	inset: -90px;
	background: repeating-conic-gradient(from 0deg, rgba(71, 164, 206, .16) 0 .35deg, transparent .35deg 4deg);
	mask-image: radial-gradient(circle, transparent 0 47%, #000 48% 52%, transparent 53%);
}

.sl-popup__grid {
	position: absolute;
	inset: 0;
	opacity: .25;
	background-image:
		linear-gradient(rgba(31, 180, 233, .22) 1px, transparent 1px),
		linear-gradient(90deg, rgba(31, 180, 233, .22) 1px, transparent 1px);
	background-size: 38px 38px;
	mask-image: linear-gradient(90deg, transparent 20%, #000 70%);
}

.sl-popup__rays {
	position: absolute;
	width: 440px;
	aspect-ratio: 1;
	right: 70px;
	top: -210px;
	border: 1px solid rgba(21, 196, 250, .35);
	border-radius: 50%;
	box-shadow: 0 0 0 45px rgba(10, 166, 224, .05), 0 0 0 95px rgba(10, 166, 224, .04);
}

.sl-popup__copy {
	position: relative;
	z-index: 3;
	width: 69%;
	min-width: 0;
}

.sl-popup__title {
	margin: 0 0 13px;
	font-family: "Arial Narrow", Impact, sans-serif;
	font-size: clamp(42px, 3.65vw, 63px);
	line-height: .98;
	letter-spacing: 0;
	text-transform: uppercase;
	overflow-wrap: anywhere;
}

.sl-popup--dark .sl-popup__title {
	margin-bottom: 28px;
	color: #f4f8fb;
	font-size: clamp(46px, 4.15vw, 72px);
	line-height: .95;
}

.sl-popup__title span {
	display: block;
}

.sl-popup__title .accent {
	color: #0879d3;
}

.sl-popup--dark .sl-popup__title .accent {
	color: #08bff2;
}

.sl-popup__subtitle {
	max-width: 450px;
	margin: 0 0 21px;
	font-size: 20px;
	line-height: 1.3;
}

.benefits {
	display: grid;
	gap: 15px;
	max-width: 505px;
}

.sl-popup--dark .benefits {
	gap: 22px;
	max-width: 510px;
}

.benefit {
	display: grid;
	grid-template-columns: 75px 1fr;
	gap: 13px;
	align-items: start;
	min-width: 0;
}

.benefit > div:last-child {
	min-width: 0;
}

.benefit__icon {
	width: 68px;
	height: 68px;
	display: grid;
	place-items: center;
}

.sl-popup--dark .benefit__icon {
	width: 72px;
	height: 72px;
	border: 1px solid rgba(19, 205, 255, .72);
	clip-path: polygon(19% 0, 81% 0, 100% 19%, 100% 81%, 81% 100%, 19% 100%, 0 81%, 0 19%);
	background: rgba(3, 38, 57, .7);
}

.benefit__icon svg {
	width: 57px;
	fill: none;
	stroke: #284454;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.sl-popup--dark .benefit__icon svg {
	width: 48px;
	stroke: #08bff2;
}

.benefit h2 {
	margin: 1px 0 4px;
	color: #0879d3;
	font-size: 24px;
	line-height: 1;
}

.sl-popup--dark .benefit h2 {
	color: #08bff2;
	font-size: 25px;
}

.benefit p {
	margin: 0;
	color: #33444e;
	font-size: 16px;
	line-height: 1.32;
}

.sl-popup--dark .benefit p {
	color: rgba(247, 251, 253, .94);
	font-size: 17px;
	line-height: 1.35;
}

.worker {
	position: absolute;
	z-index: 2;
	right: -12px;
	bottom: -5px;
	width: 407px;
	height: 610px;
	overflow: hidden;
	pointer-events: none;
	clip-path: polygon(6% 0, 64% 0, 76% 10%, 84% 25%, 100% 45%, 100% 100%, 0 100%, 0 45%, 2% 24%);
	mask-image: radial-gradient(ellipse 76% 76% at 56% 55%, #000 0 62%, transparent 100%);
}

.sl-popup--dark .worker {
	right: -18px;
	bottom: -4px;
	width: 390px;
	clip-path: polygon(10% 0, 63% 0, 73% 10%, 80% 25%, 98% 44%, 100% 100%, 0 100%, 0 44%, 4% 25%);
}

.worker img {
	position: absolute;
	width: 1792px;
	max-width: none;
	left: -620px;
	top: -255px;
}

.sl-popup--dark .worker img {
	width: 1795px;
	top: -290px;
}

.sl-popup__form-panel {
	position: relative;
	z-index: 4;
	display: grid;
	align-items: center;
	padding: 38px 50px;
	border-left: 1px solid rgba(51, 86, 107, .1);
	background: linear-gradient(145deg, rgba(255, 255, 255, .99), rgba(241, 246, 249, .98));
	box-shadow: -15px 0 42px rgba(48, 83, 103, .08);
	min-width: 0;
}

.sl-popup--dark .sl-popup__form-panel {
	border-left: 0;
	background: linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(230, 239, 245, .96));
	box-shadow: inset 1px 0 rgba(255,255,255,.85);
}

.sl-popup__form-panel form {
	width: 100%;
	margin: 0;
}

.sl-popup__form-panel h2 {
	margin: 0 0 25px;
	color: #253845;
	font-family: "Arial Narrow", Impact, sans-serif;
	font-size: clamp(29px, 2.2vw, 40px);
	line-height: 1.15;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0;
	overflow-wrap: anywhere;
}

.sl-popup--dark .sl-popup__form-panel h2 {
	color: #172532;
}

.sl-popup__form-panel h2 span {
	color: #0879d3;
}

.field {
	position: relative;
	height: 58px;
	display: flex;
	align-items: center;
	margin-bottom: 12px;
	border: 1px solid #a6b2ba;
	border-radius: 11px;
	background: rgba(255,255,255,.82);
}

.sl-popup--dark .field {
	border-color: #9aa9b4;
	background: rgba(255,255,255,.58);
}

.field input:not([type=file]) {
	width: 100%;
	height: 100%;
	padding: 0 20px;
	border: 0;
	outline: 0;
	color: #263946;
	background: transparent;
	font-size: 19px;
}

.field:focus-within {
	border-color: #0aaee9;
	box-shadow: 0 0 0 3px rgba(10, 174, 233, .12);
}

.field--file {
	padding: 0 20px;
	cursor: pointer;
}

.field--file input[type="file"],
.field--file .sl-popup__file-input {
	position: absolute !important;
	inset: 0 !important;
	z-index: 5 !important;
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	min-width: 100% !important;
	padding: 0 !important;
	border: 0 !important;
	opacity: 0 !important;
	font-size: 0 !important;
	color: transparent !important;
	cursor: pointer;
}

.field--file input[type="file"]::file-selector-button,
.field--file input[type="file"]::-webkit-file-upload-button {
	display: none !important;
	visibility: hidden !important;
}

.field--file .uploader,
.field--file .filename,
.field--file .action {
	position: absolute !important;
	inset: 0 !important;
	z-index: 5 !important;
	width: 100% !important;
	height: 100% !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

.field--file svg {
	width: 25px;
	margin-right: 14px;
	fill: none;
	stroke: #2a4352;
	stroke-width: 2;
	stroke-linecap: round;
}

.field--file span {
	color: #6c747b;
	font-size: 19px;
}

.field--phone {
	padding-left: 18px;
}

.field--phone input {
	padding-left: 15px !important;
}

.phone-flag {
	flex: 0 0 30px;
	width: 30px;
	height: 20px;
	border: 1px solid #c8ced3;
	background: linear-gradient(#fff 0 33.3%, #1959b7 33.3% 66.6%, #e52c2c 66.6%);
}

.consent {
	display: grid;
	grid-template-columns: 30px 1fr;
	gap: 13px;
	align-items: start;
	margin: 13px 0 18px;
	color: #1f303b;
	font-size: 15px;
	line-height: 1.35;
	cursor: pointer;
}

.consent input {
	position: absolute;
	opacity: 0;
}

.consent__box {
	width: 28px;
	height: 28px;
	border: 2px solid #263c4a;
	background: #fff;
}

.consent input:focus-visible + .consent__box {
	outline: 2px solid #0aaee9;
	outline-offset: 2px;
}

.consent input:checked + .consent__box::after {
	content: "";
	display: block;
	width: 12px;
	height: 7px;
	margin: 7px 0 0 6px;
	border-left: 3px solid #172a36;
	border-bottom: 3px solid #172a36;
	transform: rotate(-45deg);
}

.consent a {
	color: #008edb;
}

.lead-form__submit {
	width: 100%;
	height: 64px;
	border: 0;
	border-radius: 14px;
	color: #fff;
	background: linear-gradient(100deg, #0876d3, #08bde9);
	box-shadow: 0 11px 28px rgba(3, 131, 210, .18);
	font-size: 24px;
	font-weight: 700;
	cursor: pointer;
}

.lead-form__submit:hover {
	filter: brightness(1.06);
}

.lead-form__submit:active {
	transform: translateY(1px);
}

.lead-form__note {
	margin: 13px 0 0;
	color: #52616b;
	font-size: 13px;
	text-align: center;
}

.lead-form__status {
	min-height: 18px;
	margin: 8px 0 0;
	color: #087bb8;
	font-size: 13px;
	text-align: center;
}

.sl-popup__hp,
.captcha-row .captcha_word,
.captcha-row .captcha_image {
	position: absolute !important;
	left: -10000px !important;
	width: 1px !important;
	height: 1px !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

.captcha-row .captcha_input {
	position: static;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

body.sl-popup-lock {
	overflow: hidden;
}

body.sl-popup-lock .b24-widget-button-wrapper,
body.sl-popup-lock .b24-widget-button-position-bottom-left,
body.sl-popup-lock .marquiz__container,
body.sl-popup-lock .marquiz__button,
body.sl-popup-lock [class*="video-widget"],
body.sl-popup-lock [class*="videoask"],
body.sl-popup-lock [id*="videoask"],
body.sl-popup-lock [id*="video-widget"],
body.sl-popup-lock iframe[src*="video"],
body.sl-popup-lock iframe[src*="youtube"],
body.sl-popup-lock iframe[src*="rutube"] {
	display: none !important;
	visibility: hidden !important;
}

@media (max-width: 1180px) {
	.sl-popup__dialog {
		grid-template-columns: 53% 47%;
	}

	.sl-popup__visual {
		padding-left: 30px;
	}

	.sl-popup__copy {
		width: 100%;
	}

	.sl-popup__title {
		font-size: 45px;
	}

	.sl-popup--dark .sl-popup__title {
		font-size: 49px;
	}

	.sl-popup__subtitle {
		max-width: 390px;
		font-size: 17px;
	}

	.benefits {
		max-width: 390px;
		gap: 12px;
	}

	.sl-popup--dark .benefits {
		gap: 15px;
	}

	.benefit {
		grid-template-columns: 58px 1fr;
	}

	.benefit__icon,
	.sl-popup--dark .benefit__icon {
		width: 52px;
		height: 52px;
	}

	.benefit__icon svg {
		width: 44px;
	}

	.sl-popup--dark .benefit__icon svg {
		width: 38px;
	}

	.benefit h2 {
		font-size: 20px;
	}

	.benefit p {
		font-size: 14px;
	}

	.worker {
		opacity: .55;
		right: -89px;
	}

	.sl-popup__form-panel {
		padding-inline: 32px;
	}
}

@media (max-width: 820px) {
	.sl-popup {
		width: 100%;
		padding: 8px;
		align-items: start;
		overflow-x: hidden;
		overflow-y: auto;
	}

	.sl-popup__dialog {
		width: min(620px, 100%);
		max-width: 100%;
		height: auto;
		min-height: 0;
		grid-template-columns: 1fr;
		margin: 8px 0;
		overflow: visible;
	}

	.sl-popup__visual {
		padding: 30px 22px;
	}

	.sl-popup__title {
		padding-right: 40px;
		font-size: clamp(35px, 10.5vw, 49px);
	}

	.sl-popup--dark .sl-popup__title {
		font-size: clamp(37px, 11vw, 52px);
	}

	.sl-popup__subtitle,
	.benefits {
		max-width: none;
	}

	.benefit p {
		font-size: 14px;
	}

	.worker {
		display: none;
	}

	.sl-popup__form-panel {
		padding: 30px 22px;
		border-left: 0;
	}

	.sl-popup__form-panel h2 {
		font-size: 29px;
	}
}

@media (max-width: 600px) {
	.sl-popup__title {
		font-size: 28px;
		line-height: 1;
	}

	.sl-popup--dark .sl-popup__title {
		font-size: 30px;
	}

	.sl-popup__subtitle,
	.benefit p {
		overflow-wrap: anywhere;
	}

	.benefit {
		grid-template-columns: 47px minmax(0, 1fr);
	}

	.sl-popup__form-panel h2 {
		font-size: 23px;
	}
}

@media (max-width: 440px) {
	.sl-popup__title {
		font-size: 28px;
		line-height: 1;
	}

	.sl-popup--dark .sl-popup__title {
		font-size: 30px;
	}

	.sl-popup__subtitle {
		font-size: 16px;
	}

	.benefit {
		grid-template-columns: 47px 1fr;
		gap: 9px;
	}

	.benefit__icon,
	.sl-popup--dark .benefit__icon {
		width: 43px;
		height: 43px;
	}

	.benefit__icon svg {
		width: 37px;
	}

	.sl-popup--dark .benefit__icon svg {
		width: 31px;
	}

	.benefit h2 {
		font-size: 19px;
	}

	.field {
		height: 54px;
	}

	.consent {
		font-size: 13px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.sl-popup,
	.sl-popup__dialog {
		transition: none;
	}
}
