:root {
  --primary-color: #69B264;
  --primary-color-rgb: 105, 178, 100;
  --primary-color-light: #3888AD;
  --primary-color-light-rgb: 56, 136, 173;
  --secondary-color: #1B4A5F;
  --secondary-color-rgb: 27, 74, 95;
  --secondary-color-light: #E8EDEF;
  --secondary-color-light-rgb: 232, 237, 239;
  --default-primary-color: #69B264;
  --default-primary-color-rgb: 105, 178, 100;
  --default-primary-color-light: #3888AD;
  --default-primary-color-light-rgb: 56, 136, 173;
  --default-secondary-color: #1B4A5F;
  --default-secondary-color-rgb: 27, 74, 95;
  --default-secondary-color-light: #E8EDEF;
  --default-secondary-color-light-rgb: 232, 237, 239;
  --error-color: #9B3159;
  --error-color-light-rgb: 176, 0, 32;
  --error-color-light: #B00020;
  --error-color-background: #EBD6DE;
}.icon--fix-fill {
  fill: none;
}.table-header {
  text-decoration: underline;
}.tooltip {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.tooltip__title {
  position: absolute;
  border-radius: 4px;
  padding: 10px 20px;
  min-width: 150px;
  background: rgba(var(--secondary-color-rgb), 0.85);
}
.tooltip__title.solid {
  background: var(--secondary-color);
}
.tooltip__title {
  pointer-events: none;
  -webkit-user-select: none; /* Chrome all / Safari all */
  -moz-user-select: none; /* Firefox all */
  -ms-user-select: none; /* IE 10+ */
  user-select: none; /* Likely future */
}
.tooltip__title:not(.is-visible) {
  display: none;
  opacity: 0;
}
.tooltip__title--text {
  text-align: center;
  font-size: 13px;
  line-height: 18px;
  color: white;
}
.tooltip.top > .tooltip__title {
  left: 50%;
  transform: translateX(-50%);
}
.tooltip.top > .tooltip__title.is-arrow-visible::after {
  content: "";
  position: absolute;
  border-width: 8px;
  border-style: solid;
  border-color: transparent transparent transparent transparent;
  margin-left: -8px;
  top: 100%;
  left: 50%;
  border-top-color: rgba(var(--secondary-color-rgb), 0.85);
}
.tooltip.top > .tooltip__title.is-arrow-visible.solid::after {
  border-top-color: var(--secondary-color);
}
.tooltip.top > .tooltip__title {
  bottom: calc(100% + 8px);
}
.tooltip.bottom > .tooltip__title {
  left: 50%;
  transform: translateX(-50%);
}
.tooltip.bottom > .tooltip__title.is-arrow-visible::after {
  content: "";
  position: absolute;
  border-width: 8px;
  border-style: solid;
  border-color: transparent transparent transparent transparent;
  margin-left: -8px;
  bottom: 100%;
  left: 50%;
  border-bottom-color: rgba(var(--secondary-color-rgb), 0.85);
}
.tooltip.bottom > .tooltip__title.is-arrow-visible.solid::after {
  border-bottom-color: var(--secondary-color);
}
.tooltip.bottom > .tooltip__title {
  top: calc(100% + 8px);
}
.tooltip.left > .tooltip__title {
  top: 50%;
  transform: translateY(-50%);
}
.tooltip.left > .tooltip__title.is-arrow-visible::after {
  content: "";
  position: absolute;
  border-width: 8px;
  border-style: solid;
  border-color: transparent transparent transparent transparent;
  margin-top: -8px;
  top: 50%;
  left: 100%;
  border-left-color: rgba(var(--secondary-color-rgb), 0.85);
}
.tooltip.left > .tooltip__title.is-arrow-visible.solid::after {
  border-left-color: var(--secondary-color);
}
.tooltip.left > .tooltip__title {
  right: calc(100% + 8px);
}
.tooltip.right > .tooltip__title {
  top: 50%;
  transform: translateY(-50%);
}
.tooltip.right > .tooltip__title.is-arrow-visible::after {
  content: "";
  position: absolute;
  border-width: 8px;
  border-style: solid;
  border-color: transparent transparent transparent transparent;
  margin-top: -8px;
  top: 50%;
  right: 100%;
  border-right-color: rgba(var(--secondary-color-rgb), 0.85);
}
.tooltip.right > .tooltip__title.is-arrow-visible.solid::after {
  border-right-color: var(--secondary-color);
}
.tooltip.right > .tooltip__title {
  left: calc(100% + 8px);
}.typography {
  display: block;
  font-family: "Roboto Regular", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  color: var(--secondary-color);
}
.typography.bold {
  font-weight: 600;
}
.typography.is-clickable {
  cursor: pointer;
}.dialog {
  background: white;
  border-radius: 7px;
  margin: 32px;
  width: 100%;
}
.dialog.small {
  width: 400px;
}
.dialog.small-2 {
  width: 450px;
}
.dialog.medium {
  width: 500px;
}
.dialog.medium-2 {
  width: 540px;
}
.dialog.medium-2 > .dialog__content {
  padding-left: 20px;
  padding-right: 20px;
}
.dialog.large {
  width: 600px;
}
.dialog.large-2 {
  width: 900px;
}
.dialog__background {
  z-index: 2;
}
.dialog__background.white {
  background-color: rgba(255, 255, 255, 0.8);
}
.dialog__background.blank {
  background-color: unset;
}
.dialog__background.opacity {
  background-color: rgba(227, 227, 227, 0.7);
}
.dialog__content {
  padding: 16px 32px 8px 32px;
}
.dialog__footer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 32px 20px 32px;
}
.dialog__action.cancel.filled {
  color: white;
  background: var(--secondary-color);
  border-color: var(--secondary-color);
}
.dialog__action.cancel.filled > .button__icon {
  background: white;
}
.dialog__action.cancel.outlined {
  color: var(--secondary-color);
  background: none;
  border-color: var(--secondary-color);
}
.dialog__action.cancel.outlined > .button__icon {
  background: var(--secondary-color);
}
.dialog__action.cancel:disabled {
  color: white;
  background: #E3E3E3;
  border-color: #E3E3E3;
  cursor: not-allowed;
}
.dialog__action.cancel:disabled > .button__icon {
  background: #E3E3E3;
}
.dialog__action:not(:first-of-type) {
  margin-left: 18px;
}.button {
  height: 40px;
  min-width: 100px;
  box-sizing: border-box;
  border-width: 1px;
  border-style: solid;
  border-radius: 7px;
  font-family: "Roboto Regular", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
}
.button.filled {
  color: white;
  background: var(--primary-color);
  border-color: var(--primary-color);
}
.button.filled > .button__icon {
  background: white;
}
.button.outlined {
  color: var(--primary-color);
  background: none;
  border-color: var(--primary-color);
}
.button.outlined > .button__icon {
  background: var(--primary-color);
}
.button:disabled {
  color: white;
  background: #E3E3E3;
  border-color: #E3E3E3;
  cursor: not-allowed;
}
.button:disabled > .button__icon {
  background: #E3E3E3;
}
.button {
  -webkit-user-select: none; /* Chrome all / Safari all */
  -moz-user-select: none; /* Firefox all */
  -ms-user-select: none; /* IE 10+ */
  user-select: none; /* Likely future */
}
.button:not(:disabled):hover {
  filter: brightness(110%);
}
.button.has-icon {
  position: relative;
  padding-left: 36px;
}
.button__icon {
  position: absolute;
  left: 8px;
  width: 20px;
  height: 20px;
  padding: 4px;
  box-sizing: border-box;
  border-radius: 10px;
  fill: white;
}
.button:active {
  box-shadow: inset 2px 2px 6px rgba(0, 0, 0, 0.2);
}
.button:focus {
  outline: 0;
}.header {
  position: relative;
  height: 48px;
  background: var(--secondary-color);
  border-radius: 7px;
}
.header__title {
  line-height: 48px;
  font-size: 18px;
  text-align: center;
  color: white;
  padding: 0 32px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.header > .header__action {
  width: 32px;
  height: 32px;
  line-height: 32px;
  cursor: pointer;
  position: absolute;
  right: 16px;
  top: calc(50% - 16px);
  text-align: center;
  font-weight: 600;
}
.header > .header__action:hover {
  box-shadow: inset 2px 2px 6px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
}
.header > .header__action.left {
  right: unset;
  left: 16px;
}.close-button {
  width: 16px;
  height: 16px;
  color: white;
  background: none;
  border: none;
  transform: rotate(45deg);
  font-size: 28px;
  cursor: pointer;
}.icon-button {
  display: block;
  padding: 2px;
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  cursor: pointer;
}
.icon-button.is-disabled {
  cursor: not-allowed;
}
.icon-button.is-disabled > .icon-button__icon {
  fill: #D9DDE0;
}
.icon-button__icon {
  width: 16px;
  height: 16px;
  fill: var(--default-secondary-color);
}.modal__background {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(51, 51, 51, 0.8);
  z-index: 2;
}.dialog-notification-content__icon {
  margin: 4px auto 16px auto;
  text-align: center;
  display: block;
  width: 36px;
  height: 36px;
}
.dialog-notification-content__message {
  text-align: center;
  margin: 0 6px;
  font-size: 15px;
}
.dialog-notification-content__message:first-child:not(:last-of-type) {
  margin-bottom: 16px;
}
.dialog-notification-content__message:last-of-type:not(:first-of-type) {
  margin-bottom: 8px;
}.text-content__text.left {
  text-align: left;
}
.text-content__text.right {
  text-align: right;
}
.text-content__text.center {
  text-align: center;
}
.text-content__text:not(:first-of-type) {
  margin-top: 16px;
}.loader__icon {
  position: relative;
  display: block;
  margin: 0 auto;
  width: 1em;
  height: 1em;
  font-size: 150px;
}
.loader__icon::after, .loader__icon::before {
  content: "";
  position: absolute;
  top: 13%;
  left: 13%;
  right: 13%;
  bottom: 13%;
  border-radius: 50%;
  width: 74%;
  height: 74%;
  background: rgba(0, 0, 0, 0.3);
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-animation: scale 2s cubic-bezier(0.1, 0.2, 0.3, 1) infinite;
  animation: scale 2s cubic-bezier(0.1, 0.2, 0.3, 1) infinite;
}
.loader__icon::after {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
.loader__title {
  display: block;
  text-align: center;
  line-height: 1.2;
}

@-webkit-keyframes scale {
  0% {
    opacity: 1;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  90% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes scale {
  0% {
    opacity: 1;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  90% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}.modal-loader__background {
  background-color: rgba(255, 255, 255, 0.8);
}.snackbar {
  display: flex;
  align-items: center;
  padding: 16px 36px 16px 16px;
  border-radius: 5px;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
  position: absolute;
  bottom: 36px;
}
.snackbar.small {
  width: 250px;
  left: calc(50% - 125px);
}
.snackbar.info {
  background-color: rgba(var(--primary-color-rgb), 0.8);
}
.snackbar.error {
  background-color: rgba(176, 0, 32, 0.8);
}
.snackbar__icon {
  width: 48px;
  height: 48px;
  fill: white;
}
.snackbar__text {
  color: white;
  font-size: 16px;
  margin-left: 16px;
}
.snackbar__close {
  position: absolute;
  right: 4px;
  top: 8px;
}.check-box {
  display: inline-block;
  position: relative;
}
.check-box.is-disabled {
  opacity: 0.4;
  pointer-events: none;
}
.check-box.is-checked .check-box__icon {
  background-color: var(--default-secondary-color);
  background-image: url("data:image/svg+xml,%3csvg%20width='12'%20height='9'%20viewBox='0%200%2012%209'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M0%204.26693C0.537849%203.78884%201.0757%203.32271%201.6255%202.84462C2.31873%203.62151%203%204.41036%203.68128%205.18725C5.65339%203.45418%207.6255%201.73307%209.59761%200C10.0757%200.549801%2010.5538%201.0996%2011.0438%201.6494C8.53386%203.86056%206.0239%206.05976%203.51394%208.25896C2.34263%206.93227%201.17131%205.60558%200%204.26693Z'%20fill='white'/%3e%3c/svg%3e");
  background-size: 90%;
  background-repeat: no-repeat;
  background-position: center;
}
.check-box__icon {
  margin-right: 8px;
  width: 1em;
  height: 1em;
  border: 1px solid var(--default-secondary-color);
  background-color: unset;
  box-sizing: border-box;
  border-radius: 18.75%;
}
.check-box input[type=checkbox] {
  display: none;
}
.check-box__label-wrap {
  cursor: pointer;
  display: flex;
  align-items: center;
  position: relative;
}
.check-box__label {
  color: var(--secondary-color);
  font-weight: normal;
  font-size: 14px;
  -webkit-user-select: none; /* Chrome all / Safari all */
  -moz-user-select: none; /* Firefox all */
  -ms-user-select: none; /* IE 10+ */
  user-select: none; /* Likely future */
}

/* @supports (accent-color: var(--default-secondary-color)) {
    .check-box input[type=checkbox] {
        display: initial;
        min-width: 1em;
        min-height: 1em;
        accent-color: var(--default-secondary-color);
        margin-right: 8px;
    }

    .check-box__icon {
        display: none;
    }
} */.base-form {
  position: relative;
}
.base-form__close {
  position: absolute;
  right: -20px;
  top: -4px;
  z-index: 1;
}
.base-form__button {
  width: 100%;
  margin-top: 12px;
}.input-button {
  padding: 0 16px;
  height: 40px;
  width: 100%;
  background: initial;
  border-color: var(--secondary-color);
  border-width: 1px;
  border-style: solid;
  box-sizing: border-box;
  border-radius: 7px;
}
.input-button:focus {
  outline: none;
  background: var(--default-secondary-color-light);
  border-color: var(--default-primary-color-light);
}
.input-button.error {
  border-color: var(--error-color);
  background-color: var(--error-color-background);
}
.input-button[disabled] {
  background: #E3E3E3;
  cursor: not-allowed;
}
.input-button {
  border-radius: 0px 7px 7px 0px;
  border-left: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: unset;
  width: 40px;
  height: 40px;
  cursor: pointer;
  float: right;
}
.input-button.type-1 {
  background: var(--default-secondary-color);
}
.input-button.type-1 > .input-button__span {
  background: var(--default-secondary-color);
}
.input-button.type-1 > .input-button__icon {
  fill: white;
  width: 16px;
  height: 16px;
}
.input-button.type-1:hover {
  background: var(--default-primary-color-light);
  border-color: var(--default-primary-color-light);
}
.input-button.type-1:hover > .input-button__span {
  background: var(--default-primary-color-light);
}
.input-button.type-1.is-disabled {
  background: var(--default-secondary-color-light);
  border-color: var(--default-primary-color-light);
}
.input-button.type-1.is-disabled > .input-button__icon {
  fill: var(--default-primary-color-light);
}
.input-button.type-1.is-disabled > .input-button__span {
  background: var(--default-primary-color-light);
}
.input-button.type-1.error {
  background: var(--default-secondary-color);
}
.input-button.type-2:not(.error) {
  background: var(--default-secondary-color-light);
  border-color: var(--default-primary-color-light);
}
.input-button.type-2 > .input-button__span {
  background: var(--default-primary-color-light);
}
.input-button.type-2 > .input-button__icon {
  fill: var(--default-secondary-color-light);
  width: 20px;
  height: 20px;
}
.input-button__span {
  position: absolute;
  left: 0;
  top: 3px;
  bottom: 3px;
  width: 1px;
}
.input-button.is-disabled {
  cursor: not-allowed;
}.input-wrapper {
  position: relative;
  padding: 20px 0;
}
.input-wrapper:not(.with-label) {
  padding-top: unset;
}
.input-wrapper.block-hint {
  padding-bottom: 0;
}
.input-wrapper.block-hint:not(.with-hint) {
  padding-bottom: 20px;
}
.input-wrapper.block-hint > .input-wrapper__text.hint {
  position: unset;
  top: unset;
  left: unset;
  padding: 2px 0 0 5px;
}
.input-wrapper__text {
  font-size: 12px;
  line-height: 14px;
}
.input-wrapper__text.label {
  position: absolute;
  top: 2px;
  left: 5px;
}
.input-wrapper__text.hint {
  position: absolute;
  top: calc(100% + -20px + 2px);
  left: 5px;
}
.input-wrapper__text.hint-2 {
  position: absolute;
  top: calc(100% + -20px + 2px);
  right: 5px;
}
.input-wrapper__clear {
  display: none;
  opacity: 0;
  width: 12px;
  height: 12px;
  position: absolute;
  right: -20px;
  top: calc(50% - 6px);
  cursor: pointer;
}
.input-wrapper.error > .input-wrapper__text.hint {
  color: var(--error-color);
}
.input-wrapper.error > .input-wrapper__clear {
  display: block;
  opacity: 1;
  fill: var(--error-color);
}.autocomplete-drop-down {
  display: none;
  opacity: 0;
  position: fixed;
  background: white;
  border: 1px solid #E3E3E3;
  box-sizing: border-box;
  z-index: 1;
  max-height: 300px;
  overflow-y: auto;
}
.autocomplete-drop-down.is-open {
  display: block;
  opacity: 1;
}
.autocomplete-drop-down.is-open.reverse {
  display: flex;
  flex-direction: column-reverse;
}.masked-password-input {
  position: relative;
}
.masked-password-input input.has-password-action {
  padding: 0 16px;
  height: 40px;
  width: 100%;
  background: initial;
  border-color: var(--secondary-color);
  border-width: 1px;
  border-style: solid;
  box-sizing: border-box;
  border-radius: 7px;
}
.masked-password-input input.has-password-action:focus {
  outline: none;
  background: var(--default-secondary-color-light);
  border-color: var(--default-primary-color-light);
}
.masked-password-input input.has-password-action.error {
  border-color: var(--error-color);
  background-color: var(--error-color-background);
}
.masked-password-input input.has-password-action[disabled] {
  background: #E3E3E3;
  cursor: not-allowed;
}
.masked-password-input input.has-password-action {
  border-radius: 7px 0px 0px 7px;
  border-right: none;
  width: calc(100% - 40px);
}
.masked-password-input input.has-password-action:not(:focus) + .input-button:not(.error) {
  background: white;
  border-color: var(--secondary-color);
}
.masked-password-input input:not(.has-password-action) {
  padding: 0 16px;
  height: 40px;
  width: 100%;
  background: initial;
  border-color: var(--secondary-color);
  border-width: 1px;
  border-style: solid;
  box-sizing: border-box;
  border-radius: 7px;
}
.masked-password-input input:not(.has-password-action):focus {
  outline: none;
  background: var(--default-secondary-color-light);
  border-color: var(--default-primary-color-light);
}
.masked-password-input input:not(.has-password-action).error {
  border-color: var(--error-color);
  background-color: var(--error-color-background);
}
.masked-password-input input:not(.has-password-action)[disabled] {
  background: #E3E3E3;
  cursor: not-allowed;
}.password-input {
  position: relative;
}
.password-input input.has-password-action {
  padding: 0 16px;
  height: 40px;
  width: 100%;
  background: initial;
  border-color: var(--secondary-color);
  border-width: 1px;
  border-style: solid;
  box-sizing: border-box;
  border-radius: 7px;
}
.password-input input.has-password-action:focus {
  outline: none;
  background: var(--default-secondary-color-light);
  border-color: var(--default-primary-color-light);
}
.password-input input.has-password-action.error {
  border-color: var(--error-color);
  background-color: var(--error-color-background);
}
.password-input input.has-password-action[disabled] {
  background: #E3E3E3;
  cursor: not-allowed;
}
.password-input input.has-password-action {
  border-radius: 7px 0px 0px 7px;
  border-right: none;
  width: calc(100% - 40px);
}
.password-input input.has-password-action:not(:focus) + .input-button:not(.error) {
  background: white;
  border-color: var(--secondary-color);
}
.password-input input.has-password-action:not(:focus):disabled + .input-button {
  background: #E3E3E3;
}
.password-input input:not(.has-password-action) {
  padding: 0 16px;
  height: 40px;
  width: 100%;
  background: initial;
  border-color: var(--secondary-color);
  border-width: 1px;
  border-style: solid;
  box-sizing: border-box;
  border-radius: 7px;
}
.password-input input:not(.has-password-action):focus {
  outline: none;
  background: var(--default-secondary-color-light);
  border-color: var(--default-primary-color-light);
}
.password-input input:not(.has-password-action).error {
  border-color: var(--error-color);
  background-color: var(--error-color-background);
}
.password-input input:not(.has-password-action)[disabled] {
  background: #E3E3E3;
  cursor: not-allowed;
}.text-input {
  position: relative;
}
.text-input input.has-search-action,
.text-input textarea.has-search-action {
  padding: 0 16px;
  height: 40px;
  width: 100%;
  background: initial;
  border-color: var(--secondary-color);
  border-width: 1px;
  border-style: solid;
  box-sizing: border-box;
  border-radius: 7px;
}
.text-input input.has-search-action:focus,
.text-input textarea.has-search-action:focus {
  outline: none;
  background: var(--default-secondary-color-light);
  border-color: var(--default-primary-color-light);
}
.text-input input.has-search-action.error,
.text-input textarea.has-search-action.error {
  border-color: var(--error-color);
  background-color: var(--error-color-background);
}
.text-input input.has-search-action[disabled],
.text-input textarea.has-search-action[disabled] {
  background: #E3E3E3;
  cursor: not-allowed;
}
.text-input input.has-search-action,
.text-input textarea.has-search-action {
  border-radius: 7px 0px 0px 7px;
  border-right: none;
  width: calc(100% - 40px);
}
.text-input input.has-search-action:not(:focus),
.text-input textarea.has-search-action:not(:focus) {
  background: white;
}
.text-input input.has-search-action:not(:focus).error,
.text-input textarea.has-search-action:not(:focus).error {
  background-color: var(--error-color-background);
}
.text-input input.has-search-action:not(:focus) + .input-button,
.text-input textarea.has-search-action:not(:focus) + .input-button {
  border-color: var(--secondary-color);
}
.text-input input.has-search-action:not(:focus) + .input-button.error,
.text-input textarea.has-search-action:not(:focus) + .input-button.error {
  border-color: var(--error-color);
}
.text-input input.has-search-action:not(:focus) + .input-button.is-disabled,
.text-input textarea.has-search-action:not(:focus) + .input-button.is-disabled {
  background: white;
}
.text-input input.has-search-action:not(:focus) + .input-button.is-disabled > .input-button__span,
.text-input textarea.has-search-action:not(:focus) + .input-button.is-disabled > .input-button__span {
  background: #E3E3E3;
}
.text-input input.has-search-action:not(:focus) + .input-button.is-disabled > .input-button__icon,
.text-input textarea.has-search-action:not(:focus) + .input-button.is-disabled > .input-button__icon {
  fill: #E3E3E3;
}
.text-input input:not(.has-search-action):not(.has-password-action),
.text-input textarea:not(.has-search-action):not(.has-password-action) {
  padding: 0 16px;
  height: 40px;
  width: 100%;
  background: initial;
  border-color: var(--secondary-color);
  border-width: 1px;
  border-style: solid;
  box-sizing: border-box;
  border-radius: 7px;
}
.text-input input:not(.has-search-action):not(.has-password-action):focus,
.text-input textarea:not(.has-search-action):not(.has-password-action):focus {
  outline: none;
  background: var(--default-secondary-color-light);
  border-color: var(--default-primary-color-light);
}
.text-input input:not(.has-search-action):not(.has-password-action).error,
.text-input textarea:not(.has-search-action):not(.has-password-action).error {
  border-color: var(--error-color);
  background-color: var(--error-color-background);
}
.text-input input:not(.has-search-action):not(.has-password-action)[disabled],
.text-input textarea:not(.has-search-action):not(.has-password-action)[disabled] {
  background: #E3E3E3;
  cursor: not-allowed;
}
.text-input textarea {
  resize: none;
  height: unset !important;
  padding: 10px 16px !important;
}@supports not (accent-color: var(--secondary-color)) {
  .radio-button {
    display: inline-block;
    position: relative;
  }
  .radio-button.is-disabled {
    opacity: 0.4;
    pointer-events: none;
  }
  .radio-button input[type=radio]:checked + label:after {
    content: " ";
    display: block;
    position: absolute;
    width: 0.9em;
    height: 0.9em;
    margin: 0.3em;
    border-radius: 50%;
    background-color: var(--secondary-color);
  }
  .radio-button label::before {
    content: " ";
    display: block;
    margin-right: 5px;
    box-sizing: border-box;
    width: 1.5em;
    height: 1.5em;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    background-color: transparent;
  }
  .radio-button input[type=radio] {
    position: absolute;
    z-index: -1;
    opacity: 0;
  }
  .radio-button__label {
    cursor: pointer;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--secondary-color);
    font-weight: normal;
    font-size: 14px;
  }
}
@supports (accent-color: var(--secondary-color)) {
  .radio-button {
    display: flex;
  }
  .radio-button.is-disabled > .radio-button__label {
    opacity: 0.4;
  }
  .radio-button input[type=radio] {
    accent-color: var(--secondary-color);
    width: 1.5em;
    height: 1.5em;
    margin: unset;
    margin-right: 5px;
  }
  .radio-button__label {
    color: var(--secondary-color);
    font-weight: normal;
    font-size: 14px;
    line-height: 1.5em;
  }
}.drop-down {
  height: 40px;
}
.drop-down__triangle-indicator {
  font-size: 24px;
}
.drop-down__control {
  height: 40px;
}
.drop-down__control:hover {
  border-color: var(--secondary-color) !important;
}
.drop-down__control--is-focused {
  background: var(--default-secondary-color-light) !important;
}
.drop-down__control--is-disabled {
  cursor: not-allowed !important;
  background-color: #E3E3E3 !important;
  opacity: 0.7 !important;
}/* The switch - the box around the slider */
.switch {
  display: flex;
  align-items: center;
}
.switch__container {
  position: relative;
  display: inline-block;
  width: 50px;
  min-width: 50px;
  height: 30px;
}
.switch__label {
  display: inline-block;
}
.switch--input-before {
  justify-content: flex-end;
  flex-direction: row-reverse;
}
.switch--input-after {
  justify-content: flex-start;
}
.switch--input-before .switch__label {
  margin-left: 30px;
}
.switch--input-after .switch__label {
  margin-right: 30px;
}
.switch {
  /* The slider */
}
.switch__slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #E3E3E3;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border: 1px solid #D9DDE0;
}
.switch__slider::before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 1px;
  bottom: 1px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.25);
}
.switch__slider {
  /* Rounded sliders */
}
.switch__slider.round {
  border-radius: 34px;
}
.switch__slider.round::before {
  border-radius: 50%;
}
.switch {
  /* Hide default HTML checkbox */
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.switch input:checked + .switch__slider {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.switch input:checked + .switch__slider::before {
  -webkit-transform: translateX(20px);
  -ms-transform: translateX(20px);
  transform: translateX(20px);
  box-shadow: -2px 2px 2px rgba(0, 0, 0, 0.25);
}
.switch input:focus + .switch__slider {
  box-shadow: 0 0 1px var(--primary-color);
}
.switch input:disabled + .switch__slider {
  background-color: #E3E3E3;
  border-color: #E3E3E3;
}.tree {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tree:not(.is-root) {
  padding-left: 40px;
}

.list-item-button {
  padding: 7px;
  cursor: pointer;
  display: flex;
  width: 100%;
  align-items: center;
}
.list-item-button:hover {
  background-color: #DDD;
}
.list-item-button.is-selected {
  background-color: var(--default-primary-color-light);
  color: white;
}
.list-item-button.has-selected-child > span {
  background-color: rgba(var(--default-primary-color-light-rgb), 0.3);
}

.hidden {
  display: none;
}

.arrow {
  margin-right: 10px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}
.arrow.right {
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 10px solid #858585;
}
.arrow.down {
  border-top: 10px solid #858585;
}.list-item {
  display: flex;
  flex-wrap: wrap;
}
.list-item:not(:first-of-type) {
  margin-top: 8px;
}
.list-item {
  position: relative;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(var(--secondary-color-rgb), 0.3);
  box-sizing: border-box;
  box-shadow: 0px 0px 4px rgba(146, 205, 234, 0.25);
  border-radius: 7px;
}
.list-item.is-active {
  border-color: var(--default-primary-color-light);
}
.list-item__actions {
  position: absolute;
  right: 8px;
  top: 8px;
  display: flex;
  align-items: center;
  z-index: 1;
}
.list-item__action:not(:first-of-type) {
  margin-left: 10px;
}
.list-item__left {
  display: inline-block;
  box-sizing: content-box;
  padding: 10px 24px 10px 24px;
  flex-basis: 240px;
  min-width: 240px;
}
.list-item__right {
  display: inline-block;
  box-sizing: content-box;
  padding: 10px 8px 10px 12px;
  flex: 1 1 0;
}.list-wrapper {
  display: flex;
  flex-direction: column;
  margin-right: 6px;
  max-height: 100%;
  position: relative;
}
.list-wrapper__header {
  display: flex;
  margin-bottom: 16px;
  padding-right: 10px;
}
.list-wrapper__title {
  font-size: 15px;
  font-family: "Roboto Medium", sans-serif;
  line-height: 16px;
  text-align: center;
  text-transform: uppercase;
}
.list-wrapper__title.first-column {
  width: 300px;
}
.list-wrapper__title.second-column {
  width: calc(100% - 300px);
}
.list-wrapper__list {
  overflow-y: auto;
  padding-right: 10px;
}
@supports (overflow-y: overlay) {
  .list-wrapper__list {
    overflow-y: overlay;
  }
}
.list-wrapper__footer {
  position: absolute;
  top: 100%;
  margin-top: 16px;
  z-index: 1;
}.step-item {
  background: #D9DDE0;
  border-radius: 20px;
  width: 113px;
  min-width: 113px;
  margin: 0 1px;
}
.step-item__content {
  text-align: center;
  padding: 4px 2px;
  -webkit-user-select: none; /* Chrome all / Safari all */
  -moz-user-select: none; /* Firefox all */
  -ms-user-select: none; /* IE 10+ */
  user-select: none; /* Likely future */
}
.step-item__title, .step-item__subtitle {
  color: inherit;
  font-size: 12px;
  line-height: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.step-item__title {
  font-family: "Roboto Bold", sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.step-item:not(.completed):not(.active) {
  color: var(--primary-color);
  box-shadow: 1px 0 2px rgba(var(--primary-color-rgb), 0.5);
}
.step-item.completed {
  cursor: pointer;
  color: white;
  background-color: transparent;
}
.step-item.active {
  color: white;
  background-color: var(--primary-color);
}.stepper {
  display: inline-block;
}
.stepper__background {
  display: flex;
  background: #D9DDE0;
  border-radius: 20px;
}
.stepper__background.completed {
  background-color: rgba(var(--primary-color-rgb), 0.7);
}.tabs-view__list {
  display: flex;
  flex-direction: row;
  margin-bottom: 20px;
}
.tabs-view__item {
  flex: 1 1 0;
  cursor: pointer;
  height: 40px;
  margin-top: 2px;
  background: rgba(var(--secondary-color-rgb), 0.1);
  border: none;
}
.tabs-view__item:hover {
  background-color: #DDD;
}
.tabs-view__item.is-active {
  height: 42px;
  margin-top: 0px;
  background: white;
  box-shadow: 1px -1px 2px rgba(var(--secondary-color-rgb), 0.15);
  border-radius: 0px 3px 0px 0px;
}
.tabs-view__item-title {
  color: unset;
  font-size: 15px;
}.color-item {
  display: inline-block;
}
.color-item:not(:first-of-type) {
  margin-left: 24px;
}
.color-item__box {
  width: 128px;
  height: 64px;
  border-radius: 8px;
}
.color-item__box.primary {
  background-color: var(--primary-color);
}
.color-item__box.primary-light {
  background-color: var(--primary-color-light);
}
.color-item__box.secondary {
  background-color: var(--secondary-color);
}
.color-item__box.secondary-light {
  background-color: var(--secondary-color-light);
}
.color-item__box.error {
  background-color: var(--error-color);
}
.color-item__box.error-light {
  background-color: var(--error-color-light);
}
.color-item__box.error-background {
  background-color: var(--error-color-background);
}.colors-group__title {
  font-size: 18px;
}
.colors-group:not(:last-of-type) {
  margin-bottom: 16px;
}.app-bar {
  position: relative;
  height: 200px;
  background: var(--secondary-color);
  border-radius: 0px 0px 16px 16px;
  padding-right: 232px;
}
.app-bar:not(.has-logo) {
  padding-left: 232px;
}
.app-bar__content {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 128px;
}
.app-bar__logo {
  margin-left: 40px;
  margin-right: 46px;
  min-width: 146px;
  width: 146px;
}
.app-bar__title {
  color: white;
  font-size: 30px;
  line-height: 35px;
  margin: 0 auto;
}
.app-bar__close {
  position: absolute;
  right: 16px;
  top: 16px;
}.card {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  background: white;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
  border-radius: 7px;
}
.card.is-clickable {
  cursor: pointer;
}
.card.has-border {
  border: 2px solid var(--secondary-color);
}
.card.has-border.is-clickable:hover {
  border-color: var(--primary-color-light);
}.divider {
  margin: 1em 0;
  height: 1px;
  background: var(--secondary-color);
}