/* Landingpage */
.landing-content {
    text-align: center;
    color: white;
}

.landing-content h1 {
    font-weight: bold;
    padding-top: 2.33rem;
    color: var(--primary-color);
}

.landing-content .button-container {
    margin-top: 1.2rem;
    margin-bottom: 2.33rem;
}

.landing-content p {
    color: var(--primary-color);
    font-size: 1.33rem;
    margin-top: 1.2rem;
}

#landing .langing-prices-image {
    padding: 0 1.2rem;
}

#landing .langing-prices-image img {
    max-width: 80%;
}

/* Gewinnübersicht */
#prizes p {
    font-size: 1rem;
}

#prizesSummary {
    text-align: left;
}

.prize-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1.2rem;
    margin-bottom: 3.6rem;
}

.prize-container {
    text-align: center;
    padding: 1.2rem;
}

p.prizes-subtitle {
    font-weight: bold;
    color: var(--primary-color);
    text-align: center;
}

span.prizes-emphasized {
    font-weight: bold;
    color: var(--primary-color);
}

#prizesContainer a {
    color: var(--primary-color);
    font-weight: bold;
}

.prize-text {
    text-align: left;
}

.prize-text p {
    font-weight: bold;
    margin: 0.33rem 0;
}

/* Quizseite */
#quiz .question-container {
    margin-bottom: 1.2rem;
}

.answers-container {
    text-align: left;
}

/* Default Radio-Button entfernen / ausblenden */
input[type="radio"].radioButton {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: none;
}

#questionIndex {
    text-align: end;
    font-size: 0.66rem;
    color: #666;
}

#questionHeader {
    margin-top: 2.33rem;
    font-weight: bold;
    font-size: 1.33rem;
}

#questionText {
    font-size: 1.25rem;
}

.radioLabel {
    display: block;
    align-items: center;
    margin-bottom: 0.5125rem;
    cursor: pointer;
    margin: 1.25rem;
    font-size: 1.25rem;
    padding: 0.5125rem 0;
    border-radius: 0.5125rem;
    border: 1px solid var(--primary-color);
    font-weight: bold;
    width: 100%;
    text-align: center;
    box-shadow: 0.5125rem 0.5125rem 0.33rem 0 rgba(0, 0, 0, 0.1);
}

.radioLabel.checked {
    background: var(--primary-color);
    color: white;
}

.questionDiv {
    display: flex;
    justify-content: center;
    align-items: center;
}

.question-navigation-container {
    margin-top: 1.2rem;
}

.hint-notice-article-link {
    padding-top: 1.66rem;
}

.hint-notice-article-link a {
    color: var(--primary-color);
}

/* Formularseite */
#formPage h1 {
    text-align: center;
    margin-bottom: 1.2rem;
}

#formPage form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    text-align: left;
}

#formPage label {
    margin-top: 0.5125rem;
}

#formPage input[type="text"],
#formPage input[type="email"] {
    font-size: 1rem;
    padding: 1.2rem 0;
    width: 90%;
}

#formPage input[type="checkbox"] {
    margin-right: 0.33rem;
}

#formPage .form-buttons {
    margin-top: 1.2rem;
    display: flex;
    justify-content: space-between;
}

#formPage input {
    border: none;
    background-color: #EEE;
}

#formPage input::placeholder {
    color: #666;
}

#formPage span.required-info {
    padding-top: 0.5125rem;
    font-size: 0.8rem;
    color: #666;
}

#formPage h2 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 1.2rem;
}

#userForm a {
    font-weight: bold;
    color: var(--primary-color);
}

#userForm .flex img {
    flex-grow: 1;
    object-fit: contain;
}

.input-container {
    border-radius: 10rem;
    background-color: #EEE;
}

.input-container .input-icon {
    height: auto;
    width: 1.33rem;
    border-radius: 0;
}

.flex-img-sm img.input-icon {
    width: 1rem;
    margin-top: 0.5125rem;
}

.input-container input:focus-visible {
    outline: none;
}

#formCardInfo {
    cursor: pointer;
}

#formPage hr {
    margin-bottom: 1.2rem;
}

#formPage .legal-info {
    font-size: 0.8rem;
    color: var(--primary-color);
}

/* Preis-Detail-Seite */
#prizeName {
    font-weight: bold;
    margin-bottom: 1.2rem;
}

.prize-text-container p {
    text-align: left;
}

/* Custom Popup */
.custom-popup {
    display: block;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    text-align: center;
}

.custom-popup.invisible {
    display: none;
}

.custom-popup-content {
    background-color: white;
    margin: 10% auto;
    padding: 1.2rem;
    border: 1px solid var(--primary-color);
    width: 80%;
    border-radius: 1.2rem;
}

.custom-popup-header {
    margin-bottom: 1.2rem;
    text-align: center;
}

.custom-popup-body {
    margin-bottom: 1.2rem;
}

.custom-popup-footer {
    display: block;
}

/* Für Screens kleiner als 768px Breite, Phones hauptsächlich */
@media (max-width: 767px) {
    .landing-content {
        padding-top: 0;
    }

    .page-container {
        width: 90%;
        height: auto;
        max-height: none;
    }

    .image-container-max {
        height: fit-content;
        margin-bottom: 1.2rem;
    }

    .height-90 {
        height: auto;
    }
}

/* Für Screens kleiner als 992px Breite, Phones hauptsächlich */
@media (max-width: 991px) {
    #questionHeader {
        margin-top: 0;
    }

    .page-container {
        max-height: none;
    }

    #formPage h2 {
        margin-top: 1.2rem;
    }

    .content-padding {
        padding: 0;
    }
}

/* Für Screens kleiner als 1200px Breite, Tablets hauptsächlich */
@media (max-width: 1199px) {
    .landing-content {
        padding-top: 4%;
    }
}