
.container {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

main {
	flex: 1;
}

body{
	font-family:Lato;
}

.v-m{
	vertical-align:middle !important;
}

.clNumber {
	font-weight:700;color:dodgerblue;font-size:1.2em;
}

.clName {
	font-weight: 700;
	font-size: 1.1em;
	color:black;
}


.bold-700 {
	font-weight: 700 !important;
}

.eventType {
	font-family: 'Lato', 'Open Sans', sans-serif;
	text-transform: uppercase;
	font-weight: 900;
}

.equestrianWelcome{
	font-size:24px;
	margin-bottom:5px;
}

.entryNumberTitle{
	font-weight:bold;
	font-size:18px;
}

.ml{
	margin-left:2px;
}

.mr{
	margin-right:2px;
}

.eventdisplay {
	font-size: 20px;
	height: auto;
	color: #2E4053;
	text-align: center;
}

.classTitle {
	padding-top: 15px;
	padding-bottom: 15px;
	margin-left: 0px;
	margin-right: 0px;
	color: white;
	text-align: left;
	font-size: 1.5em;
	font-weight: bold;
	text-transform: uppercase;
	margin-left: 12px;
}

.entryNumber {
	background-color: white;
	font-size: 2em;
	font-weight: bold;
	color: black;
	text-align: center;
	display: flex;
	align-items: center;
	border-radius: 10px;
	border: 5px solid rgba(255,255,255,0);
	background-clip: padding-box
}



.riderNameDisplay {
	background-color: white;
	border: 5px solid rgba(255,255,255,0);
	border-radius: 10px;
	background-clip: padding-box;
	font-size: 2em;
	font-weight: bold;
	display: flex;
	text-transform: uppercase;
	color: black;
	align-items: center;
}

.horseNameDisplay {
	background-color: white;
	font-size: 1.8em;
	border-radius: 10px;
	font-weight: bold;
	text-transform: uppercase;
	color: black;
	border: 5px solid rgba(255,255,255,0);
	background-clip: padding-box;
}

.resultsTitle{
	font-size:1.3em;
}

.resultDisplay{
	font-size:1.6em;
}

.resultsHeader {
	margin-top: 10px;
	margin-bottom: 10px;
	font-weight: 700;
	color: black;
}

@media (max-width: 480px) {
	.resultsTitle {
		font-size: 1.0em;
	}


	.resultsHeader {
		margin-top: 10px;
		margin-bottom: 10px;
		font-weight: 700;
		color: black;
		font-size:0.9em;
	}

	.resultDisplay {
		font-size: 1.0em;
	}
	.hideElement {
		display: none;
	}

	.classTitle {
		font-size: 1em;
		padding-top: 5px;
		padding-bottom: 5px;
	}

	.entryNumber{
		font-size:1.6em;
	}

	.riderNameDisplay {
		font-size: 1em;
	}

	.horseNameDisplay {
		font-size: 1em;
	}

	.eventdisplay {
		font-size: 12px;
	}

	.equestrianWelcome {
		font-size: 12px;
	}

	.entryNumberTitle {
		font-size: 12px;
	}

	.entrantDisplay {
		font-size: 0.8em;
	}

		.entrantDisplay > .list-group-item {
			padding-top: 9px !important;
		}
}
.mr{
	margin-right:5px !important;
}


.bg-blue-outline {

	border-image: linear-gradient(to bottom right, rgb(13,71,161), rgb(133, 193, 233 )) 1;
}

.DeclaredFeaturedDisplayContainer, .CompletedFeaturedDisplayContainer, .RetiredFeaturedDisplayContainer, .WithdrawnFeaturedDisplayContainer {
	background: rgb(20,15,107);
	background: -moz-linear-gradient(214deg, rgba(20,15,107,1) 0%, rgba(9,9,121,1) 49%, rgba(25,137,159,1) 100%);
	background: -webkit-linear-gradient(214deg, rgba(20,15,107,1) 0%, rgba(9,9,121,1) 49%, rgba(25,137,159,1) 100%);
	background: linear-gradient(214deg, rgba(20,15,107,1) 0%, rgba(9,9,121,1) 49%, rgba(25,137,159,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#140f6b",endColorstr="#19899f",GradientType=1);
}

.InActionFeaturedDisplayContainer {
	background: rgb(0,36,0);
	background: -moz-linear-gradient(218deg, rgba(0,36,0,1) 0%, rgba(17,121,9,1) 51%, rgba(15,161,66,1) 100%);
	background: -webkit-linear-gradient(218deg, rgba(0,36,0,1) 0%, rgba(17,121,9,1) 51%, rgba(15,161,66,1) 100%);
	background: linear-gradient(218deg, rgba(0,36,0,1) 0%, rgba(17,121,9,1) 51%, rgba(15,161,66,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#002400",endColorstr="#0fa142",GradientType=1);
}





span.InAction{
	animation: color-change 1s infinite;
}

@keyframes color-change {
	0% {
		color: white;
	}
	50% {
		color: green;
	}
	100% {
		color: white;
	}
}

.blink_me {
	animation: blinker 2s linear 3;
}

@keyframes blinker {
	50% {
		opacity: 0;
	}
}

.entryListDisplayItem {
	background: rgba(236, 240, 241, .1); /*  10% opaque green */
	padding-top: 7px;
}

.entryListDisplayAlternateItem {
	background: rgba(127, 179, 213, .1); /*  10% opaque green */
	padding-top: 7px;
}

.riderName {
	text-transform: uppercase;
	color: black;
	font-weight: 900;
}


.horseName {
	text-transform: uppercase;
	color: #1F618D;
	font-weight: 900;
}

.entryListDisplay .riderName {
	color: black;
	font-weight: 900;
}

.entryListDisplay .horseName {
	color: #1F618D;
	font-weight: 900;
}

#pageArea {
	color: black;
	font-weight: 900;
	text-transform: uppercase;
	font-size: 2em;
	margin-right: 10px;
}

@media (max-width: 480px) {
	#pageArea {
		font-size: 1em;
		margin-right: 2px;
	}
}

.lightrope {
	text-align: center;
	white-space: nowrap;
	overflow: hidden;
	position: absolute;
	z-index: 1;
	margin: -15px 0 0 0;
	padding: 0;
	pointer-events: none;
	width: 100%;
}

	.lightrope li {
		position: relative;
		-webkit-animation-fill-mode: both;
		animation-fill-mode: both;
		-webkit-animation-iteration-count: infinite;
		animation-iteration-count: infinite;
		list-style: none;
		margin: 0;
		padding: 0;
		display: block;
		width: 12px;
		height: 28px;
		border-radius: 50%;
		margin: 20px;
		display: inline-block;
		background: #00f7a5;
		box-shadow: 0px 4.6666666667px 24px 4px #00f7a5;
		-webkit-animation-name: flash-1;
		animation-name: flash-1;
		-webkit-animation-duration: 3s;
		animation-duration: 3s;
	}

		.lightrope li:nth-child(2n+1) {
			background: aqua;
			box-shadow: 0px 4.6666666667px 24px 4px rgba(0, 255, 255, 0.5);
			-webkit-animation-name: flash-2;
			animation-name: flash-2;
			-webkit-animation-duration: 3.4s;
			animation-duration: 3.4s;
		}

		.lightrope li:nth-child(3n+2) {
			background: orange;
			box-shadow: 0px 4.6666666667px 24px 4px orange;
			-webkit-animation-name: flash-4;
			animation-name: flash-4;
			-webkit-animation-duration: 3.3s;
			animation-duration: 3.3s;
		}

		.lightrope li:nth-child(4n+2) {
			background: #f70094;
			box-shadow: 0px 4.6666666667px 24px 4px #f70094;
			-webkit-animation-name: flash-3;
			animation-name: flash-3;
			-webkit-animation-duration: 3.1s;
			animation-duration: 3.1s;
		}

		.lightrope li:nth-child(odd) {
			-webkit-animation-duration: 3.8s;
			animation-duration: 3.8s;
		}

		.lightrope li:nth-child(3n+1) {
			-webkit-animation-duration: 3.4s;
			animation-duration: 3.4s;
		}

		.lightrope li:nth-child(2n+1) {
			-webkit-animation-duration: 3.2s;
			animation-duration: 3.2s;
		}

		.lightrope li:before {
			content: "";
			position: absolute;
			background: #222;
			width: 10px;
			height: 9.3333333333px;
			border-radius: 3px;
			top: -4.6666666667px;
			left: 1px;
		}

		.lightrope li:after {
			content: "";
			top: -14px;
			left: 9px;
			position: absolute;
			width: 52px;
			height: 18.6666666667px;
			border-bottom: solid #222 2px;
			border-radius: 50%;
		}

		.lightrope li:last-child:after {
			content: none;
		}

		.lightrope li:first-child {
			margin-left: -40px;
		}

@-webkit-keyframes flash-1 {
	0%, 100% {
		background: #00f7a5;
		box-shadow: 0px 4.6666666667px 24px 4px #00f7a5;
	}

	50% {
		background: rgba(0, 247, 165, 0.1);
		box-shadow: 0px 4.6666666667px 24px 4px rgba(0, 247, 165, 0.2);
	}
}

@keyframes flash-1 {
	0%, 100% {
		background: #00f7a5;
		box-shadow: 0px 4.6666666667px 24px 4px #00f7a5;
	}

	50% {
		background: rgba(0, 247, 165, 0.1);
		box-shadow: 0px 4.6666666667px 24px 4px rgba(0, 247, 165, 0.2);
	}
}

@-webkit-keyframes flash-2 {
	0%, 100% {
		background: aqua;
		box-shadow: 0px 4.6666666667px 24px 4px aqua;
	}

	50% {
		background: rgba(0, 255, 255, 0.1);
		box-shadow: 0px 4.6666666667px 24px 4px rgba(0, 255, 255, 0.2);
	}
}

@keyframes flash-2 {
	0%, 100% {
		background: aqua;
		box-shadow: 0px 4.6666666667px 24px 4px aqua;
	}

	50% {
		background: rgba(0, 255, 255, 0.1);
		box-shadow: 0px 4.6666666667px 24px 4px rgba(0, 255, 255, 0.2);
	}
}

@-webkit-keyframes flash-3 {
	0%, 100% {
		background: #f70094;
		box-shadow: 0px 4.6666666667px 24px 4px #f70094;
	}

	50% {
		background: rgba(247, 0, 148, 0.1);
		box-shadow: 0px 4.6666666667px 24px 4px rgba(247, 0, 148, 0.2);
	}
}

@keyframes flash-3 {
	0%, 100% {
		background: #f70094;
		box-shadow: 0px 4.6666666667px 24px 4px #f70094;
	}

	50% {
		background: rgba(247, 0, 148, 0.1);
		box-shadow: 0px 4.6666666667px 24px 4px rgba(247, 0, 148, 0.2);
	}
}

@-webkit-keyframes flash-4 {
	0%, 100% {
		background: orange;
		box-shadow: 0px 4.6666666667px 24px 4px orange;
	}

	50% {
		background: rgba(255, 165, 0, 0.1);
		box-shadow: 0px 4.6666666667px 24px 4px rgba(255, 165, 0, 0.2);
	}
}

@keyframes flash-4 {
	0%, 100% {
		background: orange;
		box-shadow: 0px 4.6666666667px 24px 4px orange;
	}

	50% {
		background: rgba(255, 165, 0, 0.1);
		box-shadow: 0px 4.6666666667px 24px 4px rgba(255, 165, 0, 0.2);
	}
}