/**
 * Copyright © INOVUA TRADING.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

@import './variables.scss';
@import '../../RadioButton/style/base.scss';

.#{$INOVUA_RADIO_BUTTON_GROUP_ROOT_CLASS} {
  &--orientation-horizontal {
    display: inline-flex;
  }

  &--rtl {
    direction: rtl;
  }

  &--disabled {
    outline: none;
  }

  &--stretch {
    display: flex;

    > .inovua-react-toolkit-radio-button {
      flex: 1;
    }
  }

  &--orientation-vertical.#{$INOVUA_RADIO_BUTTON_GROUP_ROOT_CLASS}--stretch {
    flex-direction: column;
  }
}
