/*
	Приведение дефаултных стилей браузеров
	к общему виду на основе normalize.css
*/

*:focus {
	outline:none !important
}

*::selection {
	background: var(--mark);
	color: var(--white);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	font-family: var(--font-family-sans-serif);
	line-height: 1.5;
		-webkit-text-size-adjust: 100%;
		-ms-text-size-adjust: 100%;
		-webkit-tap-highlight-color: transparent;
}

html:focus-within {
	scroll-behavior: smooth;
}

article,
aside,
figcaption,
figure,
footer,
header,
main,
nav,
section {
	display: block;
}

body {
	margin: 0;
	font-family: var(--font-family-sans-serif);
	font-size: 1em;
	font-weight: normal;
	line-height: 1.5;
	color: var(--black);
	text-align: left;
	background: var(--skyblue);
	min-height: 100vh;
}

[tabindex="-1"]:focus {
	outline: 0 !important;
}

hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
	margin-top: 1em;
	margin-bottom: 1em;
	border: 0;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
	margin-top: 0;
	margin-bottom: .5em;
	line-height: 1;
	font-weight: bold;
}

h1,
.h1 {
	font-size: 2em;
}

h2,
.h2 {
	font-size: 1.8em;
}

h3,
.h3 {
	font-size: 1.6em;
}

h4,
.h4 {
	font-size: 1.4em;
}

h5,
.h5 {
	font-size: 1.2em;
}

h6,
.h6 {
	font-size: 1em;
}

p,
ol,
ul {
	margin-top: 0;
	margin-bottom: 1em;
	padding-inline-start:0;
	list-style-position: inside;
}

abbr[title],
abbr[data-original-title] {
	text-decoration: underline;
		-webkit-text-decoration: underline dotted;
	text-decoration: underline dotted;
	cursor: help;
	border-bottom: 0;
		-webkit-text-decoration-skip-ink: auto;
	text-decoration-skip-ink: auto;
}

ol ol,
ul ul,
ol ul,
ul ol {
	margin-bottom: 0;
}

b,
strong,
.bold {
	font-weight: bolder;
}

small,
.small {
	font-size: 80%;
	font-weight: normal;
}

mark,
.mark {
	padding: .2em;
	background-color: var(--mark);
}

sub,
sup {
	position: relative;
	font-size: 75%;
	line-height: 0;
	vertical-align: baseline;
}

sub {
	bottom: -.25em;
}

sup {
	top: -.5em;
}

a {
	color: var(--blue);
	text-decoration: none;
	background-color: transparent;
	transition: all 0.1s ease-out allow-discrete;
}

a:hover {
	color: var(--blue);
	text-decoration: underline;
	transition: all 0.2s ease-in allow-discrete;
}

a:not([href]):not([tabindex]) {
	color: inherit;
	text-decoration: none;
}

a:not([href]):not([tabindex]):hover,
a:not([href]):not([tabindex]):focus {
	color: inherit;
	text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
	outline: 0;
}

a[target="_blank"] {
	padding-right: .25em;
}

a[target="_blank"]:after {
	background-image: none;
}

a:focus {
	outline-color: transparent;
}

pre,
code {
	font-family: var(--font-family-monospace);
	font-size: 1em;
	word-break: break-word;
}

code {
	font-size: 90%;
	overflow-wrap: break-word;
	word-wrap: break-word;
}

a > code {
	color: inherit;
}

pre {
	margin-top: 0;
	margin-bottom: 1em;
	overflow: auto;
}

figure {
	margin: 0;
}

img {
	vertical-align: middle;
	border-style: none;
}

table {
	border-collapse: separate;
	border: none;
	border-spacing: 0 0;
	margin: 0 auto 1em auto;
}

caption {
	padding-top: .75em;
	padding-bottom: .75em;
	color: var(--black);
	text-align: center;
	caption-side: top;
}

th {
	text-align: inherit;
}

label {
	display: inline-block;
	margin-bottom: .5em;
}

button {
	border-radius: 0;
}

button:focus {
	outline: 0;
	border: 0;
}

input,
button,
select,
textarea {
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
}

button,
input {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

select {
	word-wrap: normal;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
		-webkit-appearance: button;
}

button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
	cursor: pointer;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	padding: 0;
	border-style: none;
}

input[type="radio"],
input[type="checkbox"] {
	box-sizing: border-box;
	padding: 0;
}

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
		-webkit-appearance: listbox;
}

textarea {
	overflow: auto;
	resize: vertical;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

[type="search"] {
	outline-offset: -2px;
		-webkit-appearance: none;
}

[type="search"]::-webkit-search-decoration {
		-webkit-appearance: none;
}

.hidden,
[hidden] {
	display: none !important;
}

svg,
path,
circle {
	shape-rendering: geometricPrecision;
}