@font-face {
    font-family: 'hoboregular';
    src: url('/includes/fonts/hobo-webfont.woff2') format('woff2'),
         url('/includes/fonts/hobo-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}


body {
	padding-top:75px;
	//background-color:#141414;
	background-color:#1D1D26;
}

h2 {
	text-shadow:2px 2px 5px #373737;
	text-align:center;
	color:white;
	font-size:26px;
}
h1 {
	text-shadow:2px 2px 5px #373737;
	text-align:center;
	color:white;
	font-size:20px;
}

h3 {
	text-shadow:2px 2px 3px #373737;
	text-align:center;
	color:white;
	font-size:36px;
}

h4 {
	text-shadow:2px 2px 3px #373737;
	text-align:center;
	color:white;
	font-size:42px;
}

img.logo {
	margin-left:auto;
	margin-right:auto;
	margin-top:0%;
	display:block;
	border-style:none;
	box-shadow: 3px 3px 4px 2px #36261E, -3px -3px 4px 2px #36261E;
}

.navbar {
	border-bottom:2px solid #111111;
	background:#333333;
	width:100%;
	font-size:18px;
	font-family:hoboregular,Arial,sans-serif;
	display: table;
    table-layout: fixed;
	top:0;
	bottom:0;
	left:0;
	right:0;
	position:fixed !important;
	z-index:1001;
}

.navbar ul {
	display:flex;
	flex-direction:row;
	margin:0;
	padding:0;
	width:50%;
	background:#4A4A4A;
}

.navbar ul li {
  list-style: none;
  text-align: center;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
  position:relative;
  color:#FFFFFF;
  flex-grow:1;
  -webkit-transition-duration:0.4s;
  transition-duration:0.4s;
}


.navbar ul li:first-child {
  border-left: 2px solid #000;
}

.navbar ul li:last-child {
  border-right: 2px solid #000;
}

.nav-item {
  display: block;
  text-decoration: none;
  padding: 10px 0;
  -webkit-transition-duration:0.4s;
  transition-duration:0.4s;
}

.nav-item:link {
	color:#FFFFFF;
}
.nav-item:visited {
	color:#FFFFFF;
}
.nav-item:hover {
	color:#FFFFFF;
	//background-color:#0B7A29;
	background-color:#B55A05;

}
.nav-item:active {
	color:#FFFFFF;
}

.nav-content {  
  display: none;
  position: absolute;
  background-color: #000000;
  overflow:hidden;
  float:none;
  width:100%;
}

.navbar ul li:hover .nav-content {
  display:block;
}

.navbar ul li:hover {
	//background-color:#0B7A29;
	background-color:#B55A05;
}

.nav-content a {
  border: 0.5px solid #000;
  background:#585858;
  display: block;
  text-decoration: none;
}

.nav-content a:link {
	color:#FFFFFF;
}
.nav-content a:visited {
	color:#FFFFFF;
}
.nav-content a:hover {
	color:#FFFFFF;
	//background-color:#0B7A29;
	//background-color:#B55A05;
	//background-color:#2D3340;
	background-color:#3F4A61;


}
.nav-content a :active {
	color:#FFFFFF;
}

.nav-icon {
	vertical-align:bottom;
	//float:left;
}

.nav-text {
	vertical-align:middle;
}

@media screen and (max-width: 800px) {
	.navbar ul li .nav-item .nav-text {
		display:none;
	}
}

/*
button.accordion {
	background-color: #4A4A4A;
	cursor: pointer;
	padding: 18px;
	width: 50%;
	margin-left:auto;
	margin-right:auto;
	margin-bottom:15px;
	border: none;
	outline: none;
	transition: 0.4s;
	text-align:center;
	border-radius:4px;
	text-shadow:2px 2px 3px #373737;
	color:white;
	font-size:30px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

button.accordion.active, button.accordion:hover {
	//background-color: #0B7A29; 
	background-color:#B55A05;
   // box-shadow: 3px 3px 4px 2px #0B7A29, -3px -3px 4px 2px #0B7A29;
    box-shadow: 3px 3px 4px 2px #B55A05, -3px -3px 4px 2px #B55A05;

}
*/

/*
button.accordion.active {
	margin-bottom:8px;
}*/

label.accordion {
	position:relative;
	display:block;
	background-color: #4A4A4A;
	cursor: pointer;
	padding: 18px;
	width: 50%;
	margin-left:auto;
	margin-right:auto;
	//margin-bottom:15px;
	border: none;
	outline: none;
	transition: 0.4s;
	text-align:center;
	border-radius:4px;
	text-shadow:2px 2px 3px #373737;
	color:white;
	font-size:30px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	border:2px solid #FFF;
}

label.accordion:hover {
	//background-color: #0B7A29; 
	background-color:#B55A05;
   // box-shadow: 3px 3px 4px 2px #0B7A29, -3px -3px 4px 2px #0B7A29;
    //box-shadow: 3px 3px 4px 2px #B55A05, -3px -3px 4px 2px #B55A05;

}

div.accordion-panel {
	position:relative;
	max-height:0px;
	//overflow:hidden;
	overflow-x:hidden;
	overflow-y:auto;
	
	margin-left:auto;
	margin-right:auto;
	margin-bottom:15px;
	padding-left:5px;
	padding-right:5px;
	width:0%;
	
	-moz-transition: max-height 0.4s ease-out, width 0.3s ease-out 0.1s;
	-webkit-transition: max-height 0.4s ease-out, width 0.3s ease-out 0.1s;
    -ms-transition: max-height 0.4s ease-out, width 0.3s ease-out 0.1s;
    -o-transition: max-height 0.4s ease-out, width 0.3s ease-out 0.1s;
	transition: max-height 0.4s ease-out, width 0.3s ease-out 0.1s;

}


div.accordion-content {
	color:white;
	font-size:24px;
	border-left: 1px solid #FFF;
	border-right: 1px solid #FFF;
	border-bottom: 1px solid #FFF;
	border-top: 1px solid #FFF;
	
	border-radius: 0px 0px 5px 5px;
	background:#333333;
	padding:10px;
}

input[name='accordion'] {
	display: none;
}

input[name='accordion']:checked + label.accordion {
	background-color:#B55A05;
   // box-shadow: 3px 3px 4px 2px #0B7A29, -3px -3px 4px 2px #0B7A29;
    //box-shadow: 3px 3px 4px 2px #B55A05, -3px -3px 4px 2px #B55A05;
}

input[name='accordion']:checked ~ div.accordion-panel {
	width:75%;
	height:auto;
	max-height:100vh;//1600px;

}
