/*
 * 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;
  }
}
#block-tabs {
  margin: 10px 0;
}

.tabs {
  list-style: none;
  padding: 5px 0;
  position: relative;
  max-width: 95%;
  width: auto;
  margin: 0 auto;
}
@media screen and (min-width: 1540px) {
  .tabs {
    max-width: 1250px;
  }
}

.tabs.primary {
  padding: 0;
  text-align: center;
}
.tabs.primary li {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0 0 5px;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .tabs.primary li {
    display: inline-block;
    margin: 0 8px 0 0;
  }
}
.tabs.primary a {
  background-color: #d3e0d3;
  border: 1px solid #105610;
  color: #666;
  display: block;
  padding: 8px 24px;
  text-decoration: none;
}
.tabs.primary a:focus,
.tabs.primary a:hover {
  background-color: #58b764;
  border: 1px solid #105610;
  color: #fff;
}
.tabs.primary .is-active a {
  background-color: #58b764;
  color: #1b2b34;
}

.tabs.secondary {
  margin-top: 10px;
}
.tabs.secondary li {
  display: inline-block;
  font-size: 0.9rem;
  margin: 8px 16px 4px 0;
}
.tabs.secondary a {
  background-color: transparent;
  border-bottom: 2px solid #999;
  color: #666;
  display: block;
  padding: 8px 12px 4px;
}
.tabs.secondary .is-active a,
.tabs.secondary a:focus,
.tabs.secondary a:hover {
  background-color: transparent;
  border-color: #1b2b34;
  color: #1b2b34;
  text-decoration: none;
}

.tabs__local-actions {
  padding: 16px 0;
}

.tabs__local-actions-links {
  margin: 0;
}