@import "https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700";

body {
  font-family: 'Poppins', sans-serif;
  background: #d3d4d4;
  color: #edeff9;
}

.navbar-custom {
    background-color: #4e240e;
}

a, a:hover, a:focus {
	color: inherit;
	text-decoration: none;
	transition: all 0.3s;
}

.wrapper {
	display: flex;
	align-items: stretch;
	perspective: 1500px; /*Defines how many pixels the sidebar is placed from the view. */
}

.navbar {
	padding: 5px 5px;
	border: none;
	border-radius: 0;
	margin-bottom: 40px;
  text-shadow: 1px 1px rgba(95, 144, 52, 0.51);
	box-shadow: 1px 1px rgba(95, 144, 52, 0.51);
}

.navbar-btn {
	box-shadow: none;
	outline: none !important;
	border: none;
}

/*------------------------------------
          SIDE BAR
----------------------------------------*/
#foursquare img {
	width: 250px;
	position:absolute;
}

#sidebar {
	min-width: 250px;
	max-width: 250px;
	height: 100vh;
	z-index: 3;
	background: #d3d4d4;
	transition: all 0.6s cubic-bezier(0.945, 0.020, 0.270, 0.665);
	transform-origin: center left; /* Set the transformed position of the sidebar to center Left side. */
}

ul {
  overflow-y: scroll;
  max-height: 73.5vh;
  padding-bottom: 10vh;
  color: #083215;
}

li {
  color: #619236;
}

li.light {
  color: #d3d4d4;
}

#myInput {
	padding: 20px;
	margin-top: 3.5em;
	border: 0;
	border-radius: 0;
	background: #f1f1f1;
}

#sidebar .sidebar-header {
    padding: 20px;
    background: #083215;
    text-shadow: 1px 1px #4e230d;
}

#sidebar ul {
	padding:0;
	margin:0;
}

#sidebar ul.components {
    padding: 20px 5px;
    border-bottom: 1px solid #47748b;
}

#sidebar ul p {
    color: #619236;
    padding: 10px;
}

#sidebar ul li a {
    padding: 10px;
    font-size: 1.1em;
    display: block;
}

#sidebar ul li a:hover {
    color: #619236;
    background: #fff;
}

#sidebar ul li.active > a, a[aria-expanded="true"] {
    color: #619236;
    background: #083215;
}

ul ul a {
    font-size: 0.9em !important;
    padding-left: 30px !important;
    background: #083215;
}

#sidebar.active{
	margin-left: -250px;
	transform: rotateY(100deg);
}

a[data-toggle="collapse"] {
	position: relative;
}

a[aria-expanded="false"]::before, a[aria-expanded="true"]::before{
	content: '\e259';
	display: block;
	position: absolute;
	right: 20px;
	top: 15px;
	font-family: 'Glyphicons Halflings';
	font-size: 0.6em;
}

#sidebarCollapse {
	width: 40px;
	height: 40px;
	background: #555;
}

#sidebarCollapse i {
	width: 80%;
	margin: 0 auto;
	display: block;
	background: #555;
	transition: all 0.8s cubic-bezier(0.810, -0.330, 0.345, 1.375);
}

a[aria-expanded="true"]::before {
	content: '\e260';
}

/*---------------------------------------------------
    CONTENT STYLE
-----------------------------------------------------*/

h2 {
	color: #edeff9;
}

h3 {
  color: #565656;
}

#content {
	padding: 20px;
	min-height: 100vh;
	transition: all 0.3s;
	z-index: -1;
	width: 100%;
	bottom: 0;
}

#map {
  top: 0px;
  height: 81%;
  position: relative;
  right: 0px;
}

/* Media Queries */

@media (max-width: 768px) {
	/*  Reverses the behavior of the sidebar:
	it'll be rotated vertically and off canvas by default
	collapsing in on toggle button click with removal
	of the vertical rotation. */
	.navbar {
		top: 6%;
		height: 5%;
		opacity: 50;
		right: 0;
	}

	h2 {
		color: #FF5733;
	}

	#sidebarCollapse{
		height: 5%;
	}

    #sidebar {
        margin-left: -250px;
        transform: rotateY(100deg);
    }

    #sidebar.active {
        margin-left: 0;
        transform: none;
    }

    #sidebarCollapse.active i{
    	margin: 0 auto;
    }

    #map {
    	position: absolute;
    	height: 100%;
    	left: 0;
    	right: 0;
    	top: 0;
    	z-index: -1;
    }
}
