@import url(https://fonts.googleapis.com/css?family=Ubuntu&subset=latin,cyrillic);
body {
	margin: 0px;
	padding: 0px;
	text-align: center;
	font-family:'Ubuntu';
}

#container {
	width: 80%;
	margin: 0 auto;
	text-align: center;
}

h3 {
	text-align:left;
}

/* admins page */
.avail {
	width: 100%;
	overflow: scroll;
	border: 2px solid #444;
	border-collapse: collapse;
	text-align: center;
}

.avail th {
	border-bottom: 1px solid #444;
}

.avail td {
	border: 1px solid #444;
}

.admins
{
	width:100%;
	border-collapse:collapse;
	margin-top:30px;
}

.upper  td, th {
    border: 1px #BBBBBB solid;
    background-color: #FFFDFD;
    padding: 15px 15px 10px 6px;
    text-align: left;
    font-size: 12px;
    color: #3A3737;
    font-family: 'Ubuntu';
}

.lower {
	text-decoration:none;
	border: 1px #BBBBBB solid;
    background-color: #F9F9F9;
    padding: 15px;
    text-align: left;
    font-size: 13px;
    color: #3A3737;
    font-family: 'Ubuntu';
}

.lower a {
	text-decoration:underline;
	color:#676262;
}

.lower a:hover {
	color:#000;
}

.edit {
	background-color:#1E91CF;
	border-radius:2px;
	padding:10px 10px 10px 10px;
	color:#FFF;
	-webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
	transition: all .2s easy-out;
	text-decoration:none;
}

.edit:hover {
	background-color:#4CA6D6;
}

#button {
	background-color:#1E91CF;
	padding:10px;
	border-radius:2px;
	-webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
	transition: all .2s easy-out;
	text-decoration:none;
	background-image:url('images/save.svg');
	background-repeat:no-repeat;
	color:white;
	border:0px;
	cursor:pointer;
	background-position:center;
	width:44px;
	height:44px;
}

#button:hover {
	background-color:#4CA6D6;
}

.delete {
	background-color:#F56B6B;
	border-radius:2px;
	padding:10px 10px 10px 10px;
	color:#FFF;
	-webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
	transition: all .2s easy-out;
}

.delete:hover {
	background-color:#F39090;
}

.add a {
    background-color: #1E91CF;
    border: 1px #1C89C4 solid;
    border-radius: 2px;
    padding: 20px 10px 20px 10px;
    color: #FFF;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s easy-out;
    text-decoration: none;
}

.add a:hover {
	background-color:#4CA6D6;
}

.login-block {
    width: 320px;
    padding: 20px;
    background: #F3F3F3;
    border-radius: 5px;
    border-top: 5px solid #1496BB;
    margin: 0 auto;
	margin-top:100px;
}

.login-block  h1 {
    text-align: center;
    color: #444;
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 20px;
}

.login-block h3 {
	text-align:center;
}

.login-block input {
    width: 100%;
    height: 42px;
    box-sizing: border-box;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin-bottom: 20px;
    font-size: 14px;
    padding: 0 20px 0 50px;
    outline: none;
}

.login-block input.button {
    width: 100%;
    height: 40px;
    background: #1291B5;
    box-sizing: border-box;
    border-radius: 5px;
    border: 1px solid #0E6680;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    outline: none;
    cursor: pointer;
}

.login-block input.button:hover {
    background: #1AB6E2;
}

.admin-add-edit input {
    width: 70%;
    height: 42px;
    box-sizing: border-box;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin-bottom: 20px;
    font-size: 14px;
    outline: none;
}

.admin-add-edit input.button {
    width: 70%;
    height: 40px;
    background: #1291B5;
    box-sizing: border-box;
    border-radius: 5px;
    border: 1px solid #0E6680;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    outline: none;
    cursor: pointer;
	margin-top:20px;
}

.admin-add-edit input:active, .admin-add-edit input:focus {
    border: 1px solid #1287A9;
}

.admin-add-edit input.button:hover {
    background: #1AB6E2;
}

.admin-add-edit textarea {
width:30% !important;
height:40% !important;
}


/* menu */

#menu {
	text-align: left;
	margin: 0 auto;
	display:inline-block;
}

.nav-mobile {
	display:none; /* Hide from browsers that don't support media queries */
	cursor:pointer;
	position:absolute;
	top:0;
	right:0;
	background:#182E44 url(../images/nav.svg) no-repeat center center;
	height:80px;
	width:80px;
	border-radius:5px;
	-webkit-border-radius:5px;
	-moz-border-radius:5px;
}

/* http://toddmotto.com/building-an-html5-responsive-menu-with-media-queries-javascript/ */

@media only screen and (min-width: 20px) and (max-width: 1155px) {
	#menu {
		display:none;
	}
	.nav-active {
		display:block !important;
		text-align: left;
		margin: 0 auto;
	}
	.nav-mobile-open {
		border-radius:5px 5px 0 0;
		-webkit-border-radius:5px 5px 0 0;
		-moz-border-radius:5px 5px 0 0;
	}
    .nav-mobile {
		display:block;
	}
    .header-menu {
		width:100%;
	}
	.menu li {
		width:100%;
		float:none;
	}
	
	.menu li a {
		border-left:1px solid #7D6D6D;
	}
	
	.first {
		border-left:none!important;  
	}
}

.header-menu {
	position: relative;
    width: 100%;
    background: #182E44;
    height: 80px;
    border-bottom: 2px solid #a5a5a5;
    z-index: 10;
}

.page-header {
	width: 90%;
	margin: 0 auto;
}

.menu { 
	text-align:center;
}

#menu-on {
	background-color: #C7554D!important;
}

#menu li {
	list-style: none;
    line-height: 80px;
    font-size: 80%;
	float: left;
	-webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
	*display:inline;
	background-color:#182E44;
}

#menu li:hover {
    background: #C7554D;	
}



#menu li a {
	border-right: 1px solid #7D6D6D;
    color: #C3B9B9;
    text-decoration: none;
    display: block;
    border-bottom: 0;
    text-transform: uppercase;
    white-space: nowrap;
    padding: 0 20px;
    font-weight: 700;
	font-family:'Ubuntu';
}

.first
{
	border-left: 1px solid #7D6D6D;
}

.icons {
	color:white;
	float:left;
	font-size:30px!important;
	float:right;
}

.icons:hover {
	color:#444;
}

.checkbox {
	height:20px !important;
	width:10% !important;
	vertical-align: top;
}

.margin-left {
	margin-left:15px;
}

.lower input {
	width:80%;
}