.date__picker-container {
  display: flex;
  flex-direction: column;
}
.date__picker-container .label__wrapper {
  color: #1d1d1d;
  font: 400 1rem/1.5rem "Source Sans 3";
  font-family: var(--ifx-font-family);
}
.date__picker-container .label__wrapper .asterisk {
  display: none;
}
.date__picker-container .label__wrapper .asterisk.required {
  display: inline;
  margin-left: 4px;
}
.date__picker-container .label__wrapper .asterisk.required.error {
  color: #cd002f;
}
.date__picker-container.disabled .label__wrapper {
  color: #bfbbbb;
}
.date__picker-container.error .caption__wrapper {
  color: #cd002f;
}
.date__picker-container.disabled .caption__wrapper {
  color: #bfbbbb;
}
.date__picker-container .caption__wrapper {
  margin-top: 4px;
  color: #1d1d1d;
  font: 400 0.75rem/1rem "Source Sans 3";
  font-family: var(--ifx-font-family);
}

.date__picker-input {
  box-sizing: border-box;
  font-family: var(--ifx-font-family);
  outline: none;
  width: 100%;
  cursor: pointer;
  border-radius: 1px;
  border: 1px solid #8d8786;
  height: 100%;
}
.date__picker-input.firefox__classes {
  padding: 0px 14px;
  box-sizing: border-box;
  color: #8d8786;
  font-size: 16px;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  cursor: pointer;
}
.date__picker-input.firefox__classes:disabled {
  color: #ffffff;
}
.date__picker-input:focus:not(.error, .success) {
  border-color: #0a8276;
}
.date__picker-input:hover:not(:disabled, :focus, .error, .success) {
  border-color: #575352;
}
.date__picker-input:disabled {
  border-color: #bfbbbb;
  background-color: #bfbbbb;
  cursor: default;
}
.date__picker-input.readOnly {
  border: none;
  border-bottom: 1px solid #bfbbbb;
  cursor: default;
  pointer-events: none;
}
.date__picker-input.readOnly::-webkit-datetime-edit-fields-wrapper {
  padding-left: 0;
}
.date__picker-input.readOnly::-webkit-datetime-edit, .date__picker-input.readOnly::-webkit-datetime-edit-text {
  color: #1d1d1d;
}
.date__picker-input.error {
  border-color: #cd002f;
}
.date__picker-input.success:not(.error) {
  border-color: #4ca460;
}
.date__picker-input::-webkit-datetime-edit-text {
  color: #8d8786;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.date__picker-input:disabled::-webkit-datetime-edit, .date__picker-input:disabled::-webkit-datetime-edit-text {
  color: #ffffff;
}
.date__picker-input.has-value::-webkit-datetime-edit-text {
  color: #1d1d1d;
}
.date__picker-input.has-value::-webkit-datetime-edit {
  color: #1d1d1d;
}

::-webkit-datetime-edit {
  color: #8d8786;
  font-size: 16px;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

::-webkit-datetime-edit-fields-wrapper {
  padding: 8px 16px;
  padding-bottom: 9px;
  transform: translateY(1px);
}

::-webkit-inner-spin-button {
  display: none;
}

::-webkit-calendar-picker-indicator {
  position: absolute;
  right: 15px;
  font-size: 19px;
  cursor: pointer;
  border-radius: 1px;
}
::-webkit-calendar-picker-indicator:focus-within {
  outline: 2px solid #0a8276;
  outline-offset: 2px;
}

.input__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  background: #ffffff;
  position: relative;
}
.input__wrapper.large {
  height: 40px;
}
.input__wrapper.small {
  height: 36px;
}
.input__wrapper.disabled .icon__wrapper {
  background: none;
  color: #ffffff;
}
.input__wrapper.disabled .icon__wrapper.firefox__classes {
  display: none;
}
.input__wrapper.disabled .icon__wrapper {
  background-color: #bfbbbb;
  color: #ffffff;
}
.input__wrapper.readOnly .icon__wrapper {
  color: #bfbbbb;
}

.icon__wrapper {
  position: absolute;
  right: 17px;
  padding: 2px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  pointer-events: none;
  z-index: 100;
  background-color: #ffffff;
  line-height: 16px;
}
.icon__wrapper ifx-icon {
  vertical-align: middle;
  z-index: 1;
}
.icon__wrapper.firefox__classes:focus-visible::after {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border: 2px solid #0a8276;
  border-radius: 15%;
}
.icon__wrapper.firefox__classes::before {
  content: "";
  position: absolute;
  inset: -4px;
  background-color: #ffffff;
}