.inputLabel-module_LabelWrapper__2UL8V {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2px;
  max-height: 16px; /* space needed for filters (should be 17 for font-size 13)*/
  min-height: 16px;
}

.inputLabel-module_Label__eZQN1 {
  position: relative;
  display: flex;
  align-items: flex-end;
  max-width: 100%;
  margin-left: 2px;
  font-size: var(--label-font-size);
  font-weight: var(--label-font-weight);
  color: var(--label-color);
  transition: 0.2s ease all;
}
.inputLabel-module_Label__eZQN1.inputLabel-module_Disabled__-7wEU,
.inputLabel-module_Label__eZQN1.inputLabel-module_AsPlaceholder__kGOtN.inputLabel-module_Disabled__-7wEU {
  color: var(--label-color-disabled);
}
.inputLabel-module_Label__eZQN1.inputLabel-module_Focused__VFasC {
  color: var(--input-focus-border-color);
}
.inputLabel-module_Label__eZQN1.inputLabel-module_Error__XY3OR {
  color: var(--input-error-border-color);
}
.inputLabel-module_Label__eZQN1.inputLabel-module_AsPlaceholder__kGOtN {
  font-size: var(--input-font-size);
  font-weight: normal;
  color: var(--input-placeholder-color);
  transform: translate(0, 25px);
  pointer-events: none;
}

.inputLabel-module_FiltersWrapper__fsoPf {
  display: flex;
  cursor: pointer;
  position: relative;
  top: 2px;
}

.inputLabel-module_FiltersWrapper__fsoPf.inputLabel-module_Disabled__-7wEU {
  cursor: auto;
}

.inputLabel-module_Filter__EdRrL {
  margin-left: 5px;
  font-size: 12px;
  padding: 1px 4px 1px 4px;
  background-color: transparent;
  border-radius: 3px;
  border: 1px solid var(--input-disabled-color);
  color: var(--input-disabled-color);
}

.inputLabel-module_SelectedFilter__sPAIO {
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.inputLabel-module_FiltersWrapper__fsoPf {
  cursor: pointer;
}

.inputLabel-module_FilterDisabled__AvToe {
  color: var(--input-disabled-color);
  background-color: var(--input-disabled-background);
}

.rc-tooltip.rc-tooltip-zoom-enter,
.rc-tooltip.rc-tooltip-zoom-leave {
  display: block;
}
.rc-tooltip-zoom-enter,
.rc-tooltip-zoom-appear {
  opacity: 0;
  animation-duration: 0.3s;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.18, 0.89, 0.32, 1.28);
  animation-play-state: paused;
}
.rc-tooltip-zoom-leave {
  animation-duration: 0.3s;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.6, -0.3, 0.74, 0.05);
  animation-play-state: paused;
}
.rc-tooltip-zoom-enter.rc-tooltip-zoom-enter-active,
.rc-tooltip-zoom-appear.rc-tooltip-zoom-appear-active {
  animation-name: rcToolTipZoomIn;
  animation-play-state: running;
}
.rc-tooltip-zoom-leave.rc-tooltip-zoom-leave-active {
  animation-name: rcToolTipZoomOut;
  animation-play-state: running;
}
@keyframes rcToolTipZoomIn {
  0% {
    opacity: 0;
    transform-origin: 50% 50%;
    transform: scale(0, 0);
  }
  100% {
    opacity: 1;
    transform-origin: 50% 50%;
    transform: scale(1, 1);
  }
}
@keyframes rcToolTipZoomOut {
  0% {
    opacity: 1;
    transform-origin: 50% 50%;
    transform: scale(1, 1);
  }
  100% {
    opacity: 0;
    transform-origin: 50% 50%;
    transform: scale(0, 0);
  }
}
.rc-tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  visibility: visible;
  font-size: 12px;
  line-height: 1.5;
  opacity: 0.95;
  word-break: break-word;
  max-width: 600px;
}
.rc-tooltip-hidden {
  display: none;
}
.rc-tooltip-placement-top,
.rc-tooltip-placement-topLeft,
.rc-tooltip-placement-topRight {
  padding: 5px 0 9px 0;
}
.rc-tooltip-placement-right,
.rc-tooltip-placement-rightTop,
.rc-tooltip-placement-rightBottom {
  padding: 0 5px 0 9px;
}
.rc-tooltip-placement-bottom,
.rc-tooltip-placement-bottomLeft,
.rc-tooltip-placement-bottomRight {
  padding: 9px 0 5px 0;
}
.rc-tooltip-placement-left,
.rc-tooltip-placement-leftTop,
.rc-tooltip-placement-leftBottom {
  padding: 0 9px 0 5px;
}
.rc-tooltip-inner {
  padding: 8px 10px;
  color: #fff;
  text-align: left;
  -webkit-text-decoration: none;
  text-decoration: none;
  background-color: #373737;
  border-radius: 6px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.17);
}
.rc-tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
  display: none;
}
.rc-tooltip-placement-top .rc-tooltip-arrow,
.rc-tooltip-placement-topLeft .rc-tooltip-arrow,
.rc-tooltip-placement-topRight .rc-tooltip-arrow {
  bottom: 4px;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #373737;
}
.rc-tooltip-placement-top .rc-tooltip-arrow {
  left: 50%;
}
.rc-tooltip-placement-topLeft .rc-tooltip-arrow {
  left: 15%;
}
.rc-tooltip-placement-topRight .rc-tooltip-arrow {
  right: 15%;
}
.rc-tooltip-placement-right .rc-tooltip-arrow,
.rc-tooltip-placement-rightTop .rc-tooltip-arrow,
.rc-tooltip-placement-rightBottom .rc-tooltip-arrow {
  left: 4px;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #373737;
}
.rc-tooltip-placement-right .rc-tooltip-arrow {
  top: 50%;
}
.rc-tooltip-placement-rightTop .rc-tooltip-arrow {
  top: 15%;
  margin-top: 0;
}
.rc-tooltip-placement-rightBottom .rc-tooltip-arrow {
  bottom: 15%;
}
.rc-tooltip-placement-left .rc-tooltip-arrow,
.rc-tooltip-placement-leftTop .rc-tooltip-arrow,
.rc-tooltip-placement-leftBottom .rc-tooltip-arrow {
  right: 4px;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #373737;
}
.rc-tooltip-placement-left .rc-tooltip-arrow {
  top: 50%;
}
.rc-tooltip-placement-leftTop .rc-tooltip-arrow {
  top: 15%;
  margin-top: 0;
}
.rc-tooltip-placement-leftBottom .rc-tooltip-arrow {
  bottom: 15%;
}
.rc-tooltip-placement-bottom .rc-tooltip-arrow,
.rc-tooltip-placement-bottomLeft .rc-tooltip-arrow,
.rc-tooltip-placement-bottomRight .rc-tooltip-arrow {
  top: 4px;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #373737;
}
.rc-tooltip-placement-bottom .rc-tooltip-arrow {
  left: 50%;
}
.rc-tooltip-placement-bottomLeft .rc-tooltip-arrow {
  left: 15%;
}
.rc-tooltip-placement-bottomRight .rc-tooltip-arrow {
  right: 15%;
}

.inputErrorIcon-module_ErrorIcon__xvYtN {
  height: 14px;
  width: 14px;
}
.inputErrorIcon-module_ErrorIcon__xvYtN .cls-1 {
  fill: #eb455a;
}
.inputErrorIcon-module_ErrorIcon__xvYtN .cls-2 {
  fill: #fff;
}

.inputErrorTooltip-module_ErrorIcon__Y6VL- {
  position: absolute;
  top: 12px;
  right: -5px;
  cursor: pointer;
}

.inputErrorTooltip-module_ErrorIcon__Y6VL-.inputErrorTooltip-module_NoLabel__hh5Mq {
  top: -9px;
}

.textInput-module_Wrapper__-M6ua {
  position: relative;
  width: 100%;
}

.textInput-module_Input__gUQeb {
  display: block;
  outline: none;
  box-sizing: border-box;
  min-height: 29px; /* input-height - 1!*/
  max-height: 29px; /* input-height - 1!*/
  width: 100%;
  padding-left: 3px;
  padding-right: 5px;
  color: var(--input-color);
  font-size: var(--input-font-size);
  transition: 0.2s ease background-color;

  box-shadow: none;
  border: none;
  border-radius: 0; /* iPad adds border */
  border-bottom: var(--input-border);
  background-color: transparent;
}

.textInput-module_TextAlignRight__lJCgf.textInput-module_Input__gUQeb {
  text-align: right;
}

.textInput-module_AnimatedBorder__py5Il {
  position: relative;
  display: block;
}
.textInput-module_AnimatedBorder__py5Il:before,
.textInput-module_AnimatedBorder__py5Il:after {
  content: '';
  height: 2px;
  width: 0;
  bottom: 0;
  position: absolute;
  background: var(--input-focus-border-color);
  transition: 0.2s ease all;
}
.textInput-module_AnimatedBorder__py5Il:before {
  left: 50%;
}
.textInput-module_AnimatedBorder__py5Il:after {
  right: 50%;
}

.textInput-module_Input__gUQeb:focus {
  /*border-color: transparent;*/
}

.textInput-module_Input__gUQeb:focus ~ .textInput-module_AnimatedBorder__py5Il:before,
.textInput-module_Input__gUQeb:focus ~ .textInput-module_AnimatedBorder__py5Il:after {
  width: 50%;
}

.textInput-module_Input__gUQeb.textInput-module_Error__ENheq,
.textInput-module_Input__gUQeb.textInput-module_Error__ENheq.textInput-module_Disabled__wSY1d {
  background: var(--input-error-background-color);
}
.textInput-module_Input__gUQeb.textInput-module_Error__ENheq ~ .textInput-module_AnimatedBorder__py5Il:before,
.textInput-module_Input__gUQeb.textInput-module_Error__ENheq ~ .textInput-module_AnimatedBorder__py5Il:after {
  background: var(--input-error-border-color);
  width: 50%;
}

.textInput-module_Input__gUQeb.textInput-module_Disabled__wSY1d {
  color: var(--input-disabled-color);
  background-color: var(--input-disabled-background);
  box-shadow: none;
}
.textInput-module_Input__gUQeb.textInput-module_Disabled__wSY1d::placeholder {
  color: var(--input-disabled-color);
}

.textInput-module_Input__gUQeb.textInput-module_WithIcon__CABaM {
  padding-right: 20px;
}
.textInput-module_Input__gUQeb.textInput-module_WithPrefixIcon__cFsA1 {
  padding-left: 25px;
}
.textInput-module_Icon__z7TXk {
  position: absolute;
  right: 6px;
  bottom: 3px;
}
.textInput-module_PrefixIcon__P01-O {
  display: flex;
  position: absolute;
  left: 2px;
  bottom: 6px;
}

/* AUTOFILL HACK */
/*https://medium.com/@brunn/detecting-autofilled-fields-in-javascript-aed598d25da7*/

@keyframes onAutoFillStart {
  /* ADDED opacity:1 JUST BECAUSE PRODUCTION BUILD DELETES EMPTY ANIMATIONS */
  from {
    opacity: 1;
  }
  to {
    opacity: 1;
  }
}
@keyframes onAutoFillCancel {
  from {
    opacity: 1;
  }
  to {
    opacity: 1;
  }
}

.textInput-module_Wrapper__-M6ua input:-webkit-autofill {
  animation-name: 'onAutoFillStart';
}
.textInput-module_Wrapper__-M6ua input:not(:-webkit-autofill) {
  animation-name: 'onAutoFillCancel';
}

.textInput-module_TestContentCentered__2FA8G {
  justify-content: center;
}

.avatar-module_Avatar__0IEXk {
  /* center horizontally */
  margin-left: auto;
  margin-right: auto;

  /* fill the container, preserving aspect ratio, and cropping to fit */
  background-size: cover;
  background-repeat: no-repeat;

  /* center the image vertically and horizontally */
  background-position: center;

  /* round the edges to a circle with border radius 1/2 container size */
  border-radius: 50%;

  background-color: var(--neutral-background-color);
  display: flex;
  justify-content: center;
  align-items: center;
}

.avatar-module_AvatarScaleOnHover__pztw5:hover {
  transform: scale(2);
  z-index: 999;
}

.avatar-module_Clickable__-A8Dy {
  cursor: pointer;
}

.avatar-module_AvatarPlaceholderIcon__k4oxQ {
  fill: none;
  stroke: var(--icon-neutral-color);
  stroke-miterlimit: 10;
  height: 60%;
  width: 60%;
}

.button-module_Button__TgdVf {
  height: var(--input-height);
  box-sizing: border-box;
  width: auto;
  font-size: var(--input-font-size);
  font-weight: 500;
  padding: 0 15px;
  border: var(--input-border);
  border-radius: var(--input-border-radius);
  cursor: pointer;
  line-height: normal;
  transition: all 0.3s ease 0s;
}

.button-module_Button__TgdVf:focus {
  border-color: var(--input-focus-border-color);
  box-shadow: var(--input-focus-shadow);
}

.button-module_Button__TgdVf.button-module_Smaller__n4WfW {
  font-size: 12px;
  padding: 0 10px;
  height: 25px;
}

.button-module_Button__TgdVf.button-module_Disabled__s3sT8:hover {
  box-shadow: none;
}

.button-module_Disabled__s3sT8:not(Transparent) {
  background-color: rgba(0, 0, 0, 0.07);
  color: rgba(0, 0, 0, 0.35);
  border: none;
  cursor: auto;
  pointer-events: none; /* necessary for tooltip */
}

.button-module_Disabled__s3sT8.button-module_Transparent__ji3wS {
  background: transparent;
  border: none;
  color: rgba(0, 0, 0, 0.25);
  cursor: auto;
  pointer-events: none; /* necessary for tooltip */
}

.button-module_Button__TgdVf:not(.button-module_Transparent__ji3wS):not(.button-module_Disabled__s3sT8):hover {
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.17);
}

.button-module_Button__TgdVf:not(.button-module_Transparent__ji3wS):not(.button-module_Disabled__s3sT8).button-module_Active__iMS-- {
  box-shadow: 0 8px 8px rgba(0, 0, 0, 0.17);
}
.button-module_Button__TgdVf.button-module_Transparent__ji3wS.button-module_Active__iMS--:not(.button-module_Disabled__s3sT8) {
  background-color: #3d2c43;
  box-shadow: 0 8px 8px rgba(0, 0, 0, 0.17);
}

.button-module_Button__TgdVf.button-module_Positive__gdcy8 {
  background-color: var(--positive-button-color);
  border: none;
  color: var(--light-text-button-color);
}

.button-module_Button__TgdVf.button-module_Positive__gdcy8.button-module_Transparent__ji3wS {
  background: transparent;
  border: none;
  color: var(--positive-button-color);
}
.button-module_Button__TgdVf.button-module_Positive__gdcy8.button-module_Transparent__ji3wS:hover,
.button-module_Button__TgdVf.button-module_Positive__gdcy8.button-module_Transparent__ji3wS.button-module_Active__iMS-- {
  background-color: var(--positive-button-active-transparent-color);
  color: var(--positive-button-color);
}

.button-module_Button__TgdVf.button-module_Negative__wNJ96 {
  background-color: var(--negative-button-color);
  border: none;
  color: var(--dark-text-button-color);
}

.button-module_Button__TgdVf.button-module_Negative__wNJ96.button-module_Transparent__ji3wS {
  background: transparent;
  border: none;
  color: var(--dark-text-button-color);
}
.button-module_Button__TgdVf.button-module_Negative__wNJ96.button-module_Transparent__ji3wS:hover,
.button-module_Button__TgdVf.button-module_Negative__wNJ96.button-module_Transparent__ji3wS.button-module_Active__iMS-- {
  background-color: var(--negative-button-active-transparent-color);
  color: var(--dark-text-button-color);
}

.button-module_Button__TgdVf.button-module_Destructive__Weh3M {
  background-color: var(--destructive-button-color);
  border: none;
  color: var(--dark-text-button-color);
}

.button-module_Button__TgdVf.button-module_Destructive__Weh3M:focus,
.button-module_Button__TgdVf.button-module_Destructive__Weh3M:hover,
.button-module_Button__TgdVf.button-module_Destructive__Weh3M.button-module_Active__iMS-- {
  background-color: var(--destructive-button-active-color);
  border: none;
  color: var(--light-text-button-color);
}

.button-module_Button__TgdVf.button-module_Destructive__Weh3M.button-module_Transparent__ji3wS {
  background: transparent;
  border: none;
  color: var(--dark-text-button-color);
}

.button-module_Button__TgdVf.button-module_Destructive__Weh3M.button-module_Transparent__ji3wS:hover,
.button-module_Button__TgdVf.button-module_Destructive__Weh3M.button-module_Transparent__ji3wS.button-module_Active__iMS-- {
  background-color: var(--destructive-button-active-transparent-color);
  color: var(--destructive-button-active-color);
}

.button-module_Button__TgdVf.button-module_Payment__jDGV9 {
  background-color: var(--payment-button-color);
  border: none;
  color: var(--light-text-button-color);
}

.button-module_Button__TgdVf.button-module_Payment__jDGV9.button-module_Transparent__ji3wS {
  background: transparent;
  border: none;
  color: var(--payment-button-color);
}

.button-module_Button__TgdVf.button-module_Payment__jDGV9.button-module_Transparent__ji3wS:hover,
.button-module_Button__TgdVf.button-module_Payment__jDGV9.button-module_Transparent__ji3wS.button-module_Active__iMS-- {
  background-color: var(--payment-button-active-transparent-color);
  color: var(--payment-button-color);
}

.currencyInput-module_CurrencyInput__imJz0 input {
  text-align: right;
}

.list-module_List__AVggd > li {
  padding: 10px;
  min-height: 30px;
  word-break: break-all;
}
.list-module_List__AVggd.list-module_NoPading__zQ-0c > li {
  padding: 0;
}
.list-module_List__AVggd > li:nth-child(odd) {
  background: var(--list-odd-color);
}
.list-module_List__AVggd > li:nth-child(even) {
  background: var(--list-even-color);
}
.list-module_List__AVggd.list-module_Clickable__rEyvN > li {
  cursor: pointer;
}
.list-module_List__AVggd.list-module_Clickable__rEyvN > li:hover {
  background: var(--list-hover-color);
}

.list-module_HeaderWrapper__tHVJs {
  padding: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  height: 30px;
}

.list-module_EmptyListMessage__6d28f {
  font-size: 12px;
  padding: 10px;
  /* font-size: list-primary-font-size; */
}

.list-module_List__AVggd > li.list-module_Marked__WXqwz {
  background-color: var(--list-marked-color);
}

.dataListCompact-module_Wrapper__nVVlX {
  display: flex;
}

.dataListCompact-module_Label__GJAx- {
  flex-grow: 1;
  min-width: 200px;
}

.dataListCompact-module_Value__J0-R8 {
  margin-right: 10px;
  font-weight: bold;
}

.dataListCompact-module_Label__GJAx-,
.dataListCompact-module_Value__J0-R8 {
  margin-top: 6px;
}

.dataListCompact-module_LabelMargin__9EUyP {
  margin-left: 10px;
}

.dataListCompact-module_Clickable__ycc-8 {
  cursor: pointer;
}

.dataListCompact-module_Clickable__ycc-8 > .dataListCompact-module_Label__GJAx-,
.dataListCompact-module_Clickable__ycc-8 > .dataListCompact-module_Value__J0-R8 {
  -webkit-text-decoration: underline;
  text-decoration: underline;
}

.calendarIcon-module_Icon__EkiDy {
  height: 20px;
  width: 20px;
  cursor: pointer;
}

.calendarIcon-module_Icon__EkiDy .st0 {
  fill: none;
}
.calendarIcon-module_Icon__EkiDy .st1 {
  fill: var(--primary-color);
}

.datePicker-module_Wrapper__cEzJL {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

.datePicker-module_InputWrapper__qJbtG {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;

  box-sizing: border-box;
  width: 100%;
  box-shadow: none;
  border: none;
  border-bottom: var(--input-border);
  transition: 0.2s ease background-color;
}
.datePicker-module_InputWrapper__qJbtG:focus {
  outline: none;
}

.datePicker-module_Input__c8mEm {
  outline: none;
  box-sizing: border-box;
  flex-grow: 1;
  border: none;
  border-radius: 0; /* iPad adds border */
  height: var(--input-height-without-border);
  color: var(--input-color);
  font-size: var(--input-font-size);
  padding-left: 3px;
  padding-right: 5px;
  background: transparent; /* it shadows InputWrapper */
}
.datePicker-module_Input__c8mEm:disabled {
  /* reset color, we use custom Disabled class instead */
  color: var(--input-color);
  -webkit-text-fill-color: var(--input-color);
  opacity: 1;
}

.datePicker-module_CalendarIconWrapper__s6k1t {
  border: none;
  border-radius: 0;
  height: var(--input-height-without-border);
  width: var(--input-height-without-border);
  background-color: transparent;
  padding: 5px;
  margin-right: 3px;
}

.datePicker-module_CalendarIcon__yPwq0 {
  stroke: var(--input-icon-color);
  fill: transparent;
}

.datePicker-module_AnimatedBorder__PDbqo {
  position: relative;
  display: block;
}
.datePicker-module_AnimatedBorder__PDbqo:before,
.datePicker-module_AnimatedBorder__PDbqo:after {
  content: '';
  height: 2px;
  width: 0;
  bottom: 1px;
  position: absolute;
  background: var(--input-focus-border-color);
  transition: 0.2s ease all;
}
.datePicker-module_AnimatedBorder__PDbqo:before {
  left: 50%;
}
.datePicker-module_AnimatedBorder__PDbqo:after {
  right: 50%;
}

.datePicker-module_Focused__IMmkU {
  border-color: transparent;
}
.datePicker-module_Focused__IMmkU ~ .datePicker-module_AnimatedBorder__PDbqo:before,
.datePicker-module_Focused__IMmkU ~ .datePicker-module_AnimatedBorder__PDbqo:after {
  width: 50%;
}

.datePicker-module_Error__eOYcl {
  border-color: transparent;
  background: var(--input-error-background-color);
}
.datePicker-module_Error__eOYcl ~ .datePicker-module_AnimatedBorder__PDbqo:before,
.datePicker-module_Error__eOYcl ~ .datePicker-module_AnimatedBorder__PDbqo:after {
  background: var(--input-error-border-color);
  width: 50%;
}

.datePicker-module_Disabled__dw6fV .datePicker-module_Input__c8mEm {
  color: var(--input-disabled-color);
  background-color: var(--input-disabled-background);
  box-shadow: none;
}

.rdp-nav_button:focus, .rdp-day:focus {
  border-color: var(--input-focus-border-color);
  box-shadow: var(--input-focus-shadow);
  outline: none;
}

.datePicker-module_Icon__YnTtT {
  position: absolute;
  right: 28px;
  bottom: 3px;
}

.datePicker-module_HelpText__RV7F6 {
  font-size: 12px;
  color: gray;
  left: 3px;
  position: absolute;
  bottom: -15px;
}

.datePicker-module_ModalButtonsWrapper__AgcDC {
  display: flex;
  justify-content: flex-end;
}
.datePicker-module_ModalButton__SpmxA {
  margin: 20px;
  margin-top: 0;
}

.closeIcon-module_Icon__xeIph {
  height: 16px;
  width: 16px;
  fill: hsl(0, 0%, 80%);
}

.closeIcon-module_Icon__xeIph:hover {
  fill: var(--clear-icon-color);
}

.select-module_Select__A-baB {
  position: relative;
  width: 100%;
}

.select-module_AnimatedBorder__yb0aF {
  position: relative;
  display: block;
}
.select-module_AnimatedBorder__yb0aF:before,
.select-module_AnimatedBorder__yb0aF:after {
  content: '';
  height: 2px;
  width: 0;
  bottom: 1px;
  position: absolute;
  background: var(--input-focus-border-color);
  transition: 0.2s ease all;
}
.select-module_AnimatedBorder__yb0aF:before {
  left: 50%;
}
.select-module_AnimatedBorder__yb0aF:after {
  right: 50%;
}

.select-module_Select__A-baB.select-module_Focused__1agzm .select-module_AnimatedBorder__yb0aF:before,
.select-module_Select__A-baB.select-module_Focused__1agzm .select-module_AnimatedBorder__yb0aF:after {
  width: 50%;
}

.select-module_Select__A-baB.select-module_Focused__1agzm .select-module_AnimatedBorder__yb0aF:before,
.select-module_Select__A-baB.select-module_Focused__1agzm .select-module_AnimatedBorder__yb0aF:after {
  width: 50%;
}

.select-module_Select__A-baB.select-module_Error__wOmwh .select-module_AnimatedBorder__yb0aF:before,
.select-module_Select__A-baB.select-module_Error__wOmwh .select-module_AnimatedBorder__yb0aF:after {
  background: var(--input-error-border-color);
  width: 50%;
}

.select-module_ArrowIcon__CvucC {
  height: 20px;
  width: 20px;
  fill: currentColor;
}

.select-module_ClickableMultiValue__ekynE {
}
.select-module_ClickableMultiValue__ekynE:hover {
  cursor: pointer;
  -webkit-text-decoration: underline;
  text-decoration: underline;
}

.customMonthSelect-module_CalendarNavbar__pmZng {
  display: flex;
  justify-content: space-between;
  margin: 0 16px;
  padding: 12px 0;
}

.customMonthSelect-module_CaptionWrapper__v-tl1 {
  width: -webkit-fit-content;
  width: fit-content;
  margin: 1em auto 0.5em auto;
}

.customMonthSelect-module_CaptionWrapper__v-tl1.rdp-caption {
  text-align: left;
}

.customMonthSelect-module_Caption__Hfoek {
  display: flex;
}

.customMonthSelect-module_Caption__Hfoek > * {
  margin-right: 2px;
}

.customMonthSelect-module_Caption__Hfoek .Select.is-open .Select-arrow,
.customMonthSelect-module_Caption__Hfoek .Select .Select-arrow-zone:hover > .Select-arrow {
  border-top-color: white;
}

.customMonthSelect-module_Caption__Hfoek .Select.is-open > .Select-control .Select-arrow {
  top: -2px;
  border-color: transparent transparent white;
  border-width: 0 5px 5px;
}

.customMonthSelect-module_MonthWrapper__oOiNw {
  width: 95px;
}

.customMonthSelect-module_YearWrapper__ngSgu {
  width: 60px;
}

.customMonthSelect-module_CustomOption__BLATH {
  font-size: 14px;
}

.customMonthSelect-module_CaptionWrapper__v-tl1 .Select-control {
  border-color: primary-color;
}

.customMonthSelect-module_CaptionWrapper__v-tl1 .Select-arrow {
  border-top-color: white;
}

.customMonthSelect-module_SelectsWrapper__gim-1 {
  display: flex;
}

.checkbox-module_CheckboxWrapper__PlKB9 {
  display: flex;
  align-items: center;
}

.checkbox-module_Input__7NUGu {
  opacity: 0;
}

.checkbox-module_Label__CyKZ6 {
  display: flex;
  font-size: var(--input-font-size);
  cursor: pointer;
  color: var(--label-color);
}
.checkbox-module_Label__CyKZ6.checkbox-module_Checked__L-1kw {
  color: var(--input-color);
}

.checkbox-module_Disabled__hZnV6 .checkbox-module_Label__CyKZ6 {
  color: var(--label-color-disabled);
  cursor: auto;
}

.checkbox-module_LabelBefore__2OuRo {
  flex: 0 0 12px;
  height: 12px;
  width: 12px;
  position: relative;
  top: 2px;
  right: 10px;
}

.checkbox-module_LabelText__yXQM- {
  flex: 1 0 0;
}

.checkbox-module_Input__7NUGu:focus + label .checkbox-module_LabelBefore__2OuRo {
  border-color: var(--input-focus-border-color);
  box-shadow: var(--input-focus-shadow);
  outline: none;
}

.checkbox-module_UncheckedIcon__hGjvv {
  fill: var(--icon-neutral-color);
}

.checkbox-module_CheckedIcon__iP65I .cls-1 {
  fill: var(--primary-color);
}

.checkbox-module_CheckedIcon__iP65I .cls-2 {
  fill: white;
}

.checkbox-module_Disabled__hZnV6 .checkbox-module_CheckedIcon__iP65I .cls-1 {
  fill: var(--icon-neutral-color);
}

.checkbox-module_Disabled__hZnV6 .checkbox-module_UncheckedIcon__hGjvv,
.checkbox-module_Disabled__hZnV6 .checkbox-module_CheckedIcon__iP65I {
  cursor: not-allowed;
}

.checkbox-module_NoLabel__jMvMR {
  position: relative;
}

.checkbox-module_NoLabel__jMvMR svg {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -6px;
  margin-top: -6px;
}

.radioGroup-module_RadioButton__-jNGm {
  position: relative;
  display: flex;
}

.radioGroup-module_Input__6baDI {
  opacity: 0;
  height: 12px;
  width: 12px;
  margin: 0;
  margin-right: 5px;
  padding: 0;
  flex-shrink: 0;
}

.radioGroup-module_Label__bMUpI {
  display: inline-flex;
  font-size: var(--input-font-size);
  cursor: pointer;
  color: var(--label-color);
}
.radioGroup-module_Label__bMUpI.radioGroup-module_Checked__9OuR2 {
  color: var(--input-color);
}
.radioGroup-module_Disabled__s3Ezu .radioGroup-module_Label__bMUpI {
  color: var(--label-color-disabled);
  cursor: auto;
}

.radioGroup-module_LabelBefore__x3vi8 {
  flex-shrink: 0;
  display: inline-block;
  height: 12px;
  width: 12px;
  /*position: relative;*/
  /*top: 1px;*/
  /*right: 10px;*/
  position: absolute;
  top: 2px;
  left: 0;
}

.radioGroup-module_Input__6baDI:focus + label .radioGroup-module_LabelBefore__x3vi8 {
  border-color: var(--input-focus-border-color);
  box-shadow: var(--input-focus-shadow);
  outline: none;
}

.radioGroup-module_UncheckedIcon__sCun- {
  height: 12px;
  width: 12px;
  fill: var(--icon-neutral-color);
}

.radioGroup-module_CheckedIcon__t-s5M {
  height: 12px;
  width: 12px;
}

.radioGroup-module_CheckedIcon__t-s5M .cls-1 {
  fill: var(--primary-color);
}
.radioGroup-module_CheckedIcon__t-s5M .cls-2 {
  fill: white;
}

.radioGroup-module_Disabled__s3Ezu .radioGroup-module_CheckedIcon__t-s5M .cls-1 {
  fill: var(--icon-neutral-color);
}

/***********************************************/

.radioGroup-module_RadioGroup__iySNl {
  display: flex;
}

.radioGroup-module_RadioGroupLabel__OE-i- {
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  color: var(--label-color);
}
.radioGroup-module_Disabled__s3Ezu .radioGroup-module_RadioGroupLabel__OE-i- {
  color: var(--label-color-disabled);
}

.radioGroup-module_RadioGroup__iySNl.radioGroup-module_RadioGroupHorizontal__ToHNv {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}

.radioGroup-module_RadioGroup__iySNl.radioGroup-module_RadioGroupHorizontal__ToHNv .radioGroup-module_RadioButton__-jNGm {
  margin-left: 10px;
}

.radioGroup-module_RadioGroup__iySNl.radioGroup-module_RadioGroupVertical__E-HaM {
  flex-direction: column;
}

.radioGroup-module_RadioGroup__iySNl.radioGroup-module_RadioGroupVertical__E-HaM .radioGroup-module_RadioButton__-jNGm {
  width: 100%;
  margin-bottom: 5px;
  margin-left: 2px;
}

.radioGroup-module_RadioGroup__iySNl.radioGroup-module_RadioGroupVertical__E-HaM .radioGroup-module_LabelWrapper__-Z0VF {
  margin-bottom: 7px;
}

.textArea-module_Wrapper__CaV6Y {
  /* internal, for label and textarea */
  display: flex;
  flex-direction: column;
  height: 100%;

  /* external - take all vertical space in parent container with flex-direction: column */
  flex: 1;
}

.textArea-module_TextArea__Zbnd3 {
  resize: none;
  min-height: 80px;
  flex: 1;
}

.textArea-module_Input__zcQP9 {
  display: block;
  outline: none;
  box-sizing: border-box;
  height: var(--input-height);
  width: 100%;
  padding-left: 3px;
  padding-right: 5px;
  color: var(--input-color);
  font-size: var(--input-font-size);
  transition: 0.2s ease background-color;

  box-shadow: none;
  border: none;
  border-radius: 0; /* iPad adds border */
  border-bottom: var(--input-border);
  background-color: lightyellow;
}

.textArea-module_AnimatedBorder__anFIe {
  position: relative;
  display: block;
}
.textArea-module_AnimatedBorder__anFIe:before,
.textArea-module_AnimatedBorder__anFIe:after {
  content: '';
  height: 2px;
  width: 0;
  bottom: 0;
  position: absolute;
  background: var(--input-focus-border-color);
  transition: 0.2s ease all;
}
.textArea-module_AnimatedBorder__anFIe:before {
  left: 50%;
}
.textArea-module_AnimatedBorder__anFIe:after {
  right: 50%;
}

.textArea-module_Input__zcQP9:focus {
  /*border-bottom-color: transparent;*/
}

.textArea-module_Input__zcQP9:focus ~ .textArea-module_AnimatedBorder__anFIe:before,
.textArea-module_Input__zcQP9:focus ~ .textArea-module_AnimatedBorder__anFIe:after {
  width: 50%;
}

.textArea-module_Input__zcQP9.textArea-module_Error__k6QgU {
  /*border-bottom-color: transparent;*/
  background: var(--input-error-background-color);
}
.textArea-module_Input__zcQP9.textArea-module_Error__k6QgU ~ .textArea-module_AnimatedBorder__anFIe:before,
.textArea-module_Input__zcQP9.textArea-module_Error__k6QgU ~ .textArea-module_AnimatedBorder__anFIe:after {
  background: var(--input-error-border-color);
  width: 50%;
}

.textArea-module_Input__zcQP9.textArea-module_Disabled__St6BM {
  color: var(--input-disabled-color);
  background-color: var(--input-disabled-background);
  box-shadow: none;
}

.textArea-module_Input__zcQP9.textArea-module_WithIcon__fAMn- {
  padding-right: 20px;
}
.textArea-module_Icon__qpc1u {
  position: absolute;
  right: 6px;
  bottom: 6px;
}

button {
  overflow: visible;
  border: 0;
  font: inherit;
  color: inherit;
  -webkit-font-smoothing: inherit;
  letter-spacing: inherit;
  background: none;
  cursor: pointer;
}

.HelpText {
  font-size: 12px;
  color: gray;
}

:root {
  --primary-color-rgb: 235, 69, 90;
  --primary-color: rgb(var(--primary-color-rgb));
  --secondary-color-rgb: 76, 132, 255;
  --secondary-color: rgb(var(--secondary-color-rgb));
  --neutral-background-color: rgba(0, 0, 0, 0.03);
  --icon-neutral-color: rgba(0, 0, 0, 0.3);
  --icon-neutral-color-hover: rgba(0, 0, 0, 0.5);
  --money-color-rgb: 0, 182, 0;
  --money-color: rgb(var(--money-color-rgb));
  --label-column-width: 35px;
  --clear-icon-color: var(--error-color);
  --footer-text-size: 12px;
  --footer-text-size-smaller: 10px;
  --secondary-text-color: rgba(0, 0, 0, 0.4);

  /* INPUTS */
  --input-wrapper-margin-bottom: 8px;
  --input-wrapper-min-width: 0;
  --input-color: #000;
  --input-font-size: 14px;
  --input-height: 30px;
  --input-border: 1px solid var(--border-color);
  --border-color: rgba(0, 0, 0, 0.2);
  --input-focus-border-color: var(--primary-color);
  --error-color-rgb: 254, 40, 81; /*#FE2851*/
  --error-color: rgb(var(--error-color-rgb));
  --input-error-border-color: var(--error-color);
  --input-error-background-color: rgba(var(--error-color-rgb), 0.1);
  --input-disabled-color: rgba(0, 0, 0, 0.3);
  --input-disabled-background: rgba(0, 0, 0, 0);
  --input-placeholder-color: rgba(0, 0, 0, 0.6);
  --label-color-disabled: rgba(0, 0, 0, 0.3);
  --label-color: var(--label-color-general);
  --label-font-size: 12px;
  --label-font-weight: bold;
  --input-focus-shadow: 0px 0px 1px 3px rgba(var(--primary-color-rgb), 0.4);
  --input-border-radius: 2px;
  --input-height-without-border: 28px;
  --input-icon-color: rgba(0, 0, 0, 0.4);
  --input-icon-background: white;
  --input-error-shadow: 0px 0px 1px 3px rgba(var(--error-color-rgb), 0.4);
  --select-option-focus-background-color: rgba(0, 0, 0, 0.06);
  --select-option-selected-background-color: white;
  --select-option-selected-font-color: var(--primary-color);
  /* INPUTS */

  /* BUTTON */
  --positive-button-color-rgb: 76, 132, 255;
  --positive-button-color: rgb(var(--positive-button-color-rgb));
  --negative-button-color: rgba(0, 0, 0, 0.1);
  --destructive-button-color: rgba(0, 0, 0, 0.1);
  --destructive-button-active-color: rgb(234, 77, 63);
  --dark-text-button-color: rgba(0, 0, 0, 0.7);
  --light-text-button-color: #fff;
  --positive-button-active-transparent-color: rgba(76, 132, 255, 0.1);
  --negative-button-active-transparent-color: rgba(0, 0, 0, 0.1);
  --destructive-button-active-transparent-color: rgba(234, 77, 63, 0.1);
  --payment-button-color: var(--money-color);
  --payment-button-active-transparent-color: rgba(var(--money-color-rgb), 0.1);

  /* BUTTON */

  /* CARD */
  --drop-shadow-stronger:
    0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  --card-background-color: white;
  --drop-shadow-primary: 0 1px 2px rgba(0, 0, 0, 0.16);
  /* CARD */

  --primary-text-color: rgba(0, 0, 0, 0.8);
  --label-color-general: rgba(0, 0, 0, 0.9);

  /* NOTIFICATIONS */
  --success-color-rgb: 32, 190, 167; /*#20BEA7*/
  --success-color: rgb(var(--success-color-rgb));
  --warning-color-rgb: 250, 190, 37; /*FABE25*/
  --warning-color: rgb(var(--warning-color-rgb));
  /* NOTIFICATIONS */

  /* CALENDAR */
  --resource-block-color: var(--primary-color);
  --calendar-border: 1px solid var(--table-border-color);
  /* CALENDAR */

  /* TABLE */
  --table-border-color: #dadada;
  --table-header-background: #f9f9f9;
  --group-header-row-background: rgb(237, 242, 255);
  --group-total-row-background: var(--group-header-row-background);
  --table-header-color: var(--label-color-general);
  --table-body-cell-color: #0c1821;
  --table-hovered-row-color: rgba(var(--warning-color-rgb), 0.4);

  --even-row-background: white;
  --odd-row-background: #f9f9f9;

  --table-base-error-background: rgba(235, 69, 90, 0.4);

  --table-last-selected-row-background: #fcecd8;
  /* TABLE */

  /* LIST */
  --list-even-color: #f9f9f9;
  --list-odd-color: #ffffff;
  --list-hover-color: var(--table-hovered-row-color);
  --list-marked-color: rgba(var(--secondary-color-rgb), 0.3);
  --list-primary-font-size: 14px;
  --list-secondary-font-size: 12px;
  --list-primary-font-color: var(--label-color-general);
  --list-secondary-font-color: var(--secondary-text-color);
  /* LIST */

  /* NAVIGATION */
  --nav-background-color: white;
  /* NAVIGATION */
}

/* DayPicker styles */

.rdp-table,
.rdp-month {
  border-spacing: 0 !important;
  -webkit-user-select: none;
  user-select: none;
  margin: 1rem;
}

.rdp-table *,
.rdp-month * {
  border-spacing: 0 !important;
}

.rdp-week {
  border-spacing: 0 !important;
}

.rdp-table td,
.rdp-table th {
  border: none !important;
}

.rdp-root {
  display: inline-block;
  width: 258px;
}

.rdp-months {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.rdp-nav_button {
  cursor: pointer;
  color: #8b9898;
  width: 1rem;
  height: 1rem;
  display: inline-flex;
  align-self: center;
  margin: 0px 1em;
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: center;
}
.rdp-nav_button:disabled {
  cursor: default;
  opacity: 0.5;
}

.rdp-nav_button:not(:disabled):hover {
  opacity: 0.8;
}

.rdp-range_middle {
  border-radius: 0px !important;
}

.rdp-nav_button_prev {
  left: 15px;
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAwCAYAAAB5R9gVAAAABGdBTUEAALGPC/xhBQAAAVVJREFUWAnN2G0KgjAYwPHpGfRkaZeqvgQaK+hY3SUHrk1YzNLay/OiEFp92I+/Mp2F2Mh2lLISWnflFjzH263RQjzMZ19wgs73ez0o1WmtW+dgA01VxrE3p6l2GLsnBy1VYQOtVSEH/atCCgqpQgKKqYIOiq2CBkqtggLKqQIKgqgCBjpJ2Y5CdJ+zrT9A7HHSTA1dxUdHgzCqJIEwq0SDsKsEg6iqBIEoq/wEcVRZBXFV+QJxV5mBtlDFB5VjYTaGZ2sf4R9PM7U9ZU+lLuaetPP/5Die3ToO1+u+MKtHs06qODB2zBnI/jBd4MPQm1VkY79Tb18gB+C62FdBFsZR6yeIo1YQiLJWMIiqVjQIu1YSCLNWFgijVjYIuhYYCKoWKAiiFgoopxYaKLUWOii2FgkophYp6F3r42W5A9s9OcgNvva8xQaysKXlFytoqdYmQH6tF3toSUo0INq9AAAAAElFTkSuQmCC');
}

.rdp-nav_button_next {
  right: 15px;
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAwCAYAAAB5R9gVAAAABGdBTUEAALGPC/xhBQAAAXRJREFUWAnN119ugjAcwPHWzJ1gnmxzB/BBE0n24m4xfNkTaOL7wOtsl3AXMMb+Vjaa1BG00N8fSEibPpAP3xAKKs2yjzTPH9RAjhEo9WzPr/Vm8zgE0+gXATAxxuxtqeJ9t5tIwv5AtQAApsfT6TPdbp+kUBcgVwvO51KqVhMkXKsVJFXrOkigVhCIs1Y4iKlWZxB1rX4gwlpRIIpa8SDkWmggrFq4IIRaJKCYWnSgnrXIQV1r8YD+1Vrn+bReagysIFfLABRt31v8oBu1xEBttfRbltmfjgEcWh9snUS2kNdBK6WN1vrOWxObWsz+fjxevsxmB1GQDfINWiev83nhaoiB/CoOU438oPrhXS0WpQ9xc1ZQWxWHqUYe0I0qrKCQKjygDlXIQV2r0IF6ViEBxVTBBSFUQQNhVYkHIVeJAtkNsbQ7c1LtzP6FsObhb2rCKv7NBIGoq4SDmKoEgTirXAcJVGkFSVVpgoSrXICGUMUH/QBZNSUy5XWUhwAAAABJRU5ErkJggg==');
}

/* TODO: [react-day-picker] style - disabled nav button */
.DayPicker-NavButton--interactionDisabled {
  display: none;
}

.rdp-caption,
.rdp-Caption {
  position: relative;
  z-index: 5;
  margin-bottom: 0px;
  text-align: center;
  align-self: center;
  margin: 1em auto auto;
}

.rdp-weekday {
  padding: 0.5rem !important;
  font-size: 0.875em;
  text-align: center;
  color: #8b9898;
  font-weight: normal;
}

.rdp-cell {
  text-align: center;
  padding: 0 !important;
}
.rdp-day {
  padding: 0rem !important;
  text-align: center;
  cursor: pointer;
  vertical-align: middle;
  outline: none;
  width: 100%;
}

.DayPicker-WeekNumber {
  display: table-cell;
  padding: 0.5rem !important;
  text-align: right;
  vertical-align: middle;
  min-width: 1rem;
  font-size: 0.75em;
  cursor: pointer;
  color: #8b9898;
  border-right: 1px solid #eaecec !important;
}

.DayPicker--interactionDisabled .rdp-day {
  cursor: default;
}

.DayPicker-Footer {
  padding-top: 0.5rem;
}

.DayPicker-TodayButton {
  border: none !important;
  background-image: none;
  background-color: transparent;
  box-shadow: none;
  cursor: pointer;
  color: #4a90e2;
  font-size: 0.875em;
}

/* Default modifiers */

.rdp-day_button {
  padding: 0.5rem !important;
}

.rdp-today {
  color: #d0021b;
  font-weight: bold;
}

.rdp-outside {
  cursor: default;
  color: #8b9898;
}

.rdp-disabled {
  color: #dce0e0;
  cursor: default;
  /* background-color: #eff1f1; */
}

/* Example modifiers */

.rdp-day_sunday {
  background-color: #f7f8f8;
}

.rdp-day_sunday:not(.rdp-today) {
  color: #dce0e0;
}

.rdp-selected:not(.rdp-disabled):not(.rdp-outside):hover {
  background-color: rgba(var(--primary-color-rgb), 0.8);
}
.rdp-range_start {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.rdp-range_end {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.rdp-range_start.rdp-range_end {
  border-radius: 100% !important;
}

.rdp-selected:not(.rdp-disabled):not(.rdp-outside) {
  position: relative;
  color: #f0f8ff;
  background-color: rgb(var(--primary-color-rgb));
}
.rdp-selected:not(.rdp-disabled):not(.rdp-outside):not(.rdp-range_middle) {
  border-radius: 100%;
}

/* TODO: [react-day-picker] styles what to do with --interactionDisabled */
.rdp-root:not(.rdp_interactionDisabled)
  .rdp-day:not(.rdp-disabled):not(.rdp-selected):not(.rdp-outside):hover {
  background-color: rgba(var(--primary-color-rgb), 0.2);
  border-radius: 50% !important;
}

/* DayPickerInput */

.DayPickerInput {
  display: inline-block;
}

.DayPickerInput-OverlayWrapper {
  position: relative;
}
.DayPickerInput-OverlayWrapper-Modal {
  z-index: 999;
  position: fixed;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.DayPickerInput-Overlay {
  left: 0;
  z-index: 4;
  position: absolute;
  background: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}
.DayPickerInput-Overlay-Modal {
  position: relative;
  z-index: 4;
  background: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  margin: auto;
}

.DayPickerInput-Overlay-Up {
  left: 0;
  top: auto;
  bottom: 35px;
  z-index: 3;
  position: absolute;
  background: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}
