@import 'ui-kit/typography.css';
@import 'ui-kit/variables.css';
@import 'ui-kit/buttons.css';
@import 'ui-kit/form-elements.css';
@import 'ui-kit/editor.css';
@import 'ui-kit/global-modificator.css';

/* Reset */

html,
body,
body * {
	box-sizing: border-box;
}

body {
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	font-feature-settings: 'ss01'on, 'salt'on;
	font-family: Rotunda,sans-serif;
	color: var(--shark-shark-600, #0A0B0D);
}

body * {
	margin: 0;
	padding: 0;
	outline: 0;
	background-repeat: no-repeat;
	background-position: center;
	font-weight: normal;
	font-style: normal;
	-webkit-overflow-scrolling: touch;
	-webkit-tap-highlight-color: transparent;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

li {
	list-style-type: none;
}

a {
	text-decoration: none;
	transition: color 0.4s;
}

img {
	border: none;
	user-select: none;
	-webkit-user-select: none;
	-webkit-user-drag: none;
}

input,
textarea {
	border-radius: 0;
}

input[type="number"] {
	-moz-appearance: textfield;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

input::-ms-reveal,
input::-ms-clear {
	display: none;
}

textarea {
	resize: none;
}

/* Scroll lock */

html.-scroll-lock,
html.-scroll-lock body {
	height: calc(var(--window-inner-height) - 1px);
	overflow: hidden;
}

html.-scroll-lock body {
	position: relative;
}

body.-scroll-lock {
	padding-right: var(--scrollbar-width);
}

/* Global (Global css and params) */

.--pc-display {
	display: block;
}

.--pc-tab {
	display: inline-block;
}

.--tablet-display,
.--mobile-display,
.--mobile-tab,
.--mob-tab {
	display: none !important;
}

.container {
	width: calc(100% - min(240px, 16.667vw));
	max-width: 1600px;
	margin: 0 auto;
}

.container.-bigger {
	width: calc(100% - min(80px, 5.556vw));
	max-width: 1600px;
	margin: 0 auto;
}

.--display-none {
	display: none !important;
}

.section-title .tab {
  width: min(50px, 3.472vw);
}


@media screen and (max-width: 1440px) {
	/* Global (Global css and params) */

	.container {
		width: calc(100% - min(1600px, 11.111vw));
		max-width: 1200px;
	}

	.container.-bigger {
		width: calc(100% - min(40px, 2.778vw));
	}
}

@media screen and (max-width: 1100px) {
	/* Global (Global css and params) */

	.container {
		width: 728px;
	}

	.container.-bigger {
		width: 728px;
	}

	.--pc-display,
	.--pc-tab {
		display: none !important;
	}

	.--tablet-display {
		display: block !important;
	}

	.--mobile-tab,
	.--mob-tab {
		display: inline-block !important;
	}

	.section-title .tab {
		width: 32px;
	}

}

@media screen and (max-width: 759px) {
	/* Global (Global css and params) */

	.--tablet-display {
		display: none !important;
	}

	.--mobile-display {
		display: block !important;
	}

	.container,
	.container.-bigger {
		width: 100%;
		padding: 0 16px;

	}
}