.shop-colour {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  margin-bottom: 20px;

  h2 {
    margin-bottom: 8px;
    flex: none;
  }

  &__wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    grid-gap: 4px;
  }

  &__item {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: flex-start;

    .icon-info-component {
      width: 100%;
    }
  }
}

@include media-breakpoint-down(sm) {
  .shop-colour .tooltip {
    display: none;
  }
}

@include media-breakpoint-up(sm) {
  .shop-colour {
    margin-bottom: 25px;
  }
}

@include media-breakpoint-up(md) {
  .shop-colour {
    margin-bottom: 30px;

    .tooltip {
      display: flex;
      filter: drop-shadow(0 0 8px rgba(0, 0, 0, .12));
      margin-bottom: 4px;

      .arrow {
        &:before {
          border-top-color: $white;
        }
      }

      &-inner {
        padding: 8px 16px !important;
        background-color: $white;
        color: $gray-dark;
        font-size: 14px;
        border-radius: 4px;
      }
    }
  }
}

@include media-breakpoint-up(xl) {
  .shop-colour {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;

    h2 {
      margin-bottom: 0;
    }

    &__wrapper {
      justify-content: end;
    }
  }
}
