* {
	margin: 0;
	padding: 0;
	font-family: "Lato", serif;
}

html {
	scroll-behavior: smooth;
	max-width: 2560px;
	background-image: url('/img/body/background_a10.webp');
	background-repeat: no-repeat;
	background-attachment: fixed;	
	background-size: cover;
	font-size: 16px;
	line-height: 24px;
}

body {
	background-color: var(--c-green-pst-10);
}

h1 {font-size: 2rem;}
h2 {font-size: 1.75rem;}
h3 {font-size: 1.5rem;}
h4 {font-size: 1.25rem;}
h5 {font-size: 1rem;}
h6 {font-size: 1rem;}

/* a, p, label, input, button, ul {font-size: 1.33rem;} */

a {
	background-color: transparent;
	color: var(--c-i-fg);
	text-decoration: none;
	transition: 0.3s;
}

a:hover {
	color: var(--c-h-bg);
}

table {
	width: 100%;
	/* font-size: 1.33rem; */
}
tr {
	background-color: var(--c-q-bg);
	padding: 0.5rem 0.75rem;
}
#lstmsk tr {
	cursor: pointer;
}
th, td {
	height: 32px;
	text-align: center;
	border: 1px solid var(--c-i-bg);
	border-radius: 3px;
}
th {
	background-color: var(--c-q-bg);
}
tr:hover td {
	background-color: var(--c-i-bg);
}

header {
	background-color: rgba(0, 0, 0, 0.8);
	/* background-color: var(--c-green-dark-50); */
	position: fixed;
	width: 100%;
	height: 112px;
	left: 0;
	top: 0;
	padding: 0 0 10px 10px;
	z-index: 1000;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	transition: 0.3s;
	z-index: 9999;
}

header.scrolled {
	background-color: rgba(0, 0, 0, 0.7);
	/* background-color: var(--c-green-dark-50); */
	height: 48px;
	backdrop-filter: blur(5px);
}

header .logo {
	/* background-image: url("/assets/webp/logov2.webp"); */
	/* background-color: var(--c-green-dark-50); */
	width: 256px;
	height: 100%;
	/* margin: 28px 28px 0 0; */
	margin-top: 14px;
	position: relative;
	transition: 0.3s;
	z-index: 9999;
}

header.scrolled .logo {
	width: 140px;
	margin-top: 7px;
	/* margin: 10px 28px 0 0; */
}

header .logo img {
	width: 100%;
	height: auto;
}

header nav {
	display: block;
	width: calc(100% - 252px);
	border-bottom: 1px solid var(--c-green-pst-50);
	position: relative;
	background-color: transparent;
	top: auto;
	left: 0;
}

header.scrolled nav {
	width: calc(100% - 160px);
}

header nav ul {
	display: flex;
	justify-content: flex-end;
	list-style: none;
	line-height: initial;
}

header nav ul a {
	display: block;
	padding: 19px 28px;
	color: #fff;
	text-transform: uppercase;
}

header nav ul a:hover {
	color: #fff;
}

header nav li {
	display: inline-block;
	border-left: 1px solid var(--c-green-pst-50);
	transition: 0.25s;
}

header nav li:hover {
	background-color: var(--c-green-pst-50);
}

footer {
	background-image: url('/img/body/background_a10.webp');
	background-repeat: no-repeat;
	background-attachment: fixed;	
	background-size: cover;
	background-color: #111111;
	color: #eeeeee;
}

footer h4 {
	color: var(--c-h-bg);
	padding-bottom: 2.5%;
}

footer a {
	color: var(--c-h-fg);
}

footer ul {
	list-style: none;
}

footer .footer-menu {
	display: flex;
	padding: 2.5% 10%;
	border-top: 1px solid rgba(243,243,243,1);
}


footer .footer-menu-items {
	padding: 12px;
	margin: 0 6px;
	background: var(--c-green-pst-10);
	border-radius: 8px;
}

footer .row {
	display: flex;
	padding: .5% 5%;
}