/**************************************************/
/*                    general                     */
/**************************************************/

*{
    margin: 0;
    padding: 0;
    box-sizing:border-box;
    color:#404040;
    font-family:barlow, arial;
    line-height:24px;
}

.img-size-large {
    width:100%;
}

.img-left {
    float:left; 
    margin-right:20px; 
    margin-top:5px;
}
.float-left-160{
    float:left;
    width:160px;
    margin-top:5px;
    margin-right:20px;
}

.float-left-200{
    float:left;
    width:200px;
    margin-top:5px;
    margin-right:20px;
}

figcaption {
    font-size:12px;
    font-style:italic;
    padding-right:10px;
    height:40px;
    line-height:14px;
}
.font11{
    font-size:11px;    
}
a {
	color: #007acc;
	-text-decoration: none;
}

a:hover,
a:focus,
a:active {
	color: darkGoldenRod; 
}

a:focus {
	outline: thin dotted;
}

a:hover,
a:active {
	outline: 0;
}

h1 {
    line-height: 1.2; 
    margin-bottom:30px;
}
h2 {
    text-transform:uppercase;
    font-size:18px;
    font-family: 'Montserrat', sans-serif;
}
h3 {
    font-size:22px; 
    line-height: 1.4; 
    margin-top:15px; 
    margin-bottom:15px;    
}
h5 {
    font-size:18px; 
    line-height: 1.4; 
    margin-top:50px; 
    margin-bottom:15px;     
}
h6 {
    color:rgb(0, 122, 204);
    font-family: 'Montserrat', sans-serif;
    font-size:20px;
    margin-bottom:30px;
    margin-top:20px;
    font-style:italic;
    display:none;
}

ul {
    list-style-type:disc;
}


/**************************************************/
/*                    header                      */
/**************************************************/
.header-bar {
    background-color:#404040;
    height:120px;
    width:100%;
    max-width:100%;
    position:relative;
    position:fixed;
    top:0px;
    z-index:10;
}
.header-bar-filler{
    display:block;
    height:120px;
}



.logo-wide {
    display:block;
    margin-top:30px; 
    margin-left:20px; 
    float:left;
    width:250px;
}


/**************************************************/
/*                 menu section                   */
/**************************************************/

@media screen and (min-width: 1020px) {  /* > 1020px */
    .main-menu-wide{
        position:absolute;
        display:block
    }
    .main-menu-small {
        display:none;
    }

    .main-menu {
        -display:block;
        font-family: 'Montserrat', sans-serif;
        bottom:2px;
        right:20px;
        -position:absolute;
    }
    .main-menu a {
        color:white;
        text-decoration: none;
        cursor:default;
    }
    .main-menu .main-menu-item {
        padding:11px;
        padding-left:12px;
        padding-right:12px;
        background-color:#404040;
    }

    .main-menu .has-sub-menu.main-menu-item > a::after {  /* arrow down for submenu */
        position: relative;
        content: "";
        top: 16px;
        margin-left: 5px;
        width: 0;
        height: 0;
        border: 5px solid transparent;
        border-color: white transparent transparent transparent;
    }


    .main-menu .has-sub-menu .sub-menu-item.has-sub-menu > a::before { /* arrow left for submenu */
        position: relative;
        content: url('img/leftmarker.png');
        top:1px;
        margin-right: 7px;
    }

    .main-menu .main-menu-item:hover{
        background-color:black;
    }
    .main-menu li {
        transition: background-color 300ms linear;
    }
    .main-menu ul {
        list-style-type:none;
        font-size:0px; /* remove white-space between inline-block elements */
    }
    .main-menu ul li {
        display:inline-block;
        position:relative;
        font-size:16px;
    }
    .main-menu ul li ul {
        position:absolute;
        top:46px;   /* compensate main-menu-item height */
        right:0px;
        width:200px;
        display:block;
        visibility:hidden;
        opacity: 0;
        transition: opacity 1.0s ease-out;
        -moz-transition: opacity 1.0s ease-out;
        -webkit-transition: opacity 1.0s ease-out;
        -o-transition: opacity 1.0s ease-out;
    }
    .main-menu-item:hover ul{
        opacity: 1;
        visibility:visible;
    }
    .main-menu ul li ul li {
        color:white;
        display:block;
        text-align:left;
        padding:10px;
        background-color:#404040;
    }
    .main-menu ul li ul li:hover {
        background-color:black;
    }
    .main-menu .main-menu-item.main-menu-sel {
        border:1px solid #a0a0a0;
    }
    .button-sub-menu-toggle{
        display:none;
    }
    .menu-bar{
        display:none;
    }
/*
    .main-menu .level2 { 
        left:-200px;
        top:-46px;
        display:none;
    }

    .main-menu .level1:hover .level2 {
        display:block;
    }

*/
    .main-menu ul li ul li ul {
        left:-200px;
        top:0;
        display:none;
        -opacity: 0;
        -transition: opacity 1.0s ease-out;
        -visibility:hidden;
    }

    .main-menu ul li ul li:hover ul {
        display:block;
        -opacity: 1;
        -visibility:visible;
    }   

}


/* ***************************************************************** */

@media screen and (max-width: 1019px) {  /* < 1020px */
    .main-menu-wide{
        position:absolute;
        display:none;
    }
    .main-menu-small {
        display:block;
    }

    .main-menu {
        display:block;
        font-family: 'Montserrat', sans-serif;
        top:125px;
        top:155px;
        -position:absolute;
        width:100%;
    }

    .main-menu li{
        overflow:hidden;
        cursor:default;
    }
    .main-menu li a {
        background-color: white;/* #dddddd;*/
        padding-left:40px;
        height:28px;
        padding-top:5px;
    }

    .main-menu ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
    }
    .main-menu .has-sub-menu {
        position:relative;
    }

    .main-menu a {
        display: block;
        text-decoration: none;
        color:black;
        cursor:default;
    }

    .main-menu .sub-menu-item a {
        padding-left:60px;
    }

    .main-menu .sub-sub-menu-item a {
        padding-left:80px;
    }
    

    .main-menu .main-menu-item:hover a{
        background-color:#e0e0e0 ; 
    }

    .main-menu .sub-menu-item:hover a{
        background-color:#c0c0c0;
    }

    .main-menu .sub-menu-item .sub-sub-menu-item:hover a{
        background-color: #a0a0a0;
    }

    .button-sub-menu-toggle {
        position:absolute;
        top:0px;
        -right:0px;
        left:5px;
        width:30px;
        height:28px;
        margin-right:10px;
        border:0px solid #c0c0c0;
        border-left:1px;
        font-size:20px;
    }

    .button-sub-menu-toggle.level1 {
        left:60px;
    }
    .sub-menu-item.has-sub-menu.level1 a {
        padding-left:100px;
    }

    .main-menu .menu-item-hide {
        display:none;
    }

    .main-menu li {
        border-bottom: 1px solid #c0c0c0;
    }
    .main-menu li li {
        border-bottom: 0px solid #c0c0c0;
        border-top: 1px solid #c0c0c0;
    }
    .menu-bar {
        position:absolute;
        background-color:white;
        height: 42px;
        bottom:0px;
        width:100%;
    }
    .button-menu-toggle{
        float:right;
        margin-top:6px;
        height:36px;
        width:50px;
        margin-right:10px;
        border:1px solid lightgray;
        background-color:white;
        font-size:25px;
    }
    .main-menu.hide-main-menu {
        display:none;
    }
    .logo-wide {
        margin-top:20px; 
        width:200px;
    }
    .header-bar, .header-bar-filler{
        height:160px;
    }

}
/**************************************************/
/*             content lay-out section            */
/**************************************************/
.grid2-container {
    display: grid;
    grid-template-columns: auto auto;
}
.grid-item {
    text-align: left;
}

.box-imgtext{
    position:relative;
    overflow:auto;
}
.text-box-imgtext {
    position:absolute;
    bottom:0px;
    left:140px;
}

.content-container {
    width:100%;
    margin:0px;
    display:block;
}

/* Clear floats after the columns */
.content-container:after {
    content: "";
    display: table;
    clear: both;
}

.pagecontent {
    padding:10px;
    max-width:700px;
    margin:auto;
}

.pagecontent .person {
    width:auto;
}

.pagecontent .fig-1{
    margin-top:20px;
    margin-bottom:20px;
    display:block;
    max-width:600px;
}
.pagecontent .fig-2 {
    margin-top:20px;
    margin-bottom:20px;
    display:block;
}
.pagecontent .img2{
    max-width:95%;
}

.pagecontent .img3{
    max-width:95%;
    max-height:350px;
}
.pagecontent h1 {
   margin-top:40px; 
}
.pagecontent p {
    padding-top:10px;
}
.pagecontent ul {
    margin-left: 30px;
    padding:10px;
}

.pagecontent ul li {
    padding:3px;
}

.footercontent {
    margin:auto;
    max-width:300px;
    background-color:#404040;
    height:80px;
}

.footercontent ul {
    margin-left: 30px;
    padding:10px;    
}

.footercontent li, .footercontent a {
    color:white;
    padding:3px;
    text-decoration:none;
    list-style-type: none;
}
.footercontent li:hover, .footercontent a:hover{
    font-weight:700; 
}
.arrow-text-div {
    display:grid;
    grid-template-columns: 60px auto;
}
.arrow-text{
    align-self: center;
  justify-self: left;
}
.arrow-right {
    width:50px;
}

.h2 {
    font-size:20px;
    font-weight:bold;
    margin-top:40px;
}

.img-vrijw {
    width:273px;
    height:183px;
    object-fit: cover;
}
/**************************************************/
/*                   tables                       */
/**************************************************/
table, td, th {    
    border: 1px solid #ccc;
    text-align: left;
}
table {
    border-collapse: collapse;
    width: 100%;
}

th, td {
    padding: 15px;
}


.table2 {
    border:0px;
    padding:0px;
    margin:0px;
}

.table2 td {
    border:0px;
    padding:0px;
    margin:0px;
}
.table2 .td2 {
    vertical-align: bottom;
    text-align:left;
}

.table_wpp, .table2_wpp,
.table_wpp td, .table2_wpp td {
	border:0px;
	border-bottom:1px solid lightgray;
	padding:0px 10px;
	vertical-align: top;
}

.table_wpp, .table2_wpp {
    border:0px;
    margin-bottom:20px;
}
.table2_wpp td {
	padding-bottom:10px;
}

.table3, .table3 td {
	border:0px;
    padding:2px 10px;
	vertical-align: top;
}
.table3 .borbot {
    border-bottom:1px solid lightgray;    
}
.nowrap{
    white-space: nowrap;
}

.table4 {
    width: auto;
    margin-left:10px;
    max-width:100vh;
}

table.table4 td{
    padding:5px;
    padding-top:2px;
    padding-bottom:2px;
}


/**************************************************/
/*                   home page                    */
/**************************************************/

.artist {
	margin-right: 20px;
	margin-bottom: 15px;
}
.artist1 {
	margin-right: 20px;
	margin-top: 15px;
}

.artist2 {
	margin-right: 20px;
	margin-bottom: 15px;
}

.artist:hover, .artist1:hover, .logo img:hover .actueel img:h{
	transform: scale(1.25);
	transition: transform .25s ease;
}

.img1{
    max-width:500px;
    max-height: 400px;
}

.home .logo-container{
    display:flex;
    width:100%;
    justify-content:center;
    align-items:center;
    -position: fixed;
    -top:300px;
    font-size:60px;
    font-size: 10vw;
    color:white;
    text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px gray;
    display:none;
}

.home .bottom-fixed-bg {
    width:100%;
    height:900px;
    background: linear-gradient( rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8) ),url("img/doma-vecher-ogni-voda-nebo-oblaka-molniia.jpg");
    background-position:50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    position:fixed;
    bottom:-80px;
    z-index:-2;
    color:white;
}

.home .hor-sep {
    clear:both;
    width:100%;
    background-color:#f0f0f0;
    height:10px;
}

.home .whitespace1 {
    clear:both;
    width:100%;
    background-color:white;
}

.home .content-2 {
    width:100%;
    min-height:530px;
    display:grid;
    grid-template-columns: 1fr 1fr;
    justify-content:space-around; 
    --align-items:center; 
    color: white;
    font-size:18px;
} 

.home .hitcounter {
    position:absolute;
    font-size:13px;
    color: gray;
    top:400;
    padding-left:20px;
}

.home .txt2 {
    padding: 20px;
    color:white;
} 
.home .span1 {
    color:white;
    font-size: 30px;
}  


@media screen and (max-width: 800px) {  /* < 800px */

    .home .content-2 {
        width:100%;
        display:block;
        color: white;
        font-size:16px;
    } 
    .home .span1{
        font-size: 20px;
    }            
}

@media screen and (max-width: 600px) {  /* < 600px */

    .home .content-2 {
        font-size:15px;
    }

}

/**************************************************/
/*                  jury members                  */
/**************************************************/

.juryname:hover{
    background-color:lightgray;
}

/**************************************************/
/*                  personen foto                 */
/**************************************************/
.person-image{
    float:left;
    margin-top:10px;
    margin-right:20px;
    width:130px;
}

/**************************************************/
/*                    logo page                   */
/**************************************************/
.logo-sep{
    clear:both;
    height:40px;
    width:100%;
    display:block;
}
.logo{
    clear:both;
}

.logo img {
	display: block;
    margin-left: auto;
    margin-right: auto;
	max-width:180px;
	max-height:90px;
	width: auto;
	height: auto;
}

.logo-container{
    float:left;
    display:grid;
    grid-template-rows: auto;
    width:210px;
    height:150px;
    margin:10px;
    padding:10px;
}

.logo .logo-container{
    border:1px solid #d0d0d0
}
.logo-container a {
    margin-bottom:10px;
}
.logo-caption{
    align-self: top;
    justify-self: center;
    font-size:12px;   
}

.logo-caption a{
    color:#404040;
    text-decoration:none;
}
.logo-caption a:hover{
    color:darkblue;
    text-decoration:underline;
}
.logo-narrow{
	display:inline;
}
.logo-wide {
	-display:none;
}

@media screen and (min-width: 815px) {
	.logo-narrow{
		display:none;
	}
	.logo-wide {
		display:inline;
	}
}

/**************************************************/
/*                actueel /  nieuws               */
/**************************************************/
.actueel-container {
    padding-top:10px;
	height:200px;
	width:350px;
    margin:15px;
    margin-top:30px;
    display:grid;
    grid-template-rows: auto;
    -border:1px solid #d0d0d0;
}

.actueel-caption {
    align-self: top;
    justify-self: center;
    font-size:16px;   
}

.actueel-container img {
	display: block;
    margin-left: auto;
    margin-right: auto;
    width:90%;
	max-width:250px;
	max-height:135px;
	height: auto;
}

.actueel img:hover{
	transform: scale(1.25);
	transition: transform .25s ease;
}

.actueel img {
    transform: scale(1.00);
	transition: transform .25s ease;
}

/**************************************************/
/*                   visit card                   */
/**************************************************/

.visit-card-1 {
    display:grid;
    grid-template-columns: 140px auto;
    margin-top:20px;
}
.vc-1-text{
   align-self: top;
   justify-self: left;
   max-width:300px;
}
.vc-1-image{
   width:105px;
   height:120px;
   object-fit: cover;
   border:1px solid lightgray;
}

/**************************************************/
/*      navbar toggle button (from bootstrap)     */
/**************************************************/


.navbar-toggler[aria-expanded="false"] span:nth-child(2) {
    opacity: 1;
}
.navbar-toggler[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}
.navbar-toggler[aria-expanded="true"] span:first-child {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    position: relative;
    top: 7.5px;
    top: 11px;
}
.navbar-toggler[aria-expanded="true"] span:last-child {
    transform: rotate(45deg);
    bottom: 9px;
    position: relative;
}
.navbar-toggler span{
    display: block;
    width: 35px;
    height: 4px;
    background: #1641ff;
    background:black;
    margin: auto;
    margin-bottom: 6px;
    transition: all 400ms linear;
    cursor: pointer;
}
button.navbar-toggler{
    border:0px;
    background-color:white;
}
button.navbar-toggler:focus {
    outline: none;
}

/**************************************************/
/*                    algemeen                    */
/**************************************************/

.kader{
    border-style:ridge;
    padding:5px;
    padding-top:0px;
} 
.boldtext{
    font-weight:bold;
    padding:5px 0px;
}
.brown {
    color: brown;
}

.disabled {
    color: #b0b0b0;
}
.relpos {
    position:relative;
}
.stamp {
    display:none;
    padding-top:15px;
    transform: rotate(-15deg);
    font-size: 30px;
    line-height:35px;
    text-align: center;
    position:absolute;
    top:70px;
    left:110px;
    width: 350px;
    height: 100px;
    background-color: rgba(255,255,255,0.1);
    color:rgba(0,19,127,0.5);
    border: 3px dashed rgba(0,19,127,0.5);
}
/**************************************************/
/*                    agenda                      */
/**************************************************/


.agenda td:nth-child(1){
    white-space: nowrap;  
} 
.agenda td:nth-child(2){
    white-space: nowrap;  
}
.agenda .tijd1 {
    display:none;
}

table.table4.agenda td {
    padding-top:15px;
    padding-bottom:15px;
    font-size:16px;
}

@media screen and (max-width: 800px) {  /* < 800px */
    .agenda td:nth-child(2){
        display:none;  
    }
    .agenda .tijd1 {
        display:block;
    }
}   
.agenda .tekst-link{
    text-decoration:none; 
} 

.agenda .link {
    margin-bottom:-3px;
}  

.agenda .link:hover {
    stroke: brown;
} 
.agenda .history {
    color:#a8a8a8;
}
    
/**************************************************/
/*                    agenda                      */
/**************************************************/

@media screen and (max-width: 450px) {  /* < 450px */
    .bezoek .tarieven td{
        font-size:12px;
    }
}
@media screen and (max-width: 300px) {  /* < 300px */
    .bezoek .tarieven td{
        font-size:10px;
    }
}
.bezoek .table_wpp tr td {
    vertical-align:top;
}  

/**************************************************/
/*                  prijzentabel                  */
/**************************************************/

.prijzentabel img {
    max-height: 45px;
    float:right;
    -display:none;
}

.prijzentabel td {
    width: 33%;
    padding:4px;
    padding-top:0px;
    font-size:13px;
    line-height:15px;
    vertical-align:top;
    border:1px solid #e0e0e0;
}

/***************************************************/
/*                  het langhuis                   */
/***************************************************/

.langhuis:hover{
    background-color:#e0e0e0;
}

/***************************************************/
/*                  corona                         */
/***************************************************/

.corona, .corona h3, .corona li{
    color:red !important;
}

/************************************************/
/*                    arrows                    */
/************************************************/

.relpos{
    position:relative;
}

/* arrow downwards */
.arrow-up-down:after {
    position: relative;
    content: "";
    top: 15px;
    margin-left: 4px;
    width: 0;
    height: 0;
    border: 8px solid transparent;
    border-color: #666 transparent transparent transparent;
}

/*point the arrow upwards*/
    .arrow-up-down.arrow-up:after {
    border-color: transparent transparent #666 transparent;
    top: -11px;
}

/*point the arrow left*/
.arrow_left:before {
    position: absolute;
    content: "";
    top: 6px;
    left: -1px;
    margin-right: 4px;
    width: 0;
    height: 0;
    border: 8px solid transparent;
    border-color: transparent #888 transparent transparent ;
}

.arrow_right:after, .arrow_right1:after {
    position: absolute;
    content: "";
    top: 6px;
    margin-left: 4px;
    right: 4px;
    width: 0;
    height: 0;
    border: 8px solid transparent;
    border-color: transparent  transparent transparent #888;
}

.arrow_right1:after {
    top: 16px;
    right: 9px;
}

.arrow_right3 {
    text-decoration: none;
}
.relpos .arrow_right3:after {
    position: absolute;
    content: "";
    top: 5px;
    margin-left: 4px;
    right: -18px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: transparent  transparent transparent #888;
}


.arrow_left:hover:before {
    border-color: transparent #fff transparent transparent ;
}

.arrow_right:hover:after, .arrow_right1:hover:after {
    border-color: transparent  transparent transparent #fff;
}

.hide {
    display:none;
}
.coronalist ul li{
    line-height:18px;
    padding:2px;
}

/* centered absolute image */
.centered-element {
    height: 63px;
    width: 85px;
    position: absolute;
    left: 50%;
    margin-left: -42px;
    top: 50%;
    margin-top: -32px;
    opacity: 0.7;
}

#terug{
    text-decoration:underline !important;
}
#terug:hover{
    cursor:pointer; 
}
.clear{
    clear:both;
}

.art-div{
    display:grid;
    grid-template-rows: auto auto;
    float:left;
    margin-bottom:20px;
}
.art-text{
    padding-top:5px;
    align-self: top;
    justify-self: center;
    font-size:12px;
    
}
.art-img{
    height:114px;
    margin-right:10px;
    margin-left:10px;
}
.art-img:hover {
    transform: scale(1.1);
    transition: transform .25s ease;
}

