#headerFrame {
    padding: 5px 5px 5px 5px;
    width: 860px;
    height: 180px;
    background-color: #FFFFFF;
    overflow-y: hidden;
    overflow-x: hidden;
}

#uitslagen {
    width: 100%;
    height: calc(100vh);
    border: 0px;
    background-color: #ffffff;
}

.logo {
    position: absolute;
    top: 10px;
    left: 7px;
}
.header {
    position: absolute;
    top: 5px;
    left: 400px;
    width: 450px;
    text-align: right;
    margin: 0px 0px 0px 0px;
    color: #bb0000;
    /* font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
    font-family: 'Roboto', 'Segoe UI', Tahoma;
    font-size: 28px;
    font-weight: bold;
}

.sponsors {
    position: absolute;
    top: 43px;
    left: 7px;
    width: 860px;
}

.allitems {
    position: absolute;
    top: 115px;
    left: 0px;
    .row {
        padding: 0px 0px 0px 0px;
        display: table;
        clear: both;
      
        .rowtitle {
            float: left;
            width: 100px;
            height: 30px;
            font-weight: bold;
            text-align: right;
            font-family: 'Roboto', 'Segoe UI', Tahoma;
        }

        .item {
            float: left;
            min-width: 50px;
            height: 30px;
            padding: 0px 4px 0px 4px;
            color: #bb0000;
            font-family: 'Roboto', 'Segoe UI', Tahoma;
            font-size: 14px;

            a {
                width: 100%;
                color: #bb0000;
                font-family: 'Roboto', 'Segoe UI', Tahoma;
                text-decoration: none;
                padding: 3px 16px 3px 16px;
                text-transform: uppercase;
                border: 1px solid #bb0000;
                cursor: pointer;
                
                &:hover {
                    background-color: #bb0000;
                    color: #ffffff;
                }
            }
        }
    }
}

@media screen and (max-width: 850px) {
    #headerFrame {
        width: 100%;
    }

    .header {
        width: calc(100% - 400px);
    }
    
    .sponsors {
        width: 100%;
    }

    #uitslagen {
        width:1065px;
    }
        
}