#speelzones .speelzone-details{
    clear: both;
}

#speelzones .speelzone-detail{
    display: none;
    width: 100%;
    clear: both;
}

#speelzones .speelzone-detail .col.column-left{
    width: 100%;
    vertical-align: top;
}

#speelzones .speelzone-detail .col img{
    vertical-align: top;
    width: 100%;
}

#speelzones .speelzone-detail .col.column-right{
    padding: 3rem 0 3rem 0;
    position: relative;
    width: 100%;
    vertical-align: top;
}

#speelzones .speelzone-detail .col.column-right .speelzone-titel{
    font-size: 40px;
    margin-bottom: 2rem;
    line-height: 1em;
}

#speelzones .speelzone-detail .col.column-right > div:not(.navigation-btns){
    padding-bottom: 1rem;
}

#speelzones .speelzone-detail .col.column-right .btn-close{
    background-color: white;
    background-size: 1rem 1rem;
    background-image: url("../img/png/pink-cross.png");
    color: #ED3573;
    height: 1rem;
    width: 1rem;
    position: absolute;
    top: 20px;
    right: 0;
    cursor: pointer;
}

#speelzones .speelzone-detail .col.column-right .navigation-btns{
    position: absolute;
    bottom: 1rem;
}

#speelzones .speelzone-detail .col.column-right .navigation-btns button{
    background-size: 2rem 1.5rem;
    background-color: white;
    height: 1.5rem;
    width: 2rem;
    cursor: pointer;
}

#speelzones .speelzone-detail .col.column-right .navigation-btns button.btn-previous{
    background-image: url("../img/png/pink-left.png");
}

#speelzones .speelzone-detail .col.column-right .navigation-btns button.btn-next{
    background-image: url("../img/png/pink-right.png");
}

#speelzones .speelzone-detail .col.column-right .download-link{
    color: #fff;
    background: #ed3573;
    border: 1px solid #ed3573;
    text-decoration: none;
    padding: 0.5rem;
}

#speelzones .speelzone-thumbnails{
    clear: both;
}

#speelzones .speelzone-thumbnail{
    width: 100%;
    display: inline-block;
    float: left;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    background: #000;
}

#speelzones .speelzone-thumbnail .speelzone-titel {
    position: absolute;
    bottom: 0;
    left: 41px;
    color: white;
    font-family: 'Flanders Art Serif';
    z-index: 2;
    font-size: 1.25em;
    line-height: 1.2em;
    margin-bottom: 6px;
}

#speelzones .speelzone-thumbnail img{
    vertical-align: top;
    opacity: 0.6;
    transition: all cubic-bezier(0.645, 0.045, 0.355, 1) 0.3s;
    -webkit-transform: translateZ(0);
    width: calc(100% + .49px);
}

#speelzones .speelzone-thumbnail img:hover {
    opacity: 1;
}

#speelzones .speelzone-thumbnail:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 30px;
    width: 30px;
    background: transparent url("../img/png/icon-search2.png") no-repeat 0 0;
    background-size: contain;
}

@media only screen and (min-width: 480px) {
    #speelzones .speelzone-thumbnail{
        width: 50%;
    }

    #speelzones .speelzone-thumbnail:nth-child(2n+1){
        clear: both;
    }
}

@media only screen and (min-width: 768px) {
    #speelzones .speelzone-detail .col.column-left{
        width: 40%;
        float: left;
    }

    #speelzones .speelzone-detail .col.column-right{
        padding: 0 0 3rem 2rem;
        width: 60%;
        float: left;
    }

    #speelzones .speelzone-detail .col.column-right .btn-close {
        top: 0;
    }

    #speelzones .speelzone-thumbnail{
        width: 33.3333333%;
    }

    #speelzones .speelzone-thumbnail:nth-child(2n+1){
        clear: none;
    }

    #speelzones .speelzone-thumbnail:nth-child(3n+1){
        clear: both;
    }
}

@media only screen and (min-width: 1040px) {
    #speelzones .speelzone-detail .col.column-left{
        width: 60%;
        float: left;
    }

    #speelzones .speelzone-detail .col.column-right{
        padding: 0 0 3rem 2rem;
        width: 40%;
        float: left;
    }

    #speelzones .speelzone-thumbnail {
        width: 25%;
    }

    #speelzones .speelzone-thumbnail:nth-child(3n+1){
        clear: none;
    }

    #speelzones .speelzone-thumbnail:nth-child(4n+1){
        clear: both;
    }
}