$component-identifier: '.tab';

#{$component-identifier} {
  display: flex;
  border-bottom: 1px solid $background-color-active;

  &.m-block {
    border: none;

    #{$component-identifier}__item {
      border: none;
      margin: 0;
      border-radius: 0;
    }
  }

  &__item {
    @include border-top-radius($border-radius-tiny);

    padding: $spacing-extra-small;
    margin: 0 $spacing-tiny;
    background-color: $color-gray2;
    border: 1px solid $border-color;
    border-bottom: none;

    &.is-active,
    &:hover {
      color: $color-light-text;
      background-color: $background-color-active;
      border-color: $background-color-active;
      cursor: pointer;
    }
  }
}

$component-identifier: '';
