/* External font imports are intentionally non-blocking/removed: use the local system fallback stack. */

:root {
	--bg: #050816;
    --bg-2: #080d1f;
    --card: rgba(255, 255, 255, .075);
    --card-2: rgba(255, 255, 255, .11);
    --stroke: rgba(255, 255, 255, .14);
    --stroke-2: rgba(125, 249, 255, .34);
    --text: #f7fbff;
    --muted: #9aa7c7;
    --muted-2: #c5cef0;
    --accent: #7df9ff;
    --accent-2: #8a5cff;
    --accent-3: #00ff9d;
    --warning: #ffcf70;
    --danger: #ff5c9a;
    --shadow: 0 24px 80px rgba(0, 0, 0, .55);
    --radius: 26px;
    --radius-sm: 18px;
    --container: 1900px;
    --ease: cubic-bezier(.2, .8, .2, 1);

	--default-color: #000;
	--green-color: #00B050;
	--red-color: #e8757f;
	--gradient: linear-gradient(135deg, var(--accent), var(--accent-3));
	--purple-color: #7030A0;
	--sidebar-color: #29192F;
	--background-color: #F2F2F2;
	--padding-main: 80px;
}


/* Scroll Bar */
::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}
::-webkit-scrollbar-track-piece {
	background-color: transparent;
	-webkit-border-radius: 8px;
}
::-webkit-scrollbar-thumb:vertical {
	height: 8px;
	background-color: var(--green-color);
	-webkit-border-radius: 5px;
}
::-webkit-scrollbar-thumb:horizontal {
	width: 8px;
	background-color: var(--green-color);
	-webkit-border-radius: 5px;
}
@keyframes grow {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(2.5);
	}
}
@keyframes grow-arrow {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(1.3);
	}
}
@-webkit-keyframes jittery {
	5%, 50% {
		-webkit-transform: scale(1);
		transform: scale(1)
	}
	10% {
		-webkit-transform: scale(.95);
		transform: scale(.95)
	}
	15% {
		-webkit-transform: scale(1.05);
		transform: scale(1.05)
	}
	20% {
		-webkit-transform: scale(1.05) rotate(-5deg);
		transform: scale(1.05) rotate(-5deg)
	}
	25% {
		-webkit-transform: scale(1.05) rotate(5deg);
		transform: scale(1.05) rotate(5deg)
	}
	30% {
		-webkit-transform: scale(1.05) rotate(-3deg);
		transform: scale(1.05) rotate(-3deg)
	}
	35% {
		-webkit-transform: scale(1.05) rotate(2deg);
		transform: scale(1.05) rotate(2deg)
	}
	40% {
		-webkit-transform: scale(1.05) rotate(0);
		transform: scale(1.05) rotate(0)
	}
}
@keyframes jittery {
	5%, 50% {
		-webkit-transform: scale(1);
		transform: scale(1)
	}
	10% {
		-webkit-transform: scale(.95);
		transform: scale(.95)
	}
	15% {
		-webkit-transform: scale(1.05);
		transform: scale(1.05)
	}
	20% {
		-webkit-transform: scale(1.05) rotate(-5deg);
		transform: scale(1.05) rotate(-5deg)
	}
	25% {
		-webkit-transform: scale(1.05) rotate(5deg);
		transform: scale(1.05) rotate(5deg)
	}
	30% {
		-webkit-transform: scale(1.05) rotate(-3deg);
		transform: scale(1.05) rotate(-3deg)
	}
	35% {
		-webkit-transform: scale(1.05) rotate(2deg);
		transform: scale(1.05) rotate(2deg)
	}
	40% {
		-webkit-transform: scale(1.05) rotate(0);
		transform: scale(1.05) rotate(0)
	}
}
@-webkit-keyframes heartbeat {
	50% {
		-webkit-transform: scale(1.05);
		transform: scale(1.05)
	}
}
@keyframes heartbeat {
	50% {
		-webkit-transform: scale(1.05);
		transform: scale(1.05)
	}
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
*:before, *:after {
	box-sizing: border-box;
}
html {
	width: 100%;
	overflow-x: hidden;
	height: 100%;
}
body {
    width: 100%;
    position: relative;
    isolation: isolate;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #fff;
    background: radial-gradient(circle at 101% 128%, rgba(138, 92, 255, .34), transparent 31rem), radial-gradient(circle at 102% -9%, rgba(125, 249, 255, .22), transparent 28rem), radial-gradient(circle at -10% 77%, rgba(0, 255, 157, .13), transparent 34rem), linear-gradient(180deg, #050816 0%, #070b1a 45%, #050816 100%);
	min-height: 100vh;
    overflow-x: hidden;
	margin: 0;
	padding: 0;
	height: 100%;
	font: 16px/1.3 'Nunito Sans', sans-serif;
	overflow: hidden;
}
ul, li {
	list-style: none;
	margin: 0;
	padding: 0;
}
a {
	color: var(--default-color);
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
input, button, select, textarea {
	margin: 0;
	padding: 0;
	outline: none;
	border: none;
	font-family: 'Nunito Sans', sans-serif;
}
button, a {
	cursor: pointer;
	transition: 300ms;
}
table {
	border-collapse: collapse;
	width: 100%;
}
img {
	max-width: 100%;
}
.maxwidth {
	margin: 0 auto;
	min-width: 375px;
	height: 100%;
}
.fixed {
	width: 1440px;
	margin: 0 auto;
	padding: 0 20px;
	max-width: 100%;
}
.fixed--wide {
	padding: 0;
	width: auto;
}
.flex {
	display: flex;
	flex-wrap: wrap;
}
.grid {
	display: grid;
}
.section-title {
	color: var(--default-color);
	font-size: 50px;
	line-height: 1.1;
	font-weight: bold;
}
.section-title * {
	margin: 0;
	padding: 0;
	font-size: inherit;
	font-weight: inherit;
}
.section-title--margin-60 {
	margin-bottom: 60px;
}
.section-title--margin-50 {
	margin-bottom: 50px;
}
.section-title--margin-40 {
	margin-bottom: 40px;
}
.section-title--margin-30 {
	margin-bottom: 30px;
}
.section-title--70 {
	font-size: 70px;
	line-height: 1;
}
.section-title--50 {
	font-size: 50px;
}
.section-title--40 {
	font-size: 40px;
}
.section-title--30 {
	font-size: 30px;
}
.section-title--22 {
	font-size: 22px;
}
.section-title--20 {
	font-size: 20px;
}
.section-title--white {
	color: #fff;
}
.btn {
	color: #04111b;
    box-shadow: 0 16px 46px rgba(0, 255, 157, .22), 0 0 38px rgba(125, 249, 255, .18);
	background: var(--gradient);
	align-items: center;
	justify-content: center;
	padding: 9px 22px;
	transition: 300ms;
	text-align: center;
	text-decoration: none!important;
	font-size: 17px;
	line-height: 1.3;
	max-width: 100%;
	border-radius: 50px;
	min-width: 175px;
	flex-wrap: nowrap;
	font-weight: bold;
}
.btn--bold {
	font-weight: bold;
}
.btn--middle {
	padding: 14px 26px;
}
.btn--big {
	padding: 19px 28px;
}
.btn--purple {
	background: var(--purple-color);
}
.btn--red {
	background: red;
}
.btn--gradient {
	background: var(--gradient);
}
.btn--gray {
	background: #aaa;
	color: #000;
}
.btn:hover {

}
.btn--gradient:hover {
	transform: translateY(-2px);
}
.image img {
	display: block;
}
.image-responsive {
	height: 0;
	position: relative;
	padding-bottom: 52.6%;
}
.image-responsive--vertical {
	padding-bottom: 130%;
}
.image-responsive__image {
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}
.overflow {
	overflow: hidden;
}
.balert {
	background: #fff;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
	color: #000;
	max-width: 300px;
	padding: 20px;
	position: fixed;
	left: 20px;
	bottom: 20px;
	opacity: 0;
	z-index: -1;
	transition: 1000ms;
	border-radius: 10px;
	font-weight: 400;
	font-size: 14px;
}
.balert.active {
	opacity: 1;
	z-index: 999999;
}

.xalert {
	background: var(--green-color);
	border-color: #badbcc;
	color: #0f5132;
	padding: 0.7rem 1rem;
	position: fixed;
	top: -100%;
	left: 50%;
	transform: translatex(-50%);
	transition: 400ms;
	z-index: 999999;
	border-radius: 10px;
	font-weight: bold;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.12);
}
.xalert.active {
	transform: translatex(-50%);
	top: 50px;
}
.xalert-success {
	color: #fff;
}
.xalert-warning {
	color: #664d03;
	background: #fff3cd;
}
.xalert-danger {
	color: #842029;
	background: #e8757f;
}
.nomargin {
	margin: 0!important;
}
.nopadding {
	padding: 0 !important;
}
.logo {
	position: relative;
	transition: 300ms;
}
.logo__image {
    display: block;
    width: 250px;
    max-width: 250px;
}
.logo__link {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}
.auth {
	width: 1300px;
	max-width: 100%;
	height: 100%;
	flex-direction: column;
	margin: 0 auto;
	padding: 0 22px;
}
.auth__head,
.auth__footer {
	flex-shrink: 0;
}
.auth__in {
	flex: 1;
	overflow: auto;
	justify-content: center;
	align-items: center;
}
.auth__inner {
	width: 100%;
	text-align: center;
}
.auth__head {
	padding: 34px 0;
	justify-content: space-between;
	align-items: center;
}
.auth__action {
	min-width: 1px;
}
.auth__start-text {
	font-size: 24px;
	line-height: 2;
	font-weight: 300;
	margin-bottom: 140px;
}
.auth__labels {
	max-width: 772px;
	margin: 0 auto;
}
.auth__input {
	background: none;
	width: 100%;
	display: block;
	height: 71px;
	font-size: 45px;
	font-weight: 300;
	border: none;
	border-bottom: 1px solid #ffffff;
	text-align: center;
	transition: 300ms;
	color: #ffffff;
}
.auth__input::placeholder {
	transition: 300ms;
	color: #ffffff;
}
.auth__input:focus::placeholder {
	opacity: 0;
}
.auth__input:focus {
	border-color: var(--green-color);
}
.auth__label-note {
	color: #e3e3e3;
	font-size: 14px;
	font-weight: 300;
	margin-top: 12px;
}
.auth__do {
	margin-top: 70px;
	justify-content: center;
}
.auth__note {
	font-size: 12px;
	line-height: 1.5;
	color: #e3e3e3;
	margin-top: 60px;
}
.auth__note a {
	color: #004CFF;
	text-decoration: none;
}
.auth__note a:hover {
	text-decoration: underline;
}
.auth__code-top {
	font-size: 36px;
	font-weight: 300;
	margin-bottom: 31px;
}
.auth__code-text {
	font-size: 16px;
	line-height: 1.5;
	font-weight: 300;
	color: #e3e3e3;
}
.auth__code-text > p:not(:last-child) {
	margin-bottom: 30px;
}
.auth__btn {
	border-radius: 50px;
	min-width: 210px;
}
.auth__code-inputs {
	justify-content: center;
	gap: 38px;
}
.auth__code-input {
	width: 91px;
}
.auth__step:not(.active) {
	display: none;
}
.auth__footer {
	padding: 25px 0;
}
.auth__policy {
	text-align: center;
	font-size: 12px;
	font-weight: 500;
	color: #9B9B9B;
}
.auth__head,
.auth__in,
.auth__footer {
	position: relative;
	z-index: 5;
}
.auth__v {
	background: url(../img/auth-v.svg) no-repeat center / cover;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0.03;
}
.auth__cloud {
	background: url(../img/auth-cloud2.svg) no-repeat;
	position: absolute;
	width: 100%;
	height: 209px;
	top: 140px;
	left: 0;
	zoom: 0.8;
	opacity: 0.05;
}
@media(max-width: 1600px) {
	.auth__v {
		background: url(../img/auth-v.webp) no-repeat center bottom / cover;
	}
	.auth__cloud {
		display: none;
	}
}
@media(max-width: 991px) {
    .auth__start-text {
        margin-bottom: 40px;
        font-size: 15px;
    }
	.auth__labels {
		max-width: 100%;
	}
	.auth__start-text {
		line-height: 1.5;
	}
}
@media(max-width: 767px) {
	.auth__input {
		font-size: 25px;
	}
}
@media(max-width: 550px) {
	.logo__image {
		width: 150px;
	}
	.auth__action {
		min-width: 1px;
		font-size: 13px;
		padding: 8px;
	}
	.auth__code-inputs {
		gap: 12px;
	}
	.auth__code-input {
		width: 71px;
	}
}
/* 20260626 sms.ru call-check registration */
.auth__smsru-call {
	max-width: 860px;
	margin: 0 auto 38px;
	text-align: center;
}
.auth__smsru-title {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 12px;
	color: #fff;
}
.auth__smsru-text {
	max-width: 720px;
	margin: 0 auto 24px;
	font-size: 15px;
	line-height: 1.55;
	color: rgba(255,255,255,.82);
}
.auth__smsru-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 70px;
	padding: 0 34px;
	border: 1px solid rgba(255,255,255,.18);
	border-radius: 18px;
	background: rgba(255,255,255,.08);
	box-shadow: 0 18px 60px rgba(36,255,210,.12);
	font-size: 42px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: .02em;
	color: #fff;
	text-decoration: none;
}
.auth__smsru-number:hover {
	color: #34ffd2;
	border-color: rgba(52,255,210,.45);
}
.auth__smsru-status {
	margin-top: 18px;
	font-size: 14px;
	line-height: 1.45;
	color: rgba(255,255,255,.74);
}
.auth__phone-enter .auth__labels {
	margin-bottom: 38px;
}
@media(max-width: 767px) {
	.auth__smsru-number {
		width: 100%;
		font-size: 30px;
		padding: 0 16px;
	}
}

/* 20260707 legal consent on registration */
.auth__consents {
	max-width: 760px;
	margin: 28px auto -34px;
	display: grid;
	gap: 12px;
	text-align: left;
}
.auth__consent {
	display: grid;
	grid-template-columns: 20px minmax(0, 1fr);
	gap: 10px;
	align-items: flex-start;
	color: rgba(255,255,255,.82);
	font-size: 13px;
	line-height: 1.45;
}
.auth__consent input {
	width: 18px;
	height: 18px;
	margin-top: 1px;
	accent-color: var(--green-color);
}
.auth__consent a {
	color: #34ffd2;
	text-decoration: underline;
	text-underline-offset: 3px;
}
.auth__consent--required span::after {
	content: ' *';
	color: #34ffd2;
}

/* Optional password login */
.auth__alt-login{margin-top:14px;text-align:center}.auth__alt-btn{border:0;background:transparent;color:#49627f;font:inherit;font-weight:700;cursor:pointer;text-decoration:underline;text-underline-offset:4px;padding:8px 12px}.auth__alt-btn:hover{color:#111827}.auth__password-panel{width:100%}.auth__password-field{position:relative}.auth__password-field .auth__input{padding-right:56px}.auth__password-eye{position:absolute;right:12px;top:50%;transform:translateY(-50%);width:38px;height:38px;border:0;border-radius:12px;background:transparent;color:#71809a;font-size:18px;cursor:pointer;z-index:2}.auth__password-eye:hover,.auth__password-eye.is-visible{background:#eef4ff;color:#3157e5}
