@charset "utf-8";
/* Author: Niels Bosman, www.niels.to */

body {
	padding: 0;
	margin: 0;
	font-family: 'Exo', sans-serif;
	overflow-x: hidden;
	background: white;
}

body .container {
	transition: transform 0.68s cubic-bezier(0.64, 0.04, 0.35, 1) !important;
	-webkit-transition: transform 0.68s cubic-bezier(0.64, 0.04, 0.35, 1) !important;
	-moz-transition: transform 0.68s cubic-bezier(0.64, 0.04, 0.35, 1) !important;
	transform: translateX(0%) translateZ(0);
	-webkit-transform: translateX(0%) translateZ(0);
	-moz-transform: translateX(0%) translateZ(0);
}
body.open-menu {
	overflow: hidden !important;
}
body.open-menu .container,
body.open-menu .main-bottom-background svg,
body.open-menu .logo-background,
body.open-menu .slider {
	transform: translateX(-30%) translateZ(0);
	-webkit-transform: translateX(-30%) translateZ(0);
	-moz-transform: translateX(-30%) translateZ(0);
}
.main-bottom-background svg,
.logo-background,
.slider {
	transition: transform 0.68s cubic-bezier(0.64, 0.04, 0.35, 1) !important;
	-webkit-transition: transform 0.68s cubic-bezier(0.64, 0.04, 0.35, 1) !important;
	-moz-transition: transform 0.68s cubic-bezier(0.64, 0.04, 0.35, 1) !important;
}


* {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
img {
	max-width: 100%;
}
.container {
	width: 90%;
	max-width: 1050px;
	display: table;
	margin: 0 auto;
	position: relative;
	z-index: 999;
}

h1 { 
    display: block;
    font-size: 3em;
    margin-top: 0.67em;
    margin-bottom: 0.67em;
    margin-left: 0;
    margin-right: 0;
    font-weight: bolder;
    color: white;
}
h2 {
    display: block;
    font-size: 2.75em;
    margin-top: 0.83em;
    margin-bottom: 0.83em;
    margin-left: 0;
    margin-right: 0;
    font-weight: bold;
    color: #16294A;
}
h3 { 
    display: block;
    font-size: 2em;
    margin-top: 1em;
    margin-bottom: 1em;
    margin-left: 0;
    margin-right: 0;
    font-weight: bold;
    color: #16294A;
}
h4 { 
    display: block;
    margin-top: 1.33em;
    margin-bottom: 1.33em;
    margin-left: 0;
    margin-right: 0;
    font-weight: bold;
}
h5 { 
    display: block;
    font-size: .83em;
    margin-top: 1.67em;
    margin-bottom: 1.67em;
    margin-left: 0;
    margin-right: 0;
    font-weight: bold;
}
h6 { 
    display: block;
    font-size: .67em;
    margin-top: 2.33em;
    margin-bottom: 2.33em;
    margin-left: 0;
    margin-right: 0; 
    font-weight: bold;
}
p {
	font-size: 1em;
	line-height: 1.75em;
}
img {
	max-width: 100%;
}

strong, b {
	font-weight: bold;
}

::-webkit-input-placeholder {
	color: #3c5765;
	font-size: 12px;
	font-weight: 300;
	font-style: italic;
	text-transform: initial;
}

:-moz-placeholder { 
    color: #3c5765;
	font-size: 12px;
	font-weight: 300;
	font-style: italic;
	text-transform: initial;
}

::-moz-placeholder { 
  	color: #3c5765;
	font-size: 12px;
	font-weight: 300;
	font-style: italic;
	text-transform: initial;
}

:-ms-input-placeholder {  
   color: #3c5765;
	font-size: 12px;
	font-weight: 300;
	font-style: italic;
	text-transform: initial;
}

.button {
	display: inline-block;
	padding: 15px 30px;
	float: left;
	margin-top: 20px;
	border-radius: 30px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	text-decoration: none;
	font-weight: bold;
	font-size: 14px;
	text-transform: uppercase;
	transition: 0.5s;
	line-height: 1;
	overflow: hidden;
	position: relative;
}
.button-green {
	background: #09d026;
}
.button-blue {
	background: #0093FF;
	color: white;
}

.button-title {
	position: relative;
	transition: 0.3s;
	transition-timing-function: ease-in-out;
	top: 0;
	opacity: 1;
}
.button-hover {
	position: absolute;
	bottom: -50px;
	left: 45px;
	transition: 0.3s;
	transition-timing-function: ease-in-out;
	opacity: 0;
}

	.button:hover .button-title {
		top: -20px;
		opacity: 0;
	}
	.button:hover .button-hover {
		bottom: 15px;
		opacity: 1;
	}
	.button-play .button-hover {
		left: 30px;
	}



.button-line-blue {
    color: #0090ff;
    border: 1px solid #0090ff;
}
.grey-button {
	background: #bbbbbb !important;
}
.mobile-menu {
	display: none;
	width: 40px;
	height: 40px;
	float: right;
	padding: 10px 0 10px 15px;
	overflow: hidden;
	cursor: pointer;
}
  	.mobile-line {
		display: inline-block;
		width: 100%;
		height: 2px;
		float: left;
		background: white;
		margin-bottom: 5px;
		transition: 0.3s;
		-moz-transition: 0.3s;
		-o-transition: 0.3s;
		-webkit-transition: 0.3s;
		position: relative;
		top: 0;
  	}
    .menu-opened .mobile-line{
      transform-origin: center; 
    }
    .menu-opened .mobile-line:nth-child(1) {
      transform: rotate(40deg);
      top: 7px;
    }
    .menu-opened .mobile-line:nth-child(2) {
      transform: translateX(50px);
      opacity: 0;
    }
    .menu-opened .mobile-line:nth-child(3) {
      transform: rotate(-40deg);
      top: -7px;
    }

    .mobile-menu-open .mobile-line:nth-child(1) {
		top: 7px;
    }
    .mobile-menu-open .mobile-line:nth-child(3) {
		top: -7px;
    }

	.mobile-menu-close {
		width: 45px;
	    height: 50px;
	    float: right;
	    padding: 17px 10px 10px 10px;
	    overflow: hidden;
	    position: relative;
	    z-index: 999;
	}


	.mobile-menu-close .mobile-line {
		display: inline-block;
		width: 100%;
		height: 2px;
		float: left;
		background: white;
		margin-bottom: 0;
		transition: 0.3s;
		-moz-transition: 0.3s;
		-o-transition: 0.3s;
		-webkit-transition: 0.3s;
		position: relative;
		top: 12px;
	}
	
	.mobile-menu-close .mobile-line:nth-child(1) {
		transform: rotate(180deg);
		transform-origin: center;
	}
	.mobile-menu-close .mobile-line:nth-child(2) {
		display: none;
	}
	.mobile-menu-close .mobile-line:nth-child(3) {
		transform: rotate(180deg);
		transform-origin: center;
	}
	.mobile-menu-close-active .mobile-line:nth-child(1) {
		transform: rotate(40deg);
		transform-origin: center;
	}
	.mobile-menu-close-active .mobile-line:nth-child(3) {
		transform: rotate(-40deg);
		transform-origin: center;
		top: 10px;
	}
.mobile-play-menu {
	display: none;
}

.mobile-play-settings {
    display: none;
    float: right;
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    text-align: center;
    padding: 11px 0;
    margin-right: 10px;
    line-height: 1;
}
	.mobile-play-header .setting-item {
		float: right;
	}
	.mobile-play-settings:first-child {
		margin-right: 0;
	}

.mobile-header {
	display: none;
	float: left;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99999;
	padding: 10px 5% 10px 0;
	margin-bottom: 100px;
	transition: 0.5s;
	-webkit-transition: 0.5s;
}
	.mobile-header .logo {
		width: 50%;
		max-width: 200px;
		float: left;
		display: inline-block;
		position: relative;
	}
	.mobile-header .logo img {
	    max-width: 120px;
	    display: table;
	    margin: 0 auto;
	}
	.mobile-header .large-logo-background {
		display: inline-block;
	    top: -250%;
	    left: -5%;
	    height: 400%;
	    background: #d9112b;
	    width: 100%;
	    transform: rotate(5deg) skew(10deg);
	    border-radius: 50px;
	}

	.mobile-menu-section {
		position: fixed;
	    top: 0;
	    left: 0;
	    background: #142648;
	    width: 100%;
	    height: 100%;
	    opacity: 1;
	    -webkit-transform: translateX(100%) translateZ(0);
	    transition: transform 0.68s cubic-bezier(0.64, 0.04, 0.35, 1) !important;
	    padding: 10px 5%;
	    z-index: 999999999 !important;
	    overflow: auto;
	}
	.mobile-header-open {
	    opacity: 1;
	    -webkit-transform: translateX(0%) translateZ(0);
  	}

	.mobile-menu-section nav {
		position: relative;
		display: inline-block;
		width: 100%;
	}
	.mobile-menu-section nav a {
		color: white;
		text-decoration: none;
		font-size: 1.75rem;
		line-height: 3rem;
		display: inline-block;
		clear: both;
		float: left;
		font-weight: bold;
	}
	.mobile-menu-play-settings nav a {
		font-size: 1.25rem;
    	line-height: 3rem;
    	border-bottom: 2px dotted rgba(255, 255, 255, 0.2);
    	width: 100%;
    	text-transform: uppercase;
	}
	.mobile-menu-play-settings nav a i {
		width: 40px;
	}

	.mobile-menu-play-settings nav .active-setting {
		background: none;
	}
	.mobile-menu-section .game-statics {
		display: inline-block;
	}
	.game-statics-top {
		float: left;
		display: inline-block;
		width: 100%;
	}

	.game-statics-top .adslot_1 {
		max-width: 320px;
		display: table;
		float: none;
		margin: 0 auto;
		margin-top: 20px;
	}	

	.partner-ad {
		float: left;
		display: inline-block;
		width: 100%;
		max-width: 500px;
		max-height: 300px;
	}



.header-up {
	top: -100%;
}
.header-down {
	background: #15284b;
	/*height: 55px;*/
}




header {
	display: inline-block;
	width: 100%;
	position: relative;
	z-index: 2222;
	float: left;
	margin-bottom: 40px;
}

	header .logo {
		float: left;
		display: inline-block;
		width: 30%;
		position: relative;
	}
	header .logo a {
		color: white;
		text-decoration: none; 
	}
	header .logo img {
		width: 100%;
		max-width: 150px;
	}
	.logo-background {
		background: url(../img/head-background.svg) no-repeat;
		background-size: contain;
		position: absolute;
		width: 33.33%;
		height: 175px;
		left: 0;
		top: 0;
	}
	.large-logo-background {
		display: none;
		position: absolute;
	    width: 520px;
	    height: 305%;
	    left: -68.5%;
	    top: -25px;
	    background: url(../img/head-background-large.svg) no-repeat;
	    background-size: contain;
	    border-radius: 0 0 50% 50%;
	    z-index: -1;
	}
	header .header-menu {
		display: inline-block;
		float: left;
		margin-top: 10px;
		width: 70%;
	}
	header nav {
		float: left;
		display: inline-block;
		width: auto;
	}
	header .play-nav {
		margin-left: 69px;
	}

	header nav a {
		color: white;
		text-decoration: none;
		font-weight: bold;
		font-size: 18px;
		margin-left: 50px;
		text-transform: uppercase;   
		position: relative;
	}
	header nav a::after {
		content: '';
		width: 0;
		height: 3px;
		background: #d8112b;
		position: absolute;
		left: 0;
		bottom: -10px;
		transition: 0.3s;
		border-radius: 20px;
	}
	header nav a:hover::after {
		width: 100%;
	} 
	header nav a:first-child {
		margin-left: 0;
	}

	header .social-media {
		width: auto;
		float: right;
		display: inline-block;
		margin-right: 20px;
		font-size: 1.5rem;
	}
		header .social-media .media-item {
			float: right;
			margin-right: 20px;
		}
		header .social-icon {
			display: inline-block;
			border-radius: 50%;
			color: white;
			text-align: center;
			margin-left: 15px;
			float: right;
			transition: 0.3s;
		}
		header .social-icon:hover {
			color: #0090ff;
		}
	
	.header-donate-link {
		color: white;
		text-decoration: none;
		float: right;
		font-weight: bold;
		font-size: 18px;
    	text-transform: uppercase;
    	float: right;
    	border-radius: 25px;
    	margin-top: -16px;
    	transition: 0.3s;
		padding: 15px 30px;
    	border: 2px solid white;
		
/*		background: #09d026;
		border: none;
		padding: 17.5px 30px;*/
	}
	.header-donate-link:hover {
		background: #0090ff;
   	 	color: #ffffff;
    	border-color: #008dff;
	}
	header .header-language {
		float: right;
		display: inline-block;
		margin-right: 20px;
		position: relative;
	}	
		.language-current {
			display: inline-block;
			float: left;
			cursor: pointer;
		}
			.language-current img {
				border-radius: 20px;
				max-width: 30px;
				display: inline-block;
				float: left;
				border: 2px solid white;
				margin-bottom: 10px;
			}
			.language-current .drop-down-icon {
				width: 15px;
				height: 20px;
				display: inline-block;
				float: left;
				background: url(../img/arrow-down.svg) no-repeat;
				background-position: center;
				margin-top: 0;
				margin-left: 5px;
			}

		.language-options {
			position: absolute;
		    top: 32px;
		    left: 0;
		    background: white;
		    padding: 10px;
		    z-index: 99999999999999999;
		    border-radius: 10px;
		    box-shadow: 1px 1px 30px 0 #0000002b;
		    display: none;
		}
		.language-options img {
			border-radius: 20px;
		}

		.language {
			display: none !important;
		}

	.header-menu-ipad {
		display: none;
		float: right;
		border-right: 1px solid rgba(255, 255, 255, 0.5);
		padding-right: 20px;
		margin-right: 20px;
		margin-top: -5px;
	}
		.header-menu-ipad .header-donate-link {
			margin-top: -5px;
		}
		.header-menu-ipad .social-media {
			margin-top: 10px;
		}
	
.line-separator {
	width: 200px;
	height: 7px; 
	border-radius: 20px;
	display: inline-block;
	float: left;
	clear: both;
}
.line-red {
	background: #D71731;
}



main {
	display: inline-block;
	width: 100%;
	position: relative;
	background-position: center;
	background-size: cover;
	padding: 25px 0 0 0;
	float: left;
	background: #16294A url(../img/main-background.png) no-repeat; 
	background-position: center;
	background-size: contain;
	/*margin-bottom: 100px;*/
	z-index: 9999;
}
	main .score-block {
	    padding-right: 20px;
	    display: inline-block;
	    width: 100px;
	    /*margin-right: 25px;*/
	    font-weight: bold;
	    font-size: 3rem;
	    position: relative;
	    color: white;
	    margin-right: 20px;
	}
	main .score-block:last-child {
		padding-right: 0;
		width: 90px;
	}
	main .scores {
		display: inline-block;
		float: left;
	}
	main .scores span {
		opacity: 0;
	    transition: 1.5s;
	    position: relative;
	    float: left;
	    display: none;
	    /*padding-right: 35px;*/
	    /*text-align: center;*/
	    width: 100px;
	}
	main .score-block:nth-child(1) .scores span {
		border-right: 1px solid rgba(255, 255, 255, 0.25);
	}
	main .scores .active {
		opacity: 1;
		background: none;
		display: inline-block;
	}
	main #playcenter {
		display: table;
		width: 100%;
		margin: 0 auto;
		position: relative;
		z-index: 1;
	}
	main #intro {
		width: 50%;
		display: inline-block;
		float: left;
		position: relative;
		padding: 80px 0 80px 0;
	}
	main #intro h1 {
		font-size: 2.9rem;
	    line-height: 52px;
	    margin-bottom: 10px;
	    font-weight: bold;
	    color: white;
	}
	main #intro i {
		color: #ffc20a;
		font-size: 32px;
	}

	main .score-block-player {
		float: left;
		display: inline-block;
		width: 100%;
		color: white;
	}
	main .score-block-player .score-name-player:last-child {
		width: 80px;
	}
	main .score-block-player>div {
		float: left;
		width: 90px;
		text-align: center;
		/*margin-right: 20px;*/
	}
	main .score-name-player:nth-child(1) {
		margin-right: 35px;
	}
	.score-name-player .active-throwing {
		margin-left: 0;
		width: 12px;
		height: 12px;
	}
	
	main .play-main-logo {
		margin-top: 20px;
		display: inline-block;
		width: 100%;
		float: left;
		position: relative;
	}
	main .play-main-logo img {
		max-width: 40px;
	}


	.main-bottom-background {
	    position: relative;
	    display: inline-block;
	    width: 100%;
	    float: left;
	    margin-top: -125px;
	}	

	.main-bottom-background svg,
	.main-bottom-background path {
		float: left;
	}

main #start {
		display: inline-block;
		width: 40%; 
		float: right;
		background: white;
		border-radius: 40px;
		padding: 40px;
		position: absolute;
		top: 60px;
		box-shadow: 1px 1px 30px 0 rgba(0, 0, 0, 0.16);
		margin-top: -60px;
	} 

	main #start .input {
		display: inline-block;
		width: 100%;
		float: left;
		margin-bottom: 15px;
	}
		main #start .input input {
		    border: 3px solid white;
		    text-align: center;
		    width: 50%;
		    font-weight: bold;
		    color: white;
		    background: none;
		    float: left;
		}
			main #start .input select {
			    text-align: left;
			    text-align-last: left;
			    width: 50%; 
			    font-weight: bold;
			    outline: 0;
			    -webkit-appearance: none;
			    border: 3px solid white;
			    padding: 10px 20px;
				font-size: 14px;
				border-radius: 20px;
				background: white;
				color: #3d5866;
			}


			main #start .input label {
			    width: 40%;
			    float: left;
			    display: inline-block;
			    color: #16294a;
			    font-size: 12px; 
			    font-weight: 400;
			    margin-bottom: 10px;
			}
			main #start .input label span {
				font-size: 14px;
				transition: 0.3s;
				display: inline-block;
			}
			


			main #start .input label:first-child {
				margin-top: 15px;
			}
	

			main #start .input .input-dropdown {
				display: inline-block;
				float: left;
				position: relative;
			    font-size: 14px;
			    border-radius: 20px;
			    background: white;
			    color: #3d5866;
			    width: 100%;
			}
			main #start .input .input-dropdown i {
				position: absolute;
				right: 20px;
				top: 12.5px;
				font-size: 20px;
				font-weight: bold;
				pointer-events: none;
				color: #3d5865;
			}
			

			main #start .game-number,
			main #start .input button, 
			main #start .input input {
				box-shadow: 1px 3px 5px 0 #EDEDED;
				border: 1px solid #e0e0e0 !important;
			    padding: 10px 20px !important;
			}
			main #start .input .input-dropdown {
				box-shadow: 1px 3px 5px 0 #EDEDED;
				border: 1px solid #e0e0e0 !important;
			}




			main #start .game-number {
				padding: 5px 10px !important;
			}
			main #start .game-number label {
				margin-bottom: 0;
			}

			main #start .input .button {
				width: 100% !important;
				background: #0093FF !important; 
				display: inline-block;
				float: right;
				border: 0 !important;
				color: white !important;
				font-weight: bold !important; 
				outline: 0;
				cursor: pointer;
				font-size: 14px;
				padding: 20px 20px !important;
				text-align: center;
				text-decoration: none; 
				-webkit-appearance: none;
				text-transform: uppercase;
				transition: 0.3s;
				/*-webkit-animation-name: shake;
				-webkit-animation-duration: 1s;
				-webkit-animation-fill-mode: both;
				-webkit-animation-iteration-count: 1;
				-webkit-animation-timing-function: cubic-bezier(.36,.07,.19,.97);
				-webkit-animation-delay: 3s;
				-webkit-transform-origin: center;*/
			}
			main #start .input .button:hover {
				opacity: 0.9;
			}

 
			@-webkit-keyframes shake {
				10%, 90% {
					transform: translate3d(-1px, 0, 0) scale(1.02);
				}
			  	20%, 80% {
			   	 	transform: translate3d(2px, 0, 0) scale(1);
			  	}
			  	30%, 50%, 70% {
			    	transform: translate3d(-2px, 0, 0) scale(1.03);
			  	}
			  	40%, 60% {
			    	transform: translate3d(2px, 0, 0) scale(1);
			  	}
			  	100% {
			  		transform: translate3d(-1px, 0, 0) scale(1);
			  	}
			}


			/* AB testing */
			main #start .button-green {
				background: rgb(1,201,83) !important; 
			}
			main #start .button-orange {
				background: #ffaa00 !important; 
			}
			/* AB testing */


			main #start .input button,
			main #start .input input {
				padding: 10px 10px;
				font-size: 14px;
				border-radius: 20px;
				background: white;
				color: #3d5866;
			} 

			

			main #start .input button,
			main #start .input input,
			main #start .input select,
			main #start .game-number,
			main #start .switch-field {
				width: 60%;
			}

			main #start #start-sets {
				width: 48%;
				margin-right: 2%;
				float: left;
			}
			main #start #start-leg {
				/*width: 100%;*/
				width: 50%;
				float: left;
			}
			main #start #start-sets label, 
			main #start #start-sets select, 
			main #start #start-leg label,
			main #start #start-leg select {
				width: 100%;
			}

			main #start #start-sets label, 
			main #start #start-leg label {
				margin-top: 0;
			}

			main #start .input select:checked {
				background: white;
			}
			main #start .game-title {
			  margin-bottom: 6px;
			}

			main #start .game-number {
				border: 3px solid white;
			    display: inline-block;
			    border-radius: 20px;
			    width: 100%;
			    float: left;
			}
			
			main #start #game-type label, 
			main #start #game-type input {
				width: 100%;
			}
			
			/* Players name styling */
			main #start .player-names {
				position: relative;
				display: none;
			}
			main #start .player-names label {
				display: inline-block;
				margin-bottom: 10px;
				position: absolute;
				left: 20px;
				top: 22px;
				z-index: 0;
				transition: 0.2s;
				color: rgba(21, 39, 75, 0.4);
				pointer-events: none!important;
				text-align: left;
				width: 70%;
		    }
			main #start .player-names input {
		    	width: 100%;
		    	padding: 10px;
		    	border: 1px solid #e1e1e1; 
		    	float: left;
		    	display: inline-block;
		    	z-index: 99;
		    	padding-top: 25px !important;
		    	font-size: 16px;
		    	text-align: left;
		    	color: #3d5866;
		    	box-shadow: 1px 1px 0 #eff2f3 inset;

		    }
		    main #start .player-title {
		    	margin-bottom: 0;
		    }
		    main #start .player-names input:focus~label,
		    .input-active {
		      	top: 10px !important;
		      	font-size: 12px;
		      	color: #16294a;
		    }

			main #start .input-drag {
				height: 50px;
				width: 7.5%;
				/*background: red;*/
				float: left;
				cursor: -webkit-grab;
				background: url(../img/drag.svg) no-repeat;
				background-repeat: no-repeat;
				background-position: center;
				background-size: 80%;
			}
			main #start .input-text {
				position: relative;
				float: left;
				width: 80%;
			}

			main #start .player-names:nth-child(2) input, 
			main #start .player-names:nth-child(3) input, 
			main #start .player-names:nth-child(4) input {
				width: 87.5%;
			}
			main #start .player-names .input-remove {
				width: 12.5%;
				float: left;
				display: inline-block;
			}
			main #start .player-names .input-remove i {
				width: 100%;
				float: right;
				display: inline-block;
				cursor: pointer;
				border-radius: 50%;
			    height: 30px;
			    width: 30px;
			    padding: 7.5px 0;
			    border: 1px solid #e0e0e0 !important;
			    font-size: 14px;
			    display: inline-block;
			    text-align: center;
			    transition: 0.3s;
			}
			main #start .player-names .input-remove i:hover {
				background: rgba(224, 224, 224, 0.25);
			}
			main #start .player-names .input-remove .remove-user {
				color: #d9112b;
			    margin-top: 15px;
			    background: white;
			}
			main #start .player-names .input-remove .add-user {
			    color: rgba(1,201,83,1);
			}

			main #start .player-name-inactive {
				display: none !important;
			}
			
			main #start .add-a-new-user {
				display: none;
				font-size: 14px;
				border-radius: 20px;
				color: #0093FF !important;
				cursor: pointer;
				padding: 10px 0;
			}
			/*main #start .add-a-new-user::before {
				content: 'NEW';
			    display: inline-block;
			    color: white;
			    padding: 5px 10px;
			    border-radius: 7.5px;
			    background: #0493ff;
			    font-size: 10px;
			    margin-top: -5px;
			    float: left;
			    margin-right: 10px;
			}*/

			main .add-a-new-user:hover {
				text-decoration: underline;
			}

			main #start .active-add-new-user {
				display: inline-block;
			}
			main #start .player-active {
				display: inline-block;
			}

			

			/* END Players name styling */

			main #start .game-number input {
			  display: none;
			}

			main #start .game-number label {
				display: inline-block;
				width: 20% !important;
				color: #3d5866;
				font-size: 14px;
				font-weight: normal;
				text-align: center;
				text-shadow: none;
				padding: 8px 0 !important;
				-webkit-transition: all 0.1s ease-in-out;
				-moz-transition:    all 0.1s ease-in-out;
				-ms-transition:     all 0.1s ease-in-out;
				-o-transition:      all 0.1s ease-in-out;
				transition:         all 0.1s ease-in-out;
				font-weight: bold;
				font-size: 14px !important;
				text-transform: uppercase;
				float: left;
			}

			main #start .game-number label:hover {
			    cursor: pointer;
			}

			main #start .game-number input:checked + label {
				background-color: #0093FF;
				color: white;
				border-radius: 30px;
				padding: 8px 0 !important;
				border: 0;
			}

			main #start  .game-number label:first-of-type {
				border-radius: 30px;
			}

			.game-number label:last-of-type {
			  	border-radius: 30px;
			}


.home-about {
	display: inline-block;
	float: left;
	width: 100%;
	position: relative;
	/*margin: 0 0 40px 0;*/
	background: white;
}

	.home-about .home-about-image {
		position: relative;
		left: -40%;
		top: 0;
		width: 80%;
	}
	.home-about-text {
		width: 50%;
		position: absolute;
		top: 50%;
		right: 0;
		transform: translateY(-50%);
	}
	.home-about-text h2 {
		margin-bottom: 0.5em;
		margin-top: 0;
	}
	.home-about-text p {
		display: inline-block;
		margin-top: 1.5em;
		color: #16294A;
	}


.home-explain {
	display: inline-block;
	float: left;
	width: 100%;
	position: relative;
	margin: 40px 0 40px 0;
	overflow: hidden;
	/*background: white;*/
}

	.home-mockup-devices {
		margin: 0 0 -100px 0 !important; 
	}

	.home-explain .home-explain-image {
		position: relative;
		right: -40%;
		top: 0;
		width: 80%;
	}
	.home-explain-text {
		width: 40%;
		position: absolute;
		top: 50%;
		left: 0;
		transform: translateY(-50%);
	}
	.home-explain-text h2 {
		margin-bottom: 0.5em;
		margin-top: 0;
	}
	.home-explain-text p {
		display: inline-block;
		margin-top: 1.5em;
		color: #16294A;
	}


	






	
	
	
	











.share {
	display: inline-block;
	width: 33.33%;
	float: left;

}
.share-img {
	display: table;
	margin: 0 auto;
}
.share-item {
	width: 100%;
	float: left;
	display: inline-block;
}
.share-item a {
	border-radius: 5px;
	color: white;
	text-decoration: none;
	display: table;
    margin: 0 auto;
    float: left;
    margin-bottom: 10px;
    font-weight: bold;
    width: 100%;
}
.share-item span {
	display: inline-block;
	padding: 10px 8px 5px 5px;
    float: left;
    font-size: 12px;
    height: 30px;
    width: 80%;
}
.share-facebook span {
	background: #3b5998;
}
.share-facebook .icon {
	/*background: #26488e;*/
}
.share-twitter span {
	background: #4099FF;
}
.share-twitter .icon {
	/*background: #2388fb;*/
}
.share-email span {
	background: #ffc50a;
}
.share-email .icon {
	/*background: #e2ad00;*/
}
.share-item .icon {
	border-radius: 3px 0px 0px 3px;
	width: 18px;
}
.text-share {
	border-radius: 0px 3px 3px 0px;
}
.text-share {
	padding: 10px 15px;
}
.clear-line { display: inline-block; width: 100%; float: left; }

.switch-field {
	border: 3px solid white;
    display: inline-block;
    border-radius: 30px;
    width: 50%;
    float: left;
}
.switch-title {
  margin-bottom: 6px;
}

.switch-field input {
  display: none;
}

.switch-field label {
  float: left;
}

.switch-field label {
	display: inline-block;
	width: 50%;
	color: white;
	font-size: 14px;
	font-weight: normal;
	text-align: center;
	text-shadow: none;
	padding: 15px 14px;
	-webkit-transition: all 0.1s ease-in-out;
	-moz-transition:    all 0.1s ease-in-out;
	-ms-transition:     all 0.1s ease-in-out;
	-o-transition:      all 0.1s ease-in-out;
	transition:         all 0.1s ease-in-out;
	font-weight: bold;
	font-size: 14px !important;
	text-transform: uppercase;
}

.switch-field label:hover {
    cursor: pointer;
}

.switch-field input:checked + label {
  background-color: white;
  color: #1b8caf;
  -webkit-box-shadow: 2px 3px 5px 0px rgba(0, 0, 0, 0.4);

}

.switch-field label:first-of-type {
	border-radius: 30px;
}

.switch-field label:last-of-type {
  	border-radius: 30px;
}





 





.line {
	display: inline-block;
	width: 100%;
	height: 2px; 
	background: white;
	float: left;
	margin-top: 6px;
}
.line:first-child {
	margin-top: 0;
}



/* ========= Play screen ======== */
.playing-game .background {
	position: relative;
}

.play-screen {
	display: inline-block;
	width: 100%;
	padding: 25px 0 0 0;
	background: #16294A;
	float: left;
}
	.play-screen header {
		margin-bottom: 20px;
	}

	.play-area {
		display: inline-block;
		float: left;
		width: 100%;
		border-top: 1px solid rgba(255, 255, 255, 0.05);
	}




.throw-summary {
	display: inline-block;
	width: 100%;
	float: left;
	position: relative;
}

	.throw-content {
		display: inline-block;
		width: 100%;
		float: left;
	}
	
	.throw-mobile-screen {
		display: none;
		position: absolute;
		left: 0;
		top: 50%;
		width: 50%;
		transform: translateY(-50%);
	}
	.throw-mobile-score {
		font-size: 3rem;
		color: white;
		font-weight: bold;
		line-height: 1;
		text-align: center;
		text-transform: uppercase;
	}
	.throw-mobile-name-active {
		display: table;
		margin: 0 auto;
	}
		.throw-mobile-name-active .throwing { 
			float: right;
		}
	.throw-mobile-name {
		font-size: 16px;
		color: white;
		font-weight: bold;
		line-height: 1;
		text-align: center;
		text-transform: uppercase;
		margin-top: 5px;
	}
	.throw-content {
		width: 100%;
		float: right;
	}


	/* ============== ONE PLAYER ============== */
	.player-1-column {
		width: 50%;
		float: left;
		display: inline-block;
	}

	.player-1-column:nth-child(2) {
		padding: 10px 5%;
	}
	.player-1-column:nth-child(2) .pop-news-link {
		margin: 0 auto;
		max-width: 95%;
	}

	.player-1-column .adsbygoogle {
		width: 300px;
		height: 600px;
		display: table;
		margin: 0 auto;
	}


 

	.one-player-game .throw-info {
		width: 100%;
		float: left;
		display: inline-block;
		margin: 0 0;
		position: relative;
	}
		.one-player-game .throw-info-1 {
			border-right: 2px dotted rgba(255, 255, 255, 0.2);
		}

		.one-player-game .top-info {
			display: table;
		    margin: 0 auto;
		    background: rgba(255, 255, 255, 0.05);
		    padding: 20px 30px;
		    color: white;
		    text-transform: uppercase;
		    font-size: 14px;
		    border-radius: 0 0 30px 30px;
		}

	.one-player-game .input-scores {
		width: 100%;
		float: left;
		clear: both;
		display: inline-block;
		padding: 20px 0;
		border-top: 2px dotted rgba(255, 255, 255, 0.2);
		border-bottom: 2px dotted rgba(255, 255, 255, 0.2);
		margin-top: 20px;
	}
		.one-player-game .input-score {
			width: 100%;
			float: left;
			padding: 10px 30px;
		}

		.one-player-game .input-score-1 {
			border-right: 2px dotted rgba(255, 255, 255, 0.2);
		}

		.one-player-game .input-score-1 input {
			float: right;
		}
		.one-player-game .input-score-2 input {
			float: left !important;
		}
		.one-player-game .input-score input {
			float: right;
		    border-radius: 30px;
		    border: 0;
		    padding: 15px 20px;
		    text-align: center;
		    font-weight: bold;
		    font-size: 18px;
		    display: inline-block;
		    -webkit-appearance: none;
		    width: 30%;
		    color: #3c5866;
		}
		.one-player-game .reset {
			display: none;
			padding: 15px 20px;
			color: white;
			cursor: pointer;
		}
		.one-player-game .reset-last {
			display: none;
			padding: 15px 20px;
			color: white;
			cursor: pointer;
		}
		.one-player-game .input-score-1 .reset {
			float: right;  
		}
		.one-player-game .input-score-1 .reset-last {
			float: right;  
		}

	.one-player-game .game-statics {
		display: inline-block;
		float: left;
		width: 100%;
		padding: 40px 0;
	}	
		.one-player-game .player-statics {
			width: 100%;
			float: left;
			display: inline-block;
			min-height: 200px;   
		}

		.one-player-game .player-statics-1,
		.one-player-game .game-info-1 {
			border-right: 2px dotted rgba(255, 255, 255, 0.2);
		}

		.one-player-game .throw-score {
			display: inline-block;
			float: left;
			width: 50%;
		}

		.one-player-game .game-info-2 {
			float: right !important;
		}
		.one-player-game .throw-score-1 .total-score {
			float: right;
		}
		.one-player-game .throw-score-2 .total-score {
			float: left;
		}
		.one-player-game .total-score {
			color: white;
			font-weight: bold;
			display: inline-block;
			width: 30%;
		}
		.one-player-game .total-throw {
			color: rgba(255, 255, 255, 0.45);
			font-style: italic;
			display: inline-block;
			width: 50%;
		}
		
		.one-player-game .throw-amount {
			width: 50%;
			float: left;
			color: rgba(255, 255, 255, 0.45);
			line-height: 20px;
		}
		.one-player-game .throw-score-1 .throw-amount {
			width: 100%;
			display: inline-block;
			float: right;
			text-align: right;
			padding-right: 50px;
		}
		.one-player-game .throw-score-2 .throw-amount {
			width: 100%;
			display: inline-block;
			float: left;
			padding-left: 50px;
		}
		
		.one-player-game .last-score {
			width: 50%;
			float: left;
			display: inline-block;
			color: white;
			font-weight: bold;
			text-align: center;
		}

		.one-player-game .game-info {
			width: 50%;
			float: left;
			display: inline-block;
		}
		.one-player-game .game-info h3 {
			color: white;
			text-transform: uppercase;
			margin-top: 0;
			margin-bottom: 10px;
			font-size: 1.25rem;
		}
		.one-player-game .game-info-2 {
			border-left: 2px dotted rgba(255, 255, 255, 0.2);
		}
		.one-player-game .game-info-2 .statics-box {
			margin-left: 10%;
		}

		.one-player-game .computer-input[disabled] {
			background: none;
		    height: 0;
		    padding: 0;
		    overflow: hidden;
		    width: 1px;
		    margin-bottom: 0;
		}

	.one-player-game .to-throw {
		width: 60%;
		display: inline-block;
		float: left;
		text-align: center;
	}		
		.one-player-game .to-throw-1 {
			padding-left: 15%;
		}
		.one-player-game .to-throw-2 {
			padding-right: 15%;
			float: right;
		}
		.one-player-game .match-details {
			width: 40%;
			float: left;
			display: inline-block;
			padding: 20px 20px; 
		}
		.one-player-game .match-detail-1 {
			float: left;
		}
		.one-player-game .legs {
			width: 50%;
			float: left;
			display: inline-block;
			text-align: center;
			color: white;
			font-weight: bold;
			font-size: 20px;
			text-transform: uppercase;
		}
		.one-player-game .legs p {
			margin-bottom: 20px;
		}
		.one-player-game .leg-1,
		.one-player-game .set-1 {
			float: right; 
		}
		.one-player-game .set-1 {
			float: right !important;
		}
		.one-player-game .sets {
			width: 50%;
			float: left;
			display: inline-block;
			text-align: center;
			color: white;
			font-weight: bold;
			font-size: 20px;
			text-transform: uppercase;
		}
		.one-player-game .sets p {
			margin-bottom: 20px;
		}

		.one-player-game .amount-player {
			font-size: 100px;
			font-weight: 900;
			margin: 0;
		}
		.one-player-game .player-name {
			text-transform: uppercase;
			color: white;
			font-weight: bold;
			margin: 10px;
			font-size: 16px;
			display: table;
			margin: 0 auto;
		}




	/* ============== END ONE PLAYERS ============== */	
	
	/* ============== TWO PLAYERS ============== */	
	.two-players-game .throw-info {
		width: 50%;
		float: left;
		display: inline-block;
		margin: 0 0;
	}
		.two-players-game .throw-info-1 {
			border-right: 2px dotted rgba(255, 255, 255, 0.2);
		}
		.two-players-game .top-info {
			display: table;
		    margin: 0 auto;
		    background: rgba(255, 255, 255, 0.05);
		    padding: 20px 30px;
		    color: white;
		    text-transform: uppercase;
		    font-size: 14px;
		    border-radius: 0 0 30px 30px;
		}
	
	.two-players-game .input-scores {
		width: 100%;
		float: left;
		display: inline-block;
		padding: 20px 0;
		border-top: 2px dotted rgba(255, 255, 255, 0.2);
		border-bottom: 2px dotted rgba(255, 255, 255, 0.2);
		margin-top: 20px;
	}
		.two-players-game .input-score {
			width: 50%;
			float: left;
			padding: 10px 30px;
		}

		.two-players-game .input-score-1 {
			border-right: 2px dotted rgba(255, 255, 255, 0.2);
		}

		.two-players-game .input-score-1 input {
			float: right;
		}
		.two-players-game .input-score-2 input {
			float: left !important;
		}
		.two-players-game .input-score input {
			float: right;
		    border-radius: 30px;
		    border: 0;
		    padding: 15px 20px;
		    text-align: center;
		    font-weight: bold;
		    font-size: 18px;
		    display: inline-block;
		    -webkit-appearance: none;
		    width: 30%;
		    color: #3c5866;
		}
		.two-players-game .reset {
			display: none;
			padding: 15px 20px;
			color: white;
			cursor: default;
		}
		.two-players-game .reset-last {
			display: none;
			padding: 15px 20px;
			color: white;
			cursor: default;
		}
		.two-players-game .input-score-1 .reset {
			float: right;  
		}
		.two-players-game .input-score-1 .reset-last {
			float: right;  
		}


	.two-players-game .game-statics {
		display: inline-block;
		float: left;
		width: 100%;
		padding: 40px 0;
	}	
		.two-players-game .player-statics {
			width: 50%;
			float: left;
			display: inline-block;
			min-height: 200px;   
		}

		.two-players-game .player-statics-1,
		.two-players-game .game-info-1 {
			border-right: 2px dotted rgba(255, 255, 255, 0.2);
		}

		.two-players-game .throw-score {
			display: inline-block;
			float: left;
			width: 50%;
		}

		.two-players-game .game-info-2 {
			float: right !important;
		}
		.two-players-game .throw-score-1 .total-score {
			float: right;
		}
		.two-players-game .throw-score-2 .total-score {
			float: left;
		}
		.two-players-game .total-score {
			color: white;
			font-weight: bold;
			display: inline-block;
			width: 30%;
		}
		.two-players-game .total-throw {
			color: rgba(255, 255, 255, 0.45);
			font-style: italic;
			display: inline-block;
			width: 50%;
		}
		
		.two-players-game .throw-amount {
			width: 50%;
			float: left;
			color: rgba(255, 255, 255, 0.45);
			line-height: 20px;
		}
		.two-players-game .throw-score-1 .throw-amount {
			width: 100%;
			display: inline-block;
			float: right;
			text-align: right;
			padding-right: 50px;
		}
		.two-players-game .throw-score-2 .throw-amount {
			width: 100%;
			display: inline-block;
			float: left;
			padding-left: 50px;
		}
		
		.two-players-game .last-score {
			width: 50%;
			float: left;
			display: inline-block;
			color: white;
			font-weight: bold;
			text-align: center;
		}

		.two-players-game .game-info {
			width: 50%;
			float: left;
			display: inline-block;
		}
		.two-players-game .game-info h3 {
			color: white;
			text-transform: uppercase;
			margin-top: 0;
			margin-bottom: 10px;
			font-size: 1.25rem;
		}
		.two-players-game .game-info-2 {
			border-left: 2px dotted rgba(255, 255, 255, 0.2);
		}
		.two-players-game .game-info-2 .statics-box {
			margin-left: 10%;
		}

	.two-players-game .computer-input[disabled] {
		background: none;
	    height: 0;
	    padding: 0;
	    overflow: hidden;
	    width: 1px;
	    margin-bottom: 0;
	}

	.two-players-game .to-throw {
		width: 60%;
		display: inline-block;
		float: left;
		text-align: center;
	}		
		.two-players-game .to-throw-1 {
			padding-left: 15%;
		}
		.two-players-game .to-throw-2 {
			padding-right: 15%;
			float: right;
		}
		.two-players-game .match-details {
			width: 40%;
			float: left;
			display: inline-block;
			padding: 20px 20px; 
		}
		.two-players-game .match-detail-1 {
			float: left;
		}
		.two-players-game .legs {
			width: 50%;
			float: left;
			display: inline-block;
			text-align: center;
			color: white;
			font-weight: bold;
			font-size: 20px;
			text-transform: uppercase;
		}
		.two-players-game .legs p {
			margin-bottom: 20px;
		}
		.two-players-game .leg-1,
		.two-players-game .set-1 {
			float: right; 
		}
		.two-players-game .set-1 {
			float: right !important;
		}


		.two-players-game .sets {
			width: 50%;
			float: left;
			display: inline-block;
			text-align: center;
			color: white;
			font-weight: bold;
			font-size: 20px;
			text-transform: uppercase;
		}
		.two-players-game .sets p {
			margin-bottom: 20px;
		}

		.two-players-game .amount-player {
			font-size: 100px;
			font-weight: 900;
			margin: 0;
		}
		.two-players-game .player-name {
			text-transform: uppercase;
			color: white;
			font-weight: bold;
			margin: 10px;
			font-size: 16px;
			display: table;
			margin: 0 auto;
		}

	/* ============== END TWO PLAYERS ============== */	


	/* ============== TTHREE PLAYERS ============== */	
	.three-players-game .throw-info {
		width: 33.33%;
		float: left;
		display: inline-block;
		margin: 0;
		margin-top: 20px;
	}
		.three-players-game .throw-info-1,
		.three-players-game .throw-info-2 {
			border-right: 2px dotted rgba(255, 255, 255, 0.2);
		}
		.three-players-game .top-info {
			display: table;
		    margin: 0 auto;
		    background: rgba(255, 255, 255, 0.05);
		    padding: 20px 30px;
		    color: white;
		    text-transform: uppercase;
		    font-size: 14px;
		    border-radius: 0 0 30px 30px;
		}
	
	.three-players-game .input-scores {
		width: 100%;
		float: left;
		display: inline-block;
		padding: 20px 0;
		border-top: 2px dotted rgba(255, 255, 255, 0.2);
		border-bottom: 2px dotted rgba(255, 255, 255, 0.2);
		margin-top: 20px;

	}
		.three-players-game .input-score {
			width: 33.33%;
			float: left;
			padding: 10px 30px;
			min-height: 70px;
		}

		.three-players-game .input-score-1, 
		.three-players-game .input-score-2 {
			border-right: 2px dotted rgba(255, 255, 255, 0.2);
		}

		.three-players-game .input-score input {
			float: none;
		    border-radius: 30px;
		    border: 0;
		    padding: 15px 20px;
		    text-align: center;
		    font-weight: bold;
		    font-size: 18px;
		    display: table;
		    margin: 0 auto;
		    -webkit-appearance: none;
		    width: 50%;
		    color: #3c5866;
		}
		.three-players-game .reset {
			display: none;
			padding: 15px 20px;
			color: white;
			cursor: pointer;
			margin: 0 auto;
		}
		.three-players-game .reset-last {
			display: none;
			padding: 15px 20px;
			color: white;
			cursor: pointer;
		}
		
		.three-player-game .throw-out-options {
			margin-bottom: 10px;
		}


	.three-players-game .game-statics {
		display: inline-block;
		float: left;
		width: 100%;
		padding: 40px 0;
	}	
		.three-players-game .player-statics {
			width: 33.33%;
			float: left;
			display: inline-block;
			min-height: 200px;   
		}

		.three-players-game .throw-score {
			display: inline-block;
			float: left;
			width: 50%;
		}

		.three-players-game .game-info-2 {
			float: left !important;
		}
		.three-players-game .throw-score-1 .total-score {
			float: right;
		}
		.three-players-game .throw-score-2 .total-score {
			float: left;
		}
		.three-players-game .total-score {
			color: white;
			font-weight: bold;
			display: inline-block;
			width: 30%;
		}
		.three-players-game .total-throw {
			color: rgba(255, 255, 255, 0.45);
			font-style: italic;
			display: inline-block;
			width: 50%;
		}
		
		.three-players-game .throw-amount {
			width: 50%;
			float: left;
			color: rgba(255, 255, 255, 0.45);
			line-height: 20px;
		}
		.three-players-game .throw-score-1 .throw-amount {
			width: 100%;
			display: inline-block;
			float: right;
			text-align: right;
			padding-right: 50px;
		}
		.three-players-game .throw-score-2 .throw-amount {
			width: 100%;
			display: inline-block;
			float: left;
			padding-left: 50px;
		}
		
		.three-players-game .last-score {
			width: 50%;
			float: left;
			display: inline-block;
			color: white;
			font-weight: bold;
			text-align: center;
		}

		.three-players-game .game-info {
			width: 100%;
			float: left;
			display: inline-block;
		}
		.three-players-game .game-info h3 {
			color: white;
			text-transform: uppercase;
			margin-top: 0;
			margin-bottom: 10px;
			font-size: 1.25rem;
		}
		.three-players-game .game-info-2,
		.three-players-game .game-info-3 {
			border-left: 2px dotted rgba(255, 255, 255, 0.2);
		}

		.three-players-game .game-info-1 .statics-box { 
			padding-right: 10%;
		}

		.three-players-game .game-info-2 .statics-box {
			padding-left: 10%;
			padding-right: 10%;
		}

		.three-players-game .game-info-3 .statics-box { 
			padding-left: 10%;
		}	

		


	.three-players-game .computer-input[disabled] {
		background: none;
	    height: 0;
	    padding: 0;
	    overflow: hidden;
	    width: 1px;
	    margin-bottom: 0;
	}

	.three-players-game .to-throw {
		width: 100%;
		display: inline-block;
		float: left;
		text-align: center;
	}		

		.three-players-game .to-throw-2 {
			float: right;
		}
		.three-players-game .match-details {
			width: 100%;
			float: left;
			display: inline-block;
			/*padding: 20px 20px; */
		}
		.three-players-game .legs {
			display: table;
			margin: 0 auto;
			text-align: center;
			color: white;
			font-weight: bold;
			font-size: 20px;
			text-transform: uppercase;
		}
		.three-players-game .legs p {
			margin-bottom: 0;
			float: left;
			margin-right: 20px;
		}
		.three-players-game .legs p:last-child {
			margin-right: 0;
		}
		.three-players-game .statics-box {
			width: 100%;
		}

		.three-players-game .sets {
			display: table;
			margin: 0 auto;
			text-align: center;
			color: white;
			font-weight: bold;
			font-size: 20px;
			text-transform: uppercase;
		}
		.three-players-game .sets p {
			margin-bottom: 0;
			float: left;
		}
		.three-players-game .sets p:first-child,
		.three-players-game .legs p:first-child {
			min-width: 55px;
			margin-right: 20px;
			text-align: left;
		}

		.three-players-game .sets p:last-child,
		.three-players-game .legs p:last-child {
			min-width: 22px;
		}

		.three-players-game .amount-player {
			font-size: 90px;
			font-weight: 900;
			margin: 0;
		}
		.three-players-game .player-name {
			text-transform: uppercase;
			color: white;
			font-weight: bold;
			margin: 0 10px;
			font-size: 18px;
			display: table;
			margin: 0 auto;
		}
		

	/* ============== END THREE PLAYERS ============== */


	/* ============== FOUR PLAYERS ============== */	
	.four-players-game .throw-info {
		width: 25%;
		float: left;
		display: inline-block;
		margin: 0;
		margin-top: 20px;
	}
		.four-players-game .throw-info-1,
		.four-players-game .throw-info-2, 
		.four-players-game .throw-info-3 {
			border-right: 2px dotted rgba(255, 255, 255, 0.2);
		}
		.four-players-game .top-info {
			display: table;
		    margin: 0 auto;
		    background: rgba(255, 255, 255, 0.05);
		    padding: 20px 30px;
		    color: white;
		    text-transform: uppercase;
		    font-size: 14px;
		    border-radius: 0 0 30px 30px;
		}
	
	.four-players-game .input-scores {
		width: 100%;
		float: left;
		display: inline-block;
		padding: 20px 0;
		border-top: 2px dotted rgba(255, 255, 255, 0.2);
		border-bottom: 2px dotted rgba(255, 255, 255, 0.2);
		margin-top: 20px;

	}
		.four-players-game .input-score {
			width: 25%;
			float: left;
			padding: 10px 30px;
			min-height: 70px;
		}

		.four-players-game .input-score-1, 
		.four-players-game .input-score-2,
		.four-players-game .input-score-3 {
			border-right: 2px dotted rgba(255, 255, 255, 0.2);
		}

		.four-players-game .input-score input {
			float: none;
		    border-radius: 30px;
		    border: 0;
		    padding: 15px 20px;
		    text-align: center;
		    font-weight: bold;
		    font-size: 18px;
		    display: table;
		    margin: 0 auto;
		    -webkit-appearance: none;
		    width: 70%;
		    color: #3c5866;
		}
		.four-players-game .reset {
			display: none;
			padding: 15px 20px;
			color: white;
			cursor: pointer;
			margin: 0 auto;
		}
		.four-players-game .reset-last {
			display: none;
			padding: 15px 20px;
			color: white;
			cursor: pointer;
		}
		
		.four-player-game .throw-out-options {
			margin-bottom: 10px;
		}


	.four-players-game .game-statics {
		display: inline-block;
		float: left;
		width: 100%;
		padding: 40px 0;
	}	
		.four-players-game .player-statics {
			width: 25%;
			float: left;
			display: inline-block;
			min-height: 200px;   
		}

		.four-players-game .throw-score {
			display: inline-block;
			float: left;
			width: 50%;
		}

		.four-players-game .game-info-2 {
			float: left !important;
		}
		.four-players-game .throw-score-1 .total-score {
			float: right;
		}
		.four-players-game .throw-score-2 .total-score {
			float: left;
		}
		.four-players-game .total-score {
			color: white;
			font-weight: bold;
			display: inline-block;
			width: 30%;
		}
		.four-players-game .total-throw {
			color: rgba(255, 255, 255, 0.45);
			font-style: italic;
			display: inline-block;
			width: 50%;
		}
		
		.four-players-game .throw-amount {
			width: 50%;
			float: left;
			color: rgba(255, 255, 255, 0.45);
			line-height: 20px;
		}
		.four-players-game .throw-score-1 .throw-amount {
			width: 100%;
			display: inline-block;
			float: right;
			text-align: right;
			padding-right: 50px;
		}
		.four-players-game .throw-score-2 .throw-amount {
			width: 100%;
			display: inline-block;
			float: left;
			padding-left: 50px;
		}
		
		.four-players-game .last-score {
			width: 50%;
			float: left;
			display: inline-block;
			color: white;
			font-weight: bold;
			text-align: center;
		}

		.four-players-game .game-info {
			width: 100%;
			float: left;
			display: inline-block;
		}
		.four-players-game .game-info h3 {
			color: white;
			text-transform: uppercase;
			margin-top: 0;
			margin-bottom: 10px;
			font-size: 1.25rem;
		}
		.four-players-game .game-info-2,
		.four-players-game .game-info-3, 
		.four-players-game .game-info-4 {
			border-left: 2px dotted rgba(255, 255, 255, 0.2);
		}

		.four-players-game .game-info-1 .statics-box { 
			padding-right: 10%;
		}

		.four-players-game .game-info-2 .statics-box {
			padding-left: 10%;
			padding-right: 10%;
		}

		.four-players-game .game-info-3 .statics-box { 
			padding-left: 10%;
			padding-right: 10%;
		}	
		.four-players-game .game-info-4 .statics-box { 
			padding-left: 10%;
		}	

		


	.four-players-game .computer-input[disabled] {
		background: none;
	    height: 0;
	    padding: 0;
	    overflow: hidden;
	    width: 1px;
	    margin-bottom: 0;
	}

	.four-players-game .to-throw {
		width: 100%;
		display: inline-block;
		float: left;
		text-align: center;
	}		

		.four-players-game .to-throw-2 {
			float: right;
		}
		.four-players-game .match-details {
			width: 100%;
			float: left;
			display: inline-block;
			/*padding: 20px 20px; */
		}
		.four-players-game .legs {
			display: table;
			margin: 0 auto;
			text-align: center;
			color: white;
			font-weight: bold;
			font-size: 20px;
			text-transform: uppercase;
		}
		.four-players-game .legs p {
			margin-bottom: 0;
			float: left;
			margin-right: 20px;
		}
		.four-players-game .legs p:last-child {
			margin-right: 0;
		}
		.four-players-game .statics-box {
			width: 100%;
		}

		.four-players-game .sets {
			display: table;
			margin: 0 auto;
			text-align: center;
			color: white;
			font-weight: bold;
			font-size: 20px;
			text-transform: uppercase;
		}
		.four-players-game .sets p {
			margin-bottom: 0;
			float: left;
		}
		.four-players-game .sets p:first-child,
		.four-players-game .legs p:first-child {
			min-width: 55px;
			margin-right: 20px;
			text-align: left;
		}

		.four-players-game .sets p:last-child,
		.four-players-game .legs p:last-child {
			min-width: 22px;
		}

		.four-players-game .amount-player {
			font-size: 90px;
			font-weight: 900;
			margin: 0;
		}
		.four-players-game .player-name {
			text-transform: uppercase;
			color: white;
			font-weight: bold;
			margin: 0 10px;
			font-size: 18px;
			display: table;
			margin: 0 auto;
		}
		

	/* ============== END FOUR PLAYERS ============== */	

.reset {
	cursor: pointer;
}


.top-settings {
	position: relative;
	display: inline-block;
	float: left;
	width: 100%;
}
	.settings {
		position: absolute;
		right: 0;
		top: 0;
	}
	.setting-item {
		position: relative;
	    float: left;
	    padding: 10px 10px;
	    color: white;
	    cursor: pointer;
	    margin-right: 20px;
	    border: 1px solid rgba(255, 255, 255, 0.11);
	    border-radius: 20px;
	    width: 40px;
	    text-align: center;
	}
	.active-setting {
		background: rgba(255, 255, 255, 0.05);
	}
	.setting-hover {
		opacity: 0;
		position: absolute;
		top: -10px;
		left: -50%;
		padding: 5px;
		border-radius: 5px;
		transition: 0.3s;
		font-size: 0.6rem;
		width: 200%;
		text-align: center;
	}
	.setting-item:hover .setting-hover {
		opacity: 1;
		top: -25px;
	}




.active-throwing {
	width: 15px;
	height: 15px;
	margin: 0 0 0 5px;
	background: rgb(1,201,83);
	background: -moz-linear-gradient(left,  rgba(1,201,83,1) 0%, rgba(4,229,97,1) 100%); 
	background: -webkit-linear-gradient(left,  rgba(1,201,83,1) 0%,rgba(4,229,97,1) 100%); 
	background: linear-gradient(to right,  rgba(1,201,83,1) 0%,rgba(4,229,97,1) 100%); 
	border-radius: 50%;
	display: inline-block;
	cursor: pointer;
}
.active-start-leg {
    width: 15px;
    height: 15px;
    margin-left: 5px;
    margin-right: 0;
    /*background: #db0823;
    background: -moz-linear-gradient(left,  #db0823 0%, rgb(255, 57, 79) 100%); 
	background: -webkit-linear-gradient(left,  #db0823 0%,rgb(255, 57, 79) 100%); 
	background: linear-gradient(to right,  #db0823 0%, rgb(255, 57, 79) 100%); */

	background: #00a3f9;

    border-radius: 50%;
    display: inline-block;	
    cursor: pointer;
}
.check-out {
	display: table;
    width: auto;
    margin: 0 auto;
    margin-top: 10px;
    margin-bottom: 10px;
	color: rgba(255, 255, 255, 0.5);
	line-height: 22px;
	text-transform: uppercase;
	min-height: 28px;
}
.check-out-news {
	margin-top: 40px;
}

.left-news, 
.right-news {
	display: none;
	position: fixed;
	top: 50%;
	transform: translateY(-50%);
	width: 150px;
	z-index: 9999;
	overflow: hidden;
}
.left-news ins,
.right-news ins {
	max-width: 150px !important;
}

.left-news {
	left: 10px;
}
.right-news {
	right: 10px;
}


@media screen and (min-width: 1390px) {
	.left-news,
	.right-news {
		display: inline-block;
	}
}
@media screen and (min-width: 1600px) {
	.left-news,
	.right-news {
		width: 250px;
	}
	.left-news ins,
	.right-news ins {
		max-width: 250px !important;
	}
}

.bottom-news {
	position: fixed;
	right: 10px;
	bottom: 10px;
}
	.bottom-news a {
		color: white;
		text-decoration: none;
	}
	.bottom-news a:hover {
		opacity: 0.75;
	}





/* Sharing results*/
.throwing-score {
	width: 50%;
	float: left;
	display: inline-block;
	padding: 0 30px;
}

.statics {
	display: inline-block;
	width: 100%;
}
	.statics li {
		width: 80%;
		float: left;
		display: inline-block;
		line-height: 20px;
    	color: rgba(255, 255, 255, 0.45);
    	font-size: 14px;
	}
	.statics li:nth-child(2n+0) {
		width: 20%;
		text-align: right;
	}
	.statics-box {
		display: inline-block;
		float: left;
		width: 90%;
		margin-bottom: 30px;
		text-transform: uppercase;
	}

.mobile-keyboard {
	display: none;
	width: 100%;
	float: left;
}
	.keyboard-row {
		display: inline-block;
		width: 100%; 
		float: left;
	}

	.key {
		display: inline-block;
		float: left;
		background-color: rgba(255, 255, 255, 0.1);
		color: white;
		min-height: 30px;
		padding: 2vh 0px;
		margin-right: 2%;
		margin-top: 2%;
		width: 32%;
		text-align: center;
		cursor: pointer;
		border-radius: 5px;
	}
	.keyboard-row:nth-child(1) .key {
		margin-top: 0;
	}
	.key:last-child {
		margin-right: 0;
	}
	.enter {
		background-color: #09d026;
	}



.share-screen {
	
}	

	.share-screen .setting-item {
		float: right;
		margin-top: -45px;
	}
	
	.share-screen .input-scores .input-score h1 {
		text-transform: uppercase;
		font-size: 1.75rem;
	}
	.share-screen .input-scores .input-score:nth-child(1) h1 {
		text-align: right;
	}
	.share-screen .input-scores .input-score:nth-child(2) h1 {
		text-align: left;
	}



.content {
	display: inline-block;
	width: 100%;
	padding: 100px 0; 
	line-height: 26px;  
	color: white;
}
	.content h1 {
		line-height: 42px;
		font-size: 2.9rem;
		line-height: 52px;
		margin-top: 0;
	}
	.content p {
		margin-bottom: 30px;
		color: rgba(255, 255, 255, 0.6);
		display: inline-block;
		width: 100%;
		float: left;
		margin-bottom: 20px;
	}
	.content .button {

	}

	.content-text {
		width: 50%;
		float: left;
	}
	.content-text ul {
		list-style: inherit;
		display: inline-block;
		padding: 0 20px;
		margin: 0 20px;
		clear: both;
	}
	.content-img {
		width: 50%;
		float: right;
	}
	.content-text article {
		float: left;
		display: inline-block;
		width: 100%;
		clear: both;
		margin-top: 20px;
	}

.pop-up {
	position: fixed;
	background: rgba(21, 40, 75, 0.95);
	top: 0;
	left: 0;
	z-index: 9999999999999;
	width: 100%;
	height: 100%;
	display: none;
}

.pop-up .center {
	position: absolute;
    width: 50%;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
	/*background: white;*/
	padding: 50px;
	border-radius: 20px;
	z-index: 1;
}
	.pop-up .check-out-overview {
		background: white;
		padding: 50px;
		border-radius: 20px;
	}

	.pop-up h2 {
		text-align: center;
	}

	.pop-up .check-amount {
		width: 100%;
    	display: table;
    	margin: 0 auto;
	}

	.pop-up .button {
		width: 31% !important;
		margin-right: 2%;
		background: #0093FF;
    	color: white;
    	text-align: center;
    	padding: 15px 20px !important;
	}
	.pop-up .button:hover {
		opacity: 0.7;
	}
	
	.pop-up .check-out-news {
		margin-top: 40px;
		display: inline-block;
		float: left;
		position: relative;
	}
	.pop-up .check-out-news a {
		display: table;
		margin: 0 auto;
	}


footer {
	display: inline-block;
	width: 100%;
	float: left;
	padding: 50px 0 0 0;
	position: relative;
	background: #16294A;
	margin-top: -1px;
} 
	footer .footer-column {
		width: auto;
		display: inline-block;
		float: left;
		margin-right: 10%;
		position: relative;
	}
	
	footer .footer-column a {
		color: white;
		clear: both;
		display: inline-block;
		float: left;
		line-height: 1.75rem;
		text-decoration: none;
		transition: 0.3s;
	}
	footer .footer-column a:hover {
		opacity: 0.5;
		text-decoration: underline;
	}
	footer .footer-column .line-separator {
		margin-bottom: 1rem;
		width: 100px;
		float: left;
	}
	footer .footer-column h3 {
		color: white;
		margin-top: 0;
		margin-bottom: 1rem;
	}

	footer .footer-column:nth-child(2) a {
		clear: none;
		margin-right: 10px;
	}

	footer .footer-column-logo {
		width: 30%;
	    display: inline-block;
	    float: right;
	    background: #d9112b;
	    padding: 60px 80px;
	    border-radius: 100px 100px 0 0;
	    margin-top: 50px;
	} 

	footer .copyright-link {
		color: white;
		text-align: center;
		text-decoration: none;
		margin-top: 30px;
		display: inline-block;
		width: 100%;
	}
	footer .copyright-link:hover {
		opacity: 0.5;
	}
	
	.footer-app-logo {
		display: inline-block;
		width: 100%;
		float: left;
		position: relative;
		margin-top: 10px;
	}
	.footer-app-logo a {
		max-width: 30px;
	}




@-webkit-keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.twister {
  -webkit-animation: rotating 0.5s linear infinite;
  -moz-animation: rotating 0.5s linear infinite;
  -ms-animation: rotating 0.5s linear infinite;
  -o-animation: rotating 0.5s linear infinite;
  animation: rotating 0.5s linear infinite;
}

.result-title {
	color: white;
	margin-top: 0;
	font-size: 1.25rem;
}
.player-center {
	text-align: center;
}
.main-type {
	width: 100%;
	text-align: center;
	display: inline-block;
	font-size: 16px;
	margin-bottom: 10px;
}





/* Finish screen */ 
.finish-area {
	width: 100%;
	display: none;
	padding-top: 100px;
}
	.finish-area .finish-gif {
		float: right;
		width: 50%;
		display: inline-block;
	}
		.finish-area .finish-gif img {
			border-radius: 20px;
			width: 100%;
			margin-top: 20px; 
		}
	.finish-area .share-info {
	    display: inline-block;
	    float: left;
	    width: 50%;
	    margin-bottom: 100px;
	}
	.finish-area .share-info .button {
		float: none;
		display: table;
		margin: 0 auto;
		clear: both;
		background: none;
		color: white;
		border: 1px solid rgba(255, 255, 255, 0.4);
		margin-top: 0;
		margin-bottom: 10px;
		width: 40%;
    	text-align: center;

	}
	.finish-area .share-icon {
		width: 35px;
		height: 35px;
		display: inline-block;
		color: white;
		padding: 10px;
		border-radius: 50%;
		margin-left: 10px;
		float: left;
		text-align: center;
	}
	.finish-area .share-info h1 {
		margin-top: 0;
		margin-bottom: 0;
		text-align: center;
	}
	.finish-area .share-score-info h2 {
		font-size: 18px;
		color: #d9112b;
		font-weight: 100;
		text-align: center;
	}
	.share-score-center {
		display: table;
		margin: 0 auto;
	}
	.finish-area .finish-settings {
		display: inline-block;
		float: left;
		width: 100%;
		margin-top: 5px;
	}
	.finish-area  .share-icon-facebook {
		background: #3b5998;
	}
	.finish-area  .share-icon-twitter {
		background: #00aced;
	}
	.finish-area  .share-icon-whatsapp {
		background: #34bf49;
	}
	.finish-area  .share-score-info {
	    color: white;
	    padding-bottom: 20px;
	    display: inline-block;
	    float: left;
	    width: 100%;
	}
	.finish-area .center-icons {
		display: table;
		margin: auto;
	}



.block-50 {
	width: 50%;
	float: left;
	display: inline-block;
}

.game-poweredby-1,
.game-poweredby-2 {
	display: table;
	width: 100%;
	margin: 0 auto;
	border-top: 2px dotted rgba(255, 255, 255, 0.2);
	padding: 30px 0;
}
.game-poweredby-1 {
	display: none;
}
.game-poweredby-center {
	display: table;
	margin: 0 auto;
}
.score-animation {
	width: 100%;
	display: inline-block;
	float: left;
	margin-top: 20px;
}


.facebook-icon {
	/*background: #0092ff;*/
}
.twitter-icon {
	/*background: #0092ff;*/
}
.share-form {
	position: absolute;
    right: -44px;
    background: white;
    padding: 15px;
    border-radius: 0 20px 20px 0;
    z-index: -1;
    width: 45px;
    transition: 1s;
    height: 45px;
    overflow: hidden;
}
.share-form:hover {
	right: -150px;
	width: 150px;
	height: 200px;
}
.dartsscoring-statics {
	display: inline-block;
	float: left;
	width: 100%;

}
.dartsscoring-statics .statics-column {
	float: left;
	display: inline-block;
	width: 33.33%;
	padding: 50px 50px;
}
.statics-column h2 {
	font-size: 48px;
    margin-bottom: 0;
}

.hidden {
	display: none !important;
}

.hidden-share {
	width: 150px;
    display: inline-block;
    margin-top: 20px;
    font-size: 12px;
    float: left;
}
.share-title {
	font-weight: bold;
}
.main-share-icon {
	padding: 10px;
    text-decoration: none;
    color: black;
    width: 100%;
    display: inline-block;
    border-bottom: 1px solid #dadada;
}
.main-share-icon i {
	width: 20px;
	display: inline-block;
}

.share-play {
	position: fixed;
    right: 5px;
    bottom: 5px;
    background: white;
    padding: 10px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    box-shadow: 1px 1px 5px 0 #00000042;
    text-align: center;
    z-index: 999999;
    display: none;
}

.throw-out-options {
    color: rgb(255, 255, 255);
    border: 1px solid rgb(255, 255, 255);
    border-radius: 5px;
	display: none;
    width: auto;
    width: 20px;
    height: 20px;
    font-size: 12px;
    margin-top: 0;
    margin-left: 10px;
    cursor: pointer;
    float: left;
    text-align: center;
    padding: 3px 5px;
    margin-top: 2.5px;

}
.throw-out-options i {
	float: left;
	display: inline-block;
}
 
.throw-out-suggestion p:nth-child(1) {
	display: inline-block !important;
}
.throw-out-suggestion {
	float: left;
	display: inline-block;
}
.throw-out-suggestion p {
	display: none;
	width: 100%;
}   
.throwing-leg {
	float: left;
	display: inline-block;
}
.throwing-name,
.throwing {
	float: left;
}
.throwing-name-mob {
	display: none;
	color: white;
	text-transform: uppercase;
}



.text-block {
	color: black;
	display: inline-block;
	margin: 20px 0;
	width: 100%;
}
.text-block h1 {
	color: #0093FF;
}
.text-block p {
	line-height: 32px;
}
.text-block-50{
	width: 50%;
	display: inline-block;
	float: left;
}
.text-block-50 p {
	margin-bottom: 20px;
}
.background-image-block {
	width: auto;
	display: table;
	margin: 0 auto;
	box-shadow: 1px 1px 30px 0 #0000002b;
	border-radius: 40px;
	padding: 30px; 
} 
.background-image-block video {
	max-height: 400px;
	border-radius: 40px;
}
.share-media {
	position: fixed;
	right: 0;
	bottom: 0;
	z-index: 999;
	width: 150px;
    height: 150px;
    display: none;
}
.share-footer-icon {
	background: white;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	text-align: center;
	position: absolute;
}
.share-footer-icon a {
	padding: 10px;
	display: inline-block;
	color: white;
}

#share-footer-facebook {
	bottom: 80px;
	right: 15px;
	background: #4840c7;
}

#share-footer-twitter {
	bottom: 55px;
	right: 60px;
	background: #0091ff;
}

#share-footer-whatsapp {
	bottom: 5px;
	right: 70px;
	background: #25d366; 
}

.donate-section {
	display: inline-block;
	width: 100%;
	float: left;

}

.donate-us {
	border: 1px dashed rgba(255, 255, 255, 0.29);
	display: inline-block;
	padding: 30px;
	clear: both;
	margin: 25px 0;
}
.donate-section h2 {
	margin-top: 0;
}

	.donate-link {
		background: #09d026;
		padding: 15px 30px;
		text-decoration: none;
		border-radius: 30px;
		display: inline-block;
	}
	

	#footer-wave {
		float: left;
		display: inline-block;
		width: 100%;
		margin-top: -140px;
		position: relative;
		z-index: -1;
		height: 100%;
	}

	footer .powered-by{
		float: right;
		color: #0091ff;
		width: auto;
		bottom: -160px;
		position: absolute;
		right: 0;
	}   


.title-match {
	text-align: center;
	color: white;
	text-transform: uppercase;
	font-size: 16px;
}

.content {
	display: inline-block;
	float: left;
	position: relative;
	width: 100%;
	z-index: 99;
}
.content a {
	color: white;
}




.page-main 	{
	display: inline-block;
    width: 100%;
    position: relative;
    background-position: center;
    background-size: cover;
    padding: 25px 0 0 0;
    float: left;
    background: #16294A;
}
.partners-summary {
	display: inline-block;
	float: left;
	width: 100%;
}
	.partner-box {
		width: 50%;
		display: inline-block;
		float: left;
		margin-bottom: 40px;
	}
	.partner-box h1 {
		margin-bottom: 1rem;
	}
	.partner-box h2 {
		color: white;
		font-size: 2rem;
		margin-top: 0;
	}
	.partner-logo {
		display: inline-block;
		float: left;
		width: 47%;
		background: white;
		border-radius: 10px;
		padding: 40px;
		margin-top: 20px;
		margin-right: 3%;
	}
	.partner-logo:nth-child(1) img {
		max-width: 70%;
		margin:  0 auto;
		display: flex;
	}

	/*.partner-logo:nth-child(2n+0) {
		margin-right: 0;
	}*/
	.partner-logo-transparent {
		background: none;
	}
	.partner-box:nth-child(3) {
		clear: both;
		display: inline-block;
		width: 100%;
		margin-top: 50px;
	}

	.partner-links {
		display: inline-block;
		float: left;
		width: 100%;
		margin-top: 20px;
	}	

	.partner-links a {
		background: rgb(46, 68, 109);
		color: #ffffff;
		display: inline-block;
		float: left;
		margin-right: 10px;
		padding: 10px 25px;
		text-decoration: none;
		margin-bottom: 10px;
		border-radius: 30px;
		transition: 0.3s;
	}
	.partner-links a:hover {
		background: #3d5e9e;
	}



.error {
	color: white;
	display: inline-block;
	width: 100%;
	text-align: center;
	padding: 100px 0;
}

.throwing-sound {
  display:none
}


/* Ads */
.pop-up-information {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 99999999;
	transition: 0.5s;
	display: flex;
	align-items: center;
}
.pop-up-background {
	background: #16294b;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
  	opacity: 0.8;
  	z-index: 0;
}
.pop-up-content {
	display:flex;
	width: 100%;
	max-width: 600px;
	align-items: flex-start;
	align-content: flex-start;
	position: relative;
	justify-items: center;
	justify-content: center;
	margin: 0 auto;
	padding: 40px;
	border-radius: 10px;
	background: white;
	z-index: 1;
	height: auto;
	flex-direction: column;
}
	.pop-up-content .image {
		max-width: 100px;
	}
	.pop-up-content h3 {
		margin-bottom: 1rem;
	}
	.pop-up-content p {
		margin-top: 0;

	}
	.pop-up-content button {
		border: none;
		cursor: pointer;
	}
	.pop-up-content button:hover {
		opacity: 0.75;
	}


.pop-news-link {
	display: none;
	max-width: 728px;
}
.pop-up-news-close {
	position: absolute;
	right: 10px;
	top: 10px;
	width: 30px;
	height: 30px;
	background: white;
	border-radius: 50%;
	z-index: 999;
	box-shadow: 0 0 10px 0 black;
	text-align: center;
	padding-top: 5px;
	cursor: pointer;
}
	



.updates-slider {
	display: inline-block;
	width: 100%;
	float: left;
	margin: 80px 0 !important;
}

	.update-slider-item {
		position: relative;
	}
		.update-slider-text {
			position: absolute;
			bottom: 30px;
			left: 30px;
		}
		.update-slider-text h3 {
			margin-bottom: 0;
			color: white;
		}
		.update-slider-text p {
			color: rgba(255, 255, 255, 0.4);
		}

.home-slider {
	display: inline-block;
	width: 100%;
	float: left;
	margin: 80px 0 !important;
}

	.home-slider-item {
		position: relative;
	}
		.home-slider-text {
			color: white;
			position: absolute;
			bottom: 30px;
			left: 30px;
		}
		.home-slider-text h3 {
			margin-bottom: 0;
			color: white;
			text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
		}
		.home-slider-text p { 
			text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
		}
.android-download {
	display: none;
    float: left;
    position: relative;
    color: #02d659;
    text-decoration: none;
    margin-top: 60px;
	border-radius: 20px;
	padding: 10px 20px;
	border: 2px solid #02d659;
}
.android-download img {
	max-width: 20px;
	float: left;
}
.android-download i {
	font-size: 1.5rem;
	float: left;
}
.android-download span {
	float: left;
	margin-left: 10px;
	margin-top: 4px;
	color: white;
}




.game-statics-menu {
	margin-top: -35px;
}


.game-statics-mob {
	display: inline-block;
	width: 100%;
	float: left;
	position: relative;
}

	.game-statics-mob-columns:nth-child(2) {
		display: none;
	}

	.game-statics-mob-column {
		display: inline-block;
		width: 100%;
		float: left;
		margin-bottom: 20px;
	}

	.game-statics-mob-column:first-child {
		margin-top: 20px; 
	}

	.game-statics-mob-column .game-statics-mob:last-child div {
		/*border-bottom: 0;*/
	}
	.game-statics-mob-column  .legs {
		padding-left: 0;
	}

	.three-players-game .player-statics-3 .game-statics-mob .legs:nth-child(2) {
		padding-left: 0;
	}


	.game-statics-mob > div {
		display: inline-block;
		float: left;
		font-size: 0.9rem;
		color: white;
		line-height: 1.5rem;
		border-bottom: 2px dotted rgba(255, 255, 255, 0.2);
		padding-bottom: 2.5px;
		padding-top: 2.5px;
		color: rgba(255, 255, 255, 0.45);
		text-transform: uppercase;
	}
	.game-statics-mob-title > div {
		border-right: 0 !important;
	}
	.game-statics-mob b {
		color: white;
	}
	
	.one-player-game .mobile-menu-section .player-statics, 
	.two-players-game .mobile-menu-section .player-statics,
	.three-players-game .mobile-menu-section .player-statics {
		width: 100% !important;
	}




.mobile-menu-section .player-statics h2 {
	margin-top: 0;
	padding-top: 0;
	margin-bottom: 0; 
	font-size: 1.5rem;
	z-index: 0;
	color: white;
}
	.static-download-pdf {
		color: white;
	    border-radius: 25px;
	    text-decoration: none;
	    padding: 7.5px 15px;
	    display: inline-block;
	    float: right;
	    background: #0090ff;
	    margin-top: -25px;
	    margin-right: 55px;
	    font-weight: bold;
	} 

	.game-statics-title {
		color: white;
		float: left;
		text-transform: uppercase;
		width: 40%;
	}


.one-player-game .mobile-menu-section .player-statics, 
.two-player-game .mobile-menu-section .player-statics, 
.three-player-game .mobile-menu-section .player-statics {
	border-right: 0;
}



.player-statics-1 .game-statics-mob div {
	display: none;
}
 
.player-statics-1 .game-statics-mob div:nth-child(1) {
	width: 50%;
	border-right: 2px dotted rgba(255, 255, 255, 0.2);
	display: inline-block;
}
.player-statics-1 .game-statics-mob div:nth-child(2) {
	width: 50%;
	padding-left: 5%;
	display: inline-block;
}



.player-statics-2 .game-statics-mob div {
	display: none;
}

.player-statics-2 .game-statics-mob div:nth-child(1) {
	width: 30%;
	border-right: 2px dotted rgba(255, 255, 255, 0.2);
	display: inline-block;
}
.player-statics-2 .game-statics-mob div:nth-child(2) {
	width: 35%;
	padding-left: 5%;
	border-right: 2px dotted rgba(255, 255, 255, 0.2);
	display: inline-block;
}
.player-statics-2 .game-statics-mob div:nth-child(3) {
	width: 35%;
	padding-left: 5%;
	display: inline-block;
}


.player-statics-3 .game-statics-mob div:nth-child(1) {
	width: 25%;
	border-right: 2px dotted rgba(255, 255, 255, 0.2);
}
.player-statics-3 .game-statics-mob div:nth-child(2) {
	width: 25%;
	padding-left: 5%;
	border-right: 2px dotted rgba(255, 255, 255, 0.2);
}
.player-statics-3 .game-statics-mob div:nth-child(3) {
	border-right: 2px dotted rgba(255, 255, 255, 0.2);
	width: 25%;
	padding-left: 5%;
}
.player-statics-3 .game-statics-mob div:nth-child(4) {
	width: 25%;
	padding-left: 5%; 
}


.donate-form {
	display: inline-block;
	width: 70%;
	float: left;
	position: relative;
}

	.donate-row {
		display: inline-block;
		width: 100%;
		float: left;
		position: relative;
		margin-bottom: 10px;
	}
		.donate-form label {
			display: inline-block;
			width: 40%;
			float: left;
			position: relative;
			padding-top: 10px;
		}

		.donate-form input {
			width: 60%;
			float: right;
			padding: 15px 20px; 
			border: 0;
			border-radius: 5px;
		}
	
	.donate-form input[disabled] {
		background: rgba(255, 255, 255, 0.99);
	}
	
	.donate-form button {
		border-radius: 5px;
		color: white;
		border: none;
		float: right;
		margin-top: 0;
		cursor: pointer;
		width: 60%;
	}

 
@media screen and (min-width: 1025px) and (max-width: 1150px) {
	header .play-nav {
		margin-left: 8%;
	}

}	
@media screen and (min-width: 1025px) and (max-width: 1250px) {
	#footer-wave {
		margin-top: -115px;
	}

}

@media screen and (min-width: 1300px) and (max-width: 1500px) {
	.update-slider-item img {
		width: 400px !important;
	}

}


@media screen and (min-width: 1500px) {
	.logo-background {
		display: none;
	}
	.large-logo-background {
		display: inline-block;
	}
}

@media (min-width:500px) { 
	.adslot_1 { 
		width: 468px; 
		height: 60px; 
	}
}
@media (min-width:800px) { 
	.adslot_1 { 
		width: 728px; 
		height: 90px; 
	}
}

.poweredby-mobile {
	display: none;
	width: 800px;
	height: 250px;
}
.square-poweredby-block { 
	width: 100%;
	height: 280px; 
	display: inline-block;
} 
.poweredby-desktop {
	display: inline-block;
	width: 800px;
	height: 100px;
}
.wrapper-poweredby-block {
	width: 800px;
	height: 120px;
	display: inline-block;
}

	.vertical-poweredby-block {
		width: 150px;
		height: 700px;
		display: inline-block;
	}


@media (max-width:700px) { 
	.poweredby-mobile {
		display: inline-block;
		width: 100%;
		height: 250px;
		overflow: hidden;
		float: left;
	}
	.poweredby-desktop { 
		display: none;
	}
	.game-poweredby-1, .game-poweredby-2 {
		padding-top: 20px;
	}

	.game-poweredby-1 {
		display: inline-block;
	}
	.game-poweredby-2 { 
		display: none; 
	}  
	.square-poweredby-block { 
		width: 300px;
		height: 300px; 
		display: inline-block;
		/*overflow: hidden;*/
		/*margin-left: 0 !important;*/
	} 
	.horizontal-poweredby-block {
		width: 300px;
		height: 300px; 
		display: inline-block;
		overflow: hidden;
		margin-left: 0 !important;
	}

	.game-statics-top {
		display: inline-block;
	}
		
}
@media (min-width:700px) and (max-width:800px) { 
	.poweredby-desktop {
		width: 700px;
		height: 150px;
	}
}
@media (max-width: 1025px) { 
	.pop-up-news {
		display: none;
	}
}


.thank-you-image {
	width: 100%;
	max-width: 80%;
	border-radius: 50px;
	float: right;
}

#cookie-section {
	position: fixed;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 20px;
	display: none;
}

	#cookie-section .cookie-content {
		background: white;
		padding: 20px;
		border-radius: 10px;
		position: relative;
		z-index: 10;
		max-width: 500px;

	}
	@media screen and (min-width: 1200px) {
		#cookie-section .cookie-content {
			padding: 40px;
		}
	}


	#cookie-section h2 {
		font-size: 1.5rem;
	}
	#cookie-section p {
		margin-bottom: 1rem;
		font-size: 0.875rem;
	}
	.cookie-background {
		position: absolute;
		left: 0;
		top: ;
		width: 100%;
		height: 100%;
		background: black;
		z-index: 0;
		opacity: 0.7;
	}

	#cookie-accept {
		background: rgba(15,196,1, 1);
		color: white;
		border: none;
		width: 100%;
		padding: 15px 10px;
		font-weight: bold;
		margin-top: 10px;
		cursor: pointer;
	}
	.hidden {
		display: none !important;
	}
	.block {
		display: flex !important;
	}





