/*------------------------------------*\
    Default styles
\*------------------------------------*/
body {
    position: relative;
    font-size: 16px;
    line-height: 1.5;
    font-weight: normal;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    color: #45403d;
    background: #fff8e8;
    -webkit-font-smoothing: antialiased;
}

.loggedin__asschool {
    position: fixed;
    bottom: 2rem;
    right: 0;
    background: red;
    color: #fff;
    padding: 1rem 1.3rem 1rem 1.5rem;
    font-size: 14px;
    border-radius: 4px 0 0 4px;
    z-index: 1000;
}

.spacer {
    position: relative;
    display: block;
    height: 8rem;
}

.bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
}

    .bg .corner-image {
        position: absolute;
        top: 80px;
        left: 25%;
        margin-left: -30vw;
        width: 70%;
        max-width: 1500px;
        height: 80vh;
        min-height: 300px;
        max-height: 750px;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        /*z-index:2;*/
    }


        .bg .corner-image:after {
            content: '';
            width: 100%;
            height: 100%;
            position: absolute;
            right: 0;
            bottom: 0;
            background: url(/Images/mask.png) no-repeat right bottom;
            z-index: 3;
        }

.homepage .bg .corner-image {
    top: 0;
    left: 45%;
    margin-left: -80px;
    height: 700px;
    width: 100%;
}

    .homepage .bg .corner-image:after {
        background-position: left bottom;
    }

    .homepage .bg .corner-image:before {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: url('/Images/overlay-line-6.png') no-repeat right top;
        background-size: cover;
        content: '';
    }

.bg .circles {
    position: absolute;
    width: 450px;
    height: 1160px;
    pointer-events: none;
    overflow: hidden;
    transform-origin: 0 0;
    z-index: 1;
}

    .bg .circles:before {
        content: '';
        position: absolute;
        /*background-color: #fff8e8;*/
        border-radius: 50%;
        width: 800px;
        height: 800px;
        z-index: 2;
        box-shadow: 0 10px 80px #f2e3c0;
    }

    .bg .circles:after {
        content: '';
        position: absolute;
        /*background-color: #fff8e8;*/
        border-radius: 50%;
        width: 1000px;
        height: 1000px;
        z-index: 1;
        box-shadow: 0 10px 80px #f2e3c0;
    }


    .bg .circles.top {
        top: 200px;
    }

    .bg .circles.bottom {
        top: 60%;
    }

    .bg .circles.left {
        left: 0;
    }

        .bg .circles.left:before {
            top: 180px;
            right: 180px;
        }

        .bg .circles.left:after {
            top: 80px;
            right: 80px;
        }

    .bg .circles.right {
        right: 0;
        transform-origin: 100% 0;
    }

        .bg .circles.right:before {
            top: 180px;
            left: 180px;
        }

        .bg .circles.right:after {
            top: 80px;
            left: 80px;
        }

.header {
    position: relative;
    z-index: 100;
    height: 130px;
    background: url('/Images/header-bg.png') no-repeat;
    background-size: 100% 100%;
    display: flex;
}

    .header .logo {
        display: block;
        background: url('/Images/cultuurstation_white.svg') no-repeat left center;
        background-size: contain;
        width: 100%;
        max-width: 203px;
        height: 52px;
        margin-left: 30px;
    }

    .header .flex-container-column {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

.main-nav {
    padding: 15px 0;
}

.sub-nav {
    background-color: #a5017d;
}

    .sub-nav nav {
        display: flex;
        justify-content: flex-end;
        margin-right: 58px;
    }

    .sub-nav ul {
        list-style: none;
        display: flex;
        color: #fff;
        margin: 0;
        padding-right: 10px;
    }

    .sub-nav li {
        display: flex;
    }

        .sub-nav li.children {
            position: relative;
        }

            .sub-nav li.children:hover ul {
                visibility: visible;
                opacity: 1;
                transform: translate(-50%, 0);
            }

            .sub-nav li.children .submenu {
                display: block;
                visibility: hidden;
                opacity: 0;
                position: absolute;
                background-image: linear-gradient(225deg, #731683 0%, #831669 100%);
                color: #000;
                top: 100%;
                left: 50%;
                transform: translate(-50%, -3rem);
                padding: 10px 0;
                box-shadow: 0 5px 30px rgb(0 0 0 / 20%);
                transition: .2s ease all;
                border-radius: 6px;
            }

                .sub-nav li.children .submenu li {
                    display: flex;
                    height: 100%;
                }

                    .sub-nav li.children .submenu li a {
                        padding: 10px 15px;
                        color: #fff;
                        text-shadow: unset;
                    }

                        .sub-nav li.children .submenu li a:hover {
                            text-decoration: underline;
                        }

        .sub-nav li a {
            color: inherit;
            padding: 15px 12.5px;
            text-decoration: none;
            font-size: 14px;
        }

            .sub-nav li a:hover {
                text-decoration: underline;
            }

        .sub-nav li:last-of-type a {
            padding-right: 0;
        }

        .sub-nav li.children > a::after {
            content: "\f0d7";
            font-family: FontAwesome;
            margin-left: 5px;
            background: unset;
            background-color: none;
            display: inline-block;
        }

.header .mobile-menu-toggle {
    display: none;
}

.nonhomepage .header {
    background-image: linear-gradient(225deg, #731683 0%, #831669 100%);
    height: auto;
}

    .nonhomepage .header .mainmenu ul#Menu li a {
        color: #fff;
    }

.nonhomepage .account .login {
    color: #fff;
    border-color: #fff;
}

.homepage .header {
    background-image: linear-gradient(225deg, #731683 0%, #831669 100%);
    height: auto;
}

.mainmenu {
    text-align: right;
}

    .mainmenu .flex-container {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        margin-right: 58px;
    }

        .mainmenu .flex-container .flex-child {
            display: flex;
            margin: 0 22px;
        }

    .mainmenu .mainmenu-left {
        display: inline-block;
    }

    .mainmenu ul#Menu {
        margin: 0;
        padding: 0;
        list-style-type: none;
        text-align: right;
        display: block;
    }

        .mainmenu ul#Menu li {
            display: inline-block;
        }

            .mainmenu ul#Menu li.children {
                position: relative;
                margin: 0 8px;
                z-index: 999;
            }

            .mainmenu ul#Menu li a:hover {
                text-decoration: underline;
                color: #fff;
            }

            .mainmenu ul#Menu li.children:hover > .submenu {
                visibility: visible;
                opacity: 1;
                transform: translate(-50%, 0);
            }

            .mainmenu ul#Menu li.children .submenu {
                display: block;
                visibility: hidden;
                opacity: 0;
                position: absolute;
                background-image: linear-gradient(225deg, #731683 0%, #831669 100%);
                color: #fff;
                top: 100%;
                left: 50%;
                transform: translate(-50%, -3rem);
                padding: 0;
                box-shadow: 0 5px 30px rgb(0 0 0 / 20%);
                /*transition: .2s ease all;*/
                border-radius: 6px;
                z-index: 9;
                text-align: left;
            }

                .mainmenu ul#Menu li.children .submenu .children .submenu {
                    position: absolute;
                    right: -100%;
                    width: 100%;
                    left: unset;
                    transform: unset;
                    top: unset;
                    border-radius: 0;
                }

                    .mainmenu ul#Menu li.children .submenu .children .submenu li a {
                        word-wrap: break-word;
                        display: block;
                        width: 100%;
                    }

                .mainmenu ul#Menu li.children .submenu li {
                    display: flex;
                    height: 100%;
                    border-bottom: 1px solid rgba(255,255,255,0.2);
                }

                    .mainmenu ul#Menu li.children .submenu li.flex__column {
                        display: flex;
                        flex-direction: column;
                        border: none;
                    }

                    .mainmenu ul#Menu li.children .submenu li span {
                        display: flex;
                        padding: 15px 35px;
                        white-space: nowrap;
                        text-align: center;
                        align-items: center;
                        justify-content: center;
                        font-weight: 600;
                        background: #67125f;
                    }

                    .mainmenu ul#Menu li.children .submenu li.flex__column .submenu__show {
                        padding: 0;
                        margin: 0;
                    }

                        .mainmenu ul#Menu li.children .submenu li.flex__column .submenu__show a {
                            text-align: center;
                            width: 100%;
                        }

                        .mainmenu ul#Menu li.children .submenu li.flex__column .submenu__show li:last-child {
                            border-bottom: 0px;
                        }

                    .mainmenu ul#Menu li.children .submenu li a {
                        padding: 20px 25px;
                        white-space: nowrap;
                        color: #fff;
                        text-shadow: unset;
                        font-size: 14px;
                        font-weight: 400;
                    }

                        .mainmenu ul#Menu li.children .submenu li a:hover {
                            text-decoration: underline;
                        }

            .mainmenu ul#Menu li.children > a::after {
                content: "\f0d7";
                font-family: FontAwesome;
                margin-left: 1rem;
                background: unset;
                background-color: none;
                display: inline-block;
            }

            .mainmenu ul#Menu li a {
                position: relative;
                display: inline-block;
                color: #a5017d;
                font-size: 20px;
                font-weight: 600;
                line-height: 1;
                text-decoration: none;
                padding: 12px 12px;
                /*margin: 0 6px;*/
            }

                .mainmenu ul#Menu li a.active:after,
                .mainmenu ul#Menu li a:hover:after {
                    opacity: 1;
                    top: 95%;
                }

    .mainmenu ul#MenuSub {
        margin: 0;
        padding: 0;
        list-style-type: none;
        text-align: right;
        display: block;
    }

        .mainmenu ul#MenuSub li {
            display: inline-block;
        }

            .mainmenu ul#MenuSub li a {
                position: relative;
                display: inline-block;
                color: #a5017d;
                font-size: 13px;
                line-height: 1;
                text-transform: lowercase;
                text-decoration: none;
                padding: 5px 0;
                margin: 0 6px;
            }

                .mainmenu ul#MenuSub li a:after {
                    position: absolute;
                    left: 0;
                    top: 120%;
                    content: '';
                    width: 100%;
                    height: 3px;
                    background: #a5017d;
                    z-index: -1;
                    pointer-events: none;
                    opacity: 0;
                    transition: all 0.3s ease-out;
                }


                .mainmenu ul#MenuSub li a:hover {
                    text-shadow: 0 0 8px #fff;
                }

                    .mainmenu ul#MenuSub li a.active:after,
                    .mainmenu ul#MenuSub li a:hover:after {
                        opacity: 1;
                        top: 95%;
                    }


.homepage .mainmenu ul#Menu li a,
.homepage .mainmenu ul#MenuSub li a {
    color: #fff;
    text-shadow: 0 0 4px rgba(0,0,0,0.7);
}

/*.homepage .mainmenu ul#Menu li a:after,
    .homepage .mainmenu ul#MenuSub li a:after {
        background: #fff;
    }*/


.event-share .share-buttons {
    display: flex;
    list-style: none;
    padding: 0;
}

    .event-share .share-buttons li a {
        font-size: 20px;
        padding-right: 1rem;
    }

.account {
    display: block;
}

    .account .login {
        display: inline-block;
        text-decoration: none;
        color: #552686;
        font-weight: 600;
        padding: 12px 28px;
        border: 2px solid #552686;
        border-radius: 6px;
    }

.homepage .account .login {
    border-color: #fff;
    color: #fff;
    background-color: none;
    font-weight: 400;
    transition: background 0.3s ease;
}

    .homepage .account .login:hover {
        background: #fff;
        color: #831669;
    }

.account .account-options {
    position: relative;
}

    .account .account-options h6 {
        color: #fff;
        display: inline-block;
        text-decoration: none;
        font-weight: 600;
        padding: 12px 28px;
        border-radius: 6px;
        color: #731683;
        background-color: #fff;
        cursor: pointer;
    }

        .account .account-options h6:after {
            display: inline-block;
            margin-left: 10px;
            font-family: 'FontAwesome';
            font-size: 20px;
            content: '\f107';
        }

    .account .account-options nav {
        opacity: 0;
        position: absolute;
        width: 100%;
        left: 0;
        top: 0;
        padding-top: 30px;
        pointer-events: none;
        transition: all 0.25s ease;
    }

        .account .account-options nav ul {
            border-radius: 6px;
            box-shadow: 0 8px 10px rgba(0,0,0,0.15);
            text-align: left;
            width: 100%;
            margin: 0;
            padding: 15px 0;
            list-style-type: none;
            font-size: 14px;
            color: #731683;
            background-color: #fff;
        }

            .account .account-options nav ul li a {
                display: block;
                color: #731683;
                text-decoration: none;
                padding: 5px 25px;
            }

            .account .account-options nav ul li h7 {
                display: block;
                color: #731683;
                text-decoration: none;
                padding: 5px 25px;
            }

            .account .account-options nav ul li a:hover {
                text-decoration: underline;
            }

    .account .account-options:hover h6:after {
        transform: rotate(180deg);
    }

    .account .account-options:hover nav {
        opacity: 1;
        top: 30px;
        pointer-events: auto;
    }

/* HEADER SEARCH STYLING */

.search {
    cursor: pointer;
}

    .search .fa-icon-white {
        color: #fff;
        font-size: 24px;
    }

/* SEARCHBOX */

.searchbox {
    background: #a5017d;
    position: absolute;
    width: 100%;
    height: 0;
    top: 80px;
    visibility: hidden;
    z-index: 100;
    overflow: hidden;
    display: flex;
    align-items: center;
    transition: all 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    box-shadow: -1px 9px 5px -4px rgb(0 0 0 / 10%);
}

    .searchbox.open {
        height: calc(60vh - 80px);
        visibility: visible;
    }

    .searchbox h3 {
        color: #fff;
        display: block;
        font-size: 32px;
        margin-bottom: 15px;
    }

    .searchbox #site-search {
        width: 100%;
        padding: 15px;
        background: #820864;
        border: none;
        color: #fff;
    }

    .searchbox #site-search-submit {
        border: 2px solid #fff;
        color: #fff;
        background-color: none;
        background: none;
        margin-top: 20px;
        padding: 12px 28px;
        border-radius: 6px;
    }

    .searchbox #site-search::placeholder {
        color: #fff;
    }

/* HERO */

.contentblock-Hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    width: 100%;
    z-index: 1;
    padding: 0 !important;
}

    .contentblock-Hero.login {
        min-height: 45vh;
    }

    .contentblock-Hero.searchresults {
        min-height: 45vh;
    }

    .contentblock-Hero.activity-detail {
        min-height: 55vh;
        padding-bottom: 0 !important;
    }

        .contentblock-Hero.activity-detail::before {
            content: none;
        }

        .contentblock-Hero.activity-detail .activity-slider {
            display: flex;
            width: 100%;
            opacity: 1;
            max-width: 100vw;
            width: 100%;
            overflow: hidden;
        }

            .contentblock-Hero.activity-detail .activity-slider .slick-list {
                width: 100%;
            }

            .contentblock-Hero.activity-detail .activity-slider .slick-track {
                height: 100%;
                width: 100%;
            }

            .contentblock-Hero.activity-detail .activity-slider .slide {
                display: flex;
                width: 100%;
                position: relative;
            }

                .contentblock-Hero.activity-detail .activity-slider .slide .slide-image {
                    position: absolute;
                    top: 0;
                    left: 0;
                    right: 0;
                    bottom: 0;
                    background-size: cover;
                }

        .contentblock-Hero.activity-detail #paging {
            position: absolute;
            z-index: 0;
            bottom: 0;
            left: 0;
            right: 0;
            width: 100%;
            max-width: 1140px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            padding: 2rem 2rem 9rem 2rem;
            z-index: 999;
        }

            .contentblock-Hero.activity-detail #paging .slick-dots {
                display: flex;
                order: 2;
                list-style: none;
                margin: 0;
                padding: 0;
                align-items: center;
            }

                .contentblock-Hero.activity-detail #paging .slick-dots li {
                    margin: 4px;
                    display: inline-block;
                }

                .contentblock-Hero.activity-detail #paging .slick-dots button {
                    border: none;
                    width: 12px;
                    height: 12px;
                    text-indent: -9999em;
                    display: block;
                    border-radius: 50%;
                    margin: 0;
                    padding: 0;
                    background: #fff;
                    cursor: pointer;
                }

                .contentblock-Hero.activity-detail #paging .slick-dots li.slick-active button {
                    background-color: #741680;
                }

    .contentblock-Hero .flex {
        display: flex;
        width: 100%;
    }

    .contentblock-Hero figure {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-size: cover;
        background-repeat: no-repeat;
        margin: 0;
        padding: 0;
        z-index: 1;
    }

    .contentblock-Hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        z-index: 2;
        width: 100%;
        height: 100%;
        background: rgb(0,0,0);
        background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(255,255,255,0) 100%);
    }

    .contentblock-Hero::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 2;
        width: 50%;
        height: 100%;
        background-image: url(/Images/v2/cs_shape.png);
        background-size: cover;
        background-position: center center;
    }

    .contentblock-Hero .grid {
        position: relative;
        z-index: 5;
        display: flex;
        justify-content: center;
        flex-direction: column;
        backface-visibility: hidden;
    }


    .contentblock-Hero .text {
        color: #fff;
        max-width: 400px;
    }

        .contentblock-Hero .text .title {
            font-weight: 300;
            margin-bottom: 15px;
            color: #fff;
            font-size: 40px;
        }

        .contentblock-Hero .text .intro {
            font-weight: 400;
        }

.contentblock-HeaderNew {
    position: relative;
    padding-bottom: 0 !important;
    margin-bottom: 40px;
}

    .contentblock-HeaderNew::before {
        content: "";
        background-image: linear-gradient(to right, rgb(0, 0, 0), rgba(255, 255, 255, 0));
        position: absolute;
        z-index: 1;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .contentblock-HeaderNew::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 2;
        width: 50%;
        height: 100%;
        background-image: url(/Images/v2/cs_shape.png);
        background-size: cover;
        background-position: center center;
    }

    .contentblock-HeaderNew figure {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding: 0;
        object-fit: cover;
        z-index: -1;
        margin: 0;
    }

    .contentblock-HeaderNew .grid {
        position: relative;
        z-index: 2;
    }

    .contentblock-HeaderNew .col-text {
        padding: 10.5rem 0;
        color: #fff;
    }

    .contentblock-HeaderNew .title,
    .contentblock-HeaderNew .subtitle {
        color: inherit;
    }

    .contentblock-HeaderNew .title {
        margin: 16px 0 24px 0;
        padding: 0;
    }

    .contentblock-HeaderNew .btn.btn-primary {
        border: none;
    }

/*AANBOD*/
.over-image {
    margin-top: -120px;
    position: relative;
    z-index: 9;
}

    .over-image .white-bg {
        background: #fff;
        border-radius: 0 0 6px 6px;
        box-shadow: 0 10px 40px rgb(0 0 0 / 10%);
    }

        .over-image .white-bg article {
            padding: 50px 0;
        }

.provider__tag--link {
    display: flex;
    align-self: flex-start;
    position: relative;
    margin: 10px 0 20px 0;
    text-decoration: none;
}

.provider__tag--label {
    display: block;
    background-color: #82166b;
    border-radius: 6px;
    color: #fff;
    font-size: 12px;
    padding: 15px;
}

.home-content {
    position: relative;
    padding-top: 60px;
}

    .home-content h1 {
        font-weight: 300;
        font-size: 42px;
        margin: 0 0 20px 0;
    }

    .home-content p {
        font-size: 18px;
    }

    .home-content form {
        margin-top: 70px;
        width: 100%;
        padding: 20px;
        border-radius: 6px;
        background-image: linear-gradient(225deg, #731683 0%, #831669 100%);
    }

.shortcuts {
    margin: 10px 0 0 0;
    text-align: center;
}

    .shortcuts a {
        display: inline-block;
        margin: 0 5px;
        color: #fff;
    }

.content {
    position: relative;
    /*padding-top: 200px;*/
}

.home-content + .content {
    padding-top: 120px;
}

.activity-intro {
    position: relative;
    background: #fff;
    border-radius: 6px;
    padding: 40px 50px 20px 50px;
    font-size: 15px;
    font-weight: 300;
    margin: 0px 0px 30px 7px;
    width: 98%;
}

.content article {
    position: relative;
    background: #fff;
    border-radius: 6px;
    padding: 60px;
    font-size: 15px;
    font-weight: 300;
    margin-bottom: 20px;
}

    .content article:has(+ .public-documents) {
        padding-bottom: 0px;
        margin-bottom: 0px;
    }

    .content article::after {
        content: "";
        display: table;
        clear: both;
    }

    .content article .intro {
        font-size: 18px;
        font-weight: 400;
        line-height: 1.333;
    }

    .content article .indent {
        padding: 0 46px;
    }

    .content article h4 {
        color: #a5017d;
        font-size: 18px;
        margin: 1em 0 0.8em 0;
        font-weight: 600;
    }

    .content article .label {
        display: inline-block;
        font-size: 15px;
        color: #fff;
        font-weight: 600;
        background-color: #a5017d;
        border-radius: 4px;
        line-height: 1;
        padding: 8px 12px;
        margin-bottom: 5px;
    }

        .content article .label.top {
            font-size: 24px;
            margin-bottom: 15px;
        }

.fb-share-button span {
    vertical-align: baseline !important;
}

.content aside {
    text-align: right;
}

.link-list {
    border-radius: 6px;
    background: #fff;
    padding: 60px;
    font-size: 15px;
    font-weight: 300;
    margin-bottom: 20px;
}

.link-list-no-p {
    border-radius: 6px;
    background: #fff;
    font-size: 15px;
    font-weight: 300;
    margin-bottom: 30px;
}

    .link-list-no-p ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .link-list-no-p + form + ul {
        margin-top: 10px;
    }

.link-list.no-p-x {
    padding-left: 0;
    padding-right: 0;
}

.link-list.button-margin button {
    margin-top: 20px;
}

.link-list.no-p-a {
    padding: 0;
}

.link-list ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

    .link-list ul li {
        display: block;
        border-top: 2px solid #e7e7e7;
    }

        .link-list ul li:first-child {
            border: none;
        }

        .link-list ul li a {
            position: relative;
            display: block;
            min-height: 42px;
            padding: 6px 45px 6px 0;
            text-decoration: none;
            font-size: 15px;
            color: #45403d;
        }

            .link-list ul li a:after {
                position: absolute;
                right: 20px;
                top: 50%;
                transform: translateY(-50%);
                -webkit-transform: translateY(-50%);
                content: '\f105';
                font-family: 'FontAwesome';
                font-size: 22px;
                color: #a5017d;
                transition: right 0.25s ease;
            }

            .link-list ul li a:hover:after {
                right: 10px;
            }

            .link-list ul li a.has-label {
                padding-left: 65px;
            }

                .link-list ul li a.has-label .label {
                    position: absolute;
                    left: 0;
                    top: 8px;
                    background-color: #fff8e8;
                    border-radius: 4px;
                    padding: 6px 12px;
                    font-size: 15px;
                    line-height: 1;
                    color: #a5017d;
                }

            .link-list ul li a.has-date time {
                font-size: 15px;
                font-weight: 400;
                line-height: 1;
                color: #a5017d;
                display: block;
            }

            .link-list ul li a.file {
                padding-left: 50px;
            }

                .link-list ul li a.file:before {
                    font-family: 'FontAwesome';
                    content: '\f016';
                    position: absolute;
                    left: 0;
                    top: 8px;
                    background-color: #fff8e8;
                    border-radius: 4px;
                    padding: 6px 12px;
                    font-size: 15px;
                    line-height: 1;
                    color: #a5017d;
                }

                .link-list ul li a.file[href$=".pdf"]:before {
                    content: '\f1c1';
                }

                .link-list ul li a.file[href$=".zip"]:before {
                    content: '\f1c6';
                }

                .link-list ul li a.file[href$=".doc"]:before,
                .link-list ul li a.file[href$=".docx"]:before {
                    content: '\f1c2';
                }

                .link-list ul li a.file[href$=".ppt"]:before,
                .link-list ul li a.file[href$=".pptx"]:before {
                    content: '\f1c4';
                }

                .link-list ul li a.file[href$=".xls"]:before,
                .link-list ul li a.file[href$=".xlsx"]:before {
                    content: '\f1c3';
                }

                .link-list ul li a.file.video:before,
                .link-list ul li a.file[href*="youtu"]:before {
                    content: '\f1c8';
                }

.trumbowyg-box, .trumbowyg-editor {
    margin: 0 auto;
}

.form-row {
    margin: 0 -10px;
}

.box {
    position: relative;
    text-align: left;
    min-height: 200px;
    border-radius: 0 0 0 6px;
    padding: 10px 0;
    background-image: linear-gradient(225deg, #731683 0%, #831669 100%);
    color: #fff;
    font-size: 18px;
    margin-bottom: 40px;
}

    .box::after {
        content: "";
        display: table;
        clear: both;
    }

    .box > div {
        padding: 16px 32px;
    }

.button-box button {
    margin-bottom: 14px;
}

.filter-block .box > div {
    padding: 32px;
}

.filter-block .formrow {
    position: relative;
}

    .filter-block .formrow .checkbox {
        position: absolute;
        left: 0px;
        top: 0px;
    }

    .filter-block .formrow .icon {
        position: absolute;
        left: 30px;
        top: -5px;
    }

    .filter-block .formrow .checkbox + label {
        padding-left: 40px;
    }

    .filter-block .formrow .icon + label {
        padding-left: 80px;
        display: inline-block;
    }

.box > div + div {
    border-top: 1px solid rgba(255,255,255, 0.5);
}

.box strong,
.box h6 {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

.box h6 {
    margin: 10px 0 15px 0;
}

.box p {
    margin: 0 0 1em 0;
    font-size: 13px;
}

.box a {
    color: #fff;
}

nav.box a {
    text-decoration: none;
    display: block;
}

    nav.box a:hover,
    nav.box a.active {
        font-weight: 700;
        letter-spacing: -0.4px;
    }


.content aside .buttonlink {
    margin-top: 20px;
    float: left;
}

.btn-loginSchool {
    position: absolute;
    top: 10px;
    left: 20px;
    background-color: #82166b;
    border-radius: 6px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 12px;
    margin: 0 10px 0 0;
    text-decoration: none;
    z-index: 3;
    transition: all 0.3s ease;
}

    .btn-loginSchool:hover {
        background: #fff;
        color: #82166b;
    }

.bloklink {
    position: relative;
    display: block;
    text-decoration: none;
    margin-bottom: 40px;
}

    .bloklink figure {
        position: relative;
        z-index: 1;
        display: block;
        margin: 0;
        padding: 0;
        height: 252px;
        width: 100%;
        background-position: center;
        background-size: cover;
        border-radius: 6px;
        transition: background 0.3s ease;
        overflow: hidden;
    }

        .bloklink figure:after {
            position: absolute;
            left: 0;
            top: 0;
            content: '';
            width: 100%;
            height: 100%;
            background-repeat: no-repeat;
            pointer-events: none;
            z-index: 2;
            transition: all 0.25s ease;
        }

        .bloklink figure h6 {
            position: absolute;
            z-index: 3;
            left: 50px;
            bottom: 46px;
            background-color: #82166b;
            border-radius: 6px;
            color: #ffffff;
            font-size: 12px;
            font-weight: 600;
            padding: 6px 12px;
            margin: 0 10px 0 0;
        }

*.bloklink figure h7 {
    position: absolute;
    z-index: 3;
    right: 0px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    text-align: right;
}

    *.bloklink figure h7 img {
        display: inline-block;
    }

.bloklink .link-content {
    position: relative;
    z-index: 4;
    margin: -36px 10px 0 50px;
    background: #fff;
    box-shadow: 0 10px 40px rgba(219, 206, 177, 0.4);
    border-radius: 6px;
    padding: 30px 40px;
    transition: opacity 0.2s ease-in-out;
}

    .bloklink .link-content h3 {
        color: #a5017d;
        font-size: 22px;
        letter-spacing: 0.023em;
        line-height: 1.1;
        margin: 0;
    }

    .bloklink .link-content time {
        font-size: 13px;
        font-weight: 600;
        color: #45403d;
        margin: 0 0 6px 0;
    }

    .bloklink .link-content .link-text {
        font-size: 15px;
        color: #45403d;
        font-weight: 300;
        margin: 0;
        word-break: break-word;
        display: none;
    }

.bloklink .link-text {
    opacity: 1;
}

.bloklink .link-content.hover {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 252px;
    width: CALC(100% - 60px);
}

.bloklink:hover .link-content.hover {
    opacity: 1;
    pointer-events: all;
}

    .bloklink:hover .link-content.hover h3 {
        margin-bottom: 6px;
    }


/*
.bloklink .labels {
    opacity: 1;
}

.bloklink:hover .labels {
    opacity: 1;
    visibility: visible;
    height: auto;
}*/

.bloklink .labels span {
    display: inline-block;
    padding: 4px 12px;
    color: #741683;
    font-size: 12px;
    line-height: 1;
    background-color: #fff8e8;
    border-radius: 4px;
    margin: 0 2px 3px 0;
}

/*.bloklink:hover figure:after {
    transform: rotate(2deg) scale(1.05);
}

.bloklink:hover .link-content {
    transform: translate3d(2px, 2px, 0);
    box-shadow: 0 10px 40px rgba(219, 206, 177, 1);
}*/

.calendarlink {
    position: relative;
    display: block;
    border-radius: 6px;
    overflow: hidden;
    height: 252px;
    background-position: center;
    background-size: cover;
    box-shadow: 0 10px 40px rgba(219, 206, 177, 0.4);
    margin: 0 0 20px 0;
}

    .calendarlink:before {
        position: absolute;
        z-index: 1;
        pointer-events: none;
        left: 0;
        top: 0;
        content: '';
        width: 100%;
        height: 100%;
        background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,1) 100%);
        background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0) 50%,rgba(0,0,0,1) 100%);
        background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0) 50%,rgba(0,0,0,1) 100%);
        transition: all 0.2s ease;
    }

    .calendarlink:after {
        position: absolute;
        z-index: 1;
        pointer-events: none;
        right: 18px;
        bottom: 16px;
        padding-top: 7px;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        box-shadow: 0 4px 10px rgba(165, 1, 125, 0.52);
        /*background-image: linear-gradient(225deg, #731683 0%, #a6007d 100%);*/
        text-align: center;
        color: #fff;
        /*content: '\f133';*/
        font-family: 'FontAwesome';
        font-size: 18px;
        transition: all 0.1s ease;
    }

    .calendarlink .link-content {
        position: absolute;
        z-index: 2;
        left: 0;
        bottom: 14px;
        padding: 0 80px 0 24px;
        width: 100%;
        font-size: 15px;
        font-weight: 300;
        color: #fff;
    }

        .calendarlink .link-content h3 {
            font-size: 17px;
            color: #fff;
            margin: 0;
            line-height: 1.3;
        }

        .calendarlink .link-content h6 {
            background-color: #82166b;
            border-radius: 6px;
            color: #ffffff;
            font-size: 12px;
            font-weight: 600;
            padding: 6px 12px;
            margin: 0 10px 5px 0;
            display: inline-block;
        }

    .calendarlink:hover:before {
        transform: translateY(30px);
    }

    .calendarlink:hover:after {
        transform: scale(1.1);
    }

.calendarlink-calendar {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background-image: linear-gradient(225deg, #731683 0%, #a6007d 100%);
    box-shadow: 0 4px 10px rgba(165, 1, 125, 0.52);
    border-radius: 50%;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

    .calendarlink-calendar img {
        max-width: 16px;
    }

.overview {
    margin: 0 0 40px 0;
}


    .overview div:nth-child(5n+1) .bloklink figure:after {
        background-image: url('/Images/overlay-line-1.png');
        background-position: top right;
    }

    .overview div:nth-child(5n+2) .bloklink figure:after {
        background-image: url('/Images/overlay-line-2.png');
        background-position: top left;
    }

    .overview div:nth-child(5n+3) .bloklink figure:after {
        background-image: url('/Images/overlay-line-3.png');
        background-position: top left;
    }

    .overview div:nth-child(5n+4) .bloklink figure:after {
        background-image: url('/Images/overlay-line-4.png');
        background-position: bottom left;
    }

    .overview div:nth-child(5n+5) .bloklink figure:after {
        background-image: url('/Images/overlay-line-5.png');
        background-position: bottom right;
    }


.filterpage {
    position: relative;
    margin-top: 15px;
}

.filter-block .checkbox label {
    border-color: #5c2085;
}

.searchfield {
    border: 2px solid #ffffff;
    border-radius: 6px 0 0 6px;
    background: transparent;
    height: 60px;
    vertical-align: middle;
    padding: 0 30px;
    float: left;
    width: calc(100% - 62px);
    font-size: 14px;
    color: #fff;
}

.searchbutton {
    border: 2px solid #ffffff;
    border-left: 0;
    border-radius: 0 6px 6px 0;
    background: transparent;
    height: 60px;
    vertical-align: middle;
    width: 60px;
    text-align: center;
    float: left;
    color: #fff;
}

    .searchbutton:after {
        font-family: 'FontAwesome';
        content: '\f105';
        font-size: 22px;
    }


.searchfield::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: rgba(255,255,255,0.5);
}

.searchfield::-moz-placeholder { /* Firefox 19+ */
    color: rgba(255,255,255,0.5);
}

.searchfield:-ms-input-placeholder { /* IE 10+ */
    color: rgba(255,255,255,0.5);
}

.searchfield:-moz-placeholder { /* Firefox 18- */
    color: rgba(255,255,255,0.5);
}


.hidden-formrows.collapsed .formrow {
    display: none;
}

.hidden-formrows.collapsed button {
    -webkit-appearance: none;
    background: transparent;
    border: none;
    padding: 0;
    margin-left: 52px;
    text-decoration: underline;
}

.hidden-formrows.expanded button {
    display: none;
}

/*New filter v2*/

.filter__wrapper {
    display: flex;
    width: 100%;
    /*margin-bottom: 20px;*/
}

    .filter__wrapper .flex__child {
        display: flex;
        align-items: center;
    }

        .filter__wrapper .flex__child .stretch__container {
            display: flex;
            align-self: stretch;
            width: 100%;
            align-items: center;
            position: relative;
        }

            .filter__wrapper .flex__child .stretch__container.order-right {
                justify-content: space-between;
            }

                .filter__wrapper .flex__child .stretch__container.order-right .sort-box {
                    display: none;
                    float: right;
                    border: 4px solid #a5017d;
                    border-bottom: 0;
                    border-radius: 6px 6px 0 0;
                }

                    .filter__wrapper .flex__child .stretch__container.order-right .sort-box a {
                        display: block;
                        padding: 22px 35px 0;
                        height: 60px;
                        background: transparent;
                        border: none;
                        -webkit-appearance: none;
                        font-size: 14px;
                        font-weight: 600;
                        line-height: 1;
                        color: #a5017d;
                        text-decoration: none;
                    }

                        .filter__wrapper .flex__child .stretch__container.order-right .sort-box a:after {
                            display: inline-block;
                            margin: 0 0 0 10px;
                            font-family: FontAwesome;
                            font-size: 20px;
                            vertical-align: middle;
                            margin-top: -3px;
                        }

                        .filter__wrapper .flex__child .stretch__container.order-right .sort-box a.up:after {
                            content: '\f106';
                        }

                        .filter__wrapper .flex__child .stretch__container.order-right .sort-box a.down:after {
                            content: '\f107';
                        }

            .filter__wrapper .flex__child .stretch__container.purple-border::after {
                content: '';
                height: 4px;
                width: 100%;
                position: absolute;
                bottom: 0;
                left: 0;
                right: 0;
                background-color: #a5017d;
                border-radius: 4px;
            }

    .filter__wrapper .filter__button {
        width: 100%;
        height: 100%;
    }

        .filter__wrapper .filter__button .trigger {
            display: flex;
            width: 100%;
            height: 100%;
            color: #fff;
            border-radius: 6px 6px 0 0;
            background-image: linear-gradient(225deg, #731683 0%, #831669 100%);
            border: none;
            padding: 20px 40px 20px 20px;
            position: relative;
            font-size: 14px;
        }

            .filter__wrapper .filter__button .trigger::after {
                content: '\f078';
                font-family: FontAwesome;
                position: absolute;
                top: 50%;
                right: 20px;
                transform: translateY(-50%);
            }

            .filter__wrapper .filter__button .trigger.opened::after {
                content: '\f077 ';
            }


/* FILTER STYLING SELECT2 */



.filter-select-multiple + .select2-container--default .select2-selection--multiple .select2-selection__choice + .select2-selection__choice::before {
    content: ', ';
}

.filter-select-multiple + .select2-container--default .select2-selection--multiple {
    cursor: pointer;
    border: 2px solid #5c2085 !important;
    border-radius: 4px !important;
    background-color: #fff;
    padding: 0 10px !important;
    color: #a70680 !important;
}

    .filter-select-multiple + .select2-container--default .select2-selection--multiple .select2-selection__choice {
        background: none;
        margin: 0;
        padding: 0;
        float: unset;
        display: inline-block;
        border: none;
        pointer-events: none;
        cursor: pointer;
    }

    .filter-select-multiple + .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
        display: none;
        pointer-events: none;
        cursor: pointer;
    }

.filter-select-multiple + .select2-container {
    width: 100% !important;
}

.filter-select-multiple + .select2-container--default .select2-selection--multiple .select2-selection__rendered {
    display: flex;
    align-items: center;
    height: 100%;
    min-height: 60px;
}

.select2-container--default .select2-search--inline .select2-search__field::placeholder {
    color: #a70680;
}

input.select2-search__field {
    width: 100% !important;
}

.filter-container {
    display: none;
    width: 100%;
    background-image: linear-gradient(225deg, #731683 0%, #831669 100%);
    padding: 30px;
    margin-bottom: 40px;
}

    .filter-container.open {
        display: block;
    }

.filter-container-margin {
    margin-top: 20px;
}

.filter-container label {
    display: flex;
    color: #fff;
    margin-bottom: 10px;
}

.filter-container .js-example-basic-single {
    display: block;
    border: none;
    width: 100%;
}

.selected__filter--label {
    background-color: #83166b;
    border-radius: 6px;
    margin: 8px;
    padding: 10px 35px 10px 15px;
    color: #fff;
    position: relative;
    min-width: 75px;
    cursor: pointer;
}

    .selected__filter--label::after {
        content: '\f00d';
        font-family: FontAwesome;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 12px;
    }

    .selected__filter--label.hide-icon {
        padding: 10px 15px 10px 15px;
        cursor: default;
    }

        .selected__filter--label.hide-icon::after {
            display: none;
        }

.delete__filter-wrapper {
    border-radius: 6px;
    background-color: #f3cfe6;
    padding: 20px;
    margin: 30px 0 20px;
}

.delete-filters {
    color: #a5017d;
    font-size: 16px;
    line-height: 20px;
    text-decoration: underline;
    cursor: pointer;
}

.multiple-select {
    position: relative !important;
}

.select2-selection__rendered::after {
    content: '\f078';
    font-family: FontAwesome;
    position: absolute;
    /*height: calc(100% - 6px);*/
    right: 4px;
    /*background: #fff;*/
    width: 30px;
    align-items: center;
    top: 50%;
    transform: translateY(-50%);
}


.results-block {
}

    .results-block .activity-intro-detst {
        padding: 80px 0 60px;
    }

        .results-block .activity-intro-detst h2 {
            color: #a5017d;
            font-size: 40px;
            font-weight: 400;
            letter-spacing: 1.6px;
            line-height: normal;
            margin-bottom: 10px;
        }

    .results-block header {
        margin: 0 0 30px 0;
    }

        .results-block header > div {
            border-bottom: 4px solid #a5017d;
        }

        .results-block header h6 {
            font-size: 18px;
            font-weight: 400;
            float: left;
            margin: 20px 0 12px 0;
        }

        .results-block header .sort-box {
            display: none;
            float: right;
            border: 4px solid #a5017d;
            border-bottom: 0;
            border-radius: 6px 6px 0 0;
        }
            /*.results-block header .sort-box select {
                padding: 0 35px;
                height: 60px;
                background: transparent;
                border: none;
                -webkit-appearance: none;
                font-size: 14px;
                font-weight: 600;
                color: #a5017d;
            }*/
            .results-block header .sort-box a {
                display: block;
                padding: 22px 35px 0;
                height: 60px;
                background: transparent;
                border: none;
                -webkit-appearance: none;
                font-size: 14px;
                font-weight: 600;
                line-height: 1;
                color: #a5017d;
                text-decoration: none;
            }

                .results-block header .sort-box a:after {
                    display: inline-block;
                    margin: 0 0 0 10px;
                    font-family: FontAwesome;
                    font-size: 20px;
                    vertical-align: middle;
                    margin-top: -3px;
                }

                .results-block header .sort-box a.up:after {
                    content: '\f106';
                }

                .results-block header .sort-box a.down:after {
                    content: '\f107';
                }


.flex-sb-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .flex-sb-wrapper .activity-intro-detst {
        padding: 45px 0;
    }

    .flex-sb-wrapper .btn {
        margin: 0;
    }

.activity-wrapper {
    margin-bottom: 40px;
}

.form-flex-center {
    display: flex;
    align-items: center;
}

    .form-flex-center select:nth-of-type(2) {
        margin: 0 5px;
    }

.switch-container {
    position: relative;
    display: flex;
    align-items: center;
}

.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 45px;
    margin-right: 5px;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 15px;
        width: 15px;
        left: 4px;
        top: 50%;
        transform: translateY(-50%);
        background-color: #fff;
        -webkit-transition: .4s;
        transition: .4s;
    }

input:checked + .slider {
    background-color: #a5017d;
}

input:focus + .slider {
    box-shadow: 0 0 1px #a5017d;
}

input:checked + .slider:before {
    transform: translate(15px, -50%);
}

.wensenlijst.active {
    color: #a5017d;
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }

.activity-main-title {
    font-size: 32px;
    display: block;
    margin: 10px 0;
    color: #a5017d
}

.activity-row-head {
    display: flex;
    align-items: center;
    padding: 10px 0;
    font-weight: 700;
    color: #82166b;
    word-break: break-word;
}

.activity-row {
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid #121212;
    min-height: 75px;
    padding: 1rem 0;
    font-size: 14px;
}

    .activity-row.grey {
        background: #f5f5f5;
    }

    .activity-row .signedin-wrapper h4 {
        font-weight: 400;
    }

.signed-up {
    display: flex;
    align-items: center;
}

    .signed-up > span {
        display: inline-block;
        margin-right: 10px;
    }

    .signed-up ul {
        list-style: none;
        margin: 0;
        padding: 0;
        margin-left: auto;
    }

        .signed-up ul .button-wrapper {
            display: flex;
            margin-left: auto;
        }

            .signed-up ul .button-wrapper a,
            .signed-up ul .button-wrapper button {
                padding: 0;
                margin: 0;
                background: none;
                padding: 0 5px;
                color: purple;
                border: none;
                z-index: 99;
                font-size: 16px;
            }

                .signed-up ul .button-wrapper a:hover,
                .signed-up ul .button-wrapper button:hover {
                    border: none;
                }


    .signed-up .button-wrapper {
        display: flex;
        margin-left: auto;
    }

        .signed-up .button-wrapper a,
        .signed-up .button-wrapper button {
            padding: 0;
            margin: 0;
            background: none;
            padding: 0 5px;
            color: purple;
            border: none;
            z-index: 99;
        }

.target-group span {
    display: inline-block;
}

/* flex wrap for spacing between items */
.results {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
}

.range {
    font-size: 14px;
}

.prijs {
    position: relative;
    margin-left: 15px;
    display: inline-block;
}

    .prijs input {
        position: relative;
        color: #384d51;
        font-size: 18px;
        text-align: center;
        width: 92px;
        height: 50px;
        border-radius: 4px;
        border: 2px solid #5c2085;
        background-color: #ffffff;
        padding-left: 12px;
        z-index: 1;
    }

    .prijs:before {
        position: absolute;
        content: '\20AC';
        color: #384d51;
        font-size: 18px;
        top: 10px;
        left: 8px;
        z-index: 2;
    }

    .prijs:first-of-type {
        margin: 0 15px 0 0;
    }

/*Contentblokken styling*/

.contentblock-TextOneColumn.searchresults {
    margin-top: 2rem;
}

.contentblock-TextOneColumn .text .title {
    color: #a5017d;
    margin-bottom: 10px;
}

.contentblock-TextTwoColumn .text .title {
    color: #a5017d;
    margin-bottom: 10px;
}


.contentblock-TextOneColumn figure:has( > table),
.contentblock-TextTwoColumn figure:has( > table) {
    margin: 0;
}

.contentblock-TextOneColumn table,
.contentblock-TextTwoColumn table {
    font-family: arial, sans-serif;
    border-collapse: collapse;
    width: 100%;
}

.contentblock-TextOneColumn td,
.contentblock-TextOneColumn th,
.contentblock-TextTwoColumn td,
.contentblock-TextTwoColumn th {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
}

.contentblock-TextOneColumn tr:nth-child(even),
.contentblock-TextTwoColumn tr:nth-child(even) {
    background-color: #f5f5f5;
}

.contentblock-TextOneColumn .text h2,
.contentblock-TextTwoColumn .text h2 {
    color: #a5017d;
}


.contentblock-TextAndImage .text-and-image {
    display: flex;
    flex-wrap: wrap;
}

    .contentblock-TextAndImage .text-and-image.swapped .col-text {
        order: 2;
    }

    .contentblock-TextAndImage .text-and-image.swapped .col-img {
        order: 1;
    }

    .contentblock-TextAndImage .text-and-image .col-text .text {
        padding: 0;
        margin-bottom: 0;
    }

        .contentblock-TextAndImage .text-and-image .col-text .text h1:first-of-type, .contentblock-TextAndImage .text-and-image .col-text .text h2:first-of-type, .contentblock-TextAndImage .text-and-image .col-text .text h3:first-of-type, .contentblock-TextAndImage .text-and-image .col-text .text h4:first-of-type, .contentblock-TextAndImage .text-and-image .col-text .text h5:first-of-type, .contentblock-TextAndImage .text-and-image .col-text .text h6:first-of-type {
            margin-top: 0;
        }

    .contentblock-TextAndImage .text-and-image.swapped .col-text .text {
        padding: 5rem 0 5rem 5rem;
    }

    .contentblock-TextAndImage .text-and-image .col-img {
        display: flex;
    }

        .contentblock-TextAndImage .text-and-image .col-img figure {
            width: 100%;
            margin: 0 10px;
        }

        .contentblock-TextAndImage .text-and-image .col-img img {
            display: block;
            max-width: 100%;
        }

.contentblock-Image img {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0;
}

.contentblock-Image figure {
    position: relative;
    display: block;
    margin: 0;
}

    .contentblock-Image figure a {
        display: block;
        position: relative;
    }

        .contentblock-Image figure a::before {
            content: "";
            position: absolute;
            display: block;
            bottom: 0;
            left: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: #000;
            opacity: 0;
            z-index: 1;
            transition: ease-in-out all 0.3s;
        }

        .contentblock-Image figure a:hover::before {
            opacity: 0.3;
        }

.contentblock-Video .video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    width: 100%;
    height: 0;
}

    .contentblock-Video .video-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

.contentblock-Carousel .image-slider img {
    width: 100%;
    display: block;
    max-width: 100%;
    margin: 0;
}

.contentblock-Carousel .image-slider .slick-slide {
    outline: none !important;
}

.contentblock-Carousel .image-slider .btn {
    margin: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

    .contentblock-Carousel .image-slider .btn.prev {
        left: 0;
    }

    .contentblock-Carousel .image-slider .btn.next {
        right: 0;
    }

.contentblock-Carousel .image-slider .slick-dots {
    position: relative;
    list-style: none;
    margin: 1rem 0;
    padding: 0;
    text-align: center;
}

    .contentblock-Carousel .image-slider .slick-dots li {
        margin: 0.5rem;
        display: inline-block;
    }

        .contentblock-Carousel .image-slider .slick-dots li.slick-active button {
            background: #a5017d;
        }

    .contentblock-Carousel .image-slider .slick-dots button {
        border: none;
        width: 8px;
        height: 8px;
        text-indent: -9999em;
        display: block;
        border-radius: 50%;
        margin: 0;
        padding: 0;
        background: #d7d7d7;
    }

.contentblock-Downloads .link-list ul li {
    padding: 1.5rem 0;
}

/* TABLE STYLING */

.table-partner {
    border: solid 1px #DDEEEE;
    border-collapse: collapse;
    border-spacing: 0;
}

    .table-partner thead th {
        background-color: #DDEFEF;
        border: solid 1px #DDEEEE;
        color: #336B6B;
        padding: 10px;
        text-align: left;
        text-shadow: 1px 1px 1px #fff;
    }

    .table-partner tbody td {
        border: solid 1px #9e9e9e;
        color: #000;
        padding: 10px;
        text-shadow: 1px 1px 1px #fff;
    }

.button-box {
    position: relative;
    display: block;
    width: 90%;
}

section[class*="contentblock-"] {
    padding-bottom: 40px;
}

.contentblock-Hero + .contentblock-Title {
    padding-top: 60px;
    padding-bottom: 30px;
}

.contentblock-Title ~ .contentblock-Title h1 {
    font-size: 22px;
}

.input__add-container input[type="file"] {
    display: flex;
    align-items: center;
    height: auto;
    padding: 1rem;
}

.form input[type="file"] {
    display: flex;
    align-items: center;
    height: auto;
    padding: 1rem;
}

.select2 span.select2-selection__arrow {
    display: none;
}

.mt-1 {
    margin-top: 10px;
}

.gsc-control-cse {
    padding: 0 !important;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    margin: 40px 0 25px 0;
}

    .video-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

.footer {
    margin-top: 80px;
}

.footer-title-light {
    font-weight: 400;
}

.footer .no-deco {
    text-decoration: none;
}

    .footer .no-deco:hover {
        color: unset;
        cursor: default;
    }

.footer-block {
    padding-bottom: 40px;
}

    .footer-block h5 {
        margin: 0 0 15px 0;
    }

    .footer-block ul {
        margin: 0;
        padding: 0;
        list-style-type: none;
    }

        .footer-block ul li {
            margin: 0 0 5px 0;
        }

            .footer-block ul li a {
                font-size: 18px;
                color: #45403d;
                line-height: 2;
                text-decoration: none;
                transition: color 0.2s ease;
            }

                .footer-block ul li a:hover {
                    color: #a5017d;
                }

    .footer-block.volg-ons ul li {
        display: inline-block;
        margin-right: 15px;
    }

    .footer-block.volg-ons ul a {
        font-size: 22px;
    }

.footer form {
    clear: both;
    border-bottom: 4px solid #a5017d;
    text-align: right;
    margin: 0 10px;
}

    .footer form input {
        border: 4px solid #a5017d;
        border-bottom: 0;
        border-radius: 6px 0 0 0;
        height: 52px;
        vertical-align: middle;
        background-color: transparent;
        margin-left: 20px;
        width: calc(100% - 82px);
        max-width: 420px;
        padding: 0 15px;
        color: #a5017d;
    }

        .footer form input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
            color: #a5017d;
        }

        .footer form input::-moz-placeholder { /* Firefox 19+ */
            color: #a5017d;
        }

        .footer form input:-ms-input-placeholder { /* IE 10+ */
            color: #a5017d;
        }

        .footer form input:-moz-placeholder { /* Firefox 18- */
            color: #a5017d;
        }



    .footer form button {
        border: 4px solid #a5017d;
        border-bottom: 0;
        border-radius: 0 6px 0 0;
        height: 52px;
        border-left: 0;
        width: 52px;
        vertical-align: middle;
        background-color: #fff8e8;
        text-align: center;
    }

        .footer form button:after {
            content: '\f105';
            font-family: 'FontAwesome';
            font-size: 28px;
            color: #a5017d;
        }

    .footer form h5 {
        display: inline-block;
        vertical-align: middle;
        margin: 2px 0 0 0;
    }

.footer .cre8ion {
    clear: both;
    text-align: right;
    font-size: 14px;
    padding: 0 10px;
}

    .footer .cre8ion a {
        display: inline-block;
        line-height: 1;
        padding: 30px 0;
        color: #393939;
        text-decoration: none;
    }

body .container {
    position: relative;
    z-index: 2;
    background: #fff;
    transition: all 0.3s ease-out;
    overflow-x: hidden;
}

body.edit .container {
    transform: translateX(-480px);
    box-shadow: 3px 0 30px 0 rgba(0,0,0,0.3);
}

    body.edit .container:after {
        content: '';
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        background: rgba(255,255,255,0.8);
        background: rgba(0,0,0,0.6);
        z-index: 100;
    }

.underlayer {
    position: fixed;
    right: 0;
    top: 0;
    height: 100%;
    width: 480px;
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 20px 30px;
    background: #fff;
    z-index: 1;
    color: #444;
}

    .underlayer h4 {
        color: #a5017d;
        font-size: 20px;
    }

    .underlayer label {
        display: block;
        width: 100%;
    }

    .underlayer input,
    .underlayer textarea {
        display: block;
        width: 100%;
        color: #333;
    }

    .underlayer textarea {
        min-height: 150px;
    }

/* NOTES */

.button__wrapper--notes {
    display: flex;
    align-self: flex-start;
    justify-content: flex-start;
}

    .button__wrapper--notes button:first-of-type {
        margin-right: 1rem;
    }

button.editable {
    float: right;
    height: 50px;
    border-radius: 6px;
    background: transparent;
    color: #502084;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    border: 2px solid #27428b;
    padding: 0 26px;
    cursor: pointer;
    z-index: 99;
    position: relative;
    padding: 0 12px;
    height: 40px;
    font-size: 13px;
}

/*button.editable:after {
        font-family: 'FontAwesome';
        content: '\f040';
        font-size: 22px;
        display: inline-block;
        margin-left: 20px;
        vertical-align: middle;
        font-weight: normal;
    }*/

button.delete-material,
button.delete-report,
button.delete-policy,
button.delete-image {
    float: right;
    height: 36px;
    border-radius: 5px;
    background: transparent;
    color: #502084;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    border: 2px solid #27428b;
    padding: 0 10px;
    cursor: pointer;
    margin-top: -9px;
}

    button.delete-material:after,
    button.delete-report:after,
    button.delete-policy:after,
    button.delete-image:after {
        font-family: 'FontAwesome';
        content: '\f1f8';
        font-size: 17px;
        display: inline-block;
        margin-left: 10px;
        vertical-align: middle;
        font-weight: normal;
    }

.box .editable {
    color: #fff;
    border-color: #fff;
    margin: 0 20px 10px 0;
}


button.close-edit {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255, 0.4);
    color: #000;
    text-align: center;
    border: none;
    position: absolute;
    right: 10px;
    top: 10px;
    box-shadow: 0 3px 10px 0 rgba(0,0,0,0.4);
    cursor: pointer;
}

    button.close-edit:after {
        font-family: 'FontAwesome';
        content: '\f00d';
        font-size: 22px;
    }

    button.close-edit:hover {
        background: #de4242;
        color: #fff;
    }

button.go-back {
    float: right;
    height: 50px;
    border-radius: 6px;
    background: transparent;
    color: #502084;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    border: 2px solid #27428b;
    padding: 0 26px;
    cursor: pointer;
    z-index: 99;
    position: relative;
    margin: 0 10px;
    padding: 0 12px;
    height: 40px;
    font-size: 13px;
}


/*------------------------------------*\
    MD MediaQuery
\*------------------------------------*/
@media only screen and (max-width : 1024px) /* Als je de width aanpast pas ook de media query aan in simplegrid */ {
    .circles {
        transform: scale(0.7);
    }

    .homepage .bg .corner-image {
        left: 31%;
        height: 600px;
    }

    .contentblock-TextOneColumn figure:has(> table) {
        width: auto !important;
        overflow-x: scroll;
    }
}


/*------------------------------------*\
    SM MediaQuery
\*------------------------------------*/
@media only screen and (max-width : 768px) /* Als je de width aanpast pas ook de media query aan in simplegrid */ {

    .spacer {
        height: 2rem;
    }

    .circles {
        transform: scale(0.4);
    }

    .content article {
        padding: 40px 50px 40px 30px;
    }

    .bg .corner-image {
        top: 60px !important;
        width: 100%;
    }

    .homepage .bg .corner-image {
        left: 0%;
        margin-left: 0;
        height: 300px;
        /*width: 120%;*/
    }

    .header {
        height: auto;
        background-image: linear-gradient(225deg, #731683 0%, #831669 100%);
        background-size: auto 100% !important;
    }

    .mainmenu {
        opacity: 0;
        position: absolute;
        right: 15px;
        top: 0;
        width: calc(100% - 30px);
        transition: all 0.25s ease;
        pointer-events: none;
        border-radius: 6px;
        background-image: linear-gradient(225deg, #731683 0%, #831669 100%);
        box-shadow: 0 8px 10px rgba(0,0,0,0.15);
        padding: 0;
        z-index: 9;
    }

        .mainmenu .flex-container {
            justify-content: inherit;
            margin-right: inherit;
        }

            .mainmenu .flex-container .flex-child {
                align-self: center;
            }

            .mainmenu .flex-container #Menu {
                width: 100%;
                display: flex;
            }

            .mainmenu .flex-container .mainmenu-left {
                width: 100%;
                padding: 30px 0px;
                display: flex;
            }

    .sub-nav {
        display: none;
    }

        .sub-nav.tablet {
            display: block;
            padding: 1rem 0;
        }

            .sub-nav.tablet nav {
                justify-content: flex-start;
            }

                .sub-nav.tablet nav ul {
                    padding-left: 25px;
                    padding-right: 0;
                }


    .account {
        float: none;
    }

    .mainmenu .mainmenu-left {
        display: block;
    }

    .mainmenu ul#MenuSub {
        border-bottom: 1px solid rgba(255,255,255,0.5);
        padding-bottom: 5px;
        margin-bottom: 5px;
    }

        .mainmenu ul#Menu,
        .mainmenu ul#Menu li,
        .mainmenu ul#MenuSub,
        .mainmenu ul#MenuSub li {
            display: block;
        }

            .mainmenu ul#Menu li,
            .mainmenu ul#MenuSub li {
                padding: 0 10px;
            }

                .mainmenu ul#Menu li a,
                .mainmenu ul#MenuSub li a {
                    color: #fff !important;
                    text-shadow: none;
                    display: block;
                    text-align: center;
                    padding: 12px 0;
                }

                .mainmenu ul#Menu li h7,
                .mainmenu ul#MenuSub li h7 {
                    display: block;
                    text-align: center;
                }

                .mainmenu ul#Menu li a:hover,
                .mainmenu ul#MenuSub li a:hover {
                    text-shadow: none;
                }

                    .mainmenu ul#Menu li a:hover:after,
                    .mainmenu ul#MenuSub li a:hover:after {
                        display: none;
                    }

    body .mainmenu ul#Menu li a {
        font-size: 15px;
    }

    .header.expanded .mainmenu {
        opacity: 1;
        top: 80px;
        pointer-events: auto;
    }

    .header .mobile-menu-toggle {
        display: block;
        position: absolute;
        right: 15px;
        top: 20px;
        width: 40px;
        height: 40px;
        border-radius: 6px;
        cursor: pointer;
        text-align: center;
        padding-top: 2px;
        overflow: hidden;
    }

        .header .mobile-menu-toggle:after {
            font-family: 'FontAwesome';
            content: '\f0c9';
            font-size: 32px;
            color: #fff;
        }

    /*.header .account {
        display: block;
        margin: 10px 0 0 0;
        padding-top: 15px;
        border-top: 1px solid rgba(255,255,255,0.5);
        text-align: center;
    }*/

    /*.header .account .login {
            margin-bottom: 15px;
        }*/

    .filter-container {
        padding: 50px 10px;
    }

    .header .account .account-options {
        display: block;
        margin: 0;
    }

        .header .account .account-options h6 {
            background: none;
            border-radius: 0;
            padding: 0;
            margin-right: 20px;
            display: block;
            text-align: center;
        }

            .header .account .account-options h6:after {
                content: '';
                display: none;
            }

    .account .account-options nav {
        opacity: 1;
        top: auto !important;
        position: relative;
        padding-top: 0;
    }

        .account .account-options nav ul {
            box-shadow: none;
            background: none;
            text-align: right;
            padding: 10px 0;
        }

            .account .account-options nav ul li a {
                padding: 5px 10px;
            }

    .account .login {
        color: #fff;
        border-color: #fff;
        white-space: nowrap;
    }

    .home-content {
        padding-top: 90px;
    }

        .home-content h1 {
            font-size: 30px;
            /*max-width: 200px;*/
        }

        .home-content p {
            font-size: 16px;
            /*max-width: 450px;*/
        }

    .content {
        padding-top: 50px;
    }

        .content aside .box {
            margin: 20px 0;
        }

        .content article .indent {
            padding: 0 0 0 25px;
        }


    .bloklink figure {
        height: 200px;
    }

        .bloklink figure h6 {
            left: 25px;
        }

    .bloklink .link-content {
        margin-left: 25px;
        padding: 35px 30px;
    }

        .bloklink .link-content h3 {
            font-size: 20px;
        }

    .calendarlink {
        height: 200px;
    }

    .footer form h5 {
        display: block;
        margin-bottom: 10px;
    }

    .footer form input {
        margin-left: 0;
        width: calc(100% - 52px);
    }

    /* CONTENTBLOCKS */

    .contentblock-Downloads .link-list {
        padding: 0;
    }

    .contentblock-Hero::after {
        width: 100%;
    }

    .contentblock-TextAndImage .text-and-image.swapped .col-text .text {
        padding-left: 0;
        padding-top: 25px;
    }

    .contentblock-TextAndImage .text-and-image .col-img figure {
        padding-bottom: 56.25%;
        margin: 0;
    }

    .activity-row .activity-title {
        word-break: break-word;
    }
}


/*------------------------------------*\
    XS MediaQuery
\*------------------------------------*/
@media screen and (max-width : 480px) /* Als je de width aanpast pas ook de media query aan in simplegrid */ {

    body p {
        word-break: break-word;
    }

    .content article {
        padding: 30px;
    }

    .header .logo {
        width: 120px;
        margin-left: 10px;
    }

    .mainmenu {
        border-radius: 0;
        position: absolute;
        width: 100%;
        margin: 0;
        padding: 0;
        right: 0;
    }

        .mainmenu .flex-container {
            flex-direction: column;
        }

            .mainmenu .flex-container .flex-child {
                margin: 20px 0;
                align-self: center;
            }


            .mainmenu .flex-container .mainmenu-left {
                margin: 0;
                padding: 0;
            }

                .mainmenu .flex-container .mainmenu-left ul {
                    flex-wrap: wrap;
                }

                    .mainmenu .flex-container .mainmenu-left ul li {
                        width: 100%;
                    }

                        .mainmenu .flex-container .mainmenu-left ul li a {
                            padding: 30px 0;
                        }

        .mainmenu .flex-child.account {
            align-self: center;
        }

            .mainmenu .flex-child.account .account-options h6 {
                color: #fff;
                display: inline-block;
                text-decoration: none;
                font-weight: 600;
                padding: 12px 28px;
                border-radius: 6px;
                color: #731683;
                background-color: #fff;
                cursor: pointer;
                margin: 0;
            }

            .mainmenu .flex-child.account .account-options nav ul {
                text-align: center;
            }

                .mainmenu .flex-child.account .account-options nav ul li h7 {
                    color: #fff;
                }

                .mainmenu .flex-child.account .account-options nav ul li a {
                    color: #fff;
                }

        .mainmenu ul#Menu li a {
            padding: 20px 0;
        }

            .mainmenu ul#Menu li a.link.show-pseudo {
                position: relative;
            }



        .mainmenu ul#Menu li.children .submenu {
            display: none;
            position: relative;
            top: unset;
            left: unset;
            right: unset;
            bottom: unset;
            transform: unset;
            color: #fff;
            opacity: 1;
            visibility: visible;
            background: none;
            box-shadow: none;
            color: #fff;
        }

            .mainmenu ul#Menu li.children .submenu.clicked {
                display: block;
                width: 100%;
                transition: unset;
                transform: unset;
            }

            .mainmenu ul#Menu li.children .submenu li {
                border: none;
            }

                .mainmenu ul#Menu li.children .submenu li span {
                    background: none;
                }

                .mainmenu ul#Menu li.children .submenu li a {
                    width: 100%;
                }


    .sub-nav.tablet nav {
        margin: 0;
    }

        .sub-nav.tablet nav ul {
            padding: 0;
            flex-direction: column;
            align-items: center;
            width: 100%;
        }

    .sub-nav.tablet li {
        flex-direction: column;
    }

    .sub-nav.tablet nav ul li a {
        padding-left: 0;
        padding-right: 0;
        text-align: center;
    }

    .sub-nav li.children .submenu {
        display: none;
        position: relative;
        top: unset;
        left: unset;
        right: unset;
        bottom: unset;
        transform: unset;
        color: #fff;
        opacity: 1;
        visibility: visible;
        background: none;
        box-shadow: none;
        color: #fff;
    }

    .sub-nav.tablet li.children .submenu.clicked {
        display: block;
        width: 100%;
        transition: unset;
        transform: unset;
        padding: 0;
        color: #fff;
    }

    .sub-nav.tablet li.children .submenu li a {
        color: inherit;
        width: 100%;
        text-align: center;
    }

    .sub-nav.tablet li.children .submenu li {
        height: unset;
    }

    .searchbox form {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
    }

    .searchbox h3 {
        font-size: 26px;
    }

    /* NEW FILTER */

    .filter__wrapper {
        display: flex;
        flex-wrap: wrap;
    }

    /* AANBOD */
    .provider__tag--link {
        margin-left: 10px;
    }

    .bloklink:hover .link-content.hover {
        opacity: 0;
    }

    /* CONTENTBLOCKS */

    .contentblock-Downloads .link-list {
        padding: 0;
    }

    .contentblock-Hero.activity-detail #paging {
        padding: 2rem 2rem 5rem 2rem;
    }

    .filter__wrapper .flex__child .stretch__container.order-right .sort-box a {
        padding: 10px;
    }

    .contentblock-TextAndImage .text-and-image .col-img figure {
        padding-bottom: 56.25%;
        margin: 0;
    }

    .activity-row {
        flex-wrap: wrap;
    }

    .activity-row-head {
        display: none;
    }

    .activity-row .xs-col-1-1 {
        margin-bottom: 10px;
    }

    .form-flex-center {
        flex-wrap: wrap;
    }

        .form-flex-center select:nth-of-type(2) {
            margin: 10px 0 5px 0;
        }

    .table-partner {
        table-layout: fixed;
        width: 100%;
        font-size: 14px;
        word-break: break-word;
    }
}

@media screen and (max-width : 1024px) /* Als je de width aanpast pas ook de media query aan in simplegrid */ {
    .mainmenu ul#Menu li a {
        margin: 0 4px;
        font-size: 15px;
    }
}

@media screen and (max-width : 930px) /* Als je de width aanpast pas ook de media query aan in simplegrid */ {
    .mainmenu ul#Menu li a {
        margin: 0 4px;
        font-size: 13px;
    }
}
