@charset "UTF-8";
/* CSS Document */
html, body {
	margin: 0;
	padding: 0;
	width: 100%;
min-height: 100%;
font-family: 'Roboto', sans-serif; /* 100,300,400,500,700,800,900 */
	font-weight: 300;
	font-style: normal;
	font-size: 10px;
	line-height: normal;
	-moz-text-size-adjust: none;
	-ms-text-size-adjust: none;
	-webkit-text-size-adjust: none;
/*	background-color: #F6F6F6;*/
/*	-webkit-font-smoothing: antialiased;*/
/*-webkit-font-smoothing: subpixel-antialiased;*/
}


/* ===================================== colors / backgrounds ============================== */

html, body, main {
	background: #FFF;
	color: #222;
}

.min-h-screen {
	min-height: 100vh;
}

a {
	color: #3EB5A7;
	text-decoration: none;
}

footer a, .darkgreen-bg a {
	color: #FFF;
}

.darkgreen-bg a {
	text-decoration: underline;
}

.darkgrey-bg {
	background-color: #282d32;
	color: #FFF;
}

.lightgrey-bg {
	background: #eaeaeb;
}

.lightgreen-bg {
	background: #aad6d5;
}

.darkgreen-bg {
	background-color: #006A5F;
	color: #FFF;
}

.darkgreen-bg h1, .darkgreen-bg h2, .darkgreen-bg h3 {
	color: #FFF;
}

.frontpageintrobg {
	background:rgba(0,0,0,.5);
	height:100%;
	float: left;
}

@media screen and (max-width: 600px) {
	.frontpageintrobg {
		width: 100%;
	}
}

@media screen and (min-width: 601px) {
	.frontpageintrobg {
		width: 50%;
	}
}

/* =============================== Animation =============================== */

header, nav, nav li a, #logo, a#logo, .megabutton, .icon, .no-touchdevice header li a, .sharingicon > img,
button, .button-ish-link, input[type=submit], a.btn {
	-webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}

.no-touchdevice a.textlink, .no-touchdevice span.textlink, a > span.contact,
ul.nav-sub > li > a > span, a.entrypoint > .overlay {
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

/* ===================================== Main blocks ================================== */

article, aside, canvas, figure, figcaption, footer, header, hgroup, #menu, nav, section, address, main, img {  
	display: block;
	padding: 0;
	margin: 0;
}

html {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

*, *:before, *:after {
	-webkit-box-sizing: inherit;
 	-moz-box-sizing: inherit;
	box-sizing: inherit;
}

a, a:active, a:focus, img, img a, a img {
	outline: none;
	outline: 0;
}

img, a img {
	border: none;
	border: 0;
	width: 100%;
}

:focus {
    outline: none !important;
}

main, section, .fullwidth, article, figure, figcaption, img, footer, .articlerow, .contact, .keyfacts, .sharing, .topimage {
	float: left;
	width: 100%;
	clear: both;
}

.topimage {
	height: 70vh;
	min-height: 360px;
	background-repeat: no-repeat;
    background-position: center center;
	background-size: cover;
}

.videobanner {
	height: 70vh;
	min-height: 360px;
	width: 100%;
	float: left;
	clear: both;
	position: relative;
	overflow: hidden;
}

.banner__video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  min-width: 100%;
  height: auto;
  min-height: 100%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 0;
}

.width-limit {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

.narrow-wrapper {
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
}

figcaption {
	padding-top: 15px;
}

section.articlepart .twothirds figure {
	margin-bottom: 1.6em;
}

.frontpageintro {
	width: 100%;
	max-width: 600px;
	float: right;
}

main {
	padding-top: 60px;
}

.frontpage main {
	padding-top: 0;
}

a.sharingicon {
	float: left;
	width: 40px;
	margin-right: 10px;
	margin-top: 10px;
}

.sharingicon > img {
	opacity: .4;
}

.sharingicon:hover > img {
	opacity: 1;
}

.flex-stretch {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
}

.flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
}

.flex-stretch.center {
	justify-content: center;
}

.flex-bottom {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
}

.flex-column {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
/*	justify-content: space-around;*/
}

/* ========================= Columns ============================== */


.onethird, .twothirds, .onefourth, .halfcolumn {
	float: left;
}

@media screen and (max-width:400px) {
	.onefourth, .halfcolumn {
		width: 100%;
		clear: both;
	}
}

@media screen and (min-width: 401px) and (max-width:800px) {
	.onefourth {
		width: 50%;
	}
	.halfcolumn {
		width: 100%;
	}
}

@media screen and (min-width: 801px) {
	.onefourth {
		width: 25%;
	}
	.halfcolumn {
		width: 50%;
	}
}

@media screen and (max-width: 600px) {
	.onethird, .twothirds, .articlepart-image, .articlepart-text {
		width: 100%;
		clear: both;
	}
}

@media screen and (min-width: 601px) {
	.onethird, .articlepart.left > .articlepart-text, .articlepart.right > .articlepart-text {
		width: 33.33%;
		clear: none;
	}
	.twothirds, .articlepart.left > .articlepart-image, .articlepart.right > .articlepart-image, .articlepart.fullbleed > .articlepart-text {
		width: 66.67%;
		clear: none;
	}
	.articlepart.right {
		flex-direction: row-reverse;
	}
}

/* ======================= Project details ======================= */

.contact, .keyfacts, .sharing {
	border-top: 1px solid #939698;
	padding-top: 25px;
}

.sharing {
	border-bottom: 1px solid #939698;
}

.contact, .keyfacts, .sharing {
	padding-bottom: 25px;
}

.contact > figure {
	width: 70px;
	margin-right: 15px;
}

.contact p, .keyfacts p, .sharing p {
	margin-bottom: 0;
}

.contact.vacancy {
	border-top: none;
	border-top: 0;
	padding: 30px 0 0 0;
}

.keyfacts span.darkgreen, .careerfacts span.darkgreen {
	text-transform: uppercase;
	font-weight: 500;
}
/*
.categorylisting:before {
	content: " | ";
}

.categorylisting:first-child:before {
	content: "";
}
*/
/*
.categorylisting:after {
	content: " | ";
}

.categorylisting:last-child:after {
	content: "";
}
*/
.categorylisting.category-34, .categorylisting.category-35, .categorylisting.category-36, 
.categorylisting.category-12, .categorylisting.category-23, .categorylisting.category-28, 
.categorylisting.category-16, .categorylisting.category-8 {
	display: none;
}

sup, sub {
	vertical-align: baseline;
	position: relative;
	top: -0.4em;
}

sub {
	top: 0.4em;
}

/* ======================== Typography ============================================================== */

h1, h2, h3, h4, h5, h6, p, li, ul, ol, blockquote, a {
	margin: 0;
	padding: 0;
	text-rendering: optimizeLegibility;
	font-style: normal;
	font-weight: normal;
}

h1, h2, h3, h4, h5, h6, p {
	width: 100%;
}

h4, ul, ol, p {
	font-size: 1.5em;
}

h4, li, p {
	line-height: 1.6em;
}

li, p {
	font-weight: 300;
}

h1, h2, h3 {
	line-height: normal;
}

h2, h3, span.darkgreen {
	color: #006a5f;
}

h2, h3 {
	margin-bottom: .5em;
}

ul, ol, p {
	margin-bottom: 1.6em;
}

ul, ol {
	margin-left: 18px;
}

a {
	font-weight: 500;
}

a.searchresult > p, .projectlistingentry a.entrypoint h4, .projectlistingentry a.entrypoint p {
	margin-bottom: 0;
	color: #222;
}

.buttonlike-link {
	font-size: 1.5rem;
	border-bottom: 2px solid #3EB5A7;
/*	color: #3EB5A7;*/
color:#222;
	padding-bottom: 4px;
	font-weight: 500;
}

a.buttonlike-link.neg {
	color: #FFF;
	border-color: #FFF;
}

.megabutton.pos {
	background:#3EB5A7;
	color: #fff;
	font-size: 1.4em;
	font-weight: 500;
	float: left;
	width: 100%;
	clear: both;
	padding: 10px;
	text-align: center;
	text-transform: uppercase;
}

.megabutton.pos:hover {
	background: #006A5F;
}

.centered {
	text-align: center;
}

@media screen and (max-width: 767px) {
	h1 {
		font-weight: 300;
		font-size: 3.2em;
	}
	h2 {
		font-size: 2.3em;
		font-weight: 400;
	}
	h3 {
		font-size: 1.5em;
		font-weight: 500;
	}
	.excerpt > p, blockquote * {
		font-weight: 400;
	}
}

@media screen and (min-width:768px) and (max-width: 1023px) {
	h1 {
		font-weight: 300;
		font-size: 4em;
	}
	h2 {
		font-size: 3.1em;
		font-weight: 400;
	}
	h3 {
		font-size: 1.6em;
		font-weight: 500;
	}
	.excerpt > p, blockquote * {
		font-size: 1.85em;
		font-weight: 300;
	}
}

@media screen and (min-width: 1024px) {
	h1 {
		font-weight: 100;
		font-size: 5em;
	}
	h2 {
		font-size: 3.8em;
		font-weight: 300;
	}
	h3 {
		font-size: 1.7em;
		font-weight: 500;
	}
	h4 {
		font-weight: 500;
	}
	.excerpt > p, blockquote * {
		font-size: 2.2em;
		font-weight: 300;
	}
}

section.excerpt.darkgreen-bg p {
	margin-bottom: 0;
}

p > span.buildingtype {
	font-weight: 100;
}

blockquote {
	padding-top: 10px;
}

blockquote * {
    color: #006A5F;
	font-weight: 400;
	font-style: italic;
}

/* ==================================== Padding / margins =============================== */

@media screen and (max-width: 767px) {
	.halfpadding, .projectlist {
		padding-left: 10px;
		padding-right: 10px;
	}
	.halfpaddingaround {
		padding: 10px 10px 10px 10px;
	}
	.listwrapper {
		padding-left: 5px;
		padding-right: 5px;
	}
	.fp-entrylist {
		padding-left: 15px;
		padding-right: 15px;
	}
	.fullpadding, blockquote {
		padding-left: 20px;
		padding-right: 20px;
	}
	.fullpaddingaround {
		padding: 20px 20px 20px 20px;
	}
	.bottommargin {
		margin-bottom: 20px;
	}
	.topmargin {
		margin-top: 20px;
	}
	section {
		padding-top: 40px;
		padding-bottom: 40px;
	}
	main {
		padding-bottom: 20px;
	}
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
	.halfpadding {
		padding-left: 20px;
		padding-right: 20px;
	}
	.halfpaddingaround {
		padding: 20px 20px 20px 20px;
	}
	.projectlist {
		padding-left: 30px;
		padding-right: 30px;
	}
	.fullpadding, blockquote {
		padding-left: 40px;
		padding-right: 40px;
	}
	.fullpaddingaround {
		padding: 40px 40px 40px 40px;
	}
	.bottommargin {
		margin-bottom: 40px;
	}
	.topmargin {
		margin-top: 40px;
	}
	section {
		padding-top: 40px;
		padding-bottom: 40px;
	}
	main {
		padding-bottom: 40px;
	}
	.listwrapper {
		padding-left: 25px;
		padding-right: 25px;
	}
	.fp-entrylist {
		padding-left: 35px;
		padding-right: 35px;
	}
}

@media screen and (min-width: 1024px) {
	.halfpadding {
		padding-left: 30px;
		padding-right: 30px;
	}
	.halfpaddingaround {
		padding: 30px 30px 30px 30px;
	}
	.projectlist {
		padding-left: 50px;
		padding-right: 50px;
	}
	blockquote {
		padding-left: 40px;
		padding-right: 40px;
	}
	.fullpadding {
		padding-left: 60px;
		padding-right: 60px;
	}
	.fullpaddingaround {
		padding: 60px 60px 60px 60px;
	}
	.bottommargin {
		margin-bottom: 60px;
	}
	.topmargin {
		margin-top: 60px;
	}
	section {
		padding-top: 60px;
		padding-bottom: 60px;
	}
	main {
		padding-bottom: 60px;
	}
	.listwrapper {
		padding-left: 45px;
		padding-right: 45px;
	}
	.fp-entrylist {
		padding-left: 55px;
		padding-right: 55px;
	}
}

.fp-entrylist > .halfcolumn {
	padding: 5px;
}

.fp-entrylist > .halfcolumn > .fullwidth {
	height: 100%;
}

.entryimage, .entrytext {
	float: left;
}

.fp-entrylist > .halfcolumn .innerpadding {
	padding: 35px 30px;
}

@media screen and (max-width: 500px) {
	.fp-entrylist > .halfcolumn .entrytext, .fp-entrylist > .halfcolumn .entryimage {
		width: 100%;
		clear: both;
	}
	.fp-entrylist > .halfcolumn .entryimage {
		height: 55vw;
	}
}

@media screen and (min-width: 501px) {
	.fp-entrylist > .halfcolumn .entrytext, .fp-entrylist > .halfcolumn .entryimage {
		width: 50%;
	}
	.fp-entrylist > .halfcolumn .entryimage {
		height: 100%;
	}
}


@media screen and (min-width: 801px) {
	.fp-entrylist > .halfcolumn {
		min-height: 285px;
	}
	.fp-entrylist > .halfcolumn.odd {
		margin-top: -30px;
		margin-bottom: 30px;
	}
	.fp-entrylist > .halfcolumn.even {
		margin-top: 30px;
		margin-bottom: -30px;
	}
}

/* ======================================= Header ======================================= */

header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 2;
	clear: none;
	width: 100%;
	height: 60px;
	background: #FFF;
}

.headerlogo {
	width: 140px;
	margin-top: 10px;
}

/* ================================= Navigation ================================= */

#menu {
	position: fixed;
	top: 0;
	right: -260px;
	height: 100%;
	margin: 0;
	padding: 0 0 0 0;
	width: 260px;
	z-index: 2;
}

#navigation {
	width: 260px;
	padding-left: 20px;
	padding-right: 20px;
	float: left;
}

#navigation ul, #navigation li {
	list-style: none;
	width: 100%;
	font-size: 2.1rem;
	margin: 0;
	padding: 0;
}

#navigation li a {
	padding: 5px 0;
	color: #FFF;
	display: block;
}



@media screen and (max-width:500px) {
	#navigation ul, #navigation li {
		font-size: 1.8rem;
	}
	#navigation li a {
		font-weight: 400;
	}
}

@media screen and (min-width:501px) {
	#navigation ul, #navigation li {
		font-size: 2.2rem;
	}
	#navigation li a {
		font-weight: 300;
	}
}

#navtrigger {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 3;
	float: left;
	clear: none;
	width: 60px;
	height: 60px;
	background: #006A5F url(https://prodecon.no/images/common/menuopen-neg.svg) no-repeat center center;
	cursor: pointer;
}

#navtrigger.open {
	background: #006A5F url(https://prodecon.no/images/common/menuclose-neg.svg) no-repeat center center;
}

nav {
	float:left;
	clear: none;
	height: 100%;
	width: 260px;
	background: #006A5F;
	margin: 0;
	padding: 80px 0 0 0;
	color: #FFF;
	-webkit-font-smoothing: antialiased;
	overflow: hidden;
}

#nav-inner {
	width: 300px;
	height: 100%;
	overflow-x: hidden;
	overflow-y: scroll;
}

#nav-inner::-webkit-scrollbar { 
    display: none; 
}

.some {
	width: 40px;
	border: 1px solid #222;
	border-radius: 50%;
	margin:10px;
}	


/* ==================================== Employees / contact ==================================== */

.employeewrapper {
	display: -webkit-box;  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
	display: flex;         /* NEW, Spec - Firefox, Chrome, Opera */
	flex-flow: column;
}

.employeewrapper p {
	color: #666;
	margin-bottom: 0;
}

.employeewrapper h4 > a {
	text-decoration: none;
}

.employeewrapper figure {
	margin-bottom: 20px;
}

a.linkwithicon {
	padding-left: 24px;
	font-weight: 400;
	display: block;
	clear: both;
}

footer a.linkwithicon {
	margin-bottom: 8px;
}

a.phone {
	background: url(https://prodecon.no/images/common/phone-icon-micro-pos.svg) no-repeat left center;
}

a.email {
	background: url(https://prodecon.no/images/common/email-icon-micro-pos.svg) no-repeat left center;
}

a.linkedin {
	background: url(https://prodecon.no/images/common/linkedin-icon-micro-pos.svg) no-repeat left center;
}

a.phone, a.linkedin, a.email {
	color: #222;
	text-decoration: none;
}

a.phone-neg {
	background: url(https://prodecon.no/images/common/phone-icon-micro-neg.svg) no-repeat left center;
}

a.email-neg {
	background: url(https://prodecon.no/images/common/email-icon-micro-neg.svg) no-repeat left center;
}

a.linkedin-neg {
	background: url(https://prodecon.no/images/common/linkedin-icon-micro-neg.svg) no-repeat left center;
}

a#togglemap {
	background: url(https://prodecon.no/images/common/googlemap-icon-neg.svg) no-repeat left center;
}

@media screen and (max-width: 600px) {
	.employeewrapper {
		width: 50%;
		margin: 30px 0;
	}
	.frontpageintro > div > .headerlogo {
		width: 140px;
		margin-top: 10px;
	}
}

@media screen and (min-width: 601px) and (max-width: 800px) {
	.employeewrapper {
		align-self: stretch;
		width: 33.33%;
		margin: 30px 0;
	}
	.frontpageintro > div > .headerlogo {
		width: 170px;
		margin-top: 10px;
	}
}

@media screen and (min-width: 801px) and (max-width: 1000px) {
	.employeewrapper {
		align-self: stretch;
		width: 25%;
		margin: 30px 0;
	}
	.frontpageintro > div > .headerlogo {
		width: 200px;
		margin-top: 15px;
	}
}

@media screen and (min-width: 1001px) {
	.employeewrapper {
		align-self: stretch;
		width: 25%;
		margin: 30px 0;
	}
	.frontpageintro > div > .headerlogo {
		width: 230px;
		margin-top: 20px;
	}
}

/* ============================== Entry points ============================== */


.simpleentry {
	padding: 15px;
	float: left;
}

.simpleentry > .inner {
	width: 100%;
	height: 100%;
	border-bottom: 1px solid #979797;
}

.simpleentry > .inner > figure {
	margin-bottom: 20px;
}

.simpleentry > a.inner > p {
	color: #222;
}

.projectentry, .projectlistingentry {
	padding: 10px;
	float: left;
}

@media screen and (max-width: 600px) {
	.projectentry, .simpleentry {
		width: 50%;
	}
}

.relatedarticle {
	width: 50%;
	min-width: 250px;
	padding: 0 10px;
}

.relatedarticle:last-child {
	margin-top: 50px;
}

.relatedarticle figure {
	margin-bottom: 15px;
}

@media screen and (min-width: 601px) and (max-width: 800px) {
	.projectentry, .simpleentry {
		width: 33.33%;
	}
}

@media screen and (min-width: 801px) and (max-width: 1000px) {
	.projectentry, .simpleentry {
		width: 25%;
	}
	.narrow-wrapper .projectentry, .narrow-wrapper .simpleentry {
		width: 33.33%;
	}
}

@media screen and (min-width: 1001px) {
	.projectentry, .simpleentry {
		width: 25%;
	}
	.narrow-wrapper .projectentry, .narrow-wrapper .simpleentry {
		width: 33.33%;
	}
}

@media screen and (max-width: 600px) {
	.projectlistingentry {
			width: 100%;
			clear: both;
	}
}

@media screen and (min-width: 601px) and (max-width: 1000px) {
	.projectlistingentry {
			width: 50%;
			clear: both;
	}
}

@media screen and (min-width: 1001px) {
	.projectlistingentry {
			width: 33.33%;
			clear: both;
	}
}

a.entrypoint {
	position: relative;
	dislay: block;
	float: left;
}

a.entrypoint > .overlay {
	padding: 12px 14px 0 14px;
	color: #FFF;
	background: rgba(0,0,0,.5);
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	opacity: 0;
}

a.entrypoint > .overlay h3 {
	color: #FFF;
}

a.entrypoint:hover > .overlay {
	opacity: 1;
}


/* ================================= Prosjektfilter ============================= */

#select-filter button {
	border: 0;
	border: none;
	background: none;
	border-radius: 0;
/*	padding: 4px 0;
	margin-right: 30px;*/
	border-bottom: 1px solid #006A5F;
	color: #006A5F;
	font-weight: 400;
	font-size: 1.3rem;
	cursor: pointer;
}

#select-filter > ul > li > button.mixitup-control-active,
#select-filter > ul > li > button:has(+ ul > li > button.mixitup-control-active) {
	color: #222;
	border-color: #222;
}

#select-filter > ul > li > ul > li > button.mixitup-control-active {
	background: #222;
}

@media screen and (max-width: 767px) {
	#select-filter {
		display: none;
	}
}

ul#nav_categories, button#all {
	float: left;
	clear: none;
}

ul#nav_categories {
margin-left: 0;
}

button#all {
	margin-right: 0;
	padding: 8px 12px 8px 0;
}

ul#nav_categories, ul#nav_categories ul, ul#nav_categories li {
 list-style: none;
 font-size: 1.3rem;
}

ul#nav_categories > li {
	float: left;
	position: relative;
}

ul#nav_categories li > button {
	padding: 8px 12px;
	margin-right: 0;
}

ul#nav_categories > li:last-child > button {
	padding-right: 0;
}

ul#nav_categories > li > ul {
	padding: 0 0 0 0;
	display: none;
}

ul#nav_categories > li:hover > ul {
	display: block;
	position: absolute;
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	background: #006A5F;
	z-index: 1;
}

ul#nav_categories > li:hover > ul > li {
	border-bottom: 1px solid #FFF;
	background: #006A5F;
	min-width: 120px;
}

ul#nav_categories > li:hover > ul > li:last-child {
	border-bottom: none;
}

ul#nav_categories > li > ul > li > button {
	width: 100%;
	text-align: left;
	color: #FFF;
}

ul#nav_categories > li:hover > ul > li > button {
	border-bottom: 0;
	border-bottom: none;
}

/* ================================ Forrige / Neste ================================ */

.prevnext-container {
	border-top: 1px solid #CCC;
}

.prevnext-container p {
	margin-bottom: 0;
}

.prev {
	float: left;
}

.next {
	float: right;
}

@media screen and (max-width: 499px) {
	.prev, .next {
		width: 100%;
		clear: both;
	}
}

@media screen and (min-width: 500px) {
	.prev, .next {
		width: 50%;
		clear: none;
	}
}

.next {
	text-align: right;
}

.prevnext-container, .prev, .next {
	padding-top: 7px;
	padding-bottom: 9px;
}

/* =============================== Youtube video ==================================== */

.videowrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
	margin-bottom: 30px;
}
.videowrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


/* ================================== Google map ============================== */

#map {
	position: relative;
	display:none;
	float: left;
	clear: both;
	overflow: hidden;
}

div#map-canvas {
	display: block;
}

@media screen and (max-width: 400px) {
	#map, #map-canvas {
		height: 200px;
	}
}

@media screen and (min-width: 401px) and (max-width: 600px) {
	#map, #map-canvas {
		height: 300px;
	}
}

@media screen and (min-width: 601px) and (max-width: 800px) {
	#map, #map-canvas {
		height: 400px;
	}
}

@media screen and (min-width: 801px) and (max-width: 1000px) {
	#map, #map-canvas {
		height: 500px;
	}
}

@media screen and (min-width: 1001px) {
	#map, #map-canvas {
		height: 600px;
	}
}

/*
#map #resetbutton {
  position: absolute;
  top: 0px;
  right: 0px;
  padding: 0;
  margin: 0;
  background-color: #660000;
  background-attachment: absolute;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(https://prodecon.no/images/common/map-reset.svg);
  cursor: pointer;
  z-index: 2;
}

@media screen and (max-width: 600px) {
	#map #resetbutton {
		width: 50px;
		height: 50px;
	}
}

@media screen and (min-width: 601px) {
  #map #resetbutton {
	  width: 60px;
	  height: 60px;
  }
}
*/

/* ============================= Input, buttons ============================== */

input[type=submit], a.button-ish-link, a.btn, a.btn.neg:hover {
	font-weight: 500;
	font-size: 1.1em;
	float: left;
	border-radius: 0;
	padding: 10px 20px 9px 20px;
	background: transparent;
	color: #333;
	border: 1px solid #282d32;
}

input[type=submit]:hover, a.button-ish-link:hover, a.btn:hover, a.btn.neg {
	background: #282d32;
	color: #FFF;
	border: 1px solid #282d32;
}

a.button-ish-link, a.btn {
	text-decoration: none;
}

/* ================================== Table ================================== */

table {
 border: 1px solid #333;
 border-collapse: collapse;
}

th, td {
	text-align: left;
	padding: 5px;
	vertical-align: top;
}

th {
	background: #333;
	color: #FFF;
	font-size: 1.6em;
}

/* ================================= Consent ================================= */

#consent {
	width: 100%;
	position: fixed;
	left: 0;
	bottom: 0;
	z-index: 4;
	padding-top: 15px;
	padding-bottom: 15px;
}

#consent p {
	font-size: 1.2em;
	float: left;
	line-height: 1.4em;
	padding: 5px 20px 5px 0;
	margin-bottom: 5px;
}

#consent a.button-ish-link {
	background: #0f1a2d;
	color: #FFF;
	border-color: #FFF;
}

#consent a.button-ish-link:hover {
	background: #FFF;
	color: #0f1a2d;
}


/* =============================== Form things =============================== */

.searchfield input {
font-size: 14px;
height: 36px;
margin: 0;
float: left;
clear: none;
font-family: 'Roboto', sans-serif;
	font-weight: 300;
	font-style: normal;
}

.searchfield input[type="text"] {
	border: 1px solid #282d32;
	width: 79%;
	padding: 0 5px;
}

.searchfield input[type=submit] {
	color: #FFf;
	background: #282d32 url(https://prodecon.no/images/common/magnifyingglass.svg) no-repeat center center;
	background-size: contain;
	cursor: pointer;
	border: 0;
	border: none;
	width: 20%
}


/* ================================== Footer ================================= */

img#footerlogo {
	width: 140px;
}

/*
figure.footer-sertificate > img {
	max-width: 130px;
	margin-bottom: 30px;
}
*/

footer .logocollection > div {
/*	width:33%;
	max-width:160px;*/
	width: 120px;
	float:left;
	padding-right:50px;
}

footer .logocollection > div > img {
	margin-bottom: 50px;
}

/* ========================= Checkbox / radio button styling ========================= */

.fancyinput {
    -ms-user-select: none;
    position: relative;
	margin-bottom: 10px;
}
.fancyinput label {
	cursor: default !important;
}
.fancyinput label.blockify {
	display: block;
}
.fancyinput input[type=checkbox], .fancyinput input[type=radio] {
	cursor: pointer;
	width: auto;
	height: auto;
	padding: 0;
	margin: 3px 0;
}

.fancyinput [type=checkbox]:checked+label, .fancyinput [type=checkbox]:not(:checked)+label,
.fancyinput [type=radio]:checked+label, .fancyinput [type=radio]:not(:checked)+label {
    position: relative;
    cursor: pointer;
}

.fancyinput [type=checkbox]:checked+label, .fancyinput [type=checkbox]:not(:checked)+label {
	padding-left: 24px;
}

.fancyinput [type=radio]:checked+label, .fancyinput [type=radio]:not(:checked)+label {
    padding-left: 30px;
}

.fancyinput [type=checkbox]:checked, .fancyinput [type=checkbox]:not(:checked),
.fancyinput [type=radio]:checked, .fancyinput [type=radio]:not(:checked) {
    position: absolute;
    opacity: 0;
}

.fancyinput [type=checkbox]:checked+label:before, .fancyinput [type=checkbox]:not(:checked)+label:before,
.fancyinput [type=radio]:checked+label:before, .fancyinput [type=radio]:not(:checked)+label:before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border: 1px solid #333;
    background: #FFF;
}

.dark-bg .fancyinput [type=checkbox]:checked+label:before, .dark-bg .fancyinput [type=checkbox]:not(:checked)+label:before,
.dark-bg .fancyinput [type=radio]:checked+label:before, .dark-bg .fancyinput [type=radio]:not(:checked)+label:before {
    border-color: #FFF;
    background: rgba(255,255,255,.1);
}

.fancyinput [type=radio]:checked+label:before, .fancyinput [type=radio]:not(:checked)+label:before {
    left: 8px;
}

.fancyinput [type=checkbox]:checked+label:before, .fancyinput [type=checkbox]:not(:checked)+label:before  {
	left: 0px;
}

.fancyinput [type=radio]:checked+label:before, .fancyinput [type=radio]:not(:checked)+label:before {
	border-radius: 50%;
}

.fancyinput [type=checkbox]:focus+label:before, .fancyinput [type=checkbox]:checked+label:before,
.fancyinput [type=radio]:focus+label:before, .fancyinput [type=radio]:checked+label:before {
    border-color: #333;
}

.fancyinput [type=checkbox]:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    background: url(https://prodecon.no/images/common/checkbox-check-pos.svg);
    background-size: contain;
    background-repeat: no-repeat;
/*	border-color: #003E7E;*/
    height: 12px;
    width: 12px;
    top: 2px;
    left: 2px;
}

.dark-bg .fancyinput [type=checkbox]:checked+label:after {
    background: url(https://prodecon.no/images/common/checkbox-check-neg.svg) no-repeat center center;
	background-size: contain;
}

.dark-bg .fancyinput [type=checkbox]:disabled+label:before {
    border-color: #AAA;
}

.dark-bg .fancyinput [type=checkbox]:checked:disabled+label:after {
    background: url(https://prodecon.no/images/common/checkbox-check-neg-disabled.svg) no-repeat center center;
	background-size: contain;
}

.fancyinput [type=radio]:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    background: url(https://prodecon.no/images/common/radio-check-pos.svg);
    background-size: contain;
    background-repeat: no-repeat;
	border-color: #333;
    height: 10px;
    width: 10px;
    top: 3px;
    left: 11px;
}

.fancyinput [type=radio]:disabled+label:before {
    border-color: #999;
}

.fancyinput [type=radio]:checked:disabled+label:after {
    background: url(https://prodecon.no/images/common/radio-check-pos-disabled.svg) no-repeat center center;
	background-size: contain;
}

.fancyinput label.blockify {
    display: block;
	float: left;
	font-size: 1.2rem;
	font-weight: 400;
	line-height: 16px;
}

.fancyinput-label {
    width: 100%;
	clear: both;
}

/* ================================= Consent ================================= */

#consent {
	width: 100%;
	position: fixed;
	left: 0;
	bottom: 0;
	z-index: 4;
	padding: 15px;
}

#consent > .inner {
	padding: 10px 15px;
	box-shadow: 0px 0px 6px rgba(0,0,0,.6);
}

#consent p {
	font-size: 1.2em;
	float: left;
	line-height: 1.4em;
	padding: 5px 20px 5px 0;
	margin-bottom: 5px;
}

#consent a.button-ish-link {
	margin-top: 10px;
	margin-bottom: 5px;
}
