/*
 * 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 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  border: 1px solid #999;
  box-shadow: rgba(0, 0, 0, 0.16) 0 3px 6px, rgba(0, 0, 0, 0.23) 0 3px 6px;
}

.strip--mini {
  max-width: 385px;
  margin: 0 10px 10px 0;
}
@media screen and (min-width: 768px) {
  .strip--mini {
    height: 100px;
  }
}

.strip--standard {
  max-width: 1000px;
  margin: 20px 0;
}
@media screen and (min-width: 768px) {
  .strip--standard {
    height: 200px;
  }
}

.strip--wide {
  margin: 20px 0;
}
@media screen and (min-width: 768px) {
  .strip--wide {
    height: 200px;
  }
}

.strip--tall {
  max-width: 1000px;
  margin: 20px 0;
}
@media screen and (min-width: 768px) {
  .strip--tall {
    height: 300px;
  }
}