@charset "utf-8";
/* CSS Document */

.sidepanel  {
  width: 0;
  position: fixed;
  z-index: 1;
  height: 450px;
  top: 0;
  left: 0;
  background-color: #b0021b;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}

.sidepanel a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 18px;
  color: #FFFFFF;
  display: block;
  transition: 0.3s;
}

.sidepanel a:hover {
  color: #fe8809;
}

.sidepanel .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
}

.openbtn {
  font-size: 40px;
  cursor: pointer;
  background-color: #b0021b;
  color: white;
  padding: 10px 15px;
  border: none;
}

.openbtn:hover {
  background-color:#fe8809;
}

/* Style the tab start */
.tab {
  overflow: hidden;
}

/* Style the buttons inside the tab */
.tab button {
  background-color: #b0021b;
  float: left;  
  outline: none;
  cursor: pointer;  
  transition: 0.3s;
  font-size: 24px;
  color:#f2f506;
  padding-left:10px;
  padding-right:10px;
  padding-top:10px;
  padding-bottom:10px;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #d17b0c;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #5d694f;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid #ffffff;
  border-top: none;
}

