h1 {
    text-align: center;
}

h4 {
    font-family: var(--primaryFont);
}

section {
    max-width: 86.25em !important;
}

form.gridForm {
    display: grid;
    grid-template-columns: 48% 48%;
    grid-gap: 4%;
    width: 100%;
}

form.gridForm > div > div {
    margin-bottom: 1.25em;
}

form.gridForm .doppelLine_halbiert,
form.gridForm .doppelLine_small-big,
form.gridForm .doppelLine_big-small,
form.gridForm .Section {
    grid-template-rows: auto auto;
    grid-gap: 1.25em;
    row-gap: 0;
    display: grid;
}

form.gridForm .doppelLine_big-small {
    grid-template-columns: calc(100% - 1.25em - 6.25em) 6.25em;
}

form.gridForm .doppelLine_small-big {
    grid-template-columns: 6.25em calc(100% - 1.25em - 6.25em);
}

form.gridForm .doppelLine_halbiert {
    grid-template-columns: calc(50% - 0.625em) calc(50% - 0.625em);
}

form.gridForm .Section {
    grid-template-columns: calc(100% - 1.25em - 2.625em) 2.625em;
    position: relative;
}

form.gridForm .doppelLine_small-big .topInfos,
form.gridForm .doppelLine_big-small .topInfos,
form.gridForm .doppelLine_halbiert .topInfos {
    grid-row: 1;
}
form.gridForm .doppelLine_small-big .bottomFeld,
form.gridForm .doppelLine_big-small .bottomFeld,
form.gridForm .doppelLine_halbiert .bottomFeld,
form.gridForm .Section .bottomFeld {
    grid-row: 2;
}

form.gridForm .Section .dropIcon{
    display: flex;
    align-items: center;
    border: solid 1px #000;
    height: 2.625em;
    width: 2.625em;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}

form.gridForm .Section select {
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: '';
  }

form.gridForm .Section .dropIcon img{
    transform: rotate(90deg);
}

.topInfos {
    font-size: 14px;display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.topInfos .bez {
    font-weight: 400;
}

.topInfos .hin {
    color: #6E6E6E;
    font-style: italic;
    font-size: 13px;
}

.spamtext {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-weight: 400;
}

.spamcode {
    color: #000;
}

.achtung {
    font-weight: 400;
}

form.gridForm input {
    width: 100%;
    box-sizing: border-box;
}

form.gridForm textarea {
    width: 100%;
    box-sizing: border-box;
}

.schaltflaechen {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.schaltflaechen button {
    width: 10.25em;
    height: 2.68em;
    border: solid 1px var(--btn3BorderColor);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    -webkit-box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.51);
    -moz-box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.51);
    box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.51);
    margin: 1em 1.25em;
}

.schaltflaechen button:nth-child(1) {
    background-color: var(--btn3Bg);
    color: #000;
}

.schaltflaechen button:nth-child(1)::before {
    content: url("/img/icon-entfernen.svg");
    position: absolute;
    left: 0.625em;
}

.schaltflaechen button:nth-child(2) {
    background-color: var(--btn3BorderColor);
}

.input_error {
    border: solid 1px red;
}

@media only screen and (max-width: 750px) {
    form.gridForm {
        grid-template-columns: 100%;
        grid-template-rows: auto auto;
        grid-gap: 0;
    }
}

@media only screen and (max-width: 600px) {
    section{
        margin: 10px;
    }
}