/* Hide element visually, keeping it focusable (with keyboard) and available for screen-readers */
/* Variables */
/* Paddings are set in em's for internal parts of .Input */
.Input.Input > .ButtonGroup:first-child > .ButtonGroup__InternalWrapper > .ButtonGroup__Item:first-child > .Button, .Input.Input > .Input__InnerWrapper:first-child,
.Input.Input > .Dropdown:first-child,
.Input.Input > .Button:first-child {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

.Input.Input > .ButtonGroup:last-child > .ButtonGroup__InternalWrapper > .ButtonGroup__Item:last-child > .Button, .Input.Input > .Input__InnerWrapper:last-child,
.Input.Input > .Dropdown:last-child,
.Input.Input > .Button:last-child {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

.Input.Input > .ButtonGroup > .ButtonGroup__InternalWrapper > .ButtonGroup__Item > .Button, .Input.Input > .Input__InnerWrapper,
.Input.Input > .Dropdown,
.Input.Input > .Button {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.Input.Input--with-children > .Input__InnerWrapper > .Dropdown:last-child,
.Input.Input--with-children > .Input__InnerWrapper > .ButtonGroup .Button:last-child,
.Input.Input--with-children > .Input__InnerWrapper > .Button:last-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.Input.Input--with-children > .Input__InnerWrapper > .Dropdown:first-child,
.Input.Input--with-children > .Input__InnerWrapper > .ButtonGroup .Button:first-child,
.Input.Input--with-children > .Input__InnerWrapper > .Button:first-child {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* Styling for :autofill pseudo-class */
/*** Input styles ***/
.Input {
  /* 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;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  display: inline-flex;
  color: var(--colorsTextDefault, #141414);
  /* Sizes */
  /*** States ***/
  /* Readonly */
  /* Disabled */
  /* Focus */
  /* Error */
  /* Loading */
  /*** Variations ***/
  /* Transparent */
  /* Icon */
  /* Icon size in case it was not set explicitly */
  /* Handling with rounded corners */
  /* Action */
  /* Fluid */
}
.Input, .Input * {
  box-sizing: border-box;
}
.Input.Input--xsmall {
  font-size: 14px;
}
.Input, .Input.Input--small, .Input.Input--medium, .Input.Input--large {
  font-size: 16px;
}
.Input input, .Input.Input--medium input {
  padding: 0.4375em 0.6875em;
}
.Input.Input--xsmall input {
  padding: 0.185em 0.7857142857em;
}
.Input.Input--small input {
  padding: 0.185em 0.6875em;
}
.Input.Input--large input {
  padding: 0.7em 0.6875em;
}
.Input > .Input__InnerWrapper {
  display: inline-flex;
  flex: 1 1 auto;
  margin: 0;
  padding: 0;
  max-width: 100%;
  /* ... */
  background-color: var(--colorsSurfaceDefault, white);
  border: 1px solid var(--colorsBorderGrey, #dfe0e1);
  color: var(--colorsTextDefault, #141414);
  border-radius: 3px;
  transition: background 0.2s ease-in-out, box-shadow 0.1s ease-in-out, border-color 0.2s ease-in-out;
  box-shadow: none;
}
.Input > .Input__InnerWrapper > * {
  flex: 0 0 auto;
}
.Input > .Input__InnerWrapper > input {
  /* Disabling effects of bootstrap.css on .Input > input */
  display: initial;
  height: initial;
  vertical-align: initial;
  flex: 1 1 auto;
  margin: 0;
  max-width: 100%;
  min-width: 0;
  min-height: auto;
  font-family: inherit;
  font-size: inherit;
  outline: none;
  text-align: left;
  line-height: 1.5;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  /* ... */
  background-color: transparent;
  border: none;
  color: var(--colorsTextDefault, #141414);
  transition: background 0.2s ease-in-out, box-shadow 0.1s ease-in-out, border-color 0.2s ease-in-out;
  box-shadow: none;
  /* Chrome autofill styling */
}
.Input > .Input__InnerWrapper > input::placeholder {
  color: var(--colorsTextDefault, #141414);
  opacity: 0.4;
}
.Input > .Input__InnerWrapper > input:autofill {
  box-shadow: 0 0 0 100px rgba(255, 190, 0, 0.08) inset !important;
}
.Input > .Input__InnerWrapper > input:autofill + .InputAddon {
  box-shadow: 0 0 0 100px rgba(255, 190, 0, 0.08) inset !important;
}
.Input > .Input__InnerWrapper > input:-webkit-autofill {
  box-shadow: 0 0 0 100px rgba(255, 190, 0, 0.08) inset !important;
}
.Input > .Input__InnerWrapper > input:-webkit-autofill + .InputAddon {
  box-shadow: 0 0 0 100px rgba(255, 190, 0, 0.08) inset !important;
}
.Input.Input--readonly > .Input__InnerWrapper {
  background-color: var(--colorsSurfaceGreySubdued, #f7f7f7);
}
.Input.Input--disabled, .Input:not(.Input--disabled) input[disabled] {
  opacity: 0.6;
}
.Input.Input--disabled > .Input__InnerWrapper, .Input:not(.Input--disabled) input[disabled] {
  background-color: var(--colorsSurfaceGreySubdued, #f7f7f7);
}
.Input.Input--disabled > .Input__InnerWrapper, .Input.Input--disabled > .Input__InnerWrapper *, .Input:not(.Input--disabled) input[disabled], .Input:not(.Input--disabled) input[disabled] * {
  pointer-events: none;
}
.Input.Input--disabled > .Input__InnerWrapper::placeholder, .Input:not(.Input--disabled) input[disabled]::placeholder {
  color: var(--colorsTextDefault, #141414);
  opacity: 0.4;
}
.Input:focus-within, .Input.Input--focus {
  box-shadow: 0 0 0 3px var(--colorsFocusRingPrimary, #a9d1ff);
  border-radius: 3px;
}
.Input:focus-within:not(.Input--readonly) > .Input__InnerWrapper, .Input.Input--focus:not(.Input--readonly) > .Input__InnerWrapper {
  background-color: var(--colorsSurfaceDefault, white);
}
.Input:focus-within > .Input__InnerWrapper, .Input.Input--focus > .Input__InnerWrapper {
  border-color: var(--colorsBorderPrimary, #0265dc);
}
.Input:focus-within > .Input__InnerWrapper > input, .Input.Input--focus > .Input__InnerWrapper > input {
  color: var(--colorsTextDefault, #141414);
}
.Input.Input--error {
  /* Error Focus */
}
.Input.Input--error > .Input__InnerWrapper {
  background-color: var(--colorsSurfaceCriticalSubdued, #ffece9);
  border-color: var(--colorsBorderCritical, #e13212);
}
.Input.Input--error > .Input__InnerWrapper > input {
  color: var(--colorsTextCritical, #bf2a00);
  box-shadow: none;
  /* Error Placeholder */
}
.Input.Input--error > .Input__InnerWrapper > input::placeholder {
  color: var(--colorsTextCritical, #bf2a00);
  opacity: 0.4;
}
.Input.Input--error > .Input__InnerWrapper > input:autofill {
  box-shadow: none !important;
}
.Input.Input--error > .Input__InnerWrapper > input:autofill + .InputAddon {
  box-shadow: none !important;
}
.Input.Input--error > .Input__InnerWrapper > input:-webkit-autofill {
  box-shadow: none !important;
}
.Input.Input--error > .Input__InnerWrapper > input:-webkit-autofill + .InputAddon {
  box-shadow: none !important;
}
.Input.Input--error > .Input__InnerWrapper > .InputAddon {
  color: var(--colorsTextCritical, #bf2a00);
}
.Input.Input--error:focus-within, .Input.Input--error.Input--focus {
  box-shadow: 0 0 0 3px var(--colorsFocusRingCritical, #ffb2a0);
}
.Input.Input--error .InputAddon .a-Icon {
  color: var(--colorsTextCritical, #bf2a00);
}
.Input.Input--loading.Input--loading .Spinner {
  line-height: 1;
  pointer-events: none;
  text-align: center;
  height: 100%;
  width: 1.1em;
}
.Input.Input--transparent input {
  border-color: transparent !important;
  background-color: transparent !important;
  padding: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.Input > .Input__InnerWrapper .a-Icon {
  color: var(--colorsTextSubdued, #606162);
  transition: opacity 0.3s ease;
  line-height: inherit;
}
.Input > .Input__InnerWrapper .a-Icon svg {
  font-size: inherit;
  text-align: center;
  vertical-align: middle;
}
.Input > .Input__InnerWrapper > .InputAddon {
  flex: 0 0 auto;
  margin: 0;
  font-size: 16px;
  z-index: 0;
  /* Differ from Semantic UI */
  color: var(--colorsTextSubdued, #606162);
  height: auto;
  display: flex;
  align-items: center;
  transition: color 0.1s ease-in-out, background 0.2s ease-in-out, border-color 0.2s ease-in-out;
}
.Input.Input--xsmall > .Input__InnerWrapper > .InputAddon .a-Icon {
  font-size: 16px;
}
.Input.Input--small > .Input__InnerWrapper > .InputAddon .a-Icon {
  font-size: 20px;
}
.Input.Input--medium > .Input__InnerWrapper > .InputAddon .a-Icon {
  font-size: 20px;
}
.Input.Input--large > .Input__InnerWrapper > .InputAddon .a-Icon {
  font-size: 24px;
}
.Input.Input--xsmall > .Input__InnerWrapper > .InputAddon .a-Icon > svg {
  margin: 0 -2px;
}
.Input.Input--small > .Input__InnerWrapper > .InputAddon .a-Icon > svg {
  margin: 0;
}
.Input.Input--medium > .Input__InnerWrapper > .InputAddon .a-Icon > svg {
  margin: 0;
}
.Input.Input--large > .Input__InnerWrapper > .InputAddon .a-Icon > svg {
  margin: -6px 0;
}
.Input.Input--large > .Input__InnerWrapper > .InputAddon button.a-Icon > svg {
  margin: -4px 0 -1px;
}
.Input.Input--xsmall > .Input__InnerWrapper > .InputAddon *:not(input) {
  line-height: 12px;
}
.Input.Input--small > .Input__InnerWrapper > .InputAddon *:not(input) {
  line-height: 16px;
}
.Input.Input--medium > .Input__InnerWrapper > .InputAddon *:not(input) {
  line-height: 16px;
}
.Input.Input--large > .Input__InnerWrapper > .InputAddon *:not(input) {
  line-height: 20px;
}
.Input.Input--xsmall > .Input__InnerWrapper > .InputAddon {
  padding: 0.185em 0.7857142857em;
  font-size: 14px;
}
.Input.Input--small > .Input__InnerWrapper > .InputAddon {
  padding: 0.185em 0.6875em;
}
.Input.Input--medium > .Input__InnerWrapper > .InputAddon {
  padding: 0.4375em 0.6875em;
}
.Input.Input--large > .Input__InnerWrapper > .InputAddon {
  padding: 0.7em 0.6875em;
}
.Input.Input > .Input__InnerWrapper > input + .InputAddon, .Input.Input > .Input__InnerWrapper > .InputAddon + input, .Input.Input > .Input__InnerWrapper > .InputAddon + .InputAddon {
  padding-left: 0;
}
.Input.Input--with-children > .Input__InnerWrapper > .Dropdown,
.Input.Input--with-children > .Input__InnerWrapper > .ButtonGroup .Button,
.Input.Input--with-children > .Input__InnerWrapper > .Button {
  margin-top: -1px;
  margin-bottom: -1px;
}
.Input.Input--with-children > .Input__InnerWrapper > .Dropdown:first-child,
.Input.Input--with-children > .Input__InnerWrapper > .ButtonGroup .Button:first-child,
.Input.Input--with-children > .Input__InnerWrapper > .Button:first-child {
  margin-left: -1px;
}
.Input.Input--with-children > .Input__InnerWrapper > .Dropdown:last-child,
.Input.Input--with-children > .Input__InnerWrapper > .ButtonGroup .Button:last-child,
.Input.Input--with-children > .Input__InnerWrapper > .Button:last-child {
  margin-right: -1px;
}
.Input > .Button,
.Input > .ButtonGroup {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  margin: 0;
}
.Input.Input--fluid {
  display: flex;
}
.Input.Input--fluid input {
  width: 100%;
}
.Input:not(.Input--with-children) > .Button.Button--outline:first-child {
  margin-right: -1px;
}
.Input:not(.Input--with-children) > .Button.Button--outline:last-child {
  margin-left: -1px;
}

@keyframes button-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

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