@charset "UTF-8";
@font-face {
  font-family: Basier;
  src: url(../assets/fonts/basier-circle/BasierCircle-Regular.woff) format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Basier;
  src: url(../assets/fonts/basier-circle/BasierCircle-Medium.woff) format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
body {
  font-family: Basier, sans-serif;
  max-width: 100vw;
  overflow-x: hidden;
  overflow-y: auto;
}

.range-wrap {
  position: relative;
}
.range-wrap:after {
  position: absolute;
  top: 16px;
  height: 3px;
  width: 100%;
  background-color: #FF4E00;
  content: "";
  left: 0;
  z-index: -1;
  border: none;
  opacity: 1;
}
.range-wrap input[type=range] {
  position: relative;
  z-index: 2;
}

input[type=text] + input[type=range] {
  margin-top: 1.8rem;
}
@media screen and (max-width: 767px) {
  input[type=text] + input[type=range] {
    margin-top: 1.2rem;
  }
}

input[type=range] {
  -webkit-appearance: none;
  margin-right: 0;
  width: 100%;
  height: 3px;
  background: #D9D9D9;
  border-radius: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#003366), to(#003366));
  background-image: linear-gradient(#003366, #003366);
  background-size: 70% 100%;
  background-repeat: no-repeat;
}

/* Input Thumb */
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 21px;
  width: 21px;
  border-radius: 50%;
  background: white;
  border: 3px solid #003366;
  cursor: ew-resize;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
}

input[type=range]::-moz-range-thumb {
  -webkit-appearance: none;
  height: 21px;
  width: 21px;
  border-radius: 50%;
  background: white;
  border: 3px solid #003366;
  cursor: ew-resize;
  box-shadow: none;
  -moz-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
}

input[type=range]::-ms-thumb {
  -webkit-appearance: none;
  height: 21px;
  width: 21px;
  border-radius: 50%;
  background: white;
  border: 3px solid #003366;
  cursor: ew-resize;
  box-shadow: none;
  -ms-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
}

@media screen and (max-width: 767px) {
  input[type=range]::-webkit-slider-thumb {
    height: 26px;
    width: 26px;
  }
  input[type=range]::-moz-range-thumb {
    height: 26px;
    width: 26px;
  }
  input[type=range]::-ms-thumb {
    height: 26px;
    width: 26px;
  }
}
/* Input Track */
input[type=range]::-webkit-slider-runnable-track {
  -webkit-appearance: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
  background: transparent;
}

input[type=range]::-moz-range-track {
  -webkit-appearance: none;
  box-shadow: none;
  border: none;
  background: transparent;
}

input[type=range]::-ms-track {
  -webkit-appearance: none;
  box-shadow: none;
  border: none;
  background: transparent;
}

.form-control {
  padding: 1.25rem;
  height: 73px;
  font-size: 1.5rem;
  line-height: 1;
  color: #003366;
  background-color: #F3F3F3;
  border-radius: 2px;
  border-color: #D9D9D9;
  border-width: 1px;
}
.form-control:focus {
  border-color: #003366;
}
.form-control::-webkit-input-placeholder {
  color: #D9D9D9;
}
.form-control::-moz-placeholder {
  color: #D9D9D9;
}
.form-control:-ms-input-placeholder {
  color: #D9D9D9;
}
.form-control::-ms-input-placeholder {
  color: #D9D9D9;
}
.form-control::placeholder {
  color: #D9D9D9;
}
@media screen and (max-width: 991px) {
  .form-control {
    height: 56px !important;
    padding: 0.875rem !important;
    font-size: 1.25rem !important;
  }
}
@media screen and (min-width: 991px) {
  .calculator-inputform .col-input {
    padding-top: 20px;
  }
}

.calculator-inputform .col-input label {
  font-weight: bold;
  color: #003366;
  font-size: 1rem;
}
@media screen and (max-width: 991px) {
  .calculator-inputform .col-input label {
    margin-bottom: 0.2rem;
  }
}

input[type=text].form-control-specialvalue.form-control-years {
  background-image: none;
}

input[type=text].form-control-specialvalue.form-control-currency, input[type=text].form-control-years, input[type=text].form-control-specialvalue.form-control-rate {
  background-image: none !important;
  padding-left: 3.4375rem;
  position: relative;
  display: block;
}
@media screen and (max-width: 991px) {
  input[type=text].form-control-specialvalue.form-control-currency, input[type=text].form-control-years, input[type=text].form-control-specialvalue.form-control-rate {
    padding-left: 2.9375rem !important;
  }
}

label[for=kreditsumme]::after, label[for=rate]::after {
  content: "€";
}

label[for=laufzeit]::after {
  content: "Jahre";
}

#zinsaenderung-info::after {
  content: "%";
}

@media screen and (max-width: 991px) {
  #btn-vergleichen {
    margin-top: 0.5rem !important;
  }
}

label[for=kreditsumme], label[for=rate], label[for=laufzeit], #zinsaenderung-info {
  position: relative;
  z-index: 2;
}
label[for=kreditsumme]::after, label[for=rate]::after, #zinsaenderung-info::after {
  color: black;
  position: absolute;
  font-weight: normal;
  top: 100%;
  line-height: 1.45;
  padding: 1.25rem;
  left: 0;
  display: block;
  font-size: 1.5rem;
}

label[for=laufzeit]::after {
  color: #003366;
  position: absolute;
  font-weight: normal;
  top: 100%;
  line-height: 1.45;
  padding: 1.25rem;
  left: 7rem;
  display: block;
  font-size: 1.5rem;
}

@media screen and (max-width: 991px) {
  label[for=kreditsumme]::after, label[for=rate]::after, label[for=laufzeit]::after, #zinsaenderung-info::after {
    margin-top: 0.2rem;
    padding: 0.875rem;
    font-size: 1.25rem;
  }
}

@media screen and (max-width: 991px) {
  #zinsaenderung-info::after {
    margin-top: 0;
  }
}

.calculator-inputform, #frmAnfragen {
  margin-bottom: 2.9rem;
}
.calculator-inputform #buttonControl, #frmAnfragen #buttonControl {
  margin-top: 2rem;
}

@media screen and (max-width: 991px) {
  .row-newsletter .form-group {
    border-top: 1px solid #003366;
    padding-top: 1.25rem;
  }
}

@media screen and (max-width: 991px) {
  #frmAnfragen {
    margin-bottom: 2rem !important;
  }
}
.btn[type=submit], #buttonControl {
  font-size: 1.5rem;
  padding: 1rem 1.875rem !important;
  border-color: #69CD3A !important;
  background-color: #69CD3A !important;
  border-radius: 2px;
  display: inline-block !important;
  line-height: 1.333;
  min-width: 0;
}
@media screen and (min-width: 992px) {
  .btn[type=submit], #buttonControl {
    width: 80%;
  }
}
.btn[type=submit]:hover, .btn[type=submit]:active, .btn[type=submit]:focus, #buttonControl:hover, #buttonControl:active, #buttonControl:focus {
  color: #FFF !important;
  background-color: #80d558 !important;
  border-color: #80d558 !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
.btn[type=submit] .sk-fading-circle--color-primary .sk-circle:before, #buttonControl .sk-fading-circle--color-primary .sk-circle:before {
  background-color: white;
}
@media screen and (max-width: 991px) {
  .btn[type=submit], #buttonControl {
    padding: 1rem 1.875rem !important;
    font-size: 1rem;
    line-height: 1;
  }
}

.form-control.is-invalid, .was-validated .form-control:invalid {
  border-color: #FF4E00 !important;
  padding-right: calc(1.7em + 0.4rem) !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23EA5E20' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23EA5E20' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.425em + 0.1rem) center;
  background-size: calc(0.85em + 0.2rem) calc(0.85em + 0.2rem);
}

.invalid-feedback {
  font-size: 1rem;
}

@media screen and (max-width: 991px) {
  .col-info .col-12.col-lg-6 {
    -webkit-box-flex: 0 !important;
    -ms-flex: 0 0 50% !important;
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }
  .col-info .col-12.col-lg-6 .calculation-label {
    display: block;
    font-size: 0.75rem;
    margin-top: 0rem;
  }
}
.col-info label, .col-info .form-group-info-icon-input {
  font-size: 1rem;
  position: relative;
  color: #003366;
  display: block;
}
@media screen and (max-width: 991px) {
  .col-info label, .col-info .form-group-info-icon-input {
    font-weight: bold;
  }
}
.col-info label .icon, .col-info .form-group-info-icon-input .icon {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-top: 0;
  margin-bottom: 0;
}
@media screen and (min-width: 992px) {
  .col-info label, .col-info .form-group-info-icon-input {
    font-size: 1.5rem;
  }
}
.col-info label > span, .col-info label > label, .col-info .form-group-info-icon-input > span, .col-info .form-group-info-icon-input > label {
  display: inline-block;
}
.col-info label ~ span[type=text], .col-info .form-group-info-icon-input ~ span[type=text] {
  font-size: 1.9rem;
  font-weight: bold;
  color: #003366;
}
@media screen and (max-width: 991px) {
  .col-info label ~ span[type=text], .col-info .form-group-info-icon-input ~ span[type=text] {
    line-height: 1;
    margin-top: 0.2rem;
    display: inline-block;
  }
}
@media screen and (min-width: 1200px) {
  .col-info label ~ span[type=text], .col-info .form-group-info-icon-input ~ span[type=text] {
    font-size: 2.75rem;
  }
}
.col-info label ~ span[type=text]:not(:empty)::after, .col-info .form-group-info-icon-input ~ span[type=text]:not(:empty)::after {
  content: " €";
}
.col-info label ~ span[type=text]#entlastungspotential, .col-info .form-group-info-icon-input ~ span[type=text]#entlastungspotential {
  font-size: 3rem;
}
@media screen and (min-width: 992px) {
  .col-info label ~ span[type=text]#entlastungspotential, .col-info .form-group-info-icon-input ~ span[type=text]#entlastungspotential {
    font-size: 4rem;
  }
}
@media screen and (min-width: 1200px) {
  .col-info label ~ span[type=text]#entlastungspotential, .col-info .form-group-info-icon-input ~ span[type=text]#entlastungspotential {
    font-size: 4rem;
  }
}
.col-info label ~ span[type=text]:empty + .calculation-label, .col-info .form-group-info-icon-input ~ span[type=text]:empty + .calculation-label {
  display: none;
}
.col-info .row {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.entlastungspotential {
  padding-bottom: 25px;
  border-bottom: 1px solid #003366;
  margin-bottom: 1rem;
  padding-right: 2rem;
}
.entlastungspotential > label {
  padding-bottom: 10px;
}
@media screen and (min-width: 991px) {
  .entlastungspotential {
    padding-bottom: 0;
  }
  .entlastungspotential > label {
    padding-bottom: 0px;
  }
}
@media screen and (min-width: 1200px) {
  .col-info .row > div.form-group {
    padding-right: 3.75rem;
  }
}
.col-info .row > div.form-group + .form-group {
  border-left: 1px solid #003366;
  padding-left: 2rem;
  padding-right: 0;
}
@media screen and (min-width: 1200px) {
  .col-info .row > div.form-group + .form-group {
    padding-left: 3.75rem;
  }
}
.col-info p.small {
  line-height: 1.333;
}
.col-info p.small strong:first-child {
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.col-info p.small strong:first-child + br {
  display: none;
}
@media screen and (min-width: 992px) {
  .col-info p.small strong:first-child {
    font-size: 1rem;
    color: #003366;
  }
}
.col-info .form-group {
  white-space: nowrap;
}

.calculator-summary {
  margin: 0;
}
.calculator-summary > div > div {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (min-width: 992px) {
  .calculator-summary > div > div > div:first-child {
    border-right: 1px solid #003366;
    padding-right: 2rem;
  }
}
@media screen and (min-width: 1200px) {
  .calculator-summary > div > div > div:first-child {
    padding-right: 8rem;
  }
}
@media screen and (min-width: 1280px) {
  .calculator-summary > div > div > div:first-child {
    padding-right: 8rem;
  }
}
@media screen and (min-width: 992px) {
  .calculator-summary > div > div > div:last-child {
    padding-left: 2rem;
  }
}
@media screen and (min-width: 1200px) {
  .calculator-summary > div > div > div:last-child {
    padding-left: 8rem;
  }
}
@media screen and (min-width: 1280px) {
  .calculator-summary > div > div > div:last-child {
    padding-left: 8rem;
  }
}
.calculator-summary .calculator-summary-contactform {
  margin: 0 !important;
}
@media screen and (max-width: 991px) {
  .calculator-summary .calculator-summary-contactform {
    margin-left: -18px !important;
    margin-right: -18px !important;
  }
}
.calculator-summary .calculator-summary-contactform .form-control {
  height: 65px;
  font-size: 1.25rem;
}
.calculator-summary .calculator-summary-contactform .form-group {
  margin-bottom: 0.5rem;
}
.calculator-summary .calculator-summary-contactform h4 {
  font-weight: bold !important;
  color: #003366 !important;
  font-size: 2.25rem;
}
@media screen and (max-width: 991px) {
  .calculator-summary .calculator-summary-contactform h4 {
    font-size: 1.5rem;
  }
}
.calculator-summary #into-kontaktformular, #ueberschrift {
  font-size: 1.5rem;
  line-height: 1.3333;
  margin-bottom: 2rem;
}
@media screen and (min-width: 1200px) {
  .calculator-summary #into-kontaktformular, #ueberschrift {
    width: 80%;
  }
}
@media screen and (max-width: 991px) {
  .calculator-summary #into-kontaktformular, #ueberschrift {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
}
.calculator-summary label[for=termintyp] {
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 2rem;
  color: #003366;
  margin-bottom: 1.75rem;
}
@media screen and (max-width: 991px) {
  .calculator-summary label[for=termintyp] {
    font-size: 1rem;
    margin-top: 1rem;
  }
}
.calculator-summary .row-termintyp {
  margin-bottom: 0.75rem;
}
.calculator-summary .row-termintyp > div {
  width: 100% !important;
  max-width: 100% !important;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
}
.calculator-summary .row-termintyp > div > .form-group {
  border-bottom: 1px solid #003366;
  padding-bottom: 1.75rem;
}
.calculator-summary .row-termintyp > div > .form-group > div {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.calculator-summary .row-termintyp > div > .form-group > div > label {
  margin-bottom: 1rem;
}
.calculator-summary .row-termintyp label {
  cursor: pointer;
}
.calculator-summary #frmAnfragen > .row:not(.row-termintyp) label {
  font-weight: bold;
  color: #003366;
}
.calculator-summary #frmAnfragen > .col-12:last-child {
  padding: 0;
}
.calculator-summary input[name=termintyp] {
  opacity: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.calculator-summary input[name=termintyp] + span {
  display: inline-block;
  position: relative;
  font-weight: bold;
  color: #003366;
  padding-left: 40px;
  margin-right: 2.5rem;
}
.calculator-summary input[name=termintyp] + span:before {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  border: 1px solid #D9D9D9;
  display: block;
  left: 0;
  top: 50%;
  margin-top: -15px;
  border-radius: 100%;
  pointer-events: none;
}
.calculator-summary input[name=termintyp] + span:after {
  left: 3.5px;
  width: 23px;
  height: 23px;
  background-color: #003366;
  top: 50%;
  content: "";
  position: absolute;
  margin-top: -11.5px;
  border-radius: 100%;
  -webkit-transition: -webkit-transform 250ms ease;
  transition: -webkit-transform 250ms ease;
  transition: transform 250ms ease;
  transition: transform 250ms ease, -webkit-transform 250ms ease;
  -webkit-transform: scale(0);
  transform: scale(0);
  pointer-events: none;
}
.calculator-summary input[name=termintyp]:checked + span:after {
  -webkit-transform: scale(1);
  transform: scale(1);
}
.calculator-summary .custom-control-label {
  padding-top: 0.45rem;
  font-weight: normal !important;
  color: black !important;
}
.calculator-summary .custom-control-label::before, .calculator-summary .custom-control-label::after {
  width: 1.875rem;
  height: 1.875rem;
  left: -3.125rem;
}
.calculator-summary .custom-control-label::before {
  border: 1px solid #D9D9D9;
  background-color: #F3F3F3;
}
.calculator-summary .custom-control {
  padding-left: 3.125rem;
}
.calculator-summary .custom-control-input {
  width: 1.875rem;
  height: 1.875rem;
}

.calculator-summary-col-right {
  background-color: transparent !important;
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  .calculator-summary-col-right {
    margin-left: -12px !important;
    margin-right: -12px !important;
  }
}
.calculator-summary-col-right h4.summary-table-header {
  color: #003366 !important;
  margin-bottom: 2rem;
}
@media screen and (max-width: 991px) {
  .calculator-summary-col-right h4.summary-table-header {
    display: none !important;
  }
}
.calculator-summary-col-right .summary-table-item:not(.last-item) {
  display: table;
  width: 100%;
  border-bottom: 1px solid #003366;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  padding-top: 0;
  margin-top: 0;
}
@media screen and (max-width: 991px) {
  .calculator-summary-col-right .summary-table-item:not(.last-item) .form-control {
    height: 1em !important;
    padding: 0 !important;
    font-size: 1rem !important;
  }
}
.calculator-summary-col-right .summary-table-item:not(.last-item) > * {
  display: table-cell;
}
.calculator-summary-col-right .summary-table-item:not(.last-item) > *:first-child {
  font-weight: bold;
  color: #003366;
  white-space: nowrap;
}
.calculator-summary-col-right .summary-table-item:not(.last-item) > *:last-child {
  text-align: right;
  font-weight: normal;
}
.calculator-summary-col-right .summary-table-item:not(.last-item) .btn-link-icon span {
  color: #003366;
  top: 0;
  font-size: 0.75rem !important;
}
.calculator-summary-col-right .summary-table-item.last-item {
  border: none;
}
.calculator-summary-col-right .summary-table-item.last-item > *:first-child {
  font-weight: bold;
  color: #003366;
  display: block;
}
.calculator-summary-col-right .summary-table-item.last-item > *[type=text] {
  font-size: 3rem;
  margin-top: -0.8rem;
  display: inline-block;
  font-weight: bold;
  color: #003366;
}
@media screen and (min-width: 991px) {
  .calculator-summary-col-right .summary-table-item.last-item > *[type=text] {
    font-size: 4rem;
  }
}
.calculator-summary-col-right .summary-table-item.last-item > *[type=text]:empty + .summary-label {
  display: none;
}
.calculator-summary-col-right .summary-table-item.last-item > *.summary-label {
  font-size: 1rem;
}
@media screen and (min-width: 1440px) {
  .calculator-summary-col-right .summary-table-item.last-item > *.summary-label {
    font-size: 1.5rem;
  }
}
.calculator-summary-col-right .summary-table-item.last-item + br {
  display: none;
}
.calculator-summary-col-right .summary-table-item.last-item + br + p {
  margin-top: -0.2rem !important;
}
.calculator-summary-col-right .summary-table {
  color: black;
  background-color: transparent;
  padding-left: 0;
  padding-right: 0;
}
@media screen and (max-width: 991px) {
  .calculator-summary-col-right .summary-table {
    padding-bottom: 1.25rem;
    padding-top: 0;
  }
}
.calculator-summary-col-right .summary-table-item .form-control {
  color: black;
}
.calculator-summary-col-right .col-12.pl-1.pr-1 {
  padding: 0 !important;
}
.calculator-summary-col-right .col-12.pl-1.pr-1 .btn {
  display: none;
}
.calculator-summary-col-right .col-12.pl-1.pr-1 .caret {
  display: none;
}
.calculator-summary-col-right .col-12.pl-1.pr-1 h4.beispiel-ind {
  font-size: 1.25rem;
  margin-top: 1rem;
}
@media screen and (max-width: 991px) {
  .calculator-summary-col-right .col-12.pl-1.pr-1 h4.beispiel-ind {
    margin-top: 0;
    font-size: 1.25rem;
    margin-bottom: 0.5rem !important;
  }
}
@media screen and (max-width: 991px) {
  .calculator-summary-col-right .col-12.pl-1.pr-1 .konditionen-container {
    padding-right: 12px !important;
    padding-left: 12px !important;
    padding-top: 0 !important;
  }
}
@media screen and (min-width: 992px) {
  .calculator-summary-col-right .col-12.pl-1.pr-1 .beispiel-rep-rahmen .col-lg-6 {
    -webkit-box-flex: 0 !important;
    -ms-flex: 0 0 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  .calculator-summary-col-right .col-12.pl-1.pr-1 .beispiel-rep-rahmen .col-lg-6:last-child {
    font-size: 0.75rem;
  }
}
@media screen and (min-width: 992px) {
  .calculator-summary-col-right .col-12.pl-1.pr-1 .list-table-item {
    font-size: 0.75rem;
  }
}

.cmd-beispielInd, #headline-beispiel-rep {
  color: #003366 !important;
  font-size: 1rem !important;
}

.btn-link-icon .icon {
  font-size: 1.5rem;
  top: -2px;
}

.toggle-container-content {
  padding: 0;
}

#toggleBeispielRep {
  position: relative;
  z-index: 9;
  /*
    @media screen and (min-width: 992px) {
      width: calc(171.4285% + 2rem);
    }
    @media screen and (min-width: 1200px) {
      width: calc(149.999999999% + 4rem);
    }

    @media screen and (min-width: 1280px) {
      width: calc(149.999999999% + 8rem);
    }
  */
}
#toggleBeispielRep .btn-close {
  display: none;
}
#toggleBeispielRep .caret {
  display: none;
}
#toggleBeispielRep .btn.beispiel-rep {
  padding-left: 0;
  padding-right: 0;
  color: #003366;
  line-height: 1;
  opacity: 1;
  position: relative;
  display: inline;
  background-image: -webkit-gradient(linear, left top, left bottom, from(currentColor), to(currentColor));
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  -webkit-transition: background-size 250ms ease;
  transition: background-size 250ms ease;
  background-size: 100% 1px;
  background-position: 0% 100%;
  margin-right: 1.75rem;
}
#toggleBeispielRep .btn.beispiel-rep.disabled {
  background-position: 100% 100%;
  background-size: 0% 1px;
}
#toggleBeispielRep .btn.beispiel-rep.disabled:hover {
  background-size: 100% 1px;
  background-position: 0% 100%;
}
#toggleBeispielRep .toggle-container-color-secondary {
  border: none !important;
}
@media screen and (min-width: 992px) {
  #toggleBeispielRep .toggle-container-color-secondary .col-lg-6 {
    -webkit-box-flex: 0 !important;
    -ms-flex: 0 0 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  #toggleBeispielRep .toggle-container-color-secondary .col-lg-6:last-child {
    font-size: 0.75rem;
  }
}

.list-table-item {
  margin: 0;
  border-color: #003366;
}
.list-table-item > * {
  padding: 0;
}

.form-group {
  position: relative;
}

.thank-you {
  color: #003366;
}
.thank-you .h1, .thank-you .h2, .thank-you .h3, .thank-you .h4, .thank-you .h5, .thank-you .h6, .thank-you h1, .thank-you h2, .thank-you h3, .thank-you h4, .thank-you h5, .thank-you h6 {
  color: #003366;
}
@media screen and (min-width: 992px) {
  .thank-you .content {
    max-width: calc(100% - 216px - 3rem);
  }
}
.thank-you .content h1 {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 0.2rem;
}
.thank-you .content p {
  font-size: 1.5rem;
  margin-bottom: 0;
}
@media screen and (max-width: 991px) {
  .thank-you .content {
    -webkit-box-flex: 100%;
    -ms-flex: 100%;
    flex: 100%;
    text-align: center;
  }
  .thank-you .content h1 {
    font-size: 1.5rem;
  }
  .thank-you .content p {
    font-size: 1rem;
  }
}
.thank-you svg {
  width: 216px;
  height: 216px;
}
@media screen and (max-width: 991px) {
  .thank-you svg {
    width: 144px;
    height: 144px;
    margin-bottom: 40px;
  }
}
.thank-you .inner {
  background-color: #F3F3F3;
}
@media screen and (min-width: 992px) {
  .thank-you .inner {
    height: 430px;
  }
}
@media screen and (max-width: 991px) {
  .thank-you .inner {
    text-align: center;
    padding: 60px 30px;
  }
}
@media screen and (max-width: 767px) {
  .thank-you .inner {
    margin-left: -12px;
    margin-right: -12px;
  }
}

#frmDanke {
  margin-top: 90px;
  margin-bottom: 90px;
}
@media screen and (max-width: 767px) {
  #frmDanke {
    margin-top: 36px;
    margin-bottom: 36px;
  }
}
#frmDanke .h1 {
  font-size: 3rem;
  color: #003366;
}
@media screen and (max-width: 767px) {
  #frmDanke .h1 {
    font-size: 1.5rem;
  }
}
#frmDanke .btn {
  width: auto;
}
@media screen and (max-width: 767px) {
  #frmDanke .col {
    -webkit-box-flex: 100%;
    -ms-flex: 100%;
    flex: 100%;
  }
  #frmDanke .text-right {
    text-align: left !important;
  }
}