.abo-formular{
  --primary-color: #0057a0;
  --secondary-color: #0092d9;
  --special-color: #c11e1e;

}

.abo-formular .aboart{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.abo-title {
  text-align: center;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.65rem;
  text-transform: uppercase;
}

.abo-title span {
  display: block;
  text-transform: none;
  font-weight: normal;
  font-size: 1.3rem;
  border-bottom: 1px solid #cdcdcd;
  padding-bottom: 5px;
  margin-bottom: 10px;
}

.abo-price {
  color:var(--primary-color);
  font-size: 1.7rem;
  text-align: center;
  margin-bottom: 10px;
  margin-top: 10px;
  font-weight: 600;
}

.abo-price span {
  font-size: 0.8rem;
  font-weight: normal;
  display: block;
}

.abo-description {
  font-weight: 300;
}

.abo-formular .aboart .abo-notice {
  font-size: 1.45rem;
  color:var(--primary-color);
  font-weight: bold;
  text-align: center;
}

.abo-formular .aboart ul {
  list-style: none;
  /* Remove default bullets */
  padding-left: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.abo-formular .aboart ul li::before {
  content: "\2022";
  /* Add content: \2022 is the CSS Code/unicode for a bullet */
  color:var(--primary-color);
  /* Change the color */
  font-weight: bold;
  /* If you want it to be bold */
  display: inline-block;
  /* Needed to add space between the bullet and the text */
  width: 1em;
  /* Also needed for space (tweak if needed) */
  margin-left: -1em;
  /* Also needed for space (tweak if needed) */
}

.abo-formular .aboart.abo-special {
  background: url('../images/Aktion_Ribbon.png') no-repeat top left;
  background-size: 80px;
}


.abo-formular .aboart.abo-special .abo-notice,
.abo-formular .aboart.abo-special .abo-title,
.abo-formular .aboart.abo-special .abo-price {
  color: var(--special-color);
}

.abo-formular .aboart.abo-special .btn-primary {
  background-color: var(--special-color);
  border-color: var(--special-color);
}

.abo-formular .aboart.abo-special .btn-primary:hover,
.abo-formular .aboart.abo-special .btn-primary:focus,
.abo-formular .aboart.abo-special .btn-primary:active {
  background-color: #ab1b1b;
  border-color: #951717;
}

.abo-formular .aboart.abo-special .btn-primary.disabled:hover,
.abo-formular .aboart.abo-special .btn-primary.disabled:focus,
.abo-formular .aboart.abo-special .btn-primary.disabled:active {
  background-color: var(--special-color);
  border-color: var(--special-color);
}

.abo-formular .rewards {
  display: flex;
  gap: 20px;
}

.abo-formular .rewards.summary {
  flex-direction: column;
  align-items: stretch;
}

.rewards .reward-image {
  max-width: 270px;
  height: auto;
  width: 100%;
  flex-grow: 0;
  flex-shrink: 0;
}

.reward-title {
  color:var(--primary-color);
  font-size: 1.65rem;
}

.reward-title span {
  display: block;
  text-transform: none;
  font-weight: normal;
  font-size: 1.3rem;
  border-bottom: 1px solid #cdcdcd;
  padding-bottom: 5px;
  margin-bottom: 10px;
}

.abo-formular .rewards .title.center {
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
}

.reward-content {
  flex-basis: 100%;
}

.abo-formular .abo-card-wrapper {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.abo-formular .abo-card {
  border: 1px solid #DDE3EC;
  padding: 15px 15px;
  margin-bottom: 25px;
  margin-top: 30px;
  position: relative;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 48%;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  border-radius: 5px;
}

.abo-formular .abo-card:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.abo-formular .form-group {
  position: relative;
  margin-bottom: 1.5rem;
}

/*
.abo-formular .checkbox label,
.abo-formular .radio label {
  min-height: 20px;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: 400;
  cursor: pointer;
}
.abo-formular input[type=checkbox],
.abo-formular input[type=radio] {
  margin: 4px 0 0;
  position: absolute;
  margin-top: 4px\9;
  margin-left: -20px;
  line-height: normal;
  padding: 0;
}
*/

.abo-formular .form-group2 {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 0;
  z-index: -1;
}

.abo-formular .payment_sepa_info.open {
  display: block;
  max-height: 500px;
}

.abo-formular .shipping.open {
  max-height: 700px;
}

.abo-formular .shipping .form-subtitle{
  margin-top: 10px;
}

.abo-formular .closed {
  overflow: hidden;
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 0;
  transition: all 0.8s ease, opacity 1s ease;
  will-change: transform;
  opacity: 0;
}

.abo-formular .open {
  max-height: 100px;
  overflow: hidden;
  transition: all 0.8s ease, opacity .5s ease;
  will-change: transform;
  opacity: 1;
}

.abo-help-notice {
  padding-top: 40px;
  padding-bottom: 50px;
  font-size: 1.1rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.abo-help-notice .help-text {
  padding-left: 10px;
}

.abo-help-notice .help-title {
  font-size: 1.55rem;
  font-weight: bold;
}

.abo-formular .ssl-notice {
  font-size: 0.9rem;
  padding-top: 20px;
}

.abo-formular .ssl-notice img {
  margin: 10px 0;
  max-width: 200px;
  display: block;
}

.abo-formular .checkout {
  max-width: 750px;
  margin: 0 auto;
  padding: 0 50px;
}

.abo-formular .checkout-summary {
  padding-top: 10px;
  padding-bottom: 40px;
}

.abo-formular .confirm-title {
  font-size: 1.3rem;
  font-weight: bold;
  padding-bottom: 7px;
}

.abo-formular .abo-check-mark {
  float: left;
  padding-right: 20px;
}

.abo-formular .confirm::after {
  content: "";
  clear: both;
  display: table;
}

.abo-notice-print {
  color: #111;
  background-color: #ebebeb;
  border: 1px solid #6c6c6c;
  padding: 10px;
  margin-bottom: 15px;
  margin-top: 15px;
}


.alert {
  width: 100%;
  margin: 30px auto;
  padding: 25px;
  position: relative;
  border-radius: 0;
  box-shadow: 0 0 15px 0 #ccc;
  border-left: 5px solid transparent;
  font-size: 1.1rem;
  line-height: 1.2;
}
.simple-alert {
  background-color: #ebebeb;
  border-color: #6c6c6c;
}
.info-alert {
  background-color: #d9edf7;
  border-color: #31708f;
}
.success-alert {
  background-color: #a8f0c6;
  border-color: #178344;
}
.danger-alert {
  background-color: #f7a7a3;
  border-color: #8f130c;
}
.warning-alert {
  background-color: #ffd48a;
  border-color: #8a5700;
}

@media (max-width: 720px) {
  .cd-breadcrumb {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: none;
  }
  .cd-breadcrumb.triangle li > * {
    display: block;
    padding: 5px 10px;
    color: #2c3f4c;
    background-color: #edeff0;
    /* the border color is used to style its ::after pseudo-element */
    border-color: #edeff0;
  }
  .cd-breadcrumb.triangle li.done > * {
    /* selected step */
    color: #ffffff;
    background-color:var(--primary-color);
    border-color:var(--primary-color);
  }
  .cd-breadcrumb.triangle li.current > * {
    /* selected step */
    color: #ffffff;
    border-color: var(--secondary-color);
    background-color: var(--secondary-color);
    font-weight: bold;
  }
}
@media (min-width: 720px) {
  .steps {
    margin: 0 0 20px;
  }
  .cd-breadcrumb {
    max-width: 100%;
    width: 100%;
    padding: 0.5em 1em;
    margin: 0;
    background-color: #edeff0;
    border-radius: .25em;
    display: table;
  }
  
  .cd-breadcrumb li {
    /*display: inline-block;
      float: left;*/
    display: table-cell;
    margin: 0.5em 0;
  }

  .cd-breadcrumb li::after {
    /* this is the separator between items */
    display: inline-block;
    content: '\00bb';
    margin: 0 .6em;
    color: #959fa5;
  }

  .cd-breadcrumb li:last-of-type::after {
    /* hide separator after the last item */
    display: none;
  }

  .cd-breadcrumb li > * {
    /* single step */
    display: inline-block;
    font-size: 1.15rem;
    color: #2c3f4c;
    line-height: 1;
    width: 100%;
  }

  .cd-breadcrumb li.current > * {
    /* selected step */
    color: #96c03d;
  }
  .cd-breadcrumb li {
    margin: 1.2em 0;
  }
  .cd-breadcrumb li::after {
    margin: 0 1em;
  }
  .cd-breadcrumb.triangle {
    /* reset basic style */
    background-color: transparent;
    padding: 0;
  }
  .cd-breadcrumb.triangle li {
    position: relative;
    padding: 0;
    margin: 4px 4px 4px 0;
  }
  .cd-breadcrumb.triangle li:last-of-type {
    margin-right: 0;
  }
  .cd-breadcrumb.triangle li > * {
    position: relative;
    padding: 1em .8em 1em 2.0em;
    color: #2c3f4c;
    background-color: #edeff0;
    /* the border color is used to style its ::after pseudo-element */
    border-color: #edeff0;
  }

  .cd-breadcrumb.triangle li.done > * {
    /* selected step */
    color: #ffffff;
    background-color:var(--primary-color);
    border-color:var(--primary-color);
  }
  .cd-breadcrumb.triangle li.current > * {
    /* selected step */
    color: #ffffff;
    border-color: var(--secondary-color);
    background-color: var(--secondary-color);
    font-weight: bold;
  }
  .cd-breadcrumb.triangle li:first-of-type > * {
    padding-left: 0.6em;
  }
  .cd-breadcrumb.triangle li:last-of-type > * {
    padding-right: 1.6em;
  }
  .cd-breadcrumb.triangle li a:hover {
    /* steps already visited */
    color: #ffffff;
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    text-decoration: none;
  }
  .cd-breadcrumb.triangle li::after,
  .cd-breadcrumb.triangle li > *::after {
    /* 
            li > *::after is the colored triangle after each item
            li::after is the white separator between two items
        */
    position: absolute;
    top: 0;
    left: 100%;
    content: '';
    height: 0;
    width: 0;
    /* 48px is the height of the <a> element */
    border: 27px solid transparent;
    border-right-width: 0;
    border-left-width: 20px;
  }
  .cd-breadcrumb.triangle li::after {
    /* this is the white separator between two items */
    z-index: 1;
    -webkit-transform: translateX(2px);
    -moz-transform: translateX(2px);
    -ms-transform: translateX(2px);
    -o-transform: translateX(2px);
    transform: translateX(2px);
    border-left-color: #ffffff;
    /* reset style */
    margin: 0;
  }
  .cd-breadcrumb.triangle li > *::after {
    /* this is the colored triangle after each element */
    z-index: 2;
    border-left-color: inherit;
  }
  .cd-breadcrumb.triangle li:last-of-type::after,
  .cd-breadcrumb.triangle li:last-of-type > *::after {
    /* hide the triangle after the last step */
    display: none;
  }
  @-moz-document url-prefix() {
    .cd-breadcrumb.triangle li::after,
    .cd-breadcrumb.triangle li > *::after {
      /* fix a bug on Firefox - tooth edge on css triangle */
      border-left-style: dashed;
    }
  }
}
@media (min-width: 720px) and (min-width: 992px) {
  .cd-breadcrumb.triangle li > * {
    padding: 1em .8em 1em 2.5em;
  }
}
@media (min-width: 720px) and (min-width: 992px) {
  .cd-breadcrumb.triangle li:first-of-type > * {
    padding-left: 1.6em;
  }
}
@media (max-width: 730px) {
  .abo-formular .checkout {
    flex-direction: column;
  }
  .abo-formular .checkout-summary {
    padding-left: 0;
  }
}
@media (max-width: 500px) {
  .abo-formular .abo-help-notice {
    display: block;
  }
  .abo-formular .abo-help-notice .help-text {
    margin-top: 20px;
    padding: 0;
  }
  .abo-formular .aboart .title {
    font-size: 1.4rem;
  }
}

.abo-input-noflex > div,
.abo-input-flex {
  margin-bottom: 22px;
}

.abo-input-flex {
  display: flex;
  gap: 20px;
}

.abo-input-flex > div {
  width: 50%;
}

.abo-input-flex div.w70{
  width: 70%;
}

.abo-input-flex div.w30{
  width: 30%;
}

.abo-form-input {
  width: 100%;
  padding: 13px 22px;
  border-radius: 5px;
  border: 1px solid #DDE3EC;
  background: #FFFFFF;
  font-weight: 400;
  font-size: 16px;
  color: #333;
  outline: none;
  resize: none;
}

.abo-form-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
}

.abo-form-label {
  color: #333;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  display: block;
  margin-bottom: 5px;
  padding-left: 5px;
}

.form-subtitle {
  color: #333;
  font-weight: 500;
  font-size: 26px;
  line-height: 32px;
  display: block;
  margin-bottom: 13px;
  margin-top: 40px;
}

.subtitle-small {
  font-size: 18px;
  line-height: 30px;
  font-weight: normal;
  margin-bottom: 3px;
}

.form-input-text {
  color: #1d1b1b;
  font-size: 14px;
  line-height: 20px;
  padding: 3px 5px;
}

.checkout-summary .products{
  padding: 20px;
  background-color: #fff;
  border-radius: 5px;
}

.checkout-summary .products .item,
.checkout-summary .products .total{
	margin-bottom:1em;
  font-size: 20px;
}

.checkout-summary .products .item-name{
	font-weight:500;
	font-size: 1em;
}

.checkout-summary .products .item-description{
	font-size:0.8em;
	opacity:0.6;
  font-weight: 300;
}

.checkout-summary .products .item p{
	margin-bottom:0.2em;
}

.checkout-summary .products .price{
	float: right;
	font-weight: 500;
	font-size: 0.9em;
}

.checkout-summary .regular-price {
  float: none;
  display: block;
  font-size: 0.8em;
  font-weight: 400;
  text-align: right;
  text-decoration: line-through;
  opacity:0.6;
}

.checkout-summary .products .total{
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	margin-top: 10px;
	padding-top: 19px;
	font-weight: 600;
	line-height: 1;
}

.checkout-summary .total .price{
  text-align: right;
}

.checkout-summary .total .item-description{
  padding-top: 7px;
}

.change-link{
  font-size: 0.75em;
  font-weight: 300;
  display: inline-block;
  padding-left: 5px;
  color: #333;
  opacity: 0.8;
}

.abo-steps {
  padding-bottom: 18px;
  margin-bottom: 35px;
  border-bottom: 1px solid #DDE3EC;
}
.abo-steps ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  gap: 40px;
  justify-content: space-around;
}
.abo-steps li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #333;
}
.abo-steps li span {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #DDE3EC;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #333;
}
.abo-steps li.done {
  color: var(--primary-color);
}
.abo-steps li.done span {
  background: var(--primary-color);
  color: #FFFFFF;
}
.abo-steps li.active {
  color: var(--secondary-color);
}
.abo-steps li.active span {
  background: var(--secondary-color);
  color: #FFFFFF;
}

.all-abo{
  padding: 50px 15px 20px;
}

.all-abo-title{
  font-size: 1.2rem;
  font-weight: bold;
}

.all-abo .btn{
  display: inline-block;
  width: auto;
}


.abo-formular {
  --select-border: #dde3ec;
  --select-focus: var(--primary-color);;
  --select-arrow: var(--select-border);
}

.abo-formular select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border: none;
  
  padding: 13px 22px;
  margin: 0;
  width: 100%;
  font-family: inherit;
  font-size: inherit;
  cursor: inherit;
  line-height: inherit;
  z-index: 1;
  outline: none;
}
.abo-formular select::-ms-expand {
  display: none;
}

.abo-formular .select {
  display: grid;
  grid-template-areas: "select";
  align-items: center;
  position: relative;
  min-width: 15ch;
  max-width: 25ch;
  border: 1px solid var(--select-border);
  border-radius: 5px;
  padding: 0 1em 0 0;
  font-size: 16px;
  cursor: pointer;
  color: #333;
  line-height: 1.1;
  background-color: #fff;
}
.abo-formular .select select, .abo-formular .select::after {
  grid-area: select;
}

.abo-formular .select::after {
  content: "";
  justify-self: end;
  width: 0.8em;
  height: 0.5em;
  background-color: var(--select-arrow);
  -webkit-clip-path: polygon(100% 0%, 0 0%, 50% 100%);
          clip-path: polygon(100% 0%, 0 0%, 50% 100%);
}

.abo-formular select:focus + .abo-formular .focus {
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border: 2px solid var(--select-focus);
  border-radius: inherit;
}

.abo-formular .radio {
  margin: 0.7rem;
}
.abo-formular .radio-label {
  font-size: 18px;
  cursor: pointer;
}
.abo-formular .radio input[type=radio] {
  position: absolute;
  opacity: 0;
}
.abo-formular .radio input[type=radio] + .radio-label:before {
  content: "";
  background: #fff;
  border-radius: 100%;
  border: 1px solid #DDE3EC;
  display: inline-block;
  width: 1.4em;
  height: 1.4em;
  position: relative;
  margin-right: 7px;
  margin-top: 0.05em;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  transition: all 250ms ease;
}
.abo-formular .radio input[type=radio]:checked + .radio-label:before {
  background-color: var(--primary-color);
  box-shadow: inset 0 0 0 4px #fff;
  border: 2px solid var(--select-focus);
}
.abo-formular .radio input[type=radio]:focus + .radio-label:before {
  outline: none;
  border-color: var(--primary-color);
}
.abo-formular .radio input[type=radio]:disabled + .radio-label:before {
  box-shadow: inset 0 0 0 4px #f4f4f4;
  border-color: #b4b4b4;
  background: #b4b4b4;
}
.abo-formular .radio input[type=radio] + .radio-label:empty:before {
  margin-right: 0;
}

/* Customize the label (the container) */
.abo-formular .checkbox-label {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 10px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.abo-formular .checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkbox-label:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #fff;
  border: 1px solid #DDE3EC;
  border-radius: 5px;
}

/* On mouse-over, add a grey background color */
.abo-formular .checkbox:hover .checkbox-label:before {
  border-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.abo-formular .checkbox input:checked ~ .checkbox-label:before {
  border-color: var(--primary-color);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkbox-label:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.abo-formular .checkbox input:checked ~ .checkbox-label:after {
  display: block;
}

/* Style the checkmark/indicator */
.abo-formular .checkbox .checkbox-label:after {
  left: 9px;
  top: 5px;
  width: 7px;
  height: 12px;
  border: solid var(--primary-color);
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.abo-formular label:has(+ input:required):after {
  content: ' *';
}


.abo-price .regular-price{
  text-decoration: line-through;
  font-size: 1em;
  display: block;
}

@media(max-width: 800px){
  .abo-steps li{
    display: none;
  }

  .abo-steps li.active{
    display: flex;
  }
}

@media(max-width: 700px){
  .abo-formular .rewards{
    flex-direction: column;
    align-items: center;
  }

  .reward-content{
    width: 100%;
  }
}

@media (max-width: 650px){
  .abo-formular .abo-card {
    flex-basis: 100%;
  }
}

.consent-notice {
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}