
:root {
    --core-color: #007bff;
    --pre-color:#007bff; /* login form */
  }
body {
    background-color:white;
        font-family: "Open Sans","Avenir Next";
            color:#644090;
        margin:0px;
        padding:0px;
}
body {
    background-color:#FFFFFF;
    overflow:hidden;
    overflow-y:scroll;
    width:100vw;
    height:auto;
}

a {

        font-family: "Open Sans","Avenir Next";
        text-decoration:none;

}




section {
    margin:10px;
    clear:both;
}

section.centered {
	margin-left:20vw;
	margin-right:20vw;
}
.fw {
    width:100vw;
    margin:0px !important;
    background-color:white;
}

@media only screen and (max-width: 400px) {
section.centered {
	margin-left:2vw;
	margin-right:2vw;
}
}
@media only screen and (max-width: 600px) {
section.centered {
	margin-left:2vw;
	margin-right:2vw;
}
}
@media only screen and (max-width: 900px) {
section.centered {
	margin-left:2vw;
	margin-right:2vw;
}
}
@media only screen and (max-width: 1200px) {
section.gallery.centered, {
  width:90vw;
} 
section.centered, section.focus.centered {
  margin-left:4vw;
  margin-right:4vw;
}
}

@media only screen and (max-width: 1600px) {
section.gallery.centered, {
  width:88vw;
} 
section.centered, section.focus.centered {
  margin-left:6vw;
  margin-right:6vw;
}
}
@media only screen and (max-width: 1800px) {
section.gallery.centered, {
  width:88vw;
} 
section.centered, section.focus.centered {
  margin-left:6vw;
  margin-right:6vw;
}
}

@media only screen and (max-width: 900px) {
.logo_hoek {
    min-width:20vw;
}
}

.msg {
	background-color:orange;
	display:block;
	padding:20px;
	margin-bottom:20px;
}
div.box_wrapper {
    width: 100%;
    margin: 1em auto;
    padding: 1em 2em;
    padding:0px;
    border: solid 0px #808080;
    display: inline-block;
    position: relative;
    font-size: 18px;
}

div.box {
	background: #fff;
    padding: 1.5em;
    border: solid 1px #808080;
    box-shadow: 2px 2px 8px 0 rgba(145,145,145, 0);
}

div.box0 {
	background-color: #f24836;
        background-color: #eb594e;
    transform: rotate(-4deg);
    color:white;
}

div.box1 {
	    background-color: #f9da5e;
        background-color: #f8aa27;
    transform: rotate(2deg);

}
div.box2 {
	background-color: #90dbf5;
    background-color: #66a8dc;
    transform: rotate(6deg);
}
div.box3 {
	background-color: #FFFFFF;
    transform: rotate(0deg);
}

.btn {
	    display: inline-block;
    background-color: red;
    background-color:#eb594e;
    padding: 16px;
    border-radius: 15px;
    text-decoration: none;
    color: white;
    margin: 10px;
    margin-bottom: 25px;
    white-space: nowrap;
    cursor:pointer;
}
.btn.input {
    background-color: white;
    color:var(--core-color);
    font-family: "Open Sans","Avenir Next";
    font-size:1.0rem;

}

.btn.soft {
  background-color: red;
    font-family: "Open Sans","Avenir Next";
    font-size:1.0rem;
}

input[type="submit"] {
    font-family:"Showcard Gothic Regular";
    font-size:1.5rem;
  background-color:green;
  color:white;
}

label {
	width:100px;
text-align:center;
vertical-align:middle;
background-color:white;
	    height: 4vh;
    min-height: 40px;
    padding: 5px;
    border: 1px solid lightblue;

        margin-top: 20px;
    display: inline-block;

}
label.long {
	background-color:transparent;
	text-align:left;
	width:100%;
}



.pincode {
	border:1px solid gray;
	border-radius:15px;
	padding:10px;
	font-size:2.0rem;
	letter-spacing: 5px; 
	clear:both;
	margin-top:5px;
}

.hidden {
	display:none;
	visibility:hidden;
}




#drop_file_zone {
    background-color: #EEE;
    border: #999 5px dashed;
    width: 290px;
    height: 200px;
    padding: 8px;
    font-size: 18px;
}

@media only screen and (max-width: 400px) {
    #drop_file_zone {
        width:200px;
    }
}


#drag_upload_file {
    width:50%;
    margin:0 auto;
}
#drag_upload_file p {
    text-align: center;
}
#drag_upload_file #selectfile {
    display: none;
}



.grid {
    display:grid;
    justify-items: center;
    grid-auto-columns: minmax(400px, auto);
    grid-template-columns:repeat(auto-fill, minmax(400px,1fr));

}
.grid div, .grid div img {
    max-width:375px;
}


@media only screen and (max-width: 400px) {

    .grid {
        display:grid;
        justify-items: center;
        grid-auto-columns: minmax(350px, auto);
        grid-template-columns:repeat(auto-fill, minmax(350px,1fr));
    }
    .grid div {
        overflow:visible;
    }
    .grid div, .grid div img {
        max-width:325px;
    }

}


@media only screen and (max-width: 300px) {

    .grid {
        display:grid;
        justify-items: center;
        grid-auto-columns: minmax(250px, auto);
        grid-template-columns:repeat(auto-fill, minmax(250px,1fr));
    }
    .grid div {
        overflow:visible;
    }
    .grid div {
        max-width:100%;
    }

    .grid div img {
        max-width:225px;
    }

}

/***** Global Slide *****/
.slide-right, .slide-left {
  width: 100%;
}

/***** Slide Right *****/
.slide-right {
  animation: 3s slide-right;
}
@keyframes slide-right {
  from {
    margin-left: -100vw;
  }
  to {
    margin-left: 0%;
  }
}

/***** Slide Left *****/
.slide-left {
  animation: 3s slide-left;
}
@keyframes slide-left {
  from {
    margin-left: 100vw;
  }
  to {
    margin-left: 0%;
  }
}


.fade-in {
  animation: fadeIn ease 3s;
}
@keyframes fadeIn{
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}




/* OVERWRITE RECYCLE RUN */
section.diagonal {
    margin:0px;
    margin-left:-10vw;
    margin-right:0px;
    width:120vw;
}

section.diagonal div.paragraph {

    margin-left:30vw; /* -10+20 */
    margin-right:20vw;
}
@media only screen and (max-width: 900px) {
    section.diagonal div.paragraph {
        margin-left:12vw; /* -10+2 */
        margin-right:2vw;
    }
}


/* smallere centerbox */
/*
section.diagonal div.box_wrapper {
  margin-left:30vw;
  margin-right:20vw;
  max-width:60vw;
  width:60vw;
}
section.diagonal div.paragraph {
  margin-left:5vw;
  margin-right:10vw;
}
*/



span.title {
    font-family:"Showcard Gothic Regular";
    font-size:1.7rem;
}


a.menu_title {
    /* font-family:"Showcard Gothic Regular"; */
    font-size:1.2rem;
    text-decoration:none;
    margin-left:50px;
}
.btn {
    font-family:"Showcard Gothic Regular";
    font-size:1.2rem;
}
div.box {
    border:0px;
}

div.box0 {

    color:#644090;
    background-color:#ffd9ac;
    transform: rotate(-4deg);

}
div.box1 {
        padding-top:80px;
    margin-top:-4vh;
    background-color:#b9abcd;
        transform: rotate(1deg);
}
div.box2 {
    padding-top:80px;
    background-color:#ffd9ac;
    transform: rotate(5deg);
}
div.box3 {
    margin-top:-4vh;
        padding-top:80px;
    background-color:#b9dcf1;
    transform: rotate(2deg);
}

div.box4 {    padding-top:80px;
    background-color:#ffffff;
    transform: rotate(0deg);
}


.text_cirle {
    display:inline-block;
    float:left;
    text-align:center;
    padding:20px;
    margin:20px;
}
.rr_thema {
    background-color:#ffd9ac;
    overflow:hidden;

}
.rr_thema1 {
    background-color:#b9abcd;
}
.rr_thema2 {
    background-color:#77ce9b;
}
.rr_thema3 {
        background-color:#B9DCF2;
}
.rr_thema1, .rr_thema2, .rr_thema3 {
    width:200px;
    height:200px;
    border-radius:20px;


}

/* **** */





/*===== Vertical Timeline =====*/
#conference-timeline {
  position: relative;
  max-width: 920px;
  width: 100%;
  /* margin: 0 auto; */
}
#conference-timeline .timeline-start,
#conference-timeline .timeline-end {
  display: table;
  font-family: "Roboto", sans-serif;
    font-family:"Showcard Gothic Regular";
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  background: #00b0bd;
  padding: 15px 23px;
  color: #fff;
  max-width: 5%;
  width: 100%;
  text-align: center;
  margin: 0 auto;
}
#conference-timeline .conference-center-line {
  position: absolute;
  width: 3px;
  height: 100%;
  top: 0;
  left: 50%;
  margin-left: -2px;
  background: #00b0bd;
  z-index: -1;
}
#conference-timeline .conference-timeline-content {
  padding-top: 67px;
  padding-bottom: 67px;
}
.timeline-article {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  margin: 20px 0;
}
.timeline-article .content-left-container,
.timeline-article .content-right-container {
  max-width: 44%;
  width: 100%;
}
.timeline-article .timeline-author {
  display: block;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #242424;
  text-align: right;
}
.timeline-article .content-left,
.timeline-article .content-right {
  position: relative;
  width: auto;
  border: 1px solid #ddd;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,.03);
  padding: 27px 25px;
}
.timeline-article p {
  margin: 0 0 0 60px;
  padding: 0;
  font-weight: 400;
  color: #242424;
  font-size: 14px;
  line-height: 24px;
  position: relative;
}
.timeline-article p span.article-number {
  position: absolute;
  font-weight: 300;
  font-size: 44px;
  top: 10px;
  left: -60px;
  color: #00b0bd;
}
.timeline-article .content-left-container {
  float: left;
}
.timeline-article .content-right-container {
  float: right;
}
.timeline-article .content-left:before,
.timeline-article .content-right:before{
  position: absolute;
  top: 20px;
  font-size: 23px;
  font-family: "FontAwesome";
  color: #fff;
}
.timeline-article .content-left:before {
  content: "\f0da";
  right: -8px;
}
.timeline-article .content-right:before {
  content: "\f0d9";
  left: -8px;
}
.timeline-article .meta-date {
  position: absolute;
  top: 0;
  left: 50%;
  width: 62px;
  height: 62px;
  margin-left: -31px;
  color: #fff;
  border-radius: 100%;
  background: #00b0bd;
}
.timeline-article .meta-date .date,
.timeline-article .meta-date .month {
  display: block;
  text-align: center;
  font-weight: 900;
}
.timeline-article .meta-date .date {
  font-size: 30px;
  line-height: 40px;
}
.timeline-article .meta-date .month {
  font-size: 18px;
  line-height: 10px;
}
/*===== // Vertical Timeline =====*/

/*===== Resonsive Vertical Timeline =====*/
@media only screen and (max-width: 830px) {
  #conference-timeline .timeline-start,
  #conference-timeline .timeline-end {
    margin: 0;
  }
  #conference-timeline .conference-center-line {
    margin-left: 0;
    left: 50px;
  }
  .timeline-article .meta-date {
    margin-left: 0;
    left: 20px;
  }
  .timeline-article .content-left-container,
  .timeline-article .content-right-container {
    max-width: 100%;
    width: auto;
    float: none;
    margin-left: 110px;
    min-height: 53px;
  }
  .timeline-article .content-left-container {
    margin-bottom: 20px;
  }
  .timeline-article .content-left,
  .timeline-article .content-right {
    padding: 10px 25px;
    min-height: 65px;
  }
  .timeline-article .content-left:before {
    content: "\f0d9";
    right: auto;
    left: -8px;
  }
  .timeline-article .content-right:before {
    display: none;
  }
}
@media only screen and (max-width: 400px) {
  .timeline-article p {
    margin: 0;
  }
  .timeline-article p span.article-number {
    display: none;
  }
  
}
/*===== // Resonsive Vertical Timeline =====*/


.keyword_btn {
    padding: 0.25rem 0.5rem;
    font-size: .875rem;

  display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: var(--core-color);
    color: black;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    text-align:left;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;    

    border:1px solid var(--core-color);
    border:1px solid black; 
    border-radius:7px;
    margin-top:10px;
    margin-left:10px;

}
.keyword_btn.title {
  border-radius:5px;
  font-weight:900;

  border:2px solid;
  border-color: var(--core-color);
  color:var(--core-color);
}
p {
  clear:both;
  display:block;
}
span.h2, a.h2, span.visform-title {
    font-family: "Showcard Gothic Regular";
    font-size: 1.9rem;
    color: #66a8dc;
    text-decoration: none;
  }
.use_pwd {
  margin-bottom:25px;
  display:block;
  border:0px;
  font-style:italic;
}
ul.responsive-table {
  list-style:none;
}
div.bikkelBox, div.table-container {
    border-radius: 15px;
    display: block;
    padding: 18px;
    border: 0px;
    width: 100%;
    max-width: 100%;
    background: #fff;
    padding: 2em;
    border: solid 1px #66a8dc;
    box-shadow: 2px 2px 8px 0 rgba(145,145,145, 0.5);
    margin-bottom: 50px;
}



.fullwidth {
    height: 4vh;
    min-height: 40px;
    padding: 5px;
    border: 1px solid lightblue;

      margin-top: 20px;
    display: block;
    width: 80%;
  border:1px solid var(--core-color);
}
select, input[type=text], input[type=number], input[type=date], input[type=password] {
  height:4vh;
  min-height:40px;
  margin-top:10px;
  padding:1vh;  
  border:1px solid var(--core-color);
}

textarea, textarea.fullwidth {
  height:14vh;
  padding:1vh;  
  border:1px solid var(--core-color);
}
#login_submit, input.my_btn_visitor, input[type=submit].submit_visitor_details {
  font-size:1.0rem;
  font-family: "Open Sans","Avenir Next";
  background-color: var(--core-color);
  border:0px;

}
/* LOGIN FORM */

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


ul.recycle_list {
 
}
ul.recycle_list li {

  border:1px solid var(--core-color);
  margin-bottom:10px;
  padding:12px;
}
