* {
	margin: 0;
	padding: 0;
	outline: none;
	-webkit-appearance: none;
	border-radius: 0;
}

body {
	font-family: magistral, sans-serif;
	background: #000;
	color: #fff;
	font-smoothing: antialiased;
	-moz-osx-font-smoothing: antialiased;
	-webkit-font-smoothing: antialiased;
}
div.top {
	width: 100%;
	display: flex;
	justify-content: center;
	position: absolute;
	top: 80px;
	left: 0;
	z-index: 9998;
}
header {
	width: 1488px;
	padding: 40px;
	box-sizing: border-box;
	margin: 0 auto;
	display: flex;
	align-items: center;
}
a.header-logo {
	margin-right: 32px;
}
nav {
	background: #E20714;
	border-radius: 8px;
	display: flex;
	align-items: center;
	box-sizing: border-box;
	height: 80px;
	flex-grow: 1;
	padding: 0 28px;
}
nav ul li {
	display: inline-block;
}
nav ul li a {
	text-decoration: none;
	color: #fff;
	font-weight: 700;
	font-size: 18px;
	letter-spacing: 0.5px;
	padding: 28px;
	transition: ease all .1s;
}
nav ul li a:hover {
	color: #000;
}


.null {
	color: #636363;
}


nav ul li {
	position: relative;
}

nav ul li:hover {
  cursor: pointer;
}

ul li ul.dropdown {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  transition: all 0.5s ease;
  margin-top: 1rem;
  left: 0;
  display: none;
  background: #fff;
  border-radius: 8px;
  width: 200px;
  padding: 8px 0;
}

ul li:hover > ul.dropdown,
ul li ul.dropdown:hover {
  visibility: visible;
  opacity: 1;
  display: block;
}

ul li ul.dropdown li {
  clear: both;
  width: 100%;
}
ul li ul.dropdown li a {
  clear: both;
  width: 100%;
  padding: 8px 16px;
  color: #000;
  display: block;
	transition: ease all .1s;
}
ul li ul.dropdown li a:hover {
  color: #E20714;
  padding-left: 24px;
}
ul li ul.dropdown li a.disabled {
	opacity: 0.5;
	background: none;
}
ul li ul.dropdown li a.disabled:hover {
	color: #000;
	opacity: 0.5;
	padding-left: 16px;
}


section.hero {
	width: 100%;
	display: block;
	background-size: cover;
	background-position: center;
	background-repeat: none;
	background-image: url(img/hero-bg.jpg);
	position: relative;
}
section.hero .hero-gradient {
	width: 100%;
	height: inherit;
	display: flex;
	position: absolute;
	top: 0;
	left: 0;
	padding-top: 120px;
	box-sizing: border-box;
	align-items: center;
	justify-content: center;
	background-image: linear-gradient(180deg, rgba(0,0,0,0.00) 50%, #000000 100%);
}

section.hero.home {
	height: 640px;
}
section.hero.sub {
	height: 328px;
	text-align: center;
}

div.hero-content {
	max-width: 1488px;
	padding: 0 40px;
	box-sizing: border-box;
	margin: 0 auto;
	flex-grow: 1;
}
div.hero-content-title {
	margin-left: 120px;
	position: relative;
}


a.hero-button {
	font-weight: 700;
	font-size: 14px;
	color: #FFFFFF;
	letter-spacing: 1px;
	height: 56px;
	padding: 18px 32px;
	box-sizing: border-box;
	background: rgba(255,255,255,0.10);
	border-radius: 4px;
	display: inline-block;
	text-decoration: none;
	transition: ease all .1s;
}
a.hero-button:hover {
	background: rgba(255,255,255,.2);
}


h1 {
	font-weight: 700;
	font-size: 50px;
	line-height: 48px;
	max-width: 688px;
	margin-bottom: 56px;
	position: relative;
}
section.hero.sub h1 {
	margin-bottom: 0;
	max-width: 100%;
}
span.hero-slogan {
	position: absolute;
	top: -48px;
	left: -24px;
	transform: rotate(-3deg);
	font-family: flood-std, sans-serif;
	font-size: 70px;
	color: #E20714;
	letter-spacing: -6px;
	animation: text-flicker 2s linear infinite;
}
@keyframes text-flicker {
  0% {
    opacity:0.1;
  }
  
  2% {
    opacity:1;
  }
  8% {
    opacity:0.1;
  }
  9% {
    opacity:1;
  }
  12% {
    opacity:0.1;
  }
  20% {
    opacity:1;
  }
  25% {
    opacity:0.3;
  }
  30% {
    opacity:1;
  }
  
  70% {
    opacity:0.7;
  }
  
  72% {
    opacity:0.2;
  }
  
  77% {
    opacity:.9;
  }
  100% {
    opacity:.9;
  }
}


div.page-wrap {
	max-width: 1488px;
	padding: 0 40px;
	box-sizing: border-box;
	margin: 0 auto;
}


section.upcoming {

}

span.section-title {
	font-weight: 700;
	font-size: 20px;
	letter-spacing: 1px;
	line-height: 20px;
	display: inline-block;
	margin: 0 0 16px 16px;
}

div.section-wide {
	width: 100%;
	background: #fff;
	height: 128px;
	border-radius: 8px;
	padding: 0 40px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: space-between;
}


div.partners-logos {
	height: 208px!important;
	justify-content: space-around;
}
div.partners-logos img {
	max-height: 72px;
	max-width: 160px;
}

div.upcoming-wide-details {
	display: flex;
	align-items: center;
}
div.upcoming-wide-details span.date {
	padding: 8px 16px;
	box-sizing: border-box;
	background: #000;
	border-radius: 8px;
	color: #fff;
	font-size: 24px;
	letter-spacing: 0.5px;
	line-height: 24px;
	display: inline-block;
	margin-right: 32px;
}

div.upcoming-wide-details span.title {
	font-weight: 700;
	font-size: 48px;
	letter-spacing: 0.5px;
	line-height: 48px;
	color: #000;
	display: inline-block;
}

div.upcoming-wide-details a.round-details-link {
	text-decoration: none;
	color: #000;
	font-weight: 700;
	font-size: 16px;
	letter-spacing: 1px;
	line-height: 16px;
	margin-left: 24px;
	opacity: .5;
	transition: ease all .1s;
}

div.upcoming-wide-details a.round-details-link:hover {
	opacity: 1;
}
div.upcoming-wide-details a.round-details-link img {
	vertical-align: bottom;
}

div.upcoming-wide-signup {
	display: flex;
	align-items: center;
}

span.upcoming-signup-label {
	font-size: 16px;
	color: #000000;
	letter-spacing: 1px;
	text-align: right;
}

div.upcoming-signup-countdown {
	font-weight: 700;
	font-size: 18px;
	color: #000000;
	letter-spacing: 1.12px;
	text-align: right;
}

div.upcoming-wide-signup-text {
	margin-right: 24px;
	text-align: right;
}

a.upcoming-signup-link {
	background: #E20714;
	border-radius: 4px;
	height: 60px;
	padding: 18px 40px;
	box-sizing: border-box;
	color: #fff;
	text-decoration: none;
	font-weight: 700;
	font-size: 18px;
	letter-spacing: 1px;
	transition: ease all .1s;
}
a.upcoming-signup-link:hover {
	background: #000;
}


table.drivers {
	width: 100%;
}

table.drivers thead tr th {
	font-weight: 400;
	text-align: left;
	font-size: 12px;
	color: #636363;
	letter-spacing: 1px;
	line-height: 18px;
	padding-bottom: 8px;
}
table.drivers thead tr th.pos {
	text-align: right;
}
table.drivers thead tr th.nrstart {
	text-align: right;
	padding-right: 16px;
}

p.reg-annotation {
	font-weight: 400;
	font-size: 12px;
	color: #636363;
	letter-spacing: 1px;
	margin-top: 10px;
}

table.drivers tr {
	border-radius: 8px;
}
table.drivers tr td {
	padding-top: 16px;
	padding-bottom: 16px;
	transition: ease all .1s;
}
table.drivers tr:nth-child(even) td {
	background: #000;
}
table.drivers tr td:first-child{
     border-top-left-radius: 8px;
     border-bottom-left-radius: 8px;
}
table.drivers tr td:last-child{
     border-top-right-radius: 8px;
     border-bottom-right-radius: 8px;
}
table.drivers tr:hover td {
	background: #212121;
}



table.drivers tr td.pos {
	font-weight: 700;
	font-style: italic;
	width: 24px;
	text-align: right;
	padding-left: 16px;
}
table.drivers tr td.nrstart {
	width: 24px;
	text-align: right;
	padding-right: 16px;
	font-size: 18px;
	color: #B9B9B9;
	line-height: 18px;
}

td.indicator {
	width: 34px;
	text-align: center;
	padding: 0 16px;
	box-sizing: border-box;
}

table.drivers tr td.indicator figure {
	background: #fff;
	border-radius: 1px;
	opacity: .15;
	height: 18px;
	width: 2px;
	display: block;
}
table.drivers.results tr:first-child td.indicator figure {
	background: #D4A771;
	opacity: 1;
}
table.drivers tr td.pts {
	width: 48px;
	padding-right: 16px;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 1px;
	line-height: 16px;
}
table.drivers tr td.roundpts:nth-child(odd) {
	color: #fff;
}
table.drivers tr td.roundpts {
	width: 48px;
	padding-right: 48px;
	font-size: 16px;
	letter-spacing: 1px;
	line-height: 16px;
	color: #9D9D9D;
}
table.drivers tr td.roundpts.empty {
	color: rgba(255,255,255,.1)!important;
}



span.driver-lastname {
	font-weight: 700;
	font-size: 16px;
	/*color: #FFFFFF;*/
	letter-spacing: 1px;
	line-height: 18px;
	text-transform: uppercase;
	margin-right: 6px;
}

td.driver {
	font-size: 16px;
	color: #FFFFFF;
	letter-spacing: 1px;
	line-height: 18px;
}

span.driver-team {
	font-size: 12px;
	color: #636363;
	letter-spacing: 1px;
	line-height: 18px;
	margin-left: 16px;
}




div.content-box.light table.drivers tr td {
	color: #000!important;
}
div.content-box.light table.drivers tr:hover td {
	background: #ddd!important;
}
div.content-box.light table.drivers tr:nth-child(even) td {
	background: #eee;
}
div.content-box.light table.drivers tr td.indicator figure {
	background: #000;
}
div.content-box.light table.drivers.results tr:first-child td.indicator figure {
	background: #D4A771;
}


.content-row {
	display: flex;
	margin-top: 32px;
}
.content-column {
	flex: 50%;
	box-sizing: border-box;
}
.content-column.left {
	padding-right: 16px;
}
.content-column.right {
	padding-left: 16px;
}



.wide-row {
	display: block;
	margin: 32px 0;
	overflow: auto;
}


.home-links {
	display: flex;
	justify-content: space-between;
	margin: 32px 0;
}
.home-links a {
	width: 100%;
	height: 240px;
	background: #0B0B0B;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	text-align: center;
	border-radius: 8px;
	transition: ease all .1s;
}
.home-links a p {
	font-weight: bold;
	font-size: 40px;
	color: #FFFFFF;
	letter-spacing: 0.5px;
	line-height: 40px;
	margin-top: 20px;
}
.home-links a figure {
	background-image: linear-gradient(270deg, #E20714 0%, rgba(226,7,20,0.00) 100%);
	border-radius: 2px;
	display: block;
	height: 4px;
	width: 0%;
	opacity: 0;
	margin-top: 8px;
	transition: ease all .2s;
}
.home-links a:hover {
	background: #212121;
}
.home-links a:hover figure {
	width: 100%;
	opacity: 1;
}
.home-links a.news {
	margin-right: 16px;
}
.home-links a.gallery {
	margin-left: 16px;
}
a.content-button.bottom {
	margin-top: 32px;
}


.social-links {
	display: flex;
	justify-content: space-between;
}
.social-links a {
	width: 100%;
	height: 128px;
	background: #0B0B0B;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	transition: ease all .1s;
}
.social-links a.middle {
	margin: 0 32px;
}

.social-links a.fb:hover {
	background: #3B5998;
}
.social-links a.insta:hover {
	background: #E1306C;
}
.social-links a.yt:hover {
	background: #FF0000;
}

.content-box {
	padding: 24px;
	width: 100%;
	border-radius: 8px;
	box-sizing: border-box;
	margin-bottom: 32px;
}
.content-box.dark {
	background: #0B0B0B;
}
.content-box.light {
	background: #FFF;
	color: #000;
}
.content-box-header h2 {
	color: #000;
}

.content-box.roundcounter {
	border: 1px solid #E20714;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 24px 40px;
	background: none;
	background-image: linear-gradient(90deg, rgba(226,7,20,0.00) 0%, rgba(226,7,20,0.20) 100%);
}
.content-box.roundcounter span.title {
	font-size: 18px;
	color: #909090;
	letter-spacing: 0.5px;
	font-weight: 700;
}
.content-box.roundcounter div.counter-wrap {

}
.content-box.roundcounter div.counter-wrap-time {
	text-align: center;
	margin-left: 32px;
	display: inline-block;
}
.content-box.roundcounter div.counter-wrap-time p {
	font-weight: 700;
	font-size: 48px;
	color: #FFFFFF;
	letter-spacing: 0.5px;
	line-height: 48px;
}
.content-box.roundcounter div.counter-wrap-time span {
	font-weight: 700;
	font-size: 18px;
	color: #808080;
	letter-spacing: 1px;
	line-height: 18px;
}


.content-box-header {
	padding: 8px 16px 32px 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 24px
}
.content-box-header h2 {
	font-weight: 700;
	font-size: 32px;
	letter-spacing: 0.5px;
}
.content-box-header span {
	font-size: 20px;
	letter-spacing: 0.5px;
	text-align: right;
	color: #636363;
}


.content-box.dark .content-box-header {
	border-bottom: 1px solid rgba(255,255,255,.15);
}
.content-box.dark .content-box-header h2 {
	color: #fff;
}

.content-box.light .content-box-header {
	border-bottom: 1px solid rgba(0,0,0,.15);
}
.content-box.light .content-box-header h2 {
	color: #000;
}

.content-box-inside {
	display: block;
}
.content-box-inside.center {
	text-align: center;
}
.content-box-inside p {
	font-size: 16px;
	line-height: 1.8;
	padding: 0 16px;
	margin-bottom: 16px;
}
.content-box-inside a {
	color: #E20714;
	font-weight: 700;
}
.content-box-inside a:hover {
	color: #000
}
.content-box.dark .content-box-inside a:hover {
	color: #fff;
}
a.content-button {
	border-radius: 4px;
	width: 100%;
	height: 60px;
	padding: 18px 0;
	text-align: center;
	display: block;
	box-sizing: border-box;
	text-decoration: none;
	font-weight: 700;
	font-size: 18px;
	letter-spacing: 1px;
	transition: ease all .1s;
}

a.content-button.red {
	background: #E20714;
	color: #fff;
}
a.content-button.red:hover {
	background: #000;
}

a.content-button.black {
	background: #212121;
	color: #fff;
}
a.content-button.black:hover {
	background: #000;
}

a.disabled {
	background: #E6E6E6;
	color: #fff;
}
a.disabled:hover {
	background: #E6E6E6;
	color: #fff;
}

.content-box.dark a.content-button.disabled {
	background: #212121;
	color: #0B0B0B;
}


div.track-image {
	width: 100%;
	padding: 16px;
	box-sizing: border-box;
	background-image: linear-gradient(206deg, #FFFFFF 5%, #F3F3F3 100%);
	border-radius: 8px;
}
div.track-image img {
	width: 100%;
	height: auto;
}
div.round-info {
	display: block;
	padding: 8px;
	margin-bottom: 24px;
}
div.round-info span {
	vertical-align: middle;
}
div.round-info span.date {
	font-size: 24px;
	color: #FFFFFF;
	letter-spacing: 0.5px;
	padding: 8px 16px;
	background: #000000;
	border-radius: 8px;
	display: inline-block;
	line-height: 24px;
}
div.round-info span.round {
	display: inline;
	font-weight: 700;
	font-size: 48px;
	color: #000000;
	letter-spacing: 0.5px;
	line-height: 48px;
	margin-left: 24px;
}

table.timetable {
	/*margin-top: 16px;*/
}
table.timetable td.timetable-date {
	padding: 16px;
	border-radius: 8px 0 0 8px;
	transition: ease all .1s;
}
table.timetable td.timetable-date span {
	background: #F3F3F3;
	border-radius: 8px;
	width: 80px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
}
table.timetable td.timetable-description {
	width: 100%;
	border-radius: 0 8px 8px 0;
	transition: ease all .1s;
}
table.timetable td.timetable-description p.hours {
	font-size: 16px;
	color: #000000;
	letter-spacing: 1px;
	line-height: 18px;
}
table.timetable td.timetable-description p.text {
	font-weight: 700;
	font-size: 16px;
	color: #000000;
	letter-spacing: 1px;
	line-height: 18px;
	text-transform: uppercase;
}
table.timetable div.divider {
	width: 100%;
	height: 1px;
	display: block;
	background: rgba(0,0,0,0.15);
	margin: 16px 0;
}
table.timetable tr:hover td.timetable-description,
table.timetable tr:hover td.timetable-date {
	background: #F3F3F3;
}
table.timetable tr:hover td.timetable-date span {
	background: #fff;
}



a.store-banner {
	border-radius: 8px;
	padding: 40px 32px;
	background: #E20714;
	display: block;
	width: 100%;
	box-sizing: border-box;
	color: #fff;
	text-decoration: none;
	height: 240px;
	background-image: url(img/prxrx-store-banner.png);
	background-position: center left;
	background-repeat: no-repeat;
	background-size: cover;
	transition: ease all .1s;

}
a.store-banner:hover {
	transform: scale(1.02);

}




a.button-small {
	background: rgba(255,255,255,0.10);
	border-radius: 4px;
	font-weight: 600;
	font-size: 14px;
	color: #FFFFFF;
	letter-spacing: 1px;
	text-decoration:  none;
	margin-top: 24px;
	display: inline-block;
	height: 40px;
	padding: 11px 32px;
	box-sizing: border-box;
	transition: ease all .1s;
}
a.button-small:hover {
	background: rgba(255,255,255,.2);
}

a.button-small.red {
	background: #E20714!important;
}
a.button-small.red:hover {
	background: #000!important;
}







.load {
	animation: load 2s infinite;
}
@keyframes load {
	0% {opacity: 1}
	50% {opacity: .5}
	100% {opacity: 1}
}
#loader-wrapper {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000;
  display: none;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.js .load, .js #loader-wrapper {
  display: flex;
}









form.signup {

}
form.signup input[type="text"],form.signup input[type="email"],form.signup input[type="tel"],form.signup input[type="number"] {
	width: 100%;
	font-family: magistral, sans-serif;
	background: transparent;
	box-sizing: border-box;
	height: 48px;
	display: block;
	color: #fff;
	font-size: 14px;
	border: 1px solid rgba(255,255,255,.1);
	border-radius: 8px;
	margin-bottom: 16px;
	padding: 0 16px;
	transition: ease all .1s;
}

form.signup span.input-label {
	display: block;
	margin: 8px;
	font-size: 14px;
}


div.status {
	z-index: 99999;
	position: fixed;
	bottom: 24px;
	left: 50%;
	margin-left: -200px;
	width: 400px;
	height: 48px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	opacity: 0;
	animation: 'status' ease 10s 1s forwards;
}
@keyframes status {
	0% {opacity:0;bottom:24px;}
	10% {opacity:1;bottom:32px;}
	90% {opacity:1;bottom:32px;}
	100% {opacity:0;bottom:24px;}
}
div.status.success {
	background: #1AAD56;
	color: #fff;
}
div.status.error {
	background: #E20714;
	color: #fff;
}


form div.form-row {
	display: flex;
	width: 100%;
}

form.signup label.textinput {
	width: 100%;
}

form.signup label.textinput:first-child {
	margin-right: 8px;
}
form.signup label.textinput:last-child {
	margin-left: 8px;
}

form p.form-text {
	font-size: 13px;
	margin-top: 32px;
	line-height: 1.8;
}
form p.form-text span {
	font-weight: 700;
	display: inline-block;
	background: #636363;
	padding: 0 6px;
	border-radius: 2px;
	margin-right: 2px;
}
form.signup input::placeholder {
	color: #636363;
}


form.signup input.typein:focus,
form.signup input.typein:hover {
	border: 1px solid rgba(255,255,255,1);
	outline: none;
}

form.signup div.radio-wrapper {
	width: 100%;
}

form.signup div.form-row.wborder {
	border-top: 1px solid rgba(255,255,255,.1);
	padding-top: 32px;
	margin-top: 16px;
}

form.signup div.radio-wrapper label {
	width: 100px;
	box-sizing: border-box;
	height: 40px;
	background: transparent;
	display: flex;
	align-items: center;
	color: #fff;
	font-size: 14px;
	border: 1px solid rgba(255,255,255,.1);
	border-radius: 8px;
	transition: ease all .1s;
	padding: 0 16px;
}

form.signup div.radio-wrapper label:hover {
	border: 1px solid rgba(255,255,255,1);
	outline: none;
	cursor: pointer;
}

/*form.signup div.radio-wrapper label:first-child {
	margin-right: 8px;	
}
form.signup div.radio-wrapper label:last-child {
	margin-left: 8px;
}*/

form.signup div.radio-wrapper label span.radio-label {
	margin-left: 8px;
}

div.content-box.alone:nth-child(even) {
	margin-left: 32px;

}

/* Hide the browser's default radio button */
label.radiobut input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
/* Create a custom radio button */
.checkmark {
	box-sizing: border-box;
	height: 12px;
	width: 12px;
	border-radius: 50%;
	display: inline-block;
	border: 2px solid rgba(255,255,255,.1);
	transition: ease all .1s;
}
/* When the radio button is checked, add a blue background */
label.radiobut input:checked ~ .checkmark {
	border: 4px solid rgba(255,255,255,1);
}
form.signup input.send {
	width: 100%;
	height: 40px;
	display: block;
	align-self: flex-end;
	margin-top: 30px;
	border: none;
	font-family: 'magistral', sans-serif;
	font-weight: 700;
	font-size: 14px;
	color: #FFFFFF;
	box-sizing: border-box;
	background: red;
	border-radius: 8px;
	transition: ease all .1s;
}
form.signup input.send:hover {
	cursor: pointer;
	color: #000;
}
label.radiobut {
	margin-left: 16px;
}


.email2 {display: none;visibility: hidden;opacity: 0;}


footer {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 120px;
	border-top: 1px solid rgba(255,255,255,.15);
	margin-top: 64px;
}
footer img.footer-logo {
	height: 24px;
	width: auto;
}
footer span.footer-copyright {
	font-size: 12px;
	color: #636363;
	letter-spacing: 1px;
	line-height: 18px;
}
footer ul.footer-social {
	list-style: none;
}
footer ul.footer-social li {
	display: inline-block;
	margin-left: 16px;
	vertical-align: middle;
}
footer ul.footer-social li a {
	width: 40px;
	height: 40px;
	background: #000;
	border-radius: 4px;
	transition: ease all .1s;
	display: flex;
	align-items: center;
	justify-content: center;
}
footer ul.footer-social li a:hover {
	background: #212121;
}

footer ul.footer-social li a img {
	width: 24px;
	height: auto;
	opacity: .5;
	transition: ease all .1s;
}
footer ul.footer-social li a:hover img {
	opacity: 1;
}




div.terms {
	padding: 0 16px;
}

div.terms h3 {
	font-style: italic;
	font-size: 20px;
	margin-bottom: 12px;
}

ol.terms {
	margin-bottom: 32px;
	/*padding-left: 25px;*/
}
ol.terms li {
	font-size: 14px;
	letter-spacing: 0.5px;
	line-height: 1.5;
	color: #5E5E5E;
	margin-bottom: 12px;
}
ol {
	margin-top: 10px;
	counter-reset: section;
	list-style-type: none;
}

ol li:before {
	font-weight: 500;
	font-style: italic;
	padding: auto!important;
	counter-increment: section;
	content: counters(section, ".") ". ";
}



/* Second Level */
ol ol{
	margin-left:12px;
}

/* Third Level */
ol ol ol{
	margin-left:24px;
}

.termsUpdate {
	font-size: 12px;
	color: #5E5E5E;
}




div.partners-logos a {
	padding: 16px;
}

div.partners-logos svg g {
	fill: #212121!important;
}
div.partners-logos a:hover svg g {
	fill: #E20714!important;
}


div.article {
	padding: 16px;
	margin-bottom: 24px;
}
div.article p {
	padding: 0!important;
}
div.article img.logo {
	max-width: 120px;
	max-height: 60px;
}
div.article h3 {
	padding: 8px 0;
}
div.videothumb {
	width: 100%;
	text-align: center;
	padding: 8px 0;
}
div.videothumb img {
	max-width: 300px
}
div.article.center {
	text-align: center;
}

a.vid-thumb {
	display: inline-block;
	max-width: 336px;
	transition: ease all .2s;
	margin-top: 16px;
}

a.vid-thumb:hover {
	transform: scale(1.03);
}

/* responsive */

@media only screen and (max-width: 1365px) {

	.content-row {
		flex-direction: column;
		align-items: center;
	}
	.content-column {
		flex: 100%;
		max-width: 800px;
	}
	.content-column.left {
		padding: 0;
	}
	.content-column.right {
		padding: 0;
	}

}





div.shortrules {
	text-align: center;
}






* {
	padding: 0;
	margin: 0;
}


p.copyright {
	font-size: 11px;
	display: block;
	text-align: center;
	color: #888;
	width: 100%;
	margin-top: 24px;
}
p.copyright a {
	color: #888!important;
}


table.raceResults {
	width: 100%;
	background: transparent;
	margin: 80px 0;
}

table.raceResults a {
	text-decoration: none;
	color: #fff;
	transition: ease all .1s;
}
table.raceResults a:hover {
	opacity: .5;
}

table.raceResults thead tr th {
	font-weight: 400;
	text-align: left;
	font-size: 12px;
	color: #636363;
	letter-spacing: 1px;
	line-height: 18px;
	padding-bottom: 8px;
	background: transparent;
	border: none;
}


table.raceResults tr th:first-child{
	width: 32px;
	text-align: right;
	padding-left: 16px;
	padding-right: 24px;
}
table.raceResults tr {
	border-radius: 8px;
}
table.raceResults tr td {
	padding-top: 16px;
	padding-bottom: 16px;
	transition: ease all .1s;
}
table.raceResults tr:nth-child(odd) td {
	background: #000!important;
}
table.raceResults tr td:first-child{
	border-top-left-radius: 8px;
	border-bottom-left-radius: 8px;
	font-weight: 700;
	font-style: italic;
	width: 32px;
	text-align: right;
	padding-left: 16px;
	padding-right: 24px;
}
table.raceResults tr td:last-child{
     border-top-right-radius: 8px;
     border-bottom-right-radius: 8px;
}
table.raceResults tr:hover td {
	background: #212121!important;
}
/*table.raceResults tr td:nth-child(2) {
	text-align: right;
	padding-right: 16px;
	color: #B9B9B9;
	width: 24px;
}*/


table.raceResults img {
	vertical-align: -1px;
	margin-right: 3px;
}

table.raceResults td.flag {
	text-align: center;
}

table.raceResults tr td.nrstart {
	width: 24px;
	text-align: right;
	padding-right: 16px;
	color: #777777;
	line-height: 18px;
}


div#tracks a {
	color: #fff;
	text-decoration: none;
}

div#tracks div.tracks__individualsGallery__item__splash img.pic {
	width: 80px;
	height: 80px;
	object-fit: cover;
}

div#tracks div.tracks__individualsGallery {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
div#tracks a.tracks__individualsGallery__item {
	display: flex;
	align-items: center;
	padding: 24px;
	height: 128px;
    width: -webkit-calc(50% - 16px);
    width: calc(50% - 16px);
	box-sizing: border-box;
	border-radius: 8px;
	margin: 16px 0;
	/*border: 1px solid rgba(255,255,255,.15);*/
	background: #000;
	transition: ease all .2s;
}

div.tracks__individualsGallery__item__splash {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	overflow: hidden;
	display: inline-block;
	margin-right: 24px;
}

p.tracks__individualsGallery__item__desc__flagnum span.individualnumber {
	padding-left: 8px;
}


p.tracks__individualsGallery__item__desc__flagnum {
	font-size: 18px;
	color: #B9B9B9;
	line-height: 18px;
}

p.tracks__individualsGallery__item__desc__name {
	font-size: 20px;
	color: #FFFFFF;
	letter-spacing: 1px;
	line-height: 20px;
	margin: 8px 0 6px;
}
p.tracks__individualsGallery__item__desc__name span.lastname {
	color: #FFFFFF;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-weight: 600;
}

p.tracks__individualsGallery__item__desc__teamname {
	font-size: 14px;
	color: #636363;
	letter-spacing: 1px;
}


span.lastnamemark {
	font-weight: 700;
	color: #FFFFFF;
	letter-spacing: 1px;
	text-transform: uppercase;
}


table.projectoRounds {
	
}

div.icalbutton {
	width: 0;
	height: 0;
	display: none;
	visibility: hidden;
}

div.projectRounds {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

div.projectRounds-round {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 184px;
    width: -webkit-calc(50% - 16px);
    width: calc(50% - 16px);
	box-sizing: border-box;
	border-radius: 8px;
	margin: 16px 0;
	background: #000;
	padding: 40px;
}
div.projectRounds-round h2 {
	font-size: 32px;
	letter-spacing: 0.5px;
}
p.projectRounds-round-desc-status {
	font-size: 12px;
	letter-spacing: 0.5px;
	line-height: 16px;
	border-radius: 4px;
	display: inline-block;
	padding: 4px 16px;
	margin-bottom: 8px;
}
p.projectRounds-round-desc-status.grey {
	background: #2B2B2B;
	color: #B9B9B9;
}
p.projectRounds-round-desc-status.red {
	background: #E20714;
	color: #fff;
}
p.projectRounds-round-desc-date {
	font-size: 16px;
	color: #B9B9B9;
	letter-spacing: 0.5px;
	line-height: 24px;
}


div.projectRounds-round a.scoreButton {
	height: 56px!important;
	padding: 16px 32px;
	line-height: 24px;
	display: inline-block!important;
	width: auto!important;
	border-radius: 4px;
	font-weight: 700;
	text-decoration: none;
	box-sizing: border-box;
	transition: ease all .1s;
	letter-spacing: 1px;
}
div.projectRounds-round a.scoreButton.red {
	background: #E20714;
	color: #fff;
}
div.projectRounds-round a.scoreButton.red:hover {
	background: #B7000B;
}
div.projectRounds-round a.scoreButton.ghost {
	color: #2B2B2B!important;
	border: 1px solid #2B2B2B;
}

td span.empty {
	color: #333;
}

.content-box p.eventtitle {
	font-weight: 700;
	font-size: 24px;
	letter-spacing: 0.5px;
	margin: 24px 0 16px;
}
p.divisiontitle {
	border-radius: 4px;
	background: #222;
	color: #fff;
	padding: 10px 16px;
	font-weight: 600;
	font-size: 14px;
	margin: 24px 0 16px;
}


td.emptytable {
	font-weight: 400;
	text-align: center;
	font-size: 12px;
	color: #636363;
	letter-spacing: 1px;
	line-height: 18px;
}

/**/


/* Style the tab */
.tab {
  overflow: auto;
  white-space: nowrap;
  display: flex;
  justify-content:center;
}

/*.tab button {
	border: none;
	outline: none;
	cursor: pointer;
	border-bottom: 1px solid #222;
	background: transparent;
	font-weight: bold;
	font-size: 14px;
	color: #636363;
	line-height: 18px;
	padding: 16px 0;
	width: 100%;
	text-align: center;
}
.tab button:hover {
	border-bottom: 1px solid #fff;
}
.tab button.active {
	border-bottom: 1px solid #fff;
	color: #fff;
}*/


.tab button {
	border: none;
	outline: none;
	cursor: pointer;
	background: transparent;
	font-weight: bold;
	font-size: 14px;
	color: #636363;
	line-height: 18px;
	padding: 8px 0;
	width: 100%;
	text-align: center;
	border-radius: 4px;
	transition: ease 0.2s;
	margin: 0 4px;
}

.tab button:hover {
	background: #222;
}

.tab button.active {
	background: #fff;
	color: #000;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  /*animation: fadeEffect 1s;*/
}

/* Go from zero to full opacity */
@keyframes fadeEffect {
  from {opacity: 0;}
  to {opacity: 1;}
}

section.message {
	max-width: 700px;
	padding: 32px;
	margin: 120px auto;
	box-sizing: border-box;
	text-align: center!important;
}
div.messageHeader {
	margin-bottom: 60px;
}
div.messageButtons a {
	display: inline-block;
	margin: 16px 0;
}
div.messageContent h1 {
	margin: 16px 0;
}
div.messageContent p {
	margin: 8px 0;
	color: #AAA; 
}

div.stickytop {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 80px;
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	background: #fff;
	color: #000;
	padding: 0 40px;
	z-index: 9999999;
	box-sizing: border-box;
}

div.stickytop a {
	margin: 0!important;
}



