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

/* The sidepanel menu */
.sidepanel {
  height: 100%; /* Specify a height */
  width: 0; /* 0 width - change this with JavaScript */
  position: fixed; /* Stay in place */
  z-index: 1; /* Stay on top */
  top: 0;
  left: 0;
  border-radius: 0px 5px 5px 0px;
  background-color: rgba(0,0,0,1.00); /* Black*/
  overflow-x: hidden; /* Disable horizontal scroll */
 /* padding-top: ;  Place content XXpx from the top */
  padding: 10px 0px 10px 0px;
  transition: 0.5s; /* 0.5 second transition effect to slide in the sidepanel */
}

/* The sidepanel links */
.sidepanel a {
  padding: 10px 10px 10px 30px;
  text-decoration: none;
  font-size: 1.5em;
  color: rgba(255,255,255,1.00);
  display: block;
  transition: 0.3s;
}

/* When you mouse over the navigation links, change their color */
.sidepanel a:hover {
  color: rgba(255,255,255,0.50);
}

/* Position and style the close button (top right corner) */
.sidepanel .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 1.5em;
  margin-left: 50px;
}

/* Style the button that is used to open the sidepanel */
.openbtn {
  font-size: 1.5em;
  width: 44px;
  height: 44px;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.75);
  color: rgba(255,255,255,1.00);
  padding:0% 0.5% 0.5% 0.5%;
  position: fixed; /* Stay in place */
  z-index: 1; /* Stay on top */
  top: 0;
  left: 0;
  border-radius: 5px;
}

.openbtn:hover {
  background-color: rgba(0, 0, 0, 0.75);
  color: rgba(255,255,255,0.50);
}