@font-face {
    font-family: 'gobold_uplowregular';
    src: url('../fonts/gobold_uplow-webfont.woff2') format('woff2'),
         url('../fonts/gobold_uplow-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

#body {
	margin: 0;
	width: 100%;
	height: 100%;
	font-family: 'Work Sans', sans-serif;
	font-weight: 400;
	overflow-x: hidden;
}

/* Page Header */
.pageheader {
	position: absolute;
	background-color: white;
	width: 100%;
	height: 100px;
	top: 0;
	z-index: 2;
	-webkit-filter: drop-shadow(0px 0px 4px rgb(0, 0, 0, 0.7));
	filter: drop-shadow(0px 0px 4px rgb(0, 0, 0, 0.7));
}

.pageheaderlogo {
	position: absolute;
	margin-top: 20px;
    margin-left: 20px;
	height: 60px;
	width: calc((60px * 2567) / 771);
	cursor: pointer;
	opacity: 1;
	transition: 0.3s;

	background-image: url(../images/logo_lps_twin_turbine.svg);

	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}

.pageheaderlogo:hover {
	opacity: 0.7;
}

@media screen and (max-width: 1010px) {
	.pageheader {
		height: 48px;
	}

	.pageheaderlogo {
		display: none;
	}
}

/* Page Menu */
.topnav {
  overflow: hidden;
  background-color: white;
  margin-left: 150px;
  margin-right: 150px;
}

.topnav a {
  float: left;
  display: block;
  color: black;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a.active, .topnav .dropdown.active {
  background-color: #0091d1;
  color: white;
}

.topnav .icon {
  display: none;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 17px;
  border: none;
  outline: none;
  color: black;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.dropdown.active .dropbtn {
	color: white !important;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.topnav a:hover, .dropdown:hover .dropbtn {
  background-color: #ddd;
  color: black;
}

.dropdown-content a:hover {
  background-color: #ddd;
  color: black;
}

.dropdown:hover .dropdown-content {
  display: block;
}

@media screen and (min-width: 1011px) {
	.topnav {
  	display: -webkit-box;
  	display: -moz-box;
  	display: -ms-flexbox;
  	display: -webkit-flex;
  	display: flex;

  	-webkit-justify-content: center;
  	-ms-flex-pack: center;
  	justify-content: center;
	}
}

@media screen and (max-width: 1010px) {
	.topnav {
		margin-left: 0px;
    margin-right: 0px;
	}

	.topnav a:not(:first-child), .dropdown .dropbtn {
		display: none;
	}

	.topnav a.icon {
		float: right;
		display: block;
	}

	.topnav.responsive {position: relative;}

	.topnav.responsive .icon {
		position: absolute;
		right: 0;
		top: 0;
	}

	.topnav.responsive a {
		float: none;
		display: block;
		text-align: left;
	}

	.topnav.responsive .dropdown {float: none;}

	.topnav.responsive .dropdown-content {position: relative;}

	.topnav.responsive .dropdown .dropbtn {
		display: block;
		width: 100%;
		text-align: left;
	}
}

/* Page Modal */
#modalunitimage {
	width: 100%;
	height: 100%;
	max-width: 400px;
	max-height: 250px;
    display: block;
    margin: auto;
}

#modalunittype {
	font-weight: bold;
}

#modalunitnumber {
	font-weight: bold;
}

#modalunitparking {
	font-weight: bold;
	color: black;
}

#modalunitstatus {
	font-weight: bold;
	color: black;
}

/* Page Main */
.pagemain {
	margin-top: 100px;
	height: calc(100vh - 100px);
	background-color: white;
	overflow-y: scroll;
	overflow-x: hidden;
}

section:last-of-type {
	margin-bottom: 30px;
}

.pagevisual {
	width: 100%;
	height: 100%;

	background-attachment: fixed;
	background-size: cover;
	background-repeat: no-repeat;

	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;

	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;

	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}

@media screen and (max-width: 736px) {
	.pagevisual {
		background-position: center !important;
        background-attachment: initial;
	}
}

.pagevisualhalf {
	height: 50% !important;
}

.pagevisualquarter {
	height: 25% !important;
}

.pagevisualdriekwart {
	height: 75% !important;
}

.articletext {
    background-color: #b3d5e4;
    font-size: 18px;
    padding: 10px;
}

.articletextcenter {
    margin: 0 auto;
    /* background-color: yellow !important; */

	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;

	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;

	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.two_images {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;

	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
}

.two_images img {
    max-width: 48vw;
    max-height: calc((48vw * 1080) / 1042);
}

@media screen and (max-width: 736px) {
    .two_images img {
        max-width: 100vw;
        max-height: calc((100vw * 1080) / 1042);
    }
}

.img_standalone {
    margin: 0 auto;
    min-height: 30vh;
}

#img_turbine {
    margin-left: auto;
    height: calc(100vh - 100px - 72px - 22px - 122px - 60px - 108px - 16px);
    max-height: 382px;
}

@media screen and (max-width: 736px) {
    #img_turbine {
        margin-left: -60px !important;
    }
}

.pagevisualtable {
    margin-top: 20px;
}

.pagesvg {
	max-width: 100%;
	max-height: 100%;
}

.sectiontitle {
    padding-top: 10px;
    padding-bottom: 1px;
}

.pagemaintitle {
	margin: 0;
	text-transform: uppercase;
	margin-top: 20px !important;
	font-size: 26px;
	font-weight: normal;
}

@media screen and (max-width: 736px) {
    .pagemaintitle {
        font-size: 24px;
    }
}

.pagemain h1 {
	color: #0091d1;
	margin: 10px;
}

.pagemain h1::-moz-selection {
	color: white;
	background: #0091d1;
}

.pagemain h1::selection {
	color: white;
	background: #0091d1;
}

.pagemain h2 {
	color: #0091d1;
	margin: 10px;
}

.pagemain h2::-moz-selection {
	color: white;
	background: #0091d1;
}

.pagemain h2::selection {
	color: white;
	background: #0091d1;
}

.pagemain h3 {
	margin: 10px;
}

.pagemain p {
	margin: 10px;
}

.pagemain header p {
	font-size: 20px;
	font-weight: bold;
}

.onlymobile {
	display: none;
}

.onlydesktop {
	display: inline-block;
}

@media screen and (max-width: 736px) {
	.onlymobile {
		display: inline-block;
	}

	.onlydesktop {
		display: none;
	}
}

.mobilelink {
    display: none;
}

@media screen and (max-width: 432px) {
	.mobilelink {
		display: inline-block;
	}
}

.wrapcontent {
	max-width: 1180px;
	margin: 0 auto;
}

.pagetablewrapper {
	max-width: 90vw;
	margin: 0 auto;
	overflow: auto;
}

.pagetable {
	margin: 0 auto;
	background-color: white;
	margin-bottom: 10px;
	text-align: left;
}

.pagetable th {
	font-weight: normal;
}

.tabletoprow th {
	font-weight: bold;
}

.pagetable tr th {
	background-color: #b3d5e4;
	padding: 5px;
}

.pagequote {
	text-align: center;
	font-size: 30px;
	letter-spacing: 0px;
	transition: 0.4s;

	user-select: none;
	-webkit-user-select: none; /* Safari fallback only */
	-webkit-user-select: none; /* Chrome/Safari */
	-moz-user-select: none; /* Firefox */
	-ms-user-select: none; /* IE10+ */
}

.pagequote:hover {
	letter-spacing: 3px;
}

::-moz-selection {
  color: black;
  background: #0091d1;
}

::selection {
  color: black;
  background: #0091d1;
}

.bluetext {
	color: #0091d1;
}

.bluetext::-moz-selection {
	color: white;
	background: #0091d1;
}

.bluetext::selection {
	color: white;
	background: #0091d1;
}

.whitetext {
	color: white !important;
}

.whitetext::-moz-selection {
	color: white !important;
	background: #0091d1;
}

.whitetext::selection {
	color: white !important;
	background: #0091d1;
}

.darkgreytext {
	color: #3e3e3e !important;
}

.darkgreytext::-moz-selection {
	color: #3e3e3e !important;
	background: #0091d1;
}

.darkgreytext::selection {
	color: #3e3e3e !important;
	background: #0091d1;
}

.centeredtext {
	text-align: center;
}

.textalignleft {
	text-align: left;
}

.largertext {
	font-size: larger;
}

.italictext {
    font-style: italic;
}

@media screen and (max-width: 736px) {
    .largertext {
    	font-size: medium;
    }
}

.xlargetext {
	font-size: x-large;
}

.textmarginA {
	margin: 20px 20% !important;
}

.textmarginB {
	margin: 10px 30% !important;
}

.textmarginC {
	margin: 10px 10% !important;
}

.bluebackgroundpadding {
	background-color: #b3d5e4;
	padding: 10px;
}

.lightgreybackground {
	background-color: #dadada;
	/* padding: 10px; */
}

.lightergreybackground {
	background-color: #e2e2e2;
	/* padding: 10px; */
}

.lightbluebackground {
	background-color: #b3d5e4;
}

.whitebackground {
	background-color: white !important;
}

.nobottommargin {
	margin-bottom: 0 !important;
}

.noselect {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.displaynone {
	display: none;
}

.clickablehref {
    cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.logofont {
	font-family: 'gobold_uplowregular';
}

.capitals {
	text-transform: uppercase;
}

.todo {
	font-weight: bold;
	color: red !important;
}

.dropshadow1 {
	-webkit-filter: drop-shadow(5px 3px 5px rgb(0, 0, 0, 0.7));
	filter: drop-shadow(5px 3px 5px rgb(0, 0, 0, 0.7));
}

.dropshadow2 {
	-webkit-filter: drop-shadow(3px 1px 2px rgb(0, 0, 0, 0.35));
	filter: drop-shadow(3px 1px 2px rgb(0, 0, 0, 0.35));
}

.spacer {
	height: 30px;
	width: 100%;
}

.nomarginbottom {
	margin-bottom: 0px !important;
}

.margintop30px {
    margin-top: 30px !important;
}

.marginbottom10px {
	margin-bottom: 10px !important;
}

.marginbottom20px {
	margin-bottom: 20px !important;
}

.paddingtop10px {
	padding-top: 10px !important;
}

.paddingtop20px {
	padding-top: 20px !important;
}

.paddingtopbottom {
	padding-top: 5px;
	padding-bottom: 5px;
}

.bluehoverlink, .bluehoverlink:visited {
	cursor: pointer;
	color: #0091d1;
	text-decoration: none;
	font-weight: bold;
}

.bluehoverlink:hover, .bluehoverlink:active {
	color: #a6c6d4;
}

.pagefooter .bluehoverlink, .pagefooter .bluehoverlink:visited {
	font-weight: normal;
}

.whitehoverlink, .whitehoverlink:visited {
	cursor: pointer;
	color: white;
	text-decoration: none;
}

.whitehoverlink:hover, .whitehoverlink:active {
	color: #a6c6d4;
}

.whitehover:hover {
	color: #ffffff;
}

.bluebullets {
	list-style-type: none;
}

.bluebullets li::before {
	content: "\203a";  /* Add content: \2022 is the CSS Code/unicode for a bullet */
	color: #0091d1; /* Change the color */
	font-weight: bold; /* If you want it to be bold */
	display: inline-block; /* Needed to add space between the bullet and the text */
	width: 1em; /* Also needed for space (tweak if needed) */
	margin-left: -1em; /* Also needed for space (tweak if needed) */
}

.list_nobullets li::before {
	content: "" !important;
}

ol li::marker {
    /* color: #0091d1; */
	font-weight: bold;
}

.flexsection {
	width: 500px;
	max-width: 500px;
	margin: 0 auto;

	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;

	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

@media screen and (max-width: 736px) {
	.flexsection {
		width: auto;
		max-width: auto;

		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}
}

.buttonlink {
	text-decoration: none;
	display: inline-block;
	margin: 0 auto;
}

.pagebutton, .pagebutton:active {
	max-width: 200px;
	color: white;
	transition: background-color 0.5s ease;
	cursor: pointer;
	margin: 0 auto;
	padding: 10px;
	/* border-radius: 50px; */
	font-size: larger;
	background-color: #0091d1;
	text-align: center;
}

.pagebutton:hover, .pagebutton:visited {
	background-color: #93cee8;
}

.greenbutton {
	background-color: #04AA6D;
}

@media screen and (max-width: 736px) {
	.greenbutton {
		margin-bottom: 20px;
	}
}

.pagebuttonicon {
	height: 36px;
	width: 100%;
	display: block;
	margin-bottom: 10px;
	background-image: url(../images/Yourspace_Logo_-_Visual_All_White.svg);
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: contain;           /* Safari 3.0 - Old Chrome - Old Android */
         -moz-background-size: contain;           /* Gecko 1.9.2 (Firefox 3.6) */
           -o-background-size: contain;           /* Opera 9.5 */
              background-size: contain;
}

.btn_show, .btn_show:visited {
	margin: 5px auto 0 auto;
	cursor: pointer;
	opacity: 1;
	transition: 0.3s;
	text-align: center;
}

.btn_show:hover, .btn_show:active {
	opacity: 0.7;
}

.btn_show i {
	-webkit-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	transform: rotate(0deg);
	transition: 1s;
}

.btn_show.opened i {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}

@media screen and (max-width: 1010px) {
	.pagemain {
		margin-top: 48px;
		height: calc(100vh - 48px);
	}

	.pagevisual {
		/* height: calc(100vw * (619.118/1272.17)); */
		height: 100% !important;
	}

	textarea {
		width: calc(100vw - 20px - 6px);
	}

	.spacer {
		height: 10px;
	}
}

.question {
	/* color: #0091d1; */
	font-weight: bold;
	font-style: italic;
}

/* _img Modal */

/* The Modal (background) */
.img_modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (image) */
.img_modal-content {
  margin: auto;
  display: block;
  /* width: 80%; */
  max-width: 1040px;
  margin-top: 20px;
  max-height: calc(100vh - 270px);
}

/* Caption of Modal Image */
#img_caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 1400px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

/* Add Animation */
.img_modal-content, #img_caption {
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
  from {-webkit-transform:scale(0)}
  to {-webkit-transform:scale(1)}
}

@keyframes zoom {
  from {transform:scale(0)}
  to {transform:scale(1)}
}

/* The Close Button */
.img_close {
  position: absolute;
  top: 104px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.img_close:hover,
.img_close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 736px){
  .img_modal-content {
    width: 100%;
  }

  .img_close {
      top: 52px;
  }
}

/* Page Footer */
.pagefooter {
	width: 100%;
	height: 150px;
	margin: 0;
	/* background-color: gainsboro; */
	background-color: white;
	color: #3e3e3e;

	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;

	-webkit-justify-content: space-between;
	-ms-flex-pack: space-between;
	justify-content: space-between;
}

@media screen and (max-width: 736px) {
	.pagefooter {
		height: auto;

		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}
}

.pagefooter h2 {
	font-size: 1em;
}

.footerlogo {
	flex-grow: 1;
	text-align: left;

	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;

	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;

	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;

    max-width: 200px;
}

@media screen and (max-width: 736px) {
    .footerlogo {
        max-width: 100%;
    }
}

.footersvg {
	width: 100%;
	height: 63%;

	cursor: pointer;
	opacity: 1;
	transition: 0.3s;

	background-image: url(../images/logo_ae_visual.svg);

	background-repeat: no-repeat;
	background-size: 80% 80%;
	background-position: center;
}

.footersvg:hover {
	opacity: 0.7;
}

@media screen and (max-width: 736px) {
	.footersvg {
		height: 60px;
		margin-top: 10px;
	}
}

.footersvgmakelaar {
	width: 100%;
	height: 63%;

	cursor: pointer;
	opacity: 1;
	transition: 0.3s;

	background-image: url(../images/logo_viajoop_visual.svg);

	background-repeat: no-repeat;
	background-size: 80% 80%;
	background-position: center;
}

.footersvgmakelaar:hover {
	opacity: 0.7;
}

@media screen and (max-width: 736px) {
	.footersvgmakelaar {
		height: 60px;
		margin-top: 10px;
	}
}

.footermakelaar {
	text-align: left;
}

.footerslogan {
	width: 100%;
	height: 30%;
	font-size: 1.3em;

	text-align: center;

	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;

	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;

	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}

@media screen and (max-width: 736px) {
	.footerslogan {
		margin: 10px;
	}
}

.footeraddress {
	flex-grow: 2;
	text-align: left;
}

.footerlinks {
	flex-grow: 2;
	text-align: right;
}

.footertop {
	flex-grow: 1;
	text-align: right;

    max-width: 200px;
}

@media screen and (max-width: 736px) {
	.footertop {
		max-width: 100%;
        text-align: center;
	}
}
