/* 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;
}

.a-Radio {
  /* 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;
  box-sizing: border-box;
  color: var(--colorsTextDefault, #141414);
  margin-left: 27px;
}
.FormField .a-Radio {
  padding-bottom: 1px;
  padding-top: 1px;
}
.a-Radio + .FormField__addons {
  margin-left: 27px;
}
.a-Radio.Radio--small, .a-Radio.Radio--small + .FormField__addons {
  margin-left: 23px;
}
.a-Radio.Radio--large, .a-Radio.Radio--large + .FormField__addons {
  margin-left: 33px;
}

.Radio__html-label {
  cursor: pointer;
  display: flex;
  margin-left: -27px;
  align-items: baseline;
}
.Radio--small .Radio__html-label {
  margin-left: -23px;
}
.Radio--large .Radio__html-label {
  margin-left: -33px;
}
.Radio--disabled .Radio__html-label {
  cursor: not-allowed;
}

.field .Radio--small {
  margin-bottom: -4px;
}

.Radio--fitted.a-Radio,
.Radio--fitted .Radio__html-label {
  display: inline-flex;
  align-items: center;
  margin: 0;
}
.Radio--fitted .Radio__box {
  margin: 0;
  padding: 0;
  top: 0;
}

/** Hide the HTML radio input. .Radio__box is the visual the user sees. */
.Radio__input {
  border: none !important;
  display: table-cell;
  float: left;
  height: 1px;
  width: 1px;
  max-width: 1px;
  min-width: 1px;
  margin: -0.5em -1px -0.5em 0 !important;
  opacity: 0 !important;
  overflow: hidden !important;
  padding: 0 !important;
  pointer-events: none;
  position: absolute;
  position: initial;
}
@supports (-moz-appearance: none) {
  .Radio__input {
    margin-left: -2px !important;
    margin-right: -2px !important;
  }
}

.Radio__box {
  background-color: var(--colorsSurfaceDefault, white);
  border-radius: 100%;
  box-shadow: 0 0 0 1px var(--colorsBorderGreyStrong, #bcbcbd) inset;
  display: inline-flex;
  flex-shrink: 0;
  margin-left: 1px;
  margin-right: 8px;
  margin-top: -4px;
  margin-bottom: -4px;
  position: relative;
  transition: background cubic-bezier(0.4, 0, 0.2, 1) 100ms 0ms;
  top: 4px;
  height: 18px;
  width: 18px;
  /* Checked */
  /* Hover */
  /* Focus visible */
}
.Radio--small .Radio__box {
  width: 14px;
  height: 14px;
  top: 2px;
}
.Radio--large .Radio__box {
  width: 24px;
  height: 24px;
  margin-top: -5px;
  margin-bottom: -5px;
  top: 7px;
}
.Radio__box::before {
  box-shadow: 0 0 0 8px var(--colorsBorderPrimary, #0265dc) inset;
  border-radius: 100%;
  bottom: 0;
  content: "";
  height: 0;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 100ms 0ms;
  width: 0;
}
.Radio__box::after {
  border-radius: 100%;
  bottom: 0;
  content: "";
  height: 100%;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}
.Radio--error .Radio__box {
  box-shadow: 0 0 0 1px var(--colorsBorderCriticalSubdued, #ffb2a0) inset;
}
.Radio__input:checked + .Radio__box, .Radio--checked .Radio__box {
  box-shadow: 0 0 0 2px var(--colorsBorderPrimary, #0265dc) inset;
}
.a-Radio .Radio__input:checked + .Radio__box::after, .a-Radio .Radio--checked .Radio__box::after {
  background-color: transparent;
}
.Radio__input:checked + .Radio__box::before, .Radio--checked .Radio__box::before {
  width: 6px;
  height: 6px;
}
.Radio--small .Radio__input:checked + .Radio__box::before, .Radio--small .Radio--checked .Radio__box::before {
  width: 4px;
  height: 4px;
}
.Radio--large .Radio__input:checked + .Radio__box::before, .Radio--large .Radio--checked .Radio__box::before {
  width: 8px;
  height: 8px;
}
.Radio--error .Radio__input:checked + .Radio__box .Radio__box, .Radio--checked.Radio--error .Radio__box {
  box-shadow: 0 0 0 2px var(--colorsBorderCritical, #e13212) inset;
}
.a-Radio .Radio--error .Radio__input:checked + .Radio__box .Radio__box::after, .a-Radio .Radio--checked.Radio--error .Radio__box::after {
  background-color: transparent;
}
.Radio--error .Radio__input:checked + .Radio__box .Radio__box::before, .Radio--checked.Radio--error .Radio__box::before {
  box-shadow: 0 0 0 8px var(--colorsBorderCritical, #e13212) inset;
}
.a-Radio:not(.Radio--disabled):hover .Radio__box {
  box-shadow: 0 0 0 1px var(--colorsBorderDefault, #949596) inset;
}
.a-Radio:not(.Radio--disabled):hover .Radio__input:checked + .Radio__box, .Radio--checked:not(.Radio--disabled):hover .Radio__box {
  box-shadow: 0 0 0 2px var(--colorsHoverOnPrimary, rgba(255, 255, 255, 0.16)) inset, 0 0 0 2px var(--colorsBorderPrimary, #0265dc) inset;
}
.a-Radio:not(.Radio--disabled):hover .Radio__input:checked + .Radio__box::before, .Radio--checked:not(.Radio--disabled):hover .Radio__box::before {
  box-shadow: 0 0 0 8px var(--colorsHoverOnPrimary, rgba(255, 255, 255, 0.16)) inset, 0 0 0 8px var(--colorsBorderPrimary, #0265dc) inset;
}
.Radio--error:not(.Radio--disabled).a-Radio:hover .Radio__box {
  box-shadow: 0 0 0 1px #f94d32 inset;
}
.Radio--error:not(.Radio--disabled).a-Radio:hover .Radio__input:checked + .Radio__box, .Radio--error:not(.Radio--disabled).Radio--checked:hover .Radio__box {
  box-shadow: 0 0 0 2px var(--colorsHoverOnPrimary, rgba(255, 255, 255, 0.16)) inset, 0 0 0 2px var(--colorsBorderCritical, #e13212) inset;
}
.Radio--error:not(.Radio--disabled).a-Radio:hover .Radio__input:checked + .Radio__box::before, .Radio--error:not(.Radio--disabled).Radio--checked:hover .Radio__box::before {
  box-shadow: 0 0 0 8px var(--colorsHoverOnPrimary, rgba(255, 255, 255, 0.16)) inset, 0 0 0 8px var(--colorsBorderCritical, #e13212) inset;
}
.Radio--focus-visible:focus-within .Radio__box {
  box-shadow: 0 0 0 2px var(--colorsBorderPrimary, #0265dc) inset, 0 0 0 3px var(--colorsFocusRingPrimary, #a9d1ff);
}
.Radio--error.Radio--focus-visible:focus-within .Radio__box {
  box-shadow: 0 0 0 2px var(--colorsBorderCritical, #e13212) inset, 0 0 0 3px var(--colorsBorderCriticalSubdued, #ffb2a0);
}

.Radio--disabled .Radio__box {
  opacity: 0.6;
  filter: grayscale(1);
}
.Radio--disabled .Label.Label--error {
  color: var(--colorsTextDefault, #141414);
}

.a-Radio .Radio__label {
  font-size: 16px;
  font-weight: normal;
  position: relative;
  z-index: 2;
}
.Radio--small .Radio__label {
  font-size: 14px;
}

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