/*
 * 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;
  }
}
.content-tabs {
  margin: 0 auto;
  padding: 5px;
  border: 1px solid #999;
  box-shadow: rgba(0, 0, 0, 0.16) 0 3px 6px, rgba(0, 0, 0, 0.23) 0 3px 6px;
}

/* Tab list item */
.content-tabs-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  background-color: #e5e5e5;
}
@media screen and (min-width: 768px) {
  .content-tabs-list {
    flex-direction: row;
  }
}
.content-tabs-list li {
  min-width: 100px;
  margin: 0 2px;
  padding: 10px 5px;
  text-align: center;
  background-color: #105610;
}
.content-tabs-list li.active {
  background-color: #58b764;
}
.content-tabs-list li a {
  text-decoration: none;
  color: #fff;
}

/* Tab content section */
.content-tab {
  display: none;
  height: auto;
  margin: 20px 5px 5px;
  background-color: #fff;
  color: #4c4c4c;
}
.content-tab.active {
  display: block;
}