[v-cloak] > * { display:none; }

* {
	font-feature-settings: "liga", "cpsp", "kern";
	box-sizing: border-box;
}

main {
	min-height: 100vh;
}
@media screen and (min-width: 1100px) {
	main {
		min-height: 700px;
	}
}

html, body, div, span, applet, object, iframe, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
	scroll-behavior: smooth;
}
address {
	font-style: normal;
}
p {
	margin-bottom: 0.5rem;
	font-family: 'Golos Text';
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
html {
	font-size: 20px;
	line-height: 1.3;
	font-family: var(--font);
	scrollbar-gutter: stable;
}
body {
	position: relative;
	background-color: var(--lighter);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	accent-color: var(--parimary);
}
@media screen and (max-width: 992px) {
	body {
		background-color: var(--lighter);
	}
}
ol:not([type]), ul:not([type]) {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
    border-spacing: 0;
	margin-left: -0.5em;
}
	td, th, caption {
		text-align: left;
	}
	td, th {
		padding: 0.25em 0.5em;
	}
	tr:not(thead tr):hover {
		background-color: color-mix(in srgb, currentColor, transparent 96%);
	}
img {
	display: block;
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
}
hr {
	margin: 1rem 0;
	background-color: #e2e3e4;
	border: none;
	height: 1px;
	width: 100%;
}
br {
	width: 100%;
}
h1, h2, h3, h4, p {
	margin-top: 0;
}
input, textarea {
	font-family: inherit;
}
button {
	font-family: inherit;
}
dialog {
	border: none;
	border-radius: 1rem;
	animation: slide-up 0.05s ease-out;
}
dialog::backdrop {
	animation: fade-in 0.04s ease-out;
}
.row {
	display: flex;
	gap: 1em;
	align-items: flex-start;
	flex-wrap: wrap;
}
	.row.nowrap {
		flex-wrap: nowrap;
	}

.row-2, .row-3, .row-4, .row-5, .row-6, .row-7, .row-8, .row-9, .row-10, .row-11, .row-12 {
	display: grid;
	grid-template-columns: repeat(var(--row-columns), 1fr);
	align-items: first baseline;
	gap: 0.5em;
}
	.row-2 { --row-columns: 2 }
	.row-3 { --row-columns: 3 }
	.row-4 { --row-columns: 4 }
	.row-5 { --row-columns: 5 }
	.row-6 { --row-columns: 6 }
	.row-7 { --row-columns: 7 }
	.row-8 { --row-columns: 8 }
	.row-9 { --row-columns: 9 }
	.row-10 { --row-columns: 10 }
	.row-11 { --row-columns: 11 }
	.row-12 { --row-columns: 12 }

.fade {
	background-color: #000a;
	cursor: pointer;
	backdrop-filter: contrast(0.4) brightness(0.9);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	width: 100%;
	height: 100%;
	cursor: pointer;
	animation: fade-in 0.2s ease;
}
.fade--full {
	position: fixed;
	width: 100vw;
	height: 100vh;
}

.btn {
	padding: 0.8em 1em;
	border-radius: 0.5em;
	border: none;
	cursor: pointer;
	transition: all 0.05s ease;
	font-weight: 500;
	font-size: inherit;
}
	.btn:focus {
		outline: auto;
	}

.btn--default {
	background-color: var(--primary-alpha-100);
	color: var(--dark);
}
	.btn--default:hover {
		background-color: var(--primary-alpha-300);
		color: var(--dark);
	}

.btn--block {
	width: 100%;
	flex-grow: 1;
}

.btn--sm {
	padding: 0.6rem 0.8rem;
	font-size: 0.8rem;
	font-weight: inherit;
}

.btn--gradient {
	color: white;
	font-weight: 500;
}
.btn--gradient:hover,
.btn--gradient:focus {
	background-color: var(--primary);
	background-image: linear-gradient(45deg, #22aeff 0%, #1D8FE1 48%, var(--primary) 100%);
}

@media screen and (max-width: 992px) {
	.btn {
		transition: all 0.2s ease;
	}
	.btn:not(:disabled):focus,
	.btn:not(.disabled--fake):focus {
		transform: translateY(-3px);
		outline: none;
	}
}

@media screen and (width < 992) {
	h1, h2 {
		font-size: 2rem;
	}
	h3, h4, h5, h6 {
		font-size: 1.5rem;
	}
}

@media screen and (prefers-reduced-motion: reduce) {
    * {
        scroll-behavior: unset;
		transition-duration: 0s;
		animation-duration: 0s;
    }
}
