/* FONTS
 * =========================================================================================== */
@font-face {
    font-family: 'GothamBook';
    src: url('../fonts/GothamBook/gotham-book.eot');
    src: url('../fonts/GothamBook/gotham-book.eot') format('embedded-opentype'),
    url('../fonts/GothamBook/gotham-book.woff') format('woff'),
    url('../fonts/GothamBook/gotham-book.ttf') format('truetype'),
    url('../fonts/GothamBook/gotham-book.svg#GothamBook') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'GothamMedium';
    src: url('../fonts/GothamMedium/gotham-medium.eot');
    src: url('../fonts/GothamMedium/gotham-medium.eot') format('embedded-opentype'),
    url('../fonts/GothamMedium/gotham-medium.woff') format('woff'),
    url('../fonts/GothamMedium/gotham-medium.ttf') format('truetype'),
    url('../fonts/GothamMedium/gotham-medium.svg#GothamMedium') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'GothamBold';
    src: url('../fonts/GothamBold/gotham-bold.eot');
    src: url('../fonts/GothamBold/gotham-bold.eot') format('embedded-opentype'),
    url('../fonts/GothamBold/gotham-bold.woff') format('woff'),
    url('../fonts/GothamBold/gotham-bold.ttf') format('truetype'),
    url('../fonts/GothamBold/gotham-bold.svg#GothamBold') format('svg');
    font-weight: normal;
    font-style: normal;
}



/* ALGEMENE OPMAAK
 * =========================================================================================== */
* {
    padding: 0;
    margin: 0;
}

html {
}

body {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    font-family: 'GothamBook', serif;
    font-size: 14px;
    line-height: 24px;
    color: #404040;
    background: #e3e3e3;
    overflow-y: scroll;

    background: #fff url('../img/bg-gradient.png') repeat-x left top;

    /*-webkit-text-stroke: 1px rgba(0,0,0,0.1);*/
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'GothamMedium', serif;
}

p {
    margin-bottom: 1em;
}

a,
a:link {
    color: #7d4199;
}

a:hover {
    color: #7d4199;
}

strong {
    font-weight: bold;
}

em {
    font-style: italic;
}

img {
    display: inline-block;
    max-width: 100%;
    height: auto;
}

input,
button {
    -webkit-appearance: none;
    border-radius: 0;
}

input[type="radio"] {
    -webkit-appearance: radio;
}

input,
textarea,
button, 
select {
    font-family: 'GothamBook', serif;
    font-size: 14px;
    line-height: 1.6em;
}

input[type="text"],
input[type="password"],
input[type="email"],
textarea {
    width: 96%;
    padding: 5px 2%;
    margin: 0 0 10px 0;
    color: #999;
    border: 0;
    border-radius: 3px;
    box-shadow: 0 0 0 1px #cfcfcf;
}


input {

}

input[type="text"]:focus,
input[type="password"]:focus,
textarea:focus {
    color: #404040 !important;
}

hr {
    margin: 40px 0;
    border: 0;
    border-top: solid 1px #e3e3e3;
}

.left {
    float: left;
}

.right {
    float: right;
}

.clear {
    display: block;
    clear: both;
}

/* WEBKIT SCROLLBARS
 * =========================================================================================== */
#main ::-webkit-scrollbar {
    width: 4px;
}

#main ::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    border-radius: 2px;
}

#main ::-webkit-scrollbar-thumb {
    border-radius: 2px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
}

/* TITELS
 * =========================================================================================== */
.pageTitle {
    display: block;
    margin: 8% 0;
    font-family: 'GothamBold', serif;
    font-size: 24px;
    line-height: 1.6em;
    text-transform: uppercase;
    text-align: center;
    color: #7D4199;
}

.pageSubTitle {
    font-size: 20px;
    line-height: 1.6em;
    text-transform: uppercase;
}

.acrticleTitle {
    text-transform: uppercase;
}
.formTitle {
    margin: 0;
}
/* EFFECTS
 * =========================================================================================== */
.animation {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.darkGradient {
    background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,0.75) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,0.75)));
    background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.75) 100%);
    background: -o-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.75) 100%);
    background: -ms-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.75) 100%);
    background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.75) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#bf000000',GradientType=0 );
}

/* DEFAULT BUTTONS
 * =========================================================================================== */
.button {
    display: inline-block;
    height: 20px;
    padding: 5px 10px;
    font-family: 'GothamMedium', serif;
    font-size: 14px;
    text-transform: uppercase;
    line-height: 20px;
    color: #fff;
    background: #7d4199;
    border-radius: 3px;
    border: 0;
    cursor: pointer;
}

button.button,
input.button {
    height: 30px;
}

a.button {
    text-decoration: none;
    color: #fff !important;
}

.button:hover {
    background: #634173;
}

.btnInactive {
    display: inline-block;
    height: 20px;
    padding: 5px 10px;
    font-family: 'GothamMedium', serif;
    font-size: 14px;
    text-transform: uppercase;
    line-height: 20px;
    color: #fff;
    background: #ccc;
    border-radius: 3px;
    border: 0;
    cursor: not-allowed;
}

.buttonWachtwoordVergeten {
    float: right;
    display: inline-block;
    line-height: 30px;
}


/* BESTEL BUTTON
 * =========================================================================================== */
.btnBestelContainer {
    position: absolute;
    top: 200px;
    left: 0;
    width: 25%;
    text-align: center;
}

    a.btnBestel {
        display: inline-block;
        padding: 5px 30px;
        font-family: 'GothamBold', serif;
        font-size: 14px;
        font-weight: 300;
        line-height: 30px;
        color: #fff;
        text-decoration: none;
        background: #7d4199;
        border-radius: 3px;
    }

    a.btnBestel:hover {
        background: #634173;
    }

/* SOCIAL MEDIA
 * =========================================================================================== */
.socialmediaContainer {
    position: fixed;
    right: 0;
    top: 65px;
    z-index: 999;
}

    .socialIcon {
        display: block;
        width: 40px;
        height: 40px;
        background-color: #7d4199;
        background-position: center center;
        background-repeat: no-repeat;
    }

    .socialIcon:hover {
        background-color: #634173;
    }

    .socialIcon.facebook {
        background-image: url('../img/socialmedia/icoon-facebook.png');
    }

    .svg .socialIcon.facebook {
        background-image: url('../img/socialmedia/icoon-facebook.svg');
    }

    .socialIcon.twitter {
        background-image: url('../img/socialmedia/icoon-twitter.png');
    }

    .svg .socialIcon.twitter {
        background-image: url('../img/socialmedia/icoon-twitter.svg');
    }

    .socialIcon.youtube {
        background-image: url('../img/socialmedia/icoon-youtube.png');
    }

    .svg .socialIcon.youtube {
        background-image: url('../img/socialmedia/icoon-youtube.svg');
    }

    .socialIcon.instagram {
        background-image: url('../img/socialmedia/icoon-instagram.png');
    }

    .svg .socialIcon.instagram {
        background-image: url('../img/socialmedia/icoon-instagram.svg');
    }

    .svg .socialIcon.youtube {
        background-image: url('../img/socialmedia/icoon-youtube.svg');
    }

    .followusContainer {
        width: 40px;
        height: 100px;
        background: #7d4199 url('../img/socialmedia/followus.png') no-repeat center center;
    }

    .svg .followusContainer {
        background-image: url('../img/socialmedia/followus.png');
    }

/* INDELING WEBSITE
 * =========================================================================================== */
#wrapContainer {
    max-width: 1200px;
    margin: 0 auto;
    background: #f4f4f4;
}

/* EYECATCHER */
.eyecatcher {
    position: relative;
    min-height: 100px;
    background: #404040;
}

    .eyecatcher img {
        display: block;
        width: 100%;
        height: auto;
    }

    .eyecatcherCaption {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 92%;
        padding: 4%;
        font-size: 30px;
        line-height: 1.2em;
        text-transform: uppercase;
        color: #fff;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    }

/* INDELING MAIN */
#main {
    position: relative;
}

    #main > .left {
        float: left;
        width: 25%;
        margin-top: 270px;
    }

    #main > .main {
        float: left;
        width: 50%;
        min-height: 900px;
        background: #fff;
    }

        #main > .main .content {
            padding: 4%;
        }

    #main > .right {
        float: right;
        width: 25%;
    }

    #main > .left,
    #main > .main,
    #main > .right {
        height: auto;
    }
    #main ul {
        list-style: square inside;
    }
/* TOP
 * =========================================================================================== */
#top {
    line-height: 60px;
    background: #404040;
    border-bottom: solid 5px #7d4199;
}

    .btnMobileNavigation {
        display: none;
    }

    #top .navigation {
        display: block;
        float: left;
        font-family: 'GothamMedium', serif;
        font-size: 16px;
        list-style: none;
    }

        #top .navigation li {
            display: block;
            float: left;
        }

            #top .navigation li a,
            #top .navigation li p {
                display: block;
                padding: 0 20px;
                text-transform: uppercase;
                text-decoration: none;
                color: #fff !important;
                margin: 0;
            }

            #top .navigation li a:hover,
            #top .navigation li p:hover {
                background: #7d4199;
            }

        /* NIVEAU 2 */
        #top .navigation li ul {
            display: none;
            position: absolute;
            z-index: 99999999;
            background: #7D4199;
        }

    #top a.btnBestel {
        margin-left: 10px;
    }

    /* BANNER BINGOBINK */
    #top .imgBannerLarge,
    #top .imgBannerSmall {
        display: block;
        float: right;
        margin-top: 5px;
    }

    #top .imgBannerSmall {
        display: none;
    }

    /* SMALL TOP NAVIGATION */
    .smallNav {
        float: right;
    }

        /* ZOEK WIDGET */
        .loginWidget {
            position: relative;
            float: left;
        }
            .loginWidget .btnLoginWidget,
            .loginWidget .btnLoginWidget:visited,
            .loginWidget .btnLoginWidget:link {
                display: block;
                width: 140px;
                padding: 0 25px 0 10px;
                margin: 0 15px 0 0;
                height: 60px;
                text-transform: uppercase;
                color: #FFF;
                font-weight: bold;
                text-decoration: none;
                background: url('../img/iconen/icoon-login.png') no-repeat right center;
                cursor: pointer;
            }
            .svg .btnSearchWidget .btnLoginWidget {
                background-image: url('../img/iconen/icoon-login.svg');
            }
            .btnLogoutWidget {
                width: 70px !important;
            }
        .loginWidget:hover {
            background-color: #7d4199;
        }

        .searchWidget {
            position: relative;
            float: left;
        }

            .searchWidget .btnSearchWidget {
                width: 60px;
                height: 60px;
                background: url('../img/iconen/icoon-vergrootglas.png') no-repeat center center;
                cursor: pointer;
            }

            .svg .btnSearchWidget .searchWidget {
                background-image: url('../img/iconen/icoon-vergrootglas.svg');
            }

        .searchWidget:hover,
        .searchWidget.open {
            background-color: #7d4199;
        }

        .searchWidget.open .btnSearchWidget {
            background-image: url('../img/iconen/icoon-close-licht.png');
        }

            .searchWidget .searchWidgetContainer {
                position: absolute;
                top: 60px;
                right: 0;
                display: none;
                width: 200px;
                padding: 10px 10px 5px 10px;
                line-height: 40px;
                background: #7d4199;
                border-radius: 0 0 0 3px;
                z-index: 999;
            }

            .searchWidget.open .searchWidgetContainer {
                display: block;
            }

                .searchWidget .searchWidgetContainer input {
                    float: left;
                    height: 20px;
                    width: 76%;
                    padding: 5px 2%;
                    border-radius: 3px 0 0 3px;
                    box-shadow: none;
                }

                .searchWidget .zoekWidgetSubmit {
                    display: block;
                    float: left;
                    width: 20%;
                    height: 30px;
                    background: #404040 url('../img/iconen/icoon-vergrootglas.png') no-repeat center center;
                    background-size: auto 60%;
                    border-radius: 0 3px 3px 0;
                    cursor: pointer;
                }

                .svg .searchWidget .zoekWidgetSubmit {
                    background-image: url('../img/iconen/icoon-vergrootglas.svg');
                }

                .searchWidget .zoekWidgetSubmit:hover {
                    background-color: #111;
                }

    .taalWidget {
        position: relative;
        float: left;
    }

        .taalCurrent {
            height: 30px;
            padding: 15px 10px;
            line-height: 30px;
            cursor: pointer;
        }

        .taalCurrent:hover {
            background: #7D4199;
        }

        .taalList {
            position: absolute;
            top: 60px;
            right: 0;
            display: none;
            background: #7D4199;
            z-index: 100;
        }

        .taalWidget.open .taalList {
            display: block;
        }

            .taalListItem {
                display: block;
                height: 30px;
                padding: 10px 10px;
                cursor: pointer;
            }

            .taalListItem:hover {
                background: #634173;
            }

            /*.taalListItem.en {
                display: none;
            }*/

                .taalListItem a {
                    display: block;
                    line-height: 0;
                }

/* SIDE NAVIGATION
 * =========================================================================================== */
.topContainer {
    position: fixed;
    display: none;
    width: 100%;
    height: 60px;
    border-bottom: solid 1px #d5d5d5;
    background: #e3e3e3;
    z-index: 999;
}

    .sideNavButton {
        position: absolute;
        top: 0;
        left: 0;
        display: block;
        width: 40px;
        height: 60px;
        background:
            #e3e3e3
            url('../img/iconen/icoon-nav-donker.png')
            no-repeat
            center center;
        cursor: pointer;
    }

    .svg .sideNavButton {
        background-image: url('../img/iconen/icoon-nav-donker.svg');
    }

    .topContainer .imgBannerSmall {
        position: absolute;
        top: 5px;
        right: 80px;
        display: block;
    }

    .logoTop {
        position: absolute;
        top: 0;
        right: 0;
        width: 40px;
        height: 60px;
        padding-right: 2%;
        background-image: url('../img/logo-flat-grijs-small.png');
        background-repeat: no-repeat;
        background-position: left center;
    }

    .svg .logoTop {
        background-image: url('../img/logo-flat-grijs-small.svg');
    }

.sideNav {
    display: block;
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    height: 100%;
    background: #e3e3e3;
    color: #404040;
    z-index: 99999;
    border-right: solid 1px #d5d5d5;
}

    /* ZOEKEN */
    .sideNav .searchWidgetContainer {
        padding: 0 4%;
        margin-top: 50px;
        background: none !important;
    }

        .sideNav input[type="text"] {
            float: left;
            height: 20px;
            width: 81%;
            padding: 5px 2%;
            margin: 0;
            line-height: 20px;
            background: #f0f0f0;
            box-shadow: none;
            border-radius: 3px 0 0 3px;
        }

        .sideNav .zoekWidgetSubmit {
            display: block;
            float: right;
            width: 15%;
            height: 30px;
            background: #303030 url('../img/icoon-vergrootglas.png') no-repeat center center;
            background-size: auto 60%;
            border-radius: 0 3px 3px 0;
            cursor: pointer;
        }

        .sideNav .zoekWidgetSubmit:hover {
            background-color: #202020;
        }

    /* TAALSWITCH */
    .sideNav .taalWidget {
        position: relative;
        float: none;
        display: block;
        height: auto;
        padding: 0;
        margin: 20px 0;
        background: #d0d0d0;
    }

        .sideNav .taalList {
            position: relative;
            top: auto;
            right: auto;
            display: inline-block;
            margin: 0;
            padding: 0;
            background: none;
        }

        .sideNav .taalCurrent,
        .sideNav .taalListItem {
            display: inline-block;
            background: none;
        }

        .sideNav .taalListItem.be,
        .sideNav .taalListItem.en {
            display: none;
        }

        .sideNav .taalCurrent img {
            box-shadow: 0 0 0 2px #fff;
        }

    /* PREMIUM LOGIN */
    .sideNav .loginWidget {
        float: none;
    }

        .sideNav .loginWidget .btnLoginWidget,
        .sideNav .loginWidget .btnLoginWidget:visited,
        .sideNav .loginWidget .btnLoginWidget:link {
            width: 81%;
            margin: 0;
            padding: 0 4% 0 15%;
            font-weight: normal;
            text-transform: none;
            line-height: 60px;
            color: #404040;
            background: url("../img/iconen/icoon-login-grijs.png") no-repeat scroll 4% center rgba(0, 0, 0, 0);
        }

            .svg .sideNav .loginWidget .btnLoginWidget {
                background-image: url("../img/iconen/icoon-login-grijs.svg");
            }

        .sideNav .loginWidget .btnLoginWidget:hover {
            background-color: #d0d0d0;
        }


    /* NAVIGATIE */
    .sideNav .navigation {
        margin-top: 0px;
    }

        .sideNav .navigation li {
            display: block;
        }

            .sideNav .navigation li a {
                display: block;
                padding: 0 4%;
                text-decoration: none;
                line-height: 40px;
                color: #404040;
                border-bottom: solid 1px #d0d0d0;
            }

            .sideNav .navigation li:first-child a {
                border-top: solid 1px #d0d0d0;
            }

            .sideNav .navigation li a:hover {
                background: #d0d0d0;
            }

    .btnClose {
        position: absolute;
        top: 0px;
        right: 0px;
        width: 40px;
        height: 40px;
        background: url('../img/iconen/icoon-close.png') no-repeat center center;
        cursor: pointer;
    }

    .svg .btnClose {
        background-image: url('../img/iconen/icoon-close.svg');
    }

/* HEADER (HOME)
* =========================================================================================== */
.slider {
    position: relative;
}

    /* LINKS */
    .logo {
        position: absolute;
        top: 20px;
        left: 0;
        width: 25%;
        text-align: center;
        z-index: 60;
    }

        .logo img {
            width: 193px;
            height: auto;
            max-width: 92%;
        }

    .sliderListing {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 25%;
    }

        .sliderListingItem,
        a.sliderListingItem {
            position: relative;
            display: block;
            padding: 4% 6%;
            color: #404040;
            text-decoration: none;
            border-top: solid 1px #e3e3e3;
            cursor: pointer;
        }

        .sliderListingItem.activeSlide {
            position: relative;
            color: #fff;
            background: #b18dc2;
            border-top: solid 1px #b18dc2;
        }

        .sliderListingItem.activeSlide:after {
            position: absolute;
            right: -20px;
            top: 0;
            display: block;
            content: '';
            width: 20px;
            height: 100%;
            background-image: url('../img/bg-arrow-slider.png');
            background-repeat: no-repeat;
            background-position: left center;
            background-size: 20px 100%;
            z-index: 70;
        }

        /*
        .svg .sliderListingItem.activeSlide:after {
            background: url('../img/bg-arrow-slider.svg');
            background-size: 20px 100%;
        }
        */

            .sliderListingTitle {
                display: block;
                font-size: 16px;
                text-transform: uppercase;
                line-height: 1.6em;
                text-overflow: ellipsis;
                white-space: nowrap;
                overflow: hidden;
            }

            .sliderListingSubTitle {
                font-size: 13px;
                line-height: 1.6em;
            }

    /* RECHTS */
    .sliderRight {
        float: right;
        width: 75%;
        background: #404040;
    }

        .sliderItemContainer {
            position: relative;
            display: none;
        }

        .sliderItemContainer:first-child {
            display: block;
        }

            .sliderItemContainer img {
                display: block;
            }

            .slideCaption {
                position: absolute;
                bottom: 0;
                left: 0;
                display: block;
                width: 92%;
                padding: 4%;
                color: #fff;
                background: #222;
            }
                .rgba .slideCaption {
                    background: rgba(34, 34, 34, 0.7);
                }

                .slideCaptionTitle {
                    font-size: 30px;
                    text-transform: uppercase;
                    line-height: 1.2em;
                    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
                }

/* WIDGETS (ALGEMEEN)
* =========================================================================================== */
.widgetsContainer {
    position: relative;
    border-top: solid 2px #404040;
}

.widget {
    position: relative;
    float: left;
    display: block;
    width: 100%;
    text-decoration: none;
    border-top: solid 1px  #e0e0e0;
}

.widget:hover {
    color: #404040;
}

.widgetContent {
    display: block;
    padding: 4%;
    background: #f4f4f4;
    font-size: 13px;
    line-height: 1.6em;
}
.widgetTitle {
    display: block;
    font-family: 'GothamMedium', serif;
    font-size: 16px;
    text-transform: uppercase;
    line-height: 1.6em;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.widgetSubTitle {
    font-size: 14px;
    text-transform: uppercase;
    line-height: 1.6em;
}

.widgetIntro {
    display: block;
    min-height: 45px;
    font-size: 13px;
    line-height: 1.6em;
}

.widgetImage {
    position: absolute;
    bottom: 0;
    width: 100%;
}

.widgetImage img {
    display: block;
}

.widgetImage .imageTitle {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 92%;
    padding: 4%;
    font-family: 'GothamMedium', serif;
    font-size: 16px;
    text-transform: uppercase;
    line-height: 1.6em;
    color: #fff;
}

/* WIDGETS (LINKER/RECHTER KANT)
* =========================================================================================== */
#main .right .widget {
    float: none;
}

    #main .left .widgetContent {
        padding: 8%;
    }

    #main .right .widgetContent {
        padding: 8% 8% 66% 8%;
    }

    /* CONTACT WIDGETS RECHTERKANT */
    #main .right .contactWidget .widgetContent {
        padding: 8%;
    }

    /* LISTING RECHTERKANT */
    #main .right .articleListing {

    }

        #main .right .scrollContainer {
            overflow-y: scroll;
        }

        .right .articleListItem  {
            display: block;
            padding: 8%;
            font-size: 14px;
            text-decoration: none;
            border-bottom: solid 1px #e3e3e3;
        }

        .right .articleListItem.active,
        .right .articleListItem.active:hover {
            background: #FDC470;
        }

        .right .articleListItem:hover {
            background: #fff;
        }

            .right .articleListItemTitle {
                display: block;
                font-family: 'GothamBold', serif;
                text-transform: uppercase;
                color: #404040;
            }

            .right .articleListItemIntro {
                color: #404040;
            }

            .right .articleListItem.active .articleListItemTitle,
            .right .articleListItem.active .articleListItemIntro,
            .right .articleListItem.active:hover .articleListItemTitle,
            .right .articleListItem.active:hover .articleListItemIntro,
            .amber .right .articleListItem.active:hover .articleListItemTitle,
            .amber .right .articleListItem.active:hover .articleListItemIntro {
                color: #fff;
            }

/* WIDGETS (HOME)
* =========================================================================================== */
    .home .widget {
        width: 25%;
        border: 0;
    }

    .home a.widget:hover {
        color: #404040;
    }

    .home .widget img {
        width: 100%;
        height: auto;
    }

        .home .widgetContent {
            padding-bottom: 66%;
        }

        .home .widget:nth-child(1) .widgetContent {
            background: #e3e3e3;
        }

        .home .widget:nth-child(2) .widgetContent {
            background: #eee;
        }

        .home .widget:nth-child(3) .widgetContent {
            background: #f4f4f4;
        }

    /* WIDGET TV GIDS / POLL (HOME) */
    .widget.tvGuideHome,
    .widget.pollWidget {
        position: absolute;
        top: 0;
        right: 0;
        display: block;
        width: 25%;
        height: 100%;
        color: #fff;
    }

    /* WIDGET TVGUIDE */
    .widget.tvGuideHome {
        background: #7d4199;
        overflow: hidden;
    }

        .widget.tvGuideHome .tvGuideItem {
            width: 100%;
            height: 33%;
            overflow: hidden;
        }

        .widget.tvGuideHome .tvGuideItem:nth-child(2) {
            background: #9767ad;
        }

        .widget.tvGuideHome .tvGuideItem:nth-child(3) {
            height: 34%;
            background: #b18dc2;
        }

        .widget.tvGuideHome a {
            color: #fff;
        }

            .tvGuideItem .tvGuideItemLeft {
                float: left;
                width: 42%;
                padding: 4%;
                overflow: hidden;
            }

            .tvGuideItem .tvGuideItemLeft.short {
                width: 42%;
            }

                .tvGuideItem .tvGuideItemName,
                .tvGuideItem .tvGuideItemTitle {
                    display: block;
                    max-height: 40px;
                    overflow: hidden;
                    text-overflow: ellipsis;
                    white-space: nowrap;
                }

                .tvGuideItem .tvGuideItemTitle {
                    font-family: 'GothamMedium', serif;
                    font-size: 16px;
                    text-transform: uppercase;
                    line-height: 1.6em;
                }

                .tvGuideItem .tvGuideItemName {
                    font-size: 13px;
                    line-height: 1.6em;
                }

                .tvGuideItem .tvGuideItemTime {
                    padding-left: 20px;
                    background: url('../img/iconen/icoon-klok.png') no-repeat left center;
                }

                .svg .tvGuideItem .tvGuideItemTime {
                    background-image: url('../img/iconen/icoon-klok.svg');
                }

            .tvGuideItem .tvGuideItemRight {
                float: left;
                width: 50%;
                overflow: hidden;
            }

                .tvGuideItem .tvGuideItemRight img {
                    display: block;
                    height: auto;
                    width: auto;
                    max-width: 110%
                }

    /* WIDGET POLL */
    .widget.pollWidget {
        background: #ca3092;
    }

        .pollWidgetContent {
            padding: 4%;
            color: #fff;
        }

            .pollTitel {
                margin-bottom: 10px;
            }

            .poll-item input[type="radio"] {

            }

            .poll-item label {
                margin-left: 10px;
            }

            .pollKnoppen {
                margin-top: 10px;
            }

                .btnResultaatContainer {
                    display: inline-block;
                }

                .btnStem,
                a.btnResultaat {
                    display: inline-block;
                    height: 20px;
                    padding: 5px 10px;
                    font-family: 'GothamMedium', serif;
                    font-size: 14px;
                    text-transform: uppercase;
                    text-decoration: none;
                    line-height: 20px;
                    color: #ca3092;
                    border: 0;
                    border-radius: 3px;
                    background: #fff;
                    cursor: pointer;
                }

                .btnStem {
                    height: 30px;
                }

            /* RESULTAAT */
            p.pollUitslagItemTitel {
                margin: 0;
            }

            .bar {
                display: block;
                height: 5px;
                margin-bottom: 10px;
                background: #fff;
            }

    /* WIDGET TWITTER (HOME) */
    .widget.twitter {
        position: absolute;
        float: none;
        width: 25%;
        height: 100%;
        background: #47c3d3;
    }

        .widget.twitter img {
            display: none;
        }
        
 	.twitter li {
		padding:5px 0 0 0;
	}
	.twitter li:first-child {
		border-bottom: 1px solid #fff;
		padding:5px 0;
    }

    .rgba .twitter li:first-child {
        border-color: rgba(255, 255, 255, .2);
    }

    .home .widget.twitter .widgetContent {
        padding-bottom: 4%;
        font-size: 13px;
        line-height: 1.6em;
        color: #fff;
        background: #47c3d3;
    }

        .widget.twitter .widgetContent a {
            text-decoration: none;
            color: #fff;
        }

        .widget.twitter .widgetContent a:hover {
            text-decoration: underline;
        }

    /* WIDGET FACEBOOK (HOME) */
    .widget.facebook {
        position: absolute;
        left: 25%;
        width: 25%;
        height: 100%;
        background: #3b5998;
    }

    .widget.facebook li {
        padding:5px 0 0 0;
    }

    .widget.facebook li:first-child {
        padding:5px 0;
        border-bottom: 1px solid #fff;
    }

    .rgba .widget.facebook li:first-child {
        border-color: rgba(255, 255, 255, .2);
    }

    .home .widget.facebook .widgetContent {
        padding-bottom: 4%;
        color: #fff;
        background: #3b5998;
    }

        .widget.facebook .widgetContent a {
            text-decoration: none;
            color: #fff;
        }

        .widget.facebook .widgetContent a:hover {
            text-decoration: underline;
        }

    /* WIDGET PREMIUM (HOME) */
    .widget.premium {
        margin-left: 50%;
        color: #7d4199;
    }

        .widget.premium .widgetContent {
            min-height: 225px;
            padding: 4%;
            background: #e3e3e3 !important;
        }

            .inlogForm {
                margin: 10px 0;
            }

                .inlogForm input[typ="text"] {
                    width: 96%;
                    padding: 5px 2%;
                    box-shadow: 0 0 0 1px #cfcfcf;
                    margin: 0 0 10px 0;
                    color: #999;
                }

                a.btnActiveren,
                .btnInloggen {

                }

    /* WIDGET NIEUWSBRIEF (HOME) */
    .se.widget.nieuwsbrief {
        float: right;
        width: 50%;
		min-height: 275px;
    }

    .widget.nieuwsbrief {
        color: #7d4199;
    }

        .widget.nieuwsbrief .widgetContent {
            padding: 4%;
        }

            .widget.nieuwsbrief input[type="text"] {
                color: #999;
            }


/* FORM ITEM
* =========================================================================================== */
.formItem input,
.formItem textarea {
    margin: 10px 0;
}

select {
    display: block;
	border: 1px solid #CFCFCF;
    border-radius: 3px;
    color: #999999;
    margin: 10px 0;
    padding: 5px 2%;
    width: 50%;
	height:32px;
}

input.submit {
    margin-top: 20px;
}
.error,
.errorContainer {
    color: #EF3E42;
}
.succesContainer {
    color: #0C0;
}

/* TOP CONTENT
* =========================================================================================== */
.nieuwsPage .main .top {
    padding: 4%;
}

.main .top .date {
    padding-left: 30px;
    background: url('../img/iconen/icoon-kalender.png') no-repeat left center;
}

.svg .main .top .date {
    background-image: url('../img/iconen/icoon-kalender.svg');
}

/* NIEUWS
* =========================================================================================== */
.nieuwsPage.detail .main .content p:first-of-type {
    font-family: 'GothamBold', serif;
}

.nieuwsPage .left .scrollContainer {
    position:absolute;
    top: 300px;
    left: 0;
    width: 25%;
    height: 560px;
    overflow: hidden;
    overflow-y: scroll;
}

.left .articleOverview {
    display: none;
}

    .left .articleListing {
        position: relative;
        overflow: visible;
    }

        .left .articleListItem {
            display: block;
            padding: 4% 6%;
            text-decoration: none;
            color: #404040 !important;
            border-bottom: solid 1px #e3e3e3;
        }

        .left .articleListItem:first-child {
            border-top: solid 1px #e3e3e3;
        }

            .left .articleListItemTitle {
                display: block;
                font-family: 'GothamBold', serif;
                font-size: 16px;
                text-transform: uppercase;
            }

        .amber .left .articleListItem.active,
        .amber .left .articleListItem.active:hover {
            position: relative;
            color: #fff !important;
            background: #fdc470;
        }

/* LISTING NIEUWS ARTIKELEN */
.main .articleListItem {
    display: block;
    color: #404040 !important;
}

.amber .main .articleListItem:hover {
    color: #fbb040 !important;
}

.amber .left .articleListItem:hover {
    color: #fbb040 !important;
    background: #fff;
}

.main .articleListItem:nth-child(even) {
    background: #f4f4f4;
}

    .main .articleListEyecatcher {
        display: block;
    }

    .main .articleListItem .left {
        padding: 2% 4%;
        width: 70%;
    }

        .main .articleListTitle,
        .main .articleListDate {
            display: block;
        }

        .main .articleListTitle {
            font-family: 'GothamMedium', serif;
            text-transform: uppercase;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .main .articleListDate {
            font-size: 0.8em;
        }


    .articleListEyecatcher {
        float: right;
        width: 21%;
        height: auto;
    }

        .articleListEyecatcher img {
            display: block;
        }

/* TOP VERVOLGPAGINA'S
* =========================================================================================== */
.main .content {
    padding: 4%;
}

    .main .top {
        padding: 4%;
    }

/* TV GIDS (OVERZICHTSPAGINA)
* =========================================================================================== */
/* TVGUIDE LEFT */
.tvGuideNavContainer {
    position: relative;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

    #main ul.tvGuideNav {
        list-style: none;
        padding: 0;
        font-size: 0;
        text-align: center;
        line-height: 0;
    }

        .tvGuideNav li {
            display: inline-block;
            padding: 5px 10px;
            margin: 5px;
            font-family: "GothamMedium", serif;
            font-size: 14px;
            text-transform: uppercase;
            line-height: 20px;
            color: #fff;
            background: #47C3D3;
            cursor: pointer;
        }

        .tvGuideNav li:hover {
            background: #50959E;
        }

        .tvGuideNav li.active,
        .tvGuideNav li.active:hover {
            color: #47c3d3;
            background: #fff;
        }


    /* LISTING */
    .sideWidgetListContainer .scrollContainerTvguide {
        top: 170px;
        left: 0;
    }

.tvGuideNav .scrollContainer {
    position: absolute;
    left: 0;
    width: 100%;
    height: 620px;
    overflow: hidden;
}

    .sideWidgetListContainer {
        position: relative;
        display: block;
        padding-top: 10px;
    }

        .scrollContainerTvguide {
            display: none;
        }

        .scrollContainerTvguide:first-child {
            display: block;
        }

            .scrollContainerTvguide li.articleListItem {
                padding: 0;
            }

                .scrollContainerTvguide li a {
                    display: block;
                    color: #404040;
                }

                .scrollContainerTvguide li a:hover {
                    color: #47C3D3;
                    background: #fff;
                }

                .scrollContainerTvguide li.active a,
                .scrollContainerTvguide li.active a:hover {
                    color: #fff;
                    background: #94DFE9;
                }

                    .scrollContainerTvguide li .left {
                        width: 15%;
                        padding: 0 0 0 6%;
                        font-size: 1em;
                        line-height: 60px;
                    }

                    .scrollContainerTvguide li .right {
                        width: 70%;
                        padding: 0 6% 0 0;
                        line-height: 60px;
                    }

                        .scrollContainerTvguide li .tvGuideTitle {
                            display: block;
                            font-family: 'GothamMedium', serif;
                            font-size: 16px;
                            text-transform: uppercase;
                            overflow: hidden;
                            text-overflow: ellipsis;
                            white-space: nowrap;
                        }

                        .scrollContainerTvguide li .tvGuideIntro {
                            display: none;
                        }

/*
    .tvGuideNav {
        left: 0;
        width: 900%;
        padding: 0;
        height: 60px;
        overflow: hidden;
    }


            .btnTvGuideNav {
                position: absolute;
                left: 0;
                display: block;
                width: 20px;
                height: 60px;
                cursor: pointer;
                background-color: #47C3D3;
                background-repeat: no-repeat;
                background-position: center center;
                z-index: 10;
            }

            .btnTvGuideNav:hover {
                background-color: #50959E;
            }

            .btnTvGuideNav.notActive,
            .btnTvGuideNav.notActive:hover {
                background-color: #ccc;
            }

                .btnTvGuideNav.btnLeft {
                    left: 0;
                    background-image: url('../img/arrow-left-white.png');
                }

                .svg .btnTvGuideNav.btnLeft {
                    background-image: url('../img/arrow-left-white.svg');
                }

                .btnTvGuideNav.btnRight {
                    left: 25%;
                    margin-left: -20px;
                    background-image: url('../img/arrow-right-white.png');
                }

                .svg .btnTvGuideNav.btnRight {
                    background-image: url('../img/arrow-right-white.svg');
                }

        .tvGuideNav > li {
            position: relative;
            display: block;
            float: left;
            width: 7.11111%;
            padding: 0 2%;
            font-family: 'GothamMedium';
            font-size: 20px;
            text-transform: uppercase;
            text-align: center;
            line-height: 60px;
            color: #47C3D3;
            cursor: pointer;
            overflow: hidden;
        }

        .tvGuideNav > li.active {
            color: #47C3D3;
        }

        .tvGuideNav .sideWidgetListContainer {
            position: absolute;
            top: 60px;
            left: 0;
            width: 100%;
            height: 570px;
            overflow: hidden;
            overflow-y: scroll;
        }


        .tvGuideNav > li .scrollContainer {
            display: block;
        }

        .tvGuideNav > li.active .scrollContainer {
            display: block;
        }

            .tvGuideNav .scrollContainer {
                position: absolute;
                left: 0;
                width: 100%;
                height: 620px;
                overflow: hidden;
            }

                .tvGuideNav .sideWidgetList li {
                    display: block;
                    padding: 0;
                    font-family: 'GothamBook';
                    text-transform: none;
                    text-align: left;
                    line-height: 1.6em;
                }

                .tvGuideNav .sideWidgetList li:hover {
                    background: #fff;
                }

                .tvGuideNav .sideWidgetList li.active,
                .tvGuideNav .sideWidgetList li.active:hover {
                    background: #94dfe9;
                }

                .tvGuideNav .sideWidgetList li a {
                    color: #404040;
                }

                .tvGuideNav .sideWidgetList li a:hover {
                    color: #47C3D3;
                }

                .tvGuideNav .sideWidgetList li.active a,
                .tvGuideNav .sideWidgetList li.active a:hover{
                    color: #fff;
                }

                    .tvGuideNav .sideWidgetList li .left {
                        width: 15%;
                        padding: 0 0 0 6%;
                        font-size: 0.7em;
                        line-height: 60px;
                    }

                    .tvGuideNav .sideWidgetList li .right {
                        width: 70%;
                        padding: 0 6% 0 0;
                        line-height: 60px;
                    }

                    .tvGuideNav .sideWidgetList li .tvGuideTitle {
                        display: block;
                        font-family: 'GothamMedium';
                        font-size: 16px;
                        text-transform: uppercase;
                        overflow: hidden;
                        text-overflow: ellipsis;
                        white-space: nowrap;
                    }

                    .tvGuideNav .sideWidgetList li .tvGuideIntro {
                        display: none;
                    }

                    */

/* FILMS & SERIES (PAGINA)
* =========================================================================================== */
/* LETTER NAVIGATIE */
.filmsAndSeriesNav {
    padding: 0 4%;
    text-align: left;
}

    .filmsAndSeriesNav > li {
        display: inline-block;
        margin-bottom: 5px;
    }

        .filmsAndSeriesNav > li > a {
            display: block;
            width: 32px;
            font-family: 'GothamMedium', serif;
            text-align: center;
            text-decoration: none;
            line-height: 32px;
            color: #888 !important;
            background: #e3e3e3;
            cursor: pointer;
        }

        .filmsAndSeriesNav > li > a:hover,
        .filmsAndSeriesNav > li.active > a {
            color: #fff !important;
            background: #ca3092;
        }

    /* FILMS & SERIES IES LIJST */
    .sideWidgetListing {
        margin-top: 8%;
        border-top: solid 1px #e0e0e0;
    }

        .sideWidgetListing li {
            display: none;
        }

        .sideWidgetListing li.active {
            display: block;
        }

            .sideWidgetList {

            }

                .sideWidgetList .sideWidgetListItem {
                    display: block;
                }

                    .filmsAndSeries .sideWidgetList .sideWidgetListItem a {
                        display: block;
                        padding: 4%;
                        text-decoration: none;
                        color: #404040 !important;
                    }

                    .filmsAndSeries .sideWidgetList .sideWidgetListItem a:hover {
                        color: #CA3092 !important;
                    }

                        .sideWidgetList .sideWidgetListItemTitle {
                            display: block;
                            font-family: 'GothamMedium', serif;
                            font-size: 16px;
                            text-transform: uppercase;
                            line-height: 1.6em;
                            overflow: hidden;
                            text-overflow: ellipsis;
                            white-space: nowrap;
                        }
    .genreContainer {
        margin: 0 10px;
    }
    .dynamicItemName {
        float: left;
        font-weight: 900;
        width: 150px;
    }

    .jwplayer .jwuniform {
        background-size: cover !important;
    }

/* CONTENT PAGINA
* =========================================================================================== */
    .contentPagina .right {
        display: none;
    }

    #main.contentPagina > .main {
        width: 75%;
    }

        .contentPagina .articleListItem:hover {
            background: #fff;
        }

            .contentPagina .articleListItem:hover * {
                color: #7D4199;
            }

            .contentPagina .left img {
                display: block;
            }

/* ZOEKEN (PAGINA)
* =========================================================================================== */
.zoekLijst {
    margin: 0 0 20px 0;
}

    .zoekLijstItem {
        display: block;
        border-bottom: solid 1px #e0e0e0;
    }

    .zoekLijstItem:first-child {
        border-top: solid 1px #e0e0e0;
    }

        .zoekLijstItem a {
            display: inline-block;
            text-decoration: none;
            line-height: 2.4em;
        }

        .zoekLijstItem a:hover {
            padding-left: 10px;
            color: #634173;
        }

/* PDF
* =========================================================================================== */
.pdfBoxContainer {
    font-size: 0;
    line-height: 0;
}

    .pdfBox {
        position: relative;
        display: inline-block;
        width: 21%;
        height: auto;
        margin: 20px 2%;
        font-size: 14px;
        line-height: 24px;
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
    }

    .pdfBox img {
        display: block;
        width: 100%;
        height: auto;
    }

    .pdfTitle {
        position: absolute;
        left: 0;
        bottom: 0;
        display: block;
        width: 100%;
        height: auto;
        padding: 5px 10px;
        color: #fff;
        background: #7D4199;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    .pdfBackButton {
        margin:10px;
    }

/* YOUTUBE EMBEDDED VIDEO
* =========================================================================================== */
.content iframe {
    margin: 20px 0;
}

/* ZENDERS
* =========================================================================================== */
.zendersContainer {
    max-width: 1200px;
    padding: 20px 0 0 0;
    margin: 0 auto;
    font-size: 0;
    text-align: center;
    line-height: 0;
    color: #fff;
    background: #404040;
}

.zendersContainer * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

    .zenderItem {
        display: inline-block;
        width: 12.5%;
        padding: 10px;
        margin-bottom: 20px;
        font-size: 14px;
        line-height: 24px;
        text-align: center;
    }

        .zenderItem img {
            max-width: 50%;
            height: auto;
        }

        .zenderItemTitle,
        .zenderItemContent {
            display: block;
        }

        .zenderItemTitle {
            font-family: 'GothamMedium', serif;
            text-transform: uppercase;
        }

/* FOOTER
* =========================================================================================== */
#footer {
    max-width: 1200px;
    margin: 0 auto;
}

    .footerContent {
        padding: 2% 1%;
        font-size: 0.8em;
        color: #888;
    }

    #footer a {
        text-decoration: none;
        color: #888;
    }

    #footer a:hover {
        color: #404040;
    }


/* THEMA'S
* =========================================================================================== */
/* TANGERINE (CONTACT) */
.tangerine a,
.tangerine .pageTitle,
.tangerine .pageSubTitle,
.tangerine .widgetSubTitle,
.tangerine .right .articleListItem:hover .articleListItemTitle,
.tangerine .right .articleListItem:hover .articleListItemIntro {
    color: #ef3e42;
}

.tangerine a:hover {
    color: #B35052;
}

.tangerine .button,
.tangerine .socialIcon,
.tangerine .followusContainer,
.tangerine #top .navigation li a:hover,
.tangerine .taalCurrent:hover,
.tangerine .taalList,
.tangerine .loginWidget:hover,
.tangerine .searchWidget:hover,
.tangerine .searchWidget.open .btnSearchWidget,
.tangerine .searchWidgetContainer,
.tangerine a.btnBestel {
    background-color: #ef3e42;
    color: #fff;
}

.tangerine .socialIcon:hover,
.tangerine .taalListItem:hover,
.tangerine a.btnBestel:hover {
    background-color: #B35052;
}

.tangerine #top {
    border-color: #ef3e42;
}

/* TEAL (TVGIDS) */
.teal a,
.teal .pageTitle,
.teal .pageSubTitle,
.teal .widgetSubTitle,
.teal .right .articleListItem:hover .articleListItemTitle,
.teal .right .articleListItem:hover .articleListItemIntro {
    color: #47C3D3;
}

.teal a:hover {
    color: #50959E;
}

.teal .button,
.teal .socialIcon,
.teal .followusContainer,
.teal #top .navigation li a:hover,
.teal .taalCurrent:hover,
.teal .taalList,
.teal .loginWidget:hover,
.teal .searchWidget:hover,
.teal .searchWidget.open .btnSearchWidget,
.teal .searchWidgetContainer,
.teal a.btnBestel {
    color: #fff;
    background-color: #47C3D3;
}

.teal .socialIcon:hover,
.teal .taalListItem:hover,
.teal a.btnBestel:hover {
    background-color: #50959E;
}

.teal #top {
    border-color: #47C3D3;
}

/* AMBER (NIEUWS) */
.amber a,
.amber .pageTitle,
.amber .pageSubTitle,
.amber .widgetSubTitle,
.amber .right .articleListItem:hover .articleListItemTitle,
.amber .right .articleListItem:hover .articleListItemIntro {
    color: #fbb040;
}

.amber a:hover {
    color: #BC9253;
}

.amber .button,
.amber .socialIcon,
.amber .followusContainer,
.amber #top .navigation li a:hover,
.amber .taalCurrent:hover,
.amber .taalList,
.amber .loginWidget:hover,
.amber .searchWidget:hover,
.amber .searchWidget.open .btnSearchWidget,
.amber .searchWidgetContainer,
.amber a.btnBestel {
    color: #fff;
    background-color: #fbb040;
}

.amber .socialIcon:hover,
.amber .taalListItem:hover,
.amber a.btnBestel:hover {
    background-color: #BC9253;
}

.amber #top {
    border-color: #fbb040;
}

/* MAGENTA (FILMS & SERIES) */
.magenta a,
.magenta .pageTitle,
.magenta .pageSubTitle,
.magenta .widgetSubTitle,
.magenta .right .articleListItem:hover .articleListItemTitle,
.magenta .right .articleListItem:hover .articleListItemIntro {
    color: #CA3092;
}

.magenta a:hover {
    color: #984177;
}

.magenta .button,
.magenta .socialIcon,
.magenta .followusContainer,
.magenta #top .navigation li a:hover,
.magenta .taalCurrent:hover,
.magenta .taalList,
.magenta .loginWidget:hover,
.magenta .searchWidget:hover,
.magenta .searchWidget.open .btnSearchWidget,
.magenta .searchWidgetContainer,
.magenta a.btnBestel {
    color: #fff;
    background-color: #CA3092;
}

.magenta .socialIcon:hover,
.magenta .taalListItem:hover,
.magenta a.btnBestel:hover {
    background-color: #984177;
}

.magenta #top {
    border-color: #CA3092;
}

.tangerine .sideNav .taalList,
.teal .sideNav .taalList,
.amber .sideNav .taalList,
.magenta .sideNav .taalList {
    background: none;
}


/* MEDIA QUERIES
* =========================================================================================== */
@media screen and (max-width:1300px) {
    .socialmediaContainer {
        display: none;
    }
}

@media screen and (max-width:1200px) {
    #top .imgBannerLarge {
        display: none;
    }

    #top .imgBannerSmall {
        display: block;
    }

    .sliderListingSubTitle,
    .widgetIntro {
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .home .widgetContent {
        padding-bottom: 60%;
    }
}

@media screen and (max-width:1024px) {
    .loginWidget .btnLoginWidget,
    .loginWidget .btnLoginWidget:visited,
    .loginWidget .btnLoginWidget:link {
        width: 60px;
        padding: 0;
        margin: 0;
        font-size: 0;
        background-position: center center;
    }

    .imgBannerSmall {
        margin-right: 10px;
    }

    /* HOME */
    .home .logo img {
        max-width: 70%;
    }

    .btnBestelContainer {
        top: 180px;
    }
}

@media screen and (max-width:970px) {
    /* HOME */
    .home .logo img {
        max-width: 50%;
    }

    .btnBestelContainer {
        top: 160px;
    }
}

@media screen and (max-width:950px) {
    #top {
        display: none;
    }

    .topContainer {
        display: block;
    }

    .sideNavButton {
        display: block;
    }

    .loginWidget .btnLoginWidget,
    .loginWidget .btnLoginWidget:visited,
    .loginWidget .btnLoginWidget:link {
        font-size: 14px;
        line-height: 40px;
    }

    #wrapContainer {
        margin-top: 60px;
    }

    .logo {
        top: 20px;
        width: 34%;
    }

    .home .logo {
        width: 25%;
    }

        .logo img {
            max-width: 70%;
        }

    /* SLIDER */
    .sliderListingItem.activeSlide:after {
        width: 10px;
        right: -10px;
        background-size: 10px 100%;
    }


    /* WIDGETS (HOME) */
    .widgetsContainer {
        border: 0;
    }

    .home .widget {
        width: 50%;
    }

    .widget.tvGuideHome,
    .widget.pollWidget {
        height: 50%;
        top: auto;
        bottom: 0;
    }

    .widget.twitter,
    .widget.facebook {
        position: relative;
        float: left;
        height: 200px;
        overflow: hidden;
    }

    .widget.twitter {

    }

    .widget.facebook {
        left: 0;
    }

    .widget.premium {
        margin-left: 0;
    }

    /* NIEUWS/TV GIDS (PAGINA) */
    #main .left {
        width: 34%;
    }

        .nieuwsPage .left .scrollContainer,
        .tvGuideNav .scrollContainer {
            width: 34%;
        }

        .btnTvGuideNav.btnRight {
            left: 34%;
        }

    #main .main {
        width: 66%;
    }

    #main .right {
        display: none;
        float: none;
    }

        #main .tvGuideNav .sideWidgetList li .right {
            display: block;
        }

    #main .main .articleListItem .left {
        width: 70%;
    }

    /* TV GIDS */
    #main .sideWidgetList li .left {
        width: 20%;
        padding: 0 2.5%;
    }

    #main .sideWidgetList li .right {
        float: right;
        display: block;
        width: 70%;
        padding: 0 2.5%;
    }

    /* ZENDERS */
    .zenderItem {
        width: 20%;
    }


}

@media screen and (max-width:920px) {
    .btnBestelContainer {
        display: none;
    }
}

@media screen and (max-width:800px) {
    .logo {

    }

    .home .logo {
        display: none;
        top: 25%;
        left: 0%;
        width: 34%;
    }

        .logo img {
            max-width: 86%;
        }

    .sliderListing {
        display: none;
    }

    .sliderRight {
        width: 100%;
    }

        .slideCaption span {
            display: block;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

    /* NIEUWS - LISTING OVERZICHTSPAGIAN */
    .articleListEyecatcher {
        width: 24%;
    }
    #main .main .articleListItem .left {
        width: 67%;
    }
}

@media screen and (max-width:600px) {
    .pdfBox {
        width: 46%;
    }
}


@media screen and (max-width:600px) {
    .logo {
        display: none;
    }

    #main > .left {
        float: none;
        width: 100%;
        margin: 0;
    }

        .nieuwsPage .left .scrollContainer {
            display: none;
        }

        /* TV GIDS */
        #main.tvGuide > .left {
            height: 300px !important;
        }

        .tvGuideNavContainer {

        }

            .btnTvGuideNav.btnRight {
                left: auto;
                right: 0;
                margin-left: 0;
            }

            .tvGuideNav,
            .tvGuideNav > li {
                overflow: visible;
            }

                .tvGuideNav .sideWidgetListContainer {
                    height: 240px !important;
                }

                .tvGuideNav .scrollContainer {
                    top: 100px;
                    width: 100%;
                    height: 340px;
                }

        /* FILMS & SERIES */
        .filmsAndSeriesNav {
            padding-top: 8%;
        }

    #main > .main {
        width: 100%;
        min-height: 0;
    }

    /* ZENDERS  */
    .zenderItem {
        width: 25%;
    }

}

@media screen and (max-width:500px) {
    .sideNavButton {
        background-image: url('../img/iconen/icoon-nav-licht.png');
        background-color: transparent;
    }

    .logoDefault {
        display: none;
    }

    .sliderRight {
        width: 100%;
    }

    /* WIDGETS (HOME) */
    .home .widget {
        width: 100%;
    }

    .widget.tvGuideHome,
    .widget.pollWidget,
    .widget.twitter,
    .widget.facebook {
        position: relative;
        width: 100%;
        height: auto;
    }

    .widget.tvGuideHome {
        min-height: 100px;
    }

    /* NIEUWS - LISTING OVERZICHTSPAGIAN */
    .articleListEyecatcher {
        width: 30%;
    }
    #main .main .articleListItem .left {
        width: 61%;
    }
}

/* POPUP
 * =========================================================================================== */
.overlayContainer {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 1000;
}

.rgba .overlayContainer {
    background: rgba(0, 0, 0, 0.95);
}

.popupContainer {
    position: fixed;
    top: 100px;
    left: 50%;
    width: 540px;
    margin-left: -300px;
    padding: 20px;
    text-align: center;
    background: #fff;
    z-index: 1100;
}

.popupLogo {
    margin-bottom: 20px;
    text-align: center;
}

.popupLogo img {
    width: 150px;
    height: auto;
}

.btnPopupAkkoord,
a.btnPopupWeiger {
    display: inline-block;
    padding: 5px 10px;
    color: #fff;
    font-family: "GothamMedium", serif;
    text-transform: uppercase;
    text-decoration: none;
    background: #7d4199;
    cursor: pointer;
    border-radius: 3px;
}

.btnPopupAkkoord:hover,
a.btnPopupWeiger:hover {
    background: #634173;
}

/* Social media share
 * =========================================================================================== */
.addthis_sharing_toolbox {
    margin: 20px 0;
}


/* POPUP LANGUAGE
 * =========================================================================================== */
.taalListing {

}

    .taalListing .taalListItem {
        display: inline-block;
        padding: 2px;
        margin: 5px;
    }

    .taalListing .taalListItem:hover {
        transform: scale(1.2);
    }

@media screen and (max-width:480px) {
    /* ZENDERS  */
    .zenderItem {
        width: 50%;
    }
}