@import "./mixins/mixin.scss";

@include b(condition-query) {
    margin-bottom: 10px;
    &__section {
      white-space: nowrap;
    }
  
    &__span {
      min-width: 40px;
      white-space: nowrap;
      &.required {
        position: relative;
        &::before {
          color: #f44336;
          content: '*';
        }
      }
    }
    @include pseudo(after) {
        display: block;
        clear: both;
        content: '';
    }
    .right-wrapper {
        float: right;
    }
}