/**
 * @file
 * Anchor links component.
 */
.anchor-link {
  width: calc(100% + 30px);
  margin: 0 -15px;
  background-color: #02a8e2;
  color: #fff;
  line-height: 1.3;
  overflow: hidden;
}
.anchor-link a {
  padding: 20px 10px;
  font-size: 11px;
  color: #fff;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  display: block;
  white-space: nowrap;
}
.anchor-link a::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  display: block;
  height: 10px;
  width: 1px;
  background-color: #fff;
  transform: translateY(-50%);
  opacity: 0.4;
}
.anchor-link a:hover {
  color: #fff;
}
@media (min-width: 767px) {
  .anchor-link a {
    padding: 25px 15px;
    font-size: 14px;
    line-height: 1.3;
  }
  .anchor-link a::after {
    background-color: transparent;
  }
}
.anchor-link ul {
  display: block;
  max-width: 1146px;
  margin: 0 auto;
  padding: 0 15px;
  text-align: center;
  white-space: nowrap;
  overflow-x: auto;
  overflow-scrolling: touch;
  -webkit-overflow-scrolling: touch;
}
.anchor-link li {
  position: relative;
  display: inline-flex;
}
.anchor-link li:last-child a::after {
  display: none;
}

/*# sourceMappingURL=anchor-links-component.css.map */
