/* Complete Form: */
.container {
  padding-top: 10px !important; /* override 58px */
}

/* Field-Labels */
label {
  margin-bottom: 8px !important; 
  font-weight: 700 !important;
}


/* Überschriften der einzelnen Slides */
.cf7sg-title {
  font-weight: 700;
  font-size: 36px;
  padding-bottom: 40px;
}


/* Desktops and laptops ----------- */
@media only screen 
  and (min-width : 480px) {
    .cf7sg-title {

      /* sonst wird nächstes slide bei Desktop-view zu tief angesprungen */
      display: block;
      padding-top: 90px;

      font-weight: 700;
      font-size: 24px;
    }
}



/* .slider-control = alle Buttons */
/* .ui-button = next-/previous-Button */
/* .wpcf7-submit = Submit-Button */
.slider-control {
  position: relative;
  top: -30px;
  text-align: center;
  font-weight: bold !important;
  color: white;
  background-color: var(--color-contrast);
  border: 2px solid white !important;
  width: 160px !important;
  height: 40px !important; 
  /* transition: transform 100ms ease 0ms,box-shadow 100ms ease 0ms,filter 100ms ease 0ms !important; */
  transition-duration: 100ms;
  transition-timing-function: ease;
}
.slider-control:hover, .slider-control:focus {
  color: white;
  font-weight: bold;
  background-color: var(--color-action);
  transition-duration: 100ms;
  transition-timing-function: ease;
  transform: scale(1.1, 1.1);
  /* width: 200px; */
}

/* Frage-Block: Abstand zum Slider-Titel oben */
._question {
  padding-top: 60px; 
}

/*Antworten-Block*/
.questions{
  padding-top: 30px; 
}

/* einzelne Antworten */
.wpcf7-list-item {
  display: block;
  margin-bottom: 20px;
}

input[type="checkbox"] {
  width: 25px;
  height: 25px;
  vertical-align: top;
}

/* Anworten label/text */
.wpcf7-list-item-label {
  margin-left: 7px;
  line-height: 25pt;
  font-size: 12pt;
}
/* Desktops and laptops ----------- */
@media only screen 
  and (min-width : 480px) {

    .wpcf7-list-item-label {
      font-size: 11pt;
    }
}

/* DSGVO-Text einrücken */
.acceptance-text {
  display: inline-block;
  width: 90%;
  font-size: 9pt !important;
  line-height: 11pt !important;
}

/* Anrede nach rechts statt nach unten */
.wpcf7_gender span {
  display: inline-block !important;
  margin-bottom: 10px;
}  
.wpcf7_gender {
  position: absolute;
  left: -15px;
  top: -40px;
}
/* label "Anrede*" ausblenden */
.wpcf7_gender_div label {
  visibility: hidden;
}
/* die gesamte Gender-Zeile verschieben */
.wpcf7_gender_div {
  position: relative;
  top: 10px;
}
                                                                                                                                                      