@charset "UTF-8";
.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("https://www.brot-fuer-die-welt.de/spenden/jetzt-helfen/file/?component=CustomizationFoemi&ft=image&file=search.svg");
  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]: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: 12px;
  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("https://www.brot-fuer-die-welt.de/spenden/jetzt-helfen/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;
}

.page-header.navhide.no-bodyfix {
  position: absolute !important;
  top: 0 !important;
  margin-top: 0 !important;
}

header {
  position: fixed;
}
header .header__main-nav {
  position: relative;
}

.custom-donation-thanks .container-sm.spakt {
  margin-bottom: 0;
  padding-bottom: 45px;
}

#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,
#donation-form #overlay_error,
#donation-form #overlay_warning,
#donation-form #overlay_tab_changed {
  opacity: 1;
  z-index: 99999999999;
}
#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: left;
  -ms-flex-pack: left;
  justify-content: left;
}
#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 {
  top: 40%;
}
#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;
}
#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;
}

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

.custom-donation .donation-form .inactive .radio_input,
.custom-donation .donation-form .inactive .radio__label,
.custom-donation .donation-form .inactive .show-public-1-label,
.custom-donation .donation-form .inactive .show-public-2-label,
.donation-form .inactive .radio_input,
.donation-form .inactive .radio__label,
.donation-form .inactive .show-public-1-label,
.donation-form .inactive .show-public-2-label {
  cursor: default;
}
.custom-donation .donation-form .inactive .donation-form__step-header,
.donation-form .inactive .donation-form__step-header {
  background-color: #fff;
  border-bottom: 2px solid #c6c6c6;
}
.custom-donation .donation-form .inactive .donation-form__step-main,
.donation-form .inactive .donation-form__step-main {
  padding-left: 4em;
}
.custom-donation .donation-form .inactive .donation-form__step-footer,
.donation-form .inactive .donation-form__step-footer {
  display: none;
}
.custom-donation .donation-form .inactive .donation-form__btn-prev,
.donation-form .inactive .donation-form__btn-prev {
  display: inline-block;
}
.custom-donation .donation-form .inactive .donation-form__btn-prev.hide,
.donation-form .inactive .donation-form__btn-prev.hide {
  display: none;
}
.custom-donation .donation-form .inactive .donation-form__field:not(:last-child),
.donation-form .inactive .donation-form__field:not(:last-child) {
  margin-bottom: 1.5625em;
}
.custom-donation .donation-form .inactive .donation-form__field .input-field__label,
.custom-donation .donation-form .inactive .donation-form__field .form_label,
.donation-form .inactive .donation-form__field .input-field__label,
.donation-form .inactive .donation-form__field .form_label {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  color: #595959;
}
.custom-donation .donation-form .inactive .donation-form__field .input-field__label-inactive,
.donation-form .inactive .donation-form__field .input-field__label-inactive {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  color: #595959;
  display: block;
}
.custom-donation .donation-form .inactive .donation-form__field .input-field__label-active,
.donation-form .inactive .donation-form__field .input-field__label-active {
  display: none;
}
.custom-donation .donation-form .inactive .donation-form__field .input-field__inputmoney,
.donation-form .inactive .donation-form__field .input-field__inputmoney {
  display: none;
}
.custom-donation .donation-form .inactive .donation-form__field .input-field__select,
.custom-donation .donation-form .inactive .donation-form__field .form_input .input_select,
.donation-form .inactive .donation-form__field .input-field__select,
.donation-form .inactive .donation-form__field .form_input .input_select {
  display: none;
}
.custom-donation .donation-form .inactive .donation-form__field .input-field__text,
.custom-donation .donation-form .inactive .donation-form__field .form_input .input_text,
.donation-form .inactive .donation-form__field .input-field__text,
.donation-form .inactive .donation-form__field .form_input .input_text {
  display: none;
}
.custom-donation .donation-form .inactive .donation-form__field .input-field__value,
.donation-form .inactive .donation-form__field .input-field__value {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
  color: #595959;
}
.custom-donation .donation-form .inactive .donation-form__field .tooltip,
.donation-form .inactive .donation-form__field .tooltip {
  display: none;
}
.custom-donation .donation-form .inactive .donation-form__field-tooltip,
.donation-form .inactive .donation-form__field-tooltip {
  display: none;
}
.custom-donation .donation-form .inactive .donation-form__label,
.donation-form .inactive .donation-form__label {
  color: #595959;
}
.custom-donation .donation-form .inactive .step-header__title,
.donation-form .inactive .step-header__title {
  color: #ababab;
}
.custom-donation .donation-form .inactive .check__input,
.donation-form .inactive .check__input {
  pointer-events: none;
}
.custom-donation .donation-form .inactive .check__box,
.donation-form .inactive .check__box {
  pointer-events: none;
}
.custom-donation .donation-form input[type=number]::-webkit-outer-spin-button,
.custom-donation .donation-form input[type=number]::-webkit-inner-spin-button,
.donation-form input[type=number]::-webkit-outer-spin-button,
.donation-form input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.custom-donation .donation-form input[type=number],
.donation-form input[type=number] {
  -moz-appearance: textfield;
}
.custom-donation .donation-form .container-wrapper-custom_donate_comment,
.donation-form .container-wrapper-custom_donate_comment {
  display: 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: #eb680a;
  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-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: #eb680a;
  color: #fff;
  font-family: "Copernicus", Arial, Helvetica, sans-serif;
  font-weight: 700;
  border-radius: 3px;
}
.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: "Copernicus", Arial, Helvetica, sans-serif;
  font-weight: 500;
  -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);
}
.donation-form__btn-next:hover {
  color: #000000;
}

.donation-form__btn-prev {
  display: none;
  color: #fff;
  background-color: #ababab;
  font-size: 1.5em;
  padding: 0.29166667em 0.83333333em;
  font-family: "Copernicus", Arial, Helvetica, sans-serif;
  font-weight: 700;
  border-radius: 3px;
}
.donation-form__btn-prev:hover {
  background-color: #eb680a;
  color: #fff;
}

.donation-form__step {
  border: 2px solid #eb680a;
  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: #eb680a;
  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;
}

.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: #777777;
  color: #fff;
  font-size: 1.25em;
  font-family: "Copernicus", Arial, Helvetica, sans-serif;
  font-weight: 700;
  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: "Copernicus", Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 1.25em;
  line-height: 1.35em;
  color: #eb680a;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 11em;
  flex: 0 0 11em;
  width: 11em;
}
.donation-form__field .input-field__label-active {
  font-family: "Copernicus", Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 1.25em;
  line-height: 1.35em;
  color: #eb680a;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 11em;
  flex: 0 0 11em;
  width: 11em;
}
.donation-form__field .input-field__label-inactive {
  font-family: "Copernicus", Arial, Helvetica, sans-serif;
  font-weight: 800;
  color: #eb680a;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 10em;
  flex: 0 0 10em;
  width: 10em;
  display: none;
  font-size: 1.25em;
  line-height: 1.35em;
}
.donation-form__field .input-field__full-width {
  font-family: "Copernicus", Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 1.25em;
  line-height: 1.35em;
  color: #eb680a;
  -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__inputmoney {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  border: 2px solid #c6c6c6;
  border-radius: 3px;
  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: 3px;
  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 .error-field {
  margin-left: 12.5em;
  margin-top: 0.3125em;
  color: red;
}
.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("https://www.brot-fuer-die-welt.de/spenden/jetzt-helfen/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: 3px;
}

.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;
}

.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: #777777;
  color: #fff;
  font-size: 1.25em;
  font-family: "Copernicus", Arial, Helvetica, sans-serif;
  font-weight: 700;
  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: "Copernicus", Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 1.25em;
  line-height: 1.35em;
  color: #000000;
  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__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-family: "Copernicus", Arial, Helvetica, sans-serif;
  font-weight: 800;
}

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

.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 .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 {
  border: 2px solid #c6c6c6;
  border-radius: 3px;
  padding: 0.5em 2.5em 0.5em 1em;
  font-size: 1.25em;
  line-height: 1.35em;
  height: auto;
  margin-right: 0.75em;
  color: #1b1b1b;
  background-color: #f1f1f1;
}
.donation-form .input-field__select > span {
  overflow: hidden;
  display: block;
  width: 100%;
}
.donation-form .input-field__select:focus {
  outline: none;
  border: 2px solid #c6c6c6;
}
.donation-form .input-field__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("https://www.brot-fuer-die-welt.de/spenden/jetzt-helfen/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 .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;
    margin-bottom: 1em;
  }
  .donation-form__field .input-field__label-inactive {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    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;
    -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 {
    display: block !important;
  }
  #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: "Copernicus", Arial, Helvetica, sans-serif !important;
  font-weight: 800;
  color: #eb680a !important;
}

.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 .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;
  width: 100%;
}
.donation-form .donation-form__field .radio_input {
  position: absolute;
  opacity: 0;
}
.donation-form .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 .donation-form__field .radio_input:checked + .radio__box,
.donation-form .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 .donation-form__field .radio_input:checked + .radio__box:after,
.donation-form .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 .donation-form__field .radio_input:checked + .radio__box:after,
  .donation-form .donation-form__field .radio_input:not(:checked) + .radio__box:after {
    width: 8px;
    height: 8px;
  }
}
@media screen and (max-width: 768px) {
  .donation-form .donation-form__field .radio_input:checked + .radio__box:after,
  .donation-form .donation-form__field .radio_input:not(:checked) + .radio__box:after {
    width: 6px;
    height: 6px;
  }
}
.donation-form .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 .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 .donation-form__field .radio__box {
  position: absolute;
  top: 0.2em;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #f1f1f1;
  border: 2px solid #c6c6c6;
}
@media screen and (max-width: 1200px) {
  .donation-form .donation-form__field .radio__box {
    width: 14px;
    height: 14px;
  }
}
@media screen and (max-width: 768px) {
  .donation-form .donation-form__field .radio__box {
    width: 10px;
    height: 10px;
  }
}
.donation-form .inactive .radio_input,
.donation-form .inactive .radio__box {
  pointer-events: none;
}
.donation-form .inactive .donation-form__field .radio__label,
.donation-form .inactive .donation-form__field .radio__label__label-inactive {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
  color: #595959;
}
.donation-form .btn-primary {
  color: #fff;
}

.custom-donation .accent-color {
  color: #eb680a;
}
.custom-donation *[data-js=cover-img] {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}
.custom-donation *[data-js=cover-img] img {
  width: 100%;
  height: auto;
}
.custom-donation *[data-js=cover-img].cover-init {
  overflow: hidden;
}
.custom-donation *[data-js=cover-img].cover-init img {
  position: absolute;
  opacity: 0;
}
.custom-donation .donation-form .row-30 {
  margin: 0 -30px;
}
.custom-donation .donation-form .medium {
  font-family: "Copernicus", Arial, Helvetica, sans-serif;
  font-weight: 500;
}
.custom-donation .donation-form .semibold {
  font-family: "Copernicus", Arial, Helvetica, sans-serif;
  font-weight: 600;
}
.custom-donation .donation-form .bold {
  font-family: "Copernicus", Arial, Helvetica, sans-serif;
  font-weight: 700;
}
.custom-donation .donation-form .extrabold {
  font-family: "Copernicus", Arial, Helvetica, sans-serif;
  font-weight: 800;
}
.custom-donation .donation-form .regular {
  font-weight: normal;
}
.custom-donation .donation-form .img-responsive {
  width: 100%;
  height: auto;
}
.custom-donation .donation-form .img-center {
  display: block;
  margin: 0 auto;
}
.custom-donation .donation-form .ml-10,
.custom-donation .donation-form .form_currency {
  margin-left: 0.55555556em;
}
.custom-donation .donation-form .justify-content-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.custom-donation .donation-form .align-items-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.custom-donation .donation-form .accent-text {
  font-weight: bold;
  color: #eb680a;
}
.custom-donation .donation-form .link {
  cursor: pointer;
}
.custom-donation .donation-form .link:hover {
  text-decoration: none;
}
.custom-donation .donation-form .link-primary {
  color: #1b1b1b;
}
.custom-donation .donation-form .link-primary:hover {
  color: #eb680a;
  text-decoration: none;
}
.custom-donation .donation-form .link-secondary {
  color: #1b1b1b;
  text-decoration: underline;
}
.custom-donation .donation-form .link-secondary:hover {
  color: #eb680a;
}
.custom-donation .donation-form .btn-primary {
  color: #fff;
}
.custom-donation .donation-form .inactive .donation-form__step-header {
  background-color: #fff;
  border-bottom: 2px solid #c6c6c6;
}
.custom-donation .donation-form .inactive .donation-form__step-main {
  padding-left: 4em;
}
.custom-donation .donation-form .inactive .donation-form__step-footer {
  display: none;
}
.custom-donation .donation-form .inactive .donation-form__btn-prev {
  display: inline-block;
}
.custom-donation .donation-form .inactive .donation-form__btn-prev.hide {
  display: none;
}
.custom-donation .donation-form .inactive .donation-form__field:not(:last-child) {
  margin-bottom: 1.5625em;
}
.custom-donation .donation-form .inactive .donation-form__field .input-field__label,
.custom-donation .donation-form .inactive .donation-form__field .input-field__label-inactive {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  color: #595959;
}
.custom-donation .donation-form .inactive .donation-form__field .input-field__label-inactive {
  display: block;
}
.custom-donation .donation-form .inactive .donation-form__field .input-field__label-active,
.custom-donation .donation-form .inactive .donation-form__field .input-field__inputmoney,
.custom-donation .donation-form .inactive .donation-form__field .input-field__select,
.custom-donation .donation-form .inactive .donation-form__field .input-field__text {
  display: none;
}
.custom-donation .donation-form .inactive .donation-form__field .input-field__value {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
  color: #595959;
}
.custom-donation .donation-form .inactive .donation-form__field-tooltip {
  display: none;
}
.custom-donation .donation-form .inactive .donation-form__field .tooltip {
  display: none;
}
.custom-donation .donation-form .inactive .donation-form__label {
  color: #595959;
}
.custom-donation .donation-form .inactive .step-header__title {
  color: #ababab;
}
.custom-donation .donation-form .inactive .check__input,
.custom-donation .donation-form .inactive .check__box,
.custom-donation .donation-form .inactive .radio_input,
.custom-donation .donation-form .inactive .radio__box {
  pointer-events: none;
}
.custom-donation .donation-form__hr {
  margin: 1.875em 0;
  height: 2px;
  width: 100%;
}
.custom-donation .donation-form__add-person {
  position: relative;
  height: 1.875em;
  width: 1.875em;
  background-color: #eb680a;
  border-radius: 50%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 1.875em;
  flex: 0 0 1.875em;
}
.custom-donation .donation-form__add-person:before,
.custom-donation .donation-form__add-person:after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  height: 0.25em;
  width: 1em;
  background-color: #fff;
}
.custom-donation .donation-form__add-person:before {
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.custom-donation .donation-form__add-person:after {
  -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);
}
.custom-donation .donation-form__add-person--minus:after {
  display: none;
}
.custom-donation .donation-form__second-person {
  margin-bottom: 1.875em;
}
.custom-donation .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: #eb680a;
  color: #fff;
  font-family: "Copernicus", Arial, Helvetica, sans-serif;
  font-weight: 700;
  border-radius: 3px;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .custom-donation .donation-form__btn-next {
    display: block;
    max-width: 280px;
    margin: 0 auto;
  }
}
.custom-donation .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: "Copernicus", Arial, Helvetica, sans-serif;
  font-weight: 500;
  -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);
}
.custom-donation .donation-form__btn-next:hover {
  color: #000;
}
.custom-donation .donation-form__btn-prev {
  display: none;
  color: #fff;
  background-color: #ababab;
  font-size: 1.5em;
  padding: 0.29166667em 0.83333333em;
  font-family: "Copernicus", Arial, Helvetica, sans-serif;
  font-weight: 700;
  border-radius: 3px;
}
.custom-donation .donation-form__btn-prev:hover {
  background-color: #eb680a;
  color: #fff;
}
.custom-donation .donation-form__step {
  border: 2px solid #eb680a;
  margin-bottom: 2.5em;
}
.custom-donation .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: #eb680a;
  border-bottom: 2px solid transparent;
}
.custom-donation .donation-form__step-main {
  padding: 1.875em;
}
.custom-donation .donation-form__step-footer {
  display: block;
  background-color: #f1f1f1;
  padding: 1.5625em 1.5625em;
  text-align: center;
}
.custom-donation .donation-form__step.disabled .donation-form__step-header {
  border-bottom: none;
}
.custom-donation .donation-form__step.disabled .donation-form__step-main,
.custom-donation .donation-form__step.disabled .donation-form__step-footer {
  display: none;
}
.custom-donation .donation-form__field:not(:last-child) {
  margin-bottom: 1.875em;
}
.custom-donation .donation-form__field.no-next-sib {
  margin-bottom: 0;
}
.custom-donation .donation-form__field .input-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.custom-donation .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;
}
.custom-donation .donation-form__field .input-field__label,
.custom-donation .donation-form__field .input-field__label-active,
.custom-donation .donation-form__field .input-field__label-inactive,
.custom-donation .donation-form__field .input-field__full-width {
  font-family: "Copernicus", Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 1.25em;
  line-height: 1.35em;
  color: #eb680a;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 11em;
  flex: 0 0 11em;
  width: 11em;
}
.custom-donation .donation-form__field .input-field__full-width {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
}
.custom-donation .donation-form__field .input-field__label-inactive,
.custom-donation .donation-form__field .input-field__value {
  display: none;
  font-size: 1.25em;
  line-height: 1.35em;
}
.custom-donation .donation-form__field .input-field__inputmoney,
.custom-donation .donation-form__field .input-field__text {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  border: 2px solid #c6c6c6;
  border-radius: 3px;
  padding: 0.5em 1em;
  font-size: 1.25em;
  line-height: 1.35em;
  height: auto;
  margin-right: 0;
  color: #1b1b1b;
  background-color: #f1f1f1;
}
.custom-donation .donation-form__field .input-field__inputmoney:focus,
.custom-donation .donation-form__field .input-field__text:focus,
.custom-donation .donation-form__field .input-field__inputmoney:active,
.custom-donation .donation-form__field .input-field__text:active {
  outline: none;
  border: 2px solid #c6c6c6;
}
.custom-donation .donation-form__field .input-field__inputmoney.parsley-error,
.custom-donation .donation-form__field .input-field__text.parsley-error {
  border: 2px solid red;
}
.custom-donation .donation-form__field .input-field__inputmoney {
  width: 6em;
}
.custom-donation .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;
}
.custom-donation .donation-form__field .input-field__select {
  display: block;
}
.custom-donation .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;
}
.custom-donation .donation-form__field .input-field__select.parsley-error ~ .input-field__select {
  border: 2px solid red !important;
}
.custom-donation .donation-form__field .input-field .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: "Copernicus", Arial, Helvetica, sans-serif;
  font-weight: 700;
  height: 1.5em;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 1.5em;
  flex: 0 0 1.5em;
  width: 1.5em;
  border-radius: 50%;
}
.custom-donation .donation-form__field .input-field .tooltip:hover {
  cursor: pointer;
}
.custom-donation .donation-form__field .error-field {
  margin-left: 12.5em;
  margin-top: 0.3125em;
  color: red;
}
.custom-donation .donation-form__field .error-field.w-100 {
  margin-left: 0;
}
.custom-donation .donation-form__field .error-field .parsley-errors-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.custom-donation .donation-form__field .check__label,
.custom-donation .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;
}
.custom-donation .donation-form__field .radio__label {
  width: 100%;
}
.custom-donation .donation-form__field .check__input,
.custom-donation .donation-form__field .radio_input {
  position: absolute;
  opacity: 0;
}
.custom-donation .donation-form__field .check__input:focus + .check__box,
.custom-donation .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);
}
.custom-donation .donation-form__field .check__input:checked + .check__box {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 0.65em 0.5em;
}
.custom-donation .donation-form__field .radio_input:checked + .radio__box,
.custom-donation .donation-form__field .radio_input:not(:checked) + .radio__box {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 0.65em 0.5em;
}
.custom-donation .donation-form__field .radio_input:checked + .radio__box:after,
.custom-donation .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) {
  .custom-donation .donation-form__field .radio_input:checked + .radio__box:after,
  .custom-donation .donation-form__field .radio_input:not(:checked) + .radio__box:after {
    width: 8px;
    height: 8px;
  }
}
@media screen and (max-width: 768px) {
  .custom-donation .donation-form__field .radio_input:checked + .radio__box:after,
  .custom-donation .donation-form__field .radio_input:not(:checked) + .radio__box:after {
    width: 6px;
    height: 6px;
  }
}
.custom-donation .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);
}
.custom-donation .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);
}
.custom-donation .donation-form__field .check__box {
  position: absolute;
  top: 0.2em;
  left: 0;
  width: 1em;
  height: 1em;
  background-color: #f1f1f1;
  border: 2px solid #c6c6c6;
}
.custom-donation .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) {
  .custom-donation .donation-form__field .radio__box {
    width: 14px;
    height: 14px;
  }
}
@media screen and (max-width: 768px) {
  .custom-donation .donation-form__field .radio__box {
    width: 10px;
    height: 10px;
  }
}
.custom-donation .donation-form__field .check__box {
  border-radius: 3px;
}
.custom-donation .donation-form__field .radio__box {
  border-radius: 50%;
}
.custom-donation .donation-form .inactive .donation-form__field .radio__label,
.custom-donation .donation-form .inactive .donation-form__field .radio__label__label-inactive,
.custom-donation .donation-form .inactive .donation-form__field .check__label,
.custom-donation .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__field-tooltip {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 2.5em;
}
.custom-donation .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: "Copernicus", Arial, Helvetica, sans-serif;
  font-weight: 700;
  height: 1.5em;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 1.5em;
  flex: 0 0 1.5em;
  width: 1.5em;
  border-radius: 50%;
}
.custom-donation .donation-form__field-tooltip .tooltip-label {
  font-size: 1.125em;
  font-family: Arial, Helvetica, sans-serif;
  font-style: italic;
}
.custom-donation .donation-form__label {
  display: inline-block;
  position: relative;
  font-family: "Copernicus", Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 1.25em;
  line-height: 1.35em;
  color: #000;
  padding-right: 1.5em;
}
.custom-donation .donation-form__text {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.125em;
  line-height: 1.5em;
  color: #1b1b1b;
}
.custom-donation .donation-form__subject {
  margin-bottom: 1.875em;
}
.custom-donation .donation-form .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.875em;
  font-family: "Copernicus", Arial, Helvetica, sans-serif;
  font-weight: 800;
}
.custom-donation .donation-form .step-header__title {
  margin-left: 0.33333333em;
  color: #fff;
}
.custom-donation .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;
}
.custom-donation .donation-form .input-field__select .donation-form select {
  border: 2px solid #c6c6c6;
  border-radius: 3px;
  padding: 0.5em 2.5em 0.5em 1em;
  font-size: 1.25em;
  line-height: 1.35em;
  height: auto;
  margin-right: 0;
  color: #1b1b1b;
  background-color: #f1f1f1;
}
.custom-donation .donation-form .input-field__select:focus,
.custom-donation .donation-form .input-field__select:active {
  outline: none;
  border: 2px solid #c6c6c6;
}
.custom-donation .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;
}
.custom-donation .donation-form .icon {
  display: block;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.custom-donation .donation-form .icon--lock {
  position: absolute;
  top: 0.15em;
  right: 0;
  width: 1em;
  height: 0.9em;
  background-size: 0.9em;
}
@media screen and (max-width: 1200px) {
  .custom-donation .donation-form__step {
    font-size: 0.875em;
  }
}
@media screen and (max-width: 768px) {
  .custom-donation .donation-form__step {
    font-size: 0.75em;
  }
}
@media screen and (max-width: 576px) {
  .custom-donation .donation-form .input-field__select {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 80%;
    flex: 1 1 80%;
    width: 80%;
  }
  .custom-donation .donation-form__step {
    font-size: 0.6875em;
  }
  .custom-donation .donation-form__step-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .custom-donation .donation-form__add-person {
    margin-bottom: 1em;
  }
  .custom-donation .donation-form .inactive .step-header__wrapper {
    margin-bottom: 1em;
  }
  .custom-donation .donation-form .inactive .donation-form__step-main {
    padding-left: 1.875em;
  }
  .custom-donation .donation-form .inactive .donation-form__label {
    text-align: center;
    width: 100%;
  }
  .custom-donation .donation-form .inactive .donation-form__field .newsletter {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .custom-donation .donation-form .inactive .donation-form__field .newsletter .input-field__label {
    margin-right: 1em;
  }
  .custom-donation .donation-form__field .input-field {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .custom-donation .donation-form__field .input-field__label,
  .custom-donation .donation-form__field .input-field__label-active,
  .custom-donation .donation-form__field .input-field__label-inactive {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    margin-bottom: 1em;
  }
  .custom-donation .donation-form__field .input-field__label.ml-10 {
    margin-left: 0;
  }
  .custom-donation .donation-form__field .input-field__text {
    width: 80%;
  }
  .custom-donation .donation-form__field .input-field__wrapper {
    margin-bottom: 1em;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
  }
  .custom-donation .donation-form__field .input-field__select.w200 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    margin-right: 0;
  }
  .custom-donation .donation-form__field .error-field {
    margin-left: 0;
    text-align: center;
    margin-top: 1em;
  }
  .custom-donation .donation-form .tooltipster-sidetip.tooltipster-noir.tooltipster-noir-customized .tooltipster-box .tooltipster-content {
    font-size: 0.8em;
  }
  .custom-donation [data-js=donation-step-2] .donation-form__step-header .step-header__title {
    font-size: 0.7em;
  }
}

.donation-form {
  --df-text-clr: #555;
}
.donation-form .donation-form__step {
  border: none;
}
.donation-form .donation-form__step .autocomplete-result-list {
  z-index: 2 !important;
}
.donation-form .donation-form__step .row.may-wrap {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
@media screen and (max-width: 992px) {
  .donation-form .donation-form__step .row.may-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.donation-form .donation-form__step p {
  font-weight: 400;
  font-size: 16px;
}
@media screen and (max-width: 992px) {
  .donation-form .donation-form__step p {
    font-size: 14px;
  }
}
.donation-form .donation-form__step .step-header__counter {
  background-color: #fff;
  display: inline-block;
  margin: 0;
  width: 57px;
  padding: 5px 0 5px;
  height: auto;
  line-height: normal;
  border-radius: 0;
}
@media screen and (max-width: 992px) {
  .donation-form .donation-form__step .step-header__counter {
    width: 38px;
    padding: 0;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: right;
  }
}
.donation-form .donation-form__step .step-header__counter span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 57px;
  height: 57px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--clr-base);
  border-radius: 50%;
  font-family: var(--font-special);
  font-weight: 700;
  font-size: 20px;
  color: #ffffff;
}
@media screen and (max-width: 992px) {
  .donation-form .donation-form__step .step-header__counter span {
    font-size: 16px;
    width: 38px;
    height: 38px;
  }
}
.donation-form .donation-form__step .step-header__counter:after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 2px;
  height: calc(100% + 30px);
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #7f7f7f;
  z-index: -1;
}
.donation-form .donation-form__step .donation-form__step-container {
  -webkit-box-shadow: 5px 5px 47px rgba(0, 0, 0, 0.0470588235);
  box-shadow: 5px 5px 47px rgba(0, 0, 0, 0.0470588235);
}
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-header {
  background-color: #ffffff;
  padding: 10px 20px;
}
@media screen and (max-width: 992px) {
  .donation-form .donation-form__step .donation-form__step-container .donation-form__step-header {
    padding: 10px 15px;
  }
}
@media screen and (max-width: 576px) {
  .donation-form .donation-form__step .donation-form__step-container .donation-form__step-header {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-header .step-header__title {
  font-family: var(--font-special);
  font-weight: 800;
  font-size: 32px;
  color: #000000;
  line-height: 1.5;
  margin: 0;
}
@media screen and (max-width: 992px) {
  .donation-form .donation-form__step .donation-form__step-container .donation-form__step-header .step-header__title {
    font-size: 20px;
  }
}
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-header .step-header__counter {
  display: none;
}
@media screen and (max-width: 992px) {
  .donation-form .donation-form__step .donation-form__step-container .donation-form__step-header .step-header__counter {
    display: inline-block;
  }
}
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-header .step-header__counter:after {
  content: none;
}
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-main {
  padding: 15px 20px 0;
}
@media screen and (max-width: 992px) {
  .donation-form .donation-form__step .donation-form__step-container .donation-form__step-main {
    padding: 15px 15px 0;
  }
}
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .donation-form__field {
  font-family: var(--font-special);
  margin-bottom: 30px;
  margin-top: 0;
}
@media screen and (max-width: 992px) {
  .donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .donation-form__field {
    margin-bottom: 15px;
  }
}
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .donation-form__field.hide {
  display: none;
}
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .donation-form__field.wrapper-show-public, .donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .donation-form__field.wrapper-postal-delivery .input-field, .donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .donation-form__field.wrapper-certificate_motive .input-field {
  padding-top: 20px;
}
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .donation-form__field.wrapper-show-public .input-field__label, .donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .donation-form__field.wrapper-postal-delivery .input-field .input-field__label, .donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .donation-form__field.wrapper-certificate_motive .input-field .input-field__label {
  left: 0 !important;
  padding: 0 !important;
}
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .donation-form__field.wrapper-show-public .motive-label, .donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .donation-form__field.wrapper-postal-delivery .input-field .motive-label, .donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .donation-form__field.wrapper-certificate_motive .input-field .motive-label {
  border: none !important;
  border-radius: 0 !important;
}
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .donation-form__field.wrapper-certificate_motive .input-field input:checked + .motive-label {
  -webkit-box-shadow: 3px 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 3px 3px 9px rgba(0, 0, 0, 0.5);
}
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .donation-form__field.wrapper-certificate_preview {
  font-family: var(--font-base);
}
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .donation-form__field.wrapper-certificate_preview .input-field__label {
  margin: 0;
  padding: 0;
  color: var(--df-text-clr);
  font-size: 16px;
  font-family: var(--font-base);
  font-weight: 400;
}
@media screen and (max-width: 992px) {
  .donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .donation-form__field.wrapper-certificate_preview .input-field__label {
    font-size: 14px;
  }
}
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .donation-form__field.wrapper-certificate_preview .preview-container .intro-preview {
  font-size: 9px;
  top: 60.9%;
}
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .donation-form__field.wrapper-certificate_preview .preview-container .receiver-preview {
  font-size: 9px;
  top: 67.2%;
}
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .donation-form__field.wrapper-certificate_preview .preview-container .motive-preview {
  border: none;
  border-radius: 0;
  -webkit-box-shadow: 3px 3px 12px rgba(0, 0, 0, 0.15);
  box-shadow: 3px 3px 12px rgba(0, 0, 0, 0.15);
}
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .donation-form__field .wrapper-zip input,
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .donation-form__field .wrapper-streetnumber input {
  max-width: 150px;
}
@media screen and (max-width: 992px) {
  .donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .donation-form__field .wrapper-zip input,
  .donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .donation-form__field .wrapper-streetnumber input {
    max-width: 100%;
  }
}
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .input-field__wrapper {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .input-field__wrapper .input-field__inputmoney {
  width: 220px;
  margin-right: 10px;
}
@media screen and (max-width: 992px) {
  .donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .input-field__wrapper .input-field__inputmoney .input-field__inputmoney {
    width: 70%;
  }
}
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .input-field {
  position: relative;
}
@media screen and (max-width: 992px) {
  .donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .input-field {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .input-field .input-field__label,
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .input-field .input-field__label-active,
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .input-field .input-field__label-inactive {
  left: 5px;
  position: absolute;
  top: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #ffffff;
  margin: 0;
  padding: 0 3px;
  width: auto;
  color: var(--df-text-clr);
  z-index: 1;
  font-size: 16px;
  font-family: var(--font-base);
  font-weight: 400;
}
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .input-field .input-field__label label,
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .input-field .input-field__label-active label,
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .input-field .input-field__label-inactive label {
  padding: 0;
  margin: 0;
  line-height: normal;
}
@media screen and (max-width: 992px) {
  .donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .input-field .input-field__label,
  .donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .input-field .input-field__label-active,
  .donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .input-field .input-field__label-inactive {
    font-size: 14px;
  }
}
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .input-field input,
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .input-field textarea,
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .input-field .input-field__select {
  border: 1px solid #7F7F7F;
  border-radius: 0;
  background-color: #ffffff;
  height: 57px;
  font-size: 20px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-style: normal;
  font-family: var(--font-base);
  font-weight: 400;
  margin: 0;
}
@media screen and (max-width: 992px) {
  .donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .input-field input,
  .donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .input-field textarea,
  .donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .input-field .input-field__select {
    height: 45px;
    font-size: 16px;
  }
}
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .input-field input:focus,
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .input-field textarea:focus,
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .input-field .input-field__select:focus {
  border-color: var(--clr-base);
}
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .input-field textarea {
  height: 200px;
}
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .input-field .form_currency {
  font-size: 20px;
}
@media screen and (max-width: 992px) {
  .donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .input-field .form_currency {
    font-size: 16px;
  }
}
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .input-field .input-field__select {
  width: 100%;
  padding: 2px 30px 2px 15px;
  padding-right: 35px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(https://www.brot-fuer-die-welt.de/spenden/jetzt-helfen/file/?component=Customization&ft=image&file=chevron-down.svg);
  background-position: calc(100% - 10px) 50%;
  background-size: 15px 10px;
  background-repeat: no-repeat;
}
@media screen and (max-width: 991px) {
  .donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .input-field .input-field__select {
    padding-right: 30px;
    background-position: calc(100% - 5px) 50%;
    background-size: 15px 10px;
  }
}
@media screen and (max-width: 480px) {
  .donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .input-field .input-field__select {
    padding-right: 25px;
  }
}
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .input-field .input-field__select:focus, .donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .input-field .input-field__select:active {
  background-image: url(https://www.brot-fuer-die-welt.de/spenden/jetzt-helfen/file/?component=Customization&ft=image&file=chevron-up.svg);
}
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-main #kkarte .donation-form__field {
  margin-bottom: 0;
}
@media screen and (max-width: 992px) {
  .donation-form .donation-form__step .donation-form__step-container .donation-form__step-main #kkarte .donation-form__field .input-field {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-main #kkarte .form_label {
  font-family: var(--font-base);
  color: #000000 !important;
  font-size: 16px;
  font-weight: 400;
  left: 0;
  margin: 0;
  padding: 0;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  width: auto;
  line-height: 28.5px;
}
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-main #kkarte .form_label label {
  margin: 0;
}
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .error-field {
  margin: 5px 0 0;
}
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .error-field li,
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .error-field p {
  color: red;
  font-family: var(--font-base);
}
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .donation-form__second-person {
  padding: 30px 0 0;
  margin: 0;
}
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .donation-form__second-person.hide {
  display: none;
}
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .wrapper-add-person {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .wrapper-add-person .donation-form__add-person {
  width: auto;
  height: auto;
  background-color: #fff;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  font-size: 16px;
  margin-bottom: 0;
}
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .wrapper-add-person .donation-form__add-person:before, .donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .wrapper-add-person .donation-form__add-person:after {
  content: "+";
  font-family: var(--font-special);
  font-size: 16px;
  line-height: normal;
  position: relative;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  top: auto;
  left: auto;
  height: auto;
  width: auto;
  display: inline-block;
  margin-right: 5px;
}
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .wrapper-add-person .donation-form__add-person:after {
  content: "-";
  display: none;
}
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .wrapper-add-person .donation-form__add-person.donation-form__add-person--minus:before {
  display: none;
}
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .wrapper-add-person .donation-form__add-person.donation-form__add-person--minus:after {
  display: inline-block;
}
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .wrapper-add-person .more,
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .wrapper-add-person .less {
  position: relative;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  font-size: 16px;
  font-family: var(--font-special);
  font-weight: 700;
  line-height: normal;
  top: auto;
  left: auto;
  padding: 0;
}
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .wrapper-info .input-field__label,
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .wrapper-address .donation-form__label {
  font-family: var(--font-special);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  color: #000000;
}
@media screen and (max-width: 992px) {
  .donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .wrapper-info .input-field__label,
  .donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .wrapper-address .donation-form__label {
    font-size: 16px;
  }
}
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .tooltip.end,
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .donation-form__field-tooltip .tooltip-noaction {
  color: var(--df-text-clr);
  background-color: #fff;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  width: auto;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin-right: 5px;
}
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .donation-form__field-tooltip .tooltip-noaction {
  font-size: 13px;
}
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .donation-form__field-tooltip .tooltip-label {
  font-size: var(--font-base);
  font-size: 16px;
  font-style: normal;
  line-height: 22px;
  color: var(--df-text-clr);
}
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .wrapper-wantcertificate,
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .donation-form__field .check,
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .donation-form__field .radio {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .wrapper-wantcertificate .check__label,
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .wrapper-wantcertificate .radio__label,
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .donation-form__field .check .check__label,
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .donation-form__field .check .radio__label,
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .donation-form__field .radio .check__label,
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .donation-form__field .radio .radio__label {
  font-size: 16px;
  line-height: 1.5;
  font-size: var(--font-base);
  font-style: normal;
}
@media screen and (max-width: 992px) {
  .donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .wrapper-wantcertificate .check__label,
  .donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .wrapper-wantcertificate .radio__label,
  .donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .donation-form__field .check .check__label,
  .donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .donation-form__field .check .radio__label,
  .donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .donation-form__field .radio .check__label,
  .donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .donation-form__field .radio .radio__label {
    font-size: 14px;
  }
}
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .wrapper-wantcertificate .check__box,
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .wrapper-wantcertificate .radio__box,
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .donation-form__field .check .check__box,
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .donation-form__field .check .radio__box,
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .donation-form__field .radio .check__box,
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .donation-form__field .radio .radio__box {
  background-color: #fff;
  border: 1px solid black;
}
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .wrapper-wantcertificate .check__box,
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .donation-form__field .check .check__box,
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .donation-form__field .radio .check__box {
  border-radius: 0;
}
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-main .donation-form__field-tooltip {
  margin-bottom: 0;
}
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-footer {
  background-color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0 20px 15px;
}
@media screen and (max-width: 992px) {
  .donation-form .donation-form__step .donation-form__step-container .donation-form__step-footer {
    padding: 0 15px 15px;
  }
}
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-footer #paypal-express-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 435px) {
  .donation-form .donation-form__step .donation-form__step-container .donation-form__step-footer #paypal-express-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: self-end;
    -ms-flex-align: self-end;
    align-items: self-end;
  }
}
@media screen and (max-width: 435px) {
  .donation-form .donation-form__step .donation-form__step-container .donation-form__step-footer #paypal-express-container-ab-wrapper {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    width: 100%;
  }
}
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-footer .donation-form__btn-next {
  font-family: var(--font-special);
  font-weight: 700;
  border-radius: 0;
  font-size: 20px;
  padding: 5px 20px;
  min-height: 40px;
  line-height: normal;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  white-space: normal;
}
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-footer .donation-form__btn-next:after {
  content: none;
}
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-footer .donation-form__btn-next:hover, .donation-form .donation-form__step .donation-form__step-container .donation-form__step-footer .donation-form__btn-next:focus {
  color: #fff;
  outline: 2px solid var(--clr-base);
}
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-footer .wrapper-protection {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  display: block;
  text-align: left;
  padding-top: 15px;
}
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-footer .wrapper-protection p {
  font-family: var(--font-base);
  font-size: 12px;
}
.donation-form .donation-form__step .donation-form__step-container .donation-form__step-footer .wrapper-protection p:last-child {
  margin-bottom: 0;
}
.donation-form .donation-form__step.inactive .row.may-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.donation-form .donation-form__step.inactive .step-header__counter span {
  background-color: var(--clr-base);
}
.donation-form .donation-form__step.inactive .step-header__counter:after {
  background-color: var(--clr-base);
}
.donation-form .donation-form__step.inactive .donation-form__btn-prev {
  background-color: #fff;
  color: var(--clr-base);
  font-family: var(--font-special);
  font-weight: 700;
  font-size: 16px;
  padding: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.donation-form .donation-form__step.inactive .donation-form__btn-prev:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("https://www.brot-fuer-die-welt.de/spenden/jetzt-helfen/file/?component=Customization&ft=image&file=pencil.svg");
  margin-right: 5px;
}
@media screen and (max-width: 992px) {
  .donation-form .donation-form__step.inactive .donation-form__btn-prev {
    margin-left: 30px;
  }
}
@media screen and (max-width: 576px) {
  .donation-form .donation-form__step.inactive .donation-form__btn-prev {
    font-size: 0;
  }
}
.donation-form .donation-form__step.inactive .donation-form__step-header {
  border: none;
}
.donation-form .donation-form__step.inactive .donation-form__step-header .step-header__wrapper {
  margin-bottom: 0;
}
.donation-form .donation-form__step.inactive .donation-form__step-container .donation-form__step-main {
  padding: 10px 20px;
}
@media screen and (max-width: 992px) {
  .donation-form .donation-form__step.inactive .donation-form__step-container .donation-form__step-main {
    padding: 10px 15px;
    display: none;
  }
}
.donation-form .donation-form__step.inactive .donation-form__step-container .donation-form__step-main .form-col {
  -webkit-box-flex: 0 !important;
  -ms-flex: 0 0 100% !important;
  flex: 0 0 100% !important;
  padding: 0 15px !important;
}
.donation-form .donation-form__step.inactive .donation-form__step-container .donation-form__step-main .donation-form__field {
  margin-bottom: 10px;
  margin-top: 0;
}
.donation-form .donation-form__step.inactive .donation-form__step-container .donation-form__step-main .input-field .input-field__label,
.donation-form .donation-form__step.inactive .donation-form__step-container .donation-form__step-main .input-field .input-field__label-active,
.donation-form .donation-form__step.inactive .donation-form__step-container .donation-form__step-main .input-field .input-field__label-inactive {
  left: 0;
  top: 0;
  position: relative;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  background-color: #ffffff;
  margin: 0;
  padding: 0;
  width: auto;
  color: var(--df-text-clr);
  font-size: 16px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 11em;
  flex: 0 0 11em;
}
.donation-form .donation-form__step.inactive .donation-form__step-container .donation-form__step-main .input-field .input-field__value {
  font-size: 16px;
  color: #000000;
}
@media screen and (max-width: 992px) {
  .donation-form .donation-form__step.inactive .donation-form__step-container .donation-form__step-main .input-field .input-field__value {
    margin-left: 10px;
  }
}
.donation-form .donation-form__step.inactive .donation-form__step-container .donation-form__step-main .input-field .input-field__wrapper {
  display: none;
}
.donation-form .donation-form__step.inactive .donation-form__step-container .donation-form__step-main .wrapper-info .input-field__label,
.donation-form .donation-form__step.inactive .donation-form__step-container .donation-form__step-main .wrapper-address .donation-form__label {
  font-size: 16px;
  line-height: normal;
  margin: 20px 0 10px;
}
.donation-form .donation-form__step.inactive .donation-form__step-container .donation-form__step-main .check {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.donation-form .donation-form__step.inactive .donation-form__step-container .donation-form__step-main .check .input-field__value {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 11em;
  flex: 0 0 11em;
  color: var(--df-text-clr);
}
.donation-form .donation-form__step.inactive .donation-form__step-footer {
  display: none;
}
.donation-form .donation-form__step.inactive.disabled .donation-form__btn-prev.hide {
  display: none;
}
.donation-form .donation-form__step.inactive.disabled .step-header__counter span {
  background-color: #7f7f7f;
}
.donation-form .donation-form__step.inactive.disabled .step-header__counter:after {
  background-color: #7f7f7f;
}
.donation-form .donation-form__step.last .step-header__counter:after {
  content: none;
}

.intro.spakt {
  position: relative;
  padding: 0;
}
.intro.spakt .spakt-share {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding: 0;
}
.intro.spakt .spakt-share a {
  margin: 0;
  height: 57px;
  width: 174px;
  border-radius: 2px;
}
.intro.spakt .spakt-share a:before {
  width: 70px;
  font-size: 33px;
}
@media screen and (max-width: 576px) {
  .intro.spakt .spakt-share {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.intro.spakt .intro-header-section {
  padding: 194px 0 45px;
}
.intro.spakt .background {
  height: 390px;
}
.intro.spakt .background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.intro.spakt .btn {
  height: 57px;
}

.content-line {
  padding: 45px 0;
  margin: 0 auto;
  max-width: 1512px;
}
@media screen and (max-width: 992px) {
  .content-line {
    padding: 30px 0;
  }
}
.content-line.grey {
  background-color: rgb(251, 251, 251);
}
.content-line .newsletter-box label {
  left: 5px;
  position: absolute;
  top: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #ffffff;
  margin: 0;
  padding: 0 3px;
  width: auto;
  color: var(--df-text-clr);
  z-index: 1;
  font-size: 16px;
  font-family: var(--font-base);
  font-weight: 400;
  line-height: normal;
}
@media screen and (max-width: 992px) {
  .content-line .newsletter-box label {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .content-line .newsletter-box label {
    display: inline-block;
  }
}
.content-line .newsletter-box [type=text],
.content-line .newsletter-box .input-field__select {
  border: 1px solid #7F7F7F;
  border-radius: 0;
  background-color: #ffffff;
  height: 57px;
  font-size: 20px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-style: normal;
  font-family: var(--font-base);
  font-weight: 400;
  padding: 2px 30px 2px 15px;
  width: 100%;
}
@media screen and (max-width: 992px) {
  .content-line .newsletter-box [type=text],
  .content-line .newsletter-box .input-field__select {
    height: 45px;
    font-size: 16px;
  }
}
.content-line .newsletter-box [type=text]:focus,
.content-line .newsletter-box .input-field__select:focus {
  border-color: var(--clr-base);
}
.content-line .newsletter-box .btn {
  min-height: 57px;
  height: 57px;
}
@media screen and (max-width: 992px) {
  .content-line .newsletter-box .btn {
    min-height: 45px;
    height: 45px;
    width: 100%;
  }
}
@media screen and (max-width: 992px) {
  .content-line .newsletter-box .row {
    padding: 0 15px;
  }
}