@import url("https://fonts.googleapis.com/css2?family=Geologica:wght@300;400;600&family=Lato&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css");
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,700;1,400;1,500;1,700&display=swap');

* button {
  cursor: pointer;

}

html, body {
  height: 100%;
  display: flex;
  flex-direction: column;
  margin: 0!important;
}
mark {
  background: #bfffe4;
  padding: 4px 6px;
  border-radius: 4px;
}
button > i {
    pointer-events: none;
}
button[disabled]{
  opacity: 35%;
  cursor: not-allowed;
}
footer {
  margin-top: auto;
  width: 100%;
}
.footer-container {
    max-width: 800px;
    display: flex;
    margin: 0 auto;
    font-size: 14px;
    justify-content: space-between;
    flex-direction: row;
    align-content: center;
    padding: 20px;
}

header {
    width: 100%;
    background: #ededed;
    box-sizing: border-box;
    border-top: 4px solid #e2e2e2;
}

.header-content {
  max-width: 800px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 20px;
  position: relative;
}

.menu {
    position: absolute; 
    max-width: 320px; 
    background: #fff; 
    box-sizing: border-box; 
    border-radius: 8px;
    border: 1px solid #333;
    top: 56px;
    right: 20px;
    box-shadow: 1px 2px 4px rgba(0, 0, 0, .15);
    overflow: hidden;
    padding: 2px;
    border-radius: 4px;
  box-sizing: border-box;
  z-index: 2;
  display: none;
  
}
.logo a {
  text-decoration: none;
  color: black;
  font-family: 'Lora', serif;
  font-style: italic;
}
nav ul {
    margin: 0;
    list-style: none;
    padding: 0;
}

nav ul li a {
    display: block;
    padding: 16px;
    box-sizing: border-box;
    text-decoration: none;
    color: black;
    transition: .25s;
}

nav ul li a:hover {
    background: #eee;
    border-left: 2px solid black;
}

.menu-btn {
    height: 32px;
    width: 32px;
    display: flex;
    align-content: center;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    background: transparent;
  border: 0;
   box-shadow: 0px 4px 0px #333;
    transform-origin: bottom;
    transform: translateY(0);
  border-radius: 4px;
  border: 1px solid #333;
}

.menu-btn:hover, .menu-btn:focus, .menu-btn:active {
    background: #e2e2e2;
}
.menu-btn[aria-expanded="true"] {
    background: #e2e2e2;
  box-shadow: 0 2px 0px #333;
    transform-origin: bottom;
    transform: translateY(2px);
}

.full-width {
  width: 100%;
}

.skip-link {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  position: relative;
  left:0;
  top: auto;
  width: 100%;
  height: auto;
  overflow: visible;
  text-align: center;
}

.skip-to-content-link:focus {
  transform: translateY(0%);
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  font-family: "Lato", sans-serif;

}
header {
  width: 100%;
  background: #ededed;
}

.pagination {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-content: space-between;
  width: 100%;
  align-items: center;
}

main {
  display: flex;
  max-width: 800px;
  flex-direction: column;
  background: white;
  padding: 20px;
  box-sizing: border-box;
  width: 100%;
}
.container {
  width: 100%;
}
 section {
  padding-bottom: 20px;
   display: flex;
   flex-wrap: wrap;
       justify-content: center;
   position: relative;
}
#answer {
  display: flex;
  flex-direction: row;
  grid-gap: 16px 8px;
  flex-wrap: wrap;
  padding-bottom: 60px;
}
 #actions {
  display: flex;
  grid-gap: 8px;
}
.primary-btn {
  background-color: black;
  color: white;
  border: 0;
  padding: 8px 12px;
  border-radius: 4px;
  text-decoration: none;
}
 .secondary-btn {
     background: transparent;
    color: black;
    border: 1px solid #333;
    padding: 8px 12px;
    border-radius: 4px;
    box-shadow: 0px 4px 0px #333;
    transform-origin: bottom;
    transform: translateY(0);
}
.secondary-btn[aria-pressed="true"] {
  box-shadow: 0 2px 0px #333;
    transform-origin: bottom;
    transform: translateY(2px);
}

.secondary-btn:hover {
      background: radial-gradient(ellipse at top, #f7f7f7, transparent),
            radial-gradient(ellipse at bottom, #e2e2e2, transparent);

}
 .tertiary-btn {
  background-color: transparent;
  color: black;
  border: 0;
  padding: 8px 12px;
  border-radius: 4px;
}

h1 {
  font-family: "Geologica", sans-serif;
  font-family:'Lora', serif;
}
h1 #qnum {
  display: flex;
  font-size: 14px;
  font-family: "Lora", serif;
  font-style: italic;
  font-weight: 400;
}

.blank {
  border: 0;
  border-bottom: 1px solid #000;
  font-size: 24px;
  padding-top: 4px;
  padding-bottom: 4px;
  background: transparent;
  font-family: 'Lora', serif;
}
.blank:focus {
  outline: 0;
}
.blank:hover, .blank:focus-visible {
  border-radius: 4px 4px 0 0;
  background: #eee;
  box-shadow: 0 2px 0 0 #000;
}

.show span {
  opacity: 1;
}

.blank span {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

#answer ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 8px;
  justify-content: center;
}

#answer li {
  display: flex;
  flex-direction: row;
}

.title {
  font-family: 'Lora', serif;
  font-size: 14px;
  font-style: italic;
}
.title a {
  text-decoration: none;
  color: black;
}

.title a:hover {
  text-decoration: underline;
}

.p-x-0 {
  padding-left: 0;
  padding-right: 0;
}

span sup {
    position: absolute;
    font-size: 12px;

}

#table-of-contents > ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#proof-text > ol li a, #table-of-contents > ul li a {
  text-decoration: none;
  color: #000;
  padding: 4px;
    display: inline-block;
    font-family: 'Lora', serif;

}

#proof-text > ol li a:hover, ol li a:focus, #table-of-contents > ul li a:hover, ul li a:focus  {
  text-decoration: underline;
}

a.esv-crossref-link {
  color: #000 !important;
}

@media only screen and (max-width: 480px){
  .hide-mobile {
    display: none;
  }
}