#structuur_oefenen{
    display: grid;
    grid-template-columns: 300px;
    column-gap: 2px;
    row-gap: 2px;
    margin: 0 auto;
    width: 300px;
}

#structuur_oefenen a{
    display: block;
    width: 300px;
    height: 250px;
    background-color: lightgrey;
}

#structuur_oefenen .keuze{
    height: 200px;
}

#structuur_oefenen .adv{
    /*background-color: lightpink;*/
    grid-row: 4;
}

#structuur_oefenen .hero{
    background-color: yellow;
    grid-row: 1;
}

#structuur_oefenen .blok_container{
    position: absolute;
    width: 300px;
    height: 250px;
}

#structuur_oefenen .blok_container_keuze{
    position: absolute;
    width: 300px;
    height: 200px;
}

#structuur_oefenen .hero_container{
    width: 602px;
}

#structuur_oefenen .blok_afb{
    position: relative;
    width: 100%;
    height: 100%;
}

#structuur_oefenen .blok_afb_keuze img{
    width: 100%;
    max-height: 200px;
}

#structuur_oefenen .blok_txt{
    position: absolute;
    right: 0px;
    bottom: 0px;
    left: 0px;
    height: 55px;
    padding-top: 20px;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 111, 126, 1) 120%);
    display: flex;
    align-items: center
}

#structuur_oefenen .blok_txt h5{
    padding: 0px 10px 10px 10px;
    margin: 0;
    font-size: 1.2em;
    font-weight: bold;
    color: #fff;
}

#structuur_oefenen .blok_txt_keuze{
    position: absolute;
    right: 0px;
    top: 0px;
    left: 0px;
    height: 180px;
    /*background: linear-gradient(to bottom, transparent 0%, rgba(0, 111, 126, 1) 120%);*/
    background-color: rgba(243, 243, 243, 0.9);
    padding: 10px;
}

/* container voor tablet*/
@media (min-width: 625px)  {

    #structuur_oefenen{
        width: 602px;
        grid-template-columns: 300px 300px;
    }

    #structuur_oefenen .adv{
        grid-row: 3;
        grid-column: 2;
    }

    #structuur_oefenen .hero{
        grid-row: 1;
        grid-column: 1 / span 2;
        width: 100%;
    }
}

/* container voor brede schermen*/
@media (min-width: 925px)  {

    #structuur_oefenen{
        width: 904px;
        grid-template-columns: 300px 300px 300px;
    }

    #structuur_oefenen .adv{
        grid-row: 3;
        grid-column: 2;
    }

    #structuur_oefenen .hero{
        grid-row: 1;
        grid-column: 2 / span 2;
        width: 100%;
    }
}

/* container voor grotere schermen met reclame banner*/
@media (min-width: 1225px)  {
    #structuur_oefenen{
        margin: 0;
    }
}


.feedback_blok:hover {
    background-color: var(--color-background-darker) !important;
}

.opdracht_inhoud tr:nth-child(even) {
    background: var(--color-background-darker);
}