.App {
  text-align: center;
  display: -webkit-inline-box;
}

html,
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif !important;
}

p {
  margin: 0;
  padding: 0;
}

h2 {
  margin-bottom: 10px;
  font-size: x-large !important;
}

h1 {
  font-size: 20px;
  margin: 0 !important;
}

h4,
h5 {
  margin: 0px;
}

.react-select__input {
  color: white;
}

/******************************/

.slide {
  max-width: 800px;
  min-width: 300px;
  border-radius: 10px;
  box-shadow: 2px 2px 3px 2px #e9e9e9;
  margin: 10px;
  margin-bottom: 10px;
  flex: 1;
  justify-content: space-around;
  background-color: white;
}

.slideHeader {
  display: flex;
  flex-direction: row;
  align-items: center;
  border-bottom: 1px solid #cc0000;
  padding-bottom: 5px;
  margin-bottom: 5px;
}

.slideHeader h4 {
  font-size: 14px;
}

.slideHeader h5 {
  font-size: 12px;
  font-weight: 100;
}

.slideFooter {
  height: 30px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-top: solid lightgrey 1px;
  padding: 10px 0 10px 0;
  margin-top: 10px;
  margin-bottom: 5px;
}

.slideFooterReverse {
  display: flex;
  flex-direction: row-reverse;
}

.slideContent {
  flex: 1;
  padding: 15px;
  padding-bottom: 0;
}

.slideButton{
  border: 1px solid #ccc;
  border-radius: 1em;
  margin: 1%;
}

.slideButton:hover {
  font-weight: bold;
  box-shadow: 0 0 10px -2px rgba(0,0,0,0.6);
}

.pill{
  border: 1px solid #ccc;
  padding: 1%;
  margin: 1%;
  border-radius: 1em;
}

.fatherProfilePic {
  height: 30px;
  width: 30px;
  border-radius: 15px;
  margin-right: 10px;
}

.footerText {
  font-size: small;
  color: darkGrey;
}

.shareButton {
  outline: none;
}

.shareButtonContainer {
  justify-content: flex-end;
  align-items: center;
  line-height: 35px;
}

.cardTally {
  float: right;
  padding-top: 5px;
  padding-right: 5px;
}

.shareIcon {
  border-radius: 2px;
  margin-left: 10px;
  transition: all 0.2s;
}

.shareIcon:hover {
  opacity: 0.5;
  transition: all 0.2s;
}

.twitterIcon {
  margin-top: 1px;
}

.commentarySeeMore {
  color: #cc0000;
  font-weight: 100;
  font-size: 14px;
  transition: all 0.2s;
}

.commentarySeeMore:hover {
  cursor: pointer;
  text-decoration: underline;
  opacity: 0.6;
  transition: all 0.2s;
}

.expandButton {
  margin: auto;
  margin-bottom: 5px;
  background-color: transparent;
  outline: none;
  color: red;
}

.expandedFooter {
  height: 40px;
  border: none;
  margin-top: 5px;
}

/******************************/
.commentaryPanel {
  position: fixed;
  background-color: white;
  width: 40%;
  height: 100vh;
  top: 0;
  right: -45%;
  box-shadow: -5px 100px 10px lightgrey;
  z-index: 2000;
  transition: all 0.3s;
}

.commentaryPanel.expanded {
  right: 0;
  transition: all 0.3s;
}

@media only screen and (max-width: 700px) {
  .commentaryPanel {
    width: 95%;
    right: -105%;
  }

  .commentaryPanel.expanded {
    right: 0;
    transition: all 0.3s;
  }
}

.noCommentaries {
  margin: auto;
  margin-top: 50px;
  color: red;
  text-align: center;
}

.noCommentariesBlurb {
  margin: auto;
  margin-top: 20px;
  text-align: center;
  padding-right: 10px;
}

.activityIndicator {
  margin-top: 150px;
  display: flex;
  justify-content: space-around;
}

.closeButton {
  margin: 10px 15px 0 0;
  font-weight: 100;
  transition: all 0.1s;
}

.closeButton:hover {
  cursor: pointer;
  opacity: 0.4;
  transition: all 0.1s;
}

.paneHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 10px 10px 10px;
  padding-top: 10px;
}

.paneHeader h4 {
  font-weight: 100;
  text-align: right;
  margin: 0 10px 0 10px;
  color: #bc180f;
  font-size: 20px;
  margin-bottom: 0px;
}

.paneHeader span {
  margin-top: -5px;
  font-weight: 800;
  font-size: 24px;
  color: #cc0000;
}

.commentaryPaneHeaderVerseInfo {
  font-weight: bold;
  margin-top: 0px;
}

/******************************/

.bibleVerseContainer {
  display: flex;
  align-items: baseline;
}

.bibleVerse {
  display: flex;
  position: relative;
  text-align: left;
  padding: 0;
  margin: 10px 0px;
  text-decoration: none;
  color: black;
}

.bibleVerseText {
  margin-left: 10px;
  transition: all 0.2s;
  border-bottom: 1px solid transparent;
}

.bibleVerse.clickable:hover .bibleVerseText {
  border-bottom: 1px solid #cc0000;
}

.bibleVerse.clickable:hover {
  cursor: pointer !important;
  text-decoration: none;
  transition: all 0.2s;
}

.bibleVerse:hover,
.bibleVerse:active,
.bibleVerse:visited {
  text-decoration: none;
  cursor: default;
  color: black;
}

.commentaryToolTip {
  display: flex;
  opacity: 0;
  position: absolute;
  top: -5px;
  right: -175px;
  transition: opacity 150ms ease-out;
}

.commentaryToolTip:hover {
  cursor: default;
}

.commentaryToolTip.display {
  opacity: 1;
  transition: opacity 150ms ease-in;
}

/* Hide commentary count when screen size too small */
@media (max-width: 1100px) {
  .commentaryToolTip {
    display: none;
  }
  .commentaryToolTipShow {
    display: none;
  }
}

.triangleLeft {
  position: absolute;
  top: 8px;
  left: -9px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-right: 10px solid #f8f8f8;
  border-bottom: 8px solid transparent;
}

.commentaryCountText {
  color: #cc0000 !important;
  background: #f8f8f8;
  text-align: center;
  border-radius: 3px;
  padding: 0.5rem 0;
  min-width: 150px;
}

.content-container {
  display: flex;
  margin-top: 80px;
  padding-top: 35px;
}

.bibleVerses.headerContainer {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

@media (max-width: 700px) {
  .bibleVerses.headerContainer {
    flex-direction: column;
  }
}

@media (max-width: 1100px) {
  .left-container.left-container-sideNav.extended {
    width: 0%;
  }

  .right-container.right-container-bibleView {
    width: 100% !important;
    display: flex;
    justify-content: center;
  }
}

.bibleView-container {
  width: 90%;
  position: relative;
  transition: 200ms ease-out;
}

.bibleView-container.extended {
  width: 95%;
  transition: 200ms ease-in;
}

@media (max-width: 1100px) {
  .bibleView-container,
  .bibleView-container.extended {
    padding-left: 0px;
    padding-right: 0px;
  }
}

.onboard-note {
  display: flex;
  padding: 1rem 2rem;
  border-radius: 10px;
  border: 1px solid #cc0000;
  background-color: #fff;
  text-align: right;
  justify-content: flex-end;
  align-items: center;
  align-self: center;
}

@media (max-width: 760px) {
  .onboard-note {
    flex: 2;
  }
}

@media (max-width: 700px) {
  .onboard-note {
    text-align: left;
    margin-top: 30px;
  }
}

.onboard-note .text-container {
  margin-right: 2rem;
}

.onboard-note #onboard-header {
  font-weight: 700;
  font-size: 16px;
  color: #cc0000;
}

.onboard-note #onboard-text {
  font-weight: 500;
  font-size: 12px;
  color: #cc0000;
}

.onboard-note .icon-star svg {
  width: 27px;
  height: 27px;
  margin-right: 5px;
}

.reading-title {
  color: #cc0000;
  font-size: 22px;
  padding-top: 20px;
}

.indentedBibleView {
  margin-left: 375px;
  margin-right: 50px;
}

.verseNumber {
  pointer-events: none;
  color: black;
  transition: color 200ms ease;
}

.verseNumber:hover {
  text-decoration: underline;
  cursor: pointer;
}

.redVerse {
  color: #cc0000;
}

.redVerse:hover {
  color: #23527c;
}

.bookChapterTitle {
  color: #cc0000;
  margin-bottom: 0;
}

.chapterTransitionContainer {
  display: flex;
  max-width: 95%;
  margin-top: 10px;
}

.chapterTransitionButton {
  display: flex;
  cursor: pointer;
  user-select: none;
  color: #626262;
  font-size: 12px;
}

.chapterTransitionButton p {
  white-space: nowrap;
}

.previousChapter {
  margin-right: 20px;
}

.nextVerse {
  float: right;
  margin-left: 20px;
  color: #cc0000;
  display: flex;
  user-select: none;
}

.previousVerse {
  float: left;
  margin-right: 20px;
  color: #cc0000;
  display: flex;
  user-select: none;
}

.nextChapter:hover,
.nextVerse:hover,
.previousVerse:hover,
.previousChapter:hover {
  cursor: pointer;
}

.goToChapter {
  color: #cc0000;
  border: solid #cc0000 1px;
  border-radius: 2em;
  padding: 5px 10px 5px 10px;
  margin-top: 20px;
}

.goToChapter:hover {
  cursor: pointer;
  border-color: #bc180f;
  color: #bc180f;
}

/*****************************/

.bookButton {
  border: none;
  color: white;
  font-size: 17px;
  width: 100%;
  text-align: left;
  padding: 0;
  background-color: #cc0000;
  /*catena red*/
}

.bookButton:hover {
  color: white;
  font-weight: bold;
}

.selectedBookButton {
  color: white;
  font-weight: bold;
  padding-bottom: 5px;
  padding-top: 5px;
  margin-bottom: 5px;
}

/*****************************/

/*****************************/

.dot {
  height: 30px;
  width: 30px;
  /*catena red*/
  background-color: #cc0000;
  color: white;

  border-radius: 50%;
  border: solid white 1px;

  display: block;
  font-size: x-small;
  text-align: center;
  line-height: 30px;
}

.dot:hover {
  color: red;
  background-color: white;

  height: 33px;
  width: 33px;
  line-height: 33px;
}

.dotContainer {
  height: 40px;
  width: 40px;
  display: block;
}

.chapterSelector {
  width: 250px;
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
}

/*****************************/

.ac-container input {
  display: none;
}
.ac-container section {
  overflow: hidden;
  max-height: 215px;
  line-height: 1.2em;
  padding: 5px;
  -webkit-transition: max-height 0.2s ease-in-out, box-shadow 0.1s linear;
  -moz-transition: max-height 0.2s ease-in-out, box-shadow 0.1s linear;
  -o-transition: max-height 0.2s ease-in-out, box-shadow 0.1s linear;
  -ms-transition: max-height 0.2s ease-in-out, box-shadow 0.1s linear;
  transition: max-height 0.2s ease-in-out, box-shadow 0.1s linear;
}

.ac-container input:checked ~ section {
  -webkit-transition: max-height 0.5s ease-in-out, box-shadow 0.1s linear;
  -moz-transition: max-height 0.5s ease-in-out, box-shadow 0.1s linear;
  -o-transition: max-height 0.5s ease-in-out, box-shadow 0.1s linear;
  -ms-transition: max-height 0.5s ease-in-out, box-shadow 0.1s linear;
  transition: max-height 0.5s ease-in-out, box-shadow 0.1s linear;
}

.ac-container input:checked ~ section.ac-small {
  max-height: 400px;
  overflow: scroll;
}

.ac-container section.ac-no-max-height {
  max-height: none !important;
}

/*****************************/

.settingBar {
  /*catena dark red*/
  background-color: #bc180f;
  width: 65px;
  height: 100vh;
}

.topMenuIcon {
  margin-top: 50px;
}

.bottomMenuIcon {
  margin-bottom: 30px;
}

.menuIcon {
  padding: 10px;
}

.settingBar input {
  display: none;
}

.selectedItem {
  background-color: #cc0000;
}

/*****************************/

.bp3-control {
  display: block;
  position: relative;
  margin-bottom: 10px;
  cursor: pointer;
  text-transform: none;
}
.bp3-control input:checked ~ .bp3-control-indicator {
  -webkit-box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);
  box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);
  background-color: #137cbd;
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(255, 255, 255, 0.1)),
    to(rgba(255, 255, 255, 0))
  );
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  color: #ffffff;
}
.bp3-control:hover input:checked ~ .bp3-control-indicator {
  -webkit-box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);
  box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);
  background-color: #106ba3;
}
.bp3-control input:not(:disabled):active:checked ~ .bp3-control-indicator {
  -webkit-box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);
  box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);
  background: #0e5a8a;
}
.bp3-control input:disabled:checked ~ .bp3-control-indicator {
  -webkit-box-shadow: none;
  box-shadow: none;
  background: rgba(19, 124, 189, 0.5);
}
.bp3-dark .bp3-control input:checked ~ .bp3-control-indicator {
  -webkit-box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.4);
  box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.4);
}
.bp3-dark .bp3-control:hover input:checked ~ .bp3-control-indicator {
  -webkit-box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.4);
  box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.4);
  background-color: #106ba3;
}
.bp3-dark .bp3-control input:not(:disabled):active:checked ~ .bp3-control-indicator {
  -webkit-box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);
  box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);
  background-color: #0e5a8a;
}
.bp3-dark .bp3-control input:disabled:checked ~ .bp3-control-indicator {
  -webkit-box-shadow: none;
  box-shadow: none;
  background: rgba(14, 90, 138, 0.5);
}
.bp3-control:not(.bp3-align-right) {
  padding-left: 26px;
}
.bp3-control:not(.bp3-align-right) .bp3-control-indicator {
  margin-left: -26px;
}
.bp3-control.bp3-align-right {
  padding-right: 26px;
}
.bp3-control.bp3-align-right .bp3-control-indicator {
  margin-right: -26px;
}
.bp3-control.bp3-disabled {
  cursor: not-allowed;
  color: rgba(92, 112, 128, 0.5);
}
.bp3-control.bp3-inline {
  display: inline-block;
  margin-right: 20px;
}
.bp3-control input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: -1;
}
.bp3-control .bp3-control-indicator {
  display: inline-block;
  position: relative;
  margin-top: -3px;
  margin-right: 10px;
  border: none;
  -webkit-box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);
  box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);
  background-clip: padding-box;
  background-color: #f5f8fa;
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(255, 255, 255, 0.8)),
    to(rgba(255, 255, 255, 0))
  );
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
  cursor: pointer;
  width: 1em;
  height: 1em;
  vertical-align: middle;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.bp3-control .bp3-control-indicator::before {
  display: block;
  width: 1em;
  height: 1em;
  content: '';
}
.bp3-control:hover .bp3-control-indicator {
  background-color: #ebf1f5;
}
.bp3-control input:not(:disabled):active ~ .bp3-control-indicator {
  -webkit-box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);
  box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);
  background: #d8e1e8;
}
.bp3-control input:disabled ~ .bp3-control-indicator {
  -webkit-box-shadow: none;
  box-shadow: none;
  background: rgba(206, 217, 224, 0.5);
  cursor: not-allowed;
}
.bp3-control.bp3-align-right .bp3-control-indicator {
  float: right;
  margin-top: 1px;
  margin-left: 10px;
}
.bp3-control.bp3-large {
  font-size: 16px;
}
.bp3-control.bp3-large:not(.bp3-align-right) {
  padding-left: 30px;
}
.bp3-control.bp3-large:not(.bp3-align-right) .bp3-control-indicator {
  margin-left: -30px;
}
.bp3-control.bp3-large.bp3-align-right {
  padding-right: 30px;
}
.bp3-control.bp3-large.bp3-align-right .bp3-control-indicator {
  margin-right: -30px;
}
.bp3-control.bp3-large .bp3-control-indicator {
  font-size: 20px;
}
.bp3-control.bp3-large.bp3-align-right .bp3-control-indicator {
  margin-top: 0;
}
.bp3-control.bp3-checkbox input:indeterminate ~ .bp3-control-indicator {
  -webkit-box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);
  box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);
  background-color: #137cbd;
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(255, 255, 255, 0.1)),
    to(rgba(255, 255, 255, 0))
  );
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  color: #ffffff;
}
.bp3-control.bp3-checkbox:hover input:indeterminate ~ .bp3-control-indicator {
  -webkit-box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);
  box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);
  background-color: #106ba3;
}
.bp3-control.bp3-checkbox input:not(:disabled):active:indeterminate ~ .bp3-control-indicator {
  -webkit-box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);
  box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);
  background: #0e5a8a;
}
.bp3-control.bp3-checkbox input:disabled:indeterminate ~ .bp3-control-indicator {
  -webkit-box-shadow: none;
  box-shadow: none;
  background: rgba(19, 124, 189, 0.5);
}
.bp3-dark .bp3-control.bp3-checkbox input:indeterminate ~ .bp3-control-indicator {
  -webkit-box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.4);
  box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.4);
}
.bp3-dark .bp3-control.bp3-checkbox:hover input:indeterminate ~ .bp3-control-indicator {
  -webkit-box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.4);
  box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.4);
  background-color: #106ba3;
}
.bp3-dark
  .bp3-control.bp3-checkbox
  input:not(:disabled):active:indeterminate
  ~ .bp3-control-indicator {
  -webkit-box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);
  box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);
  background-color: #0e5a8a;
}
.bp3-dark .bp3-control.bp3-checkbox input:disabled:indeterminate ~ .bp3-control-indicator {
  -webkit-box-shadow: none;
  box-shadow: none;
  background: rgba(14, 90, 138, 0.5);
}
.bp3-control.bp3-checkbox .bp3-control-indicator {
  border-radius: 3px;
}
.bp3-control.bp3-checkbox input:checked ~ .bp3-control-indicator::before {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M12 5c-.28 0-.53.11-.71.29L7 9.59l-2.29-2.3a1.003 1.003 0 0 0-1.42 1.42l3 3c.18.18.43.29.71.29s.53-.11.71-.29l5-5A1.003 1.003 0 0 0 12 5z' fill='white'/%3e%3c/svg%3e");
}
.bp3-control.bp3-checkbox input:indeterminate ~ .bp3-control-indicator::before {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M11 7H5c-.55 0-1 .45-1 1s.45 1 1 1h6c.55 0 1-.45 1-1s-.45-1-1-1z' fill='white'/%3e%3c/svg%3e");
}
.bp3-control.bp3-radio .bp3-control-indicator {
  border-radius: 50%;
}
.bp3-control.bp3-radio input:checked ~ .bp3-control-indicator::before {
  background-image: radial-gradient(#ffffff, #ffffff 28%, transparent 32%);
}
.bp3-control.bp3-radio input:checked:disabled ~ .bp3-control-indicator::before {
  opacity: 0.5;
}
.bp3-control.bp3-switch input ~ .bp3-control-indicator {
  background: rgba(167, 182, 194, 0.5);
}
.bp3-control.bp3-switch:hover input ~ .bp3-control-indicator {
  background: rgba(115, 134, 148, 0.5);
}
.bp3-control.bp3-switch input:not(:disabled):active ~ .bp3-control-indicator {
  background: rgba(92, 112, 128, 0.5);
}
.bp3-control.bp3-switch input:disabled ~ .bp3-control-indicator {
  background: rgba(206, 217, 224, 0.5);
}
.bp3-control.bp3-switch input:checked ~ .bp3-control-indicator {
  background: #137cbd;
}
.bp3-control.bp3-switch:hover input:checked ~ .bp3-control-indicator {
  background: #106ba3;
}
.bp3-control.bp3-switch input:checked:not(:disabled):active ~ .bp3-control-indicator {
  background: #0e5a8a;
}
.bp3-control.bp3-switch input:checked:disabled ~ .bp3-control-indicator {
  background: rgba(19, 124, 189, 0.5);
}
.bp3-control.bp3-switch:not(.bp3-align-right) {
  padding-left: 38px;
}
.bp3-control.bp3-switch:not(.bp3-align-right) .bp3-control-indicator {
  margin-left: -38px;
}
.bp3-control.bp3-switch.bp3-align-right {
  padding-right: 38px;
}
.bp3-control.bp3-switch.bp3-align-right .bp3-control-indicator {
  margin-right: -38px;
}
.bp3-control.bp3-switch .bp3-control-indicator {
  border: none;
  border-radius: 1.75em;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  width: auto;
  min-width: 1.75em;
  -webkit-transition: background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9);
  transition: background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9);
}
.bp3-control.bp3-switch .bp3-control-indicator::before {
  position: absolute;
  left: 0;
  margin: 2px;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);
  box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);
  background: #ffffff;
  width: calc(1em - 4px);
  height: calc(1em - 4px);
  -webkit-transition: left 100ms cubic-bezier(0.4, 1, 0.75, 0.9);
  transition: left 100ms cubic-bezier(0.4, 1, 0.75, 0.9);
}
.bp3-control.bp3-switch input:checked ~ .bp3-control-indicator::before {
  left: calc(100% - 1em);
}
.bp3-control.bp3-switch.bp3-large:not(.bp3-align-right) {
  padding-left: 45px;
}
.bp3-control.bp3-switch.bp3-large:not(.bp3-align-right) .bp3-control-indicator {
  margin-left: -45px;
}
.bp3-control.bp3-switch.bp3-large.bp3-align-right {
  padding-right: 45px;
}
.bp3-control.bp3-switch.bp3-large.bp3-align-right .bp3-control-indicator {
  margin-right: -45px;
}
.bp3-dark .bp3-control.bp3-switch input ~ .bp3-control-indicator {
  background: rgba(16, 22, 26, 0.5);
}
.bp3-dark .bp3-control.bp3-switch:hover input ~ .bp3-control-indicator {
  background: rgba(16, 22, 26, 0.7);
}
.bp3-dark .bp3-control.bp3-switch input:not(:disabled):active ~ .bp3-control-indicator {
  background: rgba(16, 22, 26, 0.9);
}
.bp3-dark .bp3-control.bp3-switch input:disabled ~ .bp3-control-indicator {
  background: rgba(57, 75, 89, 0.5);
}
.bp3-dark .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator {
  background: #137cbd;
}
.bp3-dark .bp3-control.bp3-switch:hover input:checked ~ .bp3-control-indicator {
  background: #2b95d6;
}
.bp3-dark .bp3-control.bp3-switch input:checked:not(:disabled):active ~ .bp3-control-indicator {
  background: #48aff0;
}
.bp3-dark .bp3-control.bp3-switch input:checked:disabled ~ .bp3-control-indicator {
  background: rgba(14, 90, 138, 0.5);
}
.bp3-dark .bp3-control.bp3-switch .bp3-control-indicator::before {
  -webkit-box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.4);
  box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.4);
  background: #394b59;
}
.bp3-dark .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator::before {
  -webkit-box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.4);
  box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.4);
}
.bp3-control.bp3-switch .bp3-switch-inner-text {
  text-align: center;
  font-size: 0.7em;
}
.bp3-control.bp3-switch .bp3-control-indicator-child:first-child {
  visibility: hidden;
  margin-right: 1.2em;
  margin-left: 0.5em;
  line-height: 0;
}
.bp3-control.bp3-switch .bp3-control-indicator-child:last-child {
  visibility: visible;
  margin-right: 0.5em;
  margin-left: 1.2em;
  line-height: 1em;
}
.bp3-control.bp3-switch
  input:checked
  ~ .bp3-control-indicator
  .bp3-control-indicator-child:first-child {
  visibility: visible;
  line-height: 1em;
}
.bp3-control.bp3-switch
  input:checked
  ~ .bp3-control-indicator
  .bp3-control-indicator-child:last-child {
  visibility: hidden;
  line-height: 0;
}
.bp3-dark .bp3-control {
  color: #f5f8fa;
}
.bp3-dark .bp3-control.bp3-disabled {
  color: rgba(191, 204, 214, 0.5);
}
.bp3-dark .bp3-control .bp3-control-indicator {
  -webkit-box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.4);
  box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.4);
  background-color: #394b59;
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(255, 255, 255, 0.05)),
    to(rgba(255, 255, 255, 0))
  );
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
}
.bp3-dark .bp3-control:hover .bp3-control-indicator {
  background-color: #30404d;
}
.bp3-dark .bp3-control input:not(:disabled):active ~ .bp3-control-indicator {
  -webkit-box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);
  box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);
  background: #202b33;
}
.bp3-dark .bp3-control input:disabled ~ .bp3-control-indicator {
  -webkit-box-shadow: none;
  box-shadow: none;
  background: rgba(57, 75, 89, 0.5);
  cursor: not-allowed;
}
.bp3-dark .bp3-control.bp3-checkbox input:disabled:checked ~ .bp3-control-indicator,
.bp3-dark .bp3-control.bp3-checkbox input:disabled:indeterminate ~ .bp3-control-indicator {
  color: rgba(191, 204, 214, 0.5);
}

/*****************************/

hr {
  margin-top: 5px;
  margin-bottom: 10px;
  border: solid lightgrey 0.5px;
}

/*****************************/

.catenaRedText {
  color: #cc0000;
}

/***** DIV Styles *****/

.left-container {
  width: 20%;
  display: flex;
  transition: width 300ms;
}
.left-container.padded {
  padding: 0 2vw;
}

.right-container {
  width: 80%;
  justify-content: space-between;
  display: flex;
}

.right-container.padded {
  padding: 0 2vw;
}

.right-container.column {
  justify-content: flex-start;
  flex-direction: column;
}

@media (min-width: 761px) and (max-width: 1500px) {
  .left-container {
    width: 30%;
  }

  .right-container {
    width: 70%;
  }
}

.cover::after {
  content: '';
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: -1;
}

.avoidHeaderContainer {
  margin-top: 50px;
}

.paddedContainer {
  width: 90vw;
  padding-left: 10vw;
}

.width25 {
  width: 25%;
}

.width50 {
  width: 50%;
}

.width75 {
  width: 75%;
}

.width100 {
  width: 100%;
}

.padding10 {
  padding: 10px;
}

.padding20 {
  padding: 20px;
}

.padding30 {
  padding: 30px;
}

.padding40 {
  padding: 40px;
}

.borderRadius10 {
  border-radius: 10px;
}

.borderRadius20 {
  border-radius: 20px;
}

/***** Flex Containers *****/

.flexContainer {
  display: flex !important;
}

.flexSpaceBetween {
  justify-content: space-between;
}

.flexSpaceAround {
  justify-content: space-around;
}

.flexContainerColumn {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.flexRow {
  flex-direction: row;
}

.flexColumn {
  flex-direction: column;
}

.flexCenter {
  justify-content: center !important;
  align-items: center !important;
}

.flexStart {
  justify-content: flex-start;
  align-items: flex-start;
}

.flexEnd {
  justify-content: flex-end;
  align-items: flex-end;
}

/***** Visiblities *****/

div .hide {
  display: none;
}

/***** Scrollable Containers *****/

.scroll {
  padding-bottom: 50px;
  margin-bottom: 50px;
  overflow-y: scroll;
  scroll-behavior: smooth;
  overflow: -moz-scrollbars-none;
}

.scroll::-webkit-scrollbar {
  width: 0 !important;
}

.verseScroll {
  height: 75vh;
  padding-right: 10px;
}

.commentaryScroll {
  height: 90vh;
  padding-right: 5px;
  padding-left: 5px;
}

.bibleBookScroll {
  height: 75vh;
  width: 250px;
}

.horizontalScroll {
  justify-content: space-around;
}

/* TODO: find where this is used and remove if necessary */
.scrollContainer {
  margin-bottom: 100px;
}

/***** Fonts *****/

.textAlignLeft {
  text-align: left;
}

.textAlignRight {
  text-align: right;
}

.textAlignCenter {
  text-align: center;
}

.fontArial {
  font-family: 'Arial';
}

.fontAvenir {
  font-family: 'Avenir';
}

.fontGeorgia {
  font-family: 'Georgia';
}

.fontTimes {
  font-family: 'Times New Roman';
}

.bold {
  font-weight: 800;
}

.fontX-Small {
  font-size: x-small;
}

.fontSmall {
  font-size: small;
}

.fontMedium {
  font-size: medium;
}

.fontLarge {
  font-size: large;
}

.fontX-Large {
  font-size: x-large;
}

.darkMode {
  background: black !important;
  color: white !important;
}

/* Responsive for SMALL SCREENS */
@media only screen and (max-width: 500px) {  
  .width25 {
    width: 100%;
  }

  .width50 {
    width: 100%;
  }

  .width75 {
    width: 100%;
  }

  .width100 {
    width: 100%;
  }
}

.header {
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: white;
  border-bottom: 1px #f0f0f0 solid;
  margin: 0 !important;
  text-align: left;
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 1000;
  transition: padding 200ms ease-in-out;
}

@media (min-width: 1100px) {
  .header.burger-padding {
    padding-left: 3vw;
  }
}

@media (max-width: 1100px) {
  .header {
    padding-left: 5vw;
  }
}

@media (max-width: 500px) {
  .header {
    padding-left: 20vw;
  }
}

.logo {
  height: 50px;
  margin-top: 4px;
}

.logo-small {
  height: 30px;
  display: none;
}

.flexContainer {
  display: flex;
}

.nav-item {
  color: #626262;
  user-select: none;
  margin-right: 4rem;
  padding: 3.3rem 0.75rem 1.4rem 0.75rem;
  border-bottom: 2px solid transparent;
}
.nav-item:hover,
.nav-item:focus,
.nav-item:active {
  color: #cc0000;
  text-decoration: none;
}

.nav-item.flex {
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav-item:hover {
  cursor: pointer;
}

.nav-item.selected {
  color: #cc0000;
  border-bottom: 2px solid #cc0000;
}

.settingsLabel {
  height: 30px;
  align-items: center;
}

.nav-item .settingsCog {
  margin-left: 5px;
}

.sub-header {
  position: fixed;
  z-index: 1;
  width: 100vw;
  background-color: white;
}

@media only screen and (max-width: 700px) {
  .sub-header h2 {
    min-width: 120px !important;
  }
}

.sub-header h2 {
  font-size: 16px !important;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-right: 10px;
  background-color: #cc0000;
  box-shadow: inset 0 0 5px #bc180f;
  border-radius: 5px;
  padding: 5px;
  transition: 0.3s all;
}

.sub-header a h2 {
  color: white !important;
  text-decoration: none !important;
}

.sub-header a:hover {
  text-decoration: none !important;
}

.sub-header h2 span {
  margin-right: 5px;
}

.sub-header h2:hover {
  cursor: pointer;
  text-decoration: none !important;
  box-shadow: rgb(226, 226, 226) 0 0 5px;
  transition: 0.3s all;
}

/**************************************************** EXCESS ************************************************************/

.leftAccountButton {
  margin-left: auto;
}

.dividerPadding {
  padding-right: 10px;
  padding-left: 10px;
}

.rightAccountButton {
  margin-right: 50px;
}

.accountButtonContainer {
  float: right;
  font-size: medium !important;
}

.hidden {
  display: none;
}

.header-side {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  height: 100%;
}

@media only screen and (max-width: 700px) {
  .header-side {
    display: none;
  }
}

/* secondary header */

.burger-menu {
  opacity: 1;
  position: fixed;
  top: 17px;
  left: 15px;
  font-size: 35px;
  color: #cc0000;
  transition: 100ms;
  z-index: -1;
  text-decoration: none;
}

.burger-menu::before {
  content: '\2630';
}

.burger-menu:visited,
.burger-menu:hover {
  text-decoration: none;
  color: #cc0000;
}

.burger-menu.display {
  opacity: 1;
  z-index: 1100;
  transition: opacity 1s;
}

.burger-menu.display:hover {
  cursor: pointer;
  color: #cc0000;
  opacity: 0.5;
  transition: opacity 200ms;
  text-decoration: none;
}

.side-nav-container {
  position: relative;
  color: #626262;
}

.side-nav {
  height: 100%;
  width: 0px;
  z-index: 2;
  top: 0;
  left: 0;
  overflow-x: hidden;
  transition: width 300ms;
}

.side-nav.extended {
  width: 350px;
  transition: width 300ms;
}

.left-container.left-container-sideNav.collapsed {
  width: 0%;
}

@media (max-width: 500px) {
  .left-container-logo {
    display: none;
  }
}

@media (max-width: 1100px) {
  .side-nav {
    position: fixed;
    padding-top: 100px;
    background-color: #fafafa;
  }

  .side-nav.extended {
    width: 0px;
  }

  .side-nav.extended-mobile {
    width: 350px;
    transition: width 300ms;
  }

  .burger-menu {
    z-index: 1100;
  }

  .burger-menu.exit-btn-mobile::before {
    content: '\2297';
  }
}

@media (max-width: 350px) {
  .side-nav.extended-mobile {
    width: 100%;
    transition: width 300ms;
  }
}

.book-testaments {
  display: flex;
  padding-left: 38px;
  white-space: nowrap;
  overflow: hidden;
}

.book-testaments span {
  cursor: pointer;
  margin-right: 2rem;
}

.book-testaments span.focus {
  color: #cc0000;
  font-weight: bold;
}

.book-testaments span:hover {
  color: #cc0000;
}

.books-menu {
  display: flex;
  flex-direction: column;
  margin-top: 21px;
}

.book-item {
  padding-bottom: 19px;
}

.book-title {
  display: block;
  text-decoration: none;
  color: #626262;
  padding: 2px 5px 5px 38px;
  white-space: nowrap;
  overflow: hidden;
}

.book-title.current {
  border-left: 3px solid #cc0000;
}

.book-title.current,
.book-title:hover {
  color: #cc0000;
  cursor: pointer;
  text-decoration: none;
}

.chapters-menu {
  display: grid;
  padding-left: 38px;
  grid-template-columns: repeat(8, 32px);
  gap: 0.4rem;
  text-align: center;
  overflow-x: hidden;
  height: auto;
  max-height: 0px;
  transform-origin: top;
  transition: max-height 0.33s ease-out;
}

@media (max-width: 350px) {
  .chapters-menu {
    grid-template-columns: repeat(auto-fill, 32px);
  }
}

.chapters-menu.extended {
  max-height: 1000px;
  transition: max-height 0.65s ease-in;
}

.chapter-selector-arrow {
  padding-top: 5px;
  transition: all 0.1s;
}

.chapter-selector-arrow:hover {
  cursor: pointer;
  padding-bottom: 5px;
  transition: all 0.1s;
}

.chapter-item {
  color: #c8c8c8;
  border: 1px solid #c8c8c8;
  border-radius: 30px;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  text-decoration: none;
  transition: 0.2s all;
}

@media only screen and (max-width: 700px) {
  .chapter-item {
    height: 35px !important;
    min-width: 35px !important;
    border-radius: 40px;
  }
}

.chapter-item:visited,
.chapter-item:active {
  text-decoration: none;
}

.chapter-item:focus {
  text-decoration: none;
  color: #cc0000;
}

.chapter-item.current {
  color: #cc0000;
  border-color: #cc0000;
}

.chapter-item:hover {
  color: #cc0000;
  border-color: #cc0000;
  transition: 0.2s all;
  text-decoration: none;
  cursor: pointer;
}

