*{
	font-family: sans-serif;
}
body{
	background: #DCE35B;  /* fallback for old browsers */
	background: -webkit-linear-gradient(to bottom, #45B649, #DCE35B);  /* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(to bottom, #45B649, #DCE35B); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
	height:100%;
	background-attachment: fixed;
}
h1{
	font-size: 20px;
	text-align: center;
}

.layout-cont{
	background-color: white;
	padding: 5px;
	border-radius: 5px;
	box-shadow: 10px 15px 20px rgba(0,0,0,0.5);
	margin-bottom: 15px;
}
.float-right{
	float: right;
}
.center-text{
	text-align: center;
}
/*********************************** TABLES ***********************************/
.data-table{
	width: 100%;
}
/******************************** DISPLAY BOX *********************************/
#greyoutBg{
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 5;
	background-color: rgba(0,0,0,0.6);
}
#displayBox{
	background-color: white;
	position: relative;
	padding: 10px;
	z-index: 9;
	width: 90%;
	margin: 50px auto;
}
#displayBox h2{
	margin-top: 30px;
}
#displayBox h2, #displayBox p{
	text-align: center;
} 
#displayBox p{
	font-size: 1.4em;
}
#badgeDisplayImg{
	width: 90%;
	margin: 15px auto;
}
#closeBtn{
	display: inline-block;
	position: absolute;
	top: 5px;
	right: 5px;
	z-index: 11;
	width: 35px;
}
/********************************* LAYOUT ************************************/
#header{
	position: relative;
	margin-bottom: 15px;
}
/*********************** LOGIN ************************************************/
.skull-bg-img{
	width: 100%;
}
.login-input-cont input{
	width: 100%;
	font-size: 20px;
	padding: 5px;
}
#loginBtn{
	
}

/************************************* BUTTONS ********************************/

.button{
	background-color: #077840;
	color: #f0db3c;
	border: none;
	height: 50px;
	padding: 5px;
	border-radius: 5px;
	box-shadow: 5px 10px 10px rgba(0,0,0,0.5);
	font-weight: bold;
}
.timer-btn{
	width: 100%;
	display: inline-block;
	padding: 15px;
	margin: 10px 0;
}
/************************************* HEADER *********************************/
#scoreCont{
	display: inline-block;
	float: right;
	font-size: 1.5em;
	font-weight: bold;
}
/************************************* MAIN MENU *****************************/
#menu{
	margin-bottom: 35px;
}
#menuBtn{
	height: 25px;
	cursor: pointer;
}
.menu-item-cont{
	width: 100%;
	
}
.menu-item{
	width: 100%;
	margin-bottom: 10px;
	font-size: 1.5em;
}

/********************************* PLAYERS ***********************************/
.player-cont, .game-cont, .badge-cont{
	margin-bottom: 15px;
}

.badges-cont{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-column-gap: 10px;
}
.badges-cont h3{
	grid-column: 1/4;
}
.badge-cont img{
	width: 100%;
}
.badge-cont p{
	text-align: center;
}

/************************************ ADMIN BADGES **************************/
.admin-badge-cont h2{
	text-align: center;
}
.admin-badge-cont p{
	text-align: left;
}
.admin-badge-cont img{
	width: 100px;
}
#createBadgesCont{
	display: grid;
	grid-template-columns: 20% 20% 20% 20%;
	column-gap: 4%;
}
.create-badge-cont{
	margin-bottom: 10px;
}
.create-badge-cont img{
	width: 90%;
}
.create-badge-cont button{
	width: 100%;
}

/************************** NOTIFICATIONS **********************************/
.notif-inner-cont{
	display: grid;
	grid-template-columns: 40% 40%;
	column-gap: 10%;
}
.notif-inner-cont img{
	width: 100%;
}
.notification-ok-btn{
	padding: 10px;
	width: 100%;
	position: relative;
}
.notification-ok-btn img{
	height: 60%;
	top: 20%;
	left: 10px;
	position: absolute;
}