body {
	font-family: 'Nunito', sans-serif;
	/* font-family: 'Montserrat', sans-serif; */
	/*font-family: lato,'Helvetica Neue',Arial,Helvetica,sans-serif;  */
	font-size: 15px;

	/* Disables pull-to-refresh but allows overscroll glow effects. */
	/*overscroll-behavior-y: contain; */
	/* Disables pull-to-refresh and overscroll glow effect.
	 Still keeps swipe navigations. */
	/* overscroll-behavior-y: none; */

	background-color: #bfbfbf;
	/* background-color: #EEE; */
	background-image: radial-gradient(#eee, #bfbfbf);

	/* Fix font-weight bold on safari iOS */
	-webkit-font-smoothing: antialiased;

	user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;

	/* safari: try to forbid zoom */
	touch-action: pan-y;
	-ms-touch-action: pan-y;
}

body * {
	user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
}

/* Hack status bar transparent on iOS */
body:before {
	content: '';
	position: fixed;
	z-index: 100;
	top: -100px;
	height: 100px;
	left: 0;
	right: 0;
	background-color: #333;
}

body,
html {
	height: 100%;
}

/* Remove or replace container + row + column usage ? 
   Reducing container padding makes bigger width on right screen
*/
.container-fluid {
	overflow: hidden;
}
@media (max-width: 350px) {
	.container-fluid {
		padding-left: 4px;
		padding-right: 4px;
	}
}
@media (max-width: 600px) {
	.container-fluid {
		padding-left: 8px;
		padding-right: 8px;
	}
}

a {
	color: royalblue;
	transition: ease 0.2s;
}
a:hover {
	color: mediumblue;
}

.mt {
	margin-top: 20px;
}
.mt10 {
	margin-top: 10px;
}
.mb {
	margin-bottom: 20px;
}
.mb2 {
	margin-bottom: 10px;
}
.mb-min {
	margin-bottom: 6px;
}
.no-padding {
	padding: 0;
}
.no-margin {
	margin: 0;
}

.btn {
	font-weight: bold;
	letter-spacing: 1.2px;
	/* font-weight: 300; */
}

.btn-big {
	font-size: 20px;
	padding: 12px 40px;
}

video {
	max-width: 100%;
}

a {
	text-decoration: none !important;
}
a:focus {
	outline: none;
}

label {
	letter-spacing: 1.2px;
}

table {
	margin-bottom: 0px;
	/* background-color: white; */
}

.table-striped {
	background-color: #eee;
}

.table-admin {
	max-width: 600px;
}

.block-admin {
	display: inline-block;
	width: 100%;
	max-width: 500px;
	max-height: 300px;
	overflow: auto;
}

#header {
	display: flex;
	justify-content: center;
	width: 100%;
	background-color: black;
	color: white;
	z-index: 5;
}
.fixed {
	position: fixed;
}
#header-container {
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	/*max-width: 800px;*/
	max-width: 650px;

	padding-left: 24px;
	padding-right: 24px;
}

.header-link {
	position: relative;
	color: white !important;
	text-decoration: none;
	font-weight: 300;
	letter-spacing: 1.2px;
}
.header-link:before {
	width: 0%;
	height: 1px;
	background-color: white;
	position: absolute;
	left: 0;
	bottom: -2px;
	content: '';
	transition: 0.3s ease;
}
.header-link:hover:before {
	width: 100%;
}

.false-header {
	display: block;
	height: 60px;
	width: 100%;
}

.page-active {
	font-weight: bold;
	letter-spacing: 1px;
}

#footer {
	position: absolute;
	bottom: 0;
	margin: 0;
	width: 100%;
	text-align: center;
	padding: 10px;
	font-weight: bold;
	font-size: 14px;
}

#btnMenu {
	cursor: pointer;
	margin-left: 20px;
	user-select: none;
}

#menu {
	position: fixed;
	top: 0;
	right: -300px;
	width: 300px;
	height: 100vh;
	padding: 20px 20px;
	overflow: auto;
	background-color: #000;
	color: white;
	transition: ease 0.6s;
	z-index: 10;

	display: flex;
	flex-direction: column;
}
#menu.open {
	right: 0px;
}
@media (max-width: 768px) {
	#menu {
		width: 100vw;
		right: -100vw;
	}
}
#menu a {
	font-size: 20px;
	color: white;
	transition: ease 0.4s;
	margin: 10px;
}
#menu a:hover,
#closeMenu:hover {
	letter-spacing: 1.2px;
}
#closeMenu {
	width: 100px;
	display: inline-block;
	font-size: 20px;
	cursor: pointer;
	transition: ease 0.3s;
	margin-bottom: 10px;
	margin-top: 10px;
}

#menuBody {
	display: flex;
	align-content: center;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	flex: 1;
}
#menuFooter {
	margin-top: 100px;
}
#menuTop {
	margin-top: 40px;
}
#menuFooter > div,
#menuFooter > a,
#menuFooter > button {
	margin: 6px;
}

#menu-footer-close {
	/* position: absolute; */
	position: fixed;
	right: 10px;
	bottom: 10px;
	cursor: pointer;
	display: none;
}
/* @media (min-width: 768px) {
	#menu-footer-close {
		display: none;
	}
} */

/* No body scroll on mobile menu */
@media (max-width: 768px) {
	.no-scroll {
		overflow: hidden;
	}
}

.block-players-online {
	display: inline-block;
	min-width: 220px;
	/* background-color: white; */
	/* box-shadow: 0 0 2px #777; */
	border-radius: 10px;
	padding: 10px 20px;
	max-height: 300px;
	overflow: auto;
	font-weight: normal;
	user-select: none;
}

#tablePlayersOnline {
	font-weight: bold;
	max-width: 200px;
	display: inline-block;
	margin-top: 6px;
}

#gameInformation {
	letter-spacing: 1.2px;
	font-weight: 300;
}

.ui.attached.menu {
	margin-bottom: 20px;
}

.btn.btn-outline {
	border: 1px solid #2e6da4;
	color: #2e6da4;
	background-color: white;

	box-shadow: 0px 1px 2px 1px #ccc;
	transition: 0.15s;
}

.btn.btn-outline:hover {
	border: 1px solid #2e6da4;
	color: white;
	background-color: #2e6da4;
}
.btn.btn-outline:focus {
	outline: none;
	box-shadow: 0px 0px 0px #ccc;
}

.input-login {
	max-width: 320px;
	display: inline-block;
}
.input-login input {
	letter-spacing: 1px;
}
#pseudo {
	font-weight: bold;
	letter-spacing: 1px;
	border-color: rgba(0, 0, 0, 0.5);
}
#pseudo:focus {
	box-shadow:
		inset 0 1px 1px rgba(0, 0, 0, 0.075),
		0 0 5px rgba(0, 0, 0, 0.4);
	border-color: rgba(0, 0, 0, 0.3);
}
#formLogin input {
	border-color: rgba(0, 0, 0, 0.5) !important;
}
input:focus {
	/*box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);*/
	box-shadow:
		inset 0 1px 1px rgba(0, 0, 0, 0.075),
		0 0 5px rgba(0, 0, 0, 0.4) !important;
	border-color: rgba(0, 0, 0, 0.3) !important;
}

#email {
	display: none;
}

/* SIGNUP */
#warnings,
#success,
#infos {
	display: none;
	margin-bottom: 10px !important;
	margin-top: 10px !important;
}
/* #password {
	display: none;
} */

#btnPlay,
#btnGuest,
#btnPlayBottom {
	width: 140px;
	height: 54px;
}
#btnGuest {
	/* margin-left: 4px;
	letter-spacing: 0.6px; */
}
.btn-shadow {
	/* box-shadow: 2px 2px 0px #777; */
	box-shadow: 0px 1px 2px 1px #777;
	transition: 0.15s;
}
.btn-shadow:focus {
	outline: none;
	box-shadow: 0px 0px 0px #777;
}

.inline-block {
	display: inline-block;
}
.relative {
	position: relative;
}

.movie-title {
	font-weight: bold;
}

.loader {
	/* width: 120px;
	height: 120px;
	border: 16px solid #f3f3f3;
	border-top: 16px solid #333; */
	display: inline-block;
	width: 30px;
	height: 30px;
	border: 6px solid #f3f3f3;
	border-top: 6px solid #333;
	border-radius: 50%;
	-webkit-animation: spin 2s linear infinite; /* Safari */
	animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
	0% {
		-webkit-transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
	}
}
@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/* ANIMATION 'PLACEHOLDER' ON INPUT */

.inputBox {
	position: relative;
	margin-top: 10px;
	display: inline-block;
}
.inputBox input {
	box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
	border: 1px solid rgba(0, 0, 0, 0.4);
	/* width: 320px; */
	min-width: 300px;
	/* height: 30px; */
	/* height: 40px; */
	height: 44px;
	border-radius: 4px;
	background-color: white;
	font-size: 16px;
	border: 1px solid grey;
	padding: 2px;
	padding-left: 10px;
	transition: 0.5s;
}

.inputBox input:focus {
	outline: none;
	/* box-shadow: 1px 1px 3px rgba(0,0,255,0.3); */
	box-shadow: 1px 1px 3px rgba(46, 139, 87, 0.3);
	border: 1px solid rgba(46, 139, 87, 1);
	/* border: 1px solid rgba(0,0,255,0.5); */
}
.inputBox .text {
	position: absolute;
	top: 11px !important;
	left: 16px !important;
	font-size: 18px;
	padding: 0px 3px;
	display: block;
	transition: 0.5s;
	pointer-events: none;
	/* color: #444; */
	color: rgba(0, 0, 0, 0.6);
}
.inputBox input:focus + .text,
.inputBox input:valid + .text,
/* .inputBox input:invalid + .text, */
.inputBox input:disabled + .text {
	top: -10px !important;
	left: 14px !important;
	font-size: 12px;
	height: 18px;
	line-height: 18px;
	letter-spacing: 1px;
	color: #000;
	border-radius: 40px;
	padding: 0 6px;
	background-color: white;
	box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
}

.inputBox input:disabled {
	background-color: lavender;
}

/* .inputBox input:invalid {
	border: 1px solid red;
} */

/* END ANIMATION 'PLACEHOLDER' ON INPUT */
