/* Hide element visually, keeping it focusable (with keyboard) and available for screen-readers */
/* Form Sizes */
.Form--mini {
  font-size: 0.8125rem;
}

.Form--tiny {
  font-size: 0.875rem;
}

.Form--small {
  font-size: 0.9375rem;
}

.Form--medium {
  font-size: 1rem;
}

.Form--large {
  font-size: 1.125rem;
}

.Form--big {
  font-size: 1.3125rem;
}

.Form--huge {
  font-size: 1.4375rem;
}

.Form--massive {
  font-size: 1.6875rem;
}

/* Stretching of Input when placed in a Field */
.Form .FormField .Input,
.Form .FormGroup .FormField .Input {
  width: 100%;
}

/* Backward compatibility with Semantic.React Fields */
.Fields.Fields--error .Field .Input > input,
.Fields.Fields--error .Field .TextArea,
.Field.Field--error .Input > input,
.Field.Field--error .TextArea {
  background-color: var(--colorsSurfaceCriticalSubdued, #ffece9);
  border-color: var(--colorsBorderCritical, #e13212);
  color: var(--colorsTextCritical, #bf2a00);
  box-shadow: none;
}
.Fields.Fields--error .Field .Input > input:focus,
.Fields.Fields--error .Field .TextArea:focus,
.Field.Field--error .Input > input:focus,
.Field.Field--error .TextArea:focus {
  background-color: var(--colorsSurfaceCriticalSubdued, #ffece9);
  border-color: var(--colorsBorderCritical, #e13212);
  color: var(--colorsTextCritical, #bf2a00);
  box-shadow: none;
  -webkit-appearance: none;
}

/* OptionList overrides specific to the Select */
.a-Select {
  /* Set color on root of component. It can be overridden after the @include */
  color: var(--colorsTextDefault, #141414);
  /* Make sure font-family goes across entire component */
  font-family: "Nunito Sans", sans-serif;
}

.Select--flat .OptionList__option--text .Checkbox__html-label {
  align-items: flex-start;
}
.Select--flat .OptionList__option--text .Checkbox__html-label .Checkbox__box {
  top: 1px;
}

.Select__header {
  width: 100%;
}

.Select__search-clear {
  position: absolute;
  right: 4px;
  top: 4px;
}
.Select__search-clear.Select__search-clear--loading {
  right: calc(32px + 4px);
}
.Select__search-clear .Button.Button--icon-only {
  border-radius: 50%;
  margin-top: 1px;
  padding: 1px 4px;
}
.Select__search-clear .Button.Button--icon-only::before {
  border-radius: 50%;
}
.Select__search-clear .Button.Button--icon-only .Button__icon svg {
  width: 14px;
}

.Select__search .Select__input-clearable .Input.Input--small input {
  padding-right: 24px;
}

.Select__search {
  position: relative;
}
.Select__search .Input.Input--small input {
  font-size: 14px;
  padding-top: 4px;
  padding-bottom: 4px;
}
.Select__search ~ .Select__filter {
  margin-left: 16px;
}

.Select__title {
  margin-top: -2px;
}
.Select__title + .Select__header-controls {
  margin-top: 16px;
}

.Select__filter {
  font-size: 14px;
}
.Select__filter .a-Icon {
  margin-right: 1px;
}

.Select__OptionList {
  margin: 0 -16px;
}
.Select__OptionList .Divider {
  margin-left: -8px;
  margin-right: -8px;
}
.Select__OptionList .Divider + .OptionList__header {
  padding-top: 4px;
}
.Select__OptionList .Checkbox__label {
  word-break: break-word;
}

.OptionList--multi-select .Select--flat .OptionList__option,
.OptionList--multi-select .Select--tree .OptionList > .OptionList__group {
  padding: 0;
}
.Select--flat .OptionList__option:first-of-type,
.Select--tree .OptionList > .OptionList__group:first-of-type {
  margin-top: -8px;
}
.Select--flat .OptionList__option:last-of-type,
.Select--tree .OptionList > .OptionList__group:last-of-type {
  margin-bottom: -8px;
}

/*# sourceMappingURL=AnvilSelect.css.map */
