@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@200;300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@200;300;400;500;600;700;800&display=swap');

/******************************************************************************/
/******************************************************************************/
/** General
/******************************************************************************/
:root{
	--event-footer-dark-bgcolor: #464953;
	--event-footer-dark-text-color: #d6d6d6;
	--event-footer-light-bgcolor: #d1d1d1;
	--event-footer-light-text-color: #3c404d;

	--event-player-dark-bgcolor: #3c404d;
	--event-player-dark-text-color: #d6d6d6;
	--event-player-light-bgcolor: #d6d6d6;
	--event-player-light-text-color: #3c404d;

	--svg-player-dark-color: invert(21%) sepia(18%) saturate(539%) hue-rotate(188deg) brightness(98%) contrast(87%);
	--svg-player-light-color: invert(100%) sepia(0%) saturate(2820%) hue-rotate(236deg) brightness(81%) contrast(108%);
}

::-webkit-scrollbar {
	display: none;
}

.hidden{
	display: none !important;
}

.fadeIn{
	animation: fadeIn 250ms ease-in-out forwards;
	opacity: 1;
}

@keyframes fadeIn{
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.fadeOut{
	animation: fadeOut 250ms ease-in-out forwards;
	opacity: 0;
}

@keyframes fadeOut{
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.slideLeft{
	animation: slideLeft 500ms ease-in-out forwards;
}

@keyframes slideLeft{
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-100%);
	}
}

.white{
	color: #fff;
	filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(177deg) brightness(103%) contrast(102%);
}

a{ color:#fff;}

.svg-white{
	/* FFF */
	filter: invert(100%) sepia(0%) saturate(1%) hue-rotate(167deg) brightness(108%) contrast(101%) !important;
}

.svg-black{
	/* 000 */
	filter: invert(9%) sepia(23%) saturate(400%) hue-rotate(169deg) brightness(96%) contrast(88%) !important;
}

.svg-greyf1{
	/* F1F1F1 */
	filter: invert(98%) sepia(6%) saturate(653%) hue-rotate(229deg) brightness(117%) contrast(89%) !important;
}

.svg-greye1{
	/* E1E1E1 */
	filter: invert(99%) sepia(0%) saturate(5581%) hue-rotate(55deg) brightness(129%) contrast(76%) !important;
}

.svg-grey3C{
	/* 3c404d */
	filter: invert(24%) sepia(16%) saturate(493%) hue-rotate(188deg) brightness(94%) contrast(94%) !important;
}

.svg-blue{
	/* 67a4b9 */
	filter: invert(71%) sepia(8%) saturate(1356%) hue-rotate(154deg) brightness(86%) contrast(87%) !important;
}

.svg-dark-blue{
	/* 587e8d */
	filter: invert(48%) sepia(44%) saturate(229%) hue-rotate(155deg) brightness(89%) contrast(90%) !important;
}

.svg-green{
	/* 00985f */
	filter: invert(51%) sepia(19%) saturate(1042%) hue-rotate(91deg) brightness(95%) contrast(91%) !important;
}

.svg-red{
	/* CB444A */
	filter: invert(47%) sepia(82%) saturate(707%) hue-rotate(315deg) brightness(76%) contrast(115%) !important;
}




/******************************************************************************/
/******************************************************** Splash Page         */
/******************************************************************************/

body {
    font-family: 'Work Sans', sans-serif, system-ui;
	height: 100%;
    min-height: 100vh;
}

#splash .splash-background{
	background: rgb(0,152,95);
    background: -moz-linear-gradient(40deg, rgb(0,152,95) 0%, rgb(114,181,204) 100%);
    background: -webkit-linear-gradient(40deg, rgb(0,152,95) 0%,rgb(114,181,204) 100%);
    background: linear-gradient(40deg, rgb(0,152,95) 0%,rgb(114,181,204) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgb(0,152,95)', endColorstr='rgb(114,181,204)',GradientType=1 );
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
	width: 100%;
	height: 100%;
	min-height: 100vh;
	z-index: -1;
}

#splash .splash-container{
	max-width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin: 0 auto;
	padding: 0 1em;
}

#splash .splash-container > div{
	padding: 0;
	padding-bottom: 1em;
	width: 100%;
	text-align: center;
}

#splash .splash-container .splash-container-head .logo{
	width: 90vw;
    max-width: 20em;
}

#splash .splash-container .splash-container-body{
	min-height: 225px;
	overflow-x: hidden;
}

#splash .splash-container .splash-container-body > div{
	width: 100%;
	padding: 1em 0em;
	font-size: 18px;
}

#splash .splash-container .splash-container-body .splash-container-body-loading #loadingResults{
	color: #fff;
}

#splash .splash-container .splash-container-body .splash-container-body-loading #loadingResults p{ 
	margin-top: 1em;
    margin-bottom: 3em;
    font-weight: 100;
}

#splash .splash-container .splash-container-body .splash-container-body-loading #loadingResults img{
	width: 65px;
}

#splash .splash-container .splash-container-body .splash-container-body-loading .geoLoading-wrapper{
	height: 170px;
	position: relative;
}

#splash .splash-container .splash-container-body .splash-container-body-loading.find .geoLoading-wrapper{
	margin-top: 0;
}

#splash .splash-container .splash-container-body .splash-container-body-loading .geoLoading-pin{
	z-index: 2;
	width: 110px;
	position: relative;
	animation: geoLoading-pin-bounce 1.5s infinite cubic-bezier(0.65, 0, 0.35, 1);
}

@keyframes geoLoading-pin-bounce {
  from, to { top: 0 }
  50% { top: -1.5em }
}

#splash .splash-container .splash-container-body .splash-container-body-loading .geoLoading-shadow,
#splash .splash-container .splash-container-body .splash-container-body-loading .geoLoading-error-shadow{
	z-index: 1;
    width: 160px;
    position: absolute;
    bottom: -10px;
    right: 0;
    left: 0;
    margin: 0 auto;
	animation: geoLoading-shadow-shrink 1.5s infinite cubic-bezier(0.65, 0, 0.35, 1);
	transform: scale(0.80);
}

@keyframes geoLoading-shadow-shrink {
  from, to { transform: scale(0.80); }
  50% { transform: scale(1); }
}

#splash .splash-container .splash-container-body .splash-container-body-loading .geoLoading-error-shadow{
	animation: geoLoading-error-shadow-shrink 1s 1 cubic-bezier(0.65, 0, 0.35, 1);
}

@keyframes geoLoading-error-shadow-shrink {
  from, to { transform: scale(1); }
  100% { transform: scale(0.8); }
}

#splash .splash-container .splash-container-body .splash-container-body-loading .geoLoading-pin-error{
	z-index: 2;
	width: 110px;
	position: relative;
	animation: geoLoading-pin-error-bounce 1s 1 cubic-bezier(0.65, 0, 0.35, 1);
}

@keyframes geoLoading-pin-error-bounce {
  from, to { top: -1.5em; }
  100% { top: 0em; }
}

#splash .splash-container .splash-container-body .splash-container-body-loading .geoLoading-text{
	color: #fff;
    font-family: 'Work Sans';
    font-weight: 100;
    font-size: 1em;
	min-height: 70px;
	padding-top: 1em;
}

#splash .splash-container .splash-container-body .splash-container-body-loading .geoInstructions-prompt button{
    font-family: 'Work Sans';
    font-weight: 300;
    font-size: 1em;
    border: 3px solid #8F1B10;
    border-radius: 10px;
    background-color: #8F1B10;
    color: #fff;
    padding: 1em;
	margin-top: 1em;
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5em;
}

#splash .splash-container .splash-container-body .splash-container-body-loading .geoInstructions-prompt button img{
	filter: invert(100%) sepia(76%) saturate(2%) hue-rotate(349deg) brightness(109%) contrast(101%);
}

#splash .splash-container .splash-container-body .splash-container-body-loading .geoInstructions-prompt button:hover{
	color: #8F1B10;
	background-color: transparent;
}

#splash .splash-container .splash-container-body .splash-container-body-loading .geoInstructions-prompt button:hover img{
	filter: invert(18%) sepia(27%) saturate(5915%) hue-rotate(347deg) brightness(88%) contrast(103%);
}

#splash .splash-container .splash-container-body .splash-container-body-loading .geoInstructions-prompt button:active,
#splash .splash-container .splash-container-body .splash-container-body-loading .geoInstructions-prompt button:focus{
	outline: 0px;
	box-shadow:0;
}

#splash .splash-container .splash-container-body .splash-container-body-loading .div-findEventBack{
	margin: 0 auto;
    margin-top: 1.25em;
    width: 100%;
}

#splash .splash-container .splash-container-body .splash-container-body-loading .div-findEventBack #findEventBack{
	background: none;
	color: #fff;
	border: 3px solid #fff;
	border-radius: 10px;
	font-size: 1em;
	padding: 0.25em 1em;
	font-family: 'Work Sans';
	font-weight: 300;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.5em;
}

#splash .splash-container .splash-container-body .splash-container-body-loading .div-findEventBack #findEventBack img{
	width: 30px;
}

#splash .splash-container .splash-container-body .splash-container-body-loading .div-findEventBack #findEventBack:hover{
	background: transparent;
    border: 3px solid rgba(255,255,255,0.4);
    color: #fff;
}

#splash .splash-container .splash-container-body .splash-container-body-events{
	padding-top: 0em;
}

#splash .splash-container .splash-container-body .splash-container-body-events .splash-container-body-events-buttons
{
	display: flex;
    flex-direction: row;
    gap: 0.5em;
    margin-bottom: 1em;
	flex-wrap: wrap;
}

#splash .splash-container .splash-container-body .splash-container-body-events .splash-container-body-events-buttons .search-wrapper{
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: 1em;
	flex: 0.9;
}

#splash .splash-container .splash-container-body .splash-container-body-buttons .div-searchEvent input:focus-visible,
#splash .splash-container .splash-container-body .splash-container-body-events .splash-container-body-events-buttons .search-wrapper input:focus-visible{
	outline: none;
	border: 3px solid #5dd3c2 !important;
}

#splash .splash-container .splash-container-body .splash-container-body-events .splash-container-body-events-buttons .search-wrapper #topSearchEvent{
	font-size: 18px;
}

#splash .splash-container .splash-container-body .splash-container-body-events .splash-container-body-events-buttons .btn{ 
	background: #fff;
	color: #458576;
	border: 3px solid #fff;
	border-radius: 10px;
	font-size: 18px;
	font-family: 'Work Sans';
	font-weight: 300;
	height: 45px;
	padding: 0;
	flex: 0.5;
	display: flex;
    justify-content: center;
    align-items: center;
}

#splash .splash-container .splash-container-body .splash-container-body-events .splash-container-body-events-buttons .btn img{
	width: 25px;
	filter: invert(45%) sepia(59%) saturate(292%) hue-rotate(116deg) brightness(90%) contrast(89%);
}

#splash .splash-container .splash-container-body .splash-container-body-events .splash-container-body-events-buttons .btn:hover{
	background: transparent;
    border: 3px solid #fff;
    color: #fff;
}

#splash .splash-container .splash-container-body .splash-container-body-events .splash-container-body-events-buttons .btn:hover img{
	filter: invert(100%) sepia(100%) saturate(2%) hue-rotate(133deg) brightness(103%) contrast(101%);
}

#splash .splash-container .splash-container-body .splash-container-body-events .splash-container-body-events-buttons .btn:focus,
#splash .splash-container .splash-container-body .splash-container-body-events .splash-container-body-events-buttons .btn:active{
	background:#fff;
    border: 3px solid transparent;
    color: #4da9a1;
	outline: 3px solid #4da9a1;
}

#splash .splash-container .splash-container-body .splash-container-body-events .splash-container-body-events-buttons #btn_topLocateEvent{
	flex: 0.1;
}

#splash .splash-container .splash-container-body .splash-container-body-events .splash-container-body-events-buttons #btn_topAllEvents{
	flex: 1;
    width: 100%;
    min-width: 100%;
}

#splash .splash-container .splash-container-body .splash-container-body-events .splash-container-body-events-list{
	display: flex;
    flex-direction: column;
    gap: 1em;
}

#splash .splash-container .splash-container-body .splash-container-body-events #eventListTitle{
	color: #fff;
    font-size: 1.3em;
    font-weight: 600;
    border-bottom: 1px solid #fff;
    padding-bottom: 9px;
    width: 100%;
	margin: 0;
	text-align: left;
}

#splash .splash-container .splash-container-body .splash-container-body-events #eventList{
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;

	max-height: calc(100vh - 300px - 150px);
	max-width: 400px;
    overflow: scroll;
    min-height: 200px;
}

@media (orientation: landscape) {
	#splash .splash-container .splash-container-body .splash-container-body-events #eventList{
		overflow:visible;
		max-height: 100%;
	}
}

#splash .splash-container .splash-container-body .splash-container-body-events #eventList.empty{
	margin-top: 1.5em;
}

#splash .splash-container .splash-container-body .splash-container-body-events #eventList .list-group{
	width: 100%;
	gap: 0.5em;
}

#splash .splash-container .splash-container-body .splash-container-body-events #eventList .list-group .event-list-empty{
	display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1em;
    border-radius: 10px;
    padding: 1em;
    color: #343841;
    text-align: left;
    background-color: #5dd3c2;
}

#splash .splash-container .splash-container-body .splash-container-body-events #eventList .list-group .event-list-empty img{
	width: 70px;
	filter: invert(20%) sepia(11%) saturate(718%) hue-rotate(184deg) brightness(91%) contrast(89%);
}

#splash .splash-container .splash-container-body .splash-container-body-events #eventList .list-group .event-list-empty div{
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 1em;
}

#splash .splash-container .splash-container-body .splash-container-body-events #eventList .list-group .event-list-empty p{
	white-space: normal !important;
	line-height: 1.25em;
	font-weight: 300;
}

#splash .splash-container .splash-container-body .splash-container-body-events #eventList .list-group .event-list-empty p b{
	font-weight: bold;
}

#splash .splash-container .splash-container-body .splash-container-body-events #eventList .list-group button {
	display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
	gap: 0;
    background-color: transparent;
    color: #fff;
    padding: 0;
    overflow: hidden;
    border: 0px;
	width: 100%;
    height: 60px;
    border-radius: 10px;
}

#splash .splash-container .splash-container-body .splash-container-body-events #eventList .list-group button:hover {
	outline: 0;
}

#splash .splash-container .splash-container-body .splash-container-body-events #eventList .list-group button:focus {
	outline: 0;
}

#splash .splash-container .splash-container-body .splash-container-body-events #eventList .list-group button .event-list-avatar{
	width: 65px;
    height: 65px;
	background-color: #343841;
}

#splash .splash-container .splash-container-body .splash-container-body-events #eventList .list-group button .event-list-info{
	background-color: #0b232b;
    flex: 1;
    height: 65px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 0.75em;
	position: relative;
	overflow: hidden;
	font-size: 18px;
}

#splash .splash-container .splash-container-body .splash-container-body-events #eventList .list-group button:hover .event-list-info,
#splash .splash-container .splash-container-body .splash-container-body-events #eventList .list-group button:focus .event-list-info{
	background-color: #123946;
}

#splash .splash-container .splash-container-body .splash-container-body-events #eventList .list-group button .event-list-info p{
	font-size: 1em;
	font-family: 'Work Sans';
	font-weight: 400;
	text-align: left;
	margin:0;
	padding-right: 3em;
	line-height: 18px;
	overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    min-width: 0;
	max-width: 280px;
	width: 100%;
}


#splash .splash-container .splash-container-body .splash-container-body-events #eventList .list-group button .event-list-info .event-location{
	font-size: 0.65em;
    color: #58999d;
	font-weight:400;
}

#splash .splash-container .splash-container-body .splash-container-body-events #eventList .list-group button .event-list-info .event-go {
    position: absolute;
    right: 1em;
	width: 30px;
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(50deg) brightness(107%) contrast(101%);
	opacity: 0;
	transition: right 400ms ease-out, opacity 400ms ease-out;
	
}

#splash .splash-container .splash-container-body .splash-container-body-events #eventList .list-group button:hover .event-list-info .event-go{
	opacity: 1;
	right: 0.5em
}

#splash .splash-container .splash-container-body .splash-container-body-events #eventList .list-group .event-list-more{
	width: 100%;
    background: #123946;
    justify-content: center;
    height: 40px;
}

#splash .splash-container .splash-container-body .splash-container-body-events #eventList .list-group .event-list-more:hover{
	background: #194E60;
	text-decoration: underline;
}

#splash .splash-container .splash-container-body .splash-container-body-events #eventList .list-group .event-list-more p{ 
	padding: 0;
	margin: 0;
	font-weight: 300;
	font-size: 17px;
	font-family: 'Work Sans';
}

#splash .splash-container .splash-container-body .splash-container-body-events #eventList .list-group .event-list-more img{
	width: 20px;
}

#splash .splash-container .splash-container-body .splash-container-body-buttons{
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	gap: 0.75em;
}

#splash .splash-container .splash-container-body .splash-container-body-buttons > div,
#splash .splash-container .splash-container-body .splash-container-body-events-buttons > div
{
	width: 100%;
	position: relative;
}

#splash .splash-container .splash-container-body .splash-container-body-buttons button{
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0.5em;
	width: 100%;

	border-radius: 10px;
	padding: 0.35em 1em;
	font-family: 'Work Sans';
    font-weight: 300;
	font-size: 18px;
}

#splash .splash-container .splash-container-body .splash-container-body-buttons #allEvents {
    background: none;
    color: #fff;
    border: 3px solid #fff;
}

#splash .splash-container .splash-container-body .splash-container-body-buttons #allEvents:hover{
	background: transparent;
    border: 3px solid rgba(255,255,255,0.4);
    color: #fff;
}

#splash .splash-container .splash-container-body .splash-container-body-buttons #allEvents:focus,
#splash .splash-container .splash-container-body .splash-container-body-buttons #allEvents:active{
	background:#fff;
    border: 3px solid transparent;
    color: #4da9a1;
	outline: 3px solid #4da9a1;
}


#splash .splash-container .splash-container-body .splash-container-body-buttons #findEvent{
	background: #fff;
	color: #458576;
    border: 3px solid #fff;
}

#splash .splash-container .splash-container-body .splash-container-body-buttons #findEvent img{
	width: 25px;
	filter: invert(41%) sepia(22%) saturate(744%) hue-rotate(116deg) brightness(106%) contrast(86%);
}

#splash .splash-container .splash-container-body .splash-container-body-buttons #findEvent:hover{
	background: transparent;
    border: 3px solid #fff;
    color: #fff;
}

#splash .splash-container .splash-container-body .splash-container-body-buttons #findEvent:focus,
#splash .splash-container .splash-container-body .splash-container-body-buttons #findEvent:active{
	background:#fff;
    border: 3px solid transparent;
    color: #4da9a1;
	outline: 3px solid #4da9a1;
}

#splash .splash-container .splash-container-body .splash-container-body-buttons #findEvent:hover img{
	filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(70deg) brightness(110%) contrast(106%);
}

#splash .splash-container .splash-container-body .splash-container-body-buttons #searchEvent,
#splash .splash-container .splash-container-body .splash-container-body-events .splash-container-body-events-buttons #topSearchEvent{
	background: #458576;
    color: #fff;
    border: 3px solid #458576;
    border-radius: 10px;
    font-size: 1em;
    padding: 0.25em 1em;
    font-family: 'Work Sans';
    font-weight: 300;
    width: 100%;
    padding-right: 2.25em;
}

#splash .splash-container .splash-container-body .splash-container-body-buttons #btn_searchEvent,
#splash .splash-container .splash-container-body .splash-container-body-events .splash-container-body-events-buttons #btn_topSearchEvent{
	margin: 0;
    padding: 0;
    background: none;
    border: 0;
    position: absolute;
    width: 30px;
    height: 30px;
    top: 5px;
    right: 8px;
    color: #7ccfc1;
}

#splash .splash-container .splash-container-body .splash-container-body-buttons #btn_searchEvent:active,
#splash .splash-container .splash-container-body .splash-container-body-buttons #btn_searchEvent:focus,
#splash .splash-container .splash-container-body .splash-container-body-events .splash-container-body-events-buttons #btn_topSearchEvent:active, 
#splash .splash-container .splash-container-body .splash-container-body-events .splash-container-body-events-buttons #btn_topSearchEvent:focus{
	outline: 0;
}

#splash .splash-container .splash-container-body .splash-container-body-buttons #searchEvent::placeholder,
#splash .splash-container .splash-container-body .splash-container-body-events .splash-container-body-events-buttons #topSearchEvent::placeholder{
	color: #7ccfc1;
}

#splash .splash-container .splash-container-body .splash-container-body-buttons #btn_searchEvent img,
#splash .splash-container .splash-container-body .splash-container-body-events .splash-container-body-events-buttons #btn_topSearchEvent img{
	filter: invert(81%) sepia(52%) saturate(278%) hue-rotate(114deg) brightness(88%) contrast(86%);
	width: 30px;
}

#splash .dvoxbody.find{
	margin-top: -6em;
	height: auto;
	max-height: none;
}

@-webkit-keyframes resizeLogo {
    0%   {
        top:0;
    }
    100% {
        top: -50px;
    }
}
@keyframes resizeLogo {
    0%   {
        top: 0;
    }
    100% {
        top: -50px;
    }
}

#splash .splash-container .splash-container-footer{
	color: #343841;
	margin: 0 auto;
    margin-bottom:22px;
	position: relative;
	width: 100%;
	display:flex;
	flex-direction: column;
	justify-content: flex-start;
    align-items: center;
	font-size: 0.8em;
	border-top: 1px solid #fff;
	padding-top: 1em;
}

#splash .splash-container .splash-container-footer .splash-container-footer-lang{
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0.5em;
}

#splash .splash-container .splash-container-footer .splash-container-footer-lang > button{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 0.25em;
	background-color: transparent;
	border: 0;
	padding: 0.25em 0.5em;
	border-radius: 5px;
	margin: 0;
	color:#fff;
	font-size: 1.2em;
}

#splash .splash-container .splash-container-footer .splash-container-footer-lang > button:focus {
    outline: 2px solid #558377;
    box-shadow: none;
}

#splash .splash-container .splash-container-footer .splash-container-footer-lang > button img{
	filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(50deg) brightness(107%) contrast(101%);
	width: 20px;
}

#splash .splash-container .splash-container-footer .splash-container-footer-lang .splash-container-footer-lang-popup{
	display: flex;
    flex-direction: column;
	align-items: center;
    gap: 1em;
    background: #fff;
    color: #000;
    border-radius: 10px;
    padding: 1.5em 1em;
    position: absolute;
    top: -112px;
    width: 200px;
    box-shadow: 0px 5px 24px rgba(0,0,0,0.2);
}

#splash .splash-container .splash-container-footer .splash-container-footer-lang .splash-container-footer-lang-popup:after {
    content: "";
    position: absolute;
	bottom: -34px;
    width: 20px;
    height: 12px;
	left: 50%;
    border: 18px solid transparent;
    border-top: 18px solid #fff;
    transform: translateX(-50%);
	pointer-events: all;
}

#splash .splash-container .splash-container-footer .splash-container-footer-lang .splash-container-footer-lang-popup button{
	color: rgb(0,152,95);
	background: transparent;
	border: 0;
	font-size: 1.2em;
}

#splash .splash-container .splash-container-footer .splash-container-footer-lang .splash-container-footer-lang-popup button:hover{
	color: #123946;
}


#splash .splash-container .splash-container-footer .splash-container-footer-links{
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 1em;
	color: #fff;
}

#splash .splash-container .splash-container-footer .splash-container-footer-links a{
	color: #fff;
	text-decoration: none;
}

#splash .splash-container .splash-container-footer .splash-container-footer-links a:hover{
	text-decoration: underline;
}

#splash .splash-container .splash-container-footer .splash-container-footer-copy{
	font-size: 0.8em;
}

#splash .loading-wrapper{
	position: fixed; 
	height:100%; 
	width: 100%; 
	top:0; 
	left:0; 
	background: rgba(22,22,22,0.6); 
	z-index:9999;
}

#splash .loading-wrapper .loading-wrapper-box{
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
	border-radius: 15px; 
	background: #fff; 
	width: 150px; 
	height:150px; 
	z-index:999;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
}

.popup_anim{
	animation: popup 1s ease;
	-webkit-animation: popup 1s ease;
}

#splash .loading-wrapper .loading-wrapper-box img{
	width: 90px;
    padding: 15px;
}

.spin_anim{
	-webkit-animation: spin 1s ease infinite; 
    animation: spin 1s ease infinite; 
}

#splash .loading-wrapper .loading-wrapper-box p{
	padding:0;
	margin:0;
    font-family: 'Assistant';
    font-size: 1em;
    color: #999;
}

@-webkit-keyframes spin {
    0%   {
        -webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(0deg);  /* IE 9 */
        transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
		-webkit-transform-origin: center center;
    }
    100% {
        -webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(360deg);  /* IE 9 */
        transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
		-webkit-transform-origin: center center;
    }
}
@keyframes spin {
    0%   {
        -webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(0deg);  /* IE 9 */
        transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
		-webkit-transform-origin: center center;
    }
    100% {
        -webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(360deg);  /* IE 9 */
        transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
		-webkit-transform-origin: center center;
    }
}

@keyframes popup {
  0%{
    transform: scale(0.2);
	transform-origin: center center;
	opacity: 0;
	transform: translate(-50%, -40%);
	-webkit-transform: translate(-50%, -40%);
  }
  100%{
    transform: scale(1);
	transform-origin: center center;
	opacity: 1;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
  }
}


#splash .footer{
	color: #343841;
	margin: 0 auto;
    margin-bottom:22px;
	font-size: 10px;
	position: relative;
	width: 100%;
}

#splash .footer .btn-secondary{
	background: none;
	border: none;
}

#splash .footer .btn-secondary span{
	margin-left: 0.25em;
}

#splash .footer .btn-secondary:hover > span{
	text-decoration:underline;
}

#splash .footer .btn:active,
#splash .footer .btn:focus{
	outline: 3px solid #458576;
	box-shadow: none;
}

#splash .footer .btn-secondary:active,
#splash .footer .btn-secondary:focus{
	outline: 2px solid #558377;
	box-shadow: none;
}

#splash .footer p{
	margin: 0;
	padding: 0;
}
#splash .footer a{
	color: #fff;
}
#splash .footer a:hover{
	text-decoration: underline;
}

#splash .footer img{
	width: 50px;
}

#splash .alert-popup {
    position: fixed;
    width: auto;
    height: auto;
	top: 25px;
    text-align: center;
	color: #fff;
	visibility: hidden;
	z-index:999;
	left: 50%;
	transform: translateX(-50%);

	display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1em;
}

#splash .alert-popup img{
	width: 20px;
	filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(177deg) brightness(103%) contrast(102%);
}

#splash .alert-show{
	visibility: visible;
	-webkit-animation: alert-fadein 0.5s, alert-fadeout 0.5s 7.5s;
    animation: alert-fadein 0.5s, alert-fadeout 0.5s 7.5s;
}

@-webkit-keyframes alert-fadein {
    from {top: 0; opacity: 0;} 
    to {top: 25px; opacity: 1;}
}

@keyframes alert-fadein {
    from {top: 0; opacity: 0;}
    to {top: 25px; opacity: 1;}
}

@-webkit-keyframes alert-fadeout {
    from {top: 25px; opacity: 1;} 
    to {top: 0; opacity: 0;}
}

@keyframes alert-fadeout {
    from {top: 25px; opacity: 1;}
    to {top: 0; opacity: 0;}
}

#splash .modal{
	overflow: hidden;
}

#splash .modal.fade .modal-dialog {
    transition: -webkit-transform 500ms ease-out;
    transition: transform 500ms ease-out;
    transition: transform 500ms ease-out,-webkit-transform 500ms ease-out;
    -webkit-transform: translate(0,-50px);
    transform: translate(0,-50px);
}

#splash #geoModal .modal-title{
	font-family: 'Work Sans';
    font-weight: 300;
}

#splash #geoModal .modal-header{
	border-bottom: 0;
}

#splash #geoModal #geo_os_accordion{
	width: 100%;
}

#splash #geoModal #geo_os_accordion .card-header{
	padding: 0.25em;
}

#splash #geoModal #geo_os_accordion .card-header button{
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

#splash #geoModal #geo_os_accordion .card-header button img{
	width: 32px;
	margin-right: 10px;
}

#splash #geoModal #geo_os_accordion .card-header button .geo_os_icon_os{
	width: 22px;
}

#splash #geoModal #geo_os_accordion .card-body{
	font-weight: 300;
	line-height: 20px;
}

#splash #geoModal #geo_os_accordion .card-body li{
	line-height: 35px;
}

#splash #geoModal #geo_os_accordion .card-body li img{
	width: 30px;
    background: #f1f1f1;
    padding: 5px;
    border-radius: 999px;
    border: 1px solid #ccc;
	position: relative;
    left: 5px;
    top: -1px;
}

#splash #geoModal #geo_os_accordion .card-body li:last-child{
	padding-bottom: 0em;
}

#splash #geoModal #geo_os_accordion .card-body a{
	color: #007bff;
	margin-bottom: 1em;
}

#splash #geoModal #geo_os_accordion .card-body a:hover{
	text-decoration: underline;
}

#splash .modal.fade .modal-dialog {
	transform: translate3d(0, 100vh, 0);
  }
  
#splash .modal.show .modal-dialog {
	transform: translate3d(0, 0, 0);
  }



/*MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM*/
/*MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM    Splash Page Mobile Adjustments   MM*/
/*MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM*/

@media all and (max-width: 320px)
{
	#splash .logo {
		width: 15em;
	}

	#splash .container{
		margin: 0;
		padding: 0;
	}

	#splash .div-findEvent,
	#splash .div-searchEvent,
	#splash .div-allEvents{
		width: 270px;
	}

	#splash #eventListTitle {
		width: 285px;
	}

	#splash #eventList {
		max-width: 300px;
		/*max-height: calc( 100vh - 375px);*/
	}

	#splash #eventList .list-group p {
		max-width: 210px;
	}

	#splash .footer{
		margin: 0 auto;
		margin-bottom: 22px;
	}

	#splash .div-findEventBack{
		width: 270px;
	}
} 


/******************************************************************************/
/******************************************************************************/
/******************************************************************************/

#event{
	background: #50514f;
}
#event #loadcover{
	position: fixed; 
	height:100%; 
	width: 100%; 
	top:0; 
	left:0; 
	background: #fff; 
	z-index:998;
}

#event #loaderbox{
	position: fixed; 
	border-radius: 15px; 
	border: 2px solid #e1e1e1;
	background: #fff; 
	width: 150px; 
	height:150px; 
	z-index:999;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
}

#event #loaderbox img{
	width: 45%;
    position: relative;
    top: 20%;
    left: 27%;
}

#event #loaderbox p{
	position: absolute;
    bottom: 0px;
	width: 100%;
    font-family: 'Assistant';
    font-size: 1em;
    color: #999;
	text-align: center;
}

#event .wrapper{
	max-width: 550px;
	width: 100%;
	position: relative;
	margin: 0 auto;
	
}

#event .wrapper.playerpadding{
	/*margin-bottom: 250px;*/
	padding-bottom: 11em;
}

@supports (width: 100vw){
	#event .wrapper{
		width: 100vw;
	}
}

@keyframes name_back_and_forth {
	20%   { 
		left:0;		
	}
	80% { 
		left: -120%;
	}
	100% {
		left: -120%;
	}
   }

#content{
	padding: 0.25em;
	padding-bottom: 3em;
}

#content .card.no-streams{
	background-color: #f1f1f1 !important;
    padding: 1em;
    border-radius: 15px;
    font-size: 1em;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1em;
}

#content .card.no-streams .icon-wrapper{
	width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    background: #e1e1e1;
    padding: 0;
    border-radius: 999px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#content .card.no-streams .icon-wrapper img{
	width: 30px;
    margin-top: -3px;
}

#content .card.no-streams span{
    line-height: 1.2em;
	font-weight: 500;
}

#content .card.no-streams button{
	padding: 0;
	margin: 0;
	text-decoration: underline;
}

#content .card.no-streams button:hover{
	text-decoration: none;
	color: #232323;
}

#content .card {
    margin: 1em;
    border: 0px;
}

#content .card-header {
    font-weight: bold;
    font-family: 'Assistant';
    position: relative;
}

#content .card-body.stream-btns,
.wrapper .card-body.stream-btns{
	margin: 0;
    padding: 0;
}

#content .card-body ul,
.wrapper .card-body ul{
    padding: 0;
    margin: 0;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
}

#content .card-body ul li,
.wrapper .card-body ul li{
	display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	gap: 1em;
    width: 100%;
	min-height: 55px;
    height: 55px;
    max-height: 55px;
    background: #f1f1f1;
    color: #232323;
    text-align: left;
    margin: 0;
    padding: 0.5em 1em;
    font-family: 'Assistant';
	position: relative;
	cursor: pointer;
	transition: all 0.2s ease;
}

#content .card-body ul li:nth-child(odd)
.wrapper .card-body ul li:nth-child(odd){
	background: #e1e1e1;
}

#content .card-body ul li:hover,
.wrapper .card-body ul li:hover{
	filter: saturate(1.2) brightness(1.1);
}

#content .card-body ul li .stream-icon,
.wrapper .card-body ul li .stream-icon{
	height: 100%;
    width: 100%;
}

#content .card-body ul .stream,
.wrapper .card-body ul .stream{
	position: relative;
	overflow: hidden;
}

#content .card-body ul li .stream-icon-wrapper,
.wrapper .card-body ul li .stream-icon-wrapper{
	border-radius: 999px;
	height: 35px;
	width: 35px;
	flex: none;
	overflow: hidden;
}

#content .card-body ul li .stream-status,
.wrapper .card-body ul li .stream-status{
	display: flex;
    justify-content: center;
    align-items: center;
	background-color: #e1e1e1;
	width: 35px;
	height: 35px;
	top: 10px;
	left: 16px;
	color: #fff;
	position: absolute;
	border-radius: 999em;
	opacity: 1;
}

#content .card-body ul li .stream-status.status-wrapper,
.wrapper .card-body ul li .stream-status.status-wrapper{
	position: relative;
	top:0;
	left:0;
}

#content .card-body ul li .stream-status.loading,
.wrapper .card-body ul li .stream-status.loading{
	opacity: 0.6;
}

#content .card-body ul li .stream-status.loading img,
.wrapper .card-body ul li .stream-status.loading img{
	width: 30px;
}

#content .card-body ul li .stream-status img,
.wrapper .card-body ul li .stream-status img{
	width: 25px;
	opacity: 1;
	filter: invert(24%) sepia(17%) saturate(513%) hue-rotate(188deg) brightness(92%) contrast(90%); /* #3C404D */
}

#content .card-body ul li .stream-label,
.wrapper .card-body ul li .stream-label{
	white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#content .card-body ul li.no-stream{
	background-color: #e1e1e1 !important;
	color: #000 !important;
    padding: 1em;
    font-size: 1em;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 0.75em;
	min-height: auto;
    max-height: none;
    height: auto;
}

#content .card-body ul li.no-stream img{
	width: 45px;
    background: #ccc;
    padding: 0.5em;
    border-radius: 999px;
}

#mainPlayer{
	width: 100%;
	display: flex;
    flex-wrap: wrap;
    position: fixed;
    bottom: 30px;
    left: 0;
    right: 0;
    color: rgb(214, 214, 214);
    background-color: #3c404d;
    padding: 1.5em;
	z-index: 996;
	height: 150px;
}

#mainPlayer::before{
	background: transparent;
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    box-shadow: 0px -8px 11px rgba(0,0,0,0.2);
}

.dark #mainPlayer{
	background: var(--event-player-dark-bgcolor) !important;
	color: var(--event-player-dark-text-color) !important;
}

.light #mainPlayer{
	background: var(--event-player-light-bgcolor) !important;
	color: var(--event-player-light-text-color) !important;
}

#mainPlayer.player-down{
	bottom: -200px;
}

#mainPlayer.player-up{
	bottom: 40px;
}

#mainPlayer.slide-up{
	animation: slide-up 0.5s ease-in-out forwards;
}

@keyframes slide-up {
	0% {
		bottom: -200px;
	}

	100% {
		bottom: 30px;
	}
}

#mainPlayer.slide-down{
	animation: slide-down 0.5s ease-in-out forwards;
}

@keyframes slide-down {
	0% {
		bottom: 30px;
	}

	100% {
		bottom: -200px;
	}
}

#mainPlayer .player-wrapper{
	position: relative;
    max-width: 800px;
    margin: 0 auto;
    z-index: 996;
    white-space: nowrap;
    display: flex;
    justify-content: flex-start;
    width: 100%;
    align-items: center;
}

#mainPlayer .player-wrapper div{
	display: inline-block;
	vertical-align: middle;
}

#mainPlayer .player-wrapper .player-picto{
	width: 20vw;
    height: 20vw;
    max-width: 100px;
    max-height: 100px;
    min-width: 75px;
    min-height: 75px;
    border-radius: 55px;
    background: #000;
    border: 5px solid #fff;
    background-size: contain;
}

#mainPlayer .player-wrapper .player-info{
	margin-left: 1em;
	width: 60%;
	overflow: hidden;
	position: relative;
}

#mainPlayer .player-wrapper .player-info p{
	padding:0;
	margin:0;
}

#mainPlayer .player-wrapper .player-info .player-stream{
	position: relative;
	font-size: 2em;
}

#mainPlayer .player-wrapper .player-info .player-stream-name{
	font-weight: bold;
}

#mainPlayer .player-wrapper .player-info .player-stream-desc{
	position: relative;
}

#mainPlayer .player-wrapper .player-button{
	position: absolute;
    right: 0;
    bottom: 0.25em;
    width: 150px;
    height: 150px;
    cursor: pointer;
    background-color: #ccc;
    border: 0.75em solid #3c404d;
    border-radius: 999em;
    display: flex;
    justify-content: center;
    align-items: center;
	transition: all 0.2s ease;
}

.dark #mainPlayer .player-wrapper .player-button{
	background-color: var(--event-player-dark-text-color) !important;
	border: 0.75em solid var(--event-player-dark-bgcolor) !important;
}

.light #mainPlayer .player-wrapper .player-button{
	background-color: var(--event-player-light-text-color) !important;
	border: 0.75em solid var(--event-player-light-bgcolor) !important;
}

#mainPlayer .player-wrapper .player-button:hover{
	filter: brightness(1.2);
}

.dark #mainPlayer .player-wrapper .player-button:hover{
	filter: brightness(1.2);
}

.light #mainPlayer .player-wrapper .player-button:hover{
	filter: brightness(0.9);
}

#mainPlayer .player-wrapper .player-button .player-button-icon{
	width: 70%;
	filter: var(--svg-player-dark-color) !important;
}

.dark #mainPlayer .player-wrapper .player-button .player-button-icon{
	filter: var(--svg-player-dark-color) !important;
}

.light #mainPlayer .player-wrapper .player-button .player-button-icon{
	filter: var(--svg-player-light-color) !important;
}



@media screen and (max-width: 550px){
	#mainPlayer{
		padding: 0.8em;
		height: 125px;
	}

	#mainPlayer .player-wrapper .player-info{
		font-size: 0.7em;
		width: 45%;
	}

	#mainPlayer .player-wrapper .player-button{
		width: 100px;
		height: 100px;
		top: -20px;
	}

	#mainPlayer.player-up{
		bottom: 45px;
	}

}

  
#pagefooter{
	position: fixed;
    min-height: 40px;
	background: #464953;
	color: #fff;
    font-size: 0.7em;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 997;
	display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.dark #pagefooter{
	background: var(--event-footer-dark-bgcolor) !important;
	color: var(--event-footer-dark-text-color) !important;
}

.dark #pagefooter a{
	color: var(--event-footer-dark-text-color) !important;
}

.light #pagefooter{
	background: var(--event-footer-light-bgcolor) !important;
	color: var(--event-footer-light-text-color) !important;
}

.light #pagefooter a{
	color: var(--event-footer-light-text-color) !important;
}

#pagefooter.player-down::before{
	background: transparent;
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
	box-shadow: 0px -8px 11px rgba(0,0,0,0.2);
}

#pagefooter .footer-wrap{
	position: relative;
    max-width: 560px;
    width: 100%;
    white-space: nowrap;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0.5em 2em;
    flex-wrap: wrap;
	gap: 1em;
}

#pagefooter .footer-wrap .footer-feedback-link{
    text-decoration: underline;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	cursor: pointer;
	gap: 0.25em;
}

#pagefooter .footer-wrap .footer-feedback-link:hover{
	text-decoration: none;
	color: #fff;
}

#pagefooter .footer-wrap .footer-feedback-link img{
	filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(64deg) brightness(97%) contrast(107%);
	width: 20px;
	position: relative;
	top: -1px;
}

#pagefooter .footer-wrap .footer-language-wrapper .footer-language-menu{
	position: absolute;
    bottom: 50px;
    background: #fff;
    padding: 0.5em;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    font-size: 14px;
    min-width: 100px;
	color: #232323 !important;
}

#pagefooter .footer-wrap .footer-language-wrapper .footer-language-menu h5{
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 0.5em;
	font-size: 16px;
}

#pagefooter .footer-wrap .footer-language-wrapper .footer-language-menu h5 img{
	width: 20px;
}

#pagefooter .footer-wrap .footer-language-wrapper .footer-language-menu ul{
	list-style: none;
	padding:0;
	margin:0;
}

#pagefooter .footer-wrap .footer-language-wrapper .footer-language-menu ul a{
	padding: 0.35em;
	color: #232323 !important;
}

#pagefooter .footer-wrap .footer-powered{
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0.5em;
	margin-left: auto;
}

#pagefooter .footer-wrap .footer-powered p{
	margin: 0;
	padding: 0;
}

#pagefooter .footer-wrap .footer-powered .footer-powered-logo img,
#pagefooter .footer-powered-logo img{
	height: 20px;
    position: relative;
    top: -3px;
}


/******************************************************************************/
/******************************************************************************/
/** S Mobile Devices
/******************************************************************************/
@media (max-width: 550px){
	.footer-powered{
		margin-left: 0px !important;
	}

	#pagefooter{
		padding-top: 0.75em;
		padding-bottom: 0.75em
	}
}


/******************************************************************************/
/******************************************************************************/
/** XS Mobile Devices
/******************************************************************************/
@media (max-width: 345px){

	#eventHead_eventName h1{
		text-align: center !important;
	}
	
	#pagefooter{
		padding-top: 0.75em;
		padding-bottom: 0.75em
	}
	
	#pagefooter .footer-wrap{
		gap: 0.5em;
		flex-direction: column;
	}

	#pagefooter .footer-divider{
		display: none;
	}
}

/******************************************************************************/
/******************************************************************************/
/** Older Browser Support
/******************************************************************************/
@supports not ( gap: 0.5em ){
	#splash .splash-container .splash-container-body .splash-container-body-buttons{
		display: block;
	}

	#splash .splash-container .splash-container-body .splash-container-body-buttons > div{
		margin: 0.75em 0;
	}

	#splash .splash-container .splash-container-body .splash-container-body-buttons > div:first-child{
		margin-top: 0;
	}

	#splash .splash-container .splash-container-body .splash-container-body-buttons > div:last-child{
		margin-bottom: 0;
	}

	#splash .splash-container .splash-container-body .splash-container-body-buttons button{
		display: block;
		column-count: 2;
		column-gap: 0.5em;
	}
}