/* Hamburger */
#hamburgerBox {
  display: flex;
  flex-direction: row;
  justify-content: right;
  position: fixed;
  margin-top: 50px;
  top: 0;
  left: 0;
  width: 32px;
  height: 50px;
  z-index: 1;
  transition: 0.5s;
  background: rgba(0, 0, 0, 0);
  border-right: solid;
  border-right-color: #E3E3E3;
  border-right-width: 2px;
}

.hamburger {
  background: rgba(0, 0, 0, 0);
  box-sizing: inherit;
  display: inline-block;
  cursor: pointer;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-right: 9px;
}

.bar1, .bar2, .bar3 {
  width: 28px;
  height: 1.3px;
  background-color: #333;
  margin: 5.8px 0;
  transition: 0.5s;
}

.change .bar1 {
  transform: translate(0, 7px) rotate(-45deg);
}

.change .bar2 {
  opacity: 0;
}

.change .bar3 {
  transform: translate(0, -7px) rotate(45deg);
}

#sidepanel {
  font-family: "AktivGrotesk", sans-serif;
  display: flex;
  flex-direction: column;
  position: fixed;
  margin-top: 100px;
  top: 0;
  left: -375px;
  transition: 0.5s;
  padding-top: 0;
  overflow-x: hidden;
  overflow-y: hidden;
  min-height:0;
  height: calc(100% - 100px);
  width: 375px;
  padding-left: 0;
  border-right: solid;
  border-right-color: #E3E3E3;
  border-right-width: 2px;
  padding-bottom: 1rem;
  z-index: 3;
}

div.sidepanelBox {
  overflow-x: hidden;
  overflow-y: scroll;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 1rem;
}

div.sidepanelText {
  padding-left: 18px;
  padding-right: 18px;

  color: #1F1F1F;
  background-color: #FFFFFF;

  font-size: 0.88889rem;
  font-style: normal;
  font-weight: 400;
  line-height: 125%; /* 1.11111rem */
}



p.navBarDate {
  color: white;
  font-size: 14px;
  line-height: 16px;
  hyphens: auto;
  text-transform: lowercase;
  margin: 0;
  padding: 0;
}

#fax {
  margin-bottom: 110px;
}
/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 5; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: #474e5d; /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  padding-top: 10px;
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 1% auto; /* 1% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 400px;
  border-radius: 1rem;
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 40px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

div.audio .close:hover {
  color: white;
}

div.audio .close {
  margin-top: 7px;
}

div.audio {
  position: absolute;
  right: 32px;
  background-color: #1F1F1F;
  padding: 12px;
  width: 340px;
}


#pager {
  position: fixed;
  flex-direction: column;
  z-index: 1;
  right: 25px;
  bottom : 0;
  width: 74px;
  display: inline-flex;
  justify-content: flex-end;
  align-items: flex-start;
}

div.pagerBox {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-bottom: 42px;
}

div.pagerBox img.cursor {
  width: 32px;
  opacity: 0.9;
}
