/* CSS-Datei */

p,
body,
h2,
h3,
h1 {
    font-family: 'Montserrat', sans-serif !important;
    color: #707070;

}

h1 {
    color: #8A9779;
    font-size: 50px;
    font-weight: 600;
}

h2 {
    font-size: 40px;
}

h3 {
    font-size: 28px;
}

p {
    font-size: 25px;
}


.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.left-column {
    flex-basis: 50%;
    padding: 10px;
    float: left;
}


@media (min-width: 768px) {
    .left-column {
        flex-basis: 50%;
        max-width: 50%;
    }
}

.right-column {
    flex-basis: 50%;
    padding: 10px;
    float: right;
}


@media (min-width: 768px) {
    .right-column {
        flex-basis: 50%;
        max-width: 50%;
    }
}

/* Gestaltungsbeispiele für ein Formular */
form {
    border-radius: 5px;
}

fieldset {
    border: none !important;
}

label {
    font-weight: bold;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #707070;
    border-radius: 4px;
    font-size: 18px;
}

input[type="range"],
input[type="checkbox"],
input[type="checkbox"] {
    accent-color: #8A9779;

}

/* HIDE RADIO */
[type=radio] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

/* IMAGE STYLES */
[type=radio]+img {
    cursor: pointer;
}

/* CHECKED STYLES */
[type=radio]:checked+img {
    outline: 2px solid #707070;
    border-spacing: 20px 20px;

}

/* show RADIO */
.anrede[type=radio] {
    position: initial;
    opacity: 100%;
    width: 10px;
    height: 10px;
    accent-color: #8A9779;

}

button {
    background-color: #8A9779;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #707070;
}

.error {
    color: red;
    margin-bottom: 10px;
}

#amount-tickets {
    color: #8A9779;
}

header {
    border-bottom: #8A9779;
    border-style: solid;
    border-width: 2px;
    /* height: 100px;*/
    color: #fff;
    padding: 20px;
    display: inline-block;
}

.logo {
    width: 200px;
}



img {
    width: 413px;
}

.tickets {
    height: 109px;
    width: auto;

}

.payment {
    padding-top: 10px;
}

#agb,
#newsletter {
    font-size: 25px;
}