@mixin selector-color-mapping {
  a.selector-box__option:hover {
    .bg-brand--gradient-orange &,
    .bg-brand--gradient-blue &,
    .bg-brand--dark-grey & {
      color: $color-brand--one;
    }
  }

  a.selector-box__option {
    color: $color-brand--two;

    &:hover {
      color: $color-brand--one;
    }
  }
}
