@import url("menu.css");
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');

p {margin-bottom: 1rem;}

h1, h2, h3, h4, h5 {
  color: #671E45;  
  margin: 0 0 1.38rem;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  line-height: 1.4;
}l

h1 {
  margin-top: 0;
  font-size: 2.488rem;
}

h2 {font-size: 1.8rem;}

h3 {font-size: 1.424rem;}

h4 {font-size: 1.266rem;}

h5 {font-size: 1.125rem;}

small, .text_small {font-size: 0.889rem;}

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #212529;
    background: #F7F8FA;
    line-height: 1.6;
}

#qs-container {
    max-width: 100%;
}

div#content {
    margin: 4em auto;
}

#aspnetForm {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
}

.banner-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.intro-text {
    width: 48%;
    padding: 5em 0;
}


.intro-text h1 {
    font-size: 2.4em;
}

.image-column {
    width: 48%;
    background: url(images/landschap.jpg) no-repeat;
    background-size: cover;
    border-bottom-right-radius: 45px;
    position: relative;
    /* z-index: -1; */
}

.image-column:after {
    position: absolute;
    content: "";
    width: 100px;
    height: 100%;
    right: -42px;
    background: #cdc800;
    border-bottom-right-radius: 45px;
    z-index: -1;
}

.tiles-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    
    h2.tileset--content {
        display: none;
    }
    
    .tileset--content {
        display: grid;
        grid-template-columns: 48% 48%;
        justify-content: space-between;
        row-gap: 33px;
        max-width: 914px;
        margin-top: -44px;
        position: relative;
        margin-bottom: 44px;
    }

    .tile_icon {
        width: 100%;
        text-align: center;
        
        img {
            width: 40px;
            height: 40px;
        }
    }



    .tile {
        background: #fff;
        border-radius: 25px;
        z-index: 10;
        transition: all 0.2s ease-in-out;
        padding: 2em;
        box-shadow: 0px 0px 33px 4px rgba(0,0,0,0.05);
        border-radius: 25px;

        p + a {
            margin-top: 6px;
        }
        
        a {
            text-decoration: none;
            color: #212529;
            display: block;
        }

        &.area-profile a {
            color: #671E45;
            text-decoration: none;
            position: relative;
            padding-left: 23px;
            font-weight: 600;
        }

        &.area-profile a::before {
            position: absolute;
            content: "\f054";
            font-family: "Font Awesome 6 Pro";
            font-size: 13px;
            left: 0;
            top: 4px;
            transition: all 0.15s ease-in-out;
        }
        
        h3 {
            margin-bottom: 9px;
        }
        
        p {
            margin: 0;
        }

        &:hover {
            scale: 1.05;
            box-shadow: 0px 0px 33px 8px rgba(0,0,0,0.05);
        }
    }
}

.banner-container, .news-container, #content {
    max-width: 1140px;
    margin: 0 auto;
}

figure {
    margin: 0;
}

#container_newslist {
    margin-top: 6em;
}

.ballroomitemlist {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 3em;
}

.newslist li img:hover {
    scale: 1.05;
}
.newslist li img {
    transition: all .4s ease;
	object-fit: cover;
    width: 100%;
    height: 100%;

}

.ballroomitemlist li {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 0 30px;
    position: relative;
    width: 31%;
    margin-bottom: 30px;
    cursor: pointer;
   
}

.ballroomitemlist li:after {
    position: absolute;
    content: "\f178";
    font-family: "Font Awesome 6 Pro";
    right: 30px;
    bottom: 17px;
    font-size: 27px;
    color: #671e45;
    transition: all 0.15s ease-in-out;
}

.ballroomitemlist li:hover:after {
    right: 27px;
}

h3.listitem__title a {
    text-decoration: none;
    color: #3F3F3F;
    margin-right: 30px;
}

.listitem__image {
    order: 1;
    margin: 0 -30px;
    overflow: hidden;
    height: 232px;
}

h3.listitem__title {
    order: 3;
    margin-bottom: 35px;
}

.poster {
    font-size: 14px;
    order: 2;
    margin: 20px 0 0px;
}

.newslistitem__readmore {
    display: none;
}

.postername {
    display: none;
}

li.morelink {
    overflow: visible;
    width: 100%;
    padding: 0;
    margin: 0;
    height: fit-content;
    background: none;
}

li.morelink a {
    background: #671e45;
    display: block;
    padding: 13px 69px 13px 29px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    width: fit-content;
    border-radius: 8px;
    position: relative;
    font-size: 18px;
    transition: all 0.15s ease-in-out;
}

li.morelink a:hover {
    background: #4b1632;
}


li.morelink a:after {
    position: absolute;
    content: "\f178";
    font-family: "Font Awesome 6 Pro";
    right: 30px;
    font-weight: 400;
    bottom: 11px;
    font-size: 20px;
    transition: all 0.15s ease-in-out;
}

li.morelink a:hover:after {
    right: 27px;
}

li.morelink::after {
    content: none;
}

li.morelink::before {
    background: #cdc800;
    left: 0;
    top: 0;
    width: 18px;
    height: 100%;
    position: absolute;
    border-radius: 6px;
    content: "";
}

li.morelink {
    position: relative;
    padding-left: 10px;
}

.meta time {
    position: relative;
    padding-left: 22px;
}

.meta time::before {
    position: absolute;
    font-family: 'Font Awesome 6 Pro';
    content: '\f017';
    left: 0;
}

.meta__separator, .datumseparator {
    display: none;
} 

.wrapper_ballroom_nieuws .listitem__image {
    display: none;
}

.titeltekst {
    display: block;
    margin: 0;
}

.nieuwstitel {
    display: flex;
    flex-direction: column;
}

span.datumseparator {
    order: 1;
}

span.nieuwsdatum {
    order: 2;
}

#ctl00_QsPH_ctl00_preface {
    font-size: 18px;
    font-weight: 600;
}


.page_news li.nieuwsitem {
    margin-bottom: 1rem;
	margin: 30px 0;
}

#newsoverview {
    font-size: 1.375rem;
    line-height: 1.54545em;
	margin-top: 20px;
}

.nieuwscontrol a {
    display: block;
    width: fit-content;
    text-decoration: none;
    padding-right: 26px;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    color: #671E45;
    margin-bottom: 23px;
}

.nieuwscontrol a::before {
	position: absolute;
	content: "\f061";
	font-family: 'Font Awesome 6 Pro';
	right: 0;
	top: 2px;
	font-weight: 600;
}

#ctl00_QsPH_ctl00_image img {
  width: 100%;
  margin-bottom: 20px;
}

#nieuws, #custompagecontent:not(.toelichting) {
    max-width: 800px;
}

#nieuws p {
	margin: 0;
}


span.nieuwsdatum, #container_meta {
    font-size: 14px;
    margin: 0;
	position: relative;
	padding-left: 20px;
}

span.nieuwsdatum::before {
    position: absolute;
    font-family: 'Font Awesome 6 Pro';
    content: '\f017';
    left: 0;
}

#container_meta {
     position: relative;
}	 
 
#ctl00_QsPH_ctl00_clatest {
    display: none;
}

.wrapper_ballroom_nieuws .newslist {
	display: none;
}

.wrapper_ballroom_nieuws .newslist ul {
	padding: 0;
}

.wrapper_ballroom_nieuws .newslist ul li {
	margin-bottom: 23px;
}

.wrapper_ballroom_nieuws .newslist h3 {
	margin: 0;
}

.wrapper_ballroom_nieuws .newslist .poster {
	margin: 0;
}

#load-news {
    background: #671e45;
    display: block;
    padding: 13px 30px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    width: fit-content;
    border-radius: 8px;
    position: relative;
    font-size: 18px;
    transition: all 0.15s ease-in-out;
	border: none;
	margin-left: 10px;
	    cursor: pointer;
}

#load-news:hover {
    background: #4b1632;
}




#load-news::before {
    background: #cdc800;
    left: -10px;
    top: 0;
    width: 24px;
    height: 100%;
    z-index: -1;
    position: absolute;
    border-radius: 6px;
    content: "";
}


.archiveheading {
	display: none;
}

.wrapper_ballroom_nieuws #container_meta {
	padding-left: 0;
}

.uitgelicht-container {
    max-width: 1140px;
    margin: 5em auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

a.uitgelicht {
    width: 48%;
    display: block;
    background: #fff;
    padding: 18px 20px 18px 57px;
    border-radius: 8px;
    text-decoration: none;
    color: #3f3f3f;
    font-size: 19px;
    box-shadow: 0px 0px 33px 4px rgba(0,0,0,0.05);
    position: relative;
}

a.uitgelicht::before {
    content: "\f054";
    font-family: "Font Awesome 6 Pro";
    left: 30px;
    height: 15px;
    width: 15px;
    margin-right: 15px;
    position: absolute;
    transition: all 0.15s ease-in-out;
}

a.uitgelicht:hover:before {
    left: 33px;
}


@media only screen and (max-width: 1420px) {
    #qs-container {
        padding: 0 20px; 
    }
}


@media only screen and (max-width: 1222px) {
    .image-column::after {
        content: none;
    }
}

@media only screen and (max-width: 898px) {
    .ballroomitemlist li {
       width: 48%;
    }

    li.morelink {
        width: 100%;
    }

    .image-column {
       display: none;
    }

    .intro-text {
        width: 100%;
    }
}

@media only screen and (max-width: 690px) {
    .ballroomitemlist li {
       width: 100%;
    }

    .listitem__image {
        display: none;
    }

    .ballroomitemlist li:after {
        right: 30px;
        top: 50%;
        transform: translateY(-50%);
    }

    .tileset--content {
        grid-template-columns: 100%;
    }

    a.uitgelicht {
        width: 100%;
        margin-bottom: 10px;
        font-size: 1rem;
    }

    h3.listitem__title {
        font-size: 1.1rem;
    }

    
}

/*ghm profieltaart*/
#top-header {
    position: relative;
    width: 100%;
    padding-top: 40px;
    max-width: 1920px;
    box-sizing: border-box;
    margin: 0 auto;
}

.page_gebiedsprofielen #qs-container {
    padding: 0 20px;
}

#top-header.header--pink .colored-box {
    background: #FFF;
    box-shadow: 0px 0px 33px 4px rgba(0,0,0,0.05);
    border-radius: 25px;
}

#top-header .colored-box {
    z-index: 1;
    position: relative;
}

#top-header .text-block {
    padding: 40px;
}



#top-header .colored-box .header--subtitle {
    font-size: 18px;
}

.light--text {
    color: #fff;
}

#top-header .text-block div.button {
    position: relative;
    display: inline-block;
    padding: 0;
    border: none;
    border-radius: 35px;
    margin-top: 10px;
    background: #fff;
    color: #e9599a;
    text-align: left;
}

#top-header .text-block div.button:hover {
    opacity: .8;
}

#top-header .text-block div.button a {
    display: inline-block;
    padding: 15px 45px 15px 20px;
    color: #394054;
}

#top-header .text-block div.button svg {
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.svg-inline--fa {
    display: inline-block;
    height: 1em;
    overflow: visible;
    vertical-align: -.175em;
    font-size: inherit;
}

.svg-inline--fa.fa-w-14 {
    width: .875em;
}

#top-header .background-image {
    position: relative;
    width: 100%;
    height: 250px;
    background-size: cover;
    z-index: 0;
    background-position: 50% 50%;
    background: url(images/profieltaart-background.jpg);
}

.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -12px;
    margin-left: -12px;
}

.wp-content {
    max-width: 1920px;
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
}

.wp-content-intro {
    background: #FFF;
    width: 47%;
    padding: 2em;
    margin: -80px auto 0 auto;
}

.wp-content h2 {
    font-size: 1.4em;
}

.top-section {
    display: flex;
    justify-content: space-between;
    padding: 40px 0;

}

.bottom-section, .middle-section {
    width: 100%;
    background: #FFF;
    border-radius: 25px;
    padding: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    box-sizing: border-box;
    margin-bottom: 40px;
}

.wrapper_ballroom_ASP__ghm_profieltaart_kwetsbare_groepen_aspx .bottom-section {
    margin-bottom: 40px;
}

.special_thnx_footer {
    background: #FFF;
    border-radius: 6px;
    padding: 1.5em;
    margin-bottom: 70px;
    text-align: center;
}

.special_thnx_footer-inner {
    margin-top: 1em;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.special_thnx_footer a {
    margin: 5px 20px;
}

.special_thnx_footer img {
    width: 200px;
}

.bottom-inner {
    max-width: 800px;
    margin: 0 auto;
}

.bottom-section .column {
    width: 32%;
}

.bottom-section .column h3 {
    margin-bottom: 10px;
}

.middle-section .column {
    width: 44%;
}

.middle-section h3 {
    width: 100%;
}

.middle-section .column ul li {
    list-style-type: none;
}

.made-possible {
    width: 100%;
    padding: 10px 20px 20px 20px;
}

.made-possible-inner {
    border-top: thin dashed #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0 0 0;
}

.made-possible p {
    margin-right: 10px;
}

.made-possible img {
    height: 50px;
}

.panel-section {
    position: relative;
    background: #FFF;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0px 0px 33px 4px rgba(0,0,0,0.05);
}



.left-panel {
    flex: 25%;
    max-width: 25%;
    position: relative;
}

.right-panel {
    flex: 25%;
    max-width: 25%;
    background: #FFF;
}

.selector-wrapper {
    margin-bottom: 1.5em;
}

.middle-panel {
    flex: 47%;
    max-width: 47%;
    min-height: 861px;
    background: #FFF;
}

.middle-panel h3 {
    text-align: center;
    padding: 0 25px;
}

.search-wrapper {
    padding-bottom: 1.5em;

}

.report-options {
    width: 100%;
    background: #FFF;
    padding-top: 1.5em;
    border-radius: 6px;
}

.report-options button {
    text-decoration: none;
    font-size: 12px;
    text-transform: uppercase;
    font-style: normal;
    font-weight: bold;
    background: #00895c;
    cursor: pointer;
    margin: 0px;
    padding: 10px;
    border-radius: 6px;
    display: block;
    border: none;
}

.item-content h3 {
    color: #fff;
}

.factsheet-icon {
    width: 50px;
    height: 50px;
}

.factsheet-icon img {
    fill: #fff;
    -webkit-transition: all 0.35s cubic-bezier(0.24, 0.11, 0.12, 1.69);
    -moz-transition: all 0.35s cubic-bezier(0.24, 0.11, 0.12, 1.69);
    -o-transition: all 0.35s cubic-bezier(0.24, 0.11, 0.12, 1.69);
    transition: all 0.35s cubic-bezier(0.24, 0.11, 0.12, 1.69);
}

.item.block:hover img {
    transform: scale(1.1);
}

.container-radio {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}



/* toegankelijkheid */
span.kb-only {
    display: block;
    width: 100%;
    overflow: hidden;
    margin-left: 20px;
    text-align: center;
}

span.kb-only.user-hidden {
    height: 0;
}

/* Hide the browser's default radio button */
.container-radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    left: -5px;
    height: 25px;
    width: 25px;
    top: -3px;
}

.container-radio input:focus {
    border: 1px solid #000;
    border-radius: 50%;
    opacity: 1;
    width: 26px;
    height: 26px;
}

/* Create a custom radio button */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 50%;
}


/* On mouse-over, add a grey background color */
.container-radio:hover input~.checkmark {
    background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.container-radio input:checked~.checkmark {
    background-color:#671e45;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.container-radio input:checked~.checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.container-radio .checkmark:after {
    top: 9px;
    left: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}

.colored-box p {
    margin: 0;
    margin-top: 14px;
}


table.blueTable {
    border: 0px solid #671E45;
    width: 100%;
    text-align: left;
    border-collapse: collapse;
    background-color: #F7F7F7;
  }
  table.blueTable td, table.blueTable th {
    border: 0px solid #AAAAAA;
    padding: 3px 2px;
  }
  table.blueTable tbody td {
    font-size: 13px;
  }
  table.blueTable tr:nth-child(even) {
    background: #E9DFE4;
  }
  table.blueTable thead {
    background: #671E45;
  }
  table.blueTable thead th {
    font-size: 15px;
    font-weight: bold;
    color: #FFFFFF;
  }
  table.blueTable tfoot td {
    font-size: 14px;
  }
  table.blueTable tfoot .links {
    text-align: right;
  }
  table.blueTable tfoot .links a{
    display: inline-block;
    background: #1C6EA4;
    color: #FFFFFF;
    padding: 2px 8px;
    border-radius: 5px;
  }

  .th-lgnd {
    display: inline-block;
    
    &:before {
        display: inline-block;
        width: 10px;
        height: 10px;
        border-radius: 5px;
        margin-right: 10px;
        content: "";
    }
}

.alignRight td {
    text-align: right;
}

#lgd-red:before {
    background: #D40000;
}

#lgd-orange:before {
    background: #FF7824;
}

#lgd-yellow:before {
    background: #FFE699;
}

#lgd-green:before {
    background: #80D45B;
}

#lgd-darkgreen:before {
    background: #187600;
}

.toelichting {
    /* toelichting pagina styling */
    .blueTable {
        width: 100%;
        border-collapse: collapse;
        margin-bottom: 3rem;
    }

    .table {
        margin: 0;
    }

    .blueTable td,
    .blueTable th {
        padding: 10px 10px 10px 0px;
        border-bottom: 1px solid #E4E4EC;
    }

    .blueTable tbody td {
        font-size: 13px;
        padding-left: 5px;
    }



    .blueTable thead th {
        font-size: 15px;
        font-weight: bold;
        text-align: left;
        padding-left: 5px;
    }

    .blueTable tfoot td {
        font-size: 14px;
    }

    .blueTable tfoot .links {
        text-align: right;
    }

    .blueTable tfoot .links a {
        display: inline-block;
        background: #1C6EA4;
        color: #FFFFFF;
        padding: 2px 8px;
        border-radius: 5px;
    }

    .th-lgnd {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .th-lgnd:before {
        content: "";
        display: inline-block;
        width: 14px;
        height: 14px;
        display: inline-block;
        border-radius: 50%;
    }

    .alignRight td {
        text-align: right;
    }

    #lgd-red:before {
        background: #D7191C;
    }

    #lgd-orange:before {
        background: #FDAE61;
    }

    #lgd-yellow:before {
        background: #FEE08B;
    }

    #lgd-green:before {
        background: #A6D96A;
    }

    #lgd-darkgreen:before {
        background: #1A9641;
    }

    #lgd-blue1:before {
        background: #CCDFE3;
    }

    #lgd-blue2:before {
        background: #77AFFF;
    }

    #lgd-blue3:before {
        background: #227FFF;
    }

    #lgd-blue4:before {
        background: #0057CC;
    }

    #lgd-blue5:before {
        background: #003377;
    }

    /* custom colors */
    #lgd-grey:before {
        background: #E8EAE7;
    }

    #lgd-lightpurple:before {
        background: #a19eb9;
    }

    #lgd-deepblue:before {
        background: #5b6089;
    }

    #lgd-purple:before {
        background: #48346f;
    }

    #lgd-darkblue:before {
        background: #1a284c;
    }
}

@media (min-width: 992px) {
    #top-header .colored-box {
        width: calc(50% - 48px);
    }

    #top-header .background-image {
        position: absolute;
        top: 0;
        right: 0;
        width: 70%;
        height: 100%;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        z-index: 0;

    }

    .col-lg-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (min-width: 1440px) {
    #top-header .colored-box {
        min-height: 230px;
    }

}

@media screen and (max-width: 769px) {
    #top-header {
        padding-top: 0;
    }

    #top-header .colored-box .header--subtitle {
        font-size: 17px;
    }

    #top-header .colored-box .header--title {
        font-size: 28px;
    }
}



@media screen and (max-width: 1540px) {
		.middle-section .column {
		width: 48%;
	}

}



@media screen and (max-width: 1030px) {

    .wp-content-intro,
    .bottom-section {
        width: 100%;
    }

    .top-section {
        flex-wrap: wrap;
    }

    .left-panel {
        flex: 30%;
        max-width: 30%;
    }

    .middle-panel {
        flex: 67%;
        max-width: 67%;
        margin-right: 0;
        margin-left: 3%;
    }

    .right-panel {
        flex-basis: 100%;
        flex: 100%;
        max-width: 100%;
        margin-top: 20px;
    }

    .bottom-section .column, .middle-section .column {
        width: 100%;
    }
	
	.middle-section .column:first-of-type {
		margin-bottom: 20px;
	}
	

}


@media screen and (max-width: 830px) {

    .wp-content-intro,
    .bottom-section {
        padding: 1em;
    }

    .left-panel {
        flex: 100%;
        max-width: 100%;
        height: auto;
    }

    .middle-panel {
        flex: 100%;
        max-width: 100%;
        height: auto;
        margin-top: 20px;
        margin-right: 0;
        margin-left: 0px;
    }

    #bmt_chart {
        height: 500px;
    }


}

@media screen and (max-width: 992px) {
    #top-header .background-image {
        display: none;
    }
}

@media screen and (max-width: 600px) {
    .wp-content {
        padding: 0 15px;
    }

    .panel-section {
        padding: 15px;
    }

    .left-panel {
        padding-bottom: 300px;
    }

    .report-options {
        padding: 15px;
    }

    .factsheet-icon {
        width: 30px;
        height: 30px;
    }

    .report-options button {
        display: inline;
        font-size: 10px;
    }

    
    #newsoverview {
        font-size: 16px;
    }
}

@media screen and (max-width: 375px) {
    .wp-content {
        padding: 0 10px;
    }

    .panel-section {
        padding: 10px;
    }

    .left-panel {
        padding-bottom: 300px;
    }

    .report-options {
        padding: 10px;
    }


}