/*
 * 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;
  }
}
/** Date panels **/
.strip-panel--date {
  display: flex;
  flex: 1;
  max-width: 150px;
  padding: 3px;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  background-color: #105610;
  color: #fff;
}
.strip-panel--date .date-segment {
  margin: 1px 0;
}
.strip-panel--date .date-segment--day-number {
  font-size: 3rem;
  font-weight: 500;
}
.strip-panel--date .date-segment--time {
  font-size: 0.8rem;
}

/** Image panels **/
.strip-panel--image {
  background-color: #4c4c4c;
  border-right: 1px solid #999;
  max-width: 300px;
  display: none;
}
@media screen and (min-width: 768px) {
  .strip-panel--image {
    display: flex;
    flex: 2;
  }
}

/** Info panels **/
.strip-panel--info {
  flex: 3;
  font-size: 0.9rem;
}
.strip-panel--info p {
  margin: 0;
}
@media screen and (min-width: 768px) {
  .strip-panel--info {
    min-width: 450px;
  }
}

.strip-panel--info__inner {
  height: 98%;
  margin: 3px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.strip-panel--info__header {
  margin-bottom: 5px;
}

.strip-panel--info__title {
  padding: 5px;
  font-weight: bold;
  font-size: 1.2rem;
  text-align: center;
  color: #fff;
  background-color: #105610;
}
.strip-panel--info__title a {
  color: #fff;
}

.strip-panel--info__main {
  flex: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0 10px 7px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .strip-panel--info__main {
    flex-direction: row;
  }
}

.strip-panel--info__first {
  flex: 1;
}

.strip-panel--info__second {
  flex: 1;
  margin-left: 25px;
}

.strip-panel--info__footer {
  margin-bottom: 3px;
  padding: 5px;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  background-color: #e5e5e5;
}

/**
 * Strip size adjustments.
 */
@media screen and (min-width: 768px) {
  .strip-panel {
    height: 200px;
  }
}

@media screen and (min-width: 768px) {
  .strip--mini .strip-panel {
    height: 100px;
  }
}
.strip--mini .strip-panel--image {
  max-width: 150px;
}
.strip--mini .strip-panel--info {
  min-width: 100px;
}
.strip--mini .strip-panel--info__title {
  padding: 3px;
  font-size: 1rem;
}

@media screen and (min-width: 768px) {
  .strip--tall .strip-panel {
    height: 300px;
  }
}