/* @author Norton - 05/2019 */
.choice-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;

}

    .choice-grid div {
        width: 32.5%;
        background-color: #f4f4f4;
        border: 1px #dcdcdc solid;
        box-sizing: border-box;
        padding: 10px;
        margin: 10px 0px 10px 0px;
    }

        .choice-grid div img:first-child {
            width: 100%;
        }

    .choice-grid .checkbox {
        width: 20px;
        height: 20px;
    }

@media (max-width: 700px) {
    article {
        width: 95%;
    }   

    header div {
        display: none;
    }

}

@media (max-width: 500px) {
    header div {
        display: none;
    }

    .choice-grid div {
        width: 49%;
    }
}

.semiTransparent {
    opacity: 0.6;
}

#results {
    display: none;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    border: 1px grey solid;
}

    #results button {
        width: 100%; 
        height: 40px;
        font-size: 18px;
        font-weight: 400;
    }