.quiz{
    /*background-color: blueviolet;/**/
    min-height: 80vh;
    width: 80%;
    display: flex;
    flex-direction: column;
    margin: 30px auto;
    color: var(--text-white);
}

.quizTitle{
    font-weight: bold;
    width: 100%;
    text-align: center;
    font-size: 2em;
    color: var(--titles-white);
    margin-top: 20px;
    margin-bottom: 20px;
}

.quizSubtitle{
    font-weight: bold;
    width: 100%;
    text-align: center;
    font-size: 1.5em;
    color: var(--titles-white);
    margin-top: 20px;
    margin-bottom: 20px;
}

.quizOptions{
    border-radius: 25px;
    padding: 20px;
    margin: 0 auto;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--products-background);
    margin-bottom: 30px;
}

.sideToSide {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.quizOption{
    width: 98%;
    /*border: red dotted 2px; /* For debugging purposes */
    display: flex;
    flex-direction: column;
    /*margin-bottom: 15px;*/
    margin: 0 auto;
    padding: 10px;
}

.quizOptionLabel{
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 10px;
}

.quizOptionInput{
    box-sizing: border-box;
    width: 100%;
    padding: 5px 10px;
    border-radius: 15px;
    border: solid 2px var(--button-border);
    background-color: var(--button-background);
    color: var(--text-white);
    font-size: 16px;
    text-align: left;
    cursor: pointer;
}

.quizOptionCheckbox{
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 10px;
}

.quizSubmitButton{
    width: 100%;
    display: flex;
    margin-bottom: 10px;
}

.quizSubmitButtonItem{
    font-weight: bold;
    margin: auto;
    padding: 10px;
    border-radius: 15px;
    border: none;
    background-color: var(--button-background);
    color: var(--button-text);
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.quizSubmitButtonItem:hover{
    background-color: var(--button-background-hover);
    color: var(--button-text-hover);
    transform: scale(1.02);
    transition: all 0.3s ease;
}

.errorBox {
    width: 100%;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    color: var(--text-white);
    text-align: center;
}

.goBack {
    font-weight: bold;
    display: flex;
    margin-right: auto;
    padding: 10px 0 0 10px;
    flex-direction: row;
    align-items: left;
    cursor: pointer;
    color: var(--text-white);
    font-size: 1.2em;
}

/*Phone*/

@media screen and (max-width: 768px) {
    .sideToSide {
        flex-direction: column;
    }

    .quiz{
        /*border: red dotted 2px; /* For debugging purposes */
        /*background-color: blueviolet;/**/
        min-height: 80vh;
        width: 100%;
        display: flex;
        flex-direction: column;
        margin: 0;
        color: var(--text-white);
    }

    .quizOptions{
        margin: 0 auto;
        /*border: red dotted 2px; /* For debugging purposes */
        border-radius: 25px;
        padding: 20px;
        width: 80%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background-color: var(--products-background);
        margin-bottom: 30px;
    }

    .quizOptionInput{
        box-sizing: border-box;
        width: 97%;
        padding: 5px 10px;
        border-radius: 15px;
        border: solid 2px var(--button-border);
        background-color: var(--button-background);
        color: var(--text-white);
        font-size: 16px;
        text-align: left;
        cursor: pointer;
    }

}
