@font-face
{
    font-family: 'UniversNextBold';
    font-display: fallback;
	src: url("../fonts/univers_next/UniversNextW1G-Bold.woff") format('woff');
}
@font-face
{
    font-family: 'UniversNextBoldItalic';
    font-display: fallback;
    src: url("../fonts/univers_next/UniversNextW1G-BoldItalic.woff") format('woff');
}
@font-face
{
    font-family: 'UniversNextLight';
    font-display: fallback;
    src: url("../fonts/univers_next/UniversNextW1G-Light.woff") format('woff');
}
@font-face
{
    font-family: 'UniversNextLightItalic';
    font-display: fallback;
    src: url("../fonts/univers_next/UniversNextW1G-LightItalic.woff") format('woff');
}
html
{
	min-height: 100%;
	padding: 0;
	margin: 0;
}
body
{
	font-family: 'UniversNextLight';
	background-color: #FFFFFF;
	min-height: 100vh;
	color: #000000;
	padding: 0;
	/* border: 1px solid black; */
	margin: 0;
	opacity: 0;
	-webkit-transition: opacity 1s ease-in;
    -moz-transition: opacity 1s ease-in;
    -ms-transition: opacity 1s ease-in;
    -o-transition: opacity 1s ease-in;
    transition: opacity 1s ease-in;
    overflow-x: hidden;
    width: 100%;
	position: relative;
}

.fixed
{
	overflow: hidden;
}

#dark
{
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #000000;
	opacity: 0;
	z-index:9;
	pointer-events: none;
	transition: opacity 0.4s ease-in;
}

.main
{
	display:block;
	margin: 0px auto;
	width:962px;
	max-width: 962px;
	position: relative;
	height: 100%;
	margin-bottom:100px;
}

h1, h2
{
	font-size: 24px;
	font-weight: normal;
	margin: 0px;
	margin-left: 0px;
	margin-bottom: 15px;
}

h2
{
	margin-left: 0;
	line-height: normal;
	font-size: 18px;
}

h2.buy-txt {
	font-size: 24px;
}

h3
{
	line-height: normal;
	font-size: 14px;
}

h4
{
	font-size: 14px;
	font-family: 'UniversNextBold';
	margin: 0;
}

p
{
	font-size:  18px;
	font-weight: normal;
	margin-top: 25px;
	text-align: left;
	line-height: 21px;
}
.description-text li
{
	font-size:  14px;
	font-weight: normal;
	text-align: left;
	line-height: 21px;
	margin-top: 21px;
	margin-left: 20px;
}

.mn-blue
{
	color: rgba(0, 158, 226, 1);
	font-family: 'UniversNextBold';
	cursor: pointer;
}

#event-page .mn-blue {
	cursor: auto;
}

.mn-blue-bold
{
	color: rgba(0, 158, 226, 1);
	font-family: 'UniversNextBold';
}

.mn-square
{
	position: relative;
	display: inline-block;
	min-height: 27px;
}

.mn-square::before
{
	content: "";
	background-color: rgba(0, 158, 226, 1);
	width: 12px;
	height: 12px;
	display: inline-block;
	vertical-align: middle;
	margin: 0 14px 4px 4px;
}

.mn-red
{
	color: red;
	font-family: 'UniversNextBold';
	cursor: pointer;
}

.light-txt
{
	color: #000000;
    font-family: 'UniversNextLight';
}

.bold-txt
{
	color: #000000;
    font-family: 'UniversNextBold';
}

.unbold
{
	font-family: 'UniversNextLight';
}

header
{
	display: block;
	position:fixed;
	width:100%;
	max-width: 962px;
	height: 130px;
	top:0px;
	background-color: #ffffff;
	border-bottom: 0.5px solid #000000;
	z-index: 8;
}

/* Checkbox */
input[type="checkbox"] + label
{
	display: inline-block;
  	font-size: 14px;
 	line-height: 21px;
}

[type="checkbox"]:checked, [type="checkbox"]:not(:checked ) {
	position: absolute;
	left: -9999px;
}

[type="checkbox"]:checked+label, [type="checkbox"]:not(:checked ) + label {
	position: relative;
	padding-left: 32px;
	cursor: pointer;
	display: inline-block;
}

[type="checkbox"]:checked+label:before, [type="checkbox"]:not(:checked ) + label:before {
	content: '';
	width: 22px;
	height: 22px;
  	background: url('../images/icons/checkbox-checked.png') center center no-repeat;
  	background-size: 16px auto;
	position: absolute;
	top: -4px;
	left: 0;
	border: 1px solid #ddd;
	border-radius: 0;
	background: #fff;
	box-shadow: inset 0 0 4px rgba(1, 1, 1, 0.05);
}

[type="checkbox"]:checked+label:after, [type="checkbox"]:not(:checked ) +label:after {
	content: '';
	width: 22px;
	height: 22px;
  	background: url('../images/icons/checkbox-checked.png') center center no-repeat;
  	background-size: 16px auto;
	position: absolute;
	top: -4px;
	left: 1px;
	border-radius: 0;
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
	z-index: 8;
	box-shadow: inset 0 0 4px rgba(1, 1, 1, 0.05);
}

[type="checkbox"]:not(:checked ) +label:after {
	opacity: 0;
	-webkit-transform: scale(0);
	transform: scale(0);
}

[type="checkbox"]:checked+label:after {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}

[type="checkbox"]:disabled:checked+label:after, [type="checkbox"]:disabled:not(:checked ) +label:after {
	content: '';
  background: url('../images/icons/checkbox-checked.png') center center no-repeat;
  background-size: 16px auto;
	opacity: 0.6;
}

[type="checkbox"]:disabled:checked+label:before, [type="checkbox"]:disabled:not(:checked ) +label:before {
	content: '';
	background: #eeeeee;
}

/*
Radiobuttons
*/

/* Radio Type 1 */
[type="radio"]:checked, [type="radio"]:not(:checked) {
	position: absolute;
	left: -9999px;
}

[type="radio"]:checked+label, [type="radio"]:not(:checked)+label {
	position: relative;
	padding: 0;
	cursor: pointer;
	line-height: 23px;
	display: inline-block;
}

[type="radio"]:checked+label:before, [type="radio"]:not(:checked)+label:before {
	content: '';
	position: absolute;
	left: 0;
	top: -30px;
	width: 20px;
	height: 20px;
	border: 1px solid #cccccc;
	border-radius: 100%;
	background: #fff;
	box-shadow: inset 0 0 4px rgba(1, 1, 1, 0.05);
}

[type="radio"]:checked+label:after, [type="radio"]:not(:checked)+label:after {
	content: '';
	width: 12px;
	height: 12px;
	background: #2980B9;
	position: absolute;
	top: -25px;
	left: 5px;
	border-radius: 100%;
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

[type="radio"]:not(:checked)+label:after {
	opacity: 0;
	-webkit-transform: scale(0);
	transform: scale(0);
}

[type="radio"]:checked+label:after {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}

[type="radio"][disabled]:checked+label:before, [type="radio"][disabled]:not(:checked)+label:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 20px;
	height: 20px;
	border: 1px solid #cccccc;
	border-radius: 100%;
	background: #eeeeee;
}

.header-logo
{
	position:absolute;
	top:23px;
	left:-14px;
	outline: none;
	height: 90px!important;
}

.tagline
{
	line-height: 10px;
	margin-bottom: 26px;
}

#menu-button
{
	margin-top:50px;
	font-weight: normal;
}

#side-menu-items
{
	width: 235px;
    margin: 250px 40px 8px 40px
}

.sidemenu
{
	height: 100%;
    width: 0px;
    position: fixed;
    z-index: 99;
    top: 0;
    right: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
    float: right;
    display:inline-block;
}

.menu-item, .menu-item-first
{
    text-decoration: none;
    display: block;
    transition: 0.3s;
    margin-bottom:2px;
    margin-top:2px;
    padding:2px;
    border-bottom: 1px solid white;
}

.menu-item.language
{
    margin-bottom: 20px;
    border-bottom: none;
    display: flex;
    flex-direction: row;
    align-items: center;
	justify-content: flex-end;
	color: #fff;
}

.menu-item.language a.active-language
{
    font-family: 'UniversNextBold';
}

.menu-item.social-item
{
    margin-top: 50px;
    border-bottom: none;
    display: flex;
    flex-direction: row;
    align-items: center;
	justify-content: flex-end;
}

.menu-item.social-item a.social-logo
{
    margin: 0; 
    width: auto;
}


.menu-item.social-item .social-logo svg
{
    width: auto;
    max-height: 20px;
}

.menu-item.social-item .social-logo svg
{
    margin: 0 0 5px 12px;
}

.menu-item-first
{
	border-top: 1px solid white;
}
.menu-item a
{
	color: #ffffff;
	font-size: 14px;
	text-decoration: none;
	line-height: 24px;
}

.menu-item.social-item a:first-of-type
{
    cursor: auto;
}

.sidemenu a:hover, .active{
    color: #ffffff;
    font-family: 'UniversNextBold';
}

.menu-item.social-item a:hover {
    font-family: inherit;
}

.backbtn
{
	display:block;
	position: absolute;
	top: -30px;
	left: 0;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 50px;
    font-weight: normal;
    color: #fff !important;
    text-decoration: none;
}
#main-content
{
	display: inline-block;
	width: 100%;
	min-height: 100%;
	/*border: 1px solid grey;*/
	margin: 0px;
}

#main-content a, #main-content a:hover, #main-content a:visited
{
	color: rgba(0, 158, 226, 1);
	text-decoration: none;
}

#main-content-div
{
	width: 100%;
	height: auto;
	position: relative;
	display: inline-block;
	margin-bottom: 0;
}

.last-article
{
	min-height:100%;
	margin-bottom: 50px!important;
}


#main-content-div-txt
{
	width: 638px;
	float: right;
	height: 100%;
	/*margin-bottom: 100px;*/
}

#main-content-div-txt p
{
	line-height: 27px;
}

#main-content-div-col1, #main-content-div-col1-2, #main-content-div-col1-1, #main-content-div-logo-locations
{
	display: block;
	float: left;
	width: 324px;
	min-height: 1px;
	height: auto;
	margin-bottom: 0px;
}

#main-content-div-col1-1
{
	display: block;
	position: relative;
	height: 50vh;
}

#main-content-div-col1-2
{
	width: 314px;
}

#main-content-div-col2, #main-content-div-form
{
	display: block;
	float: left;
	min-width: 628px;
	width: 638px;
	height: auto;
}

#main-content-div-col2 #main-content-div-txt>p:first-of-type {
	margin-top: 0;
}

#main-content-div-form
{
	float: right;
	min-width: 486px;
	width: 486px;
	margin-top: -35px;
	/* min-height:80vh; */
}

.scroll-pages:last-of-type #main-content-div {
	min-height: 20vh;
}

#main-content-div-logo-locations
{
	width: 638px;
}

.main-content-div-col2-main
{
	width:100%;
	height: 100%;
}

#content-article-block
{
	width:100%;
	min-height: 207px;
	height: auto;
	display: inline-block;
	float: left;
}

.content-article-block-last
{
	min-height: auto!important;
}

.content-article-logo, .content-article-text
{
	display: inline-block;
/* 	width: 314px; */
	width: 300px;
	float: left;
}

.article-logo
{
    float: left;
	margin-top: -8px;
}

.content-article-logo-wide
{
	display: inline-block;
    height: auto;
	width: 638px;
	margin-top: 0px;
}

#content-article-block .content-article-logo
{
	width: 314px;
	display: inline-block;
    height: auto;
}

#content-article-block .content-article-logo2
{
	width: 314px;
	display: inline-block;
	float: left;
    height: auto;
    padding-right: 50px;
}

#content-article-block .content-article-text
{
/* 	width: 314px; */
	width: 300px;
	display: inline-block;
	float: left;
    height: auto;
}

#content-article-block .content-article-text2, #content-article-block .content-article-text-bottom
{
	width: auto;
	max-width: 254px;
	padding-left: 10px;
	display: inline-block;
	float: left;
}

.content-article-text p, .content-article-videos p, .content-article-text ul li, .content-article-text2 p, .content-article-text-bottom p
{
	margin-top: 0px;
	font-size: 14px;
	line-height: 21px;
}

.content-article-text-bottom
{
	position: absolute;
    bottom: 0;
    left: 0;
    margin-bottom: -18px;
}

.content-article-text ul
{
	padding-left: 15px;
	list-style-type: disc;
	list-style-position: outside;
}

.content-article-videos, .one-video, .one-pers-video
{
	width: 314px;
	height: auto;
	display: inline-block;
	float: left;
}

.content-article-videos
{
	padding-bottom: 18px;
}

.one-video
{
	padding-top: 18px;
}

.one-pers-video
{
	padding-bottom: 18px;
}

.map-separator
{
	width: 638px;
	height: 30px;
	background-color: transparent;
	display: inline-block;
}

.separator
{
	width: 638px;
	height: 0px;
	background-color: transparent;
	display: inline-block;
}

.separator-small
{
	width: 100%;
	height: 0px;
	background-color: transparent;
	display: inline-block;
}

.section-separator
{
	width: 100%;
	height: 150px;
	background-color: transparent;
	display: inline-block;
}

#main-content-div-logo-locations .map-separator
{
	height: 57px;
}

#contact-form-table
{
	width: 100%;
}

#contact-form-table p
{
	margin-top: 0px;
	margin-bottom: 0px;
	font-size: 14px;
	line-height: 21px;
}

#contact-form-table td
{
	vertical-align: bottom;
	padding-top: 6px;
}

footer
{
	position:fixed;
	width: 962px;
	margin-top:20px;
	bottom: 0;
	background-color: #ffffff;
	z-index: 1;
}

#footer-content
{
	position: relative;
	display: block;
	margin: 0 auto;
	width: auto;
}

#footer-content p
{
	font-size: 14px;
	line-height: 21px;
	text-align: center;
	margin-bottom: 30px;
	margin-top: 30px;
}

#footer-content a, #footer-content a:visited
{
	color: rgba(0, 158, 226, 1);
	text-decoration: none;
}

input[type="text"], textarea, select
{
	border:none;
	background-color: #d2d2d2;
	padding: 2px;
	width: 100%!important;
	border: 1px solid #d2d2d2;
	font-family: 'UniversNextLight';
	box-sizing:border-box;
	font-size: 14px;
}

select
{
	/*-webkit-appearance: none;*/
	/*-moz-appearance: none;*/
	/*appearance: none;*/
	background: url(../images/sel_arrow.jpg) 100% / 9% no-repeat #d2d2d2;
}

button
{
	/*-webkit-appearance: none;*/
	/*-moz-appearance: none;*/
	/*appearance: none;*/
	border: none;
	background: rgba(0, 158, 226, 1);
	color: #ffffff;
    font-family: 'UniversNextBold';
    padding: 4px 12px;
    cursor: pointer;
}

.error_input
{
	border: 1px solid #ffd7d7!important;
	background-color: #fff5f5!important;
}

/* Tooltips */
/* Blue tooltip */
.tooltip
{
	position: relative;
	display:inline-block!important;
}

.tooltip .tooltiptext:before
{
	content: '';
	height: 0;
	width: 0;
	top: -22px;
	margin-left: -18px;
	position: absolute;
	border-bottom: 27px solid rgba(0, 158, 226, 1);
	border-right: 23px solid transparent;
	z-index: 1;
}

.tooltip .tooltiptext
{
	display: block;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	min-width:260px;
	max-width:260px;
	min-height: 100%;
	font-family: 'UniversNextLight';
	background-color: rgba(0, 158, 226, 1);
	/*-moz-border-radius: 6px;*/
	-webkit-border-radius: 6px;
	border-radius: 6px;
	/*-moz-box-shadow: -5px 5px 10px #888888;*/
	-webkit-box-shadow: -5px 5px 10px #888888;
	box-shadow: -5px 5px 10px #888888;
	color: #fff!important;
	font-size: 14px;
	line-height: 21px;
	padding: 16px 18px;
	z-index: 9;
}

.tooltip .tooltiptext.right:before
{
	content: '';
	height: 0;
	width: 0;
	top: -22px;
	right: 0px;
	position: absolute;
	border-bottom: solid 12px rgba(0, 158, 226, 1);
	border-right: solid 13px rgba(0, 158, 226, 1);
	border-left: solid 12px transparent;
	border-top: solid 15px transparent;
	z-index: 1;
}

.tooltip .tooltiptext.right
{
	display: block;
	opacity: 0;
	pointer-events: none;
	position: relative;
	min-width:260px;
	max-width:260px;
	min-height: 100%;
	font-family: 'UniversNextLight';
	background-color: rgba(0, 158, 226, 1);
	/*-moz-border-radius: 6px;*/
	-webkit-border-radius: 6px;
	border-radius: 6px;
	/*-moz-box-shadow: -5px 5px 10px #888888;*/
	-webkit-box-shadow: -5px 5px 10px #888888;
	box-shadow: -5px 5px 10px #888888;
	color: #fff!important;
	font-size: 14px;
	line-height: 21px;
	padding: 16px 18px;
	z-index: 9;
}


.tooltip .tooltiptext.top-right:before
{
	content: '';
	height: 0;
	width: 0;
	bottom: -22px;
	right: 0px;
	position: absolute;
	border-bottom: 0;
	border-right: 0;
}
.tooltip .tooltiptext.top-right:after
{
	content: '';
	height: 0;
	width: 0;
	bottom: -22px;
	right: 0px;
	position: absolute;
	border-bottom: solid 15px transparent;
	border-right: solid 13px rgba(0, 158, 226, 1);
	border-left: solid 12px transparent;
	border-top: solid 12px rgba(0, 158, 226, 1);
	z-index: 1;
}

.tooltip .tooltiptext.top-right
{
	display: block;
	opacity: 0;
	pointer-events: none;
	position: relative;
	min-width:260px;
	max-width:260px;
	min-height: 100%;
	font-family: 'UniversNextLight';
	background-color: rgba(0, 158, 226, 1);
	/*-moz-border-radius: 6px;*/
	-webkit-border-radius: 6px;
	border-radius: 6px;
	/*-moz-box-shadow: -5px 5px 10px #888888;*/
	-webkit-box-shadow: -5px 5px 10px #888888;
	box-shadow: -5px 5px 10px #888888;
	color: #fff!important;
	font-size: 14px;
	line-height: 21px;
	padding: 16px 18px;
	z-index: 9;
}

.tooltip .tooltiptext.top-left:before
{
	content: '';
	height: 0;
	width: 0;
	bottom: -22px;
	right: 0px;
	position: absolute;
	border-bottom: 0;
	border-right: 0;
}
.tooltip .tooltiptext.top-left:after
{
	content: '';
	height: 0;
	width: 0;
	bottom: -22px;
	left: 0px;
	position: absolute;
	border-bottom: solid 15px transparent;
	border-right: solid 12px transparent;
	border-left: solid 12px rgba(0, 158, 226, 1);
	border-top: solid 13px rgba(0, 158, 226, 1);
	z-index: 1;
}

.tooltip .tooltiptext.top-left
{
	display: block;
	opacity: 0;
	pointer-events: none;
	position: relative;
	min-width:260px;
	max-width:260px;
	min-height: 100%;
	font-family: 'UniversNextLight';
	background-color: rgba(0, 158, 226, 1);
	/*-moz-border-radius: 6px;*/
	-webkit-border-radius: 6px;
	border-radius: 6px;
	/*-moz-box-shadow: -5px 5px 10px #888888;*/
	-webkit-box-shadow: -5px 5px 10px #888888;
	box-shadow: -5px 5px 10px #888888;
	color: #fff!important;
	font-size: 14px;
	line-height: 21px;
	padding: 16px 18px;
	z-index: 9;
}

/* White tooltip */
.tooltip-light
{
	position: relative;
	display:inline-block!important;
}

.tooltip-light .tooltiptext::before
{
	content: '';
	height: 0;
	width: 0;
	top: -22px;
	margin-left: -18px;
	position: absolute;
	border-bottom: 27px solid #ffffff;
	border-right: 23px solid transparent;
	z-index: 1;
}

.tooltip-light .tooltiptext
{
	display: block;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	min-width:260px;
	max-width:260px;
	font-family: 'UniversNextLight';
	background-color: #ffffff;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	-webkit-box-shadow: -5px 5px 10px rgba(1, 1, 1, 0.15);
	box-shadow: -5px 5px 10px rgba(1, 1, 1, 0.15);
	color: #616161!important;
	font-size: 14px;
	line-height: 21px;
	padding: 16px 18px;
	z-index: 9;
}

.tooltip-light .tooltiptext.right::before
{
	content: '';
	height: 0;
	width: 0;
	top: -22px;
	right: 0px;
	position: absolute;
	border-bottom: solid 12px #ffffff;
	border-right: solid 13px #ffffff;
	border-left: solid 12px transparent;
	border-top: solid 15px transparent;
	z-index: 1;
}

.tooltip-light .tooltiptext.right
{
	display: block;
	opacity: 0;
	pointer-events: none;
	position: relative;
	min-width:260px;
	max-width:260px;
	font-family: 'UniversNextLight';
	background-color: #ffffff;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	-webkit-box-shadow: -5px 5px 10px rgba(1, 1, 1, 0.15);
	box-shadow: -5px 5px 10px rgba(1, 1, 1, 0.15);
	color: #616161!important;
	font-size: 14px;
	line-height: 21px;
	padding: 16px 18px;
	z-index: 9;
}


.tooltip-light .tooltiptext.top-right::before
{
	content: '';
	height: 0;
	width: 0;
	bottom: -22px;
	right: 0px;
	position: absolute;
	border-bottom: 0;
	border-right: 0;
}
.tooltip-light .tooltiptext.top-right::after
{
	content: '';
	height: 0;
	width: 0;
	bottom: -22px;
	right: 0px;
	position: absolute;
	border-bottom: solid 15px transparent;
	border-right: solid 13px #ffffff;
	border-left: solid 12px transparent;
	border-top: solid 12px #ffffff;
	z-index: 1;
}

.tooltip-light .tooltiptext.top-right
{
	display: block;
	opacity: 0;
	pointer-events: none;
	position: relative;
	min-width:260px;
	max-width:260px;
	font-family: 'UniversNextLight';
	background-color: #ffffff;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	-webkit-box-shadow: -5px 5px 10px rgba(1, 1, 1, 0.15);
	box-shadow: -5px 5px 10px rgba(1, 1, 1, 0.15);
	color: #616161!important;
	font-size: 14px;
	line-height: 21px;
	padding: 16px 18px;
	z-index: 9;
}

.tooltip-light .tooltiptext.top-left::before
{
	content: '';
	height: 0;
	width: 0;
	bottom: -22px;
	right: 0px;
	position: absolute;
	border-bottom: 0;
	border-right: 0;
}
.tooltip-light .tooltiptext.top-left::after
{
	content: '';
	height: 0;
	width: 0;
	bottom: -22px;
	left: 0px;
	position: absolute;
	border-bottom: solid 15px transparent;
	border-right: solid 12px transparent;
	border-left: solid 12px #ffffff;
	border-top: solid 13px #ffffff;
	z-index: 1;
}

.tooltip-light .tooltiptext.top-left
{
	display: block;
	opacity: 0;
	pointer-events: none;
	position: relative;
	min-width:260px;
	max-width:260px;
	font-family: 'UniversNextLight';
	background-color: #ffffff;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	-webkit-box-shadow: -5px 5px 10px rgba(1, 1, 1, 0.15);
	box-shadow: -5px 5px 10px rgba(1, 1, 1, 0.15);
	color: #616161!important;
	font-size: 14px;
	line-height: 21px;
	padding: 16px 18px;
	z-index: 9;
}

.main-margin-top
{
	position: relative;
	display: block;
	margin: 0 auto;
	left: 0px;
	right: 0px;
	width:auto;
	height: 250px;
	pointer-events: none;
}

.main-margin
{
	position: relative;
	display: block;
	margin: 0 auto;
	left: 0px;
	right: 0px;
	width:auto;
	height: 200px;
	pointer-events: none;
}

.info-message
{
	position: relative;
	display: block;
	margin: 0 auto;
	margin-top: 0px;
	padding: 0px;
	left: 0px;
	right: 0px;
	width:auto;
	min-height:0px;
}

.info-message.show
{
	margin-top: -70px;
	padding: 20px;
	padding-bottom: 25px;
}

.div_error
{
	position: relative;
	margin: 0 auto;
	background-color: #ffd7d7;
	color: red;
	width: auto;
	text-align: center;
	padding: 20px;
	margin: 0px 12%;
	font-size: 14px;
}

.div_info
{
	position: relative;
	margin: 0 auto;
	background-color: #beffcf;
	color: green;
	width: auto;
	text-align: center;
	padding: 20px;
	margin: 0px 12%;
	font-size: 14px;
}

#map1, #map2, #map3, #map4
{
	height: 50vh;
    width: 100%;
}

#section1
{
	display: inline-block;
	width: 100%;
	min-height: 100%;
	/*border: 1px solid grey;*/
	margin: 0px;
}


/******* Sliding pages ******/

.slide-away {
    position: relative;
    margin-left: 0px;
    opacity:1;
    animation-name: slideaway;
    -webkit-animation: slideaway 3s forwards;
    -webkit-animation-delay: 1s;
    animation: slideaway 3s forwards;
    animation-delay: 1s;
}

@-webkit-keyframes slideaway {
    100% { position: absolute; margin-left: -1000%; opacity:0; }
}

@keyframes slideaway {
    100% { position: absolute; margin-left: -1000%; opacity:0; }
}

.slide-in
{
	position: absolute;
	margin-left: 100%;
	width: 100%;
	height:auto;
	animation-name: slidein;
    -webkit-animation: slidein 3s forwards;
    -webkit-animation-delay: 1s;
    animation: slidein 3s forwards;
    animation-delay: 1s;
}

@-webkit-keyframes slidein {
    100% { position: relative; margin-left: 0%;}
}

@keyframes slidein {
    100% { position: relative; margin-left: 0%;}
}

/*.slide-in
{
 	position:absolute;
    margin-left: 1000%;
    transition: all 1s;
}

.show
{
  	position:relative;
    margin-left: 0px;
}*/

/******* Action buttons ******/

.action-buttons-wrapper {
	display:inline-block;
	position: relative;
}

.action-buttons-wrapper .action-buttons.small {
	margin-top: 0;
}

.action-buttons-wrapper .action-buttons.small:first-of-type {
	margin: 0 auto 15px auto;
}

.action-buttons-wrapper .action-buttons.small a:first-of-type {
	margin: 0 15px 0 0;
}

.action-buttons {
	display: flex;
	width: 100%;
	justify-content: space-between;
	margin-top: 30px;
	float: left;
}

a.action-button {
	width: 310px;
	height: 80px;
	border: solid 1px rgba(0, 158, 226, 1);
	box-sizing: border-box;
	padding: 29px 20px 26px 60px;
	text-align: center;
	font-family: 'UniversNextBold';
	-webkit-box-shadow: none;
	box-shadow: none;
	transition: all 0.3s ease-in-out;
}

.action-buttons.large a.action-button {
	height: 210px;
	padding: 145px 20px 20px 20px;
}

a.action-button:hover {
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}

a.action-button.apply {
	background: url('../images/icons/wheels-icon.png') rgba(0, 158, 226, 1);
	background-repeat: no-repeat;
	background-size: auto 46px;
	background-position-y: 50%;
	background-position-x: 25px;
	image-rendering: -webkit-optimize-contrast;
}

.action-buttons.large a.action-button.apply {
	background: url('../images/icons/wheels-icon.png') rgba(0, 158, 226, 1);
	background-repeat: no-repeat;
	background-size: auto 80px;
	background-position-y: 45px;
	background-position-x: 50%;
	image-rendering: -webkit-optimize-contrast;
}

a.action-button.apply span {
	color: #ffffff;
}

a.action-button.contact {
	background: url('../images/icons/question-icon.png') #ffffff;
	background-repeat: no-repeat;
	background-size: auto 46px;
	background-position-y: 50%;
	background-position-x: 25px;
	image-rendering: -webkit-optimize-contrast;
}

.action-buttons.large a.action-button.contact {
	background: url('../images/icons/question-icon.png') #ffffff;
	background-repeat: no-repeat;
	background-size: auto 80px;
	background-position-y: 45px;
	background-position-x: 50%;
	image-rendering: -webkit-optimize-contrast;
}

a.action-button.event {
	background: url('../images/icons/event-icon.png') #ffffff;
	background-repeat: no-repeat;
	background-size: auto 46px;
	background-position-y: 50%;
	background-position-x: 25px;
	image-rendering: -webkit-optimize-contrast;
	padding: 29px 60px 26px 60px;
}

.action-buttons.large a.action-button.event {
	background: url('../images/icons/event-icon.png') #ffffff;
	background-repeat: no-repeat;
	background-size: auto 80px;
	background-position-y: 45px;
	background-position-x: 50%;
	image-rendering: -webkit-optimize-contrast;
}

.action-buttons-wrapper .action-buttons.small .action-button.event {
	width: 100%;
}

/******* Table of contents ******/

#main-content-div-txt.table-of-contents p {
	line-height: 33px;
	margin-bottom: 0;
}

/******* Customer logos with links ******/

.customer-logos,
.social-logos {
	display: flex;
	width: 100%;
	flex-flow: row wrap;
	justify-content: flex-start;
	align-items: center;
}
a.customer-logo,
a.social-logo {
	width: 25%;
	box-sizing: border-box;
	padding: 10px;
	margin: 20px 0;
	position: relative;
	display: inline-block;
	color: transparent !important;
	text-align: center;
	backface-visibility: hidden;
	transform: translateZ(0) scale(1, 1);
	-webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0) scale(1, 1);
	transition: transform 0.3s ease-in-out;
	image-rendering: optimizeQuality;
}

a.social-logo {
	padding: 0;
	margin: 0 0 20px 0;
	width: 20%;
}

.customer-logo img,
.social-logo img,
.social-logo svg {
	position: relative;
	max-width: 100%;
	max-height: 75px;
	height: auto;
	z-index: 0;
	object-fit: contain;
}

.customer-logo:hover,
.social-logo:hover {
	transform: scale(1.2, 1.2);
    -webkit-transform: scale(1.2, 1.2);
}

/******* Checkbox items ******/

.checked-item {
	display: flex;

}

.checked-item .checkbox-blue{
	display: inline-block;
	width: 50px;
	height: 24px;
	background: url('../images/icons/checkbox-icon.png') transparent;
	background-repeat: no-repeat;
	background-size: auto 24px;
	background-position-y: 0;
	background-position-x: 0;
}
.checked-item .checkbox-txt {
	width: 100%;
	display: inline-block;
}

/******* Framework model ******/
.fw-model {
	margin: 40px 0 0 0;
}

.fw-model, .fw-model-menu {
	position: relative;
	display: inline-block;
	width: 100%;
}

.fw-model-menu {
	border-bottom: 1px solid #EDEDED;
	font-family: 'UniversNextLight';
	font-size: 18px;
}

.fw-model-menu div {
	display: block;
	position: relative;
	width: 225px;
	float: left;
	cursor: pointer;
	box-sizing: border-box;
}

.fw-model-menu div:not(:last-of-type) {
	width: 245px;
	padding: 0 20px 0 0;
}

.fw-model-menu div span {
	display: block;
	width: 100%;
	padding: 0 0 12px 0;
	margin-bottom: -1px;
	font-family: 'UniversNextLight';
	border-bottom: 1px solid transparent;
	transition: all 0.2s ease-in-out;
}

.fw-model-menu div span:not(:last-of-type) {
	padding: 0 0 12px 0;
}

.fw-model-menu div span.selected {
	border-bottom: 1px solid #000000;
	font-family: 'UniversNextBold';
}

.fw-model-menu div span:hover {
	border-bottom: 1px solid #000000;
	margin-bottom: -1px;
}

.fw-model-items, .fw-model-row {
	display: inline-block;
	position: relative;
	box-sizing: border-box;
	width: 100%;
}

.fw-model-row div {
	display: block;
	position: relative;
	float: left;
	box-sizing: border-box;
	width: 225px;
	height: 175px;
	margin: 20px 0 0 0;
	padding: 70px 20px 20px 24px;
	background: #fafafa;
	transition: all 0.2s ease-in-out;
}

.fw-model-row div.selected span {
	color: #ffffff;
}

.fw-model-row div:not(:last-of-type)
{
	margin: 20px 20px 0 0;
}

.fw-model-row div span {
	display: block;
	position: relative;
	font-size: 16px;
	line-height: 21px;
}

.fw-model-row div span:not(:first-of-type) {
	margin: 4px 0 0 0;
	font-size: 14px;
	line-height: 21px;
}

.fw-model-row div span.tooltiptext {
	display: inline-block;
	font-size: 14px;
}

.fw-model-row div span.tooltiptext .mn-blue {
	color: rgba(0, 158, 226, 1);
	display: inline-block;
	font-size: inherit;
}

/* Items */
.fw-model-items div.fofo {
	background: url('../images/icons/fofo-icon.png') #fafafa 24px 22px;
	background-repeat: no-repeat;
	background-size: auto 35px;
	image-rendering: -webkit-optimize-contrast;
}

.fw-model-items div.fofo.selected {
	background: url('../images/icons/fofo-icon-w.png') rgba(0, 158, 226, 1) 24px 22px;
	background-repeat: no-repeat;
	background-size: auto 35px;
	image-rendering: -webkit-optimize-contrast;
}

.fw-model-items div.contract {
	background: url('../images/icons/contract-icon.png') #fafafa 24px 22px;
	background-repeat: no-repeat;
	background-size: auto 35px;
	image-rendering: -webkit-optimize-contrast;
}

.fw-model-items div.contract.selected {
	background: url('../images/icons/contract-icon-w.png') rgba(0, 158, 226, 1) 24px 22px;
	background-repeat: no-repeat;
	background-size: auto 35px;
	image-rendering: -webkit-optimize-contrast;
}

.fw-model-items div.profile {
	background: url('../images/icons/profile-icon.png') #fafafa 24px 22px;
	background-repeat: no-repeat;
	background-size: auto 35px;
	image-rendering: -webkit-optimize-contrast;
}

.fw-model-items div.profile.selected {
	background: url('../images/icons/profile-icon-w.png') rgba(0, 158, 226, 1) 24px 22px;
	background-repeat: no-repeat;
	background-size: auto 35px;
	image-rendering: -webkit-optimize-contrast;
}

.fw-model-items div.evaluation {
	background: url('../images/icons/evaluation-icon.png') #fafafa 24px 22px;
	background-repeat: no-repeat;
	background-size: auto 35px;
	image-rendering: -webkit-optimize-contrast;
}

.fw-model-items div.evaluation.selected {
	background: url('../images/icons/evaluation-icon-w.png') rgba(0, 158, 226, 1) 24px 22px;
	background-repeat: no-repeat;
	background-size: auto 35px;
	image-rendering: -webkit-optimize-contrast;
}

.fw-model-items div.grants {
	background: url('../images/icons/grants-icon.png') #fafafa 24px 22px;
	background-repeat: no-repeat;
	background-size: auto 35px;
	image-rendering: -webkit-optimize-contrast;
}

.fw-model-items div.grants.selected {
	background: url('../images/icons/grants-icon-w.png') rgba(0, 158, 226, 1) 24px 22px;
	background-repeat: no-repeat;
	background-size: auto 35px;
	image-rendering: -webkit-optimize-contrast;
}

.fw-model-items div.publication {
	background: url('../images/icons/publication-icon.png') #fafafa 24px 22px;
	background-repeat: no-repeat;
	background-size: auto 35px;
	image-rendering: -webkit-optimize-contrast;
}

.fw-model-items div.publication.selected {
	background: url('../images/icons/publication-icon-w.png') rgba(0, 158, 226, 1) 24px 22px;
	background-repeat: no-repeat;
	background-size: auto 35px;
	image-rendering: -webkit-optimize-contrast;
}

.fw-model-items div.infrastructure {
	background: url('../images/icons/infrastructure-icon.png') #fafafa 24px 22px;
	background-repeat: no-repeat;
	background-size: auto 35px;
	image-rendering: -webkit-optimize-contrast;
}

.fw-model-items div.infrastructure.selected {
	background: url('../images/icons/infrastructure-icon-w.png') rgba(0, 158, 226, 1) 24px 22px;
	background-repeat: no-repeat;
	background-size: auto 35px;
	image-rendering: -webkit-optimize-contrast;
}

.fw-model-items div.annual-report {
	background: url('../images/icons/annual-report-icon.png') #fafafa 24px 22px;
	background-repeat: no-repeat;
	background-size: auto 35px;
	image-rendering: -webkit-optimize-contrast;
}

.fw-model-items div.annual-report.selected {
	background: url('../images/icons/annual-report-icon-w.png') rgba(0, 158, 226, 1) 24px 22px;
	background-repeat: no-repeat;
	background-size: auto 35px;
	image-rendering: -webkit-optimize-contrast;
}

.fw-model-items div.calculation {
	background: url('../images/icons/calculator-icon.png') #fafafa 24px 22px;
	background-repeat: no-repeat;
	background-size: auto 35px;
	image-rendering: -webkit-optimize-contrast;
}

.fw-model-items div.calculation.selected {
	background: url('../images/icons/calculator-icon-w.png') rgba(0, 158, 226, 1) 24px 22px;
	background-repeat: no-repeat;
	background-size: auto 35px;
	image-rendering: -webkit-optimize-contrast;
}

.fw-model-items div.project {
	background: url('../images/icons/project-icon.png') #fafafa 24px 22px;
	background-repeat: no-repeat;
	background-size: auto 35px;
	image-rendering: -webkit-optimize-contrast;
}

.fw-model-items div.project.selected {
	background: url('../images/icons/project-icon-w.png') rgba(0, 158, 226, 1) 24px 22px;
	background-repeat: no-repeat;
	background-size: auto 35px;
	image-rendering: -webkit-optimize-contrast;
}

.fw-model-items div.partner {
	background: url('../images/icons/partner-icon.png') #fafafa 24px 22px;
	background-repeat: no-repeat;
	background-size: auto 35px;
	image-rendering: -webkit-optimize-contrast;
}

.fw-model-items div.partner.selected {
	background: url('../images/icons/partner-icon-w.png') rgba(0, 158, 226, 1) 24px 22px;
	background-repeat: no-repeat;
	background-size: auto 35px;
	image-rendering: -webkit-optimize-contrast;
}

.fw-model-items div.cockpit {
	background: url('../images/icons/cockpit-icon.png') #fafafa 24px 22px;
	background-repeat: no-repeat;
	background-size: auto 35px;
	image-rendering: -webkit-optimize-contrast;
}

.fw-model-items div.cockpit.selected {
	background: url('../images/icons/cockpit-icon-w.png') rgba(0, 158, 226, 1) 24px 22px;
	background-repeat: no-repeat;
	background-size: auto 35px;
	image-rendering: -webkit-optimize-contrast;
}

.fw-model-items div.ethics {
	background: url('../images/icons/ethics-icon.png') #fafafa 24px 22px;
	background-repeat: no-repeat;
	background-size: auto 35px;
	image-rendering: -webkit-optimize-contrast;
}

.fw-model-items div.ethics.selected {
	background: url('../images/icons/ethics-icon-w.png') rgba(0, 158, 226, 1) 24px 22px;
	background-repeat: no-repeat;
	background-size: auto 35px;
	image-rendering: -webkit-optimize-contrast;
}

.fw-model-items div.achievement {
	background: url('../images/icons/achievement-icon.png') #fafafa 24px 22px;
	background-repeat: no-repeat;
	background-size: auto 35px;
	image-rendering: -webkit-optimize-contrast;
}

.fw-model-items div.achievement.selected {
	background: url('../images/icons/achievement-icon-w.png') rgba(0, 158, 226, 1) 24px 22px;
	background-repeat: no-repeat;
	background-size: auto 35px;
	image-rendering: -webkit-optimize-contrast;
}

/************ Request demo popup ***************/
#request-demo-popup {
	position: fixed;
	width: 700px;
	height: auto;
    /* left: 50%; */
    /* transform: translate(-50%, 50%); */
	/* transform: translateY(50%) translateZ(0) scale(1.0, 1.0); */
	background: #ffffff;
	z-index: 10;
	box-shadow: 0 0 10px rgba(1, 1, 1, 0.1);
	animation-duration: 0.8s;
    animation-fill-mode: both;
	/* -webkit-font-smoothing: subpixel-antialiased; */
	/* -webkit-transform: translateY(50%) translateZ(0) scale(1.0, 1.0); */
	top: 150vh;
	bottom: 10%;
	left: calc(50% - 350px);
	opacity:0;
	overflow: hidden;
}

#event {
	display: inline-block;
	width: 100%;
}

#event ul {
	list-style: none;
	list-style-type: none;
	padding: 0;
}

#event ul li:not(:last-of-type) {
	display: block;
	margin-bottom: 8px;
}

#request-demo-popup.reveal {
	display: block;
	animation-name: bounceInBottom;
}

#request-demo-popup.unreveal {
	animation-name: slideInBottom;
}

@keyframes bounceInBottom {
    0% { top: 150vh; opacity: 0;}
	65% { top: 13%; opacity: 1; }
	75% { top: 10%; }
    85% { top: 9%; }
	100% { top: 10%; opacity: 1; }
}

@keyframes slideInBottom {
    0% { top: 10%; opacity: 1; }
	55% { top: 11%; }
	65% { top: 9%; }
    75% { top: 13%; opacity: 1; }
	100% { top: 150vh; opacity: 0; }
}

#request-demo-popup .popup-header {
	display: block;
	width: 100%;
	height: 110px;
	background: url('../images/icons/wheels-icon.png') rgba(0, 158, 226, 1) 24px 22px;
	background-repeat: no-repeat;
	background-size: auto 64px;
}

#request-demo-popup .popup-content {
	box-sizing: border-box;
	display: block;
	width: 100%;
	height: 100%;
	padding: 60px 120px 170px 120px;
	overflow-y: none;
}

#request-demo-popup-form p.intro
{
	font-size: 16px;
	color: #616161;
	margin-top: 35px;
	line-height: 21px;
}

#request-demo-popup-form p,
#event p
{
	margin: 10px 0 2px 0;
	font-weight: normal;
	line-height: 21px;
	font-size: 14px;
	transition: color 0.3s ease-in-out;
}

#request-demo-popup-form p.focused,
#event p.focused
{
	color: rgba(0, 158, 226, 1);
}

#request-demo-popup-form td.error p,
#request-demo-popup-form td.error .mn-blue,
#event td.error p,
#event td.error span,
#event td.error .mn-blue
{
	color: red;
}

#request-demo-popup-form input[type="text"],
#request-demo-popup-form textarea,
#request-demo-popup-form select,
#event-form input[type="text"],
#event-form textarea,
#event-form select
{
	appearance: none;
	-webkit-appearance: none;
	outline: none;
	border:none;
	background-color: #ffffff;
	padding: 2px;
	width: 100%!important;
	border: 1px solid #dedede;
	font-family: 'UniversNextLight';
	box-sizing:border-box;
	font-size: 14px;
	padding: 7px 10px 6px 10px;
	-moz-box-shadow:    inset 0 0 4px rgba(1, 1, 1, 0.05);
   -webkit-box-shadow: inset 0 0 4px rgba(1, 1, 1, 0.05);
   box-shadow:         inset 0 0 4px rgba(1, 1, 1, 0.05);
   transition: all 0.3s ease-in-out;
}

#event-form input[type="text"],
#event-form select {
	width: 400px!important;
}

#event-form textarea {
	width: 366px!important;
}

#request-demo-popup-form button.request-btn,
#event-form button.request-btn
{
	padding: 11px 24px 10px 24px;
	transition: all 0.2s ease-in-out;
	margin: 12px 0 0 0;
}
#request-demo-popup-form button.request-btn:hover,
#event-form button.request-btn:hover
{
	box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
}

#request-demo-popup-form input[type="text"]:focus,
#request-demo-popup-form textarea:focus,
#event-form input[type="text"]:focus,
#event-form textarea:focus {
	border: 1px solid rgba(0, 158, 226, 1);
}

#event-form td.first-cell {
	padding: 0 10px 0 0;
}

#event-form td.second-cell {
	padding: 0 0 0 10px;
}

#request-demo-popup-form td.error input[type="text"],
#request-demo-popup-form td.error input[type="text"]:focus,
#request-demo-popup-form td.error textarea,
#request-demo-popup-form td.error textarea:focus,
#event-form td.error input[type="text"],
#event-form td.error input[type="text"]:focus,
#event-form .error textarea,
#event-form .error textarea:focus,
#event-form td.error input[type="checkbox"]:not(:checked ) + label:before {
	border: 1px solid #ffd7d7!important;
	background-color: #fff5f5!important;
}

#request-demo-popup table,
#event-form table {
	width: 100%;
}

#request-demo-popup .info-message,
#event .info-message,
#event-page .info-message
{
	position: relative;
	display: block;
	margin: 0 auto;
	margin-top: 0px;
	padding: 0px;
	left: 0px;
	right: 0px;
	width:auto;
	min-height:0px;
}

#request-demo-popup .div_error,
#event .div_error,
#event-page .div_error
{
	padding: 0px;
	margin: 0 0 20px 0;
	height: 0px;
	transition: all 0.3s ease-in-out;
}

#event-page .div_error
{
	margin: 0 12%;
}

#request-demo-popup .div_info,
#event .div_info,
#event-page .div_info
{
	display: none;
	margin: 0 0 20px 0;
	padding: 20px;
	height: auto;
	transition: all 0.3s ease-in-out;
	background-color: transparent;
}

#event .div_info,
#event-page .div_info
{
	background-color: #beffcf;
	margin: 0 12%;
}

#request-demo-popup .div_info h2,
#event .div_info h2,
#event-page .div_info h2
{
	font-size: 21px;
	font-family: 'UniversNextBold';
	color: #21a67a;
}

#request-demo-popup .div_info p,
#event .div_info p,
#event-page .div_info p
{
	color: #616161;
	text-align: center;
}

#event .div_info p,
#event-page .div_info p
{
	color: #21a67a;
	text-align: center;
}

#request-demo-popup .div_error.visible,
#event .div_error.visible,
#event-page .div_error.visible
{
	padding: 20px;
	height: auto;
}

#request-demo-popup-form {
	height: auto;
	transition: all 0.3s ease-in-out;
}

#request-demo-popup-form.unreveal {
	height: 0;
	overflow: hidden;
	transition: all 0.3s ease-in-out;
}

#event-form .event-opt-list .textarea {
	padding-left: 34px;
	height: auto;
}

#event-form .bold-txt {
	font-size: 16px;
	line-height: 23px;
}

#event-form .large-txt {
	font-size: 23px;
	line-height: 31px;
}

#event-form .event-opt-list .bold-txt {
	font-size: 14px;
	line-height: 21px;
}
/* Christmas 2022 */
#event-form .event-opt-list .event-option {
	width: 100%;
	display: flex;
	flex-flow: row;
}

#event-form .event-opt-list .event-option .image {
	display: inline-block;
	width: 25%;
	flex-shrink: 0;
}

#event-form .event-opt-list .event-option .image img {
	width: 100%;
	height: auto;
}

#event-form .event-opt-list .event-option .option {
	padding: 0 0 0 30px;
	margin: 34px 0 0 0;
	display: flex;
	flex-flow: column;
	justify-content: center;
}

#event-form .event-opt-list .event-option .option [type="checkbox"]:checked+label:before, #event-form .event-opt-list .event-option .option [type="checkbox"]:not(:checked ) + label:before {
	content: '';
	width: 22px;
	height: 22px;
  	background: url('../images/icons/checkbox-checked.png') center center no-repeat;
  	background-size: 16px auto;
	position: absolute;
	top: -34px;
	left: 0;
	border: 1px solid #ddd;
	border-radius: 0;
	background: #fff;
	box-shadow: inset 0 0 4px rgba(1, 1, 1, 0.05);
}

#event-form .event-opt-list .event-option .option [type="checkbox"]:checked+label:after, #event-form .event-opt-list .event-option .option [type="checkbox"]:not(:checked ) +label:after {
	content: '';
	width: 22px;
	height: 22px;
  	background: url('../images/icons/checkbox-checked.png') center center no-repeat;
  	background-size: 16px auto;
	position: absolute;
	top: -34px;
	left: 1px;
	border-radius: 0;
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
	z-index: 8;
	box-shadow: inset 0 0 4px rgba(1, 1, 1, 0.05);
}

#event-form .event-opt-list .event-option .option [type="checkbox"]:checked + label, #event-form .event-opt-list .event-option .option [type="checkbox"]:not(:checked) + label {
	padding: 0;
}

#event-page.xmas .main-margin-top {
	height: 300px;
}

#event-page.xmas #main-content {
	z-index: 1;
	position: relative;
	min-height: 50vh;
}

.xmas-header-left {
	position: absolute; 
	left: 0; 
	top: 130px;
	width: 130px;
}

.xmas-header-right {
	position: absolute; 
	right: 0; 
	top: 130px;
	width: 150px;
}

.xmas-footer {
	left: 0; 
	bottom: -20px; 
	width: 100%; 
	position: absolute; 
	z-index: 1; 
	background: transparent url('../images/media/christmas_2022/xmas-bg-footer-small-2.png') no-repeat; 
	height: 280px; 
	background-size: cover; 
	background-position-y: bottom;
	z-index: 0;
}

.xmas-footer-margin {
	display: block;
	height: 200px;
}

#event-page.xmas #main-content tr[data-group='address'].hide-fields {
	display: none;
}

.hyphenate {
	word-wrap: break-word;
	overflow-wrap: break-word;
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;
}

.main-grid {
	display: grid; 
	grid-template-columns: 324px 638px; 
	float: left;
}

.main-grid .author h4 {
	font-weight: normal;
}

.main-grid .author p {
	margin: 0;
  	font-size: 14px;
  	line-height: 21px;
}

.main-grid>.one-video {
	width: 100%;
	height: auto;
	padding-top: 5px;
}

.main-grid .grid-col-1, 
.main-grid .grid-col-2 {
	position: relative;
	display: flex;
	align-items: normal;
}

.main-grid .grid-col-1 {
	padding: 0 50px 0 0;
	flex-direction: column;
	justify-content: space-between;
}

.main-grid .grid-col-1 .title {
	padding: 0 0 100px 0;
}

#fachtagung-2024 .no-scroll-pages:last-of-type #main-content-div {
	min-height: 40vh;
}