/* GENERAL CSS */
body {
	height: 100%;
	width: 100%;
	margin: 0px;
	font-family: 'Lato', sans-serif;
}

/* ADMIN LOGIN */
#login_page {
	width: 100%;
	height: 100%;
	background-color: #f1f1f1;
	display:flex;
	align-items: center;
	justify-content: center;
}
#login_page #form_container {
	width: 350px;
	height: auto;
	background-color: #000;
	box-shadow: 1px 2px 5px 1px #000;
	padding: 25px;
}
#login_page #form_container img {
	width: 80%;
	margin-left: 10%;
}
#login_page #form_container form {
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
	height: auto;
	margin: 25px 0px;
}
#login_page #form_container form input {
    width: 80%;
    height: 50px;
    margin-bottom: 25px;
	border: 3px solid #d8b768;
	border-radius: 4px;
}
#login_page #form_container form input:last-child {
	margin-bottom: 0px;
	border: none;
	background-color: #d8b768;
	color: #000;
	font-weight: 700;
	font-size: 18px;
}

/* ADMIN INDEX */
#admin_header {
	width: 100%;
	height: 100px;
	background-color: #000;
}
#admin_header_logo {
	width: 50%;
	float: left;
}
#admin_header_logo img {
	max-height: 80px;
	margin-left: 20px;
	margin-top: 10px;
}
#admin_header_menu {
	width: 50%;
	float: right
}
#admin_header_menu input {
	width: 120px;
	height: 35px;
	border-radius: 4px;
	margin-bottom: 0px;
	border: none;
	background-color: #d8b768;
	color: #000;
	font-weight: 700;
	font-size: 15px;
	margin-right: 20px;
	margin-top: 32.5px;
	cursor: pointer;
}
#manage_books td {
	padding: 20px 0px;
	border-bottom: 1px solid #ccc;
}
#manage_books {
	border-collapse: collapse;
	border-top: 1px solid #ccc;
}

/* INDEX VIEW */
#main_cont p {
	font-size: 18px;
}
.bookmakers_row {
	height: auto;
}
.bookmaker_one {
	width:70%;
	height:auto;
	padding:70px 0px 60px;
	margin:auto;
	border-bottom:1px solid #fff;
}

.bookmaker_one span {
	padding: 0px 70px;
	display: block;
	color: #fff;
}
.bookmaker_one img {
	max-width: 30%;
	max-height: 80px;
}

.book-descr p {
	color: #fff !important;
}

.book-descr a {
	color: #fff !important;
	text-decoration: none;
}

/* media queries */
#header-cont-mob {
	display:none;
}
@media only screen and (max-width: 768px) {
	#header-cont-desk {
		display:none;
	}
	#header-cont-mob {
		display:block !important;
	}
	.bookmaker_one img {
		max-width: 50%;
		max-height: 80px;
	}
	.bookmaker_one {
		width:90%;
		height:auto;
		padding:70px 0px 60px;
		margin:auto;
		border-bottom:1px solid #fff;
	}
	
	.bookmaker_one span {
		padding: 0px 20px;
		display: block;
		color: #fff;
	}
	.desk_element {
		display: none;
	}
	.social_button_header {
		width: auto !important;
    	height: auto !important;
    	padding: 15px !important;
	}

}