div.passoverPage {
  overflow: hidden;
}
div.passoverPage .pass__img {
  object-fit: cover;
  object-position: center top;
  height: 300px;
  width: 100%;
}
@media (max-width: 641px) and (min-width: 0px) {
  div.passoverPage .pass__img {
    object-fit: fill;
    width: 100%;
  }
}
div.passoverPage ul {
  margin-top: 0.75em;
}
div.passoverPage ul li:last-child {
  margin-bottom: 0.75em;
}
div.passoverPage div.scripture__highlight {
  background-color: #f1f6fa;
  padding: 1.25em;
  margin: 0 auto;
}
div.passoverPage div.scripture__highlight h4, div.passoverPage div.scripture__highlight h5 {
  padding-top: 0;
  margin-bottom: 0.5em;
  font-size: 1.25em;
}
div.passoverPage div.scripture__highlight p {
  font-size: 1em;
  line-height: 1.5em;
}
div.passoverPage div.scripture__highlight ul > li:last-child {
  padding-bottom: 1.5em;
}
@media (max-width: 641px) and (min-width: 0px) {
  div.passoverPage div.scripture__highlight h4, div.passoverPage div.scripture__highlight h5 {
    font-size: 1.1em;
  }
  div.passoverPage div.scripture__highlight p {
    font-size: 0.9em;
    line-height: 1.25em;
  }
}
div.passoverPage div.pass__audio-block {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #505C82;
  padding: 0.5em 2em;
  text-align: center;
  margin: 0 auto;
}
div.passoverPage div.pass__audio-block div.pass__audio-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #303A59;
  text-align: center;
  border-radius: 3px;
  width: 45px;
  height: 25px;
  align-content: center;
  padding: 0.2em 1em;
  margin: 0 4px;
  cursor: pointer;
  user-select: none;
}
div.passoverPage div.pass__audio-block div.pass__audio-btn:hover {
  background-color: #6479B9;
}
div.passoverPage div.pass__audio-block div.pass__audio-btn:active {
  background-color: #D18A71;
}
div.passoverPage div.pass__audio-block div.pass__audio-btn img.pass__audio-controls {
  max-width: 18px;
  max-height: 18px;
  line-height: 18px;
}

div.passoverPageHide {
  display: none;
}

.fade-in {
  animation: fadeIn 1.25s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}