@charset "UTF-8";
.hideOff {
  display: none; }

.nice-select {
  -webkit-tap-highlight-color: transparent;
  background-color: #fff;
  border-radius: 5px;
  border: solid 1px #e8e8e8;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-family: inherit;
  font-size: 14px;
  font-weight: normal;
  height: 42px;
  line-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 30px;
  position: relative;
  text-align: left !important;
  transition: all 0.2s ease-in-out;
  -moz-user-select: none;
  user-select: none;
  white-space: nowrap;
  width: auto; }

.nice-select:hover {
  border-color: #dbdbdb; }

.nice-select:active, .nice-select.open, .nice-select:focus {
  border-color: #999; }

.nice-select:after {
  border-bottom: 2px solid #999;
  border-right: 2px solid #999;
  content: '';
  display: block;
  height: 5px;
  margin-top: -4px;
  pointer-events: none;
  position: absolute;
  right: 12px;
  top: 50%;
  transform-origin: 66% 66%;
  transform: rotate(45deg);
  transition: all 0.15s ease-in-out;
  width: 5px; }

.nice-select.open:after {
  transform: rotate(-135deg); }

.nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0); }

.nice-select.disabled {
  border-color: #ededed;
  color: #999;
  pointer-events: none; }

.nice-select.disabled:after {
  border-color: #cccccc; }

.nice-select.wide {
  width: 100%; }

.nice-select.wide .list {
  left: 0 !important;
  right: 0 !important; }

.nice-select.right {
  float: right; }

.nice-select.right .list {
  left: auto;
  right: 0; }

.nice-select.small {
  font-size: 12px;
  height: 36px;
  line-height: 34px; }

.nice-select.small:after {
  height: 4px;
  width: 4px; }

.nice-select.small .option {
  line-height: 34px;
  min-height: 34px; }

.nice-select .list {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  box-sizing: border-box;
  margin-top: 4px;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  transform-origin: 50% 0;
  transform: scale(0.75) translateY(-21px);
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9; }

.nice-select .list:hover .option:not(:hover) {
  background-color: transparent !important; }

.nice-select .option {
  cursor: pointer;
  font-weight: 400;
  line-height: 40px;
  list-style: none;
  min-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 29px;
  text-align: left;
  transition: all 0.2s; }

.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
  background-color: #f6f6f6; }

.nice-select .option.selected {
  font-weight: bold; }

.nice-select .option.disabled {
  background-color: transparent;
  color: #999;
  cursor: default; }

.no-csspointerevents .nice-select .list {
  display: none; }

.no-csspointerevents .nice-select.open .list {
  display: block; }

.tooltipster-fall, .tooltipster-grow.tooltipster-show {
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15); }

.tooltipster-base {
  display: flex;
  pointer-events: none;
  position: absolute; }

.tooltipster-box {
  flex: 1 1 auto; }

.tooltipster-content {
  box-sizing: border-box;
  max-height: 100%;
  max-width: 100%;
  overflow: auto; }

.tooltipster-ruler {
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: fixed;
  right: 0;
  top: 0;
  visibility: hidden; }

.tooltipster-fade {
  opacity: 0;
  transition-property: opacity; }

.tooltipster-fade.tooltipster-show {
  opacity: 1; }

.tooltipster-grow {
  transform: scale(0, 0);
  transition-property: transform;
  -webkit-backface-visibility: hidden; }

.tooltipster-grow.tooltipster-show {
  transform: scale(1, 1);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15); }

.tooltipster-swing {
  opacity: 0;
  transform: rotateZ(4deg);
  transition-property: transform; }

.tooltipster-swing.tooltipster-show {
  opacity: 1;
  transform: rotateZ(0);
  transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4); }

.tooltipster-fall {
  transition-property: top;
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15); }

.tooltipster-fall.tooltipster-initial {
  top: 0 !important; }

.tooltipster-fall.tooltipster-dying {
  transition-property: all;
  top: 0 !important;
  opacity: 0; }

.tooltipster-slide {
  transition-property: left;
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15); }

.tooltipster-slide.tooltipster-initial {
  left: -40px !important; }

.tooltipster-slide.tooltipster-dying {
  transition-property: all;
  left: 0 !important;
  opacity: 0; }

@keyframes tooltipster-fading {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

.tooltipster-update-fade {
  animation: tooltipster-fading .4s; }

@keyframes tooltipster-rotating {
  25% {
    transform: rotate(-2deg); }
  75% {
    transform: rotate(2deg); }
  100% {
    transform: rotate(0); } }

.tooltipster-update-rotate {
  animation: tooltipster-rotating .6s; }

@keyframes tooltipster-scaling {
  50% {
    transform: scale(1.1); }
  100% {
    transform: scale(1); } }

.tooltipster-update-scale {
  animation: tooltipster-scaling .6s; }

.tooltipster-sidetip .tooltipster-box {
  background: #565656;
  border: 2px solid #000;
  border-radius: 4px; }

.tooltipster-sidetip.tooltipster-bottom .tooltipster-box {
  margin-top: 8px; }

.tooltipster-sidetip.tooltipster-left .tooltipster-box {
  margin-right: 8px; }

.tooltipster-sidetip.tooltipster-right .tooltipster-box {
  margin-left: 8px; }

.tooltipster-sidetip.tooltipster-top .tooltipster-box {
  margin-bottom: 8px; }

.tooltipster-sidetip .tooltipster-content {
  color: #fff;
  line-height: 18px;
  padding: 6px 14px; }

.tooltipster-sidetip .tooltipster-arrow {
  overflow: hidden;
  position: absolute; }

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
  height: 10px;
  margin-left: -10px;
  top: 0;
  width: 20px; }

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow {
  height: 20px;
  margin-top: -10px;
  right: 0;
  top: 0;
  width: 10px; }

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow {
  height: 20px;
  margin-top: -10px;
  left: 0;
  top: 0;
  width: 10px; }

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow {
  bottom: 0;
  height: 10px;
  margin-left: -10px;
  width: 20px; }

.tooltipster-sidetip .tooltipster-arrow-background, .tooltipster-sidetip .tooltipster-arrow-border {
  height: 0;
  position: absolute;
  width: 0; }

.tooltipster-sidetip .tooltipster-arrow-background {
  border: 10px solid transparent; }

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background {
  border-bottom-color: #565656;
  left: 0;
  top: 3px; }

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background {
  border-left-color: #565656;
  left: -3px;
  top: 0; }

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background {
  border-right-color: #565656;
  left: 3px;
  top: 0; }

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background {
  border-top-color: #565656;
  left: 0;
  top: -3px; }

.tooltipster-sidetip .tooltipster-arrow-border {
  border: 10px solid transparent;
  left: 0;
  top: 0; }

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-border {
  border-bottom-color: #000; }

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-border {
  border-left-color: #000; }

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-border {
  border-right-color: #000; }

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border {
  border-top-color: #000; }

.tooltipster-sidetip .tooltipster-arrow-uncropped {
  position: relative; }

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-uncropped {
  top: -10px; }

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-uncropped {
  left: -10px; }

.donation-form .hide {
  display: none; }

.donation-form .inactive {
  border: 2px solid #c6c6c6;
  margin-bottom: calc(1.25em); }
  .donation-form .inactive .donation-form__step-header {
    background-color: #c6c6c6;
    border-bottom: 2px solid #ababab; }
  .donation-form .inactive .donation-form__step-main {
    padding-left: calc(4em); }
  .donation-form .inactive .donation-form__step-footer {
    display: none; }
  .donation-form .inactive .donation-form__btn-prev {
    display: inline-block;
    color: #fff; }
  .donation-form .inactive .donation-form__btn-prev.hide {
    display: none; }
  .donation-form .inactive .donation-form__field:not(:last-child) {
    margin-bottom: calc(1.5625em); }
  .donation-form .inactive .donation-form__field .input-field__label,
  .donation-form .inactive .donation-form__field .form_label {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: bold;
    color: #777; }
  .donation-form .inactive .donation-form__field .input-field__label-inactive {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: bold;
    color: #777;
    display: block; }
  .donation-form .inactive .donation-form__field .input-field__label-active {
    display: none; }
  .donation-form .inactive .donation-form__field .input-field__inputmoney {
    display: none; }
  .donation-form .inactive .donation-form__field .input-field__select,
  .donation-form .inactive .donation-form__field .form_input .input_select {
    display: none; }
  .donation-form .inactive .donation-form__field .input-field__text,
  .donation-form .inactive .donation-form__field .form_input .input_text {
    display: none; }
  .donation-form .inactive .donation-form__field .input-field__value {
    display: block;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: normal;
    color: #777; }
  .donation-form .inactive .donation-form__field .tooltip {
    display: none; }
  .donation-form .inactive .donation-form__field-tooltip {
    display: none; }
  .donation-form .inactive .donation-form__label {
    color: #777; }
  .donation-form .inactive .step-header__counter {
    background-color: #ababab;
    color: #fff; }
  .donation-form .inactive .step-header__title {
    color: #fff; }
  .donation-form .inactive .check__input {
    pointer-events: none; }
  .donation-form .inactive .check__box {
    pointer-events: none; }

#overlay_warning {
  background-color: rgba(0, 0, 0, 0.25); }
  #overlay_warning .modal-dialog {
    position: absolute;
    top: 40%;
    left: 50%;
    width: auto;
    transform: translate(-50%, -50%); }
    #overlay_warning .modal-dialog .modal-content {
      margin: 0; }
      #overlay_warning .modal-dialog .modal-content .modal-header,
      #overlay_warning .modal-dialog .modal-content .modal-footer {
        justify-content: center;
        text-align: center; }
      #overlay_warning .modal-dialog .modal-content .modal-body {
        text-align: center; }
        #overlay_warning .modal-dialog .modal-content .modal-body p {
          text-align: center; }
        #overlay_warning .modal-dialog .modal-content .modal-body p.specific {
          background-color: #f1f1f1;
          padding: 10px;
          margin: 0;
          font-weight: bold; }
    @media (min-width: 768px) {
      #overlay_warning .modal-dialog {
        width: 600px; } }

.donation-form__hr {
  margin: calc(1.875em) 0;
  height: 2px;
  width: 100%; }

.donation-form__add-person {
  position: relative;
  height: calc(1.875em);
  width: calc(1.875em);
  background-color: #462672;
  border-radius: 50%;
  flex: 0 0 1.875em; }
  .donation-form__add-person:before {
    content: "";
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    height: calc(0.25em);
    width: calc(1em);
    background-color: #fff;
    transform: translate(-50%, -50%); }
  .donation-form__add-person:after {
    content: "";
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    height: calc(0.25em);
    width: calc(1em);
    background-color: #fff;
    transform-origin: 50% 50%;
    transform: translate(-50%, -50%) rotate(90deg); }

.donation-form__add-person--minus:after {
  display: none; }

.donation-form__second-person {
  margin-bottom: calc(1.875em); }

.donation-form__btn-next {
  display: inline-block;
  position: relative;
  padding: calc(0.29166667em) calc(2.08333333em) calc(0.29166667em) calc(1.25em);
  font-size: calc(1.5em);
  line-height: 1.5;
  background-color: #462672;
  color: #fff;
  font-family: "Helvetica Neue Bold", Arial, Helvetica, sans-serif;
  border-radius: 3px; }
  .donation-form__btn-next:after {
    content: '»';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0.375em;
    font-size: calc(1.66666667em);
    line-height: 1;
    font-family: "Helvetica Neue Medium Condensed", Arial, Helvetica, sans-serif;
    transform-origin: 50% 50%;
    transform: rotate(90deg); }
  .donation-form__btn-next:hover {
    color: #fff; }

.donation-form__btn-prev {
  display: none;
  color: #fff;
  background-color: #ababab;
  font-size: calc(1.5em);
  padding: calc(0.29166667em) calc(0.83333333em);
  font-family: "Helvetica Neue Bold", Arial, Helvetica, sans-serif;
  border-radius: 3px; }
  .donation-form__btn-prev:hover {
    background-color: #462672;
    color: #fff; }

.donation-form__step {
  border: 2px solid #462672;
  margin-bottom: calc(2.5em);
  font-size: 1em; }

#donation-step-2 {
  overflow: hidden; }

.donation-form__step-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: calc(0.9375em);
  background-color: #462672;
  border-bottom: 2px solid transparent; }

.donation-form__step-main {
  padding: calc(1.875em); }

.donation-form__step-footer {
  display: block;
  background-color: #f1f1f1;
  padding: calc(1.5625em) calc(1.5625em);
  text-align: center; }

.donation-form__step.disabled .donation-form__step-header {
  border-bottom: none; }

.donation-form__step.disabled .donation-form__step-main {
  display: none; }

.donation-form__step.disabled .donation-form__step-footer {
  display: none; }

.donation-form__field:not(:last-child) {
  margin-bottom: calc(1.875em); }

.donation-form__field .input-field,
.donation-form__field .form_input {
  display: flex;
  align-items: center; }
  .donation-form__field .input-field .tooltip,
  .donation-form__field .form_input .tooltip {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #c6c6c6;
    color: #fff;
    font-size: calc(1.25em);
    font-family: "Helvetica Neue Condensed Bold", Arial, Helvetica, sans-serif;
    height: calc(1.5em);
    flex: 0 0 1.5em;
    width: calc(1.5em);
    border-radius: 50%; }
    .donation-form__field .input-field .tooltip:hover,
    .donation-form__field .form_input .tooltip:hover {
      cursor: pointer; }

.donation-form__field .input-field__wrapper {
  display: flex;
  align-items: center;
  flex-grow: 1; }

.donation-form__field .input-field__label,
.donation-form__field .form_label {
  font-family: "Helvetica Neue Bold Extended", Arial, Helvetica, sans-serif;
  font-size: calc(1.25em);
  line-height: calc(1.35em);
  color: #565659;
  flex: 0 0 10em;
  width: calc(10em); }

.donation-form__field .input-field__label-active {
  font-family: "Helvetica Neue Bold Extended", Arial, Helvetica, sans-serif;
  font-size: calc(1.25em);
  line-height: calc(1.35em);
  color: #565659;
  flex: 0 0 10em;
  width: calc(10em); }

.donation-form__field .input-field__label-inactive {
  font-family: "Helvetica Neue Bold Extended", Arial, Helvetica, sans-serif;
  font-size: calc(1.25em);
  line-height: calc(1.35em);
  color: #565659;
  flex: 0 0 10em;
  width: calc(10em);
  display: none;
  font-size: calc(1.25em);
  line-height: calc(1.35em); }

.donation-form__field .input-field__full-width {
  font-family: "Helvetica Neue Bold Extended", Arial, Helvetica, sans-serif;
  font-size: calc(1.25em);
  line-height: calc(1.35em);
  color: #565659;
  flex: 0 0 10em;
  width: calc(10em);
  flex: 0 0 auto;
  width: auto; }

.donation-form__field .input-field__value {
  display: none;
  font-size: calc(1.25em);
  line-height: calc(1.35em); }

.donation-form__field .input-field__inputmoney {
  display: block;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  border: 2px solid #c6c6c6;
  border-radius: 3px;
  padding: calc(0.5em) calc(1em);
  font-size: calc(1.25em);
  line-height: calc(1.35em);
  height: auto;
  margin-right: calc(0.75em);
  color: #1b1b1b;
  background-color: #f1f1f1;
  width: calc(6em); }
  .donation-form__field .input-field__inputmoney:focus {
    outline: none;
    border: 2px solid #c6c6c6; }
  .donation-form__field .input-field__inputmoney:active {
    outline: none;
    border: 2px solid #c6c6c6; }

.donation-form__field .input-field__text,
.donation-form__field .form_input .input_text {
  display: block;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  border: 2px solid #c6c6c6;
  border-radius: 3px;
  padding: calc(0.5em) calc(1em);
  font-size: calc(1.25em);
  line-height: calc(1.35em);
  height: auto;
  margin-right: calc(0.75em);
  color: #1b1b1b;
  background-color: #f1f1f1;
  width: auto;
  flex-grow: 1;
  flex-shrink: 1; }
  .donation-form__field .input-field__text:focus,
  .donation-form__field .form_input .input_text:focus {
    outline: none;
    border: 2px solid #c6c6c6; }
  .donation-form__field .input-field__text:active,
  .donation-form__field .form_input .input_text:active {
    outline: none;
    border: 2px solid #c6c6c6; }

.donation-form__field .input-field__inputmoney.parsley-error,
.donation-form__field .input-field__inputmoney.field_error {
  border: 2px solid red; }

.donation-form__field .input-field__text.parsley-error,
.donation-form__field .input-field__text.field_error {
  border: 2px solid red; }

.donation-form__field .input-field__select,
.donation-form__field .form_input .input_select {
  display: block; }

.donation-form__field .input-field__select.w200,
.donation-form__field .form_input .input_select.w200 {
  width: calc(12.5em);
  flex: 0 0 12.5em; }

.donation-form__field .input-field__select.parsley-error ~ .nice-select,
.donation-form__field .input-field__select.field_error ~ .nice-select,
.donation-form__field .form_input .input_select.parsley-error ~ .nice-select,
.donation-form__field .form_input .input_select.field_error ~ .nice-select {
  border: 2px solid red !important; }

.donation-form__field .error-field {
  margin-left: calc(12.5em);
  margin-top: calc(0.3125em);
  color: #ff0000; }
  .donation-form__field .error-field .parsley-errors-list {
    list-style: none;
    padding: 0;
    margin: 0; }

.donation-form__field .check__label {
  position: relative;
  cursor: pointer;
  padding-left: calc(1.5em);
  color: #1b1b1b;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: italic;
  font-weight: normal;
  font-size: calc(1.25em);
  line-height: calc(1.35em); }

.donation-form__field .check__input {
  position: absolute;
  opacity: 0; }
  .donation-form__field .check__input:focus + .check__box {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12); }
  .donation-form__field .check__input:checked + .check__box {
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: calc(0.65em) calc(0.5em);
    background-image: url("../file/?component=Customization&ft=image&file=check.svg"); }

.donation-form__field .check__box {
  position: absolute;
  top: calc(0.3em);
  left: 0;
  width: calc(1em);
  height: calc(1em);
  background-color: #f1f1f1;
  border: 2px solid #c6c6c6;
  border-radius: 3px; }

.align-items-start {
  align-items: start !important; }

#kkarte .donation-form__field .input-field {
  display: flex;
  align-items: self-start; }

.donation-form__field-tooltip {
  display: flex;
  margin-bottom: calc(2.5em); }
  .donation-form__field-tooltip .tooltip-noaction {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #c6c6c6;
    color: #fff;
    font-size: calc(1.25em);
    font-family: "Helvetica Neue Condensed Bold", Arial, Helvetica, sans-serif;
    height: calc(1.5em);
    flex: 0 0 1.5em;
    width: calc(1.5em);
    border-radius: 50%;
    margin-right: 10px; }
  .donation-form__field-tooltip .tooltip-label {
    font-size: calc(1.125em);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-style: italic; }

.donation-form__label {
  display: inline-block;
  position: relative;
  font-family: "Helvetica Neue Bold Extended", Arial, Helvetica, sans-serif;
  font-size: calc(1.25em);
  line-height: calc(1.35em);
  color: #444;
  padding-right: calc(1.5em); }

.donation-form__text {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: calc(1.125em);
  line-height: calc(1.5em);
  color: #1b1b1b; }

.donation-form__subject {
  margin-bottom: calc(1.875em); }

.step-header__wrapper {
  display: flex;
  align-items: center;
  font-size: calc(1.5em);
  font-family: "Helvetica Neue Bold Extended", Arial, Helvetica, sans-serif; }

.step-header__counter {
  display: flex;
  flex: 0 0 1.833em;
  justify-content: center;
  align-items: center;
  margin-top: calc(0.125em);
  margin-bottom: calc(0.125em);
  height: calc(1.83333333em);
  width: calc(1.83333333em);
  font-size: calc(0.8em);
  line-height: calc(1.125em);
  color: #565659;
  background-color: #fff;
  border-radius: 50%; }

.step-header__title {
  margin-left: calc(0.33333333em);
  color: #fff; }

.donation-form .nice-select {
  flex-grow: 1;
  flex-shrink: 1;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; }
  .donation-form .nice-select .list {
    width: 100%;
    max-height: 300px;
    overflow-y: auto; }
  .donation-form .nice-select:after {
    border-bottom: 2px solid #c6c6c6;
    border-right: 2px solid #c6c6c6;
    height: calc(1em);
    width: calc(1em);
    right: calc(0.75em);
    top: 22%;
    margin-top: 0; }

.donation-form .nice-select.input-field__select,
.donation-form .nice-select .form_input .input_select {
  border: 2px solid #c6c6c6;
  border-radius: 3px;
  padding: calc(0.5em) calc(2.5em) calc(0.5em) calc(1em);
  font-size: calc(1.25em);
  line-height: calc(1.35em);
  height: auto;
  margin-right: calc(0.75em);
  color: #1b1b1b;
  background-color: #f1f1f1; }
  .donation-form .nice-select.input-field__select > span,
  .donation-form .nice-select .form_input .input_select > span {
    overflow: hidden;
    display: block;
    width: 100%; }
  .donation-form .nice-select.input-field__select:focus,
  .donation-form .nice-select .form_input .input_select:focus {
    outline: none;
    border: 2px solid #c6c6c6; }
  .donation-form .nice-select.input-field__select:active,
  .donation-form .nice-select .form_input .input_select:active {
    outline: none;
    border: 2px solid #c6c6c6; }

.donation-form .icon {
  display: block;
  background-repeat: no-repeat;
  background-position: 50% 50%; }

.donation-form .icon--lock {
  position: absolute;
  top: calc(0.15em);
  right: 0;
  width: calc(1em);
  height: calc(0.9em);
  background-size: calc(0.9em);
  background-image: url("../file/?component=Customization&ft=image&file=/padlock.svg"); }

@media screen and (min-width: 768px) and (max-width: 1200px) {
  .donation-form__step {
    font-size: calc(0.875em); } }

@media screen and (max-width: 576px) {
  .donation-form .nice-select {
    flex: 1 1 80%;
    width: 80%; }
  .donation-form__step {
    font-size: calc(0.6875em); }
  .donation-form__step-header {
    -webkit-box-orient: vertical; }
  .donation-form__add-person {
    margin-bottom: 1em; }
  .hero-section {
    font-size: calc(0.75em); }
  .donation-form .inactive .step-header__wrapper {
    margin-bottom: 0; }
  .donation-form .inactive .donation-form__step-main {
    padding-left: 1.875em; }
  .donation-form .inactive .donation-form__label {
    text-align: center;
    width: 100%; }
  .donation-form .inactive .donation-form__field .newsletter {
    flex-direction: row; }
    .donation-form .inactive .donation-form__field .newsletter .input-field__label,
    .donation-form .inactive .donation-form__field .newsletter .form_label {
      margin-right: 1em; }
  .donation-form__field .input-field {
    flex-direction: column; }
  .donation-form__field .input-field__label,
  .donation-form__field .form_label {
    flex: 0 0 auto;
    width: auto;
    margin-bottom: 1em; }
  .donation-form__field .input-field__label-active {
    flex: 0 0 auto;
    width: auto;
    margin-bottom: 1em; }
  .donation-form__field .input-field__label-inactive {
    flex: 0 0 auto;
    width: auto;
    margin-bottom: 1em; }
  .donation-form__field .input-field__label.ml-10 {
    margin-left: 0; }
  .donation-form__field .input-field__text,
  .donation-form__field .form_input .input_text {
    width: 80%; }
  .donation-form__field .input-field__wrapper {
    margin-bottom: 1em;
    justify-content: center;
    width: 100%; }
  .donation-form__field .input-field__select.w200,
  .donation-form__field .form_input .input_select.w200 {
    flex: 1 1 auto;
    margin-right: 0; }
  .donation-form__field .error-field {
    margin-left: 0;
    text-align: center;
    margin-top: 1em; }
  .donation-form .tooltipster-sidetip.tooltipster-noir.tooltipster-noir-customized .tooltipster-box .tooltipster-content {
    font-size: 0.8em; }
  /*[data-js='donation-step-2'] {
    .donation-form__step-header {
      .step-header__title {
        font-size: .7em;
      }
    }
  }*/
  #kkarte .donation-form__field .input-field {
    display: flex;
    align-items: center; } }

#kkarte .form_label {
  font-family: "Helvetica Neue Bold Extended", Arial, Helvetica, sans-serif !important;
  font-weight: bold;
  color: #565659 !important; }
