/* =============================================
   01_BASE — reset + шрифты + базовые элементы
   ============================================= */

@charset "UTF-8";

/* ── Шрифты ── */

@font-face {
	font-family: Geologica;
	font-display: swap;
	src: url("../assets/fonts/Geologica-Thin.woff2") format("woff2");
	font-weight: 100;
	font-style: normal;
}
@font-face {
	font-family: Geologica;
	font-display: swap;
	src: url("../assets/fonts/Geologica-SemiBold.woff2") format("woff2");
	font-weight: 600;
	font-style: normal;
}
@font-face {
	font-family: Geologica;
	font-display: swap;
	src: url("../assets/fonts/Geologica-Regular.woff2") format("woff2");
	font-weight: 400;
	font-style: normal;
}
@font-face {
	font-family: Geologica;
	font-display: swap;
	src: url("../assets/fonts/Geologica-Medium.woff2") format("woff2");
	font-weight: 500;
	font-style: normal;
}
@font-face {
	font-family: Geologica;
	font-display: swap;
	src: url("../assets/fonts/Geologica-Light.woff2") format("woff2");
	font-weight: 300;
	font-style: normal;
}
@font-face {
	font-family: Geologica;
	font-display: swap;
	src: url("../assets/fonts/Geologica-Bold.woff2") format("woff2");
	font-weight: 700;
	font-style: normal;
}
@font-face {
	font-family: "iconfont";
	font-display: swap;
	src: url("../assets/fonts/iconfont6d92.woff2") format("woff2");
}

/* ── Iconfont glyphs ── */

[class*="--icon-"]::before {
	font-family: iconfont;
}
[class*="--icon-warn"]::before { content: "\f101"; }
[class*="--icon-user"]::before { content: "\f102"; }
[class*="--icon-star"]::before { content: "\f103"; }
[class*="--icon-spollarrow"]::before { content: "\f104"; }
[class*="--icon-sliderarrow-r"]::before { content: "\f105"; }
[class*="--icon-sliderarrow-l"]::before { content: "\f106"; }
[class*="--icon-logout"]::before { content: "\f107"; }
[class*="--icon-file"]::before { content: "\f108"; }
[class*="--icon-eye"]::before { content: "\f109"; }
[class*="--icon-eye-close"]::before { content: "\f10a"; }
[class*="--icon-copy"]::before { content: "\f10b"; }
[class*="--icon-check"]::before { content: "\f10c"; }
[class*="--icon-back"]::before { content: "\f10d"; }
[class*="--icon-arrow-r"]::before { content: "\f10e"; }
[class*="--icon-arrow-r-thin"]::before { content: "\f10f"; }
[class*="--icon-again"]::before { content: "\f110"; }

/* ── CSS Reset ── */

* {
	padding: 0px;
	margin: 0px;
	border: 0px;
}
*,
*::before,
*::after {
	box-sizing: border-box;
}
*::before,
*::after {
	display: inline-block;
}
html,
body {
	height: 100%;
}
body {
	line-height: 1;
	scrollbar-gutter: stable;
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
input,
button,
textarea {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	color: inherit;
	background-color: transparent;
}
input,
textarea {
	width: 100%;
}
label {
	display: inline-block;
}
button,
select,
option {
	cursor: pointer;
}
a {
	display: inline-block;
	color: inherit;
	text-decoration: none;
}
a,
button {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
ul li {
	list-style: none;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}
h1, h2, h3, h4, h5, h6 {
	font-weight: inherit;
	font-size: inherit;
}
address {
	font-style: normal;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

/* ── Body / Wrapper / Container ── */

body {
	min-width: 360px;
	color: var(--mainColor);
	font-family: var(--font-family);
	font-size: 16px;
	background-color: var(--grayColor);
}
[data-fls-scrolllock] body {
	overflow: hidden;
	touch-action: none;
	overscroll-behavior: none;
}
.wrapper {
	min-height: 100%;
	display: flex;
	flex-direction: column;
	overflow: clip;
}
.wrapper > main {
	flex: 1 1 auto;
}
.wrapper > * {
	min-width: 0;
}

[class*=__container] {
	margin: 0 auto;
}

/* ── Spoller reset ── */

[data-fls-spollers] summary {
	list-style: none;
}
[data-fls-spollers] summary::marker,
[data-fls-spollers] summary::-webkit-details-marker {
	display: none;
}

/* ── Tabs base ── */

.tabs__navigation {
	display: flex;
}
.tabs__title {
	border: 1px solid #eee;
	padding: 10px 15px;
	border-radius: 5px;
}
.tabs__title.--tab-active {
	border: 1px solid #000;
}
.tabs__content {
	border: 1px solid #eee;
	padding: 10px 15px;
}

/* ── Container responsive ── */

@media (max-width: 63.99875em) {
	[class*=__container] {
		max-width: 1004px;
		padding: 0 10px;
	}
}
@media (min-width: 63.99875em) {
	[class*=__container] {
		padding: 0 20px;
		max-width: 1120px;
	}
}
@media (min-width: 74.99875em) {
	[class*=__container] {
		max-width: 1440px;
		padding: 0 60px;
	}
}
