/********
 * Colors
 ********/
/************
 * Typography
 ************/
/*
 * We can use the font weight fot the bold styling example below
 * .test-font { font-family: $font-default; } regular
 * .test-font-bold { font-family: $font-default; font-weight: $font-weight-bold; }
 * @see: _typography.scss
*/
/*****************
 * Global elements
 *****************/
/****************
 * Sizing/Spacing
 ****************/
/*******
 * Forms
 ******/
/***********
 * Bootstrap
 ***********/
/**********
 * Mappings
 *********/
/*
 * IMPORTANT:
 *   - This file should *only contain* variables not considered UN style guide *
 */
/**
  Help theming for rtl languages.
*/
/* background opacity */
/*
 * This handles indentation for the depth of child levels for accordion
 * TODO: improve this implementation, overly complex due to previous design
 */
/*
 * Reset the button appearance to make it look like regular text.
 *
 * The padding can be optionally passed, as it is usually overriden.
 *
 * @param {Number} $padding - The padding to apply to the button.
 */
/*
 * NOTE: there are issues using fontawesome's default mixins due to the
 * use of @extends %fa-icon:
 * - we replace it with @include fa-icon & proper font
 * - we manually set the font-weight
 * - this is quite safe, as these mixins are straight-forward
 * - we also add the support to add icons to both ::before & ::after
 */
.pattern-field.text-indented .field__label {
  width: 150px;
}

.pattern-field.field--label-inline .field__label {
  margin-right: 6px;
}

@media (min-width: 576px) {
  .pattern-field.field--label-inline {
    display: flex;
    align-items: flex-start;
  }
  .pattern-field.field--label-inline .field__label {
    display: inline-block;
    min-width: -moz-fit-content;
    min-width: fit-content;
  }
  .pattern-field.field--label-inline .field__item {
    display: inline-block;
  }
}
.pattern-field .field__items .separator {
  padding-inline: 0.5rem;
}

.pattern-field.size-small {
  font-size: 1rem;
}

.pattern-field.font-color-light {
  color: #7f7f7f;
}

.pattern-field .display-mode-inline > div {
  display: inline-block;
}
