.nw-quicklinkscomponent {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  border-bottom: 1px solid $quicklinks-bottom-border-color;
  @media screen and (max-width: $screen-max-xs) {
    border-bottom: 0;
  }
}

.nw-quicklinkscomponent-title {
  margin: 0;
  margin-bottom: 16px;
  width: 100%;
  font-size: $font-size-sm;
  line-height: 1.57;
  text-align: center;
  letter-spacing: 1.1px;
}

.nw-quicklinkscomponent-list {
  margin: 0 0 16px;
  width: 100%;
  padding: 0;
}

.nw-quicklinkscomponent-item {
  padding: 0 0 16px;
  line-height: $font-size-xs;
  text-align: center;
  list-style: none;

  @media screen and (max-width: $screen-max-xs) {
    border-top: 1px solid darken-colors($concrete, 4);
    border-left: 1px solid darken-colors($concrete, 4);
    border-right: 1px solid darken-colors($concrete, 4);
    padding: 14px 0;

    &:last-child {
      border-bottom: 1px solid darken-colors($concrete, 4);
    }
  }

}

.nw-quicklinkscomponent-anchor {
  font-size: $font-size-xs;
  color: $default-color;
  text-decoration: none;
  
  &:hover {
    color: $color-primary;
  }
}
