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

.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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  pointer-events: none;
  position: absolute;
}

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

.tooltipster-content {
  -webkit-box-sizing: border-box;
  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;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes tooltipster-fading {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.tooltipster-update-fade {
  -webkit-animation: tooltipster-fading 0.4s;
  animation: tooltipster-fading 0.4s;
}

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

@keyframes tooltipster-rotating {
  25% {
    -webkit-transform: rotate(-2deg);
    transform: rotate(-2deg);
  }
  75% {
    -webkit-transform: rotate(2deg);
    transform: rotate(2deg);
  }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
.tooltipster-update-rotate {
  -webkit-animation: tooltipster-rotating 0.6s;
  animation: tooltipster-rotating 0.6s;
}

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

@keyframes tooltipster-scaling {
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.tooltipster-update-scale {
  -webkit-animation: tooltipster-scaling 0.6s;
  animation: tooltipster-scaling 0.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;
}

.autocomplete-input {
  border: 1px solid #eee;
  border-radius: 3px;
  width: 100%;
  padding: 12px 12px 12px 48px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  font-size: 16px;
  line-height: 1.5;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background-color: #eee;
  /*background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjNjY2IiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCI+PGNpcmNsZSBjeD0iMTEiIGN5PSIxMSIgcj0iOCIvPjxwYXRoIGQ9Ik0yMSAyMWwtNC00Ii8+PC9zdmc+");*/
  background-image: none;
  background-repeat: no-repeat;
  background-position: 12px;
}

.autocomplete-input:focus, .autocomplete-input[aria-expanded=true] {
  border-color: rgba(0, 0, 0, 0.12);
  background-color: #fff;
  outline: none;
  -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.16);
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.16);
}

[data-position=below] .autocomplete-input[aria-expanded=true] {
  border-bottom-color: transparent;
  border-radius: 3px 3px 0 0;
}

[data-position=above] .autocomplete-input[aria-expanded=true] {
  border-top-color: transparent;
  border-radius: 0 0 3px 3px;
  z-index: 2;
}

.autocomplete[data-loading=true] .flex-1 {
  position: relative;
}

.autocomplete[data-loading=true] .flex-1:after {
  content: "";
  border: 3px solid rgba(0, 0, 0, 0.12);
  border-right-color: rgba(0, 0, 0, 0.48);
  border-radius: 100%;
  width: 20px;
  height: 20px;
  position: absolute;
  right: calc(12px + 0.75em);
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-animation: rotate 1s linear infinite;
  animation: rotate 1s linear infinite;
}

.autocomplete-result-list {
  left: 0;
  margin: 0;
  border: 2px solid #c6c6c6;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-height: 296px;
  overflow-y: auto;
  background: #fff;
  list-style: none;
  /*box-shadow: 0 2px 2px rgba(0, 0, 0, .16);*/
  max-width: calc(100% - 15px);
}

@media screen and (max-width: 1200px) {
  .autocomplete-result-list {
    max-width: calc(100% - 13.125px);
  }
}
@media screen and (max-width: 768px) {
  .autocomplete-result-list {
    max-width: calc(100% - 11.25px);
  }
}
@media screen and (max-width: 576px) {
  .autocomplete-result-list {
    max-width: calc(100% - 10.313px);
  }
}
@media screen and (max-width: 567px) {
  .autocomplete-result-list {
    max-width: calc(100% - 9.668px);
  }
}
[data-position=below] .autocomplete-result-list {
  margin-top: -2px;
  border-top-color: transparent;
  border-radius: 0 0 3px 3px;
  padding-bottom: 5px;
}

[data-position=above] .autocomplete-result-list {
  margin-bottom: -1px;
  border-bottom-color: transparent;
  border-radius: 3px 3px 0 0;
  padding-top: 5px;
}

.autocomplete-result {
  cursor: default;
  /*padding: 10px;	*/
  padding: 0.5em 1em;
  font-size: 1.25em;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.35em;
  color: #1b1b1b;
  /*background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjY2NjIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCI+PGNpcmNsZSBjeD0iMTEiIGN5PSIxMSIgcj0iOCIvPjxwYXRoIGQ9Ik0yMSAyMWwtNC00Ii8+PC9zdmc+");*/
  /*background-repeat: no-repeat;*/
  /*background-position: 12px*/
}

.autocomplete-result:hover, .autocomplete-result[aria-selected=true] {
  background-color: rgba(0, 0, 0, 0.06);
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: translateY(-50%) rotate(0deg);
    transform: translateY(-50%) rotate(0deg);
  }
  to {
    -webkit-transform: translateY(-50%) rotate(359deg);
    transform: translateY(-50%) rotate(359deg);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: translateY(-50%) rotate(0deg);
    transform: translateY(-50%) rotate(0deg);
  }
  to {
    -webkit-transform: translateY(-50%) rotate(359deg);
    transform: translateY(-50%) rotate(359deg);
  }
}
#donation-form[lang=en] > form {
  display: none;
}

.donations {
  padding: 0 0 3.4rem;
}

#form_begin {
  height: 100%;
}

.language-error {
  background-color: #f1f1f1;
  padding: 15px;
}
.language-error p {
  margin: 0;
}
.language-error p + p {
  margin-top: 10px;
}

#donation-step-3 #errorOutput {
  display: block !important;
}

#donation-form #overlay_processing .modal-dialog,
#donation-form #overlay_error .modal-dialog,
#donation-form #overlay_warning .modal-dialog,
#donation-form #overlay_tab_changed .modal-dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#donation-form #overlay_processing .modal-dialog .modal-content,
#donation-form #overlay_error .modal-dialog .modal-content,
#donation-form #overlay_warning .modal-dialog .modal-content,
#donation-form #overlay_tab_changed .modal-dialog .modal-content {
  margin: 0;
}
#donation-form #overlay_processing .modal-dialog .modal-content .modal-header,
#donation-form #overlay_error .modal-dialog .modal-content .modal-header,
#donation-form #overlay_warning .modal-dialog .modal-content .modal-header,
#donation-form #overlay_tab_changed .modal-dialog .modal-content .modal-header {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#donation-form #overlay_processing .modal-dialog .modal-content .modal-body,
#donation-form #overlay_error .modal-dialog .modal-content .modal-body,
#donation-form #overlay_warning .modal-dialog .modal-content .modal-body,
#donation-form #overlay_tab_changed .modal-dialog .modal-content .modal-body {
  text-align: center;
}

#donation-form #overlay_warning .modal-dialog .modal-content .modal-header,
#donation-form #overlay_error .modal-dialog .modal-content .modal-header,
#donation-form #overlay_tab_changed .modal-dialog .modal-content .modal-header {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
#donation-form #overlay_warning .modal-dialog .modal-content .modal-body,
#donation-form #overlay_error .modal-dialog .modal-content .modal-body,
#donation-form #overlay_tab_changed .modal-dialog .modal-content .modal-body {
  text-align: left;
}
#donation-form #overlay_warning .modal-dialog .modal-content .modal-body p.specific,
#donation-form #overlay_error .modal-dialog .modal-content .modal-body p.specific,
#donation-form #overlay_tab_changed .modal-dialog .modal-content .modal-body p.specific {
  background-color: #f1f1f1;
  padding: 10px;
  margin: 0;
}

#donation-form #overlay_warning .modal-dialog,
#donation-form #overlay_tab_changed .modal-dialog {
  border: 2px solid #00a3da;
  top: 40%;
  width: auto;
}
#donation-form #overlay_warning .modal-dialog .modal-content .modal-header,
#donation-form #overlay_warning .modal-dialog .modal-content .modal-footer,
#donation-form #overlay_tab_changed .modal-dialog .modal-content .modal-header,
#donation-form #overlay_tab_changed .modal-dialog .modal-content .modal-footer {
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#donation-form #overlay_warning .modal-dialog .modal-content .modal-body p,
#donation-form #overlay_tab_changed .modal-dialog .modal-content .modal-body p {
  text-align: center;
}
#donation-form #overlay_warning .modal-dialog .modal-content .modal-body p.specific,
#donation-form #overlay_tab_changed .modal-dialog .modal-content .modal-body p.specific {
  font-weight: bold;
}
@media (min-width: 768px) {
  #donation-form #overlay_warning .modal-dialog,
  #donation-form #overlay_tab_changed .modal-dialog {
    width: 600px;
  }
}

.col-md-8 > .donation-form .spendenformular .spendenformular_reiter .sp1 img {
  display: none;
}
.col-md-8 > .donation-form .spendenformular .spendenformular_reiter .sp1 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.col-md-8 > .donation-form .spendenformular .spendenformular_reiter .sp1 > ul > li {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
}
.col-md-8 > .donation-form .spendenformular .spendenformular_reiter .sp1 .spendenformular_headline {
  position: relative;
  top: auto;
  left: auto;
  margin-bottom: 0;
}
.col-md-8 > .donation-form .spendenformular .spendenformular_reiter .sp1 .spendenformular_headline h1 {
  margin-bottom: 0;
  line-height: 1.5;
}
.col-md-8 > .donation-form .spendenformular .spendenformular_reiter .sp1 .spendenformular_headline .link.link--default {
  padding: 0;
}
.col-md-8 > .donation-form .spendenformular .spendenformular_reiter .sp1 .spendenformular_headline ul li {
  padding: 0;
}
.col-md-8 > .donation-form .spendenformular .spendenformular_inhalt .sp1,
.col-md-8 > .donation-form .spendenformular .spendenformular_inhalt .sp2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}
.col-md-8 > .donation-form .spendenformular .spendenformular_inhalt sp1 {
  padding: 0 15px;
}
.col-md-8 > .donation-form .spendenformular .spendenformular_inhalt .info {
  padding: 20px;
}
.col-md-8 > .donation-form .spendenformular .spendenformular_inhalt p {
  line-height: 1.3;
}
.col-md-8 > .donation-form .spendenformular .spendenformular_inhalt p + p {
  margin-top: 0.5rem;
}
.col-md-8 > .donation-form .spendenformular .spendenformular_inhalt .sp2 .padding-container {
  padding: 15px;
}
.col-md-8 > .donation-form .spendenformular .spendenformular_inhalt .dzi-block p {
  margin: 0;
}
.col-md-8 > .donation-form .spendenformular .spendenformular_inhalt .dzi-block a {
  display: inline;
}
.col-md-8 > .donation-form .spendenformular .padding-container {
  padding: 0 15px 1rem 15px;
}
.col-md-8 > .donation-form .spendenformular .btn input {
  white-space: normal;
}

.custom-donation #donation-form[lang=en] > form {
  display: block;
}

.flex-1 {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
@media screen and (max-width: 576px) {
  .flex-1 {
    width: 80%;
  }
}

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

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

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

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

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

.donation-form .btn-primary {
  display: inline-block;
  position: relative;
  padding: 0.29166667em 1.25em 0.29166667em 1.25em;
  font-size: 1.5em;
  line-height: 1.5;
  background-color: #ab0351;
  color: #fff;
  font-family: "CopernicusBold", Arial, Helvetica, sans-serif;
  border-radius: 0;
  border: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.donation-form .btn-primary:hover {
  color: #fff;
  background-color: #c8035d;
}
.donation-form .btn-primary.disabled, .donation-form .btn-primary:disabled {
  color: #fff;
  background-color: #595959;
}

.btn.donation-form__btn-next,
.donation-form__btn-next {
  display: inline-block;
  position: relative;
  padding: 0.29166667em 2.08333333em 0.29166667em 1.25em;
  font-size: 1.5em;
  line-height: 1.5;
  background-color: #ab0351;
  color: #fff;
  font-family: "CopernicusBold", Arial, Helvetica, sans-serif;
  border-radius: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .btn.donation-form__btn-next,
  .donation-form__btn-next {
    display: block;
    max-width: 280px;
    margin: 0 auto;
  }
}
.btn.donation-form__btn-next:after,
.donation-form__btn-next:after {
  content: "»";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0.375em;
  font-size: 1.66666667em;
  line-height: 1;
  font-family: "Polaris Condensed Medium", Arial, Helvetica, sans-serif;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.btn.donation-form__btn-next:hover,
.donation-form__btn-next:hover {
  color: #fff;
  background-color: #c8035d;
}

.btn.donation-form__btn-prev,
.donation-form__btn-prev {
  display: none;
  color: #fff;
  background-color: #595959;
  font-size: 1.5em;
  padding: 0.29166667em 0.83333333em;
  font-family: "CopernicusBold", Arial, Helvetica, sans-serif;
  border-radius: 0;
}
.btn.donation-form__btn-prev:hover,
.donation-form__btn-prev:hover {
  background-color: hsl(195.1, 100%, 41.75%);
  color: #fff;
}

.donation-form__step {
  border: 2px solid hsl(195.1, 100%, 41.75%);
  margin-bottom: 2.5em;
}

.donation-form__step-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.9375em;
  background-color: hsl(195.1, 100%, 41.75%);
  border-bottom: 2px solid transparent;
}

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

.donation-form__step-footer {
  display: block;
  background-color: #f1f1f1;
  padding: 1.5625em 1.5625em;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .donation-form__step-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.donation-form__step-footer .wrapper-protection {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  display: block;
  text-align: left;
}
.donation-form__step-footer .wrapper-protection p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
}
.donation-form__step-footer .wrapper-protection p:last-child {
  margin-bottom: 0;
}

.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: 1.875em;
}
.donation-form__field.no-next-sib {
  margin-bottom: 0;
}
.donation-form__field .input-field,
.donation-form__field .form_input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.donation-form__field .input-field .tooltip,
.donation-form__field .form_input .tooltip {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #595959;
  color: #fff;
  font-size: 1.25em;
  font-family: "Polaris Condensed Bold", Arial, Helvetica, sans-serif;
  height: 1.5em;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 1.5em;
  flex: 0 0 1.5em;
  width: 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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.donation-form__field .input-field__label,
.donation-form__field .form_label {
  font-family: "CopernicusExtrabold", Arial, Helvetica, sans-serif;
  font-size: 1.25em;
  line-height: 1.35em;
  color: #595959;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 10em;
  flex: 0 0 10em;
  width: 10em;
}
.donation-form__field .input-field__label-inactive {
  display: none;
}
.donation-form__field .input-field__full-width {
  font-family: "CopernicusExtrabold", Arial, Helvetica, sans-serif;
  font-size: 1.25em;
  line-height: 1.35em;
  color: #595959;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
}
.donation-form__field .input-field__value {
  display: none;
  font-size: 1.25em;
  line-height: 1.35em;
}
.donation-form__field .input-field__value.want-certificate-label {
  font-size: 1em;
}
.donation-form__field .input-field__inputmoney {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  border: 2px solid #c6c6c6;
  border-radius: 0;
  padding: 0.5em 1em;
  font-size: 1.25em;
  line-height: 1.35em;
  height: auto;
  margin-right: 0.75em;
  color: #1b1b1b;
  background-color: #f1f1f1;
  width: 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: Arial, Helvetica, sans-serif;
  border: 2px solid #c6c6c6;
  border-radius: 0;
  padding: 0.5em 1em;
  font-size: 1.25em;
  line-height: 1.35em;
  height: auto;
  margin-right: 0.75em;
  color: #1b1b1b;
  background-color: #f1f1f1;
  width: auto;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-negative: 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: 12.5em;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 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 .input-field__select.parsley-error,
.donation-form__field .input-field__select.field_error {
  border: 2px solid red !important;
}
.donation-form__field .error-field {
  margin-left: 12.5em;
  margin-top: 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: 1.5em;
  color: #1b1b1b;
  font-family: Arial, Helvetica, sans-serif;
  font-style: italic;
  font-weight: normal;
  font-size: 1.25em;
  line-height: 1.35em;
}
.donation-form__field .check__input {
  position: absolute;
  opacity: 0;
}
.donation-form__field .check__input:focus + .check__box {
  -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
  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: 0.65em 0.5em;
  background-image: url("../file/?component=Customization&ft=image&file=check.svg");
}
.donation-form__field .check__box {
  position: absolute;
  top: 0.3em;
  left: 0;
  width: 1em;
  height: 1em;
  background-color: #f1f1f1;
  border: 2px solid #c6c6c6;
  border-radius: 0;
}

.align-items-start {
  -webkit-box-align: start !important;
  -ms-flex-align: start !important;
  align-items: start !important;
}

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

#paypal-express-container-ab-wrapper,
#paypal-express-container {
  text-align: center;
  display: inline-block;
  font-weight: 400;
  vertical-align: middle;
  line-height: 1.5;
}
@media screen and (max-width: 480px) {
  #paypal-express-container-ab-wrapper,
  #paypal-express-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.donation-form__field-tooltip {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 2.5em;
}
.donation-form__field-tooltip .tooltip-noaction {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #595959;
  color: #fff;
  font-size: 1.25em;
  font-family: "Polaris Condensed Bold", Arial, Helvetica, sans-serif;
  height: 1.5em;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 1.5em;
  flex: 0 0 1.5em;
  width: 1.5em;
  border-radius: 50%;
}
.donation-form__field-tooltip .tooltip-label {
  font-size: 1.125em;
  font-family: Arial, Helvetica, sans-serif;
  font-style: italic;
}

.donation-form__label {
  display: inline-block;
  position: relative;
  font-family: "CopernicusExtrabold", Arial, Helvetica, sans-serif;
  font-size: 1.25em;
  line-height: 1.35em;
  color: #000;
  padding-right: 1.5em;
}

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

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

.step-header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.5em;
  font-weight: 800;
  font-family: "CopernicusExtrabold", Arial, Helvetica, sans-serif;
}
@media screen and (max-width: 991px) {
  .step-header__wrapper {
    font-size: 20px;
  }
}

.step-header__counter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 1.833em;
  flex: 0 0 1.833em;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 0.125em;
  margin-bottom: 0.125em;
  height: 1.83333333em;
  width: 1.83333333em;
  font-size: 0.8em;
  line-height: 1.125em;
  color: #595959;
  background-color: #fff;
  border-radius: 50%;
}

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

.donation-form .nice-select,
.donation-form .input-field__select {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  font-family: Arial, Helvetica, sans-serif;
}
.donation-form .nice-select .list,
.donation-form .input-field__select .list {
  width: 100%;
  max-height: 300px;
  overflow-y: auto;
}
.donation-form .nice-select:after,
.donation-form .input-field__select:after {
  border-bottom: 2px solid #c6c6c6;
  border-right: 2px solid #c6c6c6;
  height: 1em;
  width: 1em;
  right: 0.75em;
  top: 22%;
  margin-top: 0;
}
.donation-form .input-field__select,
.donation-form .nice-select .form_input .input_select {
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  border: 2px solid #c6c6c6;
  border-radius: 0;
  padding: 0.5em 2.5em 0.5em 1em;
  font-size: 1.25em;
  line-height: 1.35em;
  height: auto;
  margin-right: 0.75em;
  color: #1b1b1b;
  opacity: 1;
  background-color: #f1f1f1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2' viewBox='0 0 40 22'%3E%3Cpath d='M19.749 18.88 1.473.603.059 2.018l19.685 19.686.005-.005.004.005L39.439 2.018 38.025.603 19.749 18.88Z' style='fill:%23c6c6c6'/%3E%3C/svg%3E");
  background-position: calc(100% - 10px) 50%;
  background-size: 25px 20px;
  background-repeat: no-repeat;
}
.donation-form .input-field__select:focus,
.donation-form .nice-select .form_input .input_select:focus {
  outline: none;
  border: 2px solid #c6c6c6;
}
.donation-form .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: 0.15em;
  right: 0;
  width: 1em;
  height: 0.9em;
  background-size: 0.9em;
  background-image: url("../file/?component=Customization&ft=image&file=/padlock.svg");
}

@media screen and (max-width: 1200px) {
  .donation-form__step {
    font-size: 0.875em;
  }
}
@media screen and (max-width: 768px) {
  .donation-form__step {
    font-size: 0.75em;
  }
}
@media screen and (max-width: 576px) {
  .donation-form .nice-select,
  .donation-form .input-field__select {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 80%;
    flex: 1 1 80%;
    width: 80%;
  }
  .donation-form__step {
    font-size: 0.6875em;
  }
  .donation-form__step-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
  }
  .donation-form__add-person {
    margin-bottom: 1em;
  }
  .hero-section {
    font-size: 0.75em;
  }
  .donation-form .inactive .step-header__wrapper {
    margin-bottom: 1em;
  }
  .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 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    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 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .donation-form__field .input-field__label,
  .donation-form__field .form_label {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    margin-bottom: 1em;
  }
  .donation-form__field .input-field__label-active {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .donation-form__field .input-field__label-inactive {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .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;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
  }
  .donation-form__field .input-field__select.w200,
  .donation-form__field .form_input .input_select.w200 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
#kkarte .form_label {
  font-family: "CopernicusExtrabold", Arial, Helvetica, sans-serif !important;
  font-weight: bold;
  color: #595959 !important;
}

.donation-form__field .check__label,
.donation-form__field .radio__label {
  position: relative;
  cursor: pointer;
  padding-left: 1.5em;
  color: #1b1b1b;
  font-family: Arial, Helvetica, sans-serif;
  font-style: italic;
  font-weight: normal;
  font-size: 1.25em;
  line-height: 1.35em;
}
.donation-form__field .radio__label {
  width: 100%;
}
.donation-form__field .check__input,
.donation-form__field .radio_input {
  position: absolute;
  opacity: 0;
}
.donation-form__field .check__input:focus + .check__box,
.donation-form__field .radio_input:focus + .radio__box {
  -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
  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: 0.65em 0.5em;
}
.donation-form__field .radio_input:checked + .radio__box,
.donation-form__field .radio_input:not(:checked) + .radio__box {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 0.65em 0.5em;
}
.donation-form__field .radio_input:checked + .radio__box:after,
.donation-form__field .radio_input:not(:checked) + .radio__box:after {
  content: "";
  width: 12px;
  height: 12px;
  background: #595959;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1200px) {
  .donation-form__field .radio_input:checked + .radio__box:after,
  .donation-form__field .radio_input:not(:checked) + .radio__box:after {
    width: 8px;
    height: 8px;
  }
}
@media screen and (max-width: 768px) {
  .donation-form__field .radio_input:checked + .radio__box:after,
  .donation-form__field .radio_input:not(:checked) + .radio__box:after {
    width: 6px;
    height: 6px;
  }
}
.donation-form__field .radio_input:not(:checked) + .radio__box:after {
  opacity: 0;
  -webkit-transform: translate(-50%, -50%) scale(0);
  -ms-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
}
.donation-form__field .radio_input:checked + .radio__box:after {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}
.donation-form__field .check__box {
  position: absolute;
  top: 0.2em;
  left: 0;
  width: 1em;
  height: 1em;
  background-color: #f1f1f1;
  border: 2px solid #c6c6c6;
}
.donation-form__field .radio__box {
  position: absolute;
  top: 0.2em;
  left: 0;
  width: 18px;
  height: 18px;
  background-color: #f1f1f1;
  border: 2px solid #c6c6c6;
}
@media screen and (max-width: 1200px) {
  .donation-form__field .radio__box {
    width: 14px;
    height: 14px;
  }
}
@media screen and (max-width: 768px) {
  .donation-form__field .radio__box {
    width: 10px;
    height: 10px;
  }
}
.donation-form__field .check__box {
  border-radius: 0;
}
.donation-form__field .radio__box {
  border-radius: 50%;
}

.container-wrapper-custom_donate_comment {
  display: none;
}

.donation-form__field .input-field__inputmoney,
.donation-form__field .input-field__text {
  border-radius: 0;
}

.donation-form__field .input-field__text {
  font-style: italic;
  width: 100%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
}

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

.donation-form__field .input-field__select.w200 {
  width: 12.5em;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 12.5em;
  flex: 0 0 12.5em;
}

.donation-form .inactive .donation-form__field .radio__label,
.donation-form .inactive .donation-form__field .radio__label__label-inactive,
.donation-form .inactive .donation-form__field .check__label,
.donation-form .inactive .donation-form__field .check__label__label-inactive {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
  color: #595959;
}

.custom-donation .donation-form .ml-10,
.custom-donation .donation-form .form_currency {
  margin-left: 0.55555556em;
}

@media screen and (max-width: 768px) {
  .hero-section.ce_onepager_header_v2 {
    margin-bottom: 0;
  }
  .hero-section.ce_onepager_header_v2 .hero-section__content {
    padding-bottom: 0;
  }
}
.center-text {
  width: 690px;
  margin: 0 auto;
  padding: 32px 0;
}
.center-text > .text > p {
  padding: 0 !important;
}

@media screen and (max-width: 992px) {
  .center-text {
    width: 480px;
  }
}
@media screen and (max-width: 768px) {
  .center-text {
    width: 100%;
    padding: 32px;
  }
  .dzi-block {
    padding: 32px;
  }
}