@font-face {
  font-family: "DM Sans";
  src: url("assets/fonts/DMSans-VariableFont_opsz,wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("assets/fonts/DMSans-Italic-VariableFont_opsz,wght.ttf")
    format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

html,
body {
  height: 100vh;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 70px;
  padding-right: 16px;
  padding-bottom: 12px;
  padding-left: 16px;
  gap: 16px;
  margin: 0;
}

@media (max-width: 767px) {
  body {
    padding-top: 16px;
  }
}

#cacheContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 610px;
}

:root {
  --c-black-10: #f4f5f5;
  --c-black-8: #e2e3e4;
  --c-black-7: #b7bbbe;
  --c-black-6: #9ca2a5;
  --c-black-4: #686f73;
  --c-black-1: #202223;
  --c-white: #fffefb;
}

body {
  font-family: "DM Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

h3 {
  font-family: DM Sans;
  font-weight: 700;
  font-style: Bold;
  font-size: 22px;
  line-height: 32px;
  letter-spacing: 0%;
  text-align: center;
}

.body16regular {
  font-family: DM Sans;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0%;
  vertical-align: middle;
}

.body16medium {
  font-family: DM Sans;
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0%;
  vertical-align: middle;
}

.headline4 {
  font-family: DM Sans;
  font-weight: 700;
  font-style: Bold;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0%;
  vertical-align: middle;
}

.label14medium {
  font-family: DM Sans;
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0%;
  vertical-align: middle;
}

.container1 {
  gap: 12px;
  border-radius: 12px;
  border-width: 1px;
  padding: 12px;
  border: 1px solid var(--c-black-7);
  display: flex;
  flex-direction: column;
  width: 100%;
}

.titleContainer {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.container2 {
  gap: 8px;
  border-radius: 20px;
  padding: 12px;
  background: var(--c-black-10);
  display: flex;
  flex-direction: column;
}

.black4 {
  color: var(--c-black-4);
}

.black6 {
  color: var(--c-black-6);
}

.stepsContainer {
  display: flex;
  flex-direction: row;
  gap: 8px;
  padding: 12px 0;
}

@media (max-width: 767px) {
  .stepsContainer {
    overflow: auto;
    max-width: 100%;
    scrollbar-width: none;
  }
}

.step {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
}

.step .label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  white-space: nowrap;
  min-width: 50px;
}

.step .label::before {
  content: "";
  margin-top: 4px;
  background-image: url("assets/svg/step_locked.svg");
  width: 24px;
  height: 24px;
}

.step.complete .label::before {
  background-image: url("assets/svg/step_complete.svg");
}

.step.current .label {
  gap: 8px;
}

.step.current .label::before {
  margin-top: 0px;
  background-image: url("assets/svg/step_current.svg");
  width: 32px;
  height: 32px;
}

.step:not(:last-child)::after {
  content: "";
  background-image: url("assets/svg/step_separator.svg");
  width: 32px;
  height: 32px;
}

#downloadContainer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 2px 2px 6.2px 0px #00000040;
  border-radius: 9px;
  padding: 14px 21px;
  width: 100%;
  text-align: center;
  margin-bottom: 38px;
}

@media (max-width: 767px) {
  #downloadContainer {
    margin-bottom: 0;
  }
}

.buttonsWithLogoContainer {
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .buttonsWithLogoContainer {
    flex-direction: column;
    gap: 16px;
  }
}

.buttonsContainer {
  display: flex;
  flex-direction: row;
  gap: 16px;
}

.buttonsContainer .button {
  min-width: 158px;
  white-space: nowrap;
}

.buttonsContainer.column {
  flex-direction: column;
  gap: 16px;
}

.f-column {
  flex-direction: column;
  display: flex;
}

.gap-16 {
  gap: 16px;
}

.gap-12 {
  gap: 12px;
}

.m-t-16 {
  margin-top: 16px;
}

.t-a-center {
  text-align: center;
}

#errorContainer {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 100%;
  max-height: 100%;
  transform: translate(-50%, -50%);
}

.sentence-number, #scripture sup {
  vertical-align: super;
  font-size: small;
  font-weight: 900;
  margin-right: 0.5em;
}

p {
  margin: 0;
}

.no-wrap {
  white-space: nowrap;
}

#groupTitle {
  display: none;
}