.sidenav
{
  height: 100%;
  width: 75%;
  z-index: 1;
  top: 0;
  right: 0;
  background-color: var(--bg);
  overflow-x: hidden;

  display: flex;
  flex-direction: column;

  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;

  box-shadow: 10px 10px 10px 10px var(--menuShadowColor);
}

.sidenav .closebtn
{
  text-decoration: none;
}

#sideHeader
{
  margin-bottom: 1em;

  flex-shrink: 0;
  display: flex;
  justify-content: space-between;

  box-shadow: 0 2px 4px var(--shadowColor); 

  /* border: 1px solid green; */
}

#sideHeader a:hover,
a:focus
{
  background-color: transparent;
}

#sideHeader a
{
  text-decoration: none;
}

#sideMain
{
  height: 100%;
  min-height: 10em;
  width: 95%;
  overflow-y: auto;

  font-size: 0.8em;

  flex: 1;

  margin: 0 auto;
}

#sideFooter
{
  flex-shrink: 0;

  padding-top: 10px;
  padding-bottom: 20px;
}