@charset "utf-8";
/* CSS Document */

header, nav, article, aside, section, footer {
	display: block;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	font-size: 16px;
	/*font-family: 'Open Sans', arial, sans-serif;
	background: #e6e6e6;
	color: #2b2b2b;*/
}

body {
	background: #e6e6e6;
	color: #2b2b2b;
	font-size: 16px;
	font-family: 'Open Sans', arial, sans-serif;
	overflow-wrap: break-word;
	border-radius: 0;
}

/* Valda teckensnitt, som ersätter Open Sans */
.arial {
	font-family: arial, sans-serif;
}
.verdana {
	font-family: Verdana, arial, sans-serif;
}
.comicsans {
	font-family: "Comic Sans", "Comis Sana MS", 'Comic Neue', cursive, sans-serif;
}

/*  Globala block och grunddesign */
#webbsida_wrapper, #header, #huvudmeny, #wrapper, #footer, #footerreklam {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding: 20px;
}

#webbsida_wrapper {
	padding: 0;
}

#wrapper {
	min-height: calc(100vh - 360px);
	padding-top: 20px;
	background-color: #fff;
}

/*#wrapper h1, #wrapper h2, #wrapper h3, #wrapper h4, #wrapper h5, #wrapper h6, #wrapper p , #wrapper img , #wrapper p  {
	max-width: 940px;
	margin-left: auto;
	margin-right: auto;
}
#wrapper.startsida h1, #wrapper img {
	max-width: 100%;
}*/


/* Sidhuvudets block */
#header {
	position: relative;
	aspect-ratio: 8 / 1;
	overflow: hidden;
	padding: 0;
	background-color: #3f2d73;
	color: #fff;
}
#header.hog {
	aspect-ratio: 32 / 7;
}
#header.lag {
	aspect-ratio: 64 / 5;
	aspect-ratio: auto;
}




#header.bildhojd {
	height: 160px;
	height: 100%;
}

#webbplats_titel {
	position: relative;
	float: left;
	width: calc(50% - 40px);
	margin: 20px;
	margin: 10px 20px;
}
#webbplats_titel a {
	color: #fff;
}

#webbplats_titel h2 {
	margin: 0;
	font-size: 2rem;
}

#webbplats_titel h4 {
	margin: 0;
	font-size: 1.2rem;
	font-weight: normal;
}

#headerbild {
	position: relative;
	float: right;
	/*width: auto;
	max-width: 640px;
	text-align: center;*/
		width: 50%;
		max-width: 640px;
		text-align: right;
		overflow: hidden;
	/*height: 160px;*/
	height: 100%;
}

#header.liten_bild #headerbild {
	max-width: 35%;
}

#header.liten_bild #webbplats_titel {
	width: auto;
	max-width: 65%;
}

#headerbild.liten {
	margin: 10px 10px 10px 0;
}

#headerbild .fullstor {
	/*width: 50%;
	max-width: 640px;*/
		width: 100%;
		object-postion: center;
		aspect-ratio: 4/1;
		height: 100%;
		vertical-align: middle;
	/*height: 160px;*/
	object-fit: cover;
}


/* Heltäckande headerbild */
#header.helbild #headerbild {
	float: none;
	width: 100%;
	max-width: 100%;
	height: 100%;
}
#header.helbild #headerbild img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#header.helbild.headertext_vit #webbplats_titel, #header.helbild.headertext_vit #webbplats_titel a {
	color: #ffffff;
}
#header.helbild.headertext_svart #webbplats_titel, #header.helbild.headertext_svart #webbplats_titel a {
	color: #2b2b2b;
	text-shadow: 0px 0px 10px #fff;
}

#header.helbild #webbplats_titel {
	position: absolute;
	left: 1%;
	top: 0;
	width: auto;
	max-width: 99%;
	text-shadow: 0px 0px 10px #272727;
}

#header.helbild.dolj_headertext #webbplats_titel {
	visibility: hidden;
}

/* Låg header */
#header.lag #headerbild, #header.lag #webbplats_slogan {
	display: none;
}
#header.lag #webbplats_titel {
	width: auto;
	max-width: 100%;
	text-shadow: none;
}

/* Huvudmenyn */
#huvudmeny {
	clear: both;
	background: #fff;
	color: initial;
	padding: 10px 15px 10px 15px;
	border-bottom: 1px solid #ccc;
}
.huvudmeny_overst #huvudmeny {
	border-bottom: none;
	margin-top: 10px;
	margin-bottom: 10px;
}

#huvudmeny_lista {
	overflow: auto;
	white-space: nowrap;
}

#huvudmeny ul {
	margin: 0;
	padding: 0;
}

#huvudmeny li {
	display: inline-block;
	list-style: none;
	margin: 0 5px;
}

#huvudmeny li ul {
	margin: 0 8px;
	background: #f2f2f2;
}

#huvudmeny a {
	display: block;
	padding: 4px 8px;
	color: initial;
	font-weight: bold;
}
#huvudmeny a:hover, #huvudmeny .aktiv {
	/*background: #f2f2f2;*/
	text-decoration: underline;
}

/* Mobilmenym */
#mobilmeny_lista {
	display: none;
	position: fixed;
	right: 0;
	/*right: -85vw;*/
	top: 0;
	z-index: 9900;
	width: 80%;
	max-width: 460px;
	/*width: 0;*/
	height: 100%;
	overflow-y: auto;
	padding: 10px;
	padding-top: 50px;
	background: #fff;
	-webkit-transition: all 0.3s ease;  
	-moz-transition: all 0.3s ease;  
	-o-transition: all 0.3s ease;  
	-ms-transition: all 0.3s ease;  
	transition: all 0.3s ease;
}
#mobilmeny_lista.synlig {
	right: 0;
	display: block;
	opacity: 1;
}

#mobilmeny_lista h3 {
	font-size: 1.5rem;
	border-bottom: 1px dotted #2b2b2b;
}

#mobilmeny_knapp {
	display: none;
	position: fixed;
	top: 10px;
	right: 10px;
	z-index: 10000;
	/*float: right;*/
	width: 40px;
	height: 40px;
	padding: 5px;
	border-radius: 5px;
	background: #fff;
	border: 1px solid #a8a8a8;
	box-shadow: 0 0 10px #979696;
	cursor: pointer;
}
#mobilmeny_knapp:hover {
	box-shadow: 0 0 20px #333;
}


#mobilmeny_lista li a {
	padding: 8px 8px 4px 8px;
}

#mobilmeny_lista li ul {
	margin: 0 0 0 6px;
	padding: 0;
	background: #fff;
}

#mobilmeny_lista li ul li a {
	font-weight: normal;
	padding: 2px 8px 6px 8px;
}

#knapplinjer {
	position: relative;
	width: 30px;
	height: 30px;
	padding: 4px 2px;
	box-sizing: border-box;
}
#knapplinje_1, #knapplinje_2, #knapplinje_3 {
	height: 2px;
	margin-bottom: 8px;
	background: #a8a8a8;
	opacity: 1;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.clicked #knapplinje_1 {
	margin-top: 10px;
	-webkit-transform: rotate(45deg);
	 transform: rotate(45deg);
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}
.clicked #knapplinje_2 {
	opacity: 0;
	-webkit-transition: opacity 0.3s;
	-moz-transition: opacity 0.3s;
	transition: opacity 0.3s;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}
.clicked #knapplinje_3 {
	margin-top: -20px;
	-ms-transform: rotate(-45deg); /* IE 9 */
	-webkit-transform: rotate(-45deg); /* Chrome, Safari, Opera */
	transform: rotate(-45deg);
	-webkit-transition: rotate 0.3s;
	-moz-transition: rotate 0.3s;
	transition: rotate 0.3s;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

#mobilmeny_bakgrund {
	position: fixed;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	z-index: -1000;
	opacity: 0;
	background: #333;
	cursor: pointer;
	/*display: none;*/
	transition: opacity 0.3s;
}
#mobilmeny_bakgrund.synlig {
	z-index: 9800;
	opacity: 0.8;
	transition: opacity 0.3s;
}





/* Design med aktiv sidomeny */
#sidomeny {
	float: left;
	width: 24%;
	width: calc(25% - 20px);
}
.meny_hoger #sidomeny {
	float: right;
}

#sidomeny ul {
	margin: 0;
	padding: 0;
}

#sidomeny li {
	list-style: none;
	margin: 0;
	padding: 4px 8px 4px 15px;
	border: 1px solid #ccc;
	border-top: none;
	background: #f2f2f2;
}
#sidomeny li:hover {
	background: #fff;
}

#sidomeny #huvudrubrik {
	padding: 0 8px 4px 8px;
	background: #fff;
	font-size: 1.2rem;
	border: 1px solid #ccc;
}

#sidomeny #huvudrubrik h4 {
	margin-top: 3px;
}

#sidomeny #rubrik {
	padding-left: 8px;
	font-weight: bold;
	border-top: 1px solid #ccc;
}

#sidomeny .aktiv {
	background: #fff;
	font-weight: bold;
}

#sidomeny a {
	display: block;
	color: initial;
}

#sidebarreklam {
	margin: 20px auto;
	text-align: center;
}
#sidebarreklam p {
	max-width: 100%;
	margin: 0 0 5px 0;
	font-size: 0.8rem;
	text-align: center;
}

.reklam_sidebar {
	display: block;
}


#webbsida_innehall {
	float: right;
	width: 75%;
}
.meny_hoger #webbsida_innehall {
	float: left;
}

/*  Sidfotens block */
#footer {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 20px;
	padding-bottom: 10px;
	background-color: #3f2d73;
	color: #fff;
}

.footer_sektion {
	/*float: left;
	width: 33.33334%;*/
	/*flex: 1 1 0px;*/
	margin: 0 0 10px 0;
}

#footer h4 {
	margin-top: 0;
	font-size: 1.6rem;
}

#footer p {
	margin: 0 0 8px 0;
}

#footer a {
	color: #f9e7a4;
	text-decoration: none;
}
#footer a:hover {
	text-decoration: underline;
}

#footerreklam {
	margin: 20px auto;
	padding: 0 20px;
	text-align: center;
}
#footerreklam p {
	max-width: 100%;
	margin: 0 0 5px 0;
	font-size: 0.8rem;
	text-align: center;
}

.reklam_desktop {
	display: block;
}

.reklam_mobil {
	display: none;
}


/* Startsidans CSS */
.start_vanster {
	float: left;
	width: 65%;
}

.start_hoger {
	float: right;
	width: 33%;
	text-align: center;
}

/* Googlekalendern på startsidan */
.start_hoger iframe {
	margin: 0 auto50px auto;
}

/* Facebookwidgeten på startsidan */
.fb-page.fb_iframe_widget {
	margin: 5px auto 0 auto;
}

/* Nyheternas CSS */
.nyhetspuff {
	clear: both;
	max-width: 930px;
	margin: 0 0 20px 0;
	padding: 10px 0;
	border-bottom: 1px solid #ccc;
}

.nyhetspuff a, .nyhetspuff a:link, .nyhetspuff a:hover, .nyhetspuff a:active, .nyhetspuff a:visited {
	color: initial;
}

.nyhetspuff h3 {
	margin: 0;
	font-size: 1.3rem;
}

.nyhetspuff .publiceringsdatum {
	margin: 0;
	font-size: 0.9rem;
}

.nyhetspuff .ingress {
	margin: 5px 0 0 0;
}

.nyhetspuff .nyhetsbild {
	float: right;
	width: 20%;
	max-width: 160px;
	aspect-ratio: 1/1;
	margin-left: 10px;
	border: 1px solid #ccc;
	border-radius: 3px;
}

.nyhetspuff .nyhetsbild img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.nyhetspuff .nyhetsbild img:hover {
	opacity: 0.8;
}

#nyhet_wrapper {
	max-width: 930px;
	margin-bottom: 20px;
}

#nyhetsbild {
	width: 100%;
	max-height: 500px;
	margin-bottom: 10px;
	text-align: center;
}

#nyhetsbild img {
	/*width: 100%;*/
	height: 100%;
	max-height: 500px;
	object-fit: contain;
}

.datum_publicering {
	float: left;
	width: 50px;
	height: 50px;
	margin: 5px 5px 5px 0;
	background: #fff;
	border: 1px solid #ccc;
	border-radius: 3px;
	text-align: center;
	cursor: default;
}

.manadssektion {
	background: #d02b2b;
	color: #fff;
}

.datumsektion {
	padding-top: 1px;
	font-size: 110%;
	font-weight: bold;
}

/* Listor */
ul, ol {
	margin: 15px 0 15px 10px;
	padding: 0 0 0 10px;
}

li {
	margin: 3px 0;
}


/* Clear och float */
.clear {
	clear: both;
}

.clear_left {
	clear: left;
}

.clear_right {
	clear: right;
}

.left {
	float: left;
}

.right {
	float: right;
}

.vanster {
	float: left;
	width: 49.5%;
}

.hoger {
	float: right;
	width: 49.5%;
}


/* Tabeller */
table {
	width: 100%;
	margin: 0 0 20px 0;
	border-collapse: collapse;
}


table tr:nth-child(odd) {
	background: #f2f2f2;
	background: #fcfcfc;
	border-top: 1px solid #b8b8b8;
	border-bottom: 1px solid #b8b8b8;
}

table td {
	padding: 3px;
	vertical-align: top;
	
}


/* Rubriker, text och länkar */
h1, h2, h3, h4, h4, h5, h6 {
	margin: 24px 0 5px 0;
	font-size: 1.2rem;
	max-width: 930px;
}

h1 { 
	margin: 0;
	font-size: 2rem;
}

h2 {
	font-size: 1.75rem;
}

h3 {
	font-size: 1.4rem;
	margin-top: 16px;
}

h4 {
	font-size: 1.25rem;
}

p {
	margin: 6px 0 10px 0;
	max-width: 930px;
}

blockquote {
	font-size: 1.6rem;
	font-weight: bold;
	font-style: italic;
	color: #2c123c;
	margin: 10px 0;
	max-width: 930px;
}

#ingress {
	margin-bottom: 15px;
	font-size: 1.22rem;
	font-weight: 500;
}

a, a:link, a:active, a:hover, a:visited {
	color: #344dae; 
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

.knapp {
	display: inline-block;
	margin: 6px 0;
	padding: 8px 12px;
	background: #fff;
	border: 1px solid #ccc;
	border-radius: 3px;
}
.knapp:hover {
	background: #f6f4f4;
}

.knapp a {
	color: initial;
}


/* Bilder, film och annan media */
img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
	font-style: italic;
}

a img {
	border: none;
}

.youtube {
	position: relative;
	margin: 20px 0;
	padding-bottom: 56.25%;
	padding-top: 0;
	height: 0;
	overflow: hidden;
}
 
.youtube iframe,
.youtube object,
.youtube rembed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

iframe {
	width: 100%;
}


/* CSS för TinyMCE */
#tinymce, .mce-content-body.tinyMCE, .tinyMCE {
	background: #fff!important;
	padding: 10px;
	min-height: 100vh;
}

#tinymce ul, .mce-content-body.tinyMCE ul, .tinyMCE ul {
	margin: 5px 0 5px 15px;
}

#tinymce body, .tinymce body {
	background: #fff;
}

/* Dragspelens CSS */
.mce-accordion {
	max-width: 930px;
	margin: 20px 0;
	border: 1px solid #dadada;
}

.mce-accordion-summary {
	padding: 5px 10px;
	background: #dadada;
	font-size: 1.3rem;
	font-weight: bold;
	cursor: pointer;
} 

.mce-accordion:hover .mce-accordion-summary {
	background: #f2f2f2;
}

.mce-accordion-body {
	padding: 5px;
}


/* Övrig CSS */
.dold, .osynlig {
	display: none;
}

.synlig, .visas {
	display: block!important;
}

.success, .error, .info {
	margin: 5px 0;
	padding: 5px;
}

.success {
	border: 1px solid #6dac09;
	background: #ecffe0;
}

.error {
	border: 1px solid: #d00;
	background: #ffe0e0;
}

.info {
	border: 1px solid #094fac;
	background: #e0f5ff;
}

.gra, .morgra, .gron {
	margin: 5px 0;
	padding: 8px;
	color: #000;
}

.gra {
	background: #ccc;
	color: #000;
}

.morkgra {
	background: #6e6e6e;
	color: #fff;
}

.gron {
	background: #c6eac8;
	color: #000;
}

.rss_lank {
	margin: 10px 0;
}

.rss {
	color: #f26522;
	background: #fff;
	font-size: 2rem;
}


/* CSS för rundade hörn */
.rundade_horn #webbsida_wrapper {
	width: calc(100% - 40px);
	/*margin: 0 20px;*/
}

.huvudmeny_overst.rundade_horn #huvudmeny {
	margin-top: 20px;
	margin-bottom: 0;
	border-radius: 10px 10px 0 0;
	/*border-bottom: 10px solid #fff;*/
}

.rundade_horn #header {
	margin-top: 20px;
	border-radius: 10px 10px 0 0;
	overflow: hidden;
}
.huvudmeny_overst.rundade_horn #header {
	margin-top: 0;
	border-radius: 0 0;
}

.rundade_horn #mobilmeny_knapp {
	top: 30px;
	right: 30px;
}

.rundade_horn #footer {
	border-radius: 0 0 10px 10px;
	margin-bottom: 20px;
}
.rundade_horn #webbsida_wrapper, .rundade_horn #wrapper img, .rundade_horn #wrapper .youtube, .rundade_horn iframe, .rundade_horn .nyhetspuff .nyhetsbild, .rundade_horn #nyhetsbild img{
	border-radius: 10px;
}

.rundade_horn .mce-accordion, .rundade_horn .gra, .rundade_horn .morkgra, .rundade_horn .gron, .rundade_horn .info, .rundade_horn .error, .rundade_horn .success {
	border-radius: 5px;
}

.rundade_horn #sidomeny #huvudrubrik {
	border-radius: 5px 5px 0 0;
}

.rundade_horn #sidomeny li:last-child {
	border-radius: 0 0 5px 5px;
}

/* Om webbplatsen inte finns */
#ingen_webbplats_bakgrund {
	position: fixed;
	width: 100vw;
	height:100vh;
	height:100lvh;
	filter: blur(5px);
	background-image: url("../bilder/ingen_webbplats_bakgrund_support.png");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	z-index: 1;
}

#webbplats_finns_inte_wrapper {
	display: flex;
	align-items: center;
	position: relative;
	width: 100vw;
	height:100vh;
	height:100lvh;
	padding: 20px;
	z-index: 10;
}

#webbplats_finns_inte {
	width: 85%;
	max-width: 600px;
	margin: 0 auto;
	padding: 20px;
	background: #fff;
	text-align: center;
}

/* Responsiv design */
/* --- För skärmar med bredden MAX 1320px --- */
@media screen and (max-width: 1320px) {
	/*#header, #huvudmeny, #wrapper, #footer {
		width: calc(100% - 40px);
		margin-left: 20px;
		margin-right: 20px;
	}*/
}

/* --- För skärmar med bredden MAX 940px --- */
@media screen and (max-width: 940px) {
	/*#header.standard.bildhojd #webbplats_slogan  {
		display: none;
	}*/
}

/* --- För skärmar med bredden MAX 800px --- */
@media screen and (max-width: 800px) {
	#webbplats_titel, #header.lag #webbplats_titel {
		width: calc(100% - 60px);
		max-width: calc(100% - 60px);
		word-break: break-word;
	}
	#header.lag #webbplats_titel {
		max-width: calc(100% - 80px);
	}
	
	#header #webbplats_titel h2 {
		font-size: 1.75rem;
	}
	
	#header #webbplats_titel h4 {
		font-size: 1.1rem;
	}
	
	#header {
		aspect-ratio: auto;
	}
	#header.hog {
		min-height: 160px;
	}
	#header.standard {
		height: 120px;
		min-height: 120px;
	}
	#header.liten {
		min-height: 20px;
	}
	
	#header.liten_bild #webbplats_titel {
		/*max-width: 100%;*/
	}
	
	#headerbild.liten {
		display: none;
	}
	
	#header.hog.helbild.dolj_headertext {
		aspect-ratio: 32 / 7;
		min-height: 0;
	}
	#header.standard.helbild.dolj_headertext {
		aspect-ratio: 8 / 1;
		height: auto;
		min-height: 0;
	}
	
	#header.bildhojd #webbplats_titel {
		position: absolute;
		left: 10px;
		bottom: 10px;
		float: none;
		width: calc(100% - 80px);
		height: calc(100% - 20px);
		z-index: 1000;
		margin: 0;
		/*-webkit-text-stroke: 2px #2b2b2b; /* width and color */
		/*text-shadow: -1px 0 #2b2b2b, 0 1px #2b2b2b, 1px 0 #2b2b2b, 0 -1px #2b2b2b;*/
		/*white-space: pre-line;*/
	}
	#header.bildhojd  #webbplats_titel h2, #header.bildhojd  #webbplats_titel h4 {
		display: inline-block;
		/*padding: 6px 10px;
		line-height: 210%;*/
		margin: 0 0 5px 0;
		padding: 3px 10px 6px 10px;
		line-height: 120%;
		background: rgba(0,0,0,0.4);
		text-shadow: none;
		color: inherit;
	}
	
	/*#header.helbild #webbplats_titel {*/
	#header.helbild #webbplats_titel {
		/*width: 100%;*/
		margin: 0;
		white-space: normal;
	}
	
	/*#header.helbild #webbplats_titel h2, #header.helbild #webbplats_titel h4 {*/
	#header.helbild #webbplats_titel h2, #header.helbild #webbplats_titel h4 {
		display: inline-block;
		padding: 6px 10px 0 10px;
		line-height: inherit;
		background: none!important;
	}
	
	/*#header.helbild #webbplats_titel a {*/
	#header.helbild #webbplats_titel a {
		color: initial;
		
	}
	
	#header.helbild.headertext_svart #webbplats_titel, #header.helbild.headertext_svart #webbplats_titel a {
		/*text-shadow: none;*/
		/*color: inherit;*/
		/*backdrop-filter: blur(8px);*/
	}
	
	/*#header.standard.bildhojd #webbplats_slogan  {
		display: inline;
	}*/
	
	.start_vanster, .start_hoger {
		float: none;
		width: 100%;
	}
	
	#headerbild {
		position: relative;
		float: right;
		/*width: auto;
		max-width: 640px;*/
			width: 100%;
			max-width: 100%;
		/*height: 160px;*/
		text-align: center;
	}
	#header.standard.fullhojd  #headerbild {
		float: none;
		width: 100%;
		/*max-width: 100%;*/
		max-width: none;
		display: block;
		height: inherit;
	}
	
	#mobilmeny_knapp {
		display: block;
	}
	
	#huvudmeny, .huvudmeny_overst #huvudmeny {
		margin: 0;
		padding: 0px;
		background: #f2e1ff;
	}
	
	#huvudmeny ul {
		padding: 10px;
	}
	
	#huvudmeny_lista, #sidebarreklam {
		display: none;
	}
	
	
	#huvudmeny .synlig ul {
		display: block;
	}
	
	#huvudmeny li, #huvudmeny li a {
		display: block;
		margin: 0;
	}
	
	#huvudmeny a:hover, #huvudmeny .aktiv {
		/*background: #fff;*/
	}
	
	#mobilmeny_lista {
		padding: 10px;
	}
	
	.huvudmeny_overst.rundade_horn #header {
		margin-top: 20px;
		border-radius: 10px 10px 0 0;
	}
	
	#sidomeny ul {
		display: none;
	}
	
	#sidomeny, #webbsida_innehall {
		float: none;
		width: auto;
	}
	
	#footer {
		flex-direction: column;
	}
	
	.footer_sektion {
		float: none;
		width: auto;
	}
	
	.vanster, .hoger {
		float: none;
		width: auto;
		margin: 5px 0;
	}
}

/* --- För skärmar med bredden MAX 640px --- */
@media screen and (max-width: 640px) {
	#header.standard #webbplats_titel h4 {
		display: none;
	}
}

/* --- För skärmar med bredden MAX 540px --- */
@media screen and (max-width: 540px) {
	#header.bildhojd #webbplats_titel, #webbplats_titel {
		width: calc(100% - 60px);
		/*height: 120px;*/
		word-break: break-word;
	}
	
	#header.bildhojd #webbplats_titel h2, #webbplats_titel h2 {
		font-size: 1.5rem;
	}

	#header.bildhojd #webbplats_titel h4, #webbplats_titel h4 {
		display: none!important;
		font-size: 1.1rem;
	}
	
	.reklam_desktop {
		display: none;
	}

	.reklam_mobil {
		display: block;
	}
	
	.rss_lank {
		clear: both;
		float: none;
	}
}

/* --- För skärmar med bredden MAX 420px --- */
@media screen and (max-width: 420px) {
	#header.bildhojd #webbplats_titel h2, #webbplats_titel h2 {
		/*padding: 0;*/
		line-height: 150%;
	}
	
	#header.bildhojd #webbplats_titel h4, #webbplats_titel h4 {
		/*display: none;*/
	}
}