:root {
   --fontfamilyVar:'Open Sans', sans-serif;
   --paddingsize:40px;
   --paddingsizesmall:20px;
   --paddingsizebig:60px;
   --footerheight:300px;
   --borderradius:5px;
   --gap:20px;

   --color1:#1474aa;
   --color1rgb:20, 115, 170;
   --color2:#128804;
   --color2rgb:18, 136, 4;
   --color3:#737374;
   --color3rgb:115, 115, 116;
   --color4rgb:115, 115, 116;
   --color4:#79797a;
   --color4rgb:121,121,122;

   --colorgrey:#646464;
   --colorgreyrgb:100,100,100;
   --colorwhite:#ffffff;
   --colorwhitergb:255,255,255;
   --colorblack:#000000;
   --colorblackrgb:0,0,0;
}
*,
*::before,
*::after {
    padding:0;margin:0;
    box-sizing: border-box;
}
html {
    min-height:100vh;
}
body {
    width:100%;min-height:100vh;
    font-family:var(--fontfamilyVar);
    font-optical-sizing:auto;
    font-weight:400;
    font-style:normal;
    font-variation-settings:"wdth" 100;
    font-size:1rem;
    background-image:url('img/bg_html.gif');
    background-position:top -265px center;
}
a {
    color:var(--color1);
}
a:hover,
a:focus {
    color:var(--color1);
}
strong {
    font-weight:700;
}
h1,h2,h3,h4,h5 {

}
.large-advert {
    display:grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom:10px;
}
.advert {
    display:block;
    text-align:center;
    margin-bottom:20px;
}
.advert-header {
    display:block;
    padding:0;margin:0 0 5px 0;
    text-align:center;
    font-size:0.75em;
}
.advert-banner-block {
    text-align:center;
    min-width:660px;min-height:220px;
    padding:0;margin:0;
}
.show {
    display:block !important;
}
.content-padding {
    padding:var(--paddingsizesmall);
}
.extra-header {
    padding:var(--paddingsizesmall) var(--paddingsizesmall) 0 var(--paddingsizesmall);
    text-transform: uppercase;
    color:var(--color1);
}
.content-wrapper {
    display:grid;
    position:relative;
    grid-template-columns: 1fr 375px;
    grid-template-rows:auto 1fr auto;
    grid-template-areas:
    "header header"
    "main aside"
    "footer footer";
    gap:var(--gap);
    width:1400px;
    margin:0 auto;padding:60px 0 0 0;
    transition: all .5s ease-in-out;
        -webkit-transition: all .5s ease-in-out;
            -moz-transition: all .5s ease-in-out;
                -o-transition: all .5s ease-in-out;
}
main {
    position:relative;
    grid-area:main;
}
main .content-wrapper {
    position:relative;
    min-height:calc(100vh - var(--footerheight));
    gap:0 !important;
}
.overlay-menu {
    position:fixed;
    left: 0;
    top: 0px;
    height:100vh;
    width:100vw;
    padding:100px 0 100px 0;
    background:#ffffff;
    overflow-y:auto;
    transition:transform 0.3s ease-in-out;
    transform: translateX(+100%);
    background-color:var(--colorwhite);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);    
    z-index:40;
}
.overlay-menu.closed {
    display:block;
    transform: translateX(70%);
}
.overlay-menu ul {
    list-style:none;
    padding:0;margin:0 0 0 0;
}
.overlay-menu ul li {

}
.overlay-menu ul li a {
    display:block;
    min-width:300px;
    padding:10px 60px 10px 15px;
    text-decoration:none;
    color:var(--colorgrey);
    font-size:0.9rem;
    font-weight:500;
    border-bottom:solid 1px rgba(var(--colorgreyrgb),0.1);
    transition: all .5s ease-in-out;
        -webkit-transition: all .5s ease-in-out;
            -moz-transition: all .5s ease-in-out;
                -o-transition: all .5s ease-in-out;
}
.overlay-menu ul li ul {
    list-style:none;
    box-shadow:none;
}
.overlay-menu ul li ul li a {
    display:block;
    min-width:300px;
    padding:10px 60px 10px 25px;
    text-decoration:none;
    color:var(--colorgrey);
    font-size:0.8rem;
    font-weight:300;
    border-bottom:solid 1px rgba(var(--colorgreyrgb),0.1);
    transition: all .5s ease-in-out;
        -webkit-transition: all .5s ease-in-out;
            -moz-transition: all .5s ease-in-out;
                -o-transition: all .5s ease-in-out;
}


.overlay-menu ul li a:hover {
    background-color:rgba(var(--colorgreyrgb),0.1);
}
#sidebar {
    background-color:var(--colorwhite);
    padding-bottom:200px;
    z-index:10;
}
button#show-sidebar {
    display:none;
    position:fixed;
    top:50%;right:0;
    width:20px;height:30px;
    background-image:url('img/icon_arrow_left_white.svg');
    background-repeat:no-repeat;
    background-size:10px 10px;
    background-position:center center;
    background-color:var(--color1);
    text-indent:-9999em;
    border:none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    z-index:30;
    transition: all .5s ease-in-out;
        -webkit-transition: all .5s ease-in-out;
            -moz-transition: all .5s ease-in-out;
                -o-transition: all .5s ease-in-out;
}
button#show-sidebar.closed {
    background-size:12px -12px;
    transform:scaleX(-1);
}
aside {
    grid-area:aside;
}
aside .now-playing-on-tv-radio {
    display: grid;
    font-size:0.8rem; 
    grid-template-columns: 1fr 1fr;
    grid-gap:var(--gap);
    color:var(--colorwhite);
    margin-bottom:var(--gap);
}
aside .now-playing-on-tv-radio .now-on-tv,
aside .now-playing-on-tv-radio .now-on-radio {
    padding:10px 20px 20px 20px;
    background-color:var(--color1);
    border-radius:var(--borderradius);
}
aside .now-playing-on-tv-radio .now-on-tv .description,
aside .now-playing-on-tv-radio .now-on-radio .description {
    min-height:180px;
}
aside .now-playing-on-tv-radio .btn {
    display:block;
    font-size:1rem;
    font-weight:900;
    text-transform: uppercase;
    text-decoration:none;
    background-color:var(--colorwhite);
    padding:10px;margin:20px 0 0 0;
    transition: all .5s ease-in-out;
        -webkit-transition: all .5s ease-in-out;
            -moz-transition: all .5s ease-in-out;
                -o-transition: all .5s ease-in-out;
}
aside .now-playing-on-tv-radio .btn.video {
    background-image:url('img/icon_video_blue.svg');
    background-repeat:no-repeat;
    background-size:32px 32px;
    background-position:left 5px center;
    padding-left:40px;
}
aside .now-playing-on-tv-radio .btn.audio {
    background-image:url('img/icon_audio_blue.svg');
    background-repeat:no-repeat;
    background-size:32px 32px;
    background-position:left 5px center;
    padding-left:40px;
}
aside .now-playing-on-tv-radio .btn:hover {
    opacity:0.7;
}
side .now-playing-on-tv-radio p {
    font-size:0.7rem;
    color:var(--colorwhite);
}
aside .now-playing-on-tv-radio .icon-tv {
    height:40px;
    background-image:url('img/icon_tv_white.svg');
    background-repeat:no-repeat;
    background-size:40px 40px;
    padding:2px 0 0 45px;margin:5px 0 0px 0;
    text-transform:uppercase;
    font-size:1.6rem;
    font-weight:900;
}
aside .now-playing-on-tv-radio .icon-radio {
    background-image:url('img/icon_radio_white.svg');
    background-repeat:no-repeat;
    background-size:40px 40px;
    padding:2px 0 0 45px;margin:5px 0 5px 0;
    text-transform:uppercase;
    font-size:1.6rem;
    font-weight:900;
}
header {
    position:fixed;
    width:100%;height:60px;
    background-image:url('img/bg_header.png');
    background-position:top center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    z-index:100;
}
header .content-wrapper {
    display:grid;
    grid-template-columns:1fr 1fr;
}
header #logo {
    position:absolute;
    left:75px;top:-40px;
    width:150px;height:150px;
    border-radius:50% 50%;
    background-color:#ffffff;
    background-image:url('img/logo_rtvnof.png');
    background-position:top 40px center;
    background-repeat:no-repeat;
    text-indent:-9999em;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all .5s ease-in-out;
        -webkit-transition: all .5s ease-in-out;
            -moz-transition: all .5s ease-in-out;
                -o-transition: all .5s ease-in-out;
}
header nav {
    display:block;
    position:absolute;
    left:240px;top:1px;
}
header nav ul {
    display:flex;
    align-items:stretch;
    margin:0;padding:0;
    list-style:none;
}
header nav ul li {
    position:relative;
    display:flex;
    align-items:center;
}
header nav ul li a {
    display:flex;
    padding:1rem;
    color:#ffffff;
    font-size:1rem;
    text-decoration: none;
    font-weight:500;
    text-transform:uppercase;
    transition: all .5s ease-in-out;
        -webkit-transition: all .5s ease-in-out;
            -moz-transition: all .5s ease-in-out;
                -o-transition: all .5s ease-in-out;
}
header nav ul li a:hover {
    color:#8ac4dd;
}
subnav {
    position:fixed;
    right:0;
    height:60px;
    margin:0;padding:0;
    z-index:200;
}
subnav ul.menu {
    display:flex;
    margin:0;padding:0;
    list-style: none;
}
subnav ul.menu li {
    position:relative;
    padding:0;margin:0;
    display:flex;
    align-items:center;
}
subnav ul.menu li a {
    display:flex;
    width:60px;height:60px;
    padding:0;margin:0;
    color:#ffffff;
    text-indent:-9999rem;
    background-position:center center;
    background-size:32px 32px;
    background-repeat:no-repeat;
    transition: all .5s ease-in-out;
        -webkit-transition: all .5s ease-in-out;
            -moz-transition: all .5s ease-in-out;
                -o-transition: all .5s ease-in-out;
}
subnav ul.menu li a.tv {
    background-image:url('img/icon_tv_white.svg');
    background-color:var(--color1);
}
subnav ul.menu li a.radio {
    background-image:url('img/icon_radio_white.svg');
    background-color:var(--color1);
}
subnav ul.menu li a.live {
    background-image:url('img/icon_cam_white.svg');
    background-color:var(--color1);
} 
subnav ul.menu li a.schrijf {
    background-image:url('img/icon_write.svg');
}
subnav ul.menu li a.week {
    background-image:url('img/icon_week.svg');
}
subnav ul.menu li a.zoek {
    background-image:url('img/icon_search.svg');
}
subnav ul.menu li a.menu {
    background-image:url('img/icon_menu.svg');
}
subnav ul.menu li a.tv:hover {
    background-image:url('img/icon_tv_blue.svg');
    background-color:var(--colorwhite);
/*  background-position:8px 12px;
    transform:translate(0,-5px) scale(1.4);
    z-index:10; */
}
subnav ul.menu li a.radio:hover {
    background-image:url('img/icon_radio_blue.svg');
    background-color:var(--colorwhite);
/*  background-position:8px 12px;
    transform:translate(0,-5px) scale(1.4);
    z-index:10; */
}
subnav ul.menu li a.live:hover {
    background-image:url('img/icon_cam_blue.svg');
    background-color:var(--colorwhite);
/*  background-position:8px 12px;
    transform:translate(0,-5px) scale(1.4);
    z-index:10; */
}
subnav ul.menu li a.schrijf:hover {
    background-image:url('img/icon_write_blue.svg');
}
subnav ul.menu li a.week:hover {
    background-image:url('img/icon_week_blue.svg');
}
subnav ul.menu li a.zoek:hover {
    background-image:url('img/icon_search_blue.svg');
}
subnav ul.menu li a.menu:hover {
    background-image:url('img/icon_menu_blue.svg');
}
.super-c {
    display:grid;
    grid-template-columns: 1fr;
    gap:var(--gap);
    margin-bottom:var(--gap);
}
.large-c {
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:var(--gap);
    margin-bottom:var(--gap);
}
.medium-c {
    display:grid;
    grid-template-columns:1fr 1fr 1fr;
    gap:var(--gap);
    margin-bottom:var(--gap);
}
.small-c {
    display:grid;
    grid-template-columns:1fr 1fr 1fr 1fr 1fr 1fr;
    gap:var(--gap);
    margin-bottom:var(--gap);
}
.large-full-image-description {
    display:grid;
    grid-template-columns:1fr;
    margin-bottom:var(--gap);
}
.large-full-image-description article {
    display:grid;
    grid-template-columns:150px 1fr;
    margin-bottom:5px;
}
.large-full-image-description article .image {
    height:100px;
}
.large-full-image-description article .image .image-holder {
    position:relative;
    width:150px;height:100px;
    background-size:cover;
    background-position:center center;
    border-radius:var(--borderradius) 0 0 var(--borderradius);
}
.large-full-image-description article .image .image-holder .video {
    position:absolute;
    display:block;
    left:0;bottom:0;
    width:40px;height:40px;
    background-color:var(--color1);
    background-image:url('img/icon_video_white.svg');
    background-size:30px 30px;
    background-position:center center;
    background-repeat:no-repeat;
    border-radius:0 0 0 var(--borderradius);
}
.large-full-image-description article .image .image-holder .audio {
    position:absolute;
    display:block;
    left:0;bottom:0;
    width:40px;height:40px;
    background-color:var(--color1);
    background-image:url('img/icon_audio_white.svg');
    background-size:30px 30px;
    background-position:center center;
    background-repeat:no-repeat;
    border-radius:0 0 0 var(--borderradius);
}
.large-full-image-description article .description {
    height:100px;
    padding:var(--gap);
    background-color:rgba(var(--color1rgb),0.1);
    border-radius:0 var(--borderradius) var(--borderradius) 0;
    cursor:pointer;
    transition: all .5s ease-in-out;
        -webkit-transition: all .5s ease-in-out;
            -moz-transition: all .5s ease-in-out;
                -o-transition: all .5s ease-in-out;

}
.large-full-image-description article .description:hover {
    background-color:rgba(var(--color1rgb),0.2);
}
.large-full-image-description article .description h2 {
    font-size:1rem;
    line-height:1.2rem;
    color:var(--color1);
}
.large-full-image-description article .description p {
    display:-webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient:vertical;
    font-size:0.9rem;
    overflow:hidden;
    text-overflow:ellipsis;
    max-width: 100%;
}
.large-full-image-description article .description .date {
    color:#000000;
    padding-left:23px;
    font-size:0.7rem;
    line-height:1.2rem;
    background:url('img/icon_time_black.svg');
    background-repeat:no-repeat;
    background-size:20px 20px;
}
.large-full-only-description {
    background-color:rgba(var(--color1rgb),0.1);
    margin-bottom:var(--gap);
    border-radius:var(--borderradius);
}
.large-full-only-description article {
    padding:var(--paddingsizesmall);
    border-bottom:solid 1px rgba(var(--color1rgb),0.2);
    transition: all .5s ease-in-out;
        -webkit-transition: all .5s ease-in-out;
            -moz-transition: all .5s ease-in-out;
                -o-transition: all .5s ease-in-out;
    cursor:pointer;
}
.large-full-only-description article.video {
    position:relative;
    padding-left:50px;
}
.large-full-only-description article.video .video {
    position:absolute;
    display:block;
    left:0;top:var(--paddingsizesmall);
    width:40px;height:40px;
    background-color:var(--color1);
    background-image:url('img/icon_video_white.svg');
    background-size:30px 30px;
    background-position:center center;
    background-repeat:no-repeat;
}
.large-full-only-description article.audio {
    position:relative;
    padding-left:50px;
}
.large-full-only-description article.audio .audio {
    position:absolute;
    display:block;
    left:0;top:var(--paddingsizesmall);
    width:40px;height:40px;
    background-color:var(--color1);
    background-image:url('img/icon_audio_white.svg');
    background-size:30px 30px;
    background-position:center center;
    background-repeat:no-repeat;
}
.large-full-only-description article:last-child {
    border-bottom:none;
}
.large-full-only-description article:hover {
    background-color:rgba(var(--color1rgb),0.2);
}
.large-full-only-description article h2 {
    font-size:1rem;
    line-height:1.2rem;
    color:var(--color1);
}
.large-full-only-description article p {
    display:-webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient:vertical;
    font-size:0.9rem;
    overflow:hidden;
    text-overflow:ellipsis;
    max-width: 100%;
}
.large-full-only-description article .date {
    color:#000000;
    padding-left:23px;
    font-size:0.7rem;
    line-height:1.2rem;
    background:url('img/icon_time_black.svg');
    background-repeat:no-repeat;
    background-size:20px 20px;
}
/* NewsItem only image */
.super-c .news-item-only-image {
    width:100%;min-height:300px;
    line-height:1.8rem;
}
.large-c .news-item-only-image {
    width:100%;min-height:200px;
    line-height:1.8rem;
}
.medium-c .news-item-only-image {
    width:100%;min-height:140px;
    font-size:0.7rem;
    line-height:1.4rem;
}
.small-c .news-item-only-image {
    width:100%;min-height:100px;
    font-size:0.7rem;
    line-height:1.2rem;
}
.small-c .news-item-only-image .place-holder .headline .audio,
.small-c .news-item-only-image .place-holder .headline .video {
    bottom:0px;
}
.news-item-only-image {
    display: block;
    overflow:hidden;
    border-radius:var(--borderradius);
}
.news-item-only-image .image-holder {
    display:block;
    position:relative;
    width:100%;height:100%; 
    background-size:cover;
    background-position:center center;
    cursor:pointer;
    transition: all .5s ease-in-out;
        -webkit-transition: all .5s ease-in-out;
            -moz-transition: all .5s ease-in-out;
                -o-transition: all .5s ease-in-out;
}
.news-item-only-image .place-holder {
    display:block;
    position:relative;
    width: 100%;height:100%; 
    background-image: linear-gradient(to bottom, rgba(0,0,0,0) 30%, rgba(0,0,0,0.8));
    transition: all .5s ease-in-out;
        -webkit-transition: all .5s ease-in-out;
            -moz-transition: all .5s ease-in-out;
                -o-transition: all .5s ease-in-out;
}
.news-item-only-image:hover .image-holder {
    transform:scale(1.10);
}
.news-item-only-image:hover .place-holder {
    transform:scale(0.92);
}
.news-item-only-image .place-holder .headline {
    position:absolute;
    left:0;bottom:0;
    padding:20px;
}
.news-item-only-image .place-holder .headline.video {
    padding-left:60px;
}
.news-item-only-image .place-holder .headline .video {
    position:absolute;
    display:block;
    left:0;
    width:50px;height:50px;
    background-color:var(--color1);
    background-image:url('img/icon_video_white.svg');
    background-size:40px 40px;
    background-position:center center;
    background-repeat:no-repeat;
}
.news-item-only-image .place-holder .headline.audio {
    padding-left:60px;
}
.news-item-only-image .place-holder .headline .audio {
    position:absolute;
    display:block;
    left:0;
    width:50px;height:50px;
    background-color:var(--color1);
    background-image:url('img/icon_audio_white.svg');
    background-size:40px 40px;
    background-position:center center;
    background-repeat:no-repeat;
}
.news-item-only-image .place-holder .headline h2 {
    color:#ffffff;
    padding:0;margin:0 0 5px 0;
}

.news-item-only-image .place-holder .headline .date {
    color:#ffffff;
    padding-left:25px;
    font-size:0.8rem;
    line-height:1.2rem;
    background:url('img/icon_time.svg');
    background-repeat:no-repeat;
    background-size:22px 22px;
}
.news-item-with-description {
    display:block;
    border-radius:var(--borderradius);
    overflow:hidden;
    transition: all .5s ease-in-out;
        -webkit-transition: all .5s ease-in-out;
            -moz-transition: all .5s ease-in-out;
                -o-transition: all .5s ease-in-out;
    cursor:pointer;
}
.news-item-with-description:hover {
    background-color:rgba(var(--color1rgb),0.2);
}
.news-item-with-description .image-holder {
    display:block;
    position:relative;
    background-size:cover;
    background-position:center center;
    transition: all .5s ease-in-out;
        -webkit-transition: all .5s ease-in-out;
            -moz-transition: all .5s ease-in-out;
                -o-transition: all .5s ease-in-out;
}
.super-c .news-item-with-description .place-holder {
    width:100%;min-height:420px;
    line-height:1.8rem;
}

.large-c .news-item-with-description .place-holder {
    width:100%;min-height:320px;
    line-height:1.8rem;
}
.medium-c .news-item-with-description .place-holder {
    width:100%;min-height:200px;
    font-size:0.7rem;
    line-height:1.5rem;
}
.small-c .news-item-with-description .place-holder  {
    width:100%;min-height:120px;
    font-size:0.7rem;
    line-height:1.5rem;
}
.small-c .news-item-with-description .place-holder .headline .audio,
.small-c .news-item-with-description .place-holder .headline .video {
    bottom:0px;
}
.news-item-with-description .place-holder {
    display:block;
    position:relative;
    width: 100%;height:100%; 
    background-image: linear-gradient(to bottom, rgba(0,0,0,0) 70%, rgba(0,0,0,0.8));
    transition: all .5s ease-in-out;
        -webkit-transition: all .5s ease-in-out;
            -moz-transition: all .5s ease-in-out;
                -o-transition: all .5s ease-in-out;
}
.news-item-with-description:hover .image-holder {
    transform:translate(0,-10px) scale(1.1);
}
.news-item-with-description:hover .place-holder {
    transform:translate(0,8px) scale(0.92);
}
.news-item-with-description .place-holder .headline {
    position:absolute;
    height:70px;
    left:0;bottom:0;
    padding:20px;
}
.news-item-with-description .place-holder .headline.video {
    padding-left:70px;
}
.news-item-with-description .place-holder .headline .video {
    position:absolute;
    display:block;
    left:0;
    width:50px;height:50px;
    background-color:var(--color1);
    background-image:url('img/icon_video_white.svg');
    background-size:40px 40px;
    background-position:center center;
    background-repeat:no-repeat;
}
.news-item-with-description .place-holder .headline.audio {
    padding-left:70px;
}
.news-item-with-description .place-holder .headline .audio {
    position:absolute;
    display:block;
    left:0;
    width:50px;height:50px;
    background-color:var(--color1);
    background-image:url('img/icon_audio_white.svg');
    background-size:40px 40px;
    background-position:center center;
    background-repeat:no-repeat;
}
.news-item-with-description .place-holder .headline .date {
    margin-top:10px;
    color:#ffffff;
    padding-left:25px;
    font-size:0.8rem;
    line-height:1.4rem;
    background:url('img/icon_time.svg');
    background-repeat:no-repeat;
    background-size:22px 22px;
}
.news-item-with-description .description {
    padding:var(--paddingsizesmall);
    transition: all .5s ease-in-out;
        -webkit-transition: all .5s ease-in-out;
            -moz-transition: all .5s ease-in-out;
                -o-transition: all .5s ease-in-out;
}
.news-item-with-description .description p {
    display:-webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient:vertical;
    overflow:hidden;
    text-overflow:ellipsis;
    max-width: 100%;
}
.news-item-with-description .description h2 {
    font-size:1.3rem;
    line-height:1.5rem;
    margin-bottom:5px;
    color:var(--color1);
}
footer {
    position:relative;
    grid-area:footer;
    margin-top:calc(-1*var(--gap));
    min-height:var(--footerheight);
    background-color:rgba(var(--color1rgb),0.2);
    color:var(--color1);
}
footer .content-wrapper {
    grid-template-columns:1fr;
    gap:0;
    padding-top:20px;
    padding-bottom:40px;
}
footer .content-wrapper ul {
    list-style:none;
    margin-bottom:20px;
}
footer .content-wrapper ul  li {
    margin-bottom:10px;
}
footer .content-wrapper ul  li a {
    text-decoration:none;
}
footer .content-wrapper ul  li a:hover,
footer .content-wrapper ul  li a:focus {
    text-decoration:underline;
}
footer .content-wrapper p {
    margin-bottom:var(--paddingsizesmall);
}
footer ul.footer-socials {
    list-style:none;
}
footer ul.footer-socials  li {
}
footer ul.footer-socials  li a {
    display:block;
    height:40px;
    background-size:32px 32px;
    padding-left:40px;
    padding-top:5px;
    background-position:center left;
    background-repeat:no-repeat;
}
footer ul.footer-socials  li a.facebook {
    background-image:url('img/icon_facebook.svg');
}
footer ul.footer-socials  li a.twitter {
    background-image:url('img/icon_twitter.svg');
}
footer ul.footer-socials  li a.mailto {
    background-image:url('img/icon_mail.svg');
}
footer ul.footer-socials  li a.whatsapp {
    background-image:url('img/icon_whatsapp.svg');
}
footer ul.footer-socials  li a.linkedin {
    background-image:url('img/icon_linkedin.svg');
}
footer ul.footer-socials  li a.instagram {
    background-image:url('img/icon_instagram.svg');
}
footer ul.footer-socials  li a.tiktok {
    background-image:url('img/icon_tiktok.svg');
}
footer ul.footer-socials  li a.youtube {
    background-image:url('img/icon_youtube.svg');
}
footer .keurmerk {
    display:block;
    width:115px;height:115px;
    background-image: url('img/keurmerk_streekomroep.png');
    background-repeat:no-repeat;
    background-size:115px 115px;
}
.sub-footer {
    position:absolute;
    left:0;bottom:0;
    width:100%;
    background-color:rgba(var(--color1rgb),1);
}
.sub-footer .content-wrapper {
    padding:10px 20px;    
    font-size:0.9rem;
    grid-template-columns:1fr;
    gap:0;
    text-align:center;
    color:#ffffff;
}

@media (min-width: 1200px) and (max-width: 1379px) {
    .content-wrapper {
        width:1200px;
    }
}
@media (min-width: 1000px) and (max-width: 1199px) {
    .content-wrapper {
        width:1000px;
    }
}
@media (min-width: 768px) and (max-width: 999px) {
    .content-wrapper {
        width:100%;
    }
    header #logo {
        left:15px;
    }
    .mobile-hide {
        display:none;
    }
    .medium-c {
        grid-template-columns:1fr 1fr;
    }
}
@media (max-width: 767px) {
    .content-wrapper {
        position:relative;
        width:100%;
        grid-template-columns: 1fr;
        grid-template-areas:
        "header"
        "main aside"
        "footer";
        gap:0;
        padding-top:80px;
    }
    header {
        background-image:url('img/bg_header.png');
        background-position:top left -2950px;
    }
    header .content-wrapper {
        height:70px !important;
        grid-template-columns: 1fr !important;
    }
    header #logo {
        position:absolute;
        left:10px;top:-10px;
        width:100px;height:100px;
        border-radius:50% 50%;
        background-color:#ffffff;
        background-image:url('img/logo_rtvnof.png');
        background-position:top 20px center;
        background-size:70px 70px;
        background-repeat:no-repeat;
    }
    header nav {
        position:absolute;
        width:260px;
        left:120px;top:0px;
        overflow:auto;
    }
    header nav ul {
        }
    header nav ul li a {
        white-space: nowrap;
        color:var(--color1);
    }
    subnav {
        position:fixed;
        left:0;bottom:0;
        height:70px;
        padding:0;margin:0;
        background:var(--colorwhite);
        overflow:auto;
        overflow-y: hidden;          
        z-index:200;
        background-color:var(--color1);
    }
    subnav ul.menu {
        display:flex;
        list-style:none;
        margin:0;padding:0;
    }
    subnav ul.menu li {
        position:relative;
        height:70px;
        padding:0;margin:0;
    }
    subnav ul.menu li a {
        display:block;
        width:70px;height:70px;
        padding:40px 5px 0 5px;margin:0;
        color:#ffffff;
        text-indent:0;
        text-align:center;
        font-size:0.6rem;
        line-height:0.6rem;
        text-decoration:none;
        background-position:top 8px center;
        background-size:28px 28px;
        background-repeat:no-repeat;
        border-right:solid 1px rgba(var(--colorwhitergb),0.2);
        transition: all .5s ease-in-out;
            -webkit-transition: all .5s ease-in-out;
                -moz-transition: all .5s ease-in-out;
                    -o-transition: all .5s ease-in-out;
    }
    subnav ul.menu li a.tv {
        background-image:url('img/icon_tv_white.svg');
        background-color:var(--color1);
        color:var(--colorwhite);
    }
    subnav ul.menu li a.radio {
        background-image:url('img/icon_radio_white.svg');
        background-color:var(--color1);
        color:var(--colorwhite);
    }
    subnav ul.menu li a.live {
        background-image:url('img/icon_cam_white.svg');
        background-color:var(--color1);
        color:var(--colorwhite);
    } 
    subnav ul.menu li a.schrijf {
        background-image:url('img/icon_write_white.svg');
        background-color:var(--color1);
        color:var(--colorwhite);
    }
    subnav ul.menu li a.week {
        background-image:url('img/icon_week_white.svg');
        background-color:var(--color1);
        color:var(--colorwhite);
    }
    subnav ul.menu li a.zoek {
        background-image:url('img/icon_search_white.svg');
        background-color:var(--color1);
        color:var(--colorwhite);
    }
    subnav ul.menu li a.menu {
        background-image:url('img/icon_menu_white.svg');
        background-color:var(--color1);
        color:var(--colorwhite);
    }
    subnav ul.menu li a.tv:hover {
        background-image:url('img/icon_tv_blue.svg');
        background-color:var(--colorwhite);
        color:var(--color1);
    }
    subnav ul.menu li a.radio:hover {
        background-image:url('img/icon_radio_blue.svg');
        background-color:var(--colorwhite);
        color:var(--color1);
    }
    subnav ul.menu li a.live:hover {
        background-image:url('img/icon_cam_blue.svg');
        background-color:var(--colorwhite);
        color:var(--color1);
    }
    subnav ul.menu li a.schrijf:hover {
        background-image:url('img/icon_write_blue.svg');
        background-color:var(--colorwhite);
        color:var(--color1);
    }
    subnav ul.menu li a.week:hover {
        background-image:url('img/icon_week_blue.svg');
        background-color:var(--colorwhite);
        color:var(--color1);
    }
    subnav ul.menu li a.zoek:hover {
        background-image:url('img/icon_search_blue.svg');
        background-color:var(--colorwhite);
        color:var(--color1);
    }
    subnav ul.menu li a.menu:hover {
        background-image:url('img/icon_menu_blue.svg');
        background-color:var(--colorwhite);
        color:var(--color1);
    }
    aside {
        position:fixed;
        left: 0;
        top: 60px;
        height:100vh;
        width:100vw;
        padding:40px 20px 20px 20px;
        background:#ffffff;
        overflow-y:auto;
        transition:transform 0.3s ease-in-out;
        transform: translateX(+100%);
    }
    .overlay-menu {
        transform: translateX(-100%);
        overflow-y:auto;
    }
    .overlay-menu.closed {
        transform: translateX(0);
        overflow-y:auto;
    }
    aside.closed {
        display:block;
        transform: translateX(0);
    }
    button#show-sidebar {
        display:block;
    }
    .mobile-hide {
        display:none !important;
    }
    .super-c .news-item-only-image {
        width:100%;min-height:250px;
    }
    .large-advert,
    .medium-c {
        grid-template-columns:1fr;
    }
    .small-c {
        grid-template-columns:1fr 1fr 1fr;
    }
    .large-full-image-description article {
        grid-template-columns:100px 1fr;
    }
    .large-full-image-description article .image .image-holder {
        width:100px;height:100px;
    }
    
    .large-c .news-item-only-image .place-holder .headline h2 {
        font-size:1rem;
        line-height:1rem;
    }    
    .large-full-image-description article .description h2 {
        display:-webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient:vertical;
        overflow:hidden;
        text-overflow:ellipsis;
        max-width: 100%;
    }
    .advert-banner-block {
        min-width:100% !important;
        max-width:100% !important;
        min-height:100px !important;
    }
    footer {
        margin-top:0;
    }
}