@font-face {
	font-family: 'Circe';
	src: local('Circe'), local('Circe-Regular'),
		url('/static/fonts/Circe-Regular.woff') format('woff'),
		url('/static/fonts/Circe-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Circe';
	src: local('Circe ExtraLight'), local('Circe-ExtraLight'),
		url('/static/fonts/Circe-ExtraLight.woff') format('woff'),
		url('/static/fonts/Circe-ExtraLight.ttf') format('truetype');
	font-weight: 200;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Circe';
	src: local('Circe Thin'), local('Circe-Thin'),
		url('/static/fonts/Circe-Thin.woff') format('woff'),
		url('/static/fonts/Circe-Thin.ttf') format('truetype');
	font-weight: 100;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Circe';
	src: local('Circe Light'), local('Circe-Light'),
		url('/static/fonts/Circe-Light.woff') format('woff'),
		url('/static/fonts/Circe-Light.ttf') format('truetype');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Circe';
	src: local('Circe Bold'), local('Circe-Bold'),
		url('/static/fonts/Circe-Bold.woff') format('woff'),
		url('/static/fonts/Circe-Bold.ttf') format('truetype');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Circe';
	src: local('Circe ExtraBold'), local('Circe-ExtraBold'),
		url('/static/fonts/Circe-ExtraBold.woff') format('woff'),
		url('/static/fonts/Circe-ExtraBold.ttf') format('truetype');
	font-weight: 800;
	font-style: normal;
	font-display: swap;
}

html {
	/* scroll-behavior: smooth; */
	--accent-color: #b51ae7;
}

body {
	max-width: 1440px;
	margin: auto;
	padding: 0 40px 120px;
	box-sizing: border-box;
	font-family: Circe, sans-serif;
	font-size: 16px;
	line-height: 1.25;
	color: #4a4a4a;
	overflow-x: hidden;
	background-color: #d3d3d3;
	position: relative;
}

main {
	display: flex;
	gap: 20px;
	justify-content: space-between;
	position: relative;
}

input, button {
	font-family: TTFirsNeue, sans-serif;
}

strong {
	font-weight: 600;
}

strong.extra {
	font-weight: 900;
}

a {
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-thickness: 1px;
	color: inherit;
}


input::placeholder {
	color: inherit;
}

.hidden {
	display: none !important;
}

img {
	max-width: 100%;
}

i {
	font-style: italic;
}

.w {
	color: #fff;
}

.b {
	color: #000;
}

.r {
	color: #ff00ba;
}

.column {
	width: 400px;
	position: relative;
}

.column_content {
	display: flex;
	flex-direction: column;
	gap: 60px;
}

.block {
	padding: 30px 25px 60px;
	background-color: #fff;
	position: relative;
	/* overflow: hidden; */
	opacity: 0;
	transition: all .5s;
}

.block.a1 {
	opacity: 1;
}

/* .block::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 400px;
	height: 100%;
	background-color: var(--accent-color);
	opacity: 0.1;
	transform: translateX(-100%);
	z-index: 1000;
} */

.block-black {
	background-color: #000;
	color: #d3d3d3;
}

.block.a2 {
	box-shadow: 0 0 10px 30px #ffffff99;
}

.block-black.a2 {
	/* box-shadow: 0 0 10px 30px #b51ae733 inset; */
	/* background-color: #b51ae788; */
}

/* .block.a2::after { */
/* .block:hover::after { */
	/* animation: shake .2s linear 6; */
	/* animation: moveLight .4s linear 2; */
/* } */

@keyframes moveLight {
	from {
	  transform: translateX(-100);
	}
	to {
	  transform: translateX(100%);
	}
}


@keyframes shake {
	0% {
		transform: translateX(0);
	}
	25% {
		transform: translateX(7px);
	}
	50% {
		transform: translateX(7px);
	}
	100% {
		transform: translateX(0);
	}
}

h2 {
	font-size: 24px;
	text-transform: uppercase;
	padding-bottom: 5px;
	color: #000;
}

h3 {
	font-size: 15px;
	font-weight: 800;
	text-transform: uppercase;
	padding-top: 10px;
	color: #000;
}

h4 {
	text-transform: uppercase;
	padding-top: 20px;
}

.block-black h2,
.block-black h3 {
	color: #fff;
}

.accent {
	color: var(--accent-color);
}

.accent2 {
	color: #bf1cf4;
}

p {
	padding-top: 20px;
	position: relative;
}

p.dash {
	padding-left: 20px;
	margin-left: -3px;
}

p.dash::before {
	content: '—';
	color: var(--accent-color);
	position: absolute;
	left: 0;
}

h3 + p {
	padding-top: 12px;
}

.f-l {
	font-size: 18px;
}

.lh-l {
	line-height: 1.5;
}

.fz40 {
	font-size: 39px;
	white-space: nowrap;
}

.fz20 {
	font-size: 20px;
}

.mt10 {
	margin-top: 10px;
}

.mt15 {
	margin-top: 15px;
}

.mt20 {
	margin-top: 20px;
}

.mt30 {
	margin-top: 30px;
}

.mt50 {
	margin-top: 50px;
}

.mt90 {
	margin-top: 90px;
}

.pt5 {
	padding-top: 5px;
}

.pt70 {
	padding-top: 70px;
}

.checked,
.checked_before {
	display: flex;
	gap: 7px;
}

.checked::after,
.checked_before::before {
	content: '';
	width: 17px;
	height: 16.5px;
	background: url('/static/i/check.webp') no-repeat;
	background-size: contain;
}


.block10 {
	color: #fff;
	opacity: 1;
}

.block10_txt {
	font-size: 15px;
	text-transform: uppercase;
	padding-bottom: 60px;
}

.play {
	margin: 60px auto;
	display: flex;
	justify-content: center;
	position: relative;
}

.play_btn {
	width: 50px;
	height: 50px;
	background: url("/static/i/play.webp") no-repeat;
	background-size: contain;
	cursor: pointer;
}

.btn {
	max-width: 180px;
	background: linear-gradient(130deg, #ff008c, #da15c0);
	color: white;
	border: none;
	margin-right: auto;
	margin-left: auto;
	text-transform: uppercase;
	padding: 14px 15px;
	border-radius: 10px;
	font-weight: bold;
	cursor: pointer;
	display: block;
	text-align: center;
	text-decoration: none;
	transition: opacity .6s;
	position: relative;
	z-index: 1;
}

.play_txt {
	font-size: 14px;
	font-weight: 600;
	position: absolute;
	transform: translate(136%, 16px);
}

h1 {
	font-size: 24px;
	text-transform: uppercase;
	margin-top: 60px;
}

nav {
	padding-top: 40px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding-bottom: 20px;
}

nav a {
	font-size: 20px;
}

nav a:hover {
	color: #ff00ba;
}

.block30_img1 {
	max-width: calc(100% + 10px);
	margin-left: -5px;
}

.block30_img2 {
	max-width: 260px;
	display: block;
	margin: 14px 11px 0 auto;
}

.block30_links {
	padding-top: 14px;
	display: flex;
	gap: 8px;
	align-items: center;
}

.block30_links a img {
	max-width: 40px;
}

.block30_links a:nth-child(3) img {
	max-width: 105px;
}

.flag-ru {
	width: 24px;
	aspect-ratio: 77 / 45;
	margin-left: 5px;
	background: url("/static/i/flag_ru.webp") no-repeat;
	background-size: contain;
	display: inline-block;
}

.flag-is {
	width: 24px;
	aspect-ratio: 77 / 53;
	margin-left: 5px;
	background: url("/static/i/flag_is.webp") no-repeat;
	background-size: contain;
	display: inline-block;
	margin-top: -2px;
}

.flag-us {
	width: 28px;
	height: 16px;
	background: url("/static/i/flag_us.webp") no-repeat;
	background-size: contain;
	display: inline-block;
}

.team {
	position: relative;
}

.grid {
	display: flex;
	flex-wrap: wrap;
	position: absolute;
	top: -5px;
	right: -5px;
	bottom: -5px;
	left: -5px;
}

.grid div {
	width: 25%;
	background-color: #000;
	aspect-ratio: 1.01;
	transition: opacity 1s;
}

.grid div.a {
	opacity: 0;
}


.block35 {
	padding: 30px 25px 30px;

	h2 {
		font-size: 22px;
	}

	ul {
		font-size: 15.7px;
	}
}

ul.plain_dash {
	margin-top: 0;
	list-style: none;
	padding-left: 0;
	display: block;

	li {
		padding-left: 12px;
	}

	li::before {
		content: '-';
		margin-top: -6px;
		background: none;
		width: auto;
		height: auto;
	}
}

.block35_img1 {
	margin: 20px 0 10px -25px;
	max-width: none;
	width: calc(100% + 50px);
}

.block35_img2 {
	display: block;
	max-width: 260px;
	margin: 15px auto 25px;
}

.pt0 {
	padding-top: 0 !important;
}

.block35_logo1 {
	float: right;
	height: 74px;
}

.block35_logo2 {
	height: 30px;
	position: absolute;
	transform: translate(-4px, -34px);
}

.block35_logo3 {
	height: 63px;
	position: absolute;
	top: -2px;
	right: 30px;
}

.block35_logo4 {
	height: 110px;
	display: block;
	margin: 20px auto 80px;
}

.mt35 {
	margin-top: 35px;
}

.block35_img3 {
	height: 240px;
	display: block;
	margin: 10px auto 0;
}



.block40 {
	padding-bottom: 100px;
}

.block40 figure {
	padding-bottom: 5px;
	position: relative;
}

.block40 figcaption {
	font-size: 6px;
	transform: rotate(90deg);
	position: absolute;
	right: 0;
	color: #878787;
	top: 140px;
	right: -146px;
}


.block50 img {
	margin-left: -25px;
	width: calc(100% + 50px);
	max-width: none;
}

ul {
	margin-top: 30px;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

ul li {
	position: relative;
	padding-left: 22px;
}

ul li::before {
	content: '';
	width: 7px;
	height: 7px;
	background-color: var(--accent-color);
	position: absolute;
	top: 6px;
	left: 0;
}


.block60 a {
	color: #000;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	text-decoration: none;
}

.block60 a span {
	border-bottom: 1px solid;
}

.block60 p:last-child {
	padding-top: 40px;
}

.block60 .tg {
	position: absolute;
	margin-left: 7px;
}


.block70 {
	padding-right: 22px;
	padding-left: 23px;
}

.block70_img1 {
	display: block;
	margin: 20px auto;
	max-width: 200px;
}

.revenue {
	padding-top: 55px;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}

.revenue_title {

}

.revenue_item {
	position: relative;
}

.revenue_item:nth-child(5)::before {
	content: '';
	width: 27px;
	height: 26.5px;
	background: url("/static/i/unicorn.webp") no-repeat;
	background-size: contain;
	position: absolute;
	top: -36px;
	left: -5px;
}

.block80 {

}

.block90 {
	padding-bottom: 70px;
}

.block90_logo1 {
	height: 70px;
	display: block;
	margin: 0 auto 15px;
}

.block90_logo2 {
	height: 50px;
	display: block;
	margin: 0 auto 15px;
}

.block90_img1 {
	width: 250px;
	margin: 30px auto 0;
	display: block;
}

.block90_items {
	padding-top: 20px;
	font-size: 18px;
}

.block90_item {
	padding-left: 50px;
	position: relative;
}

.block90_item::before {
	width: 42px;
	content: 'I';
	font-size: 40px;
	color: var(--accent-color);
	font-weight: 600;
	text-align: right;
	position: absolute;
	top: 16px;
	left: 0;
}

.block90_item:nth-child(2):before {
	content: 'II';
}

.block90_item:nth-child(3):before {
	content: 'III';
}

img.center {
	margin-right: auto;
	margin-left: auto;
	display: block;
}

.block100 .btn {
	transform: translateX(-22px);
}

.block110 {
	padding-right: 16px;
	padding-left: 20px;
}

.block110_img1 {
	max-width: 245px;
	transform: translateX(20px);
}

.block110_img2 {
	float: left;
	margin-top: 4px;
	margin-right: 20px;
}

.block120 img {
	max-width: 281px;
	margin-top: 90px;
}



.block130 {
	padding-right: 10px;
	padding-left: 20px;
	padding-bottom: 25px;
}

.btn-upload {
	max-width: 230px;
	margin-top: 35px;
	margin-bottom: 35px;
	transform: translateX(-5px);
	padding-right: 25px;
	padding-left: 25px;
	font-size: 16px;
	text-transform: none;
	text-align: left;
	display: flex;
	gap: 20px;
	align-items: center;
}

.btn-upload::before {
	content: '';
	width: 37px;
	height: 37px;
	background: url('/static/i/icon_upload.webp') no-repeat;
	background-size: contain;
	flex-shrink: 0;
}

.choose_model {
	padding-left: 30px;
	margin-bottom: 70px;
	align-items: center;
}

.choose_model::before,
.preparing_point::before {
	content: '';
	margin-left: -30px;
	width: 22px;
	height: 19px;
	background: url('/static/i/icon_rarr.webp') no-repeat;
	background-size: contain;
	display: inline-block;
	vertical-align: middle;
	margin-right: 5px;
}

.choose_model {
	position: relative;
}

.choose_model_link {
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-thickness: from-font;
	cursor: pointer;
}

.choose_model_popup {
	width: 100%;
	height: 0;
	background-color: #fff;
	border-radius: 10px;
	z-index: 1000;
	overflow: hidden;
	transition: height .4s;
	display: flex;
	gap: 4%;
	transform: translate(-20px, 20px);

	img {
		border-radius: 16px;
		cursor: pointer;
	}
}

.choose_model.active .choose_model_popup {
	height: 286px;
}

.block130_slider {
	width: 100%;
	max-width: 250px;
	aspect-ratio: 250 / 447;
	margin: 15px auto 0;
	transform: translateX(-5px);
	position: relative;
}

.block130_slider img {
	opacity: 0;
	transition: opacity .6s;
	position: absolute;
	top: 0;
	left: 0;
}

.block130_slider img.active {
	opacity: 1;
}

.block130_img2 {
	max-width: none;
	width: calc(100% + 10px);
	margin-left: -10px;
}

.block120 {
	padding-bottom: 55px;
}

.block140,
.block150,
.block170 {
	padding-bottom: 40px;
}

.block180 {
	padding-bottom: 30px;
}

.block140_video {
	
}

.block140_img2 {
	max-width: 294px;
	margin-top: 30px;
}

.block150 {
	padding-right: 22px;
}

.block160_img1 {
	max-width: 325px;
}

.block160 ul {
	margin-top: 10px;
}

.block170_img1 {
	transform: translate(-25px, -30px);
	max-width: none;
	width: calc(100%  + 50px);
}

.block170_img2 {
	width: calc(100% + 30px);
	max-width: none;
	margin-top: 30px;
	margin-left: -15px;
}

.block180_img {
	margin-top: 20px;
	margin-bottom: 10px;
	margin-left: -25px;
	max-width: none;
	width: calc(100%  + 50px);
}

.block180_img + h3 {
	padding-top: 20px;
}

.block180 .flag-us {
	transform: translate(2px, 2px);
}

.block180 .flag-is {
	position: absolute;
	width: 36px;
	transform: translate(2px, -3px);
}

.block180 .flag-ru {
	width: 36px;
	transform: translate(2px, 2px);
}

.block180_slider {
	margin-top: 20px;
	margin-bottom: 10px;
	margin-left: -25px;
	width: calc(100%  + 50px);
	aspect-ratio: 400 / 157;
	position: relative;
}

.block180_slider img {
	opacity: 0;
	transition: opacity .6s;
	position: absolute;
	top: 0;
	left: 0;
}

.block180_slider img.active {
	opacity: 1;
}



footer {
	position: absolute;
	bottom: 40px;
	left: 60px;
	font-size: 14px;
}


.close {
	width: 12px;
	height: 12px;
	position: absolute;
	transform: rotate(45deg);
	cursor: pointer;
	color: #fff;
	opacity: .7;
}

.close::before {
	content: '';
	width: 12px;
	height: 1px;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	background-color: currentColor;
}

.close::after {
	content: '';
	width: 1px;
	height: 12px;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	background-color: currentColor;
}


.engage {
	width: 270px;
	height: 450px;
	box-sizing: border-box;
	background-color: #111111;
	border-radius: 14px 0 0 14px;
	border: 1px solid #aaa;
	position: fixed;
	right: 0;
	top: 20%;
	z-index: 1000;
	transform: translateX(100%);
	transition: all .4s;
}

.engage_close {
	top: 16px;
	left: 16px;
}

.engage_img {
	height: 220px;
	position: absolute;
	top: 50px;
	right: 0;
}

.engage_text {
	font-size: 20px;
	text-transform: uppercase;
	color: #fff;
	position: absolute;
	bottom: 105px;
	left: 25px;
	margin-left: 1em;
	transform: translateX(150%);
	transition: all .2s;
}

.engage_text div:first-child {
	margin-left: -1em;
}

.engage_btn {
	width: 70px;
	padding-top: 14px;
	padding-bottom: 12px;
	font-size: 14px;
	position: absolute;
	bottom: 35px;
	left: 87px;
	opacity: 0;
	transition: all .4s;
}

.engage.show {
	transform: translateX(0);
}

.engage.a1 .engage_text {
	transform: translateX(0);
}

.engage.a2 .engage_btn {
	opacity: 1;
}

.engage-ready {

}



.block10 {order: 10;}
.block20 {order: 20;}
.block30 {order: 30;}
.block35 {order: 35;}
.block40 {order: 40;}
.block50 {order: 50;}
.block60 {order: 60;}
.block70 {order: 70;}
.block80 {order: 80;}
.block100 {order: 90;}
.block110 {order: 100;}
.block90 {order: 110;}
.block120 {order: 120;}
.block130 {order: 130;}
.block140 {order: 140;}
.block150 {order: 150;}
.block160 {order: 160;}
.block170 {order: 170;}
.block180 {order: 180;}



body.legal {
	max-width: 630px;
	padding: 65px 20px 40px;
}

body.legal h1 {
	padding-bottom: 20px;
}




/* PROTOTYPE */

body.body-prototype {
	max-width: none;
	background-color: #f2f2f2;
	padding: 0;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

.header {
	padding: 20px 40px 0 70px;
	position: relative;
	z-index: 10;
}

.header_top {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header_back {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	font-weight: 800;
}

.header_btns {
	display: flex;
	gap: 20px;
}

.btn-round {
	width: 50px;
	height: 50px;
	border-radius: 100%;
	background: linear-gradient(130deg, #ff008c, #da15c0);
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.icon-back::after {
	content: '';
	width: 28px;
	aspect-ratio: 28 / 26;
	background: url("/static/i/icon-back.png") no-repeat;
	background-size: contain;
}

.icon-share::after {
	content: '';
	width: 25px;
	aspect-ratio: 51 / 58;
	background: url("/static/i/icon-share.png") no-repeat;
	background-size: contain;
	transform: translateX(-1px);
}

.icon-upload::after {
	content: '';
	width: 28px;
	aspect-ratio: 1;
	background: url("/static/i/icon-upload.png") no-repeat;
	background-size: contain;
	transform: translateY(-3px);
}

.proto_logo {
	display: inline-block;
	padding-top: 30px;
	position: relative;
	
	.logo {
		max-width: 344px;
	}
	span {
		position: absolute;
		top: 12px;
		right: 0;
		text-transform: uppercase;
		font-size: 11px;
	}
}

.products_grid {
	padding: 50px 40px 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0 4%;
	position: relative;
}

.product_card {
	border-radius: 5px;
	overflow: hidden;
	position: relative;
	padding-bottom: 40px;
	position: relative;
	cursor: pointer;
}

.product_card:nth-child(1) {order: 1;}
.product_card:nth-child(2) {order: 2;}
.product_card:nth-child(3) {order: 3;}
.product_card:nth-child(4) {order: 4;}
.product_card:nth-child(5) {order: 5;}
.product_card:nth-child(6) {order: 6;}
.product_card:nth-child(7) {order: 7;}
.product_card:nth-child(8) {order: 8;}
.product_card:nth-child(9) {order: 9;}
.product_card:nth-child(10) {order: 10;}
.product_card:nth-child(11) {order: 11;}
.product_card:nth-child(12) {order: 12;}
.product_card:nth-child(13) {order: 13;}
.product_card:nth-child(14) {order: 14;}
.product_card:nth-child(15) {order: 15;}



.product_card:nth-child(8),
.product_card:nth-child(9) {
	padding-bottom: 15px;
}

.product_card:nth-child(5) {
	grid-column: span 3;
}

.product_card:nth-child(7) {
	grid-column: span 2;;
	grid-row: span 2;
}

.product_card_figure {
	position: relative;
	aspect-ratio: 368 / 490;
}

.product_card:nth-child(5) .product_card_figure {
	aspect-ratio: 916 / 361;
}


/* .product_image {
	width: 100%;
	display: block;
	transition: opacity .6s;
	background-color: #fafafa;
	opacity: 0;
}

.product_video {
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	opacity: 0;
	transition: opacity .6s;
} */

.product_image,
.product_video_wrap {
	transition: opacity 0.6s;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
}

.product_image {
	z-index: 1;
}

.product_video_wrap {
	background: #f2f2f2;
}

.product_video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
}


.product_card_figure.hover .product_image {
	opacity: 0 !important;
}

.product_card_figure.hover .product_video_wrap {
	opacity: 1;
}

.add_btn {
	width: 40px;
	height: 40px;
	border-radius: 100%;
	border: 1px solid #ec0aa6;
	color: #ec0aa6;
	cursor: pointer;
	position: absolute;
	right: 20px;
	bottom: 20px;
	opacity: 0;
	transition: opacity .6s;
	z-index: 3;
}

.add_btn::before {
	content: '';
	width: 12px;
	height: 1px;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	background-color: currentColor;
}

.add_btn::after {
	content: '';
	width: 1px;
	height: 12px;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	background-color: currentColor;
}

.add_btn:hover {
	background: linear-gradient(130deg, #ff008c, #da15c0);
	color: #fff;
}

.product_card:hover .add_btn {
	opacity: 1;
}

.product_page .add_btn {
	display: none;
}


.product_info {
	padding: 10px 10px 0;
	text-align: center;
	font-size: 12px;
}

.product_brand {
	font-weight: bold;
}

.product_oldprice {
	font-size: 10px;
	text-decoration: line-through;
}

.product_newprice {
	color: #9309b9;
}

.sale-tag {
	display: inline-block;
	background-color: #ff00ba;
	color: white;
	font-weight: bold;
	padding: 1px 3px 0 3px;
}


.proto_msg {
	width: 280px;
	box-sizing: border-box;
	padding: 40px 29px;
	position: absolute;
	top: 50px;
	right: -50%;
	left: -50%;
	margin: auto;
	background-color: #000;
	color: #fff;
	font-weight: bold;
	font-size: 14px;
	line-height: 1.35;
	z-index: 1000;
}


.proto_msg_overlay {
	position: absolute;
	top: 185px;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 50;
	background: rgba(255,255,255,.8);
	display: none;
}

.proto_msg_close {
	top: 12px;
	right: 12px;
}

.proto_msg_content {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.proto_msg_content p {
	padding-top: 0;
}

.proto_msg a {
	text-decoration: none;
}





.proto_footer {
	background-color: #000;
	color: white;
	padding: 40px 0 110px;
	margin-top: 40px;
	position: static;
	font-size: 16px;
}

.proto_footer_intro {
	max-width: 1024px;
	margin: 0 auto;
	text-align: center;
	color: #fff;
	font-size: 24px;
	font-weight: normal;
}

.proto_footer_grid {
	max-width: 1024px;
	margin: auto;
	padding-top: 15px;
	display: flex;
	flex-direction: column;
	gap: 50px;
}

.proto_footer_item {
	display: flex;
	color: #a8a8a8;
	gap: 20px;
	justify-content: space-between;
}

.proto_footer_item:last-child {
	padding-top: 50px;
}

.proto_footer_head {
	color: #fff;
	font-weight: bold;
	transform: translateY(25px);
}

.proto_footer_item_title {
	width: 17%;
	font-weight: bold;
	color: #fff;
	text-align: right;
}

.proto_footer_item_no {
	display: none;
}

.proto_footer_item_cell1,
.proto_footer_item_cell2 {
	width: 35%;
	position: relative;
}

.proto_footer_item strong {
	font-weight: normal;
}

.proto_footer_btn {
	background: linear-gradient(130deg, #ff008c, #da15c0);
	color: white;
	border: none;
	padding: 14px 5px;
	border-radius: 10px;
	font-weight: bold;
	cursor: pointer;
	display: block;
	text-align: center;
	text-decoration: none;
	transition: opacity .6s;
	position: relative;
	z-index: 1;
}

.proto_footer_btn_after {
	position: absolute;
	top: 0;
	color: #383838;
	gap: 1em;
	display: flex;
	opacity: 0;
	transition: opacity .6s;
}

.proto_footer_btn_after span:first-child {
	color: #fff;
	font-size: 30px;
	font-weight: bold;
}

.proto_footer_btn_after a:hover {
	color: #fff;
}

.proto_footer_btn.pressed {
	opacity: 0;
}

.proto_footer_btn.pressed + .proto_footer_btn_after {
	opacity: 1;
	z-index: 2;
}

.proto_footer_bottom {
	max-width: 605px;
	text-align: center;
	margin: 0 auto;
	padding: 110px 0 0;
	font-size: 12px;
	color: #666;
}


.proto_msg_opened .header,
.proto_msg_opened .products_grid {
	background-color: #fff;
}

.proto_msg_opened .proto_msg_overlay {
	display: block;
}



.preparing {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 5;
	background-color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}

.preparing_loader {

}

.preparing_window {
	max-width: 382px;
	padding: 0 20px;
	box-sizing: border-box;
	position: absolute;
	top: 220px;
	right: 0;
	left: 0;
	margin: auto;
}

.preparing_title {
	font-size: 20px;
	text-transform: uppercase;
}

.preparing_info {
	transition: opacity .6s;
}

.preparing_form {
	padding-top: 15px;
	padding-bottom: 25px;
	display: flex;
	gap: 20px;
	position: relative;
	transition: opacity .6s;

	input {
		width: 100%;
		padding: 6px 10px;
		background-color: #fff;
		border: 1px solid #d3d3d3;
		border-radius: 0;
		box-sizing: border-box;
		font-weight: bold;
		font-family: Circe, sans-serif;
	}

	button {
		font-weight: 900;
		padding: 10px 25px;padding-right: 25px;
		padding-left: 25px;
	}

	div {
		position: absolute;
		left: 11px;
		bottom: 3px;
	}
}

.preparing_points {
	padding-top: 10px;
}

.preparing_point {
	padding-left: 30px;
	font-weight: bold;
}

.preparing_sent {
	max-width: 250px;
	box-sizing: border-box;
	position: absolute;
	right: 0;
	left: 0;
	margin: auto;
	transform: translateY(60px);
	display: flex;
	flex-direction: column;
	gap: 5px;
	padding-left: 30px;
	opacity: 0;
	transition: opacity .6s;

	.checked_before {
		margin-left: -30px;
		gap: 12px;
	}
	
}

.preparing_window.email_sent {
	.preparing_info,
	.preparing_form {
		opacity: 0;
		pointer-events: none;
	}

	.preparing_sent {
		opacity: 1;
	}
}



.uploading {
	max-width: 382px;
	padding: 0 20px;
	box-sizing: border-box;
	position: absolute;
	top: 220px;
	right: 0;
	left: 0;
	margin: auto;
}

.uploading_title {
	font-size: 20px;
	text-transform: uppercase;
}

.uploading_small {
	font-size: 15px;
	color: #9a9a9a;
	margin-top: 25px;
	margin-bottom: 20px;
}

.uploading_block {
	display: flex;
	gap: 25px;

	.btn-upload {
		max-width: 36px;
		padding-right: 23px;
		padding-bottom: 18px;
		padding-left: 23px;
		margin: auto;
	}

	.choose_model_popup {
		height: auto;
		display: flex;
		background: none;
		top: auto;
		margin-top: 90px;
		padding-bottom: 60px;
		position: absolute;
		left: -5px;
		transform: none;
	}
}

.uploading_block_text {
	max-width: 220px;
}





.limitations {
	max-width: 405px;
	position: absolute;
	top: 220px;
	right: 0;
	left: 0;
	margin: auto;
}

.limitations_title {
	padding-left: 25px;
	font-size: 20px;
	text-transform: uppercase;
}

.limitations_block {
	margin-top: 20px;
	padding: 20px 10px 30px 25px;
	background-color: #fff;
	overflow: hidden;
}

.limitations_slide {

}

.limitations_slide h5 {
	font-size: 18px;
	font-weight: bold;
}

.limitations_slide p {

}

.limitations_dots {
	display: flex;
	justify-content: center;
	margin-top: 20px;
	gap: 18px;
	position: static;
}

.limitations_dot {
	width: 17px;
	height: 17px;
	border-radius: 50%;
	border: 3px solid #ff00cc !important;
	cursor: pointer;
	background-color: #fff;
	margin-right: 0 !important;
	margin-left: 0 !important;
}

.limitations_dot.swiper-pagination-bullet-active {
	background-color: #ff00cc;
}

.limitations_close {
	width: 230px;
	position: absolute;
	right: 0;
	bottom: 50px;
	left: 0;
	margin: auto;
	display: none;
}


.swiper[data-current-slide="5"] + .limitations_dots {
	opacity: 0;
	pointer-events: none;
}
.swiper[data-current-slide="5"] + .limitations_dots + .limitations_close {
	display: block;
}




/* product page */
.product_page {
	margin: 0 auto;
	padding: 40px 20px;
	position: relative;
}

.product_page_layout {
	max-width: 1200px;
	display: flex;
	gap: 40px;
}

.product_page_main {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.product_page_main_inner {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	flex-wrap: wrap;
}

.product_page_image {
	width: 65%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.product_page_image img {
	width: 100%;
	height: auto;
}

.product_page_video {
	width: 33%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.product_page_image video {
	max-width: 100%;
	height: auto;
}

.product_page_description {
	width: 100%;
	box-sizing: border-box;
	background-color: #fff;
	text-align: center;
	padding: 140px 20px 125px;
	font-size: 18px;
}

.fitme_section {
	margin-top: 40px;
	text-align: center;
}

.fitme_text {
	color: #666;
	font-size: 14px;
}

.product_page_details {
	width: 25%;
	flex-shrink: 0;
}

.product_page_details-m {
	display: none;
}

.product_page_back {
	font-size: 14px;
	font-weight: bold;
}

.product_page_back.-m {
	display: none;
}

.product_page_title {
	margin-top: 40px;
	font-size: 24px;
	font-weight: bold;
}

.product_page_subtitle {
	font-size: 24px;
	line-height: 1;
	margin-top: 10px;
}

.product_page .product_oldprice {
	font-size: 18px;
}

.size_selector {
	margin-top: 40px;
}

.size_options {
	display: flex;
	gap: 20px;
	margin-bottom: 10px;
}

.size_option {
	width: 40px;
	height: 40px;
	border-radius: 16px;
	border: 1px solid #ddd;
	background: white;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 14px;
	transition: all 0.2s;
}

.size_option:hover {
	border-color: #333;
}

.size_option.selected {
	border-color: #333;
}

.size_info {
	font-size: 12px;
}

.product_page_price {
	font-size: 24px;
	margin-top: 40px;
}

.add_to_basket {
	width: 100%;
	max-width: none;
	margin-top: 30px;
	font-weight: normal;
}

.add_to_basket:hover {
	background: #e6127a;
}

.add_to_basket:before {
	content: "+ ";
	margin-right: 25px;
	margin-left: -35px;
	font-size: 24px;
	line-height: 0;
}


.product_page-horizontal {
	.product_page_image {
		width: 100%;
	}

	.product_page_video {
		width: calc((100% - 15px) * 0.6);
	}

	.product_page_description {
		width: calc((100% - 15px) * 0.4);
		padding-top: 20px;
		padding-bottom: 20px;
	}

	.fitme_section {
		margin-top: 23px;
	}
}







@media screen and (min-width: 1441px) {
	.proto_footer {
		padding: 2.8vw 0 7.5vw;
		font-size: 1.11vw;
	}

	.proto_footer_intro {
		max-width: 71.05vw;
		font-size: 1.66vw;
		padding-top: 1.08vw;
	}

	.proto_footer_grid {
		max-width: 71.05vw;
	}
	
	.proto_footer_bottom {
		max-width: 42vw;
		font-size: 0.832vw;
	}

	.proto_footer_btn_after {
		font-size: 1.25vw;
	}

	.proto_footer_btn_after span:first-child {
		font-size: 2.1vw;
	}
}

@media screen and (min-width: 1182px) {
	.column_content .block:first-child {
		opacity: 1;
	}
}

@media screen and (max-width: 1335px) {
	body {
		padding-right: 20px;
		padding-left: 20px;
	}
}

@media screen and (max-width: 1330px) {
	p br {
		display: none;
	}
}

@media screen and (max-width: 1181px) {
	body {
		padding: 0 0 80px;
	}
	
	main {
		flex-direction: column;
		align-items: center;
		gap: 0;
	}

	.block10 {order: 10;}
	.block70 {order: 20;}
	.block80 {order: 30;}
	.block130 {order: 40;}
	.block140 {order: 50;}
	.block160 {order: 55;}
	.block150 {order: 60;}
	.block20 {order: 70;}
	.block30 {order: 80;}
	.block35 {order: 85;}
	.block100 {order: 90;}
	.block110 {order: 100;}
	.block40 {order: 110;}
	.block90 {order: 120;}
	.block170 {order: 130;}
	.block50 {order: 140;}
	.block180 {order: 150;}
	.block120 {order: 160;}
	.block60 {order: 180;}

	.block.a2 {
		box-shadow: none;
	}

	.column_content {
		gap: 0;
	}

	.block.a {
		animation: none;
	}

	.block170 img {
		width: calc(100% + 20px);
	}

	footer {
		bottom: 25px;
		left: 25px;
	}
}

@media screen and (max-width: 640px) {
	.header {
		padding-right: 20px;
		padding-left: 20px;
	}

	.proto_logo .logo {
		width: 100%;
	}

	.products_grid {
		grid-template-columns: repeat(2, 1fr);
		padding-right: 20px;
		padding-left: 20px;
	}

	.product_card:nth-child(5) {
		grid-column: span 2;
	}

	.product_card:nth-child(7),
	.product_card:nth-child(15) {
		grid-column: span 2;
		grid-row: span 1;
	}

	.product_card:nth-child(7) {order: 8;}
	.product_card:nth-child(8) {order: 7;}


	.proto_footer {
		padding-right: 20px;
		padding-left: 20px;
		padding-bottom: 50px;
	}

	.proto_footer_intro {
		font-size: 20px;
		text-align: center;
	}

	.proto_footer_intro span {
		display: block;
	}

	.proto_footer_item {
		color: #b0b0b0;
		gap: 15px;
		line-height: 1.2;
	}

	.proto_footer_item strong {
		font-weight: bold;
	}

	.proto_footer_head {
		display: none;
	}

	.proto_footer_item {
		flex-direction: column;
	}

	.proto_footer_item_title {
		text-align: left;
	}

	.proto_footer_item_title,
	.proto_footer_item_cell1,
	.proto_footer_item_cell2 {
		width: auto;
	}

	.proto_footer_item_no {
		display: inline;
	}

	.proto_footer_item:last-child {
		padding-top: 0;
	}

	.proto_footer_item:last-child .proto_footer_item_title,
	.proto_footer_item:last-child .proto_footer_item_cell1 {
		display: none;
	}

	.proto_footer_btn_after {
		left: 20px;
		gap: 0.8em;
	}

	.product_image,
	.product_video_wrap {
		transition: none;
	}

	.add_btn {
		opacity: 1;
		transition: none;
	}

	.proto_msg {
		position: fixed;
		top: 220px;
	}


	.product_page_layout {
		flex-direction: column;
		align-items: center;
	}

	.product_page_details {
		display: none;
	}

	.product_page_details-m {
		display: block;
	}

	.product_page_main_inner {
		flex-direction: column;
		gap: 40px;
	}

	.product_page_image {
		width: 100%;
		order: 2;
	}

	.product_page_video {
		width: 100%;
		order: 1
	}

	.product_page_description {
		order: 2;
	}

	.product_page_details-m {
		position: absolute;
		bottom: 30px;
		left: 20px;
		
		.product_page_title {
			font-size: 16px;
			color: #000;
		}

		.product_page_subtitle {
			margin-top: 5px;
			font-size: 16px;
			color: #000;
		}
		
		.product_page_price {
			margin-top: 10px;
			font-size: 16px;
			color: #000;
		}

		.product_oldprice {
			font-size: 12px;
		}
	}

	.product_page .add_btn {
		display: block;
		right: 20px;
		bottom: 50px;
	}

	.product_page_back.-d {
		display: none;
	}

	.product_page_back.-m {
		display: block;
		font-size: 16px;
	}

}

@media screen and (max-width: 480px) {
	body {
		padding-right: 0;
		padding-left: 0;
	}
}

@media screen and (max-width: 405px) {
	.limitations_block br {
		display: none;
	}
}

@media screen and (max-width: 400px) {
	.column {
		width: 100%;
	}

	.block140_img1,
	.block160_img1 {
		max-width: 100%;
	}
}

@media screen and (max-width: 391px) {
	.fz40 {
		font-size: 9.7vw;
	}
}

@media screen and (max-width: 380px) {
	.proto_footer_btn {
		font-size: 4vw;
	}
}

@media screen and (max-width: 380px) {
	.fitme_section {
		font-size: 4.6vw;
	}
}

@media screen and (max-width: 518px) {
	.m {
		display: none;
	}
}

.nowrap {
	white-space: nowrap;
}