@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');

body{
  font-family: Roboto, sans-serif
}
.fieldError{
    color: #b52a2a;
    position: absolute;
    bottom: 3px;
    left: 9px;
    font-size: 0.7em;
    font-family: Roboto, sans-serif;
    background: white;
}

.formPage{
    text-align: center;
}

.formPage__logo{
    margin-bottom: 50px;
    margin-top: 20px;
    position: relative;
    padding-bottom: 20px;
    border-bottom: 1px solid lightgrey;
}
.formPage__logo img{
    transition: all .25s linear;
    max-width: 250px;
}
.formPage__logo img:hover{
    filter: brightness(130%);
}
.formPage__content{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 25px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.formPage__right, .formPage__left{
    width: 46%;
    margin: 2%;
}
.formPage__right{
  min-width: 350px;
  text-align: left;
}
.formPage__right form{
}
.formPage__right p{
  margin-bottom: 30px !important;
}
.formPage__left img{
  max-width: 100%;
}
.formPage__radioArea{
    display: flex;
    justify-content: flex-start;
    text-align: center;
}
.formPage__radioElement {
    background: #f7f7f7;
    width: 50%;
    display: block;
    transition: all .25s linear;
    border-radius: 5px;
    border: 1px solid #c5c5c5;
    overflow: hidden;
}
.formPage__radioElement:first-child{
  margin-right: 10px;
}
.formPage__radioElement:last-child{
  margin-left:10px;
}
.formPage__radioElement:hover{
    filter: brightness(110%);
}
.radioElement-image img{
  max-width: 100%;
}
.formPage__radio{
    display: none;
}
#formPage__radio1__label{
    position: relative;
    cursor: pointer;
    display: block;
    padding: 15px 0;
}
.formPage__checkedIcon{
    position: absolute;
    display: block;
    width: 30px;
    height: 30px;
    top: -8px;
    right: -9px;
}
.formRow {
  position:relative;
}
.formRow--hidden {
    display: none;
}
p.formRow__title {
    margin: 0 !important;
    line-height: 1.3;
}
.formPage .boldText{
    font-weight: bold;
    font-size: 18px;
}
.formPage .grayText{
    color: gray;
    font-size: 14px;
}
.formPage__radio__label{
    position: relative;
    padding: 0 !important;
    cursor: pointer;
}
.radioElement-text {
    line-height: 1.5;
    cursor: pointer;
    display: block;
    padding: 15px 0;
    position: relative;
}
.formPage__radio__label .radioElement-text::after{
    position: absolute;
    content: "";
    display: block;
    background-image: url(./images/tick.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 62%;
    width: 35px;
    height: 35px;
    top: -16px;
    right: 8px;
    opacity: 0;
    background-color: white;
    border-radius: 50%;
    -webkit-box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.19);
    -moz-box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.19);
    box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.19);
}
.formPage__radio:checked + .formPage__radio__label .radioElement-text {
  -webkit-box-shadow: inset 0px 0px 48px -4px rgba(62,250,15,1);
  -moz-box-shadow: inset 0px 0px 48px -4px rgba(62,250,15,1);
  box-shadow: inset 0px 0px 48px -4px rgba(62,250,15,1);
  background: #efffef;
}
.formPage__radio:checked + .formPage__radio__label .radioElement-text:after{
  opacity: 1;
}

#formPage__radio2 + label.formPage__radio__label:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    visibility: visible;
}
#formPage__radio2:checked + label.formPage__radio__label:before {
    visibility: hidden;
}

.formPage__inputs{
    margin-top: 40px;
}
.formPage__inputsElem{
    margin: 10px 0;
    width: 100%;
    padding: 10px;
    border: 1px solid #dcdcdc;
    border-radius: 3px;
}
.formPage__textarea {
    margin: 10px 0;
    width: 100%;
    padding: 10px;
    border: 1px solid #dcdcdc;
    border-radius: 3px;
    font-family: sans-serif;
}
.formPage__submits{
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}
.formPage__submits .grayBtn{
    background-color: #f7f7f7;
    transition: all .25s linear;
    border: 1px solid lightgrey;
    color: #888888;
    margin-right: 10px;
}
.formPage__submits .grayBtn:hover{
    filter: brightness(110%);
}
.formPage__submits .greenBtn{
    background-color: #1bbb1b;
    transition: all .25s linear;
    color: #fff;
}
.formPage__submits .greenBtn:hover{
    filter: brightness(120%);
}
.submitBtn{
    border: 0;
    width: 100%;
    height: 50px;
    max-width: 100%;
    cursor: pointer;
    outline: none;
    border-radius: 5px;
}

.formPage__radio__label input[type="number"] {
    background: transparent;
    outline: none;
    border: none;
    width: 89px;
    text-align: center;
    font-size: 18px;
    margin-bottom: 4px;
    border-bottom: 1px dashed grey;
}
.form-columns {
    display: flex;
    justify-content: space-between;
}
.form-columns .formRow--ort {
    width: 39%;
}
.form-columns .formRow--plz {
    width: 59%;
}
.sentEmail {
    color: green;
    text-align: left;
    margin-top: 20px;
    font-weight: bold;
    font-size: 24px;
}
.mobile-img {
  display: none;
}
@media (max-width: 790px){
  .formPage__left{
    width: calc(92% - 350px);
    margin: 2%;
  }
}
@media (max-width: 630px){
  .formPage__content{
    flex-direction: column;
    align-items:center;
  }
  .mobile-img{
    display: block;
  }
  .desktop-tablet-img{
    display: none;
  }
  .formPage__left{
    width: 100%;
    margin: 0;
    margin-bottom: 30px;
  }
}

.footer {
    font-family: sans-serif;
    padding: 15px;
    border-top: 1px solid lightgrey;
}
.footer__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    font-family: Roboto, sans-serif;
    text-align: center;
}
.footer__content a:focus,
.footer__content a:hover,
.footer__content a {
    color: #000000;
}
.footer__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    border-radius: 5px;
    padding: 0 15px;
    font-family: sans-serif;
    font-size: 13.3333px;
    text-decoration: none;
    background-color: #1bbb1b;
    transition: all .25s linear;
    color: #fff;
}
.footer__button:hover {
    filter: brightness(120%);
}
.grecaptcha-badge {
    display: none !important;
}