/* Style the button that is used to open and close the collapsible content */
.collapsible {
    cursor: pointer;
    border: none;
    text-align: center;
    outline: none;
    font-size: 15px;
    border-color: 2f3233;
    border-style: solid;
    margin-bottom: 5px;

  }
  
/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.collapsible:hover {
  background-color: #ccc;
}

/* Style the collapsible content. Note: hidden by default */
.content {
  padding: 0 18px;
  display: none;
  overflow: hidden;
}

/* MENU CSS */
#menu-button-container {
  position: fixed;
  top: 0;
  left: 0;
  display: inline-block;
  right: 0;
  text-align: center;
  width: 100%;
  background-color: #2f3233;
  z-index: 3;

}

.menu-button {
  background-color: #00adef;
  border-radius: 5px;
  z-index: 3;
  width: 25px;
  height: 25px;
  margin-top: 5px;
  margin-bottom: 5px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 5px;
  padding-right: 5px;
  display: inline;
}

#left-panel {
  left: 0;
  overflow-y: auto;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
  position: fixed;
  top: 0%;
  bottom: 0%;
  background-color: #00adef;
  z-index: 4;
  padding: 5px;
  transition: -webkit-transform .5s ease;
  transition: transform .5s ease;
  box-shadow: 2px 2px 4px #008bc2;
  margin-top: 50px;
  width: 15%;
  min-width: 200px;
  width: 300px;
  max-width: 300px;
  text-align: center;
}

#left-panel::-webkit-scrollbar {
  display: none;
}

.left-panel * {
  text-align: center;
}


.left-panel-closed {
  -webkit-transform: translateX(-105%);
  -ms-transform: translateX(-105%);
  transform: translateX(-105%);
}

.left-panel-open {
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}