body{
	margin: 0;
	border-width: 0; 
	height: 100%;
	font-family: 'Ubuntu', sans-serif;
}

#bg-game-results{
	position:relative;
	z-index: 2;
	border-style: solid none none none;
    border-width: 1px;
	border-color:#eaeaea;
	/* box-shadow: 0px 1px 2px rgba(0,0,0,0.23); */
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	background: #f9f9f9;
	box-shadow: 1px 1px 20px #000;
}
footer{
	margin: 0 !important;
}

#splashscreen, #game{
	margin: 0 auto; 
}
#game-menu-close-cross{
	position: absolute;
    right: 15px;
    top: 59px;
    height: 50px;
    width: 50px;
    z-index: 135;
}

.before-anything-loaded {
    animation:         rotation 1s infinite linear; /* IE 10+, Fx 29+ */
    -webkit-animation: rotation 1s infinite linear;
    width: 100px;
    height: 100px;
    margin: auto;
    position: absolute;
    top: 0; left: 0; bottom: 0; right: 0;
}

@keyframes rotation {
    from { transform: rotate(0deg);}
    to   { transform: rotate(359deg);}
}

@-webkit-keyframes rotation {
    from {-webkit-transform: rotate(0deg);}
    to   {-webkit-transform: rotate(359deg);}
}

@keyframes infinite-spinning {
	from {transform: rotate(0deg);}
	to {transform: rotate(360deg);}
}

.game-thumbnail{
	height:100%;
	padding:0;
}

.flex-column{
	display: -webkit-flex;
    display: -ms-flexbox; 
    display: flex;
	
	-webkit-box-orient:vertical;
	-webkit-box-direction:normal;
	-webkit-flex-direction:column;
	-ms-flex-direction:column;
	flex-direction:column;
				
	 -webkit-box-pack:space around;
	-webkit-justify-content: space-around;
	-ms-flex-pack: distribute;
	justify-content: space-around;
				
	-webkit-box-align:center;
	-webkit-align-items:center;
	-ms-flex-align:center;
	align-items:center;
}

.flex-row{
	display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
	
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
				
	 -webkit-box-pack:space around;
	-webkit-justify-content: space-around;
	-ms-flex-pack: distribute;
	justify-content: space-around;

	-webkit-box-align:center;
	-webkit-align-items:center;
	-ms-flex-align:center;
	align-items:center;
}

#progress-wrap-wrapper{
	height:100%;
}

#splash-prev, #splash-next{
	background:none;
	border:none;
	font-size:2em;
	color:#fff;
	z-index: 9;
}

#splash-prev:focus, #splash-next:focus{
	background:none;
	border:none;
	outline:none;
}

#splash-prev{
	position:absolute;
	left:1em;
	top:0.35em;
}
#splash-next{
	position:absolute;
	right:1em;
	top:0.35em;
}

.splashscreen-top-part{
	height: 75%;
    overflow: hidden;
}

.splashscreen-bottom-part{
    padding: 15px;
    position: absolute;
    width: 100%;
    bottom: 0;
    z-index: 0;
}
.splash-text{
	color: #f9f9f9;
}

.splash-tabs{
    box-shadow: 0 3px 3px rgba(0,0,0,.05);
    z-index:9999;
    display: inline-block;
    cursor: pointer;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
}

.splash-tab{
	display:none;
	height: 88%;
	padding:0;
}
.splash-tab.active{
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.statistic{
	font-weight: 600;
	color: #f9f9f9;
	font-size: 110%;
}

.slider-titles, .slider-contents{
	width: 100%;
}

.slider-text{
	font-size: 1.8em;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    cursor: default;
}

@media only screen and (min-width : 469px) and (orientation: portrait), only screen and (min-height : 469px) and (orientation: landscape) {
	.slider-text.improvement-text{
		font-size: 1em;
		text-align: center;
	}
}
@media only screen and (max-width : 468px) and (orientation: portrait), only screen and (max-height : 468px) and (orientation: landscape) {
	.slider-text.improvement-text{
		font-size: 0.8em;
		text-align: center;
	}
	.slider-text{
		font-size: 1.5em;
	}
}

.slider-text ul{
	padding: 0;
}

.splash-description-content{
	text-align: center;
	color: #f9f9f9;
	margin-bottom: 15px;
}

.slider-contents{
	height: 100%;
}

.slider-content{
	background-image: url("/img/splashscreen_4_0/subtle_freckles.png");
}

.slick-list, .slick-track, .slider-content{
	height:100%;
}

.slider-title-wrapper{
	background-color: #7D2985;
	color:#fff;
	-webkit-border-top-left-radius: 4px;
	-webkit-border-top-right-radius: 4px;
	-moz-border-radius-topleft: 4px;
	-moz-border-radius-topright: 4px;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
}

.sliderPrevArrow, .sliderNextArrow, .slick-dots{
	display:inline-block;
	margin:0;
	padding: 0;
}

.sliderPrevArrow, .sliderNextArrow{
	cursor: pointer;
	transform: translateY(-60%);
    cursor: pointer;
    font-size: 1.5em;
	padding: 0 5px 0 5px;
}

.loading-game-title{
	font-size: 2.4em;
	font-weight: 700;
}

/*PROGRESS BAR AREA*/

#start-game-button{
	/* font-size:1.7em;
	-webkit-align-self:center;
	    -ms-flex-item-align:center;
	        align-self:center; */
}

#progress-wrap-wrapper{
	-webkit-align-self:center;
	    -ms-flex-item-align:center;
	        align-self:center;
	height: 10px;
}

.progress {
	width: 100%;
	height: 10px;
	box-shadow: none;
}

.progress-wrap {
	background-color: rgba(0,0,0,0);
	position:relative;
	width: 90%;
	overflow: hidden;
	margin:0 auto;
	margin-bottom: 30px;
}
.progress-bar {
	background-color: #f9f9f9;
	position: relative;
	width: 0;
	transition: width 5s;
	border-radius: 5px;
}

.slider-text>h1{
	color: #f9f9f9;
	font-size: 1.5em;
}
.slider-text>h2{
	color: #f9f9f9;
	font-size: 1.2em;
}
.slider-text>p{
	color: #f9f9f9;
	font-size: 0.8em;
	line-height: 1em;
}

/*  BUTTON */

.button {
	margin: 0 auto;
	
	display: inline-block;
	
	cursor: pointer;
	white-space: nowrap;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
	text-decoration: none;
    
	word-wrap: break-word;

	background: #F4940B;
    color: white;
    border-style: solid;
	border-width: 2px;
	border-radius: 5px;

	/* width: 400px; */
	max-width: 100%;
    vertical-align: middle;
	padding: 25px 40px;
    font-size: 36px;
}


.loading-splash-icon{
	font-size: 1.5em;
	margin-bottom: 15px;    
}

.svg-loader{
	height: 2em;
	margin-left: -1em;
	padding: 0;
	animation:         rotation 1s infinite linear; /* IE 10+, Fx 29+ */
	-webkit-animation: rotation 1s infinite linear;
}

#floatMenu{
	z-index: 1;
	margin:0 auto;
	
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
}

.floatIMG{
	margin: 0 auto;
}

.floatButton{
	margin-left: 0.2em;
	height: 1.7em;
	width: 2em;
	overflow:hidden;
	font-size:1.5em;
	border: none;
	box-shadow: 0px 1px 2px rgba(0,0,0,0.23);
	-webkit-border-top-left-radius: 4px;
	-webkit-border-top-right-radius: 4px;
	-moz-border-radius-topleft: 4px;
	-moz-border-radius-topright: 4px;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	background: #f9f9f9;
	
	cursor: pointer;
	white-space: nowrap;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
	text-decoration: none;
	
	text-align:center;
	
	-webkit-transition-property: width;
	
	transition-property: width;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
}

.floatButton img{
	width: 1.5em;
}

.floatButton.disabled{
	background-color: #eeeeee;
	cursor: default;
}

.show-on-hover{
	display:none;
}

.floatButton.hovered{
	width: 12em;
}

.floatButton.hovered .show-on-hover{
	display:inline;
}

#results{
	height: 100%;
	width: 100%;
}

.resultData{
	font-size: 2em;
}

.game-thumbnail{
	border: 1px solid #dadada;
    border-width: 0  0 0 1px;
}



/* MENU */

#game-menu{
	background-image: linear-gradient(to bottom, rgba(51, 51, 51, 0.9), rgba(51, 51, 51, 0.7));
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	z-index: 2;
}

#game-menu-header{
	-webkit-border-top-left-radius: 4px;
	-webkit-border-top-right-radius: 4px;
	-moz-border-radius-topleft: 4px;
	-moz-border-radius-topright: 4px;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	height: 40%;
	color: #fff;
	padding-top: 5%;
}

#game-menu-header h4{
	font-size: 250%;
	color:#fff;
}

#game-menu-buttons{
	font-size: 1em;
	vertical-align: middle;
}

.button.menuButton{
	max-width: 350px;
	padding: 15px;
	background: #FFF;
	margin: 15px;
	border-radius: 2em;
	display: inline-block;
	border: none;
	color: #4A4A40;
	white-space: normal;
}

.menuButtonImg{
	width: 2em;
	height: 2em;
	display: inline-block;
}

.button.menuButton:hover{
	background: #d3d3d3;
}
.buttonText{
	font-size: 0.75em;
	display: inline-block;
	width: 100%;
}

@media only screen and (max-width : 480px) and (orientation: portrait), only screen and (max-height : 480px) and (orientation: landscape) {
	.button.menuButton{
		max-width: calc(100% - 2em);
		border-radius: 1.5em;
		line-height: 0.9em;
	}

	.button.menuButton:hover{
		background: #FFF;
	}

	#game-menu-header{
		height: 20%;
		padding-top: 20%;
		padding-bottom: 5%;
	}

	.menuButtonImg{
		width: 2em;
		height: 2em;
	}

	.buttonText{
		font-size: 0.6em;
	}

	.button{
		font-size: 18px;
	}
}

.popUpWindowButton{
	font-size:1.5em;
}

#confirmationBox{
	height: 100%;
}

#confirmationBoxHeader{
	font-size:1.5em;
	width:80%;
	text-align:center;
	margin:0 auto;
	margin-top:2em;
	margin-bottom:2em;
}

.confirmation-buttons{
	margin-top:1.5em;
	margin-bottom: 1.5em;
}

#game-menu-button-tiles{
	height: 80%;
}

.menu-tile h4{
	font-size: 1.5em;
	font-weight: 400;
	text-align:center;
}

.menu-tile{
	width: 30%;
	height: 0;
	padding-bottom: 30%;
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,255,255,1)), color-stop(47%, rgba(246,246,246,1)), color-stop(100%, rgba(249,249,249,1)));
	background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(246,246,246,1) 47%, rgba(249,249,249,1) 100%);
	background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(246,246,246,1) 47%, rgba(249,249,249,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f9f9f9', GradientType=0 );	box-shadow: 0px 2px 2px rgba(0,0,0,0.23);
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
			
	cursor: pointer;
	white-space: nowrap;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
	text-decoration: none;
	
	-webkit-transition-property: -webkit-transform;
	transition-property: transform;
	-webkit-transition-duration: 0.2s;
	transition-duration: 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0, 0.33, 0.02, 2.37);
	transition-timing-function: cubic-bezier(0, 0.33, 0.02, 2.37);
}


.menu-tile:hover{
	 -ms-transform: scale(1.05,1.05);
    -webkit-transform: scale(1.05,1.05); 
    transform: scale(1.05,1.05);
	text-decoration: none;
}

.menu-tile:active{
	box-shadow: none;
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(249,249,249,1)), color-stop(53%, rgba(246,246,246,1)), color-stop(100%, rgba(255,255,255,1)));
	background: -webkit-linear-gradient(top, rgba(249,249,249,1) 0%, rgba(246,246,246,1) 53%, rgba(255,255,255,1) 100%);
	background: linear-gradient(to bottom, rgba(249,249,249,1) 0%, rgba(246,246,246,1) 53%, rgba(255,255,255,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f9f9f9', endColorstr='#ffffff', GradientType=0 );
	
	 -ms-transform: scale(1,1); /* IE 9 */
    -webkit-transform: scale(1,1); /* Safari */
    transform: scale(1,1);
	
	text-decoration: none;
	box-shadow: inset 0px 0px 6px 0px rgba(0,0,0,0.23);
}

.menu-tile:focus{
	text-decoration: none;
}

.restart-tutorial-icon{
	width: 60%;
	height:0;
	padding-bottom:60%;
	margin:0 auto;
	margin-top:1.5em;
	background: url(/img/instructions-icon.png) no-repeat ;
	background-size: contain;
	background-position: center center;
}

.tutorial-video-icon{
	width: 60%;
	height:0;
	padding-bottom:60%;
	margin:0 auto;
	margin-top:1.5em;
	background: url(/img/instructions-video-icon.png) no-repeat ;
	background-size: contain;
	background-position: center center;
}

.restart-game-icon{
	width: 60%;
	height:0;
	padding-bottom:60%;
	margin:0 auto;
	margin-top:1.5em;
	background: url(/img/restart-game-icon.png) no-repeat ;
	background-size: contain;
	background-position: center center;
}

 /* Popover */
.game-popover {
    background-color: #7D2985;
	color:#fff;
}

.popover.left>.game-popover-arrow:after {
	border-left-color: #7D2985;
}
.popover.top>.game-popover-arrow:after {
	border-top-color: #7D2985;
}
.popover.bottom>.game-popover-arrow:after {
	border-bottom-color: #7D2985;
}
.popover.right>.game-popover-arrow:after {
	border-right-color: #7D2985;
}

/* Popover Header */
.game-popover .popover-title {
    font-size: 20px;
	background-color: #7D2985;
	color:#fff;
    text-align:center;
}

/* Popover Body */
.game-popover .popover-content {
	background-color: #7D2985;
	color:#fff;
	 text-align:center;
}

/* Popover Arrow */
.game-popover-arrow{
    border-right-color: #7D2985!important;
}

.savingscore-message{
	text-align:center;
	font-size: 2em;
}

/*      ADS       */

.game-screen-ad{
    display:none;
}

.game-screen-ad[data-adslot="left"] , .game-screen-ad[data-adslot="right"]{
    min-width:120px;
    min-height:120px;
    position:absolute;
    top:70px;
    max-width: 160px;
}

.game-screen-ad[data-adslot="top"]{
    min-height: 80px;
}

/*   ENDOF ADS    */

.dashboardNavActive {
    background: none;
	color: #4F46E5;
	font-weight:600;
    border-bottom: solid 4px #4F46E5;
    cursor: default;
}
.dashboardNav {
	padding: 0.5em 0;
	background: none;
    font-size: 1em;
    cursor: pointer;
    text-align: center;
}
.dashboardResultNav{
	padding: 0.5em 0;
	background: none;
	font-size: 20px;
    cursor: pointer;
    text-align: center;
}

.splashscreen-top-part .splash-tabs .dashboardNav:hover{
	border-bottom: solid 4px #4F46E5;
}

/* Extra Small Devices, Phones */ 
@media only screen and (max-width : 480px) and (orientation: portrait), only screen and (max-height : 480px) and (orientation: landscape) {
	.button {
		padding: 0.5em 0.8em;
	}
}

/* Custom, iPhone Retina */ 
@media only screen and (max-width : 320px) and (orientation: portrait), only screen and (max-height : 320px) and (orientation: landscape) {
	
}

.container {
	width: 100%;
	text-align: center;
	padding: 0;
}
#splashscreen{
	min-height: calc(var(--vh, 1vh) * 100);
	width: 100%;
	background-size: cover !important;
	position: relative;
}
#game-splash-tab{
	height: calc(var(--vh, 1vh) * 100);
    position: absolute;
}
#game{
	display: block;
	height: calc(var(--vh, 1vh) * 100);
	width: 100%;
	background-color: rgba(255,255,255,0);
}
@media only screen and (max-width : 768px) and (orientation: portrait), only screen and (max-height : 768px) and (orientation: landscape) {
	#game{
		width: 100vw;
		height: calc(var(--vh, 1vh) * 100);
	}
	#splashscreen{
		min-height: calc(var(--vh, 1vh) * 100);
	}
}
@media only screen and (min-width: 768px) and (max-width: 1280px) and (orientation: portrait), only screen and (min-height: 768px) and (max-height: 1280px) and (orientation: landscape) {
	#game{
		height: calc(var(--vh, 1vh) * 100);
	}
	#splashscreen{
		min-height: calc(var(--vh, 1vh) * 100);
	}
}
#breyno-game{
	width: 100%;
	height: 100%;
}
#floatMenu{
	width: calc(100vmin - 150px);
}
@media only screen and (max-width : 1200px) and (orientation: portrait), only screen and (max-height : 1200px) and (orientation: landscape) {
	#splashscreen, #game, #floatMenu, #confirmationBox{
		font-size: 1.4em;
	}
	h3{
		font-size: 2.1em;
	}
}
@media only screen and (max-width : 992px) and (orientation: portrait), only screen and (max-height : 992px) and (orientation: landscape) {
	#splashscreen, #game, #floatMenu, #confirmationBox{
		font-size: 1.2em;
	}
	h3{
		font-size: 1.8em;
	}
}
@media only screen and (max-width : 768px) and (orientation: portrait), only screen and (max-height : 768px) and (orientation: landscape) {
	#splashscreen, #game, #floatMenu, #confirmationBox{
		font-size: 1em;
	}
	h3{
		font-size: 1.5em;
	}
}
@media only screen and (max-width : 480px) and (orientation: portrait), only screen and (max-height : 480px) and (orientation: landscape) {
	#splashscreen, #game, #floatMenu, #confirmationBox{
		font-size: 0.75em;
	}
}
@media only screen and (max-width : 340px) and (orientation: portrait), only screen and (max-height : 340px) and (orientation: landscape) {
	#splashscreen, #game, #floatMenu, #confirmationBox{
		font-size: 0.54em;
	}
}
#startButtonarea{
	text-align: center;
}
#bg-game-results{
    text-align:center;
    margin-top: 25px;
}

.light-line-below{
	border-bottom:solid 1px #dadada;
}
.light-line-top{
	border-top:solid 1px #dadada;
}

.light-line-right{
	border-right:solid 1px #dadada;
}

.light-line-left{
	border-left:solid 1px #dadada;
}

.result-charts{
	z-index: -1;
}

.results-game-title{
	text-align:center;
}
#bg-game-results .results-game-title{
    padding: 15px 5px;
}
#bg-game-results .bg-result-block{
    display: inline-block;
    padding: 10px 15px;
}

.goalTextMessageDiv h2{
	    line-height: 1.1;
    color: #4a4a40;
	font-size: 20px;
	    margin-top: 11px;
    margin-bottom: 11px;
}

#stickmenList .bfiMakeVerticalAlign{
	margin-top: 0 !important;
}

.results-progress-text{
	min-height: 175px;
}

.results-vertical-align{
	
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
			
			-webkit-justify-content: space-around;
     -ms-flex-pack: distribute;
         justify-content: space-around;
}

.results-horizontal-align{
	 display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
			
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
		-webkit-flex-direction: column;
			-ms-flex-direction: column;
					flex-direction: column;
					
					-webkit-justify-content: space-around;
     -ms-flex-pack: distribute;
         justify-content: space-around;
}

.result-padding{
	padding: 1em 0;
	margin:0;
}

.result-nopadding{
	padding: 0;
}

.result-chart-date-label{
    font-size: 0.8em;
    line-height: 1em;
}

.results-encouragement-text{
    font-size: 14px;
}

.achievementmessage{
    color: #4F46E5;
    margin: 0.2em 0em;
    display:none;
}

.results-coaching-feedback{
    text-align:left;
    padding: 1em;
}

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {

}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
    #bg-game-results-bfi #stickmenList{
        max-width:320px;
        margin: 0 auto;
        display: inline-block;
        float: none;
    }
    
    #bg-game-results-bfi, .user-game-rating{
        min-height: 160px;
    }
}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
    .progressChart{
        margin-top:0.5em;
        min-height: 140px;
    }
    
    .results-progress-text {
        min-height: auto;
    }
    #bg-game-results-bfi, .user-game-rating{
        min-height: auto;
    }
    
    .innerGoalPieText {
        /*top: 63px;*/
        top:64px;
    }
    #bg-game-results>div>div>p{
        font-size: 80%;
    }
    #bg-game-results>div>div>h4{
        font-size: 95%;
    }
    #bg-game-results .bg-result-block{
        padding: 10px;
    }
    #bg-game-results-bfi>h3{
        margin-top: 11px;
    }
    .starRating{
        margin: 0 !important;
    }
}

/* Extra Small Devices, Phones */ 
@media only screen and (max-width : 480px) {
   
   .result-charts{
       min-height: 300px!important;
   }
   
   .results-vertical-align {
       -webkit-box-direction: normal;
		-webkit-flex-direction: column;
			-ms-flex-direction: column;
					flex-direction: column;
   }
}

/* Custom, iPhone Retina */ 
@media only screen and (max-width : 320px) {
    
    
}

.magictime {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.tinUpIn {
  -webkit-animation-name: tinUpIn;
  animation-name: tinUpIn;
}

@-webkit-keyframes tinUpIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(1, 1) translateY(-900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    -webkit-transform: scale(1.1, 1.1) translateY(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    -webkit-transform: scale(1, 1) translateY(0);
  }
}
@keyframes tinUpIn {
  0% {
    opacity: 0;
    transform: scale(1, 1) translateY(-900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    transform: scale(1.1, 1.1) translateY(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    transform: scale(1, 1) translateY(0);
  }
}

.results-table{
	width: 100%;
	border-top: 1px solid #dadada;
    margin-bottom: 25px;
}
.results-table, th, td {
	border-bottom: 1px solid #dadada;
    height: 30px;
    /*background: linear-gradient(90deg, lightblue 0%, lightblue 35%, #f9f9f9 40%);*/
}

.results-tabs:after { 
    content: " "; 
    display: block;
    clear: both;
} 

#resultsLineChart{
    height: calc(100% - 350px);
}
a:hover, a:focus{
    color: #f9f9f9;
    text-decoration: none;
}
#bg-result-block-container{
    display: flex;
    flex-wrap: wrap;
}
.fb-comments-container{
    display: inline-block;
    padding: 5px 15px;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    background: #f9f9f9;
    box-shadow: 1px 1px 20px #000;
    margin-bottom: 45px;
    max-width: 100%;
}
#chartjs-tooltip {
    opacity: 0;
    position: absolute;
    background: rgba(0, 0, 0, .7);
    color: white;
    padding: 3px;
    border-radius: 3px;
    -webkit-transition: all .1s ease;
    transition: all .1s ease;
    pointer-events: none;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    z-index: 1000;
}
#chartjs-tooltip>table>tr>th, #chartjs-tooltip>table>tr>td{
    height: 25px;
}
#bg-game-results a {
    color: #4F46E5;
}
#bg-game-results a:hover{
    color: #4F46E5;
    text-decoration: underline;
}
#result-chart-container{
    position: relative;
    width: 100%;
    height: 270px;
}
@keyframes chartjs-render-animation{from{opacity:.99}to{opacity:1}}.chartjs-render-monitor{animation:chartjs-render-animation 1ms}.chartjs-size-monitor,.chartjs-size-monitor-expand,.chartjs-size-monitor-shrink{position:absolute;direction:ltr;left:0;top:0;right:0;bottom:0;overflow:hidden;pointer-events:none;visibility:hidden;z-index:-1}.chartjs-size-monitor-expand>div{position:absolute;width:1000000px;height:1000000px;left:0;top:0}.chartjs-size-monitor-shrink>div{position:absolute;width:200%;height:200%;left:0;top:0}