/*---------------------------------------/*
	# SETTINGS
/*---------------------------------------*/
/*---------------------------------------/*
	# GENERIC - BOOTSTRAP
/*---------------------------------------*/
* {
  box-sizing: border-box;
}

body {
  font-family: "Garamond", serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  min-width: 320px;
}

.col-md-4,
.col-md-6 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.dropdown-menu.show {
  margin: 0.5rem 1rem 0 0;
}

.navbar-toggler:active, .navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

/*---------------------------------------/*
	# ELEMENTS
/*---------------------------------------*/
a {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

/*---------------------------------------/*
	# OBJECTS
/*---------------------------------------*/
.container {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.container-fluid {
  padding-left: 1rem;
  padding-right: 1rem;
}

/*---------------------------------------/*
	# COMPONENTS
/*---------------------------------------*/
.c-admin__profile {
  display: block;
}
@media (min-width: 992px) {
  .c-admin__profile {
    display: grid;
  }
}
.c-admin__item {
  margin-bottom: 1.5rem;
}
@media (min-width: 992px) {
  .c-admin__item {
    margin-bottom: 0;
  }
}

.c-btn {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}
@media (min-width: 576px) {
  .c-btn {
    font-size: 1rem;
  }
}
.c-btn__create {
  background-color: #5c352c;
  color: #f5f5dc;
}
.c-btn__create:hover {
  background-color: #e9b48a;
  color: #3c3c34;
}
.c-btn__dashboard {
  background-color: #614338;
  color: #f5f5dc;
}
.c-btn__dashboard:hover {
  background-color: #2a1717;
  color: #f5f5dc;
  text-decoration: none;
}
.c-btn__dashboard--outline {
  background-color: transparent;
  border: 2px solid #614338;
  color: #614338;
}
.c-btn__dashboard--outline:hover {
  background-color: #614338;
  color: #f5f5dc;
  text-decoration: none;
}
.c-btn__quiz {
  background-color: #614338;
  color: #f5f5dc;
}
.c-btn__quiz--next:hover {
  background-color: #2a1717;
  text-decoration: underline;
  text-decoration-color: #f5f5dc;
}
.c-btn__quiz--prev:hover {
  background-color: #2a1717;
  text-decoration: line-through;
  text-decoration-color: #e9b48a;
}
.c-btn__quiz--submit:hover {
  background-color: #2a1717;
  text-decoration: underline;
  text-decoration-color: #0b4a14;
  text-decoration-thickness: 2rem;
}
.c-btn__update {
  background-color: #e9b48a;
  color: #3c3c34;
}
.c-btn__update:hover {
  background-color: #5c352c;
  color: #f5f5dc;
}

.c-card {
  border-radius: 0.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .c-card {
    margin-bottom: 1.5rem;
  }
}
.c-card__body {
  padding: 1rem;
}
@media (min-width: 576px) {
  .c-card__body {
    padding: 1.25rem;
  }
}
.c-card__title {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: #f5f5dc;
  font-weight: bold;
}
@media (min-width: 576px) {
  .c-card__title {
    font-size: 1.15rem;
    margin-bottom: 1rem;
  }
}
@media (min-width: 768px) {
  .c-card__title {
    font-size: 1.25rem;
  }
}
.c-card__text {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #3c3c34;
}
@media (min-width: 576px) {
  .c-card__text {
    font-size: 0.9rem;
  }
}
.c-card__btn {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  padding: 0.4rem 0.8rem;
  background-color: #5c352c;
  border-radius: 2rem;
  color: #f5f5dc;
}
.c-card__btn:hover {
  text-decoration: underline;
}
@media (min-width: 576px) {
  .c-card__btn {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }
}
.c-card__badge {
  padding: 0.25rem 0.75rem; /* Smaller padding for tags */
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-block;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  /* Default Tag Style */
}
.c-card__badge--tag {
  background-color: rgb(129.3333333333, 89.3333333333, 74.6666666667);
  color: #f5f5dc;
  border: 1px solid #5c352c;
}
.c-card__badge--tag:hover {
  background-color: #5c352c;
  cursor: default; /* Or pointer if clickable */
}

.c-cookie {
  background-color: #614338;
  color: #f5f5dc;
}
.c-cookie__btn {
  background-color: #e9b48a;
  color: #3c3c34;
}
.c-cookie__btn:hover {
  background-color: rgba(233, 180, 138, 0.55);
  color: #3c3c34;
  text-decoration: none;
}
.c-cookie__btn--outline {
  background-color: transparent;
  border: 2px solid #e9b48a;
  color: #e9b48a;
}
.c-cookie__btn--outline:hover {
  background-color: #e9b48a;
  color: #3c3c34;
  text-decoration: none;
}
.c-cookie__icon {
  display: flex !important;
  justify-content: center !important;
  align-items: center;
  max-width: 10rem !important;
  height: auto;
  vertical-align: middle;
  margin-right: 0.75rem;
}
.c-cookie__link {
  color: #f5f5dc;
  text-decoration: none;
}
.c-cookie__link:hover {
  color: #e9b48a;
  text-decoration: underline;
  text-decoration-thickness: 0.15rem;
}

.c-cta {
  background-color: #e9b48a;
  padding: 2rem 1rem;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
}
@media (min-width: 576px) {
  .c-cta {
    padding: 2.5rem 1.5rem;
  }
}
@media (min-width: 768px) {
  .c-cta {
    padding: 3rem 2rem;
    margin-bottom: 3rem;
  }
}
.c-cta__title {
  color: #3c3c34;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
@media (min-width: 576px) {
  .c-cta__title {
    font-size: 1.75rem;
  }
}
@media (min-width: 768px) {
  .c-cta__title {
    font-size: 2rem;
  }
}
.c-cta__text {
  color: #3c3c34;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 576px) {
  .c-cta__text {
    font-size: 1rem;
  }
}
@media (min-width: 768px) {
  .c-cta__text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
}
.c-cta__actions {
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .c-cta__actions {
    margin-bottom: 2rem;
  }
}
.c-cta__verse {
  color: #5c352c;
  font-style: italic;
  font-size: 0.9rem;
  padding: 0 0.5rem;
}
@media (min-width: 576px) {
  .c-cta__verse {
    font-size: 0.95rem;
  }
}
@media (min-width: 768px) {
  .c-cta__verse {
    font-size: 1rem;
    padding: 0;
  }
}

.c-dashboard {
  display: block;
}
@media (min-width: 992px) {
  .c-dashboard {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(9, minmax(120px, auto));
    gap: 1rem;
    width: 100%;
  }
}
.c-dashboard__item {
  margin-bottom: 1.5rem;
}
@media (min-width: 992px) {
  .c-dashboard__item {
    margin-bottom: 0;
  }
}

.c-dropdown__btn {
  color: #3c3c34;
  border: none;
  background-color: transparent;
  padding: 0.4rem 0.8rem;
  transition: color 0.2s ease, background-color 0.2s ease;
}
@media (min-width: 576px) {
  .c-dropdown__btn {
    padding: 0.5rem 1rem;
  }
}
.c-dropdown__btn:hover, .c-dropdown__btn.show {
  color: #f5f5dc !important;
  background-color: #2a1717;
}
.c-dropdown__btn:hover .c-dropdown__icon, .c-dropdown__btn.show .c-dropdown__icon {
  color: #f5f5dc !important;
}
.c-dropdown__menu {
  background-color: #5c352c;
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  min-width: 250px;
  z-index: 1050;
}
@media (max-width: 575.98px) {
  .c-dropdown__menu {
    min-width: 200px;
  }
}
.c-dropdown__header {
  font-weight: bold;
  color: #f5f5dc;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.95rem;
}
.c-dropdown__info {
  width: 100%;
  padding: 0.5rem;
  background-color: #5c352c;
  border: none;
  color: #f5f5dc;
  font-size: 0.9rem;
}
.c-dropdown__info::-moz-placeholder {
  color: #f5f5dc;
}
.c-dropdown__info::placeholder {
  color: #f5f5dc;
}
.c-dropdown__info:focus {
  background-color: #5c352c;
  color: #f5f5dc;
  outline: none;
  box-shadow: 0 0 5px #5c352c;
}
.c-dropdown__icon {
  font-size: 1.25rem;
  color: #3c3c34;
  transition: color 0.2s ease;
}
@media (min-width: 576px) {
  .c-dropdown__icon {
    font-size: 1.5rem;
  }
}
.c-dropdown__item, .c-dropdown__login {
  color: #f5f5dc;
}
.c-dropdown__item:hover, .c-dropdown__login:hover {
  background-color: #5c352c;
  color: #f5f5dc;
}

.c-feature--locked {
  opacity: 0.55;
  pointer-events: none;
  text-align: center;
}
.c-feature i {
  font-size: 2rem;
  color: rgba(0, 0, 0, 0.4);
}
.c-feature p {
  margin-top: 0.5rem;
  font-size: 0.85rem;
}

.c-footer {
  background-color: #614338;
  color: #f5f5dc;
  padding: 1.5rem 0;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .c-footer {
    padding: 2rem 0;
    margin-top: 3rem;
  }
}
.c-footer__text {
  margin: 0 0 1rem 0;
  font-size: 0.85rem;
  text-align: center;
}
@media (min-width: 768px) {
  .c-footer__text {
    margin: 0;
    font-size: 0.9rem;
    text-align: left;
  }
}
.c-footer__nav {
  list-style-type: none;
}
.c-footer__nav--nested {
  color: #f5f5dc;
}
.c-footer__item {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .c-footer__item {
    justify-content: flex-end;
    gap: 1rem;
  }
}
.c-footer__links {
  color: #f5f5dc;
  text-decoration: none;
  font-size: 0.85rem;
}
@media (min-width: 576px) {
  .c-footer__links {
    font-size: 0.9rem;
  }
}
.c-footer__links:hover {
  color: rgba(245, 245, 220, 0.6);
  text-decoration: underline;
  text-decoration-color: #e9b48a;
}
.c-footer__links--mail:hover {
  background-color: #e9b48a;
  color: #3c3c34;
  text-decoration: underline;
  text-decoration-color: #5c352c;
}
.c-footer__logo {
  max-width: 100%;
  height: 5rem;
}
.c-footer__logo:hover {
  opacity: 0.8;
}

.c-hero {
  background-size: cover;
  background-position: center;
  padding: 2rem 1rem;
  text-align: center;
}
@media (min-width: 576px) {
  .c-hero {
    padding: 3rem 1.5rem;
  }
}
@media (min-width: 768px) {
  .c-hero {
    padding: 4rem 2rem;
  }
}
.c-hero__content {
  max-width: 100%;
  margin: 0 auto;
}
.c-hero__title {
  font-size: 1.75rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #3c3c34;
}
@media (min-width: 576px) {
  .c-hero__title {
    font-size: 2rem;
  }
}
@media (min-width: 768px) {
  .c-hero__title {
    font-size: 2.5rem;
  }
}
.c-hero__subtitle {
  font-size: 1rem;
  color: #3c3c34;
}
@media (min-width: 576px) {
  .c-hero__subtitle {
    font-size: 1.1rem;
  }
}
@media (min-width: 768px) {
  .c-hero__subtitle {
    font-size: 1.25rem;
  }
}
.c-hero__text {
  font-size: 0.95rem;
  padding: 0 0.5rem;
  color: #3c3c34;
}
@media (min-width: 576px) {
  .c-hero__text {
    font-size: 1rem;
    padding: 0 1rem;
  }
}
.c-hero__btn {
  margin-top: 1.5rem;
  background-color: #614338;
  color: #f5f5dc;
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
}
@media (min-width: 576px) {
  .c-hero__btn {
    margin-top: 2rem;
    font-size: 1rem;
  }
}
.c-hero__btn:hover {
  background-color: #2a1717;
  color: #f5f5dc;
  text-decoration: underline;
}

.c-impact {
  background-color: #e9b48a;
  padding: 1rem;
}
@media (min-width: 576px) {
  .c-impact {
    padding: 1.5rem;
  }
}
.c-impact__title {
  color: rgb(19.0178571429, 19.0178571429, 16.4821428571);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  padding-top: 1rem;
  font-weight: bold;
}
@media (min-width: 576px) {
  .c-impact__title {
    font-size: 1.75rem;
  }
}
@media (min-width: 768px) {
  .c-impact__title {
    font-size: 2rem;
  }
}
.c-impact__intro {
  color: #3c3c34;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 576px) {
  .c-impact__intro {
    font-size: 1rem;
  }
}
@media (min-width: 768px) {
  .c-impact__intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
}
.c-impact__quote {
  color: #f5f5dc;
  font-style: italic;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
@media (min-width: 576px) {
  .c-impact__quote {
    font-size: 1rem;
  }
}
.c-impact__cite {
  color: white;
  font-weight: bold;
  font-size: 0.9rem;
}
.c-impact__card {
  background-color: rgb(74.75, 43.0625, 35.75);
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
  margin-left: 0;
}
@media (min-width: 576px) {
  .c-impact__card {
    padding: 1.25rem;
  }
}
@media (min-width: 768px) {
  .c-impact__card {
    padding: 1.5rem;
    margin-bottom: 2rem;
    margin-left: 2rem;
  }
}

.c-main {
  padding: 1rem;
}
@media (min-width: 576px) {
  .c-main {
    padding: 1.5rem;
  }
}
.c-main__section {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .c-main__section {
    margin-bottom: 3rem;
  }
}
.c-main__title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
@media (min-width: 576px) {
  .c-main__title {
    font-size: 1.75rem;
  }
}
@media (min-width: 768px) {
  .c-main__title {
    font-size: 2rem;
  }
}
.c-main__text {
  font-size: 0.95rem;
  line-height: 1.6;
}
@media (min-width: 576px) {
  .c-main__text {
    font-size: 1rem;
  }
}
.c-main__subtitle {
  color: rgba(60, 60, 52, 0.5);
  font-size: 0.7rem;
}

.c-message {
  background-color: #e9b48a;
  padding: 1rem;
}
@media (min-width: 576px) {
  .c-message {
    padding: 1.5rem;
  }
}
.c-message__title {
  color: #3c3c34;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  padding-top: 1rem;
  font-weight: bold;
}
@media (min-width: 576px) {
  .c-message__title {
    font-size: 1.75rem;
  }
}
@media (min-width: 768px) {
  .c-message__title {
    font-size: 2rem;
  }
}
.c-message__question {
  color: #3c3c34;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 576px) {
  .c-message__question {
    font-size: 1.1rem;
  }
}

.c-modal__body {
  font-size: 0.95rem;
}
.c-modal__content {
  background-color: #e9b48a;
  border-radius: 0.75rem;
}
.c-modal__header {
  border-bottom: 0.0625rem solid rgba(42, 23, 23, 0.08);
}
.c-modal__title {
  font-weight: 600;
}
.c-modal__btn--close {
  color: #3c3c34;
}
.c-modal__btn--close:hover {
  color: #2a1717;
}
.c-modal__btn--submit {
  background-color: tint(#e9b48a, 40%);
  color: tint(#3c3c34);
}
.c-modal__btn--submit:before, .c-modal__btn--submit:after {
  content: "";
  background-color: rgba(92, 53, 44, 0.25);
  transition: 0.4s ease-in-out;
}
.c-modal__btn--submit:after {
  top: auto;
  bottom: 0;
}
.c-modal__btn--submit:hover {
  color: tint(#e9b48a, 75%);
}
.c-modal__btn--submit:hover:before, .c-modal__btn--submit:hover:after {
  height: 2rem;
}
.c-modal__btn--submit:active {
  background-color: #e9b48a;
}
.c-modal__label {
  font-weight: 500;
}
.c-modal__info {
  background-color: #614338;
  color: #f5f5dc;
}
.c-modal__info:hover, .c-modal__info:active, .c-modal__info:focus {
  background-color: #2a1717;
}

.c-nav {
  background-color: #e9b48a;
}
.c-nav__brand {
  font-size: 1.25rem;
  font-weight: bold;
  text-decoration: none;
}
@media (min-width: 576px) {
  .c-nav__brand {
    font-size: 1.5rem;
  }
}
.c-nav__brand:hover {
  text-decoration: none;
  color: #3c3c34;
}
.c-nav__btn {
  color: #3c3c34;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 0.25rem;
  font-size: 0.9rem;
}
@media (min-width: 576px) {
  .c-nav__btn {
    font-size: 1rem;
  }
}
.c-nav__btn:hover {
  background-color: #5c352c;
  color: #f5f5dc;
  text-decoration: none;
}
.c-nav__collapse {
  display: flex !important;
  align-items: center !important;
}
.c-nav__item {
  margin-right: 1rem;
  font-size: 1rem;
  list-style-type: none;
}
@media (min-width: 576px) {
  .c-nav__item {
    font-size: 1.1rem;
  }
}
.c-nav__item:last-child {
  margin-right: 0;
}
.c-nav__item a {
  text-decoration: none;
}
.c-nav__item a:hover {
  text-decoration: underline;
}
.c-nav__link {
  color: #3c3c34;
  text-decoration: none;
}
.c-nav__link--active {
  color: #2a1717 !important;
}
.c-nav__link:hover {
  text-decoration: underline;
  color: #f5f5dc;
}
.c-nav__logo {
  max-width: 100%;
  height: 8rem;
  margin: 1rem 2rem;
  transition: box-shadow 0.3s ease, opacity 0.3s ease;
}
.c-nav__logo:hover {
  opacity: 0.8;
  box-shadow: 0 0 0.625rem 0.125rem rgba(92, 53, 44, 0.6);
}
.c-nav__search {
  background-color: #e9b48a;
  border: none;
  font-size: 0.9rem;
}
.c-nav__search::-moz-placeholder {
  color: #3c3c34;
}
.c-nav__search::placeholder {
  color: #3c3c34;
}
.c-nav__search::-moz-placeholder:focus {
  color: #f5f5dc !important;
}
.c-nav__search::placeholder:focus {
  color: #f5f5dc !important;
}
.c-nav__search:focus {
  background-color: #5c352c;
  color: #f5f5dc;
  outline: none;
  box-shadow: 0 0 5px #5c352c;
}
.c-nav__toggler {
  border: none;
  background: transparent;
  padding: 0;
  margin-left: 0.5rem;
  color: #3c3c34;
}
.c-nav__toggler:hover {
  color: #f5f5dc;
}
.c-nav__toggler--btn {
  font-size: 1.5rem;
  color: #3c3c34;
}

.c-pastoral {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.c-pastoral__addiction {
  font-weight: 600;
  color: #2a1717;
  margin-bottom: 0.25rem;
}
.c-pastoral__summary {
  margin-bottom: 0.35rem;
  line-height: 1.45;
}
.c-pastoral__badge {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
}

.c-pastoralModal__header {
  padding-top: 0.25rem;
}
.c-pastoralModal__title {
  font-weight: 500;
}

.c-profile__card {
  background-color: #e9b48a; /* Or white, depending on your preference */
  border: 1px solid rgb(224.928057554, 152.4820143885, 95.071942446);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}
.c-profile__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}
.c-profile__items {
  height: 100%; /* Ensure cards fill their grid area */
  display: flex;
  flex-direction: column;
}

.c-progress {
  background-color: #e9b48a;
  padding: 1rem;
}
@media (min-width: 576px) {
  .c-progress {
    padding: 1.5rem;
  }
}
.c-progress__bar {
  width: 0%;
  height: 100%;
  background-color: #2a1717;
  transition: width 420ms cubic-bezier(0.4, 0, 0.2, 1) 30ms;
}
.c-progress__cardbody {
  padding: 1rem;
}
.c-progress__cardtitle {
  font-weight: bold;
}
.c-progress__count {
  font-size: 2rem;
  font-weight: bold;
  color: #5c352c;
}
.c-progress__title {
  color: #3c3c34;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  padding-top: 1rem;
  font-weight: bold;
}
@media (min-width: 576px) {
  .c-progress__title {
    font-size: 1.75rem;
  }
}
@media (min-width: 768px) {
  .c-progress__title {
    font-size: 2rem;
  }
}
.c-progress__track {
  width: 100%;
  height: 0.5rem;
  background-color: #e9b48a;
  border-radius: 0.25rem;
  overflow: hidden;
}

.c-quiz {
  background-color: #e9b48a;
  padding: 1rem;
}
@media (min-width: 576px) {
  .c-quiz {
    padding: 1.5rem;
  }
}
.c-quiz__answer {
  position: relative;
  padding: 0.9rem 1rem;
  background-color: rgb(237.035971223, 193.7589928058, 159.464028777);
  border: 1px solid rgb(223.3136690647, 146.9784172662, 86.4863309353);
  border-radius: 0.4rem;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.95rem;
  color: #3c3c34;
}
.c-quiz__answer:hover {
  background-color: rgb(241.071942446, 207.5179856115, 180.928057554);
  border-color: #5c352c;
}
.c-quiz__answer--selected {
  background-color: #5c352c;
  color: #f5f5dc;
  border-color: #2a1717;
  box-shadow: 0 0 0 2px rgba(42, 23, 23, 0.25);
}
.c-quiz__answer input[type=radio] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.c-quiz__answers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 576px) {
  .c-quiz__answers {
    gap: 1rem;
  }
}
.c-quiz__content {
  min-height: 220px;
}
.c-quiz__question {
  color: #3c3c34;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
@media (min-width: 576px) {
  .c-quiz__question {
    font-size: 1.1rem;
  }
}
.c-quiz__question h4, .c-quiz__question h5 {
  font-weight: 600;
}
.c-quiz__spinner {
  width: 2.5rem;
  height: 2.5rem;
  color: #5c352c;
}
.c-quiz__title {
  color: #3c3c34;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  padding-top: 1rem;
  font-weight: bold;
}
@media (min-width: 576px) {
  .c-quiz__title {
    font-size: 1.75rem;
  }
}
@media (min-width: 768px) {
  .c-quiz__title {
    font-size: 2rem;
  }
}

.c-timeline {
  position: relative;
  padding-left: 1.5rem;
}
.c-timeline::before {
  content: "";
  position: absolute;
  left: 0.375rem;
  top: 0;
  bottom: 0;
  width: 0.125rem;
  background: #f5f5dc;
}
.c-timeline__item {
  position: relative;
  margin-bottom: 1.5rem;
}
.c-timeline__marker {
  position: absolute;
  left: -0.125rem;
  top: 0.375rem;
  width: 0.875rem;
  height: 0.875rem;
  background: #5c352c;
  border-radius: 50%;
}
.c-timeline__content {
  padding-left: 1rem;
}

.c-user__profile {
  display: block;
}
@media (min-width: 992px) {
  .c-user__profile {
    display: grid;
  }
}
.c-user__item {
  margin-bottom: 1.5rem;
}
@media (min-width: 992px) {
  .c-user__item {
    margin-bottom: 0;
  }
}

/*---------------------------------------/*
	# UTILITIES
/*---------------------------------------*/
.u-hidden {
  display: none !important;
}

.text-muted {
  color: #3c3c34 !important;
}

.text-positive {
  color: #0b4a14 !important;
}

.text-neutral {
  color: #614338 !important;
}

.text-supportive {
  color: #750716 !important;
}

.text-gentle {
  color: #ba6f0e !important;
}

/*-------------------------------------------------------/*
	# RESPONSIVE UTILITIES
/*-------------------------------------------------------*/
@media (max-width: 575.98px) {
  .row {
    margin-left: 0;
    margin-right: 0;
  }
  .col-md-4,
  .col-md-6 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
@media (max-width: 991.98px) {
  .navbar-collapse {
    margin-top: 1rem;
  }
}
@media (min-width: 992px) {
  /* Exact slot positioning */
  .c-slot-1-1 {
    grid-column: 1/span 1;
    grid-row: 1/span 1;
  }
  .c-slot-2-1 {
    grid-column: 2/span 1;
    grid-row: 1/span 1;
  }
  .c-slot-3-1 {
    grid-column: 3/span 1;
    grid-row: 1/span 1;
  }
  .c-slot-4-1 {
    grid-column: 4/span 1;
    grid-row: 1/span 1;
  }
  .c-slot-5-1 {
    grid-column: 5/span 1;
    grid-row: 1/span 1;
  }
  .c-slot-6-1 {
    grid-column: 6/span 1;
    grid-row: 1/span 1;
  }
  .c-slot-7-1 {
    grid-column: 7/span 1;
    grid-row: 1/span 1;
  }
  .c-slot-8-1 {
    grid-column: 8/span 1;
    grid-row: 1/span 1;
  }
  .c-slot-9-1 {
    grid-column: 9/span 1;
    grid-row: 1/span 1;
  }
  .c-slot-10-1 {
    grid-column: 10/span 1;
    grid-row: 1/span 1;
  }
  .c-slot-11-1 {
    grid-column: 11/span 1;
    grid-row: 1/span 1;
  }
  .c-slot-12-1 {
    grid-column: 12/span 1;
    grid-row: 1/span 1;
  }
  .c-slot-1-2 {
    grid-column: 1/span 1;
    grid-row: 2/span 1;
  }
  .c-slot-2-2 {
    grid-column: 2/span 1;
    grid-row: 2/span 1;
  }
  .c-slot-3-2 {
    grid-column: 3/span 1;
    grid-row: 2/span 1;
  }
  .c-slot-4-2 {
    grid-column: 4/span 1;
    grid-row: 2/span 1;
  }
  .c-slot-5-2 {
    grid-column: 5/span 1;
    grid-row: 2/span 1;
  }
  .c-slot-6-2 {
    grid-column: 6/span 1;
    grid-row: 2/span 1;
  }
  .c-slot-7-2 {
    grid-column: 7/span 1;
    grid-row: 2/span 1;
  }
  .c-slot-8-2 {
    grid-column: 8/span 1;
    grid-row: 2/span 1;
  }
  .c-slot-9-2 {
    grid-column: 9/span 1;
    grid-row: 2/span 1;
  }
  .c-slot-10-2 {
    grid-column: 10/span 1;
    grid-row: 2/span 1;
  }
  .c-slot-11-2 {
    grid-column: 11/span 1;
    grid-row: 2/span 1;
  }
  .c-slot-12-2 {
    grid-column: 12/span 1;
    grid-row: 2/span 1;
  }
  .c-slot-1-3 {
    grid-column: 1/span 1;
    grid-row: 3/span 1;
  }
  .c-slot-2-3 {
    grid-column: 2/span 1;
    grid-row: 3/span 1;
  }
  .c-slot-3-3 {
    grid-column: 3/span 1;
    grid-row: 3/span 1;
  }
  .c-slot-4-3 {
    grid-column: 4/span 1;
    grid-row: 3/span 1;
  }
  .c-slot-5-3 {
    grid-column: 5/span 1;
    grid-row: 3/span 1;
  }
  .c-slot-6-3 {
    grid-column: 6/span 1;
    grid-row: 3/span 1;
  }
  .c-slot-7-3 {
    grid-column: 7/span 1;
    grid-row: 3/span 1;
  }
  .c-slot-8-3 {
    grid-column: 8/span 1;
    grid-row: 3/span 1;
  }
  .c-slot-9-3 {
    grid-column: 9/span 1;
    grid-row: 3/span 1;
  }
  .c-slot-10-3 {
    grid-column: 10/span 1;
    grid-row: 3/span 1;
  }
  .c-slot-11-3 {
    grid-column: 11/span 1;
    grid-row: 3/span 1;
  }
  .c-slot-12-3 {
    grid-column: 12/span 1;
    grid-row: 3/span 1;
  }
  .c-slot-1-4 {
    grid-column: 1/span 1;
    grid-row: 4/span 1;
  }
  .c-slot-2-4 {
    grid-column: 2/span 1;
    grid-row: 4/span 1;
  }
  .c-slot-3-4 {
    grid-column: 3/span 1;
    grid-row: 4/span 1;
  }
  .c-slot-4-4 {
    grid-column: 4/span 1;
    grid-row: 4/span 1;
  }
  .c-slot-5-4 {
    grid-column: 5/span 1;
    grid-row: 4/span 1;
  }
  .c-slot-6-4 {
    grid-column: 6/span 1;
    grid-row: 4/span 1;
  }
  .c-slot-7-4 {
    grid-column: 7/span 1;
    grid-row: 4/span 1;
  }
  .c-slot-8-4 {
    grid-column: 8/span 1;
    grid-row: 4/span 1;
  }
  .c-slot-9-4 {
    grid-column: 9/span 1;
    grid-row: 4/span 1;
  }
  .c-slot-10-4 {
    grid-column: 10/span 1;
    grid-row: 4/span 1;
  }
  .c-slot-11-4 {
    grid-column: 11/span 1;
    grid-row: 4/span 1;
  }
  .c-slot-12-4 {
    grid-column: 12/span 1;
    grid-row: 4/span 1;
  }
  .c-slot-1-5 {
    grid-column: 1/span 1;
    grid-row: 5/span 1;
  }
  .c-slot-2-5 {
    grid-column: 2/span 1;
    grid-row: 5/span 1;
  }
  .c-slot-3-5 {
    grid-column: 3/span 1;
    grid-row: 5/span 1;
  }
  .c-slot-4-5 {
    grid-column: 4/span 1;
    grid-row: 5/span 1;
  }
  .c-slot-5-5 {
    grid-column: 5/span 1;
    grid-row: 5/span 1;
  }
  .c-slot-6-5 {
    grid-column: 6/span 1;
    grid-row: 5/span 1;
  }
  .c-slot-7-5 {
    grid-column: 7/span 1;
    grid-row: 5/span 1;
  }
  .c-slot-8-5 {
    grid-column: 8/span 1;
    grid-row: 5/span 1;
  }
  .c-slot-9-5 {
    grid-column: 9/span 1;
    grid-row: 5/span 1;
  }
  .c-slot-10-5 {
    grid-column: 10/span 1;
    grid-row: 5/span 1;
  }
  .c-slot-11-5 {
    grid-column: 11/span 1;
    grid-row: 5/span 1;
  }
  .c-slot-12-5 {
    grid-column: 12/span 1;
    grid-row: 5/span 1;
  }
  .c-slot-1-6 {
    grid-column: 1/span 1;
    grid-row: 6/span 1;
  }
  .c-slot-2-6 {
    grid-column: 2/span 1;
    grid-row: 6/span 1;
  }
  .c-slot-3-6 {
    grid-column: 3/span 1;
    grid-row: 6/span 1;
  }
  .c-slot-4-6 {
    grid-column: 4/span 1;
    grid-row: 6/span 1;
  }
  .c-slot-5-6 {
    grid-column: 5/span 1;
    grid-row: 6/span 1;
  }
  .c-slot-6-6 {
    grid-column: 6/span 1;
    grid-row: 6/span 1;
  }
  .c-slot-7-6 {
    grid-column: 7/span 1;
    grid-row: 6/span 1;
  }
  .c-slot-8-6 {
    grid-column: 8/span 1;
    grid-row: 6/span 1;
  }
  .c-slot-9-6 {
    grid-column: 9/span 1;
    grid-row: 6/span 1;
  }
  .c-slot-10-6 {
    grid-column: 10/span 1;
    grid-row: 6/span 1;
  }
  .c-slot-11-6 {
    grid-column: 11/span 1;
    grid-row: 6/span 1;
  }
  .c-slot-12-6 {
    grid-column: 12/span 1;
    grid-row: 6/span 1;
  }
  .c-slot-1-7 {
    grid-column: 1/span 1;
    grid-row: 7/span 1;
  }
  .c-slot-2-7 {
    grid-column: 2/span 1;
    grid-row: 7/span 1;
  }
  .c-slot-3-7 {
    grid-column: 3/span 1;
    grid-row: 7/span 1;
  }
  .c-slot-4-7 {
    grid-column: 4/span 1;
    grid-row: 7/span 1;
  }
  .c-slot-5-7 {
    grid-column: 5/span 1;
    grid-row: 7/span 1;
  }
  .c-slot-6-7 {
    grid-column: 6/span 1;
    grid-row: 7/span 1;
  }
  .c-slot-7-7 {
    grid-column: 7/span 1;
    grid-row: 7/span 1;
  }
  .c-slot-8-7 {
    grid-column: 8/span 1;
    grid-row: 7/span 1;
  }
  .c-slot-9-7 {
    grid-column: 9/span 1;
    grid-row: 7/span 1;
  }
  .c-slot-10-7 {
    grid-column: 10/span 1;
    grid-row: 7/span 1;
  }
  .c-slot-11-7 {
    grid-column: 11/span 1;
    grid-row: 7/span 1;
  }
  .c-slot-12-7 {
    grid-column: 12/span 1;
    grid-row: 7/span 1;
  }
  .c-slot-1-8 {
    grid-column: 1/span 1;
    grid-row: 8/span 1;
  }
  .c-slot-2-8 {
    grid-column: 2/span 1;
    grid-row: 8/span 1;
  }
  .c-slot-3-8 {
    grid-column: 3/span 1;
    grid-row: 8/span 1;
  }
  .c-slot-4-8 {
    grid-column: 4/span 1;
    grid-row: 8/span 1;
  }
  .c-slot-5-8 {
    grid-column: 5/span 1;
    grid-row: 8/span 1;
  }
  .c-slot-6-8 {
    grid-column: 6/span 1;
    grid-row: 8/span 1;
  }
  .c-slot-7-8 {
    grid-column: 7/span 1;
    grid-row: 8/span 1;
  }
  .c-slot-8-8 {
    grid-column: 8/span 1;
    grid-row: 8/span 1;
  }
  .c-slot-9-8 {
    grid-column: 9/span 1;
    grid-row: 8/span 1;
  }
  .c-slot-10-8 {
    grid-column: 10/span 1;
    grid-row: 8/span 1;
  }
  .c-slot-11-8 {
    grid-column: 11/span 1;
    grid-row: 8/span 1;
  }
  .c-slot-12-8 {
    grid-column: 12/span 1;
    grid-row: 8/span 1;
  }
  .c-slot-1-9 {
    grid-column: 1/span 1;
    grid-row: 9/span 1;
  }
  .c-slot-2-9 {
    grid-column: 2/span 1;
    grid-row: 9/span 1;
  }
  .c-slot-3-9 {
    grid-column: 3/span 1;
    grid-row: 9/span 1;
  }
  .c-slot-4-9 {
    grid-column: 4/span 1;
    grid-row: 9/span 1;
  }
  .c-slot-5-9 {
    grid-column: 5/span 1;
    grid-row: 9/span 1;
  }
  .c-slot-6-9 {
    grid-column: 6/span 1;
    grid-row: 9/span 1;
  }
  .c-slot-7-9 {
    grid-column: 7/span 1;
    grid-row: 9/span 1;
  }
  .c-slot-8-9 {
    grid-column: 8/span 1;
    grid-row: 9/span 1;
  }
  .c-slot-9-9 {
    grid-column: 9/span 1;
    grid-row: 9/span 1;
  }
  .c-slot-10-9 {
    grid-column: 10/span 1;
    grid-row: 9/span 1;
  }
  .c-slot-11-9 {
    grid-column: 11/span 1;
    grid-row: 9/span 1;
  }
  .c-slot-12-9 {
    grid-column: 12/span 1;
    grid-row: 9/span 1;
  }
  /* Column spans */
  .c-span-2 {
    grid-column: span 2;
  }
  .c-span-3 {
    grid-column: span 3;
  }
  .c-span-4 {
    grid-column: span 4;
  }
  .c-span-6 {
    grid-column: span 6;
  }
  .c-span-12 {
    grid-column: 1/-1;
  }
  /* Row spans */
  .c-row-span-2 {
    grid-row: span 2;
  }
  .c-row-span-3 {
    grid-row: span 3;
  }
  .c-row-span-4 {
    grid-row: span 4;
  }
}