<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url("/css/style1.css?v8.96");

@media (min-width: 1170px) {
    .navbar {
        background-color:var(--main-color);
    }
    .navbar-content {
        background-color:var(--main-color);
        border-radius:10px;
    }

    .navbar-subcontent {
        border-radius:10px;
        border-bottom: 1px solid lightgray;
    }
}

.navbar.desktop {
    height:89px;
    border-bottom:none;
}

#sticky-logo {
    margin-left: 10px;
}

.rounded-image-container {
    border-radius:10px;
    overflow:hidden
}
.afteritem {
    border-radius:5px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

footer {
    background-color:transparent;
}

.footer-columns {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background-color:#323232;
    box-sizing: border-box;
    padding-left: 20px;
    padding-right: 20px;
}

.footer-bottom {
    max-width:1170px;
    width:100%;
    margin:0 auto;
    box-sizing: border-box;
    padding-left: 20px;
    padding-right: 20px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

#load-more:hover,
.linkeditems:hover {
    background-color:#f5f5f5
}

@media (min-width: 1170px) {
    .navbar,
    .navbar::before,
    .navbarwrappper {
        background-color: #ffffff;
    }
}

.navbar a:hover,
.dropdown:hover
.dropbtn,
#load-more:link,
#load-more:visited,
#load-more:hover,
#load-more:active,
.linkeditems:link,
.linkeditems:visited,
.linkeditems:hover,
.linkeditems:active,
.player-wrapper,
.subnavitem:link,
.subnavitem:visited,
.subnavitem:hover,
.subnavitem:active {
    border-radius:10px;
}

#search {
    border-radius: 10px !important;
}


/* tijdelijk ivm cache */
.dropdown-content {
    border-radius:10px;
    max-height: 50vh; /* Adjust this value to your desired height */
    overflow-y: auto; /* This makes the content scrollable when it exceeds the max height */
}

.nieuws {
    width: 100% !important;
    border-radius:10px;
}
.table {
    border-radius: 4px;
}
.table-bordered {
    border-radius: 4px;
}

/* Rounds the corners of the first and last cell in the first row */
.table-bordered tr:first-child th:first-child,
.table-bordered tr:first-child td:first-child {
    border-top-left-radius: 4px;
}

.table-bordered tr:first-child th:last-child,
.table-bordered tr:first-child td:last-child {
    border-top-right-radius: 4px;
}

/* Rounds the corners of the first and last cell in the last row */
.table-bordered tr:last-child th:first-child,
.table-bordered tr:last-child td:first-child {
    border-bottom-left-radius: 4px;
}

.table-bordered tr:last-child th:last-child,
.table-bordered tr:last-child td:last-child {
    border-bottom-right-radius: 4px;
}</pre></body></html>