/* Path: 12/css/background.css */

/* --------------------------------------------------
   GRUNNLEGGENDE
-------------------------------------------------- */
body {
	background-color: var(--bg-main);
	color: var(--text-main);
}

/* --------------------------------------------------
   HEADER / PANELER
-------------------------------------------------- */
header,
.header {
	background-color: var(--bg-panel);
}

.panel,
.panel--hamburger {
	background-color: var(--bg-panel);
}

/* --------------------------------------------------
   FAST BAKGRUNNSBILDE
-------------------------------------------------- */
.background-fixed {
	background-image: url("/12/gfx/UR_Laila_1500x700_grey.png");
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	opacity: 0.9;
	z-index: -2;
}

/* --------------------------------------------------
   SKROLLBAR BAKGRUNN
-------------------------------------------------- */
.background-scroll {
	background-image: url("/12/gfx/reel_7.png");
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	min-height: 100vh;
	background-size: auto;
	background-repeat: repeat;
	background-attachment: scroll;
	z-index: -1;
}

/* --------------------------------------------------
   INNHOLDSLAG (arbeidsflate)
-------------------------------------------------- */
.content {
	position: relative;
	z-index: 1;
	width: 100%;
}

/* --------------------------------------------------
   MIDTKOLONNE / WRAPPER
-------------------------------------------------- */
#contentWrapper {
	position: relative;
	margin: 0 auto;

	width: 50vw;
	max-width: 100vw;
}

/* --------------------------------------------------
   HOVEDINNHOLD (liste/kort)
-------------------------------------------------- */
#contentContainer {
	-webkit-text-size-adjust: 100%;
	color: var(--text-main);
	font-family: Verdana, sans-serif;
	font-size: 15px;
	line-height: 1.5;
	text-align: left;
	hyphens: auto;
	box-sizing: inherit;
	display: block;

	padding: 0.01em 16px;
	min-height: 80vh;

	background-color: var(--bg-content);
}

/* --------------------------------------------------
   RESPONSIV MIDTKOLONNE
-------------------------------------------------- */

/* Mobil */
@media (max-width: 600px) {
	#contentWrapper {
		max-width: 100vw;
	}
}

/* Nettbrett / smal desktop */
@media (min-width: 601px) and (max-width: 1199px) {
	#contentWrapper {
		max-width: 100vw;
	}
}

/* Stor skjerm */
@media (min-width: 1200px) {
	#contentWrapper {
		max-width: 50vw;
	}
}
