html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, ins, kbd, q, samp, small, strike, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, input, button, select, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
	border: 0;
	font-family: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	text-decoration: none;
	margin: 0;
	outline: 0;
	padding: 0;
	color: inherit;
}

*, *::before, *::after{
	box-sizing: border-box;
	margin-top: 0;
}

p{ margin-bottom: 15px; }
p:empty{ margin-bottom: 0; }

html, body {
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	height: 100%;
	scroll-behavior: smooth;
}

#page{
	min-height: 100%;
	display: flex;
	flex-direction: column;
	align-items: stretch;
}
#content{
	flex-grow: 1;
}
.flex{
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
}

header .wpml-ls{
	float: right;
	clear: none;
	padding: 0;
	border: none;
}
header .wpml-ls a{
	display: block;
	padding: 2px;
	line-height: 1;
	font-weight: bold;
}

/* MAIN MENU */
nav{
	display: flex;
	align-items: center;
	flex-grow: 1;
}
nav ul.menu > li{
	display: inline-flex;
	align-items: center;
	position: relative;
}
nav li{
	list-style: none;
}

/* Dropdown menu */
nav li.menu-item-has-children > a:after{
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 4px 3.5px 0 3.5px;
	border-color: #0080c8 transparent transparent transparent;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}
nav .sub-menu{
	display: none;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 9;
	min-width: 200px;
	transform: translateY(100%);
}
nav ul.menu > li:hover > .sub-menu{
	display: block;
}


footer ul{
	display: inline-block;
}
footer ul li{
	display: inline-block;
	list-style: none;
}
footer ul li + li:before{
	content: ' - ';
}

footer span.top{
	position: fixed;
	bottom: 15px;
	right: 30px;
	font-size: 12px;
	cursor: pointer;
	color: var(--clr-pri);
}
footer span.top svg{
	display: block;
	font-size: 17px;
	margin: 0 auto;
}


.cookie-bar{
	background-color: #f1f1f1;
	text-align: center;
	overflow: auto;
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 9;
	padding: 15px;
}
.cookie-bar p{
	margin-bottom: 0;
}
.cookie-bar span{
	width: 40px;
	height: 40px;
	line-height: 40px;
	cursor: pointer;
	text-align: center;
	position: absolute;
	top: 15px;
	right: 15px;
	border: 1px solid var(--clr-txt);
}
.cookie-bar span svg{
	margin: 0;
}

@media (max-width: 960px){
	.cookie-bar p{
		font-size: 12px;
		text-align: left;
	}
	.cookie-bar span{
		position: static;
		float: right;
		margin-left: 10px;
	}
	.cookie-bar br{
		display: none;
	}
}


/*WP BLOCKS*/
.wp-block-table{
	border-collapse: collapse;
	margin: 0 auto 20px;
	width: 100%;
}
.wp-block-table td{
	border: 1px solid #efefef;
	padding: 10px;
}
.wp-block-table tr:nth-child(even) td{
	background: #f5f5f5;
}
.wp-block-media-text__media img{
	width: max-content;
}
#content .wp-block-media-text .wp-block-media-text__content{
	padding: 0 0 0 40px;
}
#content .has-media-on-the-right .wp-block-media-text__content{
	padding: 0 40px 0 0;
}


/*SEARCH*/
form.search-form{
	position: relative;
	margin-bottom: 15px;
}
form .search-field{
	height: 45px;
	border: 1px solid #ccc;
	border-radius: 6px;
	padding: 0 10px;
	width: 100%;
}
form .search-submit{
	border-radius: 6px;
	position: absolute;
	top: 1px;
	right: 1px;
	height: 43px;
	width: 43px;
	text-align: center;
	cursor: pointer;
	background: #fff;
}
form .search-submit:hover{
	opacity: 0.7;
}
form .search-submit svg{
	margin: 0;
}


/*REVEAL*/
@media( min-width: 961px){
	.reveal{
		opacity: 0;
		transform: translateY(-30px);
	}
	.reveal-left,
	.wp-block-media-text{
		opacity: 0;
		transform: translateX(-30px);
	}
	.reveal-right,
	.wp-block-media-text.has-media-on-the-right{
		transform: translateX(30px);
	}
	.reveal-visible{
		opacity: 1;
		transform: translateY(0);
		transition: 1s cubic-bezier(.5, 0, 0, 1);
	}
	.reveal-left.reveal-visible,
	.reveal-right.reveal-visible,
	.wp-block-media-text.reveal-visible{
		transform: translateX(0);
	}
}