@use 'sass:map';
@use '../../../../mx-core/src/base/typography';
@use '../../../../mx-core/src/base/shape';
@use '../../../../mx-core/src/base/opacity';

.mx-chip-selection {
  &__option-wrapper {
    @extend .gl-body-lg, .rounded-x-sm;
    padding: 8px 0;
    min-width: 120px;
  }

  &__option {
    height: 48px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    grid-gap: 8px;

    &:after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
      opacity: opacity.$opacity-8;
    }
  }
}

mat-icon {
  width: 18px;
  height: 18px;
}
