@charset 'utf-8';

html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,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,main,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video,hr,button,input,select,textarea{-webkit-tap-highlight-color:transparent;margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline;outline:none;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;line-height:inherit;color:inherit;}main,article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section,video{display:block}code,kbd,pre,samp{font-family:monospace,serif;font-size:1em}pre{white-space:pre-wrap}blockquote::before,blockquote::after,q::before,q::after{content:'';content:none}blockquote,q{quotes:none}button,input,select,textarea{border-radius:0;font-family:inherit;font-size:100%;text-transform:none}input[type="search"]{-webkit-appearance:textfield;}input[type="search"]:-webkit-search-cancel-button,input[type="search"]:-webkit-search-decoration{-webkit-appearance:none}svg:not(:root){overflow:hidden}

/* навсегда зарезервировать место под скролл бар, чтоб не прыгало при оверфло хиден когда открыта модалка */
html,
body {
  scrollbar-gutter: stable;
}

html {
	-webkit-font-smoothing:antialiased;
	-moz-osx-font-smoothing:grayscale;
	-webkit-overflow-scrolling:touch;
	overflow-scrolling:touch;
}

img,
svg,
video,
iframe {
	display: block;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	margin: 0;
}

table {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
	vertical-align: top;
}

p {
	text-wrap: pretty;
}
:is(p, ol, ul):not(:first-child) {
	margin-top: 1em;
}

a {
	color: inherit;
	text-decoration: none;
}
a:hover {
	color: currentColor;
}
p a {
	color: currentColor;
	text-decoration: underline;
	text-decoration-style: solid;
	text-underline-offset: 2px;
	text-decoration-thickness: 1px;
	text-decoration-color: currentColor;
}
p a:hover {
	text-decoration-color: transparent;
}

b {
	font-weight: 700;
}

i {
	font-style: italic;
}

label {
	display: block;
}

label,
button {
	cursor: pointer;
}