/* Foundation */


html {
    -ms-text-size-adjust: 100%;
    box-sizing: border-box;
    -webkit-text-size-adjust: 100%;
}
*, *:before, *:after {
  box-sizing: inherit;
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 25px;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4,
p,
blockquote,
figure,
ol,
ul {
    margin: 0;
    padding: 0;
}
main,
li {
    display: block;
}
h1,
h2,
h3,
h4 {
    font-size: inherit;
    font-family: 'Montserrat', sans-serif;
}
strong {
    font-weight: bold;
}
a {
    text-decoration: none;
    color: #2DCCD3;
}
::-moz-focus-inner {
    padding: 0;
    border: 0;
}
:focus {
    outline: 0;
}
img {
    max-width: 100%;
    height: auto;
    border: 0;
}

/* Styles */
 
.cntr {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
}

header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	font-size: 14px;
}

.logged-in header {
	top: 38px;
}

header .cntr {
	-webkit-display: flex;
	-moz-display: flex;
	-ms-display: flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: center;
	align-items: center;
	padding: 24px 40px;
}

header .event-logo {
	width: 200px;
	height: auto;
	margin-right: 24px;
}

header .event-logo.mobile-size {
	width: 40px;
	display: none;
}

header .event-logo img {
	display: block;
	max-width: 100%;
	height: auto;
}

header nav  {
	margin-right: auto;
}

header nav ul {
	-webkit-display: flex;
	-moz-display: flex;
	-ms-display: flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}

header nav a {
	padding: 8px 16px;
	color: #fff;
	transition: color 0.25s;
}

header.show nav {
	visibility: visible;
	background-color: #111;
	z-index: 1001;
	opacity: 1;
}

.emph {
	font-weight: 700;
}

header .tickets {
	padding: 14px 24px;
	border-radius: 3px;
	color: #fff;
	font-weight: 700;
	transition: color 0.25s, background-color 0.25s;
}

header .sponsored {
	font-size: 10px;
	font-weight: 700;
	color: #999;
	letter-spacing: 1px;
	text-transform: uppercase;
	-webkit-display: flex;
	-moz-display: flex;
	-ms-display: flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	align-items: center;
	margin-left: auto;
	margin-right: 24px;
}

header .sponsored img {
	max-width: 124px;
	margin-left: 24px;
	display: block;
}

header .mobmenu {
	display: none;
	position: relative;
	height: 14px;
	width: 17px;
	margin-left: 20px;
	-webkit-appearance: none;
	border: 0;
	background: 0;
}

header .mobmenu:focus span {
	opacity: 0;
}

.mobmenu:before, .mobmenu:after, .mobmenu span {
	width: 17px;
	height: 2px;
	border-radius: 2px;
	background: #fff;
	position: absolute;
	left: 0;
	opacity: 1;
	transition: opacity 0.25s, transform 0.25s 0.25s, top 0.25s;
}

.mobmenu:before {
	content: '';
	top: 0;
}

.mobmenu:after {
	top: 12px;
	content: '';
}

.mobmenu span {
	top: 6px;
}

.mobmenu.show span {
	opacity: 0;
}

.mobmenu.show:before, .mobmenu.show:after {
	top: 6px;
}

.mobmenu.show:before {
	transform: rotate(45deg);
}

.mobmenu.show:after {
	transform: rotate(-45deg);
}

.presented-by img {
    margin: 0 0 0 12px;
}

.presented-by .fl-rich-text p {
    -webkit-display: flex;
    -moz-display: flex;
    -ms-display: flex;
    display: flex;
    align-items: center;
}

.presented-by.intro-sponsor .fl-rich-text p {
	-webkit-justify-content: center;
	justify-content: center;
}

.pro-container {
    max-height: 240px;
    overflow: visible;
    position: relative;
    z-index: 99;
}

@media screen and (max-width: 767px) {
	.fl-rich-text li {
		list-style-position: inside;
	}
}

.fl-rich-text p, .fl-accordion-content p {
	margin: 8px 0;
}

.fl-rich-text li, .fl-accordion-content li {
	display: list-item;
	margin-left: 18px;
}

footer .cntr {
	padding: 70px 20px;
	-webkit-display: flex;
    -moz-display: flex;
    -ms-display: flex;
    display: flex;
}

footer .col {
	flex: 0 1 25%;
	padding: 0 20px;
}

footer {
	font-size: 14px;
	background-color: #3c3d41;
}

footer h4 {
	font-size: 16px;
	color: #fff;
	margin-top: 11px;
}

footer p {
	margin: 4px 0;
	font-family: "PT Serif", serif;
	color: #ccc;
}

footer a {
	color: #fff;
	font-weight: 700;
	transition: color 0.25s;
}

footer i:before {
	font-size: 16px !important;
	line-height: 1.5  !important;
}

footer i, footer i:before {
	transition: none !important;
}

@media screen and (max-width: 980px) {
    .pro-container {
        max-height: 100%;
    }   
}

@media screen and (max-width: 767px) {
    .presented-by .fl-rich-text p {
        justify-content: center;
    }
}

@media screen and (max-width: 980px) {
	header nav {
		visibility: hidden;
		transition: background-color 0.25s, visibility 0.25s, opacity 0.25s;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background-color: transparent;
		opacity: 0;
		-webkit-display: flex;
		-moz-display: flex;
		-ms-display: flex;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	header .event-logo {
		display: none;
	}
	header .event-logo.mobile-size {
		display: block;
		margin-right: auto;
	}
	header nav ul {
		margin: auto;
		flex-direction: column;
		text-align: center;
	}
	header nav a {
		padding: 8px 16px;
		display: block;
		font-size: 18px;
	}
	header .mobmenu {
		display: block;
	}
	header .mobmenu, header .event-logo, header .tickets, header .sponsored {
		z-index: 1002;
	}
	footer .cntr {
		flex-wrap: wrap;
	}
	footer .col.event-logo {
		flex: 0 1 100%;
		margin-bottom: 40px;
	}
	footer .event-logo img {
		max-width: 240px;
		height: auto;
	}
	footer .col {
		flex: 0 1 33.33%;
		text-align: center;
	}
}

@media screen and (max-width: 760px) {
	header .sponsored {
		flex-direction: column;
		align-items: flex-end;
		margin-right: 20px;
		font-size: 9px;
		line-height: 16px;
	}
	footer .col {
		flex: 0 1 100%;
		margin: 16px 0;
		text-align: center;
	}
}

@media screen and (max-width: 620px) {
	header .event-logo {
		width: 120px;
		margin-right: 0px;
	}
	header .sponsored { 
		margin-right: 16px;
		font-size: 8px;
		letter-spacing: 0;
	}
	header .tickets {
		padding: 4px 9px;
		border-radius: 3px;
		font-size: 11px;
	}
	header .cntr {
		padding: 24px 20px;
	}
	header .sponsored img {
		max-width: 60px;
		margin-left: 16px;
		margin-top: 2px;
		margin-bottom: 4px;
	}
	header .mobmenu {
		margin-left: 16px;
	}
}

/* Cookies */

#cookie-policy-popup{
	display: none;
	position: fixed;
	overflow: hidden;
	box-sizing: border-box;
	font-size: 16px;
	line-height: 1.5em;
	z-index: 9999;
	color: rgb(255, 255, 255);
	background-color: rgb(0, 0, 0);
	max-width: 24em;
	bottom: 1em; right:1em;
	border-radius: 5px;
	padding: 20px;
	border: 2px solid #FFF;
}
#accept-cookie-policy-popup {
	width: 100%;
	text-align: center;
	margin: 15px 0 10px;
}
#accept-cookie-policy-popup a{
	border-radius: 5px;
	color: #FFF;
	background-color: #2DCCD3;
	padding: .4em .8em;
	font-size: .9em;
	font-weight: 700;
	border: 1px solid;
	text-align: center;
	white-space: nowrap;
	min-width: 140px;
}

@media(max-width: 420px){
	#cookie-policy-popup{
		left: 1em;
	}
	#cookie-policy-popup{
		max-width: 100%;
		font-size: 12px;
		padding: 15px;
	}
}

.pp-logos-wrapper {
	-webkit-justify-content: center;
	justify-content: center;
}

@media screen and (min-width: 510px) {
	.fl-module-button-group.twin-buttons .fl-button-group-button {
		margin: 0 12px;
	}
	.fl-button-group-buttons {
		column-gap: 0 !important;
	}
}

.pwaPage header {
	display: none;
}
