/***** Stick Menu *****/
/* Top Panel */
div#top_panel {
  display: none;
  position: fixed;
  width: 100vw;
  top: 0px;
  left: 0px;
  grid-template-columns:auto auto auto;
  grid-template-rows: 70px;
  justify-items: center;
  align-items: center;
  background: #ffe9cb;
  z-index: 52;
  transition: left 0.5s;
  border-bottom: solid 0.2px rgba(50, 50, 93, 0.25);
}
div#top_panel > img:last-child {
  justify-self: center;
}
div#top_panel a#panel_exit {
  font-size: 42px;
  font-weight: bolder;
  cursor: pointer;
  height: min-content;
  opacity: 0%;
  transition: opacity 0.5s ease-in-out;
}
/* Left Panel */
nav#left_panel {
  position: fixed;
  display: none;
  grid-template-rows: repeat(auto-fill, 50px);
  padding-top: 100px;
  transition: left 0.5s;
  width: 150px;
  left: -150px;
  z-index: 52;
  height: 100vh;
  background: #ffe9cb;
  font-size: var(--navigation);
  font-weight: bold;
  border-bottom: solid 0.2px rgba(50, 50, 93, 0.25);
}

@media screen and (max-width: 959px) {
  div#top_panel {
    display: grid;
  }
  nav#left_panel {
    display: grid;
  }
}
