body,html { 
	height: 100%;
	font-family: "Lato", sans-serif;
}
#main {
  transition: margin-left .5s;
  padding: 16px;
  min-height:100%; /* real browsers */
}
@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}
.w3-dropdown-content {
    color: #555!important;
    background-color: unset !important;
}
.w3-content {
	color:#607d8b!important;  /* from .w3-text-blue-grey*/
	max-width:1200px;
}
.w3-text-deep-purple {
	color: #9579bd !important;
}
.w3-deep-purple,.w3-hover-deep-purple:hover{color:#fff!important;background-color:#9579bd!important}
.w3-text-orange {
	color: #c45911;
}
.w3-section-custom{margin-top:32px!important;margin-bottom:32px!important}
.w3-round-too{border-top-right-radius: 4px;border-top-left-radius: 4px;}
.w3-round-bottom{border-bottom-right-radius: 4px;border-bottom-left-radius: 4px;}

.hyphens-auto{
	hyphens: auto;
}

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #69A7A4;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 10px;
}

/* Style the buttons that are used to open the tab content */
.sidenav button {
  display: block;
  background-color: inherit;
  color: black;
  padding: 22px 16px;
  width: 100%;
  font-size: 25px;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  transition: 0.3s; 
}

/* Change background color of buttons on hover */
.sidenav button:hover {
  background-color: #ddd;
  color: #818181;
}

/* Create an active/current "tab button" class */
.sidenav button.active {
  background-color: #ccc;
}

.headerspacing{
	padding-top: 64px !important;
}

.w3-dropdown-content{
	position: relative;
}

.checkbox {
  position: absolute;
  display: block;
  height: 32px;
  width: 32px;
  top: 20px;
  left: 20px;
  z-index: 5;
  opacity: 0;
  cursor: pointer;
}

.hamburger-lines {
  display: block;
  height: 26px;
  width: 32px;
  position: absolute;
  top: 17px;
  left: 20px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger-lines .line {
  display: block;
  height: 4px;
  width: 100%;
  border-radius: 10px;
  background: #0e2431;
}

.hamburger-lines .line1 {
  transform-origin: 0% 0%;
  transition: transform 0.4s ease-in-out;
}
.hamburger-lines .line2 {
  transition: transform 0.2s ease-in-out;
}
.hamburger-lines .line3 {
  transform-origin: 0% 100%;
  transition: transform 0.4s ease-in-out;
}

#navDemo1 {
  padding-top: 120px;
  box-shadow: inset 0 0 2000px rgba(255, 255, 255, .5);
  height: 100vh;
  width: 100%;
  transform: translate(-150%);
  display: flex;
  flex-direction: column;
  margin-left: -40px;
  padding-left: 50px;
  transition: transform 0.5s ease-in-out;
  text-align: center;
}

 input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
  transform: rotate(45deg);
}

input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
  transform: scaleY(0);
}

input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
  transform: rotate(-45deg);
}

.container {
   display: inline-block;
   cursor: pointer;
}
#content{
	
}
.footer {
   width: 100%;
   background-color: #ccc;
   text-align: right;
   opacity: 0.75;
   position:absolute;
}
.footer span{
	cursor: pointer;
    display: inline-block;
	padding: 10px; 
}
.footer span:hover {
  color: #818181;
}