.logo-header{
    width:250px;
}
.error{
    color:red;
}
.sidepanel  {
  width: 0;
  display: none;
  position: fixed;
  bottom:0;
  transition: bottom 1s;
  z-index: 1;
  height: 89%;

  right: 0;
  background-color: #B97A3B;
  border:2px solid black;
  overflow-x: hidden;
  padding-top: 60px;
}
.show-pannel{
  bottom: 11%;
}
.hide-pannel{
  transition: bottom 1s;
  bottom: -100%;

}
.sidepanel a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #155b94;
  display: block;
  transition: 0.3s;
}

.sidepanel a:hover {
  color: #f1f1f1;
}

.sidepanel .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
}

.openbtn {
  font-size: 20px;
  cursor: pointer;
  background-color: #111;
  color: white;
  padding: 10px 15px;
  border: none;
}

.openbtn:hover {
  background-color:#444;
}
/* Media Queries */
@media(max-width:500px){
  .md-w-100{
    width: 75% !important;
  }
  footer{
      margin-top: 20px;
    position: inherit !important;
  }
  .sidepanel{
    width: 100% !important;
  }
}
