/**
 * Styles for customizations related to the Challenges section of the site.
 */
/*
 * Responsive font size mixins.
 */
/*
 * Text styling.
 * Also see heading.scss.
 */
.text-bold {
  font-weight: 700;
}

.text-label {
  font-weight: 700;
  margin-right: 5px;
}

.text-centered {
  text-align: center;
}

.text-small-3 {
  font-size: 0.5rem;
}

.text-small-2 {
  font-size: 0.8rem;
}

.text-small-1 {
  font-size: 0.9rem;
}

.text-normal {
  font-size: 1rem;
}

.text-large-1 {
  font-size: 1.1rem;
}

.text-large-2 {
  font-size: 1.3rem;
}

.text-large-3 {
  font-size: 1.5rem;
}

.text-large-4 {
  font-size: 2rem;
}

.text-large-5 {
  font-size: 3rem;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
/**
 * Strip - Challenge.
 */
.strip--challenge .strip-panel--info__main {
  flex-direction: column;
}
.strip--challenge .strip-panel--info__first {
  width: 100%;
}
.strip--challenge .challenge__time-period {
  margin-bottom: 5px;
}
.strip--challenge .strip-panel--info__footer {
  justify-content: space-between;
}
.strip--challenge .strip-panel--info__footer .buttons {
  margin-right: 5px;
}

#edit-quick-dates .fieldset-wrapper,
#edit-field-dates-0-value .fieldset-wrapper,
#edit-field-dates-0-end-value .fieldset-wrapper {
  display: flex;
}
#edit-quick-dates .fieldset-wrapper div,
#edit-field-dates-0-value .fieldset-wrapper div,
#edit-field-dates-0-end-value .fieldset-wrapper div {
  margin-right: 3px;
}

.challenge-entry--slideshow {
  margin: 25px auto;
}
.challenge-entry--slideshow .entry__details {
  margin-top: 25px;
}