#info{
    display: flex;
    flex-flow: row wrap;
    width: 100%;
    margin-bottom: 30px;
    column-gap: 10px;
    row-gap: 30px;
}

.infoContent {
    height: 100px;
    background-repeat: no-repeat;
    background-position: left;
    padding-left: 90px;
}

.person {
    background-image: url('../images/icons/Kontakt Icon Ansprechpartner.png');
    width: 40%;
}

.phone {
    background-image: url('../images/icons/Kontakt Icon Telefon.png');
    width: 40%;
}

.location {
    background-image: url('../images/icons/Kontakt Icon Ort.png');
    width: 35%;
}

.openingHours {
    background-image: url('../images/icons/Kontakt Icon Oeffnungszeiten.png');
    width: 35%;
}

.contactForm {
    width: 100%;
    padding: 15px 0 25px 0;
    border-radius: 10px;
    background-color: #535353;
    display: flex;
    flex-direction: column;
    color: white;
}

.contactForm > label {
    display: flex;
    flex-direction: column;
    padding: 0 25px;
}

.contactForm > h1 {
    font-weight: 600;
}

.contactForm > label > input {
    width: 101%;
    margin-left: -5px;
}

.contactForm > label > input[name=email] {
    z-index: -1;
}

.contactForm > label > input[name=realEmail] {
    margin-top: -55px;
}

.contactForm > label > textarea {
    width: 99%;
    height: 250px;
    margin-left: -5px;
    padding: 10px;
}

#honeyPot {
    visibility: hidden;
}

input:not([type='checkbox']) {
    border-radius: 10px;
    height: 45px;
    text-indent: 10px;
    margin: 7px 0;
    color: #003762;
    border: 0;
    font-size: 21px;
    /*box-shadow: 2px 5px 11px -2px black;*/
    background-color: rgba(255,255,255, 0.85);
    font-family: inherit;
}

input[type=submit] {
    background-image: url('../images/schloss.svg');
    background-color: #e3e4e5;
    background-position: 20px; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: 40px;
    cursor: pointer;
}

textarea {
    border-radius: 10px;
    margin: 7px 0;
    color: #003762;
    font-size: 21px;
    border: 0;
    background-color: rgba(255,255,255, 0.85);
    font-family: inherit;
    resize: vertical;
    /*box-shadow: 2px 5px 11px -2px black;*/
}

#services {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    row-gap: 15px;
    margin-bottom: 50px;
    position: relative;
}

#services > label {
    width: 50%;
}

#services > label > input {
    margin-right: 10px;
}

#services > input {
    width: 100%;
    background-color: #535353;
    color: white;
}

.mailMessage {
    font-weight: bold;
    visibility: visible;
    opacity: 1;
    z-index: 2;
    background-color: rgb(83,83,83, 0.8);
    position: absolute;
    top: 0;
    left: 35%;
    width: 250px;
    height: 100px;
    text-align: center;
    padding: 20px;
    white-space: normal;

}

.mailMessage.success {
    color: lime;
}

.mailMessage.failed {
    color: red;
}

.mailMessage.inactive {
    visibility: hidden;
    opacity: 0;
    z-index: -1;
    transition: visibility 2s linear 0.2s, opacity 2.2s linear 0.1s, z-index 2s linear 0.2s;
}