/* variables */
:root {
	--main-primary-color:			#06648A; /* Primary color */
	--main-primary-color-dark:		#003246; /* Darkest variant of primary color (except black) */
	--main-primary-color-medium:	#034E6B; /* Medium variant of primary color */
	--grey-light-variant:			#C5C5C6;
	--grey-medium-variant:			#777777;
	--grey-dark-variant:			#555555;
	--grey-darkest-variant:			#363638;
	--contrast-light-color:			#FFFFFF;
	--contrast-medium-color:		#EEEEEE;
	--contrast-dark-color:			#000000;
	--table-header-color:			#003246;
	--table-footer-color:			#003246;
	--table-even-color:				#FFFFFF;
	--table-odd-color:				#E8F8FF;
}

/* reset */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,dl,dt,dd,ol,nav ul,nav li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline;}
article, aside, details, figcaption, figure,footer, header, hgroup, menu, nav, section {display: block;}
ol,ul{list-style:none;margin:0px;padding:0px;}
blockquote,q{quotes:none;}
blockquote:before,blockquote:after,q:before,q:after{content:'';content:none;}
table{border-collapse:collapse;border-spacing:0;}
/* start editing from here */
a{text-decoration:none;}
.txt-rt{text-align:right;}/* text align right */
.txt-lt{text-align:left;}/* text align left */
.txt-center{text-align:center;}/* text align center */
.float-rt{float:right;}/* float right */
.float-lt{float:left;}/* float left */
.clear{clear:both;}/* clear float */
.pos-relative{position:relative;}/* Position Relative */
.pos-absolute{position:absolute;}/* Position Absolute */
.vertical-base{	vertical-align:baseline;}/* vertical align baseline */
.vertical-top{	vertical-align:top;}/* vertical align top */
nav.vertical ul li{	display:block;}/* vertical menu */
nav.horizontal ul li{	display: inline-block;}/* horizontal menu */
img{max-width:100%;}
@font-face {
	font-family: 'DIN Pro';
	font-style: normal;
	font-weight: normal;
	src: local('DIN Pro'), url('../fonts/DINPro.woff') format('woff');
}
/*end reset*/
html {
	height: 100%;
}
body{
	background:#F1F0EE;
	height: 100%;
}

/* BUTTONS */
strong {
  font-weight: bold;
}
/* DISABLE ARROWS ON NUMBER INPUT FIELDS */
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance:textfield;
}

/* KEYFRAMES */
@keyframes fading{0%{opacity:0}25%{opacity:1}75%{opacity:1}100%{opacity:0}}
@keyframes fadingRow{
  0%{opacity:1}
  50%{opacity:0.6}
  100%{opacity:1}
}
@keyframes fadeOut{
  0%{opacity:1}
  50%{opacity:0.6}
  99%{opacity: 0}
  100%{opacity:0}
}
@keyframes pulseGreen {
  0% {transform: scale(1); color: var(--main-primary-color-dark); }
  25% {transform: scale(1.05); color: var(--main-primary-color-medium); }
  50% {transform: scale(1.1); color: var(--main-primary-color); }
  75% {transform: scale(1.05); color: var(--main-primary-color-medium); }
  100% {transform: scale(1); color: var(--main-primary-color-dark); }
}
.pulseGreen {
  animation-name: pulseGreen;
  animation-duration: 2.5s;
  animation-iteration-count: infinite;
}
#IEdetect {
	animation-name: fading;
	animation-duration: 4s;
	animation-iteration-count: infinite;
}
#IEdetect:hover{
  animation-play-state: paused; /* Pause scroll on mouse hover */
}
.IEanchor {
	text-decoration: underline dotted;
}
.IEanchor:hover {
	text-decoration: none;
}
@keyframes pulseRed {
  0% {transform: scale(1); color: #280009; }
  25% {transform: scale(1.05); color: #520012; }
  50% {transform: scale(1.1); color: #72051C; }
  75% {transform: scale(1.05); color: #520012; }
  100% {transform: scale(1); color: #280009; }
}
.pulseRed {
  animation-name: pulseRed;
  animation-duration: 2.5s;
  animation-iteration-count: infinite;
}

.sliderContainer {
	height: 500px;
	text-align: center;
	background: url(../images/countdown_393939.png);
}

.sliderContainer a {
	color: #3D8CAA;
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
	transition: 0.5s ease;
	-o-transition: 0.5s ease;
	-webkit-transition: 0.5s ease;
}
.sliderContainer a:hover {
	color: #1D7A9E;
}
.sliderContainerFading {
	animation: fading 10s;
}

.countdown {
	font-family: Aldrich;
	margin: 0px;
	padding: 0px;
}
.countdownInfo {
	font-family: Roboto;
	font-size: 5em;
	font-weight: bold;
	color: transparent;
	background-image: url(../images/metallic_glitter_gold_textual.jpg);
	background-clip: text;
	-webkit-background-clip: text;
	text-align: center;
	font-variant: small-caps;
}
.homeTitle {
	font-family: Roboto;
	font-size: 5em;
	font-weight: bold;
	text-transform: uppercase;
	text-align: center;
}
.goldMedal {
	color: transparent;
	background-image: url(../images/metallic_glitter_gold_large.jpg);
	background-size: cover;
	background-clip: text;
	-webkit-background-clip: text;
}
.silverMedal {
	color: transparent;
	background-image: url(../images/metallic_glitter_silver_large.jpg);
	background-size: cover;
	background-clip: text;
	-webkit-background-clip: text;
}
.bronzeMedal {
	color: transparent;
	background-image: url(../images/metallic_glitter_bronze_large.jpg);
	background-size: cover;
	background-clip: text;
	-webkit-background-clip: text;
}
/* IE 10+ specific CSS */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
	.goldMedal {
		color: #D4AF37;
		background-image: none;
	}
	.silverMedal {
		color: #BFC1C2;
		background-image: none;
	}
	.bronzeMedal {
		color: #CD7F32;
		background-image: none;
	}
	.countdownInfo {
		color: #D4AF37;
		background-image: none;
	}
}
.neutral {
	color: #3D8CAA;
}
.homeDate {
	font-family: Roboto;
	font-size: 0.875em;
	color: #1D7A9E;
}
.homeInfo {
	font-family: Roboto;
	font-size: 1em;
	color: var(--grey-light-variant);
	vertical-align: middle;
	text-align: center;
}
.wcInfo {
	font-family: Roboto;
	font-size: 3em;
	color: var(--grey-light-variant);
	vertical-align: middle;
	text-align: center;
}
.homePoints {
	font-family: Roboto;
	font-size: 2em;
	vertical-align: middle;
	text-align: center;
}
.homePoints p {
	font-size: 0.4em;
	font-weight: bold;
	color: var(--grey-light-variant);
}
.homePoints p a {
	transition: 1.5s ease;
	-o-transition: 1.5s ease;
	-webkit-transition: 1.5s ease;
}

.digit {
	display: inline-block;
	font-size: 9.5em;
	color: transparent;
	background-image: url(../images/metallic_glitter_gold.jpg);
	background-size: cover;
	background-clip: text;
	-webkit-background-clip: text;
	text-align: right;
	margin-top: -0.18em;
	margin-right: 0.05em;
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
}

.digitYear {
	width: 6%;
}

.digit2 {
	width: 12%;
}

.digitInfo {
	display: inline-block;
	font-family: Roboto;
	color: transparent;
	background-image: url(../images/metallic_glitter_gold.jpg);
	background-size: cover;
	background-clip: text;
	-webkit-background-clip: text;
	font-size: 0.875em;
	font-weight: bold;
	-ms-writing-mode: tb-rl; 
	-webkit-writing-mode: vertical-rl;
	-moz-writing-mode: vertical-rl;
	-ms-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
	vertical-align: top;
	text-align: justify;
	text-transform: uppercase;
	letter-spacing: 0.475em;
}
.progressInfoCont {
	display: inline-block;
	vertical-align: top;
	background: #839BA4;
	height: 10em;
}
.progressInfo {
	display: inline-block;
	background-image: url(../images/metallic_glitter_gold.jpg);
	float: left;
	width: 4px;
}

.button {
	background-color: #107DB0;
	background-image: linear-gradient(to bottom, #107DB0, #06648A);
	text-transform: uppercase;
	border: 1px solid #034F6B;
	box-shadow: inset 0 1px 0 #378FB7, inset 0 -1px 0 #005184, inset 0 0 0 1px #14729E, 0 2px 4px rgba(0, 0, 0, 0.2);
	color: #003246;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
	border-radius: 3px;
	cursor: pointer;
	display: inline-block;
	font-family: Roboto, sans-serif;
	font-size: 0.875em;
	font-weight: 400;
	line-height: 20px;
	padding: 9px 16px 9px;
	margin: 0 5px 0 0;
	transition: all 20ms ease-out;
	vertical-align: middle;
	-webkit-transition: all 0.1s ease-out;
	-moz-transition: all 0.1s ease-out;
	-ms-transition: all 0.1s ease-out;
	-o-transition: all 0.1s ease-out;
	transition: all 0.1s ease-out;
}
.button-small {
	font-size: 0.5em;
	font-weight: 400;
	line-height: 17px;
	padding: 3px 7px 3px;
	margin: 0 2px 0 0;
}
.button:hover, .button:focus {
	background: #06648A;
	border-color: #003246;
	box-shadow: inset 0 1px 0 #378FB7, inset 0 -1px 0 #005184, inset 0 0 0 1px #14729E;
	-webkit-transition: all 0.1s ease-out;
	-moz-transition: all 0.1s ease-out;
	-ms-transition: all 0.1s ease-out;
	-o-transition: all 0.1s ease-out;
	transition: all 0.1s ease-out;
}
.button:active {
  background: #06648A;
  box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.2);
}
.button .fa {
  color: #034F6B;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
}

.button-silver {
  background-color: #f2f2f2;
  background-image: linear-gradient(to bottom, #f2f2f2, #f2f2f2);
  border: 1px solid #bfbfbf;
  box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #d9d9d9, inset 0 0 0 1px #f2f2f2, 0 2px 4px rgba(0, 0, 0, 0.2);
  color: #8c8c8c !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.button-silver:hover, .button-silver:focus {
  background: #f2f2f2;
  border-color: #8c8c8c;
  box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #d9d9d9, inset 0 0 0 1px #f2f2f2;
}
.button-silver:active {
  background: #f2f2f2;
  box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.2);
}
.button-silver .fa {
  color: #bfbfbf;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
}


.button-blue {
  background-color: #42b0e3;
  background-image: linear-gradient(to bottom, #42b0e3, #2ba9e3);
  border: 1px solid #107db0;
  box-shadow: inset 0 1px 0 #7cd4fc, inset 0 -1px 0 #2696c9, inset 0 0 0 1px #59b7e3, 0 2px 4px rgba(0, 0, 0, 0.2);
  color: #004c6f !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.button-blue:hover, .button-blue:focus {
  background: #2ba9e3;
  border-color: #004c6f;
  box-shadow: inset 0 1px 0 #7cd4fc, inset 0 -1px 0 #2696c9, inset 0 0 0 1px #59b7e3;
}
.button-blue:active {
  background: #2ba9e3;
  box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.2);
}
.button-blue .fa {
  color: #107db0;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
}

.button-darkblue {
  background-color: #107DB0;
  background-image: linear-gradient(to bottom, #107DB0, #06648A);
  border: 1px solid #034F6B;
  box-shadow: inset 0 1px 0 #378FB7, inset 0 -1px 0 #005184, inset 0 0 0 1px #14729E, 0 2px 4px rgba(0, 0, 0, 0.2);
  color: #003246 !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.button-darkblue:hover, .button-darkblue:focus {
  background: #06648A;
  border-color: #003246;
  box-shadow: inset 0 1px 0 #378FB7, inset 0 -1px 0 #005184, inset 0 0 0 1px #14729E;
}
.button-darkblue:active {
  background: #06648A;
  box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.2);
}
.button-darkblue .fa {
  color: #034F6B;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
}

.button-green {
  background-color: #97cc76;
  background-image: linear-gradient(to bottom, #97cc76, #8bcc62);
  border: 1px solid #5f993a;
  box-shadow: inset 0 1px 0 #c6e6b3, inset 0 -1px 0 #79b356, inset 0 0 0 1px #a4cc8b, 0 2px 4px rgba(0, 0, 0, 0.2);
  color: #326612 !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.button-green:hover, .button-green:focus {
  background: #8bcc62;
  border-color: #326612;
  box-shadow: inset 0 1px 0 #c6e6b3, inset 0 -1px 0 #79b356, inset 0 0 0 1px #a4cc8b;
}
.button-green:active {
  background: #8bcc62;
  box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.2);
}
.button-green .fa {
  color: #5f993a;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
}

.button-purple {
  background-color: #847bba;
  background-image: linear-gradient(to bottom, #847bba, #7568ba);
  border: 1px solid #493e87;
  box-shadow: inset 0 1px 0 #bab6d4, inset 0 -1px 0 #655aa1, inset 0 0 0 1px #948dba, 0 2px 4px rgba(0, 0, 0, 0.2);
  color: #1f1654 !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.button-purple:hover, .button-purple:focus {
  background: #7568ba;
  border-color: #1f1654;
  box-shadow: inset 0 1px 0 #bab6d4, inset 0 -1px 0 #655aa1, inset 0 0 0 1px #948dba;
}
.button-purple:active {
  background: #7568ba;
  box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.2);
}
.button-purple .fa {
  color: #493e87;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
}

.button-orange {
  background-color: #f58a38;
  background-image: linear-gradient(to bottom, #f58a38, #f57c20);
  border: 1px solid #c25706;
  box-shadow: inset 0 1px 0 #ffb984, inset 0 -1px 0 #db6f1d, inset 0 0 0 1px #f59851, 0 2px 4px rgba(0, 0, 0, 0.2);
  color: #773300 !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.button-orange:hover, .button-orange:focus {
  background: #f57c20;
  border-color: #773300;
  box-shadow: inset 0 1px 0 #ffb984, inset 0 -1px 0 #db6f1d, inset 0 0 0 1px #f59851;
}
.button-orange:active {
  background: #f57c20;
  box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.2);
}
.button-orange .fa {
  color: #c25706;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
}

.button-red {
  background-color: #ed6d64;
  background-image: linear-gradient(to bottom, #ed6d64, #ed574c);
  border: 1px solid #ba3329;
  box-shadow: inset 0 1px 0 #ffb0aa, inset 0 -1px 0 #d44d44, inset 0 0 0 1px #ed837b, 0 2px 4px rgba(0, 0, 0, 0.2);
  color: #870c03 !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.button-red:hover, .button-red:focus {
  background: #ed574c;
  border-color: #870c03;
  box-shadow: inset 0 1px 0 #ffb0aa, inset 0 -1px 0 #d44d44, inset 0 0 0 1px #ed837b;
}
.button-red:active {
  background: #ed574c;
  box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.2);
}
.button-red .fa {
  color: #ba3329;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
}

.button-yellow {
  background-color: #fce374;
  background-image: linear-gradient(to bottom, #fce374, #fcdf5b);
  border: 1px solid #c9ae34;
  box-shadow: inset 0 1px 0 #fff6ce, inset 0 -1px 0 #e3c852, inset 0 0 0 1px #fce88d, 0 2px 4px rgba(0, 0, 0, 0.2);
  color: #967d09 !important;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}
.button-yellow:hover, .button-yellow:focus {
  background: #fcdf5b;
  border-color: #967d09;
  box-shadow: inset 0 1px 0 #fff6ce, inset 0 -1px 0 #e3c852, inset 0 0 0 1px #fce88d;
}
.button-yellow:active {
  background: #fcdf5b;
  box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.2);
}
.button-yellow .fa {
  color: #c9ae34;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
}

.button .fa {
  float: left;
  font-size: 14px;
  line-height: 20px;
  margin: -1px 8px 0 -4px;
  vertical-align: top;
}

.widget h5 {
	text-transform: uppercase;
	font-family: 'Roboto', 'Open Sans', sans-serif;
	color: var(--grey-dark-variant);
}
/* DIV TABLES */
.card-table {
  	width: 100%;
	color: #C5D1D5;
}
.card-border-bottom {
	border-bottom: 1px solid var(--contrast-light-color);
}
.card-cell p {
	padding: 0px !important;
	font-weight: bold;
	font-size: 1.75em !important;
	text-transform: uppercase;
}
.card-cell span {
	padding: 0px !important;
	text-transform: uppercase;
}
.card-center {
	text-align: center;
}
.card-result {
	font-family: 'DIN Pro';
	font-size: 2.75em;
	font-weight: 900;
}
.card-resinfo {
	font-family: Roboto;
	text-transform: uppercase;
	font-size: 0.7em;
}
.card-bg-prussian {
	background: var(--main-primary-color-dark);
}
.card-bg-regal {
	background: #034F6B;
}
.card-bg-venice {
	background: #06668A;
}
.card-bg-calypso {
	background: #347A95;
}
.card-col {
	width: 50%;
	float: left;
}
.card-row1 {
	height: 3.571428%;
}
.card-row2 {
	height: 7.142857%;
}
.card-row3 {
	height: 10.714285%;
}
.card-row4 {
	height: 14.285714%;
}
.card-row11 {
	height: 39.285714%;
}
.card-row28 {
	height: 100%;
}
.card-cell {
	padding: 3px 10px;
}
.card-gold {
	color: #FFD700 !important;
}
.card-silver {
	color: #606060 !important;
}
.card-bronze {
	color: #804000 !important;
}
.card-neutral {
	color: #C5D1D5 !important;
}
/* END DIV TABLES */

/* ERROR PAGES */
.outer-error-container {
	margin-top: -33px;
}

.inner-error-container {
	float: left; 
	position: relative; 
	z-index: -1; width: 100%; 
	overflow:hidden; 
	height:500px;
}

.error-image {
	background: none; 
	border: 0; 
	font: inherit; 
	font-size: 100%; 
	margin: 0; 
	padding: 0; 
	vertical-align: baseline; 
	list-style: none; 
	width:100%; 
	max-width: none!important;
}

/* END ERROR PAGES */


/* breadcrumbs */
.breadcrumbs h6 {
	color: var(--grey-darkest-variant);
	font-size: 0.75em;
	font-family: 'Roboto', 'Open Sans', sans-serif;
	padding: 0 0 20px 0;
}

.breadcrumbs a{
	color: var(--main-primary-color);
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
	text-decoration: underline dotted;
	transition: 0.5s ease;
	-o-transition: 0.5s ease;
	-webkit-transition: 0.5s ease;
}

.breadcrumbs a:hover{
	color: var(--grey-medium-variant);
	text-decoration: none;
}

/* end breadcrumbs */

/* scoresheet */
.scoresheet {
	padding-top: 2em;
}
.scoresheet table {
	font-family: 'DIN Pro', 'Roboto', Arial, Helvetica, sans-serif;
	margin: 0 auto;
}
.scoresheet tr {
}
.scoresheet td {
	padding: 0.5em;
}
.scoresheet td.homeTeamHeader {
	text-align: right;
	text-transform: uppercase;
	font-family: Roboto;
	font-weight: bold;
	font-size: 1.5em;
	color: var(--main-primary-color);
}
.scoresheet td.awayTeamHeader {
	text-align: left;
	text-transform: uppercase;
	font-family: Roboto;
	font-weight: bold;
	font-size: 1.5em;
	color: var(--main-primary-color);
}
.scoresheet td.homeStat {
	font-family: Roboto;
	text-align: right;
}
.scoresheet td.awayStat {
	font-family: Roboto;
	text-align: left;
}
.scoresheet td.finalScore {
	vertical-align: top;
	text-align: center;
	font-weight: 900;
	font-size: 4em;
	font-family: 'DIN Pro';
}
.scoresheet td.minute {
	text-align: center;
	font-weight: bold;
	font-size: 1.15em;
	color: var(--main-primary-color); 
}
.scoresheet div {
	border-radius:3px;
	display:inline-block;
	position:relative;
	min-width:47px;
	height:80px;
	margin-top: -0.25em;
	padding:0 2px;
	background-color: var(--contrast-dark-color);
	color:var(--contrast-light-color);
	font-family: 'DIN Pro', 'Roboto', Arial, Helvetica, sans-serif;
	font-weight: 900;
	font-size:64px;
	line-height:1.2em;
	text-align:center;
}
.scoresheet div:after {
	position:absolute;
	top:50%;
	left:0;
	width:100%;
	border-bottom:1px solid #b4b4b4;
	content:' ';
}
.scoresheet a{
	color: var(--main-primary-color);
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
	text-decoration: underline dotted;
	transition: 0.5s ease;
	-o-transition: 0.5s ease;
	-webkit-transition: 0.5s ease;
}

.scoresheet a:hover{
	color: var(--grey-medium-variant);
	text-decoration: none;
}
/* end scoresheet */

/* knock-out qualifiers information */
.koqualifiers h1 {
	color: var(--grey-dark-variant);
	text-transform: uppercase;
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
	font-size: 1.2em;
	padding: 0px 0px 0px 8px;
}
.koqualifiers p {
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
	font-size: 0.875em;
	color: var(--grey-dark-variant);
	line-height: 1.5em;
	padding: 0px 0px 0px 8px;
}
.koqualifiers span {
	color: var(--main-primary-color);
	font-weight: bold;
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
	transition: 0.5s ease;
	-o-transition: 0.5s ease;
	-webkit-transition: 0.5s ease;
}
/* end knock-out qualifiers information */

/* search pages */
.search-form input[type="text"] {
	padding:8px;
	width:100%;
	border: none;
	outline:none;
	color:var(--grey-darkest-variant);
	font-family:'Roboto', Arial, Helvetica, sans-serif;
	border: 6px solid rgba(192, 192, 192, 0.41);
	-webkit-appearance:none;
}
.search-form textarea{
	resize:none;
	height:120px;		
}
.search-form td {
	border: none;
	color:var(--grey-darkest-variant);
	font-size:1em;
	vertical-align: top;
	font-family:'Roboto', Arial, Helvetica, sans-serif;
}
.search-form table {
	width: 350px;
}
.search-form input[type="submit"]{
	color: var(--contrast-light-color);
	text-transform: uppercase;
	padding: 0.8em 1em;
	border: 1px solid var(--contrast-medium-color);
	display: inline;
	background: var(--main-primary-color);
	border:none;
	outline: none;
	cursor:pointer;
	font-family: 'Roboto', 'Open Sans', sans-serif;
}
.search-form input[type="submit"]:hover{
	background: var(--grey-darkest-variant);
	color: var(--contrast-light-color);
}
.search-form input[type="submit"]:active{
	background: var(--grey-darkest-variant);
	color: var(--contrast-light-color);
}
#result_report {
	font-size: 0.875em;
	color: var(--main-primary-color);
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
	transition: 0.5s ease;
	-o-transition: 0.5s ease;
	-webkit-transition: 0.5s ease;
}

.search_results a, .other_pages a,  .did_you_mean a{
	color: var(--main-primary-color);
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
	transition: 0.5s ease;
	-o-transition: 0.5s ease;
	-webkit-transition: 0.5s ease;
}

.search_results a:hover, .other_pages a:hover, .did_you_mean a:hover{
	color: var(--grey-medium-variant);
}
.search_results, .other_pages, .did_you_mean {
	color:var(--grey-darkest-variant);
	font-size:0.8125em;
	font-family:'Roboto', Arial, Helvetica, sans-serif;
}
.url {
	color: var(--main-primary-color);
	font-size: 0.75em;
	font-family: 'Roboto', 'Open Sans', sans-serif;
	padding: 0 0 20px 0;
}
/* end search pages */

/*----start-header-----*/
.logo{
	float:left;
	color:var(--grey-darkest-variant);
	font-family: 'Roboto', 'Open Sans', sans-serif;
	font-size:0.875em;
	line-height: 1.875em;
	transition: 0.5s ease;
	-o-transition: 0.5s ease;
	-webkit-transition: 0.5s ease;
}
.logo span{
	color: var(--main-primary-color);
}
.logo p.errorMessage{
	background-color: #FFC7CE;
	color: #9C0006;
	padding: 5px;
	vertical-align: bottom;
}
.logo a{
	color: #9C0006;
}
.logo a:hover{
	color: var(--grey-darkest-variant);
	transition: 0.5s ease;
	-o-transition: 0.5s ease;
	-webkit-transition: 0.5s ease;
}
.social-icons{
	float:right;
	margin-top: 1.1%;
}
.social-icons ul li{
	display:inline-block;
}
.social-icons ul li a{
	color:var(--grey-darkest-variant);
	font-family: 'Roboto', 'Open Sans', sans-serif;
	font-size:0.875em;
	transition: 0.5s ease;
	-o-transition: 0.5s ease;
	-webkit-transition: 0.5s ease;
}
.social-icons ul li {
	color:var(--grey-darkest-variant);
	font-family: 'Roboto', 'Open Sans', sans-serif;
	font-size:0.875em;
	vertical-align:bottom;
	transition: 0.5s ease;
	-o-transition: 0.5s ease;
	-webkit-transition: 0.5s ease;
}
.social-icons ul li:hover{
	color:var(--main-primary-color);
}
.social-icons ul li a:hover{
	color:var(--main-primary-color);
}
.social-icons ul li a img{
	vertical-align:middle;
	padding-right: 5px;
}
/*------start-top-nav------*/
.scrollProgressBarContainer {
	width: 100%;
	height: 4px;
	background: #9DDDF5;
}
.scrollProgressBar {
	height: 4px;
	background: #3D8CAA;
	width: 0%;
}
.scrollProgressBar-sticky {
	position: fixed;
	top: 61px;
	width: 80%;
	z-index: 1000;
}
.top-nav {
	background: var(--contrast-light-color);
	border-bottom: 5px solid var(--main-primary-color);
}
.top-nav-sticky {
	position: fixed;
	top: 0;
	width: 80%;
	z-index: 10;
}
.top-nav-left{
	float:left;
}
.top-nav-right{
	float:right;
}
.top-nav-left ul li{
	display:inline-block;
	float:left;
	border-left:1px solid var(--contrast-medium-color);
}
.top-nav-left  ul li:nth-child(1){
	border:none;
}
.top-nav-left ul li a{
	background:var(--contrast-light-color);
	padding:20px;
	display:block;
	color:var(--grey-darkest-variant);
	font-family: 'Roboto', sans-serif;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 0.875em;
}
.top-nav-left li.active> a, .top-nav-left li> a:hover {
	color:var(--contrast-light-color);
	/*background: url(../icon/nav-bg-icon.png) no-repeat 50% 102% var(--grey-darkest-variant);*/
	background: url(../icon/nav-bg-icon.png) no-repeat 50% 102%, url(../images/background_363638.png);
}
.showTickerMobileOnly {
	display: none !important;
}
#predPhaseNotMobile {
	display: flex;
}

/*------start-top-nav (responsive-design)------*/
@media only screen and (max-width: 1024px) {
	.scrollProgressBarContainer {
		display: none;
		
	}
	/*----start-wrap-----*/
	.wrap{
		width: 100%;
		margin: 0 auto;
	}
	.top-header {
		padding: 0 0;
	}
	.login{
		display:inline !important;
		width: 100% !important;
	}
	.mobileOnly {
		display: block;
		font-family: 'Roboto', sans-serif;
		background-color: #C2E5F2;
	}
	.mobileOnly:last-child {
		border-bottom: 5px solid var(--main-primary-color);
	}
	.mobileOnly span {
		color: var(--main-primary-color);
		font-family: 'Roboto', Arial, Helvetica, sans-serif;
		font-weight: bold;
		padding: 20px 0px 20px 20px;
		display: block;
		cursor: pointer;
		vertical-align: middle;
		transition: 0.5s ease;
		-o-transition: 0.5s ease;
		-webkit-transition: 0.5s ease;
	}
	.mobileOnly span:hover {
		color: #40859F;
	}
	#predPhaseNotMobile {
		display: none;
	}
	.top-nav {
		border-bottom: none;
		width: 100%;
		display: none;
	}
	.nav-expended {
		display: block;
	}
	.top-nav-left ul li{
		float: none;
		display: block;
		border-left: 2px solid var(--main-primary-color);
		border-bottom: 1px solid var(--contrast-medium-color);
	}
	.top-nav-left ul li:last-child{
		border-bottom: none;
	}
	.top-nav-left  ul li:first-child{
		border-left: 2px solid var(--main-primary-color);
		border-bottom: 1px solid var(--contrast-medium-color);
	}
	.top-nav-left ul li a{
		background:var(--contrast-light-color);
		padding-bottom:15px;
		padding-top:15px;
	}
	.top-nav-left li.active> a, .top-nav-left li> a:hover {
		background: url(../icon/nav-bg-icon.png) no-repeat 50% 102%, url(../images/background_363638.png);
	}
	.sub-menu-parent ul li{
		border-left: none;
		border-bottom: 1px solid var(--contrast-medium-color);	
	}
	.sub-menu-parent ul li a {
		font-size: 0.75em;
		padding-bottom: 12px;
		padding-top: 12px;
	}
	.sub-menu-parent ul li:first-child{
		border-top: 1px solid var(--contrast-medium-color);
		border-left: none;
	}
	.sub-menu-parent ul li:only-child{
		border-bottom: none;
	}
	.showTickerMobileOnly {
		display: block !important;
	}
	.gallery-4grid{
		display: block;
	}
}
@media only screen and (max-width: 1200px) {
	.top-nav-right {
		display: none;
	}
}
@media only screen and (min-width: 1025px) {
	/*----start-wrap-----*/
	.wrap{
		width:80%;
		margin:0 auto;
	}
	.top-header {
		padding: 25px 0;
	}
	.login{
		display:inline !important;
		width: 40% !important;
	}
	.mobileOnly {
		display: none;
	}
	.sub-menu-parent { 
		position: relative; 
	}
	.sub-menu-parent ul li a:hover {
		background: url(../images/background_363638.png);
	}
	.sub-menu-parent ul li{
		border-left: 1px solid var(--main-primary-color);
		border-bottom: 1px solid var(--contrast-medium-color);
	}
	.sub-menu-parent ul li:first-child{
		border-top: 5px solid var(--main-primary-color);
		border-left: 1px solid var(--main-primary-color);
		border-bottom: 1px solid var(--contrast-medium-color);
	}
	.sub-menu-item {
		width: 100%;
	}
	.sub-menu { 
		visibility: hidden; /* hides sub-menu */
		opacity: 0;
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		transform: translateY(-2em);
		z-index: -1;
		transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
	}
	.sub-menu-parent:hover .sub-menu {
		visibility: visible; /* shows sub-menu */
		opacity: 1;
		z-index: 1;
		transform: translateY(0%);
		transition-delay: 0s, 0s, 0.3s; /* this removes the transition delay so the menu will be visible while the other styles transition */
	}
	.gallery-4grid{
		width: 23.3%;
		float:left;
		margin: 0px 30px 0px 0px;
	}
}

/*---start-content-----*/
.top-grid{
	width: 31.33%;
	float: left;
	text-align: center;
	margin-right: 3%;
	font-family: 'Roboto', sans-serif;
	background: var(--contrast-light-color);
	padding: 1.5em 0;
	border-top: 5px solid var(--main-primary-color);
	margin-top: -4em;
	-webkit-box-shadow: 0px 56px 36px -60px #121D12;
	-moz-box-shadow: 0px 56px 36px -60px #121D12;
	-o-box-shadow: 0px 56px 36px -60px #121D12;
}
.top-grid h3 {
	color: var(--grey-darkest-variant);
	font-size: 2em;
}
.top-grid p {
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
	font-size: 0.875em;
	color: var(--grey-medium-variant);
	line-height: 1.5em;
	margin: 0.5em auto 0.8em auto;
	width: 90%;
}
.top-grid img{
	display: inline-block;
}
.top-grids {
	margin: 0 0 3em 0;
}
.last-topgrid{
	margin:0;
	margin-top: -4em;
}
/*----start---mid-grid-----*/
.mid-grid h1{
	font-size:2em;
	font-family: 'Roboto', 'Open Sans', sans-serif;
	color:var(--grey-darkest-variant);
}
.mid-grid h2{
	font-size:1em;
	font-family: 'Roboto', 'Open Sans', sans-serif;
	color:var(--main-primary-color);
	margin: 0.5em 0;
}
.mid-grid p{
	font-size: 0.875em;
	font-family: 'Roboto', 'Open Sans', sans-serif;
	color: var(--grey-medium-variant);
	width: 73%;
	margin: 0 auto;
	line-height: 1.8em;
	margin-bottom: 1em;
}
.mid-grid a{
	color: var(--main-primary-color);
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
	transition: 0.5s ease;
	-o-transition: 0.5s ease;
	-webkit-transition: 0.5s ease;
}

.mid-grid a:hover{
	color: var(--grey-medium-variant);
}
.mid-grid {
	text-align: center;
	font-family: 'Roboto', 'Open Sans', sans-serif;
	margin: 4em 0 0em 0;
	background: var(--contrast-light-color);
	padding: 3em 0;
}

/*-----bottom-grids----*/
.bottom-grid1 {
	width: 31.33%;
	float:left;
	margin-right: 3%;
}
.bottom-grids{
	font-family: 'Roboto', 'Open Sans', sans-serif;
	padding: 0 0 3em 0;
}
.bottom-grid1 h3,.bottom-grid2 h3{
	color: var(--grey-darkest-variant);
	font-family: 'Roboto', 'Open Sans', sans-serif;
	font-size: 1.5em;
	padding: 15px 0px 15px 0px;
	border-bottom: 1px solid #E9E9E9;
	margin-bottom: 13px;
	text-transform: uppercase;
}
.bottom-grid1 span,.bottom-grid2 span{
	color: var(--main-primary-color);
	font-family: 'Roboto', 'Open Sans', sans-serif;
	font-size: 1em;
}
.bottom-grid1 p,.bottom-grid2 p{
	font-size: 0.875em;
	color: rgba(85, 85, 85, 0.53);
	line-height: 1.5em;
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
	padding: 8px 0px 10px 0px;
}
.bottom-grid1 ul li a{
	color: var(--grey-medium-variant);
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
	font-size:0.875em;
	line-height: 2.28em;
	transition: 0.5s ease;
	-o-transition: 0.5s ease;
	-webkit-transition: 0.5s ease;
}
.bottom-grid1 ul li a img{
	vertical-align:middle;
	width: 3px;
	height: 5px;
}
.bottom-grid1 ul li a:hover{
	color:var(--main-primary-color);
}
.bottom-grid-fristlink{
	background: var(--main-primary-color);
	padding: 10px;
	color: var(--contrast-light-color);
	font-family: 'Roboto', 'Open Sans', sans-serif;
	font-weight: bold;
	transition: all 0.3s;
}
.bottom-grid-fristlink img{
	vertical-align:middle;
}
.bottom-grid-fristlink:hover{
	color: var(--contrast-dark-color);
}
.bottom-grid2 ul li{
	display: inline-block;
	width: 30%;
	padding: 2.99% 1.34%;
}
.bottom-grid2 {
	float: left;
	width: 33%;
	margin-right: 3%;
}
.bottom-mid span{
	color:var(--main-primary-color);
}
.bottom-mid a{
	background:var(--main-primary-color);
}
.bottom-last a{
	background:var(--main-primary-color);
}
.bottom-last span{
	color:var(--main-primary-color);	
}
.last-bottomgrid{
	margin:0;
}
.gallery li a img{
	display:block;
}
/*---footer----*/
.footer{
	background:var(--grey-darkest-variant);
	padding:20px 0px;
	margin-top: 30px;
	-webkit-box-shadow: 0px 56px 36px 66px rgba(93, 95, 93, 0.36);
	-moz-box-shadow:0px 56px 36px 66px rgba(93, 95, 93, 0.36);
	-o-box-shadow:0px 56px 36px 66px rgba(93, 95, 93, 0.36);
}
.footer-grid{
	float:left;
	width: 24%;
	margin-right: 2%;
}
.footer-grid h3{
	font-family: 'Roboto', 'Open Sans', sans-serif;
	color: var(--contrast-light-color);
	font-size: 1em;
	text-transform: uppercase;
	padding: 10px 0 3px 0px;
}
.footer-grid p{
	font-size: 0.9em;
	padding: 0.4em 0 0.5em 0;
	color: var(--grey-medium-variant);
	line-height: 1.6em;
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
.footer-grid ul li{
	display:block;
}
.center-grid a{
	font-family: 'Roboto', 'Open Sans', sans-serif;
	color: var(--main-primary-color);
	font-size: 0.875em;
	text-transform: uppercase;
	background: none;
	padding: 0px;
	display: inline-block;
	color: var(--grey-medium-variant);
	margin: 5px;
	border-bottom: 1px ridge rgba(192, 192, 192, 0.13);
	padding: 0px 0px 9px 0px;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.center-grid{
	width:20%;
}
.center-grid a:hover{
	background:none;
	color: var(--contrast-light-color);
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.center-grid ul{
	margin-top:5px;
}
.twitts p label{
	font-weight:bold;
	font-size:1em;
	cursor:pointer;
	padding-right:5px;
}
.twitts a{
	background: none;
	padding: 0px;
	color: var(--grey-medium-variant);
	margin: 0px;
	padding: 0px 0px 0px 0px;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.twitts a:hover{
	background:none;
	color: var(--contrast-light-color);
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.twitts span, .quote span{
	display:block;
	color:var(--main-primary-color);
	font-family: 'Roboto', 'Open Sans', sans-serif;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.twitts span:hover, .quote span:hover{
	color:var(--contrast-light-color);
}
.quote a{
	font-family: 'Roboto', 'Open Sans', sans-serif;
	color: var(--main-primary-color);
	font-size: 0.875em;
	background: none;
	padding: 0px 0px;
	margin: 0px 0;
	text-transform: none;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.quote a:hover{
	color:var(--contrast-light-color);
	background: none;
}
/*----copy-right-----*/
.copy-right{
	text-align:center;
	padding:10px 0px;
	background:#202020;
	position:relative;
}
.copy-right p{
	font-family: 'Roboto', 'Open Sans', sans-serif;
	color: var(--contrast-light-color);
	font-size: 0.875em;
	text-transform: uppercase;
}
.copy-right p a{
	color:var(--main-primary-color);
	font-family: 'Roboto', 'Open Sans', sans-serif;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.copy-right p a:hover{
	color:var(--contrast-light-color);
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
/*** move top **/
.scroll {
	width: 48px;
	height: 48px;
	border: none;
	display: block;
	text-indent: 100%;
	background: url(../icon/top-icon.png) no-repeat right top;
	position: absolute;
	right: 14px;
	bottom: 50px;
}
.scroll:hover{
	opacity:0.8;
}

/*---head to head---*/
.h2h-info h3{
	text-transform: uppercase;
	font-size: 1.2em;
	font-family: 'Roboto', 'Open Sans', sans-serif;
	color: var(--grey-dark-variant);
	padding: 0em 0 0.2em 0;
	display: block;
}
.h2h-info h4{
	font-size: 0.8em;
	font-family: 'Roboto', 'Open Sans', sans-serif;
	vertical-align: middle;
	color: var(--grey-dark-variant);
	padding: 0em 0 0.2em 0;
	display: block;
}
.h2h-info strong{
	font-weight: bold;
}
.h2h-info p{
	font-size: 0.875em;
	color: rgba(85, 81, 81, 0.84);
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
	line-height: 1.8em;
}
.h2h-info span{
	color: var(--main-primary-color);
	font-family: 'Roboto', 'Open Sans', sans-serif;
	font-size: 1em;
}
.h2h-info a{
	font-weight: normal;
	font-family: 'Roboto', 'Open Sans', sans-serif;
	color: var(--main-primary-color);
	text-decoration: underline dotted;
	transition: 0.5s ease;
	-o-transition: 0.5s ease;
	-webkit-transition: 0.5s ease;
}
.h2h-info a:hover{
	color:var(--grey-dark-variant);
	text-decoration: none;
}
.h2h-info table{
	font-size: 0.875em;
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
	color: var(--grey-darkest-variant);
	border-collapse: separate;
	border-spacing: 5px 10px;
}
.h2h-info td, .h2h-info th{
	padding: 5px;
}
.h2h-left {
	width: 49%;
	float: left;
}
.h2h-right {
	width: 49%;
	float: right;
}
.h2h-selection {
	float: left;
}
.compare-left {
	width: 45%;
	float: left;
}
.compare-right {
	width: 45%;
	float: right;
}
.h2h-inline {
	float: left;
}
.profile-left {
	width: 24%;
	float: left;
}
.profile-right {
	width: 74%;
	float: right;
}
.predict-left {
	width: 69%;
	float: left;
}
.predict-right {
	width: 29%;
	float: right;
}
/*---fixtures (responsive-design)---*/
@media only screen and (min-width: 2800px) {
	.fixtures-left {
		width: 49%;
		float: left;
	}
	.fixtures-right {
		width: 49%;
		float: right;
	}
}
/*---head to head (responsive-design)---*/
@media only screen and (max-width: 1480px) and (min-width: 1280px) {
	.h2h-info table {
		border-spacing: 3px 8px;
	}
}
@media only screen and (max-width: 1366px) and (min-width: 1280px) {
	.h2h-info table {
		border-spacing: 3px 8px;
	}
}
@media only screen and (max-width: 1280px) and (min-width: 640px) {
	.h2h-left, .predict-left, .h2h-selection, .profile-left, .compare-left, .about-left {
		width:100%;
		display: block;
	}
	.h2h-right, .predict-right, .profile-right, .compare-right, .about-right {
		width: 100%;
		display: block;
		float: left;
	}
}
@media only screen and (max-width: 640px) {
	.h2h-left, .predict-left, .h2h-selection, .profile-left, .compare-left, .about-left {
		width:100%;
		display: block;
	}
	.h2h-right, .predict-right, .profile-right, .compare-right, .about-right {
		width: 100%;
		display: block;
		float: left;
	}
	.h2h-info table {
		font-size: 0.8em;
		border-spacing: 1px 4px;
	}
	.h2h-info td{
		padding: 3px;
	}
}

/*---comparison ---*/
.comparison-selection div {
	font-family: 'Roboto', 'Open Sans', sans-serif;
	color: rgba(85, 81, 81, 0.84);
	padding-left: 1.5%; 
	padding-bottom: 0.5%;
}
.comparison-selection p {
	font-family: 'Roboto', 'Open Sans', sans-serif;
	color: rgba(85, 81, 81, 0.84);
	padding-left: 1.5%; 
	padding-bottom: 0.5%;
	font-size: 0.875em;
}
.comparison-selection span {
	font-weight: bold;
}
.comparison-selection span.part-aqua {
	color: #00c0ef;
}
.comparison-selection span.part-green {
	color: #00a65a;
}
.comparison-selection span.part-yellow {
	color: #f39c12;
}
.comparison-selection span.part-red {
	color: #dd4b39;
}


.get-compare div.error{
	padding: 0% 0% 0.5% 1.5%; 
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
	color: #9C0006;
}

/*---about-us----*/
.about-us {
	padding: 30px 0 50px 0;
}
.about-right {
	float: right;
	width: 49%;
}
.about-left {
	float: left;
	width: 49%;
}
.about-smallscreen {
	display: none;
}
.about-header h3{
	font-family: 'Roboto', 'Open Sans', sans-serif;
	font-size: 1.5em;
	color: var(--grey-darkest-variant);
	text-transform: uppercase;
}
.about-header span{
	color: var(--main-primary-color);
}
.about-header p{
	font-size: 0.875em;
	color: rgba(85, 81, 81, 0.84);
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
	line-height: 1.8em;
}
.about-info-inline {
	float: left;
	width: 32%;
}
.about-info table, .gallery-grids table, .bottom-grids table{
	font-size: 0.875em;
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
	color: var(--grey-darkest-variant);
}
.about-info td, .about-info th, .gallery-grids td, .gallery-grids th, .bottom-grids td, .bottom-grids th{
	padding: 8px;
	text-align: left;
}
.about-info tr:not(:first-child):not(:last-child):hover, .about-info tr.inactive-object:hover, .gallery-grids tr:not(:first-child):not(:last-child):hover, .gallery-grids tr.inactive-object:hover, .bottom-grids tr:not(:first-child):not(:last-child):hover, .bottom-grids tr.inactive-object:hover{
	border: 2px solid var(--main-primary-color);
}
.about-info tr:not(:first-child):not(:last-child):hover td, .about-info tr.inactive-object:hover td, .gallery-grids tr:not(:first-child):not(:last-child):hover td, .gallery-grids tr.inactive-object:hover td, .bottom-grids tr:not(:first-child):not(:last-child):hover td, .bottom-grids tr.inactive-object:hover td{
	background-color: #9ED5EA;
	transition: 1.5s ease;
	-o-transition: 1.5s ease;
	-webkit-transition: 1.5s ease;
}
.about-info tr.inactive-object, .gallery-grids tr.inactive-object, .bottom-grids tr.inactive-object{ 
	color: #868687;
}
.about-info tr:nth-child(odd), .gallery-grids tr:nth-child(odd), .bottom-grids tr:nth-child(odd){ 
	background-color:var(--table-odd-color);
}
.about-info tr:nth-child(even), .gallery-grids tr:nth-child(even), .bottom-grids tr:nth-child(even){ 
	background-color:var(--table-even-color);
}
.about-info tr:last-child, .gallery-grids tr:last-child, .bottom-grids tr:last-child{ 
	background-color:var(--table-footer-color);
	color: var(--contrast-light-color);
}
.about-info tr.firstPlace {
	background: #8A6E2F;
	background: -moz-linear-gradient(-45deg, #8A6E2F 0%, #9F7928 7%, #FDB931 34%, #FEDB37 83%);
	background: -webkit-linear-gradient(-45deg, #8A6E2F 0%, #9F7928 7%, #FDB931 34%, #FEDB37 83%);
	background: linear-gradient(135deg, #8A6E2F 0%, #9F7928 7%,#FDB931 34%, #FEDB37 83%);
	background-attachment: fixed;
}
.about-info tr.secondPlace {
	background: #333333;
	background: -moz-linear-gradient(-45deg, #333333 0%, #777777 7%, #A0A0A0 34%, #E0E0E0 83%);
	background: -webkit-linear-gradient(-45deg, #333333 0%, #777777 7%, #A0A0A0 34%, #E0E0E0 83%);
	background: linear-gradient(135deg, #333333 0%, #777777 7%,#A0A0A0 34%, #E0E0E0 83%);
	background-attachment: fixed;
}
.about-info tr.thirdPlace {
	background: #804000;
	background: -moz-linear-gradient(-45deg, #804000 0%, #A75B10 7%, #CD7F32 34%, #F3A960 83%);
	background: -webkit-linear-gradient(-45deg, #804000 0%, #A75B10 7%, #CD7F32 34%, #F3A960 83%);
	background: linear-gradient(135deg, #804000 0%, #A75B10 7%,#CD7F32 34%, #F3A960 83%);
	background-attachment: fixed;
}
.about-info th, .gallery-grids th, .bottom-grids th{
	font-weight: bold;
	color: var(--contrast-light-color);
	background-color: var(--table-header-color);
}
.about-info td.criteria{
	font-weight: bold;
	color: var(--main-primary-color);
	vertical-align: top;
	padding: 8px;
}
.about-info tr.table-criteria, .table-criteria{
	background-color: transparent;
}
.about-info tr.personal, .about-info td.personal{
	background-color: transparent !important;
	border: transparent !important;
	font-weight: normal;
	vertical-align: top;
	padding: 0px;
}
.about-info td.profile{
	width: 350px;
}
.about-info table.personal{
	font-size: 1em;
}
.about-info a, .about-header a, .gallery-4grid tr td a, .bottom-grids a{
	font-weight: normal;
	font-family: 'Roboto', 'Open Sans', sans-serif;
	color: var(--main-primary-color);
	text-decoration: underline dotted;
	transition: 0.5s ease;
	-o-transition: 0.5s ease;
	-webkit-transition: 0.5s ease;
}
.about-info a:hover, .about-header a:hover, .gallery-4grid tr td a:hover, .bottom-grids a:hover{
	color:var(--grey-dark-variant);
	text-decoration: none;
}
.about-info a.pagination, .about-info span.pagination{
	color: var(--contrast-light-color);
	font-size: 0.8em;
	font-weight: bold;
	text-transform: uppercase;
	padding: 0.5em;
	border: 1px solid var(--contrast-medium-color);
	display: inline;
	background: var(--main-primary-color);
	cursor:pointer;
}
.about-info a.pagination:hover, .about-info span.pagination:hover{
	background: var(--grey-darkest-variant);
	color: var(--contrast-light-color);
}
.about-info a.score{
	font-family: 'DIN Pro';
	font-weight: bold;
	font-size: 2em;
}
.about-info select.pagination{
	padding:0.35em;
	display:inline;
	color:var(--grey-darkest-variant);
	font-size:0.825em;
	font-family:'Roboto', Arial, Helvetica, sans-serif;
	border: 1px solid rgba(192, 192, 192, 0.41);
	width: 60px;
}
.about-info input[type="text"]{
	padding:0.5em;
	display:inline;
	width: 100%;
	border: none;
	outline:none;
	color:var(--grey-darkest-variant);
	font-size:0.8em;
	font-family:'Roboto', Arial, Helvetica, sans-serif;
	border: 1px solid rgba(192, 192, 192, 0.41);
	-webkit-appearance:none;
}
.about-info input[type="number"].gaverify{
	padding:0.5em;
	display:inline;
	width: 20%;
	border: none;
	outline:none;
	color:var(--grey-darkest-variant);
	font-size:0.8em;
	font-family:'Roboto', Arial, Helvetica, sans-serif;
	border: 1px solid rgba(192, 192, 192, 0.41);
	-webkit-appearance:none;
}
.about-info a.title-overview, .about-info span.title-overview{
	color: var(--contrast-light-color);
	transition: none;
	cursor:pointer;
}
.about-info h3{
	text-transform: uppercase;
	font-size: 1.2em;
	font-family: 'Roboto', 'Open Sans', sans-serif;
	color: var(--grey-dark-variant);
	padding: 0em 0 0.2em 0;
	display: block;
}
.about-info p{
	font-size: 0.875em;
	color: rgba(85, 81, 81, 0.84);
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
	line-height: 1.8em;
}
.about-info span{
	color: var(--main-primary-color);
	font-family: 'Roboto', 'Open Sans', sans-serif;
	font-size: 1em;
}
.about-info span.role{
	color: var(--main-primary-color);
	font-family: 'Roboto', 'Open Sans', sans-serif;
	font-size: 1em;
	font-variant: small-caps;
	font-weight: bold;
}
.about-info span.errorForm{
	font-size: 0.875em;
	color: #9C0006;
}
.about-info ul li {
	color: var(--grey-medium-variant);
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
	font-size:0.875em;
	line-height: 2.98em;
	transition: 0.5s ease;
	-o-transition: 0.5s ease;
	-webkit-transition: 0.5s ease;
}
.about-info ul li img{
	vertical-align:middle;
}
.about-info ul li:hover{
	color:var(--main-primary-color);
}
.about-info-padding-first ul {
	padding-left: 2.5em;
}
.about-info-sitemap {
	font-family: 'Roboto', 'Open Sans', sans-serif;
	line-height: 2.4em;
	color: var(--grey-medium-variant);
}
.about-info-sitemap a{
	color: var(--grey-medium-variant);
	text-decoration: underline dotted;
	transition: 0.5s ease;
	-o-transition: 0.5s ease;
	-webkit-transition: 0.5s ease;
	line-height: 2.4em;
}
.about-info-sitemap a:hover{
	opacity: 0.6;
	text-decoration: none;
}
.sitemap-green {
	color: #006100 !important;
}
.sitemap-red {
	color: #9C0006 !important;
}
.sitemap-blue {
	color: var(--main-primary-color) !important;
}
.sitemap-yellow {
	color: #BF8F00 !important;
}
.about-info div.message {
	padding-top: 1em;
	padding-left: 3.5em;
	font-size: 0.9em;
}
.about-info div.message span {
	font-size: 0.8em;
}
.about-info div.pagination{
	text-align:left;
}
.about-info div.about-block{
	padding: 0em 0em 0em 1.5em;
	margin: 0em 0em 1.5em 0em;
}
.about-info div.type-2{
	border-left: 5px solid #D4EDF4;
}
.about-info div.type-3{
	border-left: 5px solid #E2F2D5;
}
.about-info div.type-4{
	border-left: 5px solid #F9FBBA;
}
.about-info div.type-5{
	border-left: 5px solid #F6C2C2;
}
.about-info div.type-6{
	border-left: 5px solid #CACAFF;
}
.about-info div.type-7{
	border-left: 5px solid #ADD6D6;
}
.about-info div.type-8{
	border-left: 5px solid #CCCCE6;
}
.about-info div.type-9{
	border-left: 5px solid #EBEBEB;
}
.about-info div:hover.about-block{
	padding: 0em 0em 0em 1.5em;
	margin: 0em 0em 1.5em 0em;
	border-left: 5px solid var(--main-primary-color);
	transition: 0.5s ease;
	-o-transition: 0.5s ease;
	-webkit-transition: 0.5s ease;
}
.about-info input.theSearch{
	width: 30%;
	vertical-align: -0.05em;
}
.about-info select{
	padding:4px;
	display:block;
	border: none;
	outline:none;
	color:var(--grey-darkest-variant);
	font-size:0.8125em;
	font-family:'Roboto', Arial, Helvetica, sans-serif;
	border: 1px solid rgba(192, 192, 192, 0.41);
	width: 350px;
}
/*---about-us (responsive-design)---*/
/*@media only screen and (min-width: 1681px) {
	#individualStandings th:nth-child(n+33):nth-child(-n+59), 
	#individualStandings td:nth-child(n+33):nth-child(-n+59) { display: none; }
}*/
@media only screen and (max-width: 1920px) and (min-width: 1681px) {
	#individualStandings th:nth-child(8):not(:last-child), 
	#individualStandings td:nth-child(8):not(:last-child),
	#individualStandings th:nth-last-child(-n+5):not(:last-child):not(:nth-child(-n+7)),
	#individualStandings td:nth-last-child(-n+5):not(:last-child):not(:nth-child(-n+7)),
	#leagueStandings th:nth-child(6), 
	#leagueStandings td:nth-child(6),
	#leagueStandings th:nth-last-child(-n+4):not(:nth-child(-n+6)),
	#leagueStandings td:nth-last-child(-n+4):not(:nth-child(-n+6))	{display : none;}
}
@media only screen and (max-width: 1680px) and (min-width: 1367px) {
	#individualStandings th:nth-child(8):not(:last-child), 
	#individualStandings td:nth-child(8):not(:last-child),
	#individualStandings th:nth-last-child(-n+9):not(:last-child):not(:nth-child(-n+10)),
	#individualStandings td:nth-last-child(-n+9):not(:last-child):not(:nth-child(-n+10)),
	#leagueStandings th:nth-child(6), 
	#leagueStandings td:nth-child(6),
	#leagueStandings th:nth-last-child(-n+8):not(:nth-child(-n+8)),
	#leagueStandings td:nth-last-child(-n+8):not(:nth-child(-n+8))	{display : none;}
}
@media only screen and (max-width: 1366px) and (min-width: 1281px) {
	#individualStandings th:nth-child(8):not(:last-child), 
	#individualStandings td:nth-child(8):not(:last-child),
	#individualStandings th:nth-last-child(-n+12):not(:last-child):not(:nth-child(-n+11)),
	#individualStandings td:nth-last-child(-n+12):not(:last-child):not(:nth-child(-n+11)),
	#leagueStandings th:nth-child(6), 
	#leagueStandings td:nth-child(6),
	#leagueStandings th:nth-last-child(-n+10):not(:nth-child(-n+10)),
	#leagueStandings td:nth-last-child(-n+10):not(:nth-child(-n+10)),
	#fixtureStandings th:nth-last-child(-n+4):not(:last-child), 
	#fixtureStandings td:nth-last-child(-n+4):not(:last-child)	{display : none;}
}
@media only screen and (max-width: 1280px) and (min-width: 1025px) {
	#individualStandings th:nth-child(8):not(:last-child), 
	#individualStandings td:nth-child(8):not(:last-child),
	#individualStandings th:nth-last-child(-n+18):not(:last-child):not(:nth-child(-n+10)),
	#individualStandings td:nth-last-child(-n+18):not(:last-child):not(:nth-child(-n+10)),
	#leagueStandings th:nth-child(6), 
	#leagueStandings td:nth-child(6),
	#leagueStandings th:nth-last-child(-n+14):not(:nth-child(-n+10)),
	#leagueStandings td:nth-last-child(-n+14):not(:nth-child(-n+10)),
	#fixtureStandings th:nth-last-child(-n+4):not(:last-child), 
	#fixtureStandings td:nth-last-child(-n+4):not(:last-child)	{display : none;}
	.about-left {
		width:100%;
		display: block;
	}
	.about-right {
		width: 100%;
		display: block;
		float: left;
	}
	.about-smallscreen {
		display: block;
	}
}
@media only screen and (max-width: 1024px) and (min-width: 801px) {
	#individualStandings th:nth-child(8):not(:last-child), 
	#individualStandings td:nth-child(8):not(:last-child),
	#individualStandings th:nth-last-child(-n+17):not(:last-child):not(:nth-child(-n+8)),
	#individualStandings td:nth-last-child(-n+17):not(:last-child):not(:nth-child(-n+8)),
	#leagueStandings th:nth-child(6), 
	#leagueStandings td:nth-child(6),
	#leagueStandings th:nth-last-child(-n+15):not(:nth-child(-n+6)),
	#leagueStandings td:nth-last-child(-n+15):not(:nth-child(-n+6)),
	#fixtureStandings th:nth-last-child(-n+4):not(:last-child), 
	#fixtureStandings td:nth-last-child(-n+4):not(:last-child)	{display : none;}
	.about-left {
		width:100%;
		display: block;
	}
	.about-right {
		width: 100%;
		display: block;
		float: left;
	}
	.about-smallscreen {
		display: block;
	}
}
@media only screen and (max-width: 800px) and (min-width: 641px) {
	#individualStandings th:nth-child(n+8):not(:last-child), 
	#individualStandings td:nth-child(n+8):not(:last-child),
	#individualStandings th:nth-child(4), 
	#individualStandings td:nth-child(4),
	#allStandings th:nth-child(n+8), 
	#allStandings td:nth-child(n+8),
	#leagueStandings th:nth-child(n+10), 
	#leagueStandings td:nth-child(n+10),
	#fixtureStandings th:nth-last-child(-n+4):not(:last-child), 
	#fixtureStandings td:nth-last-child(-n+4):not(:last-child),
	#fixtureStandings th:nth-child(2), 
	#fixtureStandings td:nth-child(2),
	#fixtureStandings th:nth-child(3), 
	#fixtureStandings td:nth-child(3)	{display : none;}
	.about-left {
		width:100%;
		display: block;
	}
	.about-right {
		width: 100%;
		display: block;
		float: left;
	}
	.about-smallscreen {
		display: block;
	}
}
@media only screen and (max-width: 640px) and (min-width: 480px) {
	#individualStandings th:nth-child(-n+5):not(:last-child):not(:first-child), 
	#individualStandings td:nth-child(-n+5):not(:last-child):not(:first-child),
	#individualStandings th:nth-child(n+8):not(:last-child), 
	#individualStandings td:nth-child(n+8):not(:last-child),
	#leagueStandings th:nth-child(n+6), 
	#leagueStandings td:nth-child(n+6),
	#fixtureStandings th:nth-last-child(-n+4):not(:last-child), 
	#fixtureStandings td:nth-last-child(-n+4):not(:last-child),
	#fixtureStandings th:nth-child(2), 
	#fixtureStandings td:nth-child(2),
	#fixtureStandings th:nth-child(3), 
	#fixtureStandings td:nth-child(3)	{display : none;}
	.about-left {
		width:100%;
		display: block;
	}
	.about-right {
		width: 100%;
		display: block;
		float: left;
	}
	.about-smallscreen {
		display: block;
	}
}
@media only screen and (max-width: 481px) {
	#individualStandings th:nth-child(-n+5):not(:last-child):not(:first-child), 
	#individualStandings td:nth-child(-n+5):not(:last-child):not(:first-child),
	#individualStandings th:nth-child(n+8):not(:last-child), 
	#individualStandings td:nth-child(n+8):not(:last-child),
	#leagueStandings th:nth-child(n+6), 
	#leagueStandings td:nth-child(n+6),
	#leagueStandings th:nth-child(-n+3):not(:first-child), 
	#leagueStandings td:nth-child(-n+3):not(:first-child),
	#fixtureStandings th:nth-last-child(-n+7):not(:last-child), 
	#fixtureStandings td:nth-last-child(-n+7):not(:last-child),
	#fixtureStandings th:nth-child(2), 
	#fixtureStandings td:nth-child(2),
	#fixtureStandings th:nth-child(3), 
	#fixtureStandings td:nth-child(3)	{display : none;}
	.about-left {
		width:100%;
		display: block;
	}
	.about-right {
		width: 100%;
		display: block;
		float: left;
	}
	.about-smallscreen {
		display: block;
	}
}

/*-----specials-heading----*/
.specials-heading h5{
	float: left;
	width: 33%;
	height: 1px;
	background: #D1D1D1;
	margin: 24px 0px 0px 0px;
}
/*----special-grid------*/
.special-grid {
	float: left;
	width: 32%;
	margin-right: 2%;
	text-align: center;
}
.specials {
	margin-top: 1em;
}
.special-grid img{
	width:100%;
}
.special-grid a{
	text-transform: uppercase;
	font-size: 1.2em;
	font-family: 'Roboto', 'Open Sans', sans-serif;
	color: var(--grey-dark-variant);
	text-decoration: underline dotted;
	transition: 0.5s ease;
	-o-transition: 0.5s ease;
	-webkit-transition: 0.5s ease;
	padding: 0.3em 0;
	display: block;
}
.special-grid a:hover{
	color: var(--main-primary-color);
	text-decoration: none;
}
.special-grid p{
	font-size: 0.875em;
	color: rgba(148, 145, 145, 0.84);
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
	padding: 0em 1em 1em 1em;
	line-height: 1.5em;
}
.spe-grid{
	margin: 0px;
}
.specials-grids {
	padding: 25px 0 60px 0;
}
/*-----specials-heading----*/
.specials-heading h3{
	font-family: 'Roboto', 'Open Sans', sans-serif;
	font-size: 1.5em;
	color: var(--grey-darkest-variant);
	text-transform: uppercase;
}
/*----start-testmonial-grid----*/
.testmonial-grid{
	text-align:center;
}
.testmonial-grid h3{
	font-family: 'Roboto', 'Open Sans', sans-serif;
	font-size: 2em;
	color: var(--grey-darkest-variant);
	text-align: center;
	text-transform: uppercase;
	padding: 0em 0 0.5em 0;
}
.testmonial-grid p{
	font-size: 0.875em;
	color: rgba(85, 81, 81, 0.84);
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
	padding: 0em 1em 1em 1em;
	line-height: 1.8em;
}
.testmonial-grid a{
	font-size: 0.875em;
	font-size: 1.2em;
	font-family: 'Roboto', 'Open Sans', sans-serif;
	color:var(--main-primary-color);
}
.testmonials{
	background: var(--contrast-light-color);
	padding: 30px;
}
/*---start-services----*/
.services {
	padding: 30px 20px 0px 0;
}

.services-header h3{
	font-family: 'Roboto', 'Open Sans', sans-serif;
	font-size: 1.5em;
	color: var(--grey-darkest-variant);
	text-transform: uppercase;
}
.services-grid{
	width:23.73%;
	float:left;
	margin-right: 1.5%;
}
.services-grid a{
	text-transform: uppercase;
	font-size: 1em;
	font-family: 'Roboto', 'Open Sans', sans-serif;
	color: var(--grey-dark-variant);
	transition: 0.5s ease;
	-o-transition: 0.5s ease;
	-webkit-transition: 0.5s ease;
	padding: 1em 0 0.5em 0;
	display: block;
}
.services-grid a:hover{
	color:var(--main-primary-color);
}
.services-grid p{
	font-size: 0.875em;
	color: rgba(85, 81, 81, 0.84);
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
	line-height: 1.8em;
}
.services-grid span.projdate{
	color: var(--main-primary-color);
	font-family: 'Roboto', 'Open Sans', sans-serif;
	font-variant: small-caps;
}
.last-servicesgrid{
	margin: 0;
}
/*---start-gallery---*/
.gallerys {
	font-family: 'Roboto', 'Open Sans', sans-serif;
	color: var(--grey-darkest-variant);
}
.gallerys h3{
	font-family: 'Roboto', 'Open Sans', sans-serif;
	font-size: 1.5em;
	color: var(--grey-darkest-variant);
	text-transform: uppercase;
	padding:1em 0;
}
.gallery-grid{
	width: 31.44%;
	float:left;
}
.gallery-grid p, .gallery-4grid p, .gallery-2grid p, .gallery-info p {
	font-size: 0.875em;
	padding: 0.2em 0em 1.2em 0em;
	color: #6a6a6a;
	line-height: 1.8em;
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
.gallery-grid-info span{
	color: var(--main-primary-color);
}
.gallery-grid-info p {
	font-size: 0.875em;
	padding: 0.2em 0em 1.2em 0em;
	color: #6a6a6a;
	line-height: 1.8em;
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
.gallery-2grid{
	width: 48.8%;
	float:left;
	margin: 0px 30px 0px 0px;
}
.grid4{
	margin-right: 0px;
}
.grid2{
	margin: 0px 35px;
}
.gallery-grids {
	margin-bottom: 30px;
}
.projects-bottom-paination ul li{
	display:inline-block;
}
.projects-bottom-paination{
	text-align: center;
	padding: 55px 0;
	font-family: 'Roboto', 'Open Sans', sans-serif;
}
.projects-bottom-paination li a{
	font: 400 12px/1.2em Arial;
	color: #5a5a5a;
	padding: 11px 18px;
	background: var(--contrast-light-color);
	text-decoration: none;
	text-shadow: none;
	border: 1px solid #e9e9e9;
	margin-top: 16px;
}
.projects-bottom-paination li.active> a, .projects-bottom-paination li> a:hover {
	background: var(--main-primary-color);
	color:var(--contrast-light-color);
}
.gallery-grid h4, .gallery-4grid h4, .gallery-2grid h4{
	font-family: 'Roboto', 'Open Sans', sans-serif;
	font-size: 18px;
	line-height: 22px;
	text-transform: uppercase;
	color: var(--grey-darkest-variant);
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	cursor: pointer;
	padding: 13px 0px 2px 0px;
}
.gallery-grid h4:hover, .gallery-4grid h4:hover, .gallery-2grid h4:hover{
	color:var(--main-primary-color);
}
/*---contect----*/
/*  Contact Form  ============================================================================= */
.section {
	clear: both;
	padding: 0px;
	margin: 0px;
}
.group:before,
.group:after {
    content:"";
    display:table;
}
.group:after {
    clear:both;
}
.col{
	display: block;
	float:left;
	margin: 1% 0 1% 1.6%;
}
.col:first-child{
	margin-left:0;
}	
.span_2_of_3 {
	width: 0%;
	padding:1.5%; 
}
.span_1_of_3 {
	width: 88.3%;
	padding:1.5%; 
}
.span_2_of_3  h3,
.span_1_of_3  h3 {
	font-family: 'Roboto', 'Open Sans', sans-serif;
	font-size: 1.5em;
	color: var(--grey-darkest-variant);
	text-transform: uppercase;
	padding: 1em 0;
}
.contact-form{
	position:relative;
	padding-bottom:30px;
}
.contact-header h3{
	font-family: 'Roboto', 'Open Sans', sans-serif;
	font-size: 1.5em;
	color: var(--grey-darkest-variant);
	text-transform: uppercase;
}
.contact-header span{
	color: var(--main-primary-color);
}

.contact-form h3 {
	font-family: 'Roboto', 'Open Sans', sans-serif;
	font-size: 1.5em;
	color: var(--grey-darkest-variant);
	text-transform: uppercase;
	padding: 0.75em 0;
}
.contact-form div{
	padding:5px 0;
}
.contact-form span {
	display:block;
	font-size: 0.875em;
	color: var(--grey-darkest-variant);
	padding-bottom:5px;
	font-family: 'Roboto', 'Open Sans', sans-serif;
}
.contact-form span.emphasis{
	display:inline;
	font-size: 1em;
	font-weight: bold;
	color: var(--main-primary-color);
	font-family: 'Roboto', 'Open Sans', sans-serif;
}
.contact-form span.emphasis:hover{
	display:inline;
	font-size: 1em;
	font-weight: bold;
	color: var(--grey-darkest-variant);
	font-family: 'Roboto', 'Open Sans', sans-serif;
	transition: 0.5s ease;
	-o-transition: 0.5s ease;
	-webkit-transition: 0.5s ease;
}
.contact-form span.score {
	display: inline;
	vertical-align: 2em;
	font-weight: bold;
	font-family: 'DIN Pro';
	font-size: 2em;
}
.contact-form p{
	font-size: 0.875em;
	color: var(--grey-darkest-variant);
	padding-bottom:5px;
	line-height: 1.8em;
	font-family: 'Roboto', 'Open Sans', sans-serif;
}
.contact-form p.errorForm {
	color: #9C0006;
	background-color: transparent;
	font-size: 0.875em;
	padding: 0;
}
.contact-form p.checkForm {
	color: #006100;
	background-color: transparent;
	font-size: 0.875em;
	padding: 0;
}
.contact-form p a {
	font-weight: normal;
	font-family: 'Roboto', 'Open Sans', sans-serif;
	text-decoration: underline dotted;
	color:var(--main-primary-color);
	transition: 0.5s ease;
	-o-transition: 0.5s ease;
	-webkit-transition: 0.5s ease;
}
.contact-form p a:visited {
	color:var(--main-primary-color);
	text-decoration: none;
}
.contact-form p a:hover {
	color:var(--grey-dark-variant);
	text-decoration: none;
}
.contact-form div.permission{
	padding:5px 0;
	font-size: 1em;
	color: var(--grey-darkest-variant);
	font-family: 'Roboto', 'Open Sans', sans-serif;
}
.g-recaptcha div {
	padding: 0px;
}
.contact-form span.buttons{
	display:inline;
	color: var(--main-primary-color);
	font-family: 'Roboto', 'Open Sans', sans-serif;
	font-size: 1em;
}
.contact-form span.permission{
	display:inline;
	font-size: 1em;
	color: var(--main-primary-color);
}
.contact-form span.permission:hover{
	display:inline;
	font-size: 1em;
	color: var(--grey-darkest-variant);
	transition: 0.5s ease;
	-o-transition: 0.5s ease;
	-webkit-transition: 0.5s ease;
}
.contact-form table{
	font-size: 0.875em;
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
	color: var(--grey-darkest-variant);
}
.contact-form td, .contact-form th{
	padding: 8px;
	vertical-align:middle;
	text-align: left;
}
.contact-form tr:hover, .contact-form tr.inactive-object:hover{
	color: var(--main-primary-color);
	transition: 0.5s ease;
	-o-transition: 0.5s ease;
	-webkit-transition: 0.5s ease;
}
.contact-form tr.inactive-object{ 
	color: #868687;
}
.contact-form tr:nth-child(odd){ 
	background-color: var(--contrast-medium-color);
}
.contact-form tr:nth-child(even){ 
	background-color:var(--contrast-light-color);
}
.contact-form tr:last-child{ 
	background-color:var(--grey-darkest-variant);
	color: var(--contrast-light-color);
}
.contact-form th{
	font-weight: bold;
	color: var(--contrast-light-color);
	background-color: var(--grey-darkest-variant);
}
.contact-form td.criteria{
	font-weight: bold;
	color: var(--main-primary-color);
	vertical-align: top;
	padding: 8px;
}
.contact-form hr{
	border : 0;
	height: 2px; 
	background-image: linear-gradient(to right, rgba(206, 240, 253, 0), rgba(6, 100, 138, 0.75), rgba(206, 240, 253, 0)); 
}
.compare div{
	padding:1.5%; 
	display:block;
}
.group-results td.header{
	color: var(--contrast-light-color);
}
.group-results tr{
	background-color: transparent;
}
.group-results tr.header{
	background-color: var(--main-primary-color) !important;
}
.group-results tr.qualified{
	background-color: #CEF0FD !important;
}
.group-results tr.qualifiedthird{
	background-color: #E7F8FE !important;
}
.group-results td{
	color: var(--grey-darkest-variant);
	padding: 10px !important;
	vertical-align: middle;
}
.group-results label{
	font-size: 1.2em !important;
	font-weight: bold;
}
.group-results span{
	font-size: 1em !important;
	display: inline-flex;
	align-items: center;
}
.group-standings{
	font-family:'Roboto', Arial, Helvetica, sans-serif;
}
.group-standings td.header{
	color: var(--contrast-light-color);
}
.group-standings tr{
	background-color: transparent;
}
.group-standings tr.header{
	background-color: var(--main-primary-color);
}
.group-standings tr.qualified{
	background-color: #CEF0FD;
}
.group-standings tr.qual-pred{
	background-color: #C6EFCE;
}
.group-standings td{
	color: var(--grey-darkest-variant);
	padding: 10px !important;
	vertical-align: middle;
}
.group-standings td.qual-pred{
	background-color: #C6EFCE;
}.participants {
	font-family: 'Roboto';
}
.participants tr{
	background-color: transparent !important;
}
.participants td{
	color: var(--grey-darkest-variant);
	padding: 4px;
	vertical-align: middle;
}
.participants td.right, .group-standings td.right, .group-results td.right{
	text-align: right;
}
.participants td.center, .group-standings td.center, .group-results td.right{
	text-align: center;
}
.participants td.nopad{
	padding: 0px;
	vertical-align: bottom;
}
.participants label{
	font-size: 1em;
	font-weight: bold;
}
.group-standings label{
	font-size: 0.875em;
	font-weight: bold;
}
.participants span, .group-standings span{
	font-size: 0.875em;
	display: inline-flex;
	align-items: center;
}
.participants span.koinfo{
	font-size: 0.7em;
	display: inline-flex;
	font-style: italic;
}
.participants span.perc1{
	color: var(--main-primary-color);
}
.participants span.perc2{
	color: #347A95;
}
.participants span.perc3{
	color: #839BA4;
}
.participants a{
	font-family: 'Roboto', 'Open Sans', sans-serif;
	color: var(--main-primary-color);
	text-decoration: underline dotted;
	transition: 0.5s ease;
	-o-transition: 0.5s ease;
	-webkit-transition: 0.5s ease;
}
.participants a:hover{
	color:var(--grey-darkest-variant);
	text-decoration: none;
}
.participants p, .group-standings p{
	font-weight: bold;
	font-size: 1.2em;
	color: var(--main-primary-color);
}
.participants select{
	width: 200px !important;
	padding: 4px !important;
	color:var(--grey-darkest-variant);
	font-size: 0.875em;
	font-family:'Roboto', Arial, Helvetica, sans-serif;
}
.participants select.predict{
	width: auto !important;
}
.participants input[type="number"].poolstat, .participants input[type="number"].parameters{
	width: 55%;
}
.participants select.parameters{
	width: 60px !important;
	padding: 4px !important;
}
.contact-form input[type="text"], .contact-form input[type="password"], .contact-form input[type="number"],.contact-form textarea{
	padding:8px;
	display:block;
	width:50%;
	border: none;
	outline:none;
	color:var(--grey-darkest-variant);
	font-size:1em;
	font-family:'Roboto', Arial, Helvetica, sans-serif;
	border: 1px solid rgba(192, 192, 192, 0.41);
	-webkit-appearance:none;
}
.contact-form input[type="number"].gaverify{
	padding:8px;
	display:block;
	width:20%;
	border: none;
	outline:none;
	color:var(--grey-darkest-variant);
	font-size:1em;
	font-family:'Roboto', Arial, Helvetica, sans-serif;
	border: 1px solid rgba(192, 192, 192, 0.41);
	-webkit-appearance:none;
}
.participants input[type="number"]{
	width: 28px;
	display: inline;
	padding: 4px;
	font-size: 0.875em;
	color:var(--grey-darkest-variant);
	font-family:'Roboto', Arial, Helvetica, sans-serif;
}
.dob{
	display:inline !important;
	width:7% !important;
}
.dobyear{
	display:inline !important;
	width:10% !important;
}
.contact-form input[type="date"]{
	padding:8px;
	display:block;
	width:20%;
	border: none;
	outline:none;
	color:var(--grey-darkest-variant);
	font-size:1em;
	font-family:'Roboto', Arial, Helvetica, sans-serif;
	border: 1px solid rgba(192, 192, 192, 0.41);
	-webkit-appearance:none;
}
.contact-form textarea{
		resize:none;
		height:120px;		
}
.contact-form select{
	padding:8px;
	display:block;
	border: none;
	outline:none;
	color:var(--grey-darkest-variant);
	font-size:1em;
	font-family:'Roboto', Arial, Helvetica, sans-serif;
	border: 1px solid rgba(192, 192, 192, 0.41);
	width: 51.3%;
}
.contact-form select.permissions{
	width: 105%;
}
.company_address{
}
.company_address p{
	font-size: 0.875em;
	color: #6a6a6a;
	line-height: 1.8em;
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
.company_address p span{
	text-decoration:underline;
	color:#454545;
	cursor:pointer;
}
.map{
	margin-bottom:15px;
}
label.errorForm, p.errorForm{
	color: #9C0006;
}
label.checkForm, p.checkForm{
	color: #006100;
}
p.errorForm{
	color: #9C0006;
	background-color: #FFC7CE;
	padding: 10px;
	font-size: 2em;
}
p.checkForm{
	color: #006100;
	background-color: #C6EFCE;
	padding: 10px;
	font-size: 2em;
}
.fadeOutMessage {
  animation-name: fadeOut;
  animation-duration: 8s;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}

.predict-complete {
	color: #006100 !important;
	background-color: #C6EFCE;
}
.predict-complete a {
	color: #006100 !important;
}
.predict-incomplete {
	color: #9C0006 !important;
	background-color: #FFC7CE;
}
.predict-incomplete a {
	color: #9C0006 !important;
}
.predict-step {
	float: left; 
	font-size: 0.875em; 
	padding: 2px !important; 
	flex-grow: 1 !important;
}
.predict-step a {
	text-decoration: none;
	transition: 0.3s;
}
.predict-step:hover {
	opacity: 0.6;
}
.predict-left p a, .predict-right p a, .predict-info a {
	font-weight: normal;
	font-family: 'Roboto', 'Open Sans', sans-serif;
	text-decoration: underline dotted;
	color:var(--main-primary-color);
	transition: 0.5s ease;
	-o-transition: 0.5s ease;
	-webkit-transition: 0.5s ease;
}
.predict-left p a:visited, .predict-right p a:visited, .predict-info a:visited {
	color:var(--main-primary-color);
	text-decoration: none;
}
.predict-left p a:hover, .predict-right p a:hover, .predict-info a:hover {
	color:var(--grey-dark-variant);
	text-decoration: none;
}
.predict-tabs-print a, .predict-tabs-print a:visited {
	color:#DFE3E5;
	text-decoration: none;
	border-bottom-width: 0.075em;
	border-bottom-style: dotted;
	padding-bottom: 0.005em;
}
.digitise {
	font-family: 'DIN Pro' !important;
}

/*---contact-from (responsive-design)---*/
@media only screen and (min-width: 1024px) {
	.fixtures5 	{display : none;}
	.predict3	{display : none;}
	#groupA th:first-child, #groupB th:first-child, #groupC th:first-child, #groupD th:first-child, #groupE th:first-child, #groupF th:first-child, #groupG th:first-child, #groupH th:first-child,
	#groupA td:first-child, #groupB td:first-child, #groupC td:first-child, #groupD td:first-child, #groupE td:first-child, #groupF td:first-child, #groupG td:first-child, #groupH td:first-child	{display : none;}
}
@media only screen and (min-width: 1366px) {
	.predicted5	{display : none;}
}
@media only screen and (max-width: 1366px) and (min-width: 1024px) {
	.predicted1, .predicted5	{display : none;}
}
@media only screen and (max-width: 1024px) and (min-width: 786px) {
	.fixtures1, .fixtures5 	{display : none;}
	.predict1, .predict3 {display : none;}
	.predicted1, .predicted2, .predicted5	{display : none;}
	#groupA th:first-child, #groupB th:first-child, #groupC th:first-child, #groupD th:first-child, #groupE th:first-child, #groupF th:first-child, #groupG th:first-child, #groupH th:first-child,
	#groupA td:first-child, #groupB td:first-child, #groupC td:first-child, #groupD td:first-child, #groupE td:first-child, #groupF td:first-child, #groupG td:first-child, #groupH td:first-child,
	#groupA th:nth-child(8), #groupB th:nth-child(8), #groupC th:nth-child(8), #groupD th:nth-child(8), #groupE th:nth-child(8), #groupF th:nth-child(8), #groupG th:nth-child(8), #groupH th:nth-child(8),
	#groupA td:nth-child(8), #groupB td:nth-child(8), #groupC td:nth-child(8), #groupD td:nth-child(8), #groupE td:nth-child(8), #groupF td:nth-child(8), #groupG td:nth-child(8), #groupH td:nth-child(8),
	#groupA th:nth-child(9), #groupB th:nth-child(9), #groupC th:nth-child(9), #groupD th:nth-child(9), #groupE th:nth-child(9), #groupF th:nth-child(9), #groupG th:nth-child(9), #groupH th:nth-child(9), 
	#groupA td:nth-child(9), #groupB td:nth-child(9), #groupC td:nth-child(9), #groupD td:nth-child(9), #groupE td:nth-child(9), #groupF td:nth-child(9), #groupG td:nth-child(9), #groupH td:nth-child(9),
	#groupA th:nth-child(11), #groupB th:nth-child(11), #groupC th:nth-child(11), #groupD th:nth-child(11), #groupE th:nth-child(11), #groupF th:nth-child(11), #groupG th:nth-child(11), #groupH th:nth-child(11), 
	#groupA td:nth-child(11), #groupB td:nth-child(11), #groupC td:nth-child(11), #groupD td:nth-child(11), #groupE td:nth-child(11), #groupF td:nth-child(11), #groupG td:nth-child(11), #groupH td:nth-child(11)	{display : none;}
}
@media only screen and (max-width: 786px) and (min-width: 480px) {
	.fixtures1, .fixtures2, .fixtures3, .fixtures5 	{display : none;}
	.predict1, .predict2 {display : none;}
	.predicted1, .predicted2, .predicted3, .predicted4	{display : none;}
	#groupA th:first-child, #groupB th:first-child, #groupC th:first-child, #groupD th:first-child, #groupE th:first-child, #groupF th:first-child, #groupG th:first-child, #groupH th:first-child,
	#groupA td:first-child, #groupB td:first-child, #groupC td:first-child, #groupD td:first-child, #groupE td:first-child, #groupF td:first-child, #groupG td:first-child, #groupH td:first-child,
	#groupA th:nth-child(4), #groupB th:nth-child(4), #groupC th:nth-child(4), #groupD th:nth-child(4), #groupE th:nth-child(4), #groupF th:nth-child(4), #groupG th:nth-child(4), #groupH th:nth-child(4), 
	#groupA td:nth-child(4), #groupB td:nth-child(4), #groupC td:nth-child(4), #groupD td:nth-child(4), #groupE td:nth-child(4), #groupF td:nth-child(4), #groupG td:nth-child(4), #groupH td:nth-child(4),
	#groupA th:nth-child(5), #groupB th:nth-child(5), #groupC th:nth-child(5), #groupD th:nth-child(5), #groupE th:nth-child(5), #groupF th:nth-child(5), #groupG th:nth-child(5), #groupH th:nth-child(5), 
	#groupA td:nth-child(5), #groupB td:nth-child(5), #groupC td:nth-child(5), #groupD td:nth-child(5), #groupE td:nth-child(5), #groupF td:nth-child(5), #groupG td:nth-child(5), #groupH td:nth-child(5), 
	#groupA th:nth-child(6), #groupB th:nth-child(6), #groupC th:nth-child(6), #groupD th:nth-child(6), #groupE th:nth-child(6), #groupF th:nth-child(6), #groupG th:nth-child(6), #groupH th:nth-child(6), 
	#groupA td:nth-child(6), #groupB td:nth-child(6), #groupC td:nth-child(6), #groupD td:nth-child(6), #groupE td:nth-child(6), #groupF td:nth-child(6), #groupG td:nth-child(6), #groupH td:nth-child(6), 
	#groupA th:nth-child(8), #groupB th:nth-child(8), #groupC th:nth-child(8), #groupD th:nth-child(8), #groupE th:nth-child(8), #groupF th:nth-child(8), #groupG th:nth-child(8), #groupH th:nth-child(8), 
	#groupA td:nth-child(8), #groupB td:nth-child(8), #groupC td:nth-child(8), #groupD td:nth-child(8), #groupE td:nth-child(8), #groupF td:nth-child(8), #groupG td:nth-child(8), #groupH td:nth-child(8), 
	#groupA th:nth-child(9), #groupB th:nth-child(9), #groupC th:nth-child(9), #groupD th:nth-child(9), #groupE th:nth-child(9), #groupF th:nth-child(9), #groupG th:nth-child(9), #groupH th:nth-child(9), 
	#groupA td:nth-child(9), #groupB td:nth-child(9), #groupC td:nth-child(9), #groupD td:nth-child(9), #groupE td:nth-child(9), #groupF td:nth-child(9), #groupG td:nth-child(9), #groupH td:nth-child(9),
	#groupA th:nth-child(11), #groupB th:nth-child(11), #groupC th:nth-child(11), #groupD th:nth-child(11), #groupE th:nth-child(11), #groupF th:nth-child(11), #groupG th:nth-child(11), #groupH th:nth-child(11), 
	#groupA td:nth-child(11), #groupB td:nth-child(11), #groupC td:nth-child(11), #groupD td:nth-child(11), #groupE td:nth-child(11), #groupF td:nth-child(11), #groupG td:nth-child(11), #groupH td:nth-child(11) 	{display : none;}
	.participants select{
		width: 100px !important;
		padding: 2px !important;
		word-wrap: break-word;
	}
}
@media only screen and (max-width: 480px) {
	.fixtures1, .fixtures2, .fixtures3, .fixtures4 	{display : none;}
	.predict1, .predict2 {display : none;}
	.predicted1, .predicted2, .predicted3, .predicted4	{display : none;}
	#groupA th:nth-child(2), #groupB th:nth-child(2), #groupC th:nth-child(2), #groupD th:nth-child(2), #groupE th:nth-child(2), #groupF th:nth-child(2), #groupG th:nth-child(2), #groupH th:nth-child(2), 
	#groupA td:nth-child(2), #groupB td:nth-child(2), #groupC td:nth-child(2), #groupD td:nth-child(2), #groupE td:nth-child(2), #groupF td:nth-child(2), #groupG td:nth-child(2), #groupH td:nth-child(2),
	#groupA th:nth-child(4), #groupB th:nth-child(4), #groupC th:nth-child(4), #groupD th:nth-child(4), #groupE th:nth-child(4), #groupF th:nth-child(4), #groupG th:nth-child(4), #groupH th:nth-child(4), 
	#groupA td:nth-child(4), #groupB td:nth-child(4), #groupC td:nth-child(4), #groupD td:nth-child(4), #groupE td:nth-child(4), #groupF td:nth-child(4), #groupG td:nth-child(4), #groupH td:nth-child(4),
	#groupA th:nth-child(5), #groupB th:nth-child(5), #groupC th:nth-child(5), #groupD th:nth-child(5), #groupE th:nth-child(5), #groupF th:nth-child(5), #groupG th:nth-child(5), #groupH th:nth-child(5), 
	#groupA td:nth-child(5), #groupB td:nth-child(5), #groupC td:nth-child(5), #groupD td:nth-child(5), #groupE td:nth-child(5), #groupF td:nth-child(5), #groupG td:nth-child(5), #groupH td:nth-child(5), 
	#groupA th:nth-child(6), #groupB th:nth-child(6), #groupC th:nth-child(6), #groupD th:nth-child(6), #groupE th:nth-child(6), #groupF th:nth-child(6), #groupG th:nth-child(6), #groupH th:nth-child(6), 
	#groupA td:nth-child(6), #groupB td:nth-child(6), #groupC td:nth-child(6), #groupD td:nth-child(6), #groupE td:nth-child(6), #groupF td:nth-child(6), #groupG td:nth-child(6), #groupH td:nth-child(6), 
	#groupA th:nth-child(8), #groupB th:nth-child(8), #groupC th:nth-child(8), #groupD th:nth-child(8), #groupE th:nth-child(8), #groupF th:nth-child(8), #groupG th:nth-child(8), #groupH th:nth-child(8), 
	#groupA td:nth-child(8), #groupB td:nth-child(8), #groupC td:nth-child(8), #groupD td:nth-child(8), #groupE td:nth-child(8), #groupF td:nth-child(8), #groupG td:nth-child(8), #groupH td:nth-child(8), 
	#groupA th:nth-child(9), #groupB th:nth-child(9), #groupC th:nth-child(9), #groupD th:nth-child(9), #groupE th:nth-child(9), #groupF th:nth-child(9), #groupG th:nth-child(9), #groupH th:nth-child(9), 
	#groupA td:nth-child(9), #groupB td:nth-child(9), #groupC td:nth-child(9), #groupD td:nth-child(9), #groupE td:nth-child(9), #groupF td:nth-child(9), #groupG td:nth-child(9), #groupH td:nth-child(9) 
	#groupA th:nth-child(10), #groupB th:nth-child(10), #groupC th:nth-child(10), #groupD th:nth-child(10), #groupE th:nth-child(10), #groupF th:nth-child(10), #groupG th:nth-child(10), #groupH th:nth-child(10), 
	#groupA td:nth-child(10), #groupB td:nth-child(10), #groupC td:nth-child(10), #groupD td:nth-child(10), #groupE td:nth-child(10), #groupF td:nth-child(10), #groupG td:nth-child(10), #groupH td:nth-child(10),
	#groupA th:nth-child(11), #groupB th:nth-child(11), #groupC th:nth-child(11), #groupD th:nth-child(11), #groupE th:nth-child(11), #groupF th:nth-child(11), #groupG th:nth-child(11), #groupH th:nth-child(11), 
	#groupA td:nth-child(11), #groupB td:nth-child(11), #groupC td:nth-child(11), #groupD td:nth-child(11), #groupE td:nth-child(11), #groupF td:nth-child(11), #groupG td:nth-child(11), #groupH td:nth-child(11)	{display : none;}
	.participants select{
		width: 100px !important;
		padding: 2px !important;
		word-wrap: break-word;
	}
}

/***** Media Queries *****/

/*----responsive-design-----*/
@media only screen and (max-width: 1680px) and (min-width: 1366px) {
	.gallery-grid {
		width: 31%;
	}
	.grid2 {
		margin: 0px 32px;
	}
	.digit {
		font-size: 8em;
		width: 19%;
	}
	.digit2 {
		width: 13%;
	}
	.digitInfo {
		font-size: 0.875em;
		letter-spacing: 0.475em;
	}
	.progressInfoCont {
		height: 10em;
	}
	.progressInfo {
		width: 4px;
	}
}
@media only screen and (max-width: 1366px) and (min-width: 1280px) {
	.bottom-grid2 ul li {
		width: 29.8%;
	}
	.gallery-grid {
		width: 31%;
	}
	.grid2 {
		margin: 0px 31px;
	}
	.dob{
		display:inline !important;
		width:15% !important;
	}
	.dobyear{
		display:inline !important;
		width:20% !important;
	}
	.digit {
		font-size: 7em;
		margin-top: -0.22em;
		width: 18%;
	}
	.digit2 {
		width: 12%;
	}
	.digitInfo {
		font-size: 0.8em;
		letter-spacing: 0.4em;
	}
	.progressInfoCont {
		height: 7.5em;
	}
	.progressInfo {
		width: 2.75px;
	}
}
@media only screen and (max-width: 1280px) and (min-width: 1024px) {
	.bottom-grid2 ul li {
		width: 29.8%;
	}
	.grid2 {
		margin: 0px 31px;
	}
	.gallery-grid {
		width: 30.6%;
	}
	.dob{
		display:inline !important;
		width:15% !important;
	}
	.dobyear{
		display:inline !important;
		width:20% !important;
	}
	.digit {
		font-size: 5.375em;
		width: 18%;
	}
	.digitYear {
		width: 5%;
	}
	.digit2 {
		width: 11%;
	}
	.digitInfo {
		font-size: 0.8em;
		letter-spacing: 0.4em;
	}
	.progressInfoCont {
		height: 7.5em;
	}
	.progressInfo {
		width: 2.75px;
	}
}
@media only screen and (max-width: 1024px) and (min-width: 768px) {
	.bottom-grid2 ul li {
		width: 46.5%;
	}
	.grid2 {
		margin: 0px 20px;
	}
	.gallery-grid {
		width: 29.7%;
	}
	.dob{
		display:inline !important;
		width:15% !important;
	}
	.dobyear{
		display:inline !important;
		width:20% !important;
	}
	.countdownInfo {
		font-family: Roboto;
		font-size: 4em;
	}
	.digit {
		font-size: 4.75em;
		width: 20%;
	}
	.digit2 {
		width: 13%;
	}
	.digitInfo {
		font-size: 0.7em;
		letter-spacing: 0.35em;
	}
	.progressInfoCont {
		height: 6em;
	}
	.progressInfo {
		width: 2px;
	}
}
@media only screen and (max-width: 768px) and (min-width: 640px) {
	.bottom-grid2 ul li {
		width: 45.5%
	}
	.grid2 {
		margin: 0px;
	}
	.gallery-grid {
		display: block;
		width: 100%;
	}
	.top-nav-right input[type="text"] {
		padding: 17.5px 0px;
	}
	.top-grid h3 {
		font-size: 1.5em;
	}
	.dob{
		display:inline !important;
		width:15% !important;
	}
	.dobyear{
		display:inline !important;
		width:20% !important;
	}
	.countdownInfo {
		font-family: Roboto;
		font-size: 4em;
	}
	.digit {
		font-size: 4em;
		width: 20%;
	}
	.digitYear {
		width: 5.5%;
	}
	.digit2 {
		width: 12.5%;
	}
	.digitInfo {
		font-size: 0.6em;
		letter-spacing: 0.3em;
	}
	.progressInfoCont {
		height: 5em;
	}
	.progressInfo {
		width: 2px;
	}
}

/*  GO FULL WIDTH AT LESS THAN 640 PIXELS */
@media only screen and (max-width: 640px) and (min-width: 480px) {
	.span_2_of_3 {
		width:94%;
		padding:3%; 
	}
	.col{ 
		margin: 1% 0 1% 0%;
	}
	.span_1_of_3 {
		width:94%;
		padding:3%; 
	}
	.compare {
		padding:3%; 
		display:block;
	}
	.gallery-grid {
		display: block;
		width: 100%;
	}
	.grid2 {
		margin: 0px;
	}
   
	.contact-form input[type="text"], .contact-form input[type="password"], .contact-form textarea {
		width:97%;
	}
	.contact-form select {
		width: 101%;
	}
	.dob{
		display:inline !important;
		width:15% !important;
	}
	.dobyear{
		display:inline !important;
		width:20% !important;
	}
	.countdownInfo {
		font-family: Roboto;
		font-size: 4em;
	}
	.digit {
		font-size: 3em;
		width: 20%;
	}
	.digitYear {
		width: 5.5%;
	}
	.digit2 {
		width: 12.5%;
	}
	.digitInfo {
		font-size: 0.5em;
		letter-spacing: 0.2em;
	}
	.progressInfoCont {
		height: 4em;
	}
	.progressInfo {
		width: 1.5px;
	}
}

/*  GO FULL WIDTH AT LESS THAN 480 PIXELS */
@media only screen and (max-width: 480px) {
	.gallery-grid {
		display: block;
		width: 100%;
	}
	.grid2 {
		margin: 0px;
	}
	.span_2_of_3 {
		width:90%;
		padding:5%; 
	}
	.col { 
		margin: 1% 0 1% 0%;
	}
	.span_1_of_3 {
		width:90%;
		padding:5%; 
	}
	.compare {
		padding:5%; 
		display:block;
	}
	.contact-form input[type="text"], .contact-form input[type="password"], .contact-form textarea{
		width:92%;
	}
	.contact-form select {
		width: 101%;
	}
	.dob{
		display:inline !important;
		width:15% !important;
	}
	.dobyear{
		display:inline !important;
		width:20% !important;
	}
	.countdownInfo {
		font-family: Roboto;
		font-size: 3em;
	}
	.digit {
		font-size: 2em;
		width: 20%;
	}
	.digitYear {
		width: 5%;
	}
	.digit2 {
		width: 11%;
	}
	.digitInfo {
		font-size: 0.5em;
		letter-spacing: 0.2em;
	}
	.progressInfoCont {
		height: 4em;
	}
	.progressInfo {
		width: 1.5px;
	}
	.contact-footer{
		border-top: 1px solid rgba(69, 69, 69, 0.13);
		padding: 28px 0px 0px 0px;
	}
}



@media only screen and (min-width: 769px) {
	.mobileSpace {
		display: none;
	}
}
@media only screen and (max-width: 768px) {
	.bottom-grid1 {
		display: block;
		width: 100%;
	}
	.top-grid {
		display: block;
		width: 100%;
	}
	.span_2_of_3 {
		width:94%;
		padding:3%; 
	}
	.col{ 
		margin: 1% 0 1% 0%;
	}
	.span_1_of_3 {
		width:94%;
		padding:3%; 
	}
	.compare {
		padding:3%; 
		display:block;
	}
	.gallery-2grid{
		display: block;
		width: 100%;
	}
}

.containerPoints {
	position: relative;
}
.containerPointsBox {
	z-index: 5; 
	position: absolute; 
	font-family: 'DIN Pro'; 
	font-size: 0.6em; 
	width: 27px; 
	float: right; 
	margin-top: -27px; 
	margin-left:40px;
}
.containerPointsGreen {
	color: #006100; 
}
.containerPointsYellow {
	color: #BF8F00; 
}
.containerPointsRed {
	color: #9C0006; 
}

/* DIV Graphs */
/* Percentile */
.graph-sector {
	font-family: Roboto;
	color: var(--grey-dark-variant);
}
.graph-white {
	clear: both;
	font-size: 0.875em;
	padding-top: 0.5em;
}
.prct {
	width: 1%;
	float: left;
	font-size: 1.25em;
}
.prct5 {
	width: 5%;
	float: left;
	text-align: right;
	font-weight: bold;
	font-size: 0.875em;
	font-family: 'DIN Pro', Roboto;
}
.graph-border {
	border-width: 2px 0px 2px 0px;
	border-style: solid;
}
.graph-color1 {
	border-color: #9C0006;
	background-color: #FFC7CE;
}
.graph-color2 {
	border-color: #C65911;
	background-color: #F8CBAD;
}
.graph-color3 {
	border-color: #BF8F00;
	background-color: #FFEB9C;
}
.graph-color4 {
	border-color: #006100;
	background-color: #C6EFCE;
}
.graph-color5 {
	border-color: #06648A;
	background-color: #CDF0FF;
}
.prct-part {
	box-shadow: inset 0 0 0 2px #555555;
	background-color: #C5C5C6;
	cursor: pointer;
}

/* PVA & H2H */
.graph-versus {
	float: left;
	width: 100%;
	font-family: Roboto;
	padding: 0.2em;
}
.graph-versus-hd-left {
	float: left;
	box-shadow:inset 0px 0px 0px 1px var(--main-primary-color-dark);
	background-color: var(--main-primary-color);
	height: 26px;
	font-size: 0.875em;
	line-height: 26px;
	margin-right: 3px;
	color:white; 
	width: 40%;
	padding: inherit;
}
.graph-versus-hd-right {
	float: left;
	box-shadow:inset 0px 0px 0px 1px var(--main-primary-color-medium);
	background-color: #347A95;
	height: 26px;
	font-size: 0.875em;	
	line-height: 26px; 
	color:white; 
	text-align:right; 
	width: 40%;
	padding: inherit;	
}
.graph-versus-nohd {
	float: left;
}
.graph-versus-clear {
	clear: both; 
	padding-top: 0.5em; 
	font-size: 0.1em;
}
.graph-versus-row-left {
	float: left; 
	box-shadow:inset 0px 0px 0px 1px var(--main-primary-color-dark); 
	background-color: var(--main-primary-color); 
	height: 23px; 
	line-height: 23px; 
	color:white; 
	font-size: 0.8em; 
	font-weight: bold; 
	font-family: 'DIN Pro'; 
	margin-right: 3px;
	padding: inherit;
}
.graph-versus-row-right {
	float: left; 
	box-shadow:inset 0px 0px 0px 1px var(--main-primary-color-medium); 
	background-color: #347A95; 
	height: 23px; 
	line-height: 23px; 
	color:white; 
	text-align:right; 
	font-size: 0.8em; 
	font-weight: bold; 
	font-family: 'DIN Pro'; 
	margin-right: 3px;
	padding: inherit;
}
.graph-versus-row-info {
	float: left; 
	height: 23px; 
	line-height: 23px; 
	padding: 0.2em; 
	width: 16%;
	font-size: 0.7em; 
	overflow: hidden; 
	white-space: nowrap; 
	text-overflow: ellipsis;
	padding: inherit;
	color: var(--grey-dark-variant);
}