@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 400;
	src: local('Open Sans'), local('OpenSans'), url(../fonts/OpenSans-VariableFont_wdth,wght.ttf) format('truetype');
}

:root {
	--background-cookie: rgb(0, 0, 0, 0.7);
	--white-text-cookie: #fff;
	--hover-text-cookie: #222;
	--button-background-cookie: #fff;
	--button-background-hover-cookie: #006100;
	--button-text-cookie: #000;

}

/* Reset */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Open Sans', sans-serif;
	font-size: 100%;
}

#wrapperApp {
	height: 100%;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	background: linear-gradient(0deg, #FFFFFF 15%, #2e2e2e 100%) fixed;
}

main {
	flex: 1;
}

/* Navbar */
#nav ul {
	list-style: none;
}

#nav a {
	text-decoration: none;
	color: #fff;
	font-weight: bold;
	transition: 0.6s ease;
}

#nav {
	padding: 20px 10px;
}

#nav ul li ul {
	border: 1px solid #a3a3a3;
	box-shadow: rgba(0, 0, 0, 0.45) 1px 1px 40px 0px inset;
	border-radius: 0;
}

#nav ul li ul .dropdown-item {
	color: #000;
}

#nav li.active {
	border-color: orange;
}

#nav a.navbar-brand {
	margin-left: 5px;
}

#nav a.navbar-brand .logo {
	align-items: center;
	display: flex;
	font-weight: bold;
}

#nav a.navbar-brand img {
	filter: drop-shadow(0px 0px 20px #ffffff96);
	color: rgb(255, 255, 255, 0.6);
	transition: filter .5s ease 0s;
}

#nav a.navbar-brand:hover img {
	filter: drop-shadow(0px 0px 50px #fff);
}

a.navbar-brand:hover .logo {
	filter: drop-shadow(0px 0px 24px #6d6d6d);
}

.links {
	display: flex;
}

.links>li {
	margin: 8px;
	border-bottom: 2px solid transparent;
	padding: 8px;
}

.links>li:hover {
	border-color: orange;
}

.links>li ul li {
	margin: 0;
	border-bottom: 2px solid transparent;
	padding: 10px 0;
}

.logo {
	filter: drop-shadow(0px 0px 14px #000);
	position: absolute;
	top: -61px;
	left: 27px;
	transition: filter .5s ease 0s;
}

.custom-toggler .navbar-toggler-icon {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgb(240, 152, 25, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.custom-toggler.navbar-toggler {
	border-color: #f09819;
}

/* footer */
#footerIndex .allRights {
	color: rgb(255, 255, 255, .7);
	font-weight: 300;
}

#footerIndex .privacy {
	color: rgb(255, 255, 255, .7);
}

#footerPages {
	border-top: 1px solid #979797;
}

/* cookie */
.cookie-container {
	display: flex;
	align-content: center;
	align-items: center;
	padding: 1rem 2rem;
	background: var(--background-cookie);
	color: var(--white-text-cookie);
	position: fixed;
	bottom: 0;
	font-size: 1rem;
	gap: 2rem;
	opacity: 1;
	visibility: visible;
	flex-wrap: wrap;
}

.cookie-container.hide {
	opacity: 0;
	visibility: hidden;
}

.cookie-container a {
	color: var(--white-color-cookie);
}

.cookie-container a:hover {
	color: var(--hover-text-cookie);
}

.cookie-container .cookie-text {
	flex: 8 768px;
}

.cookie-container .agree {
	flex: 1 150px;
	text-align: center;
}

.agree button {
	background: var(--button-background-cookie);
	color: var(--button-text-cookie);
	border: none;
	padding: 0.4rem 1.2rem;
	cursor: pointer;
	border-radius: 20px;
	font-size: 1rem;
}

.agree button:hover {
	background: var(--button-background-hover-cookie);
	color: var(--white-text-cookie);
}

/* Media Queries */
@media (max-width:460px) {
	.logo {
		left: -18px;
	}

}

@media (max-width:399px) {
	.links li {
		margin-top: 6px;
	}
}

@media (max-width:1600px) {
	.links>li {
		margin: 1px;
	}
}