*:not(i, h1) {
  font-family: 'EB Garamond', serif;
  font-weight: 500;
}
h1 {
  font-family: 'Mate SC', serif;
  font-weight: 400;
}
body {
  padding-bottom: 75px;
  position: relative;
  z-index: 0;
  background: #fcfcfc;
  color: #333;
}

#song_wrapper {
  position: relative;
  z-index: 0;
  height: calc(100dvh - 75px);
}
#song_wrapper .song-title {
  margin-bottom: 25px;
  font-size: 40px;
  line-height: 43px;
}
#song_wrapper p {
  font-size: 24px;
  line-height: 36px;
  margin-bottom: 30px;
}
#song_wrapper .song {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  transition: all 500ms ease;
  padding: 25px 0 80px;
}
#song_wrapper .song.current {
  background: rgba(252, 252, 252, 255);
  z-index: 2;
  opacity: 1;
}
#song_wrapper .song.staging {
  background: rgba(252, 252, 252, 255);
  z-index: 1;
  opacity: 0;
}

#navigation_wrapper {
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: #165b33;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  transition: all 500ms ease;
  transform: translateY(calc(100dvh - 75px));
}
#navigation_wrapper > .nav-bar {
  box-shadow: 0 0 10px 2px #555;
  position: relative;
  z-index: 2;
}
#navigation_wrapper .navigation {
  list-style: none;
  margin: 0;
  padding: 18px 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
}
#navigation_wrapper .navigation .nav-item button {
  border-radius: 20px;
  color: #333;
  background: #f8b229;
  border: none;
  padding: 10px 15px;
  font-size: 18px;
  line-height: 18px;
  font-family: 'Mate SC', serif;
  transition: all 300ms ease;
}
#navigation_wrapper .navigation .nav-item button:hover,
#navigation_wrapper .navigation .nav-item button:focus {
  color: white;
  background: #bb2528;
}
#navigation_wrapper .navigation .nav-item button[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}
#song_num {
  font-size: 18px;
  line-height: 38px;
  font-family: 'Mate SC', serif;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  padding: 0 15px;
  color: #fcfcfc;
  cursor: pointer;
}
#song_num option {
  background: #333;
}

#navigation_wrapper.nav-open {
  transform: translateY(20dvh);
}
#navigation_wrapper.nav-open #song_select i:before {
  content: '\f62a';
  transform: scale(1.7);
}

#navigation_wrapper .song-list {
  position: relative;
  height: calc(80dvh - 75px);
  padding: 15px 0;
  overflow: scroll;
  background: #fbefd8;
}
#navigation_wrapper .song-list > nav {
  display: block;
  max-width: 410px;
  width: 100%;
  margin: auto;
}
#navigation_wrapper .song-navigation {
  list-style: none;
  margin: 0;
  padding: 0;
}
#navigation_wrapper .song-button {
  text-indent: -36px;
  position: relative;
  z-index: 0;
  font-family: 'Mate SC', serif;
  font-weight: 400;
  display: block;
  width: 100%;
  text-align: left;
  font-size: 24px;
  line-height: 28px;
  padding: 15px 45px 15px 47px;
  background: none;
  border: none;
  border-bottom: 1px dashed black;
  scroll-margin-top: 40px;
}
#navigation_wrapper .song-button.current-song {
  background-color: lightgreen;
}
#navigation_wrapper .song-button.current-song:before {
  content: '\f5e1';
  position: absolute;
  right: 0px;
  z-index: 1;
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: 400 !important;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
}
#navigation_wrapper .song-button.prev-song {
  background: #ccc;
  color: #333;
}
#navigation_wrapper .song-button.prev-song:before {
  content: '\f272';
  position: absolute;
  right: 0px;
  z-index: 1;
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: 400 !important;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
}
