body {
	padding: 0;
	margin: 0;
	overflow: hidden;
}

html, body, #map, #replay-map {
	height: 100%;
	font: 10pt "Helvetica Neue", Arial, Helvetica, sans-serif;
}
.hidden {
	display: none;
}
.element-hidden {
	display: none;
}
.error-message {
	color: red;
}
.cursor-pointer {
	cursor: pointer;
}

/* For forms alignment */
  .form-wrapper {
    background-color: whitesmoke;
    list-style-type: none;
    padding: 0;
    border-radius: 3px;
  }
  .form-row {
    display: flex;
    justify-content: flex-end;
    padding: .5em;
  }
  .form-row > label {
    padding: .5em 1em .5em 0;
    flex: 1;
  }
  .form-row > input, select {
    flex: 2;
  }
  .form-row > input,
  .form-row > button {
    padding: .5em;
  }
  .form-row > button {
   background: gray;
   color: white;
   border: 0;
  }
 @media screen and (min-width: 768px) {
   	.form-row > input, select {
    	flex: 3;  
   }
  }
 @media screen and (min-width: 992px) {
   	.form-row > input, select {
    	flex: 4;  
   }
  }
 @media screen and (min-width: 1200px) {
   	.form-row > input, select {
    	flex: 5;  
   }
  }
/* End for forms alignment */

.side-leaderboard {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 100%;
	overflow: hidden;
	z-index: 40000; 
}
	.side-leaderboard.collapsed {
	  width: 40px; 
	}

.participant-info {
	position: absolute;
		top: 0;
		left: 0;
		width: 90%;
		height: 98%;
		z-index: 40001;
		padding: 10px;
		overflow: auto;
		border-radius:6px;
	}
@media (min-width: 768px) {
	.participant-info {
		position: fixed;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 50%;
		height: 50%;
		z-index: 40001;
		padding: 10px;
		overflow-y: auto;
		overflow-x: hidden;  
		border-radius:6px;
	}
}
.map-on-click-popup {
	position: absolute;
		top: 0;
		left: 0;
		width: 90%;
		height: 98%;
		z-index: 40001;
		padding: 10px;
		overflow: auto;
		border-radius:6px;
	}
@media (min-width: 768px) {
	.map-on-click-popup {
		position: fixed;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 50%;
		height: 80%;
		z-index: 40001;
		padding: 10px;
		overflow-y: auto;
		overflow-x: hidden;  
		border-radius:6px;
	}
}

/* ####### */
/* Code for toggle-switch */
.toggle-switch {
		position: relative;
		display: inline-block;
		width: 40px;
		height: 24px;
}
/* Hide default HTML checkbox */
.toggle switch input {
	opacity: 0;
	width: 0;
	height: 0;
}
/* The slider */
.slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #ccc;
-webkit-transition: .4s;
transition: .4s;
}

.slider:before {
position: absolute;
content: "";
height: 20px;
width: 20px;
left: 1px;
bottom: 2px;
background-color: white;
-webkit-transition: .4s;
transition: .4s;
}
input:checked + .slider:before {
-webkit-transform: translateX(20px);
-ms-transform: translateX(20px);
transform: translateX(20px);
}
/* Rounded sliders */
.slider.round {
border-radius: 24px;
}
.slider.round:before {
border-radius: 50%;
}
/* Code for toggle-switch */
/* ####### */

.filter-warnings {
    position: absolute;
    top: 10px;
	left: 50px;
    width: 40px;
	height: 60px;
    overflow: hidden;
    z-index: 3000; 
}
@media (min-width: 768px) and (max-width: 991px) {
      .filter-warnings {
        left: 325px; 
	} 
}
@media (min-width: 992px) and (max-width: 1199px) {
      .filter-warnings {
        left: 410px; 
	} 
}
@media (min-width: 1200px) {
      .filter-warnings {
        left: 480px; 
	} 
}
.filter-warning {
	font-size: 12px;
	font-weight: 800;
	text-align: center;
	color: #fff;
	padding: 1px;
	border: 3px solid transparent;
	border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
	margin: 2px;  
}

.masterevent-not-active {
	position: absolute;
		top: 35%;
		left: 35%;
		width: 30%;
		height: 25%;
		z-index: 40001;
		padding: 10px;
		overflow: auto;
		border-radius:6px;
		text-align:center;
	}
@media (min-width: 768px) {
	.masterevent-not-active {
		position: fixed;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 20%;
		height: 15%;
		z-index: 40001;
		padding: 10px;
		overflow-y: auto;
		overflow-x: hidden;  
		border-radius:6px;
		text-align:center;
	}
}
.password-popup {
	position: absolute;
	top: 40%;
	left: 25%;
	width: 50%;
	height: 20%;
	z-index: 100000001;
	padding: 10px;
	overflow: auto;
	border-radius:6px;
}
		
.participant-info-activities {
	font-size: 13px;
  }  
.participant-info-close {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 40001;
	background-color: rgba(255,255,255,0.9);
	overflow-y: auto;
	overflow-x: hidden;
}
.map-on-click-popup-close {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 40001;
	background-color: rgba(255,255,255,0.9);
	overflow-y: auto;
	overflow-x: hidden;
}
.participant-gpx-file {
	position: absolute;
	  top: 40%;
	  left: 25%;
	  width: 50%;
	  height: 40%;
	  z-index: 40001;
	  background-color: rgba(255,255,255,0.9);
	padding: 10px;
	overflow: auto;
	border-radius:6px;
  }  
.participant-change-tracker-activities {
	font-size: 13px;
  }  
.participant-change-tracker-close {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 40001;
	background-color: rgba(255,255,255,0.9);
	overflow-y: auto;
	overflow-x: hidden;
}
.sidebar-map {
	height: 100vh;
	width: 100%;
	z-index: 1000;
}
.sidebar {
	z-index: 40000; 
}
.sidebar-content {
	overflow-y: hidden; 
	z-index: 40000; 
}
.customerevent-dropdown {
	position: absolute;
	left: 20px;
	right: 0px;
	top: 45px;
	height: 60px;
	overflow: hidden;
}
.customerevent-dropdown-select {
  color: #fff;
  padding: 8px 20px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  font-size: 16px;
  font-weight: bold;
}
.customerevent-dropdown-select-main {
	color: #fff;
	padding: 8px 20px;
	border: 1px solid transparent;
	border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
	font-size: 12px;
	font-weight: bold;
  }
.mastereventName{
	position: absolute;
	right: 80px;
	top: 10px;
	z-index: 3000;
	font-size: 12px;
	font-weight: 800;
	text-align: right;
	color: #fff;
	padding: 8px 10px;
	border: 1px solid transparent;
	border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;  
}
.mastereventNameText{
	font-size: 12px;
	font-weight: 800;
	color: #fff;
	padding: 8px 10px;
	border: 1px solid transparent;
	border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;  
}
.participantlist-filter {
	position: absolute;
	left: 20px;
	right: 0px;
	top: 45px;
	height: 60px;
	overflow: hidden;
}
.participantlist-filter-name {
	position: absolute;
	right: 20px;
	overflow: hidden;
}
.participantlist-inner-content {
	position: absolute;
	bottom: 125px;
	left: 20px;
	right: 0px;
	top: 100px;
	overflow:auto;
}        
.settings-inner-content {
	position: absolute;
	bottom: 125px;
	left: 20px;
	right: 0px;
	top: 50px;
	overflow:auto;
}        
.settings-inner-content-event-body {
	margin: 10px 0px 0px;
	height: 30px;
	padding: 0 20px;
	line-height: 30px;
	font-size: 14.4pt;
	font-weight: bold;
	opacity:0.8;  
}        
.participantlist-inner-content-event-body-status-title {
	margin: 10px 0px 0px;
	height: 30px;
	padding: 0 20px;
	line-height: 30px;
	font-size: 14.4pt;
	font-weight: bold;
	opacity:0.8;  
}        
.participantlist-inner-content-event-header {
	margin: 10px 0px 0px;
	height: 30px;
	padding: 0 20px;
	line-height: 30px;
	font-size: 14.4pt;
	font-weight: bold;
	opacity:0.8;  
}
.leaderboard-inner-content {
	position: absolute;
	bottom: 125px;
	left: 20px;
	right: 0px;
	top: 50px;
	overflow:auto;
}        
.instagram-inner-content {
	position: absolute;
	bottom: 0px;
	left: 0px;
	right: 0px;
	top: 40px;
	width: 100%;
	height: 100%;
	overflow:auto;
}        
.statistics-inner-content-body {
	margin: 10px 0px 0px;
	height: 30px;
	line-height: 30px;
	font-size: 14.4pt;
	font-weight: bold;
	opacity:0.8;  
    padding: 10px 10px 10px 10px;
    opacity:0.8;
	font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;
	font-size:12px;
	font-style:normal;
	font-weight:400;
}
.qrcode-inner-content-body {
	bottom: 0px;
	left: 0px;
	right: 0px;
	top: 40px;
	width: 100%;
	height: 100%;
	overflow:auto;
	margin-top:20px;
}        
.sponsor-images-left {
	position: absolute;
	bottom: 0px;
    padding: 5px 0px 5px 0px;
	height: 115px;
}
.ol-attribution {
	right: 8px;
	bottom: 40px;
}
.ol-scale-line {
	left: unset;
	right: 8px;
}
.ol-zoom {
    left: unset;
    right: 8px;
}
.layer-switcher {
    position: absolute;
    top: 60px;
    text-align: left;
}

/* style for popups */
.ol-popup {
	position: absolute;
	background-color: white;
	box-shadow: 0 1px 4px rgba(0,0,0,0.2);
	padding: 1px;
	border-radius: 6px;
	border: 1px solid #cccccc;
	bottom: 12px;
	left: -50px;
	min-width: 330px;
	font-size: 11px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.42857143;
	text-align: left;
	text-align: start;
	text-decoration: none;
	text-shadow: none;
	text-transform: none;
	letter-spacing: normal;
	word-break: normal;
	word-spacing: normal;
	word-wrap: normal;
	white-space: normal;
}
.ol-popup:after, .ol-popup:before {
	top: 100%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}
.ol-popup:after {
	border-top-color: white;
	border-width: 10px;
	left: 48px;
	margin-left: -10px;
}
.ol-popup:before {
	border-top-color: #cccccc;
	border-width: 11px;
	left: 48px;
	margin-left: -11px;
}
.ol-popup-content {
    padding: 9px 14px;
}

@media (min-width: 500px) {
	.mastereventNameText, .customerevent-dropdown-select-main {
		width: auto;
	}
}
@media (min-width: 768px) {
	.mastereventNameText, .customerevent-dropdown-select-main {
		font-size: 14px;
		font-weight: 800;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	.mastereventNameText, .customerevent-dropdown-select-main {
		font-size: 16px;
		font-weight: 800;		
	}
}
@media (min-width: 992px) and (max-width: 1199px) {
	.mastereventNameText, .customerevent-dropdown-select-main {
		font-size: 18px;
		font-weight: 800;		
	}
}
@media (min-width: 1200px) {
	.mastereventNameText, .customerevent-dropdown-select-main {
		font-size: 20px;
		font-weight: 800;		
	}
}
.fa-lt-style-grey {
	color: rgb(211, 211, 211);
	opacity: 50;
}
.fa-lt-style-white {
	color: rgb(255, 255, 255);
	opacity: 50;
}
.fa-lt-style-yellow {
	color: rgb(255, 255, 0);
	opacity: 50;
}
.fa-lt-style-green {
	color: rgb(0, 255, 0);
	opacity: 50;
}
.fa-lt-style-red {
	color: rgb(255, 0, 0);
	opacity: 50;
}
.fa-lt-style-blue {
	color: rgb(102, 178, 255);
	opacity: 50;
}
.fa-lt-style-transparent {
	color: transparent;
}
img {
    max-width: 100%;
}
.eventLogo-1{
	position: absolute;
	right: 10px;
	bottom: 100px;
	opacity: 0.8;
	width: 60px;
	height: 60px;
	z-index:2;
}
	@media (min-width: 500px) and (min-height: 500px)  {
		.eventLogo-1 {
			right: 10px;
			bottom: 100px;
			width: 60px;		
			height: 60px;
			transition: width 500ms;
		}
	}
	@media (min-width: 768px) and (min-height: 700px)  {
		.eventLogo-1 {
			right: 10px;
			bottom: 100px;
			width: 100px;		
			height: 100px;
		}
	}
	@media (min-width: 992px)  and (min-height: 900px)  {
		.eventLogo-1 {
			right: 10px;
			bottom: 100px;
			width: 100px;					
			height: 100px;
		}
	}
	@media (min-width: 1200px) and (min-height: 1200px)  {
		.eventLogo-1 {
			width: 150px;		
			height:150px;
		}
	}
.eventLogo-2{
	position: absolute;
	right: 10px;
	bottom: 100px;
	opacity: 0.8;
	width: 60px;
	height: 60px;
	z-index:2;
}
	@media (min-width: 500px) and (min-height: 500px)  {
		.eventLogo-2 {
			right: 10px;
			bottom: 100px;
			width: 60px;		
			height: 120px;
			transition: width 500ms;
		}
	}
	@media (min-width: 768px)  and (min-height: 700px)  {
		.eventLogo-2 {
			right: 10px;
			bottom: 100px;
			width: 100px;		
			height: 200px;
		}
	}
	@media (min-width: 992px) and (min-height: 900px)  {
		.eventLogo-2 {
			right: 10px;
			bottom: 100px;
			width: 100px;					
			height: 200px;
		}
	}
	@media (min-width: 1200px) and (min-height: 1200px)  {
		.eventLogo-2 {
			width: 150px;		
			height:300px;
		}
	}
.eventLogo-3{
	position: absolute;
	right: 10px;
	bottom: 100px;
	opacity: 0.8;
	width: 60px;
	height: 180px;
	z-index:2;
}
	@media (min-width: 500px) and (min-height: 500px)  {
		.eventLogo-3 {
			right: 10px;
			bottom: 100px;
			width: 60px;		
			height: 180px;
			transition: width 500ms;
		}
	}
	@media (min-width: 768px) and (min-height: 700px)  {
		.eventLogo-3 {
			right: 10px;
			bottom: 100px;
			width: 100px;		
			height: 300px;
		}
	}
	@media (min-width: 992px) and (min-height: 900px) {
		.eventLogo-3 {
			right: 10px;
			bottom: 100px;
			width: 100px;					
			height: 300px;
		}
	}
	@media (min-width: 1200px) and (min-height: 1200px)  {
		.eventLogo-3 {
			width: 150px;		
			height:450px;
		}
	}
.event-logo {
	position: relative;
}
.popup-map {
	position: absolute;
	top: 2%;
	left: 2%;
	width: 95%;
	height: 90%;
	z-index: 40000;
	overflow: hidden;
}
.popup-map-map {
	height: 90vh;
	width: 100%;
	z-index: 40001;
}
.tableParticipantlist {
	border-collapse: collapse;
	width: 100%;
	font-size: 13px;
}
  
  .tableParticipantlist th, .tableParticipantlist td {
	text-align: left;
}
  
  .tableParticipantlist tr {
	background-color: #ffffff;
}
  
  .tableParticipantlist tr.header, .tableParticipantlist tr:hover {
	background-color: #f1f1f1;
}
.info-text-on-map { 
    position:absolute; 
    left:12%; 
    bottom:40px; 
    z-index:2; 
    width:260px; 
    height:70px; 
    background-color:#FFFFFF;
    opacity:1.0;
    border-radius:6px;
	text-align:center;
	font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;
	padding: 20px;
	overflow: auto;  
}  
.info-text-on-map-close {
	position: absolute;
	top: 10px;
	right: 10px;
	background-color: rgba(255,255,255,0.9);
	overflow-y: auto;
	overflow-x: hidden;
}

@media (min-width: 1200px) {
	.info-text-on-map {
		left:42%;
	}
}
.replay-map {
	position: absolute;
	bottom: 0px;
	left: 0px;
	right: 0px;
	top: 40px;
	overflow:auto;
	z-index:100000;
}        
.spinner {
	align-items: center;
	display: flex;
	height: 100vh;
	justify-content: center;
	left: 0;
	position: fixed;
	top: 0;
	opacity: 1;
	width: 100%;
	z-index:100000000;
}
.spinner-replay {
	align-items: center;
	display: flex;
	height: 100vh;
	justify-content: center;
	left: 0;
	position: fixed;
	top: 0;
	opacity: 1;
	width: 100%;
	z-index:100000000;
}
.replay-time-display {
    position: absolute;
	font-size: 15px;
	font-weight: 800;
	width: 270px;
    top: 45px;
	left: 20px;
	z-index:100001;
	color: white;
	text-align: center;
}
.replay-slider-container {
    position: absolute;
	width: 80%;
	height: 30px;
    top: 10px;
	left: 10px;
	z-index:100001;
}
.replay-slider {
	-webkit-appearance: none;  /* Override default CSS styles */
	appearance: none;
    position: absolute;
	top: 8px;
	width: 99%; /* Full-width */
	height: 12px; /* Specified height */
	outline: none; /* Remove outline */
	opacity: 1; /* Set transparency (for mouse-over effects on hover) */
	-webkit-transition: .2s; /* 0.2 seconds transition on hover */
	transition: opacity .2s;
}

.replay-slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 25px;
	height: 25px;
	border-radius: 50%; 
	cursor: pointer;
}
	
.replay-slider::-moz-range-thumb {
	width: 25px;
	height: 25px;
	border-radius: 50%;
	cursor: pointer;
}
.replay-filter-container { 
    position:absolute; 
    left:5px; 
    top:45px; 
    z-index:100001; 
    width:260px; 
    height:80%; 
    background-color:#FFFFFF;
    opacity:1.0;
    border-radius:6px;
	text-align:left;
	font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;
	padding: 10px;
} 
.replay-filter-container-close {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 40001;
	background-color: rgba(255,255,255,0.9);
	overflow-y: auto;
	overflow-x: hidden;
}
.replay-filter-container-participants {
	position: absolute;
	bottom: 0px;
	left: 20px;
	right: 0px;
	top: 100px;
	overflow:auto;
}     
.button {
	border: none;
	color: white;
	padding: 15px 15px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
}  
.triathlon-viewer-icons{
	position: absolute;
	right: 50%;
	top: 10px;
	z-index: 3000;
	font-size: 16px;
	font-weight: 800;
	width: 120px;
	text-align: right;
}
.non-binary-team-icon{
      position: relative;
      display: inline-block;
}
.non-binary-team-icon-left{
      position: absolute;
      left: 0;
	  top:0px;
}
.non-binary-team-icon-right{
      position: absolute;
      left:8px;
      top:0px;
}
.fa-stack{
	height:1em;
}