/* KM blue: #0063a6 */
/* km-blue: 71,113,144 */
/* menu/home: #224f72 */
/*font-family: 'Heebo', sans-serif;*/
/*font-family: 'Barlow', sans-serif;*/
.yellowbg {
	background-color: #ffff00;
}
/* Parent container */
#vilkaar {
    font-family: system-ui, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Top-level list */
#vilkaar > ol {
 
    list-style: none;
    padding-left: 0;
}

#vilkaar > ol > li {

    margin: 0 0 1.8em 0;
    padding-left: 2.2em;
    position: relative;
}

/* First-level numbering */
#vilkaar > ol > li::before {

    font-weight: 700;
    position: absolute;
    left: 0;
    top: 0;
}

/* Headings inside top-level */
#vilkaar > ol > li > p span:first-child {
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-size: 1.1em;
    color: #000;
}

/* Generic list styling for all nested lists */
#vilkaar ol ol {
 
    list-style: none;
    padding-left: 1.6em;
    margin-top: 0.8em;
}

#vilkaar ol ol > li {
    
    margin-bottom: 1em;
    padding-left: 3em;
    position: relative;
}

/* Nested level numbering: 1.1, 1.2, 1.3 */
#vilkaar ol ol > li::before {
   
    position: absolute;
    left: 0;
    top: 0;
    color: #777;
    font-weight: 600;
}

/* Even deeper levels: lighter, smaller */
#vilkaar ol ol ol > li::before {
    color: #999;
    font-weight: 500;
}

/* Paragraph cleanup */
#vilkaar li p {
    margin: 0;
}

/* Optional: spacing for very long legal paragraphs */
#vilkaar li p + p {
    margin-top: 0.6em;
}

#aspnetForm > chat-bot > a {
	display: none;
}
 .saas-calc.compact .sc-card {padding:16px;max-width:760px;}
  .saas-calc.compact .sc-grid {display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-bottom:12px}
  .saas-calc.compact .sc-results.compact-cols {display:grid;grid-template-columns:1fr 1fr;gap:12px}
  .saas-calc.compact .sc-col {padding:10px;background:#f7f9fc;border:1px solid #d7dfe9;border-radius:8px}
  .saas-calc.compact h4 {margin:0 0 8px;font-size:16px}
  .saas-calc.compact .sc-line {display:flex;justify-content:space-between;padding:6px 0;font-size:14px;border-bottom:1px dashed #e0e6ef}
  .saas-calc.compact .sc-line:last-child{border-bottom:none}
  .saas-calc.compact .sc-total {font-weight:600;color:#0a1d3f}
  .saas-calc.compact .sc-compare.big {margin-top:16px;text-align:center;background:#e9f2ff;border:1px solid #b0c5e8;padding:14px;border-radius:8px}
  .saas-calc.compact .sc-compare.big #sc-winner {font-size:20px;font-weight:bold;margin-bottom:6px}
  .saas-calc.compact .sc-compare.big #sc-diff {font-size:16px;color:#3a4a67}
  .saas-calc.compact .sc-chart-container {margin-top:18px}
html body #indhold .km-fullcard {
	margin-top: 160px;
}
#list {
	padding-left: 25px;
}
#design_top {
	height: 160px;
    opacity: 0;
}
}
.clickcopy {
	cursor: pointer !important;
}
.clickcopy, .clickcopy * {
	color: #4b5563 !important; 
}
/*PRISUDREGNER*/
:root{
  --km-bg:#f7f9fc; --km-card:rgba(255,255,255,0.5); --km-border:#e5eaf1;
  --km-primary:#1e88e5; --km-primary-ink:#0b5fb6;
  --km-ink:#0f172a; --km-muted:#64748b;
}
#prisudregner {
	    background-color: #d4eeff;
}
.km-price-calc{max-width:980px;margin:32px auto;padding:16px;}
.km-header{display:flex;align-items:center;justify-content:space-between;margin-bottom:16px;}
.km-header h2{margin:0;font-size:1.6rem;color:var(--km-ink);}

.km-grid{display:grid;grid-template-columns:repeat(12,1fr);gap:16px;margin-bottom:16px}
.km-card{grid-column:span 12;background:var(--km-card);border:1px solid var(--km-border);border-radius:14px;padding:16px;box-shadow:0 4px 16px rgba(2,6,23,.04)}
.km-card.nobg{grid-column:span 12;background:transparent;border:0px solid transparent;border-radius:0px;padding:0px;box-shadow:none;}
@media (min-width:860px){
  .km-card:nth-child(1){grid-column:span 12} /* Antal medlemmer i fuld bredde */
  .km-card:nth-child(2),
  .km-card:nth-child(3),
  .km-card:nth-child(4){grid-column:span 4}  /* Vagtplan, Digital post/Børneattest, BankConnect */
}

.km-label{display:block;font-weight:600;margin-bottom:10px;color:var(--km-ink)}
#priceslider .km-label {
	margin-bottom: 50px;
}
/* Slider + ticks + dots: wrapper matcher præcis sliderbredden */
.km-range-field{position:relative}

/* We paint the track background on the INPUT itself so we can control the fill via a CSS var */
.km-range-field input[type=range]{
  width:100%;
  appearance:none;
  height:8px;              /* visual track height */
  border-radius:6px;
  background:
    linear-gradient(var(--km-primary), var(--km-primary)) 0 0 / var(--fill, 0%) 100% no-repeat,
    linear-gradient(#fff, #fff); /* unfilled */
  outline:none;
}
.km-link-sm{
  font-size:.9rem;
  color:var(--km-primary-ink);
  text-decoration:none;
}
.km-link-sm:hover{ text-decoration:underline; }
/* Remove background paints from pseudo-tracks so our main background shows through */
.km-range-field input[type=range]::-webkit-slider-runnable-track{
  height:8px; border-radius:6px; background:transparent;
}
.km-range-field input[type=range]::-moz-range-track{
  height:8px; border-radius:6px; background:transparent;
}
.km-range-field input[type=range]::-ms-track{
  height:8px; border-radius:6px; background:transparent;
  border-color:transparent; color:transparent;
}

/* Thumb (større end dots) */
.km-range-field input[type=range]::-webkit-slider-thumb{
  -webkit-appearance:none; width:20px;height:20px;border-radius:50%;
  background:var(--km-primary);border:2px solid #fff;box-shadow:0 1px 4px rgba(2,6,23,.25);margin-top:-6px;
}
.km-range-field input[type=range]::-moz-range-thumb{
  width:20px;height:20px;border-radius:50%;
  background:var(--km-primary);border:2px solid #fff;box-shadow:0 1px 4px rgba(2,6,23,.25);
}
.km-range-field input[type=range]::-ms-thumb{
  width:20px;height:20px;border-radius:50%;
  background:var(--km-primary);border:2px solid #fff;box-shadow:0 1px 4px rgba(2,6,23,.25);
}

/* Labels over slideren (mere skrå på mobil) */
.km-ticks {
    position: absolute;
    left: 10px;
    right: 6px;
    top: -27px;
    pointer-events: none;
}
.km-tick {
    position: absolute;
    width: 65px;
    top: -11px;
    transform: translateX(-9%) rotate(-45deg);
    font-size: .72rem;
    color: var(--km-muted);
    white-space: nowrap;
    font-weight: 700;
}
@media (max-width:560px){

}

/* Dots på selve slideren */
.km-dots{position:absolute;left:10px;right:6px;top:50%;height:0;pointer-events:none}
.km-dot{
  position:absolute;transform:translate(-50%,-50%);
  width:12px;height:12px;border-radius:50%;background:#fff;border:2px solid var(--km-primary-ink);
  box-sizing:border-box;
}
.km-dot.passed{background:var(--km-primary);border-color:var(--km-primary);}


/* Øvrigt UI */
.km-band{margin-top:10px;font-size:.95rem;color:var(--km-primary-ink);font-weight:700}
.km-flex-row{display:flex;align-items:center;justify-content:space-between;     margin-top: 10px;}
.km-checkbox{display:flex;align-items:center;gap:8px;font-weight:600; flex-wrap: wrap;}
.km-checkbox a  {
  flex-basis: 100%;
	font-weight: 400;
}
.km-row{margin-top:8px}
.mt-3{margin-top:12px}
.km-full{width:100%}

/* Invoice (3 kolonner) */
.km-invoice{background:var(--km-card);border:1px solid var(--km-border);border-radius:14px;overflow:hidden}
.km-invoice-head,.km-invoice-line,.km-invoice-foot{
  display:grid;grid-template-columns:1fr 160px 160px;gap:12px;align-items:center}
.km-invoice-head{background:var(--km-bg);border-bottom:1px solid var(--km-border);padding:10px 14px;color:var(--km-muted);font-weight:700}
.km-invoice-body .km-invoice-line{padding:12px 14px;border-bottom:1px dashed var(--km-border)}
.km-invoice-line .desc{font-weight:700;color:var(--km-ink)}
.km-invoice-line .sub{font-size:.85rem;color:var(--km-muted);margin-top:2px}
.t-right{text-align:right}
/* Faktura-fod i samme grid som head/lines: 1fr 160px 160px */
.km-invoice-foot{
  display:grid;
  grid-template-columns:1fr 160px 160px;
  gap:12px;
  align-items:center;
  padding:14px;
  border-top:2px solid var(--km-border);
}

/* Tekster i foden */
.km-total-label{font-size:1.05rem;color:var(--km-ink);font-weight:800}
.km-total-value{font-size:1.45rem;color:var(--km-primary-ink);font-weight:900}
#km_total_ex {font-size:1.25rem;}
.km-total-row{display:flex;align-items:flex-start;justify-content:space-between;border-top:2px solid var(--km-border);padding-top:14px;margin-top:6px}

.km-total-pair{display:flex;gap:16px;flex-wrap:wrap}
.km-total-tag{display:inline-block;min-width:52px;color:var(--km-muted);font-weight:700;margin-right:6px}
/* Toggle i faktura-foden */
.km-foot-toggle{
  margin-top:12px;
  display:flex;
  justify-content:flex-end;
  font-size:.9rem;
  color:var(--km-muted);
}
.km-foot-toggle input[type=checkbox]{margin-right:6px}


.km-foot-note{margin-top:6px;color:var(--km-muted);font-size:.9rem}

/* Inputs */
input[type=number], input[type=text]{
  border:1px solid var(--km-border);border-radius:10px;padding:10px 12px;font-size:1rem;color:var(--km-ink);outline:0
}
input[type=number]:focus, input[type=text]:focus{border-color:var(--km-primary);box-shadow:0 0 0 4px rgba(30,136,229,.12)}
input[type=range]{accent-color:var(--km-primary)}




/* Card */
#godkendt{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 14px;
  box-shadow: 0 1px 2px rgba(0,0,0,.07), 0 4px 10px rgba(0,0,0,.04);
  text-decoration: none;
  transition: box-shadow .2s ease, transform .2s ease;
}

/* Hover: slightly stronger shadow */
#godkendt:hover{
  box-shadow: 0 6px 18px rgba(0,0,0,.12), 0 12px 28px rgba(0,0,0,.08);
}

/* Crown icon */
#godkendt .erhvervsstyrelsen_logo{
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}
#godkendt .erhvervsstyrelsen_logo img{
  width: 22px;
  height: 22px;
  display: block;
  object-fit: contain;
}

/* Text block */
#godkendt .text{
  display: flex;
  flex-direction: column;
  line-height: 1.2;
	text-align: left;
}
#godkendt .text span:first-child{
  font-size: 14px;
  font-weight: 600;
  color: #111827; /* near-black */
}
#godkendt .text span:last-child{
  margin-top: 2px;
  font-size: 12px;
  color: #6b7280; /* soft gray */
  letter-spacing: .1px;
}
#c6 #godkendt {
	position: absolute;
    right: 15px;
    top: 28px;
}
@media (min-width: 770px) and (max-width: 991px) {	
	#c6 #godkendt {
		position: relative;
		top: auto;
		right: auto
	}
	#produkt #kmproducts #c6 ul {
		margin-top: 0;
	}
	#c6 {
		font-size: 0.87em !important;
	}
}
@media (max-width: 769px) {	
#c6 #godkendt {
    position: absolute;
    right: 20px;
    top: 10px;
}
}
@media (max-width: 584px) {	
#c6 #godkendt {
    position: relative;
		top: auto;
		right: auto
}
}
.km_design {
	margin-top: 60px;
}
.forening_website #banner {
	border-right:400px solid transparent; 
	background-image: url(images/websitebanner.png);
		
	background-position: top left;
}
#km_side.left_bg #ctl00_ContentPlaceHolderBody_lblContactFormName {
	display: none;
	
}
@media (min-width: 1075px) and (max-width: 1180px) {
	html body #topmenu .menu {
		margin: 0 3px;
	}
}
@media (min-width: 902px) and (max-width: 1074px) {
	html body #topmenu .menu {
		margin: 0 2px;
	}
	html body #call_cta a {

    padding: 10px 8px;
}
	html body #call_cta {
    margin-left: 25px;
}
}
@media (min-width: 770px) and (max-width: 902px) {
	
	html body #menuBar:not(.fixed) #call_cta {
    position: absolute;
    top: 38px;
    right: 20px;
}
	html body #menuBar.fixed #call_cta {

    margin-left: 15px;

}
	html body #menuBar.fixed #call_cta a {

    font-size: 0.7em;
}
}
#call_cta {
    display: flex;
    height: 100%;
    align-items: center;
    float: left;
    margin-left: 50px;
	    z-index: 10000000;
    position: relative;
	font-size: 0.9em;
}
#call_cta a {
    background-color: red;
    display: inline-block;
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 24px;
    font-weight: 600;
	transition: 0.2s linear all;
	border: 2px solid #fff;
	
}
#call_cta a:hover {
	border: 2px solid red;
	color: red;
	background-color: #fff;
}
/*WORD ANIMATION*/
.word-animation {
      display: inline-block;
      position: relative;
	color: #ebb22c;
	height: 52px;
    }
    .cursor {
    position: absolute;
    bottom: 3px;
    width: 3px;
	margin-left: 3px;
    height: 43px;
    background-color: #fff;
    animation: blink 0.7s infinite;
}
    @keyframes blink {
      50% { opacity: 0; }
    }

#seneste {
    height: 34px;
    line-height: 34px;
    display: inline-block;
    background-color: rgba(249,244, 234, 0.5);
    border-radius: 10px;
    transition: all 0.4s linear;
    font-weight: 600;
    margin: 30px 0;
	overflow: hidden;
}
#seneste > span {
    background-color: #ebb22c;
    display: inline-block;
    padding: 0 10px;
}
#seneste-content {
    display: inline-block;
    padding-right: 10px;
    /* color: #000000; */
}
#seneste-content a {
    color: #000;
    font-weight: 400;
}
#seneste-content i {
    color: #3e6e8e;
}
@media (max-width: 600px) {
	#seneste {
		position: absolute;
		left: 10px;
		right: 10px;
		top: 164px;
		font-size: 0.9em;
		height: auto;
		line-height: 28px;
	}
	#seneste > * {
		display: block !important;
		text-align: center;
	}
}
@media (max-width: 400px) {
	#forside #banner-right {
		display: none !important;
	}
	#forside #banner #bannerimg {
    height: 100vh !important;
    padding-top: 60px !important ;
		margin-top: 0 !important;
   
}
	#forside #banner h1 {
    margin-top: 110px !important;
}
	}
#km-eventoverview, #km-eventenrollment {
    margin-top: 150px;
}
html body #indhold #mlogo {
	display: none;
}
#form104 #header {
	display: none;
}
iframe {
	border: 0px solid transparent;
}
/* ----------------------------------- */
/* ----------- CONTACT BAR ----------- */
/* ----------------------------------- */


.sidebar-contact{
  position:fixed;
  top:50%;
  left:-383px;
  transform:translateY(-50%);
  width:383px;
  height:auto;
  padding:40px;
  background:#fff;
  
  box-sizing:border-box;
  transition:0.5s;
	z-index: 2;
}
.sidebar-contact iframe {
 border: 0px solid transparent;
}
.sidebar-contact.active{
  left:0;
	box-shadow: 0 20px 50px rgba(0,0,0,.5);
}
.toggle_sidebar{
  position:absolute;
  height:150px;
  width:48px;
  text-align:center;
  cursor:pointer;
  background:#f00;
  top:0;
	
  right:0px;
	transition:0.5s;
  line-height:48px;
}
.sidebar-contact.show .toggle_sidebar {
right:-48px;
}
.toggle_sidebar span{
writing-mode: vertical-rl;
text-orientation: mixed;
	color: #fff;
	font-weight: 600;
}
.toggle_sidebar:before{
  content:'\f003';
  font-family:"Font Awesome 6 Pro";
  font-size:18px;
  color:#fff;
}
.toggle_sidebar.active:before{
  content:'\f00d';
}
@media(max-width:768px)
{
  .sidebar-contact{
    width:100%;
    height:100%;
    left:-100%;
	  margin-top: 60px;
	  padding-right: 50px;
	  padding-left: 20px;
  }
  .sidebar-contact .toggle_sidebar{
    top:50%;
    transform:translateY(-50%);
    transition:0.5s;
	  margin-top: -60px;
  }
  .sidebar-contact.active .toggle_sidebar
  {
   
    right:0;
    
  }
  .scroll{
    width:100%;
    height:100%;
    overflow-y:auto;
  }
  .content{
    padding:50px 50px;
  }
}

/* ----------------------------------- */
/* ----------- LANDINGPAGE ----------- */
/* ----------------------------------- */
#km_lp {
	padding-top: 160px;
}
#km_lp h3 {
	color:#284889;
	font-size: 1em;
	margin: 0;
	font-weight: 400;
}
#km_lp h1 {
	font-size: 3em;
	line-height: 1em;
	color: #284889;
	text-transform: none;
}
#km_lp h2 {
	color: #0065f2;
	font-size: 1.2em;
}
#km_lp h4 {
	color: #f9c13b;
	text-align: center;
	font-size: 1.2em;
}
#km_lp #video video {
    width: 100%;
    height: auto;
    border: 2px solid #bdd8ff;
    border-radius: 10px;
}
#km_lp #lp_top h1 {
	margin-top: 25px;
	width: 75%;
}
#km_lp #video h3 {
	text-align: center;
	margin: 5px 0 0 0;
}
#km_lp #pile {
	margin-top: 75px;
}
#km_lp #pile em {
    font-size: 2.5em;
    border: 15px solid #f00;
    border-radius: 50%;
    color: #FFFFFF;
    background-color: #f00;
}
#km_lp #pile em.brown {
	border-color: #c4b594;
	background-color: #c4b594;
}
#km_lp #pile em.blue {
	border-color: #d4eeff;
	background-color: #d4eeff;
}
#km_lp #pile em.yellow {
	border-color: #ffec9e;
	background-color: #ffec9e;
}
#km_lp #pile em.orange {
	border-color: #f3d17f;
	background-color: #f3d17f;
}
#km_lp #pile p {
	margin: 0;
}
#km_lp #pile h3 {
	margin: 15px 0 5px 0;
}

#km_lp #km_lp_box1 img {
    width: 100%;
    height: auto;
}

#km_lp .km-gradient {	
	background: #f5f2ff; /* Old browsers */
	background: -moz-linear-gradient(left,  #f5f2ff 0%, #cee4fd 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left,  #f5f2ff 0%,#cee4fd 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right,  #f5f2ff 0%,#cee4fd 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f5f2ff', endColorstr='#cee4fd',GradientType=1 ); /* IE6-9 */
}
#km_lp .km-gradient2 {
	background: #ffffff; /* Old browsers */
	background: -moz-linear-gradient(top,  #ffffff 0%, #ddedfe 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  #ffffff 0%,#ddedfe 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  #ffffff 0%,#ddedfe 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ddedfe',GradientType=0 ); /* IE6-9 */
}
#km_lp .qtop {
	width: 100%;
	float: left;
	margin-bottom: 15px;
}
#km_lp .qtop > div {
	float: left;
}
#km_lp .qtop > div:first-child {
	margin-right: 15px;
}
#km_lp .qtop span {
	font-size: 0.9em;
	color: #484848;
}
#km_lp_box1 .quote {
	padding-left: 50%;
}
#km_lp_box1 .quote p {
	font-size: 1.2em;
}
#km_lp #quotebox h1 {
	text-align: center;
	width: 100%;
    padding: 0 20%;
}
#km_lp #quotebox h1 + p {
	text-align: center;
	padding: 0 20%;
	margin-bottom: 75px;
}
#km_lp #km_lp_box1 {
		float: left;
		margin-top: 75px;
		margin-bottom: 50px;
	}
#km_lp #km_lp_box2 {
	margin-top: 75px;
}
#km_lp #km_lp_box2 img {
	width: 100%;
	height: auto;
}
#km_lp #km_lp_box2 .km-gradient {
	display: flex;
	align-items: center;
	padding: 0 15% 0 5%;
}
#km_lp #km_lp_box2 .km-gradient h1 {
	font-size: 2em;
	margin-bottom: 25px;
}
#km_lp #km_lp_box2 .km-gradient h3 {
	margin-bottom: 25px;
}
#km_lp #km_lp_box2 .km-gradient div div {
	display: flex
}
#km_lp #km_lp_box2 .km-gradient div div span {
	line-height: 23px;
	margin-left: 20px;
	color: #284889;
}
#km_lp .km_lp_btn {
	font-size: 1.3em;
	font-weight: 300;
	line-height: 46px;
	height: 46px;
	display: inline-block;
	padding: 0 25px;
	border-radius: 7px;
	white-space: nowrap;
	color: #fff;
	background-color: #1a74f3;
}
#km_lp #km_lp_box3 > div > div > div:nth-child(1) img {
	width: 100%;
	height: auto;
}
#km_lp #km_lp_box3 {
	padding-top: 75px;
}
#km_lp #km_lp_box3 h1 {
	font-size: 2em;
	margin-bottom: 25px;
	margin-top: 40px;
}
#km_lp #km_lp_box3 ul {
    font-size: 0.8em;
    color: #284889;
	margin-bottom:35px;
}
#km_lp #km_lp_box3 p {
	font-size: 0.8em;
	margin: 0;
}
#km_lp #km_lp_box3 a {
	margin-top: 10px;
}
#km_lp_box4 {
	padding: 75px 25%;
}
#km_lp_box4 table {
	padding-top: 20px;
}
#km_lp_box4 tr:nth-child(odd) td {
	padding-top: 20px;
	border-top: 1px solid #f2f7fc;
	cursor: pointer;
}
#km_lp_box4 tr:nth-child(odd) td::after {
    font-family: "Font Awesome 6 Pro"; 
	font-weight: 400; 
	content: "\f077";
	color: #0065f2;
	float: right;
    margin-top: -20px;
}
#km_lp_box4 tr:nth-child(odd) td.open::after {  
	content: "\f078";
}
#km_lp_box4 tr:first-child td {
	border-top: 0px solid #f2f7fc;
}
#km_lp_box4 tr:nth-child(even) td {
	padding-bottom: 20px;
}
#km_lp_box4 tr:nth-child(even) {
	display: none;	
}
@media (min-width: 992px) and (max-width: 1279px) {
	
	
	#kmproducts #c6 {
		font-size: 0.9em;
	}
}
@media (min-width: 770px) and (max-width: 1483px) {
	#km_lp #km_lp_box2 .km-gradient {
		padding: 0 8% 0 2%;
	}
}
@media (min-width: 770px) and (max-width: 1280px) {
	#pile .col-sm-3 {
		width: 50% !important;
	}
	#km_lp #pile em.yellow, #km_lp #pile em.orange {
		margin-top: 40px;
	}
}
@media (min-width: 770px) and (max-width: 1111px) {
	#km_lp #km_lp_box2 .km-gradient div div span {
		font-size: 0.9em;
	}
}
@media (min-width: 770px) and (max-width: 1100px) {
	#km_lp_box1 .quote {
		padding-left: 25%;
	}
	#km_lp #km_lp_box2 .km-gradient {
		padding: 0 2% 0 2%;
	}
}
@media (min-width: 770px) and (max-width: 991px) {
	
	html body #getapp a img {
		height: 52px;
	}
	#km_lp_box4 {
		padding: 75px 13%;
	}
	#kmproducts #c6 {
		font-size: 0.9em;
	}
}
@media (min-width: 770px) and (max-width: 915px) {
		#km_lp #km_lp_box2 .km-gradient {
		font-size: 0.9em;
	} 
}
@media (min-width: 770px) and (max-width: 870px) {
	#km_lp_box1 .quote {
		font-size: 0.9em;
	}
}
@media (min-width: 770px) and (max-width: 837px) {
		#km_lp #km_lp_box2 .km-gradient {
		font-size: 0.8em;
	}
}
@media (min-width: 770px) {
	#km_lp #km_lp_box1 {
		display: flex;	
	}
	#pile .col-sm-3:not(:last-child) {
		padding-right: 25px;
	}
	#km_lp #quotebox .col-sm-4:not(:last-child) {
		padding-right: 20px;
	}
	#km_lp #km_lp_box2 {
		display: flex;
	}
		#km_lp #km_lp_box1 > div:nth-child(1) {
		display: flex;
		align-items: center;
	}
}
@media (max-width: 769px) {	
	#km_lp {
		padding-top: 75px;
	}
	#km_lp .container {
		padding: 0 15px !important;
	}
	#km_lp #lp_top .row:not(#pile) {
		display: flex;
		flex-direction: column-reverse;
	}
	#lp_top > div:nth-child(1) > div:nth-child(1) {
		margin-top: 25px;
		text-align: center;
		border-top: 1px solid #284889;
    	padding-top: 25px !important;
	}
	#km_lp #lp_top h1 {
		width: 100%;
	}
	#lp_top > div:nth-child(1) > div:nth-child(1) > iframe {
		max-width: 355px;
	}
	#km_lp #km_lp_box1 img {
		width: 93%;
		float: right;
	}
	#km_lp_box1 .quote {
		padding: 0 15px;
		max-width: 400px;
		margin: 40px auto 0 auto;
	}
	#km_lp #quotebox h1 {
    padding: 0px;
}
	#km_lp #quotebox h1 + p {
		padding: 0;
	}
	#quotebox > div > div:nth-child(2) {
		padding-right: 10px !important;
	}
	#quotebox > div > div:nth-child(3) {
		padding-left: 10px !important;
	}
	#km_lp #km_lp_box2 {
		margin-top: 50px;
	}
	#km_lp #km_lp_box2 .km-gradient {
		padding: 30px 15px;
	}
	#km_lp_box3 .row {
		display: flex;
		flex-direction: column-reverse;
		float: left;
	}
	#km_lp #km_lp_box3 > div > div > div:nth-child(1) img {
		width: auto;
		height: auto;
		max-height: 400px;
		float: right;
	}
	#km_lp_box4 {
		padding: 75px 15px;
	}
}
@media (min-width: 700px) and (max-width: 769px) {
	#km_lp #pile .col-sm-3 {
		width: 50% !important;
	}
	#km_lp #pile em {
		margin-top: 40px;
	}
}
@media (max-width: 700px) {
	#km_lp #pile em {
		margin-top: 40px;
	}
	#km_lp #pile .col-sm-3 {
		text-align: center;
	}
}
@media (max-width: 600px) {
	html body #quotebox .col-xs-6 {
		width: 100%;
		padding: 0 !important;
	}
}
@media (max-width: 480px) {
	#km_lp #km_lp_box2 .km-gradient {
		font-size: 0.9em;
	}
}
@media (max-width: 440px) {
	#km_lp #km_lp_box2 .km-gradient {
		font-size: 0.8em;
	}
}
@media (max-width: 414px) {
	#getapp a img {
		height: 42px;
	}
}
@media (max-width: 402px) {
	#km_lp #km_lp_box2 .km-gradient div div span {
		font-size: 0.8em;
		margin-left: 10px;
	}
}
@media (max-width: 352px) {
		#km_lp .km_lp_btn {
		font-size: 1em;
		padding: 0 21px;
	}
}
/* ----------------------------------- */
/* ------------ TEMPLATES ------------ */
/* ----------------------------------- */
#km_side.left_bg #banner {
	background-repeat: no-repeat;
	background-position: left center;
	background-size: contain;
}
@media (max-width: 769px) {
#km_side.left_bg #banner {
	background-repeat: no-repeat;
	background-position: left center;
	background-size: cover;
}	
}
#km_side .sidebar, #standardside .sidebar {
	border-radius: 15px;
    background-color: #F9F1D2;
    box-shadow: 0px 5px 10px 0px rgb(150 150 150 / 40%);
    overflow: hidden;
    max-width: 400px;
    margin: 0 auto;
    display: block;
    position: relative;
	margin-bottom:50px;
}
#km_side .sidebar_header, #standardside .sidebar_header {
    font-family: 'Barlow', sans-serif;
    text-align: center;
    font-size: 2em;
    text-transform: uppercase;
    line-height: 60px;
    font-weight: 800;
	background-color: #D4EEFF;
}
#km_side .sidebar .sidebar_list, #standardside .sidebar .sidebar_list {
	padding: 20px;
}
#km_side .sidebar .sidebar_list h2, #standardside .sidebar .sidebar_list h2 {
	font-size: 1.1em;
	margin-bottom: 10px;
}
#km_side .sidebar .sidebar_list h2 em, #standardside .sidebar .sidebar_list h2 em  {
    color: #C4B594;
    margin-right: 15px;
	position: absolute;
    margin-top: 4px;
}
#km_side .sidebar .sidebar_list h2 span, #standardside .sidebar .sidebar_list h2 span  {
	padding-left: 30px;
	display: inline-block;
}
#km_side .sidebar .sidebar_list .knap, #standardside .sidebar .sidebar_list .knap  {
    min-width: 200px;
    text-align: center;
    float: right;
    margin: 10px 0 20px 0;
}
#km_side .sidebar .sidebar_content, #standardside .sidebar .sidebar_content  {
	padding: 20px;
}
#km_page:before {
	content:"";
	background-color: #fff;
	top: 0;
	left: 0;
	z-index: 1001;
	height: 100vh;
	width: 100vw;
	position: fixed;
}

#km_side #banner {
	background-color: #3E6E8E;
    color: #fff;
	background-size: cover;
	background-position: center center;
}
#km_side #banner h2 {
	color: #fff;
}
#km_side #banner #banner-right {
    display: flex;
    height: 100%;
	align-items: center;
    justify-content: center;
}
#km_side .col-xs-12.kmcenter {
	text-align: center;
}
#km_side .col-xs-12.kmcenter h1 {
	font-size: 2.5em;
}
#km_side .col-xs-12.kmcenter .knap {
	float: none;
}
#km_side .blos {
    background-color: #d4eeff;
    padding-top: 50px;
    padding-bottom: 25px;
    margin-bottom: 50px;
	margin-top: 50px;
}
#km_side .blos .col-sm-6:nth-child(odd) {
	padding-right: 10px;
}
#km_side .blos .col-sm-6:nth-child(even) {
	padding-left: 10px;
}
#km_side #banner-right > div {
	    max-width: 90%;
	position: relative;
}
#km_side #banner-right > div img {
	    max-width: 100%;
}
@media (max-width: 1279px) {
	#km_side .rcbox {
		border-bottom-right-radius: 100px;
		border-top-left-radius: 100px;
	}
}
@media (min-width: 992px) {
	#km_side .limg {
		width: 110%;
		margin-left: -15%;
		height: auto;
	}
	#km_side .rimg {
		width: 110%;
		margin-left: 15%;
		height: auto;
	}
}
@media (max-width: 991px) {
	#km_side div.col-md-5.col-sm-12.col-xs-12 {
    text-align: center;
}
	#km_side .limg, #km_side .rimg {
		margin: 25px auto;
		max-width: 80%;
	}
}
@media (min-width: 770px) {
	#km_side .tekst2 .col-sm-6:first-child {
		padding-right:15px;
	}
	#km_side .tekst2 .col-sm-6:last-child {
		padding-left:15px;
	}
	#km_side #banner .col-sm-8 {
		display: flex;
		height: 100%;
		align-items: center;
	}	
}
@media (max-width: 769px) {	
	#km_side .rcbox {
		border-bottom-right-radius: 50px;
		border-top-left-radius: 50px;
		padding-top: 30px;
	}
	#km_side .container {
		padding: 0px 10px !important;
	}
	#km_side #banner > div.container > div > div.col-sm-8.col-xs-12 > div {
		padding: 0px 10px;
	}
	#km_side #banner-right {
		display: none !important;
	}
}
/* ----------------------------------- */
/* ---------- CUSTOM STYLES ---------- */
/* ----------------------------------- */

@media (min-width: 770px) {
	#omkm #page > div.rcbox > div > div > div.col-sm-8.col-xs-12 {
		padding-right: 40px;	
	}
	.col-pad-right {
		padding-right: 10px !important;
	}
	.col-pad-left {
		padding-left: 10px !important;
	}
}
#nyhedsbreveliste a:after {
	content: "";
	display: table;
	clear: both;
}
#nyhedsbreveliste a {
    color: #707070;
    font-weight: 600;
	text-decoration: underline;
}
#cookie-bar.fixed {
    height: 100%;
	display: flex;
    align-items: center;
    justify-content: center;
}

#cookiewrap {
    background-color: #fff;
    color: #000;
    padding: 30px;
    border-radius: 10px;
	    margin: 0 10px;
}
#cookiewrap > span {
	display: block;
}
#cookie-bar a {    
    padding: 5px 6px !important;
    width: 45%;
}
#km-visbestyr {
    margin-top: 150px !important;
}
.knap {
    color: #000;
    padding: 3px 25px;
    border-radius: 8px 8px 0 8px;
    border: 1px solid #000;
    background-color: #FFEC9E;
    transition: 0.2s all linear;
    margin-top: 60px;
    float: left;
    font-size: 1.3em;
}
.knap:hover {
	    background-color: rgba(235,178,44,0.5);
}
.field-da + .butlbl:after {
    width: 540px !important;

}
a[href*="tel:"] {
	color: #303233;
} 
a[href*="tel:"]:hover {
	text-decoration: underline !important ;
} 
#newsarchiveoverview {
    margin-top: 160px;
}
#standardside .col-sm-6 img {
	max-width: 95%;
	height: auto;
    margin-top: 30px;
}
#omkm #contactcontainer {
    margin-bottom: 50px;
}
#contactcontainer.container {
	margin-left: auto !important;
	margin-right: auto !important;
}
h2 a {
	color: #303233;
}
h2 a:hover {
	text-decoration: underline !important;
}
/*#km-profilemaintenance {
	display: none;
}*/
#ctl00_panelAnonymousTemplate {
		display: none;
	}
#showlogin {
    position: absolute;
    bottom: -15px;
    right: 0;
    color: rgb(51 93 124 / 1);
}
#thankyou {
    padding-top: 179px;
    text-align: center;
}
ol { counter-reset: item; padding-left: 10px; }
ol li { display: block; margin-top: 10px; }
ol li:before { content: counters(item, ".") " "; counter-increment: item }
#logo {
	float: left;
	margin-top: 21px;
	transition: all 0.3s linear;
	height: 107px;
}
#logo img {
	height: 100%;
	width: auto;
}
#banner {
	position: relative;
	height: 430px;
	width: 100%;
	color: #303233;
	border-bottom-right-radius: 200px;
	margin-top: 150px;
	margin-bottom: 40px;
	overflow: hidden;
}
#kmtypeselect a {
	font-size: 1.5em;
    height: 38px;
    line-height: 38px;
    text-transform: uppercase;
    font-weight: 900;
    text-align: center;
    display: block;
    color: #303233;
	transition: all 0.2s linear;
}

#kmtypeselect {
	position: relative;
	z-index: 3;
}
#kmtypeselect a.privat {
	background-color:#D4EEFF;
}
#kmtypeselect a.klubforening {
	background-color:#F9F1D2;
}
#kmtypeselect a.forbund {
	background-color:#C4B594;
}
#kmtypeselect a.ovrige {
	background-color:#F9F4EA;
}
#kmtypeselect a.privat:hover {
	background-color:#A1BBCC;
}
#kmtypeselect a.klubforening:hover {
	background-color:#C6BE9F;
}
#kmtypeselect a.forbund:hover {
	background-color:#918261;
}
#kmtypeselect a.ovrige:hover {
	background-color:#C6C1B7;
}
#banner h1 {
    font-family: 'Barlow', sans-serif;
    font-weight: 800;
    font-size: 3em;
    line-height: 1.3em;
}
#banner .container, #banner .row {
	position: relative;
	height: 100%;
}
.rcbox {    
    border-bottom-right-radius: 200px;
    border-top-left-radius: 200px;
    padding-top: 50px;
	overflow: hidden;
}
.quotename {
	font-size: 0.9em;
	padding-top: 7px;
	font-style: italic;
}
#page .reviews h1, #page .reviews .col-xs-12 {
	position: relative;
	z-index: 8;
}
#kmapp > div > div > div.col-sm-8.col-xs-12 > #getapp {
	margin-top: 20px;
}
#getapp a {
	display: inline-block;
	margin-right: 10px;
}
#getapp a img {
	height: 55px;
	width: auto;
}
/* ----------------------------------- */
/* ------------- FORSIDE ------------- */
/* ----------------------------------- */
#forside #banner {
	background-color: #ebb22c;	
	height: 450px;	
}
#forside #banner #bannerimg {
	position: absolute;
	height: 100%;
	width: 100%;
	border-right:400px solid transparent; 
	background-image: url(images/frontbanner.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top center;
}
#forside #banner h1 {
	color: #fff;
    font-family: 'Barlow', sans-serif;
    font-weight: 800;
    font-size: 2.5em;
    line-height: 1.3em;
    margin-top: 150px;
}
@media (min-width: 978px) and (max-width: 1111px) {
	#forside #banner h1 {	
		font-size: 2em;
		
	}
	.word-animation {  
		height: 42px;
	}
	.cursor {
		bottom: 6px;
		height: 30px;
	}
}
@media (min-width: 770px) and (max-width: 977px) {
	#forside #banner h1 {	
		font-size: 1.5em;
		
	}	
	.cursor {
    position: absolute;
    bottom: 13px;
    width: 2px;    
    height: 25px;   
}
}
@media (max-width: 769px) {
	.word-animation {
		height: 34px;
	}
	.cursor {
    bottom: 20px; 
		height: 25px;
}
}
#forside #banner #banner-right {
        position: absolute;
    right: 0;
    width: 400px;
    top: 0;
    height: 100%;
    padding: 0px 20px;
    background-color: #ebb22c;
    z-index: 2;
    display: flex;
    align-items: center;	
}
#forside #banner #banner-right h2 {
	font-family: 'Heebo', sans-serif;
   text-transform: uppercase;
	font-weight: 800;
	font-size: 1.5em;
	line-height: 1.4em;
}
#forside #banner #banner-right h2 em {
	color: #3e6e8e;
	font-size: 0.75em;
	width: 35px;
}
#forside #banner #banner-right p {
	font-weight: 600;
	font-size: 1.3em;
	padding-right: 45px;
	padding-left: 35px;
	line-height: 1.5em;
}
#forside #fboxwrap {
	margin-top: 60px;
}
#forside .fbox {
	position: relative;
	height:260px;
	border-radius: 40px;
	padding: 30px 40px !important;
	margin-bottom:25px;
}
#forside .fbox h1 {
	line-height: 1em;
}
#forside .fbox h2 {
	line-height: 1.5em;
	margin-top: 10px;
}
#forside .fbox a {
	height:40px;
	line-height: 40px;
	display: inline-block;
	padding: 0 40px;
	background-color: rgba(255,255,255,1);
	border:2px solid #3E6E8E;
	border-radius: 10px 10px 0 10px;
	color: #303233 !important;
    position: absolute;
    right: 40px;
    bottom: 20px;
	transition: all 0.4s linear;
	font-weight: 600;
}
#forside .fbox a:hover {
	border-radius: 0 0 10px 0;
	text-decoration: none;
	background-color: rgba(255,255,255,0.5);
}
#forside #fbox1 {
	background-color: #F9F1D2;
	border-bottom-right-radius: 0;
	margin-right: 12px;	 
}
#forside #fbox2 {
	background-color: #D4EEFF;
	border-bottom-left-radius: 0;
	margin-left: 12px;
}
#forside #fbox3 {
	background-color: #C4B594;
	border-top-right-radius: 0;
	margin-right: 12px;
	margin-bottom: 50px;
}
#forside #fbox4 {
	background-color: #F9F4EA;
	border-top-left-radius: 0;
	margin-left: 12px;
	margin-bottom: 50px;
}
#forside #fscreen {
	margin-top: 40px;
}
#forside #fscreen .fscreenlink {
	height:34px;
	line-height: 34px;
	display: inline-block;
	width: 90%;
	text-transform: uppercase;
	background-color: #F9F4EA;
	border:2px solid #3E6E8E;
	color:#3E6E8E;
	border-radius: 10px;	   
	transition: all 0.4s linear;
	font-weight: 600;
	margin: 30px 0;
	cursor: pointer;
}
#forside #fscreen .fscreenlink:hover, #forside #fscreen .fscreenlink:hover span:first-child, #forside #fscreen .fscreenlink:hover span:first-child:after{	
	background-color: #D4EEFF;
	
}
#forside #fscreen .fscreenlink.active, #forside #fscreen .fscreenlink.active span:first-child, #forside #fscreen .fscreenlink.active span:first-child:after{
	background-color: #3E6E8E;
	color:#F9F4EA;
}
#forside #fscreen .fscreenlink em {
	font-size: 2.5em;
	line-height: 74px;	
	z-index: 3;
	letter-spacing: -3px;
	position: relative;
}
#forside #fscreen .fscreenlink span:last-child {
	
}
#forside #fscreen .fscreenlink span:first-child {
	width: 74px;
	height: 74px;
	border-radius: 50%;
	text-align: center;
	background-color: #F9F4EA;
	border:2px solid #3E6E8E;
	display: inline-block;
	margin: -20px 10px 0 20px;
	float: left;
	transition: all 0.4s linear;
	position: relative;
}
#forside #fscreen .fscreenlink span:first-child:after {
	content: "";
	width: 90px;
	height: 30px;
	position: absolute;
	left: -10px;
	top: 18px;
	background-color: #F9F4EA;
	transition: all 0.4s linear;
}
#forside .fscreencontent {
	float: left;
	display: none;
	border:3px solid #3E6E8E;
	padding: 30px;
	position: absolute;
	background-color: #fff;
	width: 100%;
	height: 500px;
}
#forside #fscreen-left {
	z-index: 2;
}
#forside #fscreenc1 {
	display: block;
}
#forside .fscreencontent h1 {
	line-height: 1em;
	margin-bottom: 30px;
}
#forside .fscreencontent-right > div {
	font-weight: 600;
	margin-bottom: 20px;
}
#forside .fscreencontent-right > div.indent {
	font-weight: 400;
	margin-top: -20px;
}
#forside .fscreencontent-right em {
    color: #3E6E8E;
    font-size: 1.2em;
    font-weight: 600;
    margin-right: 20px;
}
#forside #fscreen-right {
	margin-top: 305px;
	height: 500px;
	background-color: #fff;
}
#forside #fscreen-img {
    position: absolute;
    width: 900px;
    right: 35px;
    margin-top: -50px;
    height: 627px;
    background-image: url(images/laptop-klubmodul.png);
    background-repeat: no-repeat;
	background-size: contain;
}
#forside #fscreen-img > div {
    position: absolute;
    right: 142px;
    top: 81px;
    height: 394px;
    width: 605px;
	background-size: contain;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s linear;
}
#forside #fscreen-img .active {
   display: block;
	opacity: 1;
	visibility: visible;
}
#forside #fscreen-img #img1 {
	background-image: url(images/fb1.jpg);
}
#forside #fscreen-img #img2 {
	background-image: url(images/fb2.jpg);
}
#forside #fscreen-img #img3 {
	background-image: url(images/fb3.jpg);
}
#forside #fscreen-img #img4 {
	background-image: url(images/fb4.jpg);
}
#forside #fscreen-img #img5 {
	background-image: url(images/fb5.jpg);
}
#forside #fscreen-img #img6 {
	background-image: url(images/fb6.jpg);
}
#forside #fscreen-img #img7 {
	background-image: url(images/fb7.jpg);
}
#forside #fscreen-img #img8 {
	background-image: url(images/fb8.jpg);
}
#forside #quotebox {
	background-color: #3E6E8E;
	border-bottom-right-radius: 200px;
	border-top-left-radius: 200px;
	padding-top: 40px;
	margin-top: 60px;
}
#forside .qtext > div {
	position: absolute;
	bottom: 40px;
	padding: 0 30px;
}
#forside .qtext > div h2 {
	color: #fff;
}
#forside .qtext > div p {
	color: #fff;
	font-size: 1.6em;
	font-weight: 600;
	margin: 0;
}
#forside .qtext > div .qname {
	font-size: 1.3em;
	font-weight: 400;
	margin-top: 5px;
}
#forside #quotebox h1 {
	text-align: center;
	display: block;
	background-color: #fff;
}
#forside #quotebox .col-lg-4 {
	background-size: cover;
	background-position: center center;
}
#forside #quotebox .qtext {
	background-color: rgba(62,110,142,0.85);
	height: 100%;
	width: 100%;
	text-align: center;
	opacity: 0;
	transition: all 0.2s linear;
}
#forside #quotebox .qtext:hover {
	opacity: 1;
}
#forside #quote1 {
	background-image: url(images/medlem01.jpg);
}
#forside #quote2 {
	background-image: url(images/medlem02.jpg);
}
#forside #quote3 {
	background-image: url(images/medlem03.jpg);
}
#forside #quote4 {
	background-image: url(images/medlem04.jpg);
}
#forside #quote5 {
	background-image: url(images/medlem05.jpg);
}
#forside #quote6 {
	background-image: url(images/medlem06.jpg);
}
#forside #btxt {
	padding: 0 100px;
	text-align: center;
}
#forside #fseperator {
	background-color: #3E6E8E;
    width: 75%;
    height: 15px;
    margin: 50px auto; 
}
#forside h1.big {
	font-size: 2.5em;
}
#forside #frontapp {
	width: 100%;
	height: auto;
	margin: 50px 0;
}
#forside #frontnumbers, #frontnumbers {
	border-top-left-radius: 200px;
	background-image: url(images/Footer-arms-blue.jpg);
	height: 290px;
    color: #fff;
    padding: 85px 0 0 180px;
}
#forside .frontnd, .frontnd {
	font-size: 2.2em;
	padding-left: 18px;
	font-weight: 600;
	text-transform: uppercase;
	height: 1.2em;
	color: #ffec9e;
}
#forside .frontna, .frontna {
	font-size: 2.4em;
	padding-left: 10px;
	font-weight: 600;
	height:1em;
	margin-top: 10px;
	line-height: 1em;
	border-left: 8px solid #fff;
}
#forside .frontnt, .frontnt {
	font-size: 2.2em;
	text-transform: uppercase;
	padding-left: 10px;
	padding-bottom: 30px;
	border-left: 8px solid #fff;
}
/*--------------------------*/
/*         Tilvalg          */
/*--------------------------*/
#standardside.vidimg #page img {
	width: 100%;
	height: auto;
}
#standardside.vidimg .img1 {
	padding-right: 14px;
	margin-bottom: 21px;
}
#standardside.vidimg .img2 {
	padding-right: 14px;
}
#standardside.vidimg .img3 {
	padding: 0 7px;
}
#standardside.vidimg .img4 {
	padding-left: 14px;
}
#standardside.vidimg .img5 {
	padding-right: 7px;
	padding-top: 21px;
}
#standardside.vidimg #banner {
	height: 525px;
	overflow: visible;
	margin-bottom: 119px;
}
#standardside.vidimg #banner-right img {
    position: absolute;
    top: 55px;
    right: 55px;
    width: 100px;
	z-index: 2;
}
#banner > div > div > img {
	margin-top: 10px;
	position: absolute;
    z-index: 1;
	width: 100%;
}
#standardside.vidimg #banner h1 {
	position: relative;
	z-index: 2;
    font-size: 4.5em;
    width: 80%;
    line-height: 1em;
    margin-left: 50px;
    padding-top: 190px;
    text-shadow: 2px 2px 5px #000;
	margin-bottom: 20px;
}

#standardside.vidimg #banner p {
	    position: relative;
    z-index: 2;
    margin: 0;
    margin-left: 50px;
    padding: 0;
    font-size: 1.5em;
    font-weight: 700;
    line-height: 1em;
    text-shadow: 1px 1px 3px #000;
}
#page > div:nth-child(2) > div > div.col-sm-8.col-xs-12 > * {
	padding-left: 7px;
	font-weight: 700
}
#page > div:nth-child(2) > div > div.col-sm-8.col-xs-12 > h1 {
	line-height: 1em;
	margin-top: 30px;
}
#page > div:nth-child(4) > div > div.col-sm-4.col-xs-12 > * {
	padding-left: 7px;
	font-weight: 700;
}
#page > div:nth-child(4) > div > div.col-sm-4.col-xs-12 > h1 {
	line-height: 1em;
	margin-top: 30px;
}
#standardside.vidimg .rcbox {
	background-color: #F9F4EA;
	padding-bottom: 50px;
}
#page > div:nth-child(5) {
	margin-top: 30px;
}
#page > div:nth-child(5) > div > div > img {
	margin-bottom: -40px;
}
#standardside.vidimg .bluebox {
	background-color: #3E6E8E;
	color: #000;
	padding: 20px;
}
#standardside.vidimg .whitebox {
	background-color: #fff;
	color: #000;
	padding: 20px;
}
#standardside.vidimg .rcbox .number {
	color: #3E6E8E;
	width: 75px;
	height: 75px;
	line-height: 75px;
	text-align: center;
	font-size: 3.5em;
	font-weight: 700;
	background-color: #fff;
	border: 3px solid #3E6E8E;
	border-radius: 50%;
	float: left;
	margin-right: 25px;
}
#standardside.vidimg .rcbox .price {
    font-size: 3.5em;
    font-weight: 700;
    float: right;
    padding-right: 20px;
}
#standardside.vidimg .rcbox .bluebox h1, #standardside.vidimg .rcbox .bluebox .price {
	color: #fff
}
#standardside.vidimg .rcbox h1 {
	line-height: 75px;
}
#standardside.vidimg .rcbox .bluebox h2 {
	color: #fff;
}
#standardside.vidimg .rcbox h2 {
	height: 250px;
	margin-top: 15px;
}
#standardside.vidimg .rcbox .number img {
    width: 30px !important;
    position: absolute;
    top: -13px;
    margin-left: -5px;
}
@media (min-width: 992px) and (max-width: 1280px) {
	#standardside.vidimg #banner {
		height: 460px;
	}
}

@media (min-width: 770px) and (max-width: 991px) {
	#standardside.vidimg #banner {
		height: 355px;
	}
	#standardside.vidimg #banner h1 {
		padding-top: 55px;
	}
	#standardside.vidimg .rcbox h2 {
		height: 320px;
	}
	#standardside.vidimg #vid {
		height: 420px;
	}
}
@media (max-width: 769px) {
	#standardside.vidimg #banner h1 {
		padding-top: 20px;
		font-size: 2em;
	}
	#banner > div > div > img {
		margin-top: 195px;
	}
	#standardside.vidimg .img5 {
		margin-top: 21px;
	}
	#standardside.vidimg #vid {
		height: 420px;
	}
}
@media (max-width: 600px) {
	#standardside.vidimg #vid {
		height: 332px;
	}
}
@media (max-width: 460px) {
	#standardside.vidimg #vid {
		height: 257px;
	}
	#standardside.vidimg .rcbox {
		padding-left: 0;
		padding-right: 0;
	}
	#standardside.vidimg .rcbox h2 {
		height: auto;
    	margin-bottom: 50px;
	}
	#standardside.vidimg .rcbox h1 {
	    font-size: 1.6em;
	}
	#standardside.vidimg .rcbox .number {
		margin-right: 15px;
	}
	
}
@media (max-width: 340px) {
	#standardside.vidimg #vid {
		height: 189px;
	}
	#standardside.vidimg .rcbox .number {
		width: 50px;
		height: 50px;
		line-height: 50px;
		font-size: 2.5em;
		font-weight: 700;
	}
	#standardside.vidimg .rcbox h1 {
		line-height: 50px;
	}
}
/*--------------------------*/
/*     KLUB OG FORENING     */
/*--------------------------*/
#banner.kmtype {
	background-color: #F9F1D2;		
}
#banner.kmtype #banner-right {
    height: 100%;
    padding: 0px 60px;
    background-color: #D4EEFF;
    z-index: 2;
    display: flex;
    align-items: center;
	margin-top: -19px;
}
#banner.kmtype.kogf #banner-right {
    padding: 0 20px;
}
#banner.kmtype #banner-right h2 {
	font-family: 'Heebo', sans-serif;
    text-transform: uppercase;
	font-weight: 800;
	font-size: 2em;
	line-height: 1.4em;
	text-align: center;
}
#banner.kmtype #bannerimg {
	background-image: url(images/kf/swimmer.png);
    height: 380px;
    background-position: left center;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    width: 100%;
    bottom: 0;
}
#banner.kmtype > div.container > div > div.col-sm-8.col-xs-12 {
    display: flex;
    align-items: center;
    height: 100%;
}
#banner.kmtype h1 {
    line-height: 2em;
}
#banner.kmtype > div.container > div > div.col-sm-8.col-xs-12 > div {
	margin-top: -61px;
	padding-right: 100px;
}
#fordelboxwrap {
	background-image: url(images/kf/darkcircle.jpg);
    float: left;
    background-repeat: no-repeat;
    background-position: center top;
    padding-top: 100px;
	padding-bottom: 40px;
}
#page.kmtype .fordelbox {
	background-color: rgba(255,236,158,0.5);
	border: 2px solid #FFEC9E;
	border-radius: 5px;
	padding: 0 15px;
	text-align: center;
	height: 110px;
	margin-bottom: 30px;
}
#page.kmtype .fordelbox h1 {
	font-weight: 900;
	line-height: 1.4em;
}
#page.kmtype .fordelbox p {
	font-size: 1em;
	margin: 0;
	font-weight: 600;
}
#page.kmtype #fordelboxcentersm > div {
    text-align: center;
    margin-top: 115px;
}
#page.kmtype #fordelboxcentersm > div h1.big {
    font-size: 9em;
    line-height: 1em;
}
#page.kmtype #fordelboxcentersm > div h1 {
    line-height: 1.2em;
	margin-bottom: 15px;
}

#klubforening #kffeedback {
	background-color: #D4EEFF;
}
#page.kmtype #rcboxicons em {
	width: 13.9%;
	text-align: center;
	color: #FC7600;
	opacity: 0.56;
	font-size: 5em;
}
#page.kmtype #rcboxicons {
	padding-bottom: 40px;
	padding-top: 75px;
}
#klubforening #vidcon {
	text-align: center;
	padding:  75px 0 !important;
	
}
#klubforening #vidcon p {
	margin-bottom: 45px;
}
#page .reviews {
	text-align: center;
	padding-bottom: 100px;
	position: relative;
}
#page .reviews:before {
	content:"";
	background-repeat: no-repeat;
	background-position: left bottom;
	position: absolute;
	height: 100%;
	width: 100%;
	pointer-events: none;
	left: 0;
	top: 0;
	background-size: contain;
}
#page .reviews:after {
	content:"";
	background-repeat: no-repeat;
	background-position: right top;
	position: absolute;
	height: 100%;
	width: 100%;
	pointer-events: none;
	right: 0;
	top: 0;
}
#klubforening .reviews:before {
	background-image: url(images/kf/bike.jpg);
}
#klubforening .reviews:after {
	background-image: url(images/kf/tennis.jpg);
}
#page .reviewstitle {
    font-size: 2em;
}
#page .fa-star {
	margin: 0 4px 10px 4px;
	color: #FC7600;
}
#page .reviews p {
	margin: 0;
}
#page .reviews .col-xs-12 {
	padding: 0 20px;
}
#kmsalg {
	background-color: #3E6E8E;
	padding-top: 0;
	height: 100%;
}
#kmsalg #kmmap {
    background-image: url(images/kf/danmark.png);
    background-size: contain;
    background-repeat: no-repeat;
    height: 314px;
    padding-top: 90px;
    text-indent: 95px;
}
#kmsalg #kmmap a {
	color: #303233;
}
#kmsalg #kmmap h1 {
	text-transform: none;
	line-height: 1.3em;
} #kmsalg #kmmap > h1 {
	font-weight: 400;
}
#kmsalg #kmmap p {
	font-size: 1.3em;
	font-style: italic;
}
#kmsalg > div > div > div:nth-child(1) h1 {
    text-transform: none;
    color: #fff;
    line-height: 1.3em;
    margin-bottom: 40px;
    padding-right: 130px;
}
#kmsalg > div > div > div:nth-child(1) {
    padding-top: 70px;
}
#kmsalg h1 span, #kmsalg h1 em {
	text-indent: 0;
}
#kmsalg #kmsalg-phonebook {
    font-size: 0.7em;
    /* margin-left: 10px; */
    border: 1px solid #303233;
    border-radius: 10px;
    display: inline-block;
    padding: 0 10px;
    font-weight: 600;
    cursor: pointer;
	transition: 0.2s all linear;
}
#kmsalg #kmsalg-phonebook:hover {
	background-color: rgba(255,255,255,0.5);
}
#kmmapform {
	display: none;
}
#kmmapform > div {
    float: right;
    padding-bottom: 30px;
    background-color: #ceedff;
    width: 545px;
    padding: 0 20px 30px 20px;
    margin-right: 2px;
}
#kmmapform h2 {
	display: none;
}
#kmapp {
	background-image: url(images/kf/appbg.jpg);
	background-size:cover;
}
#kmappimg {
	margin: 40px 0;
}
#kmapp > div > div > div.col-sm-8.col-xs-12 > div {
	margin-top: 140px;
}
#kmapp > div > div > div.col-sm-8.col-xs-12 > div h1 {
	font-size: 64px;
	line-height: 1.7em;
}
#kmapp > div > div > div.col-sm-8.col-xs-12 > div p {
	font-size: 2em;
	font-weight: 600;
	margin: 0;
}


/*--------------------------*/
/*     PRIVAT FORRETNING    */
/*--------------------------*/
#privat #pffeedback {
    background-color: #F9F1D2;
}
#privat #page.kmtype  .fordelbox {
	background-color: rgba(212,238,255,0.5);
	border-color: rgba(62,110,142,0.5);
	margin-bottom: 68px;
}
#privat #fordelboxleft > div:nth-child(2), #privat #fordelboxright > div:nth-child(2) {
	height: 135px;
}
#privat #fordelboxwrap {
	background-image: url(images/pr/darkcircle.jpg);
}
#privat #banner.kmtype {
	background-color: #D4EEFF;
}
#privat #banner.kmtype #banner-right {
	background-color: #3E6E8E;
}
#privat #banner.kmtype #banner-right h2 {
	color: #fff;
}
#privat #banner.kmtype #bannerimg {
    background-image: url(images/pr/dans.png);
}
#privat .reviews:before {
	background-image: url(images/pr/pigedanser.jpg);
}
#privat #page .reviews:after {
	background-image: url(images/pr/horse.jpg);
	background-position: bottom right;
}
#privat #pfdsf {
	padding-top: 100px;
	margin-top: 50px;
}
#privat #pfdsf:before {
	background-size: auto;
	background-position: top left;
}
#page.kmtype #pfdsftitel.reviewstitle {
    font-size: 1.4em;
	margin-bottom: 50px;
}
/*--------------------------*/
/*          FORBUND         */
/*--------------------------*/
#forbund #banner.kmtype {
	background-color: #C4B594;
}
#forbund #banner.kmtype #banner-right {
	background-color: #F9F1D2;
}
#forbund #banner.kmtype #bannerimg {
    background-image: url(images/fo/forbund.png);
}
#forbund .footnote {
	font-size: 0.8em;
	font-style: italic;
	padding-left: 13px;
	border-left: 3px solid #C4B594;
	width: 85%;
}
#forbund #fordelboxwrap {
	background-image: url(images/pr/darkcircle.jpg);
}
#forbund #page.kmtype  .fordelbox {
	background-color: rgba(196,181,148,0.5);
	border-color: rgba(62,110,142.0.5);
	margin-bottom: 48px;
	height: 130px;
}
#forbund #fofeedback {
	background-color: #D4EEFF;
	padding-bottom: 40px;
}
#forbund #fofeedback > div > div > div > p:nth-child(3), #forbund #fofeedback ul, #forbund #fofeedback h2 {
	max-width: 44%;
}
#fofeedback > div > div > div > p:nth-child(5) {
	max-width: 70%;
}
#forbund #fofeedback > div > div > div > p:nth-child(3), #forbund #fofeedback ul {
	font-weight: 600;
}
#forbund #fofeedback a {
	color: #303233;
	font-weight: 600;
}
#forbund #fofeedback a:hover {
	text-decoration: underline;
}
#forbund #fofeedback img {
	transform: rotate(13deg);
    position: absolute;
    box-shadow: 5px 5px 10px rgba(0,0,0,0.16);
    top: 147px;
    right: 0px;
    width: auto;
    height: 340px;
}
#forbund #foaf h1 {
	text-align: center;
	margin-bottom:30px;
}
#forbund #foaf  {
	margin:70px 0;
}
#forbund #foaf .foafbox > div {
    border: 1px solid #111010;
    margin: 25px;
}
#forbund #foaf .foafbox p {
	text-transform: uppercase;
	line-height: 24px;
	background-color: #111010;
	color: #fff;
	width: 100%;
	text-align: center;
    margin: 0px;
	display: flex;
    	align-items: center;
		justify-content: center;
	height: 56px;
}
#forbund #foaf .foafbox > div > div {
    height: 110px;
    margin: 15px;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
	transition: 0.2s all linear;
}
#forbund #foaf .foafbox:nth-child(2) > div > div {
	background-image: url(images/fo/dch.png);
}
#forbund #foaf .foafbox:nth-child(3) > div > div {
	background-image: url(images/fo/svoemmeunion.png);
}
#forbund #foaf .foafbox:nth-child(4) > div > div {
	background-image: url(images/fo/dtrif.png);
}
#forbund #foaf .foafbox:nth-child(5) > div > div {
	background-image: url(images/fo/klatreforbund.png);
}
#forbund #foaf .foafbox:nth-child(6) > div > div {
	background-image: url(images/fo/dmcu.png);
}
#forbund #foaf .foafbox:nth-child(7) > div > div {
	background-image: url(images/fo/brydeforbund.png);
}
#forbund #foaf .foafbox:nth-child(8) > div > div {
	background-image: url(images/fo/dsu.svg);
}
#forbund #foaf .foafbox:nth-child(9) > div > div {
	background-image: url(images/fo/fda.jpg);
}
#forbund #foaf .foafbox:nth-child(10) > div > div {
	background-image: url(images/fo/varmblod.png);
}
#forbund #foaf .foafbox:nth-child(11) > div > div {
	background-image: url(images/fo/sst.png);
}
/*--------------------------*/
/*           ØVRIGE         */
/*--------------------------*/
#ovrige #banner.kmtype {
    background-color: #F9F4EA;
}
#ovrige #banner.kmtype #banner-right {
    background-color: #3E6E8E;
}
#ovrige #banner.kmtype #banner-right h2 {
	color: #fff;
}
#ovrige #banner.kmtype #bannerimg {
    background-image: url(images/ov/ovriger.png);
    height: 300px;
    bottom: 35px;
}
#ovrige #fordelboxwrap {
    background-image: url(images/ov/darkcircle.jpg);
}
#ovrige #page.kmtype .fordelbox {
    background-color: rgba(249,244,234,0.5);
    border: 2px solid rgba(62,110,142,0.5);
    height: 130px;
	margin-bottom: 55px;
}
#ovrige #pffeedback {
	background-color: #D4EEFF;
	margin-bottom: 70px;
}
#ovrige #pffeedback:before {
    content: "";
    width: 100%;
    pointer-events: none;
    display: block;
    position: absolute;
    height: 500px;
    background-size: contain;
    background-image: url(images/ov/phonehand.png);
    background-position: left bottom;
    background-repeat: no-repeat;
	top: 40px;
}
#ovrige #pffeedback {
	padding-bottom: 50px;
	padding-top: 80px;
	position: relative;
	    overflow: visible;
}
#ovrige #pffeedback h1 {
	line-height: 1.5em;
}
#ovrige #pffeedback p {
    width: 70%;
}
#ovrige #rcboxiconsmax h2 {
	line-height: 1.7em;
}
#ovrige #rcboxiconsmax em {
	color: #C4B594;
	padding-right: 5px;
}
/*--------------------------*/
/*      KOM GODT I GANG     */
/*--------------------------*/
#kig #banner {
	background-image: url(images/kig/banner.jpg);
}
#kig #banner h1 {
    line-height: 392px;
	color: #fff;
	font-size: 4em;
}
#kig #banner #banner-right {
	background-color: #fff;
	height: 392px;
}
#kig #banner #banner-right > div {
    display: flex;
    height: 100%;
    align-items: center;
	justify-content: center;
}
#kig #banner #banner-right img {
    height: auto;
    width: 80%;
}
#kig .fordelbox {
    border-radius: 25px 25px 0 25px;
    background-color: #F9F1D2;
    text-align: center;
    margin: 30px 0 30px 78px;
    padding: 40px 110px;
    float: left;
    position: relative;
}
#kig .fordelbox em {
	color: #3E6E8E;
	font-size: 4em;
	margin-bottom: 20px;
}
#kig .fordelbox h1 {
	line-height: 1.5em;
}
#kig .fordelbox h2 {
	margin: 15px 0;
}
#kig .fordelbox .fordelnumber {
    font-family: 'Barlow', sans-serif;
    position: absolute;
    left: -78px;
    top: 20px;
    line-height: 1em;
    color: #EBB22C;
    font-weight: 900;
    font-size: 17em;
}
#kig #bestilkm {
	text-align: center;
	margin-bottom: 75px;
}
#kig #bestilkm a {
	background-color: #3E6E8E;
	color: #fff;
	padding: 0 30px;
	border-radius: 10px 10px 0 10px;
	display: inline-block;
	transition: all 0.2s linear;
}
#kig #bestilkm a:hover {
	border-radius: 0 0 10px 0;
}
#kig #bestilkm a h1 {
	line-height: 1.8em;
}
#kig #bestilkm em {
	margin-left: 188px;
    transform: rotate(-45deg);
    margin-bottom: 15px;
    font-size: 2em;
}
#kig .bighead {
   font-size: 2em;
	text-align: center;
}
#kig #presentation iframe{
	width: 80%;
	height: 500px;
}
#kig #instruk {
	background-color: #F9F4EA;
	margin-top: 50px;
	padding: 40px 0 70px 0;
}
#kig #instruk > div > div > div.col-sm-7.col-xs-12 > p:nth-child(2) {
	margin-bottom: 0;
}
#kig #instruk > div > div > div.col-sm-7.col-xs-12 > p:nth-child(3) {
	margin-top: 0;
}
#kig #instruk .col-sm-5 {
	background-color: #fff;
	padding: 20px !important;
}
#kig #instruk .col-sm-7 {
	padding-right: 40px;
}
#kig #instruk .col-sm-4 h2 {
	text-transform: uppercase;
}
#kig #instruk > div > div > div.col-sm-7.col-xs-12 > a {
	color: #fff;
	float: right;
	text-decoration: none;
	padding: 5px 10px;
	border-radius: 7px 7px 0 7px;
	background-color: #3E6E8E;
	margin-top: 21px;
transition: all 0.2s linear;
}
#kig #instruk > div > div > div.col-sm-7.col-xs-12 > a:hover {
	border-radius: 0 0 7px 0;
}
#kig #kmsalgwrap:before {
	content:"";
	width: 50%;
	height: 200px;
	display: block;
	position: absolute;
	left: 0;
	background-color: #F9F4EA;
	z-index: 1;
}
#kig #kmsalgwrap:after {
	content:"";
	bottom: 0;
	width: 50%;
	height: 200px;
	display: block;
	position: absolute;
	right: 0;
	background-color: #d4eeff;
	z-index: 1;
}
#kig #kmsalg {
	z-index: 2;
    position: relative;
}

/*--------------------------*/
/*      INSTRUKTØRKORPS     */
/*--------------------------*/
#standardside.instrukkorps #instruk {
	background-color: #F9F4EA;
	margin-top: 50px;
	padding: 40px 0 70px 0;
}
#standardside.instrukkorps #instruk > div > div > div.col-sm-7.col-xs-12 > p:nth-child(2) {
	margin-bottom: 0;
}
#standardside.instrukkorps #instruk > div > div > div.col-sm-7.col-xs-12 > p:nth-child(3) {
	margin-top: 0;
}
#standardside.instrukkorps #instruk .col-sm-5 {
	background-color: #fff;
	padding: 20px !important;
}
#standardside.instrukkorps #instruk .col-sm-7 {
	padding-right: 40px;
}
#standardside.instrukkorps #instruk .col-sm-4 h2 {
	text-transform: uppercase;
}
#standardside.instrukkorps #instruk > div > div > div.col-sm-7.col-xs-12 > a {
	color: #fff;
	float: right;
	text-decoration: none;
	padding: 5px 10px;
	border-radius: 7px 7px 0 7px;
	background-color: #3E6E8E;
	margin-top: 21px;
transition: all 0.2s linear;
}
#standardside.instrukkorps #instruk > div > div > div.col-sm-7.col-xs-12 > a:hover {
	border-radius: 0 0 7px 0;
}
@media (max-width: 769px) {
	#standardside.instrukkorps #instruk {
		margin: 0 -10px;
	}
	#standardside.instrukkorps #instruk > div > div > div.col-sm-7.col-xs-12 > a {
		margin-bottom: 15px;
		margin-right: 15px;
	}
	#standardside.instrukkorps #banner #banner-right {
		display: block;
		width: 100%;
		position: absolute;
		height: 100%;
		top: 0;
	}
	#standardside.instrukkorps #banner #banner-right img {		
		position: absolute;
		bottom: 0;
		left: 0;
	}
}
/*--------------------------*/
/*       KONTAKT SALG       */
/*--------------------------*/
#salg #banner {
    background-image: url(images/kig/banner.jpg);
	background-position:bottom center;	
	position: relative;
	z-index: 2;
	margin-bottom: 0;
}
#salg #bannerwrap {
	position: relative;
}
#salg #banner h1 {
    color: #fff;
    font-size: 3em;
	margin-top: 85px;
}
#salg #banner p {   
    color: #fff;
    font-size: 1.3em;
}
#salg #banner #banner-right {
    background-color: #fff;
    height: 392px;
}
#salg #banner #banner-right img {
    height: auto;
    width: 80%;
}
#salg #banner #banner-right > div {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
}
#salg #page {
	margin-top: 50px;
}
#salg #page .reviews {
	padding: 0 25px;
}
#salg #page h1 {
	text-align: center;
}
#salg .rcbox {
    background-color: #D4EEFF;
    padding-bottom: 50px;
    margin-bottom: 20px;
    padding-top: 50px;
    padding-left: 80px;
	border-bottom-right-radius: 150px;
    border-top-left-radius: 150px;
}
#salg .field-wrap .field-da, #salg .field-wrap select {
	background-color: transparent;
}
@media (min-width: 991px) and (max-width: 1280px) {
	#salg .rcbox {
		padding-left: 45px;
	}
}
@media screen and (max-width: 769px) {
	#salg #banner {
		background-size: cover;
	}
	#salg #banner-right {
		display: none;
	}
	#salg #banner > div.container > div > div.col-sm-8.col-xs-12 > div {
		padding-left: 20px;
	}
	html body #indhold #salg #banner #mlogo {
		display: inline-block !important;
		position: absolute;
		margin-top: 0px !important;
		margin-left: 20px !important;
		top: 20px;
	}
	#salg #banner h1 {

		margin-top: 135px !important;

	}
}
@media screen and (max-width: 340px) {
	#salg #banner p {
		display: none;
	}
}
/*--------------------------*/
/*       OM KLUBMODUL       */
/*--------------------------*/
#omkm #banner {
    background-image: url(images/omkm/banner.jpg);
	background-position:bottom center;	
	position: relative;
	z-index: 2;
	margin-bottom: 0;
}
#omkm #bannerwrap {
	position: relative;
}
#omkm #bannerwrap:after {
	content: "";
	position: absolute;
	z-index: 1;
	right: 0;
	bottom: 0;
	height: 200px;
	width: 200px;
	display: block;
	background-color: #EBB22C;
}
#omkm #banner h1 {
    line-height: 392px;
    color: #fff;
    font-size: 4em;
}
#omkm #banner #banner-right {
    background-color: #fff;
    height: 392px;
}
#omkm #banner #banner-right img {
    height: auto;
    width: 80%;
}
#omkm #banner #banner-right > div {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
}
#omkm #info h1 {
    line-height: 1.3em;
    height: 145px;
    padding-top: 32px;
}
#omkm #daily {
	text-align: center;
}
@media (min-width: 770px) {
	#omkm #daily {
		position: absolute;
		width: 50%;
		right: 0;
	}
}
#omkm #daily > div.col-sm-12.col-xs-12 {
	background-color: #EBB22C;
	padding: 80px 0 25px 0;
}
#omkm #daily h2.upper {
	font-size: 1.7em;
	text-transform: uppercase;
	font-weight: 600;
}
#omkm #daily .col-sm-6 {
	padding: 20px 40px;
    height: 160px;
}
#omkm #daily h1 {
	font-size:3em;
	line-height: 1em;
	margin-bottom: 10px;
}
#omkm #daily > div:nth-child(2) {
	background-color: #D4EEFF;
}
#omkm #daily > div:nth-child(3) {
	background-color: #F9F4EA;
}
#omkm #daily > div:nth-child(4) {
	background-color: #F9F1D2;
}
#omkm #daily > div:nth-child(5) {
	background-color: #C4B594;
}
#omkm #info {
	height:465px;
	padding-right: 40px;
}
#omkm .rcbox {
	background-color: #D4EEFF;
	padding-bottom: 20px;
	margin-bottom: 20px;
}
#omkm #page > div:nth-child(3) > div > div.col-sm-12.col-xs-12 {
    margin-bottom: 70px;
}
#omkm #suc > div.col-md-5.col-sm-12.col-xs-12 > img {
	margin-left: -90px;
    margin-top: -50px;
    height: auto;
	width: 500px;
}
#omkm #suc > div.col-sm-12.col-md-7.col-xs-12 h1 {
    font-size: 4em;
    line-height: 1.2em;
    color: #3E6E8E;
    margin-bottom: 20px;
}
#omkm #suc > p {
	font-size: 1.2em;
}
/*--------------------------*/
/*          SUPPORT         */
/*--------------------------*/
.support #fboxwrap {
	margin-top: 60px;
}
.support .fbox {
	position: relative;
	height:260px;
	border-radius: 40px;
	padding: 30px 40px !important;
	margin-bottom:25px;
	background-color: #1877f2;
	color: #fff;
	
}
.support .fbox > div {
    height: 100%;
    padding-right: 20px;
    width: auto;
    float: left;
}
.support .fbox > div i {
    font-size: 5em;
    color: #fff;
}
.support .fbox > div svg {
    width: 75px;
	color: #fff;
	fill: #fff;
}
.support .fbox h1 {
	line-height: 1em;
}
.support .fbox h2 {
	line-height: 1.5em;
	margin-top: 10px;
}
.support .fbox a {
	height:40px;
	line-height: 40px;
	display: inline-block;
	padding: 0 40px;
	background-color: rgba(255,255,255,1);
	border:2px solid #3E6E8E;
	border-radius: 10px 10px 0 10px;
	color: #303233 !important;
    position: absolute;
    right: 40px;
    bottom: 20px;
	transition: all 0.4s linear;
	font-weight: 600;
}
.support .fbox a:hover {
	border-radius: 0 0 10px 0;
	text-decoration: none;
	background-color: rgba(255,255,255,0.5);
}
.support #fbox1 {
	border-bottom-right-radius: 0;
	margin-right: 12px;	 
}
.support #fbox2 {
	border-bottom-left-radius: 0;
	margin-left: 12px;
}
.support #fbox3 {
	border-top-right-radius: 0;
	margin-right: 12px;
	margin-bottom: 50px;
}
.support #fbox4 {
	border-top-left-radius: 0;
	margin-left: 12px;
	margin-bottom: 50px;
}
/*--------------------------*/
/*            APP           */
/*--------------------------*/
#app #banner {
    background-image: url(images/app/banner.jpg);
    background-position: bottom center;
    position: relative;
    z-index: 2;
    margin-bottom: 0;
}
#app #bannerwrap:after {
    content: "";
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 0;
    height: 200px;
    width: 200px;
    display: block;
    background-color: #F9F4EA;
}

#app #appright #appinfo {
	background-color: #F9F4EA;
	padding-top: 1em;
	padding-left: 40px;
	padding-bottom: 80px;
	padding-right: 15px;
}
#app #bannerwrap {
    position: relative;
}
#app #appright > #appinfo > div:nth-child(2) {
    text-align: center;
    display: inline-block;
}
#app #banner h1 { 
    color: #fff;
    font-size: 4em;
}
#app #banner > div.container > div > div.col-sm-8.col-xs-12 > div {
    margin-top: -61px;
    padding-right: 40px;
}
#app #banner > div.container > div > div.col-sm-8.col-xs-12 {
    display: flex;
    align-items: center;
    height: 100%;
}
#app #banner h2 {
    color: #fff;
    padding-right: 200px;
	margin-top: 30px;
	margin-bottom: 30px;
}
#app #banner #banner-right {
    height: 392px;
}
#app #banner #banner-right > div {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
}
#app #banner #banner-right img {
    height: auto;
    width: 90%;
}
#app #banner #banner-right img {
    height: auto;
    width: 90%;
}
@media (min-width: 770px) {
	#app #appright {
		position: absolute;
		width: 50%;
		right: 0;
	}	
	#app #info {
		min-height: 1750px;
	}
}
@media (min-width: 770px) and (max-width: 1034px) {
	#app #appright h1 {
		font-size: 1.8em;
	}
}
#app #info {
	margin-top: 1em;
	padding-right: 35px;
	padding-bottom: 70px;
}
#app #info h1 {
    line-height: 1.3em;
    padding-top: 45px;
	margin-bottom: 20px;
}
#app #info h2 {
	font-size: 1.2em;
    line-height: 1.3em;
    margin-bottom: 12px;
}
#app #info h2 em {
	margin-right: 15px;
	color: #D4EEFF;
	font-size: 1.3em;
}
#app .ul {
	margin-top: 40px;
}
#app #icons em {
	position: absolute;
	color: rgba(235,178,44,0.5);
	font-size: 3.5em;
}
#app #appright h1.big {
	font-size: 10em;
	line-height: 0.8em;
	margin-top: 39px;
	margin-bottom: 0;
}
#app #appright h1 {
    z-index: 2;
    position: relative;
	margin-bottom: 20px;
}
#app #icons .fa-calculator {
    top: 55px;
    left: 550px;
}
#app #icons .fa-calendar-alt {
    top: 95px;
    left: 635px;
}
#app #icons .fa-credit-card {
    top: 190px;
    left: 675px;
}
#app #icons .fa-globe {
    top: 280px;
    left: 675px;
}
#app #icons .fa-envelope {
    top: 360px;
    left: 635px;
}
#app #icons .fa-users {
    top: 400px;
    left: 538px;
}
#app #appright h2 em {
	font-size: 1.3em;
	margin-right: 15px;
	color: #EBB22C;
}
#app #appright h2 {
	line-height: 1.4em;
	margin-bottom: 0px;
}
#app #appright p {
	margin-top: 5px;
}
#app #appsep {
	background-color: #3E6E8E;
	height: 40px;
}
#app #appimg {
    background-image: url(images/app/phonebg.jpg);
    background-size: cover;
    padding: 30px 0 30px 60px;
}
#app #appimg img {
    width: 425px;
    height: auto;
}
/*--------------------------*/
/*          PRISER NY       */
/*--------------------------*/
#kmpris .km-card.paymentsolution .km-flex-row {
    justify-content: flex-start;
}
#kmpris .km-invoice-line.is-warning .desc,
#kmpris .km-invoice-line.is-warning .sub,
#kmpris .km-invoice-line.is-warning .t-right {
	color: #c1121f;
}

#kmpris .km-invoice-line.is-warning .desc {
	font-weight: 700;
}
#kmpris #banner {
	background-color: #3E6E8E;
	background-image: url(images/pri/kmpriser.jpg);
	background-size: cover;
	background-position: left center;
}
#kmpris #banner #banner-right img {
    height: auto;
    width: 70%;
	margin-top: 40px;
}
#kmpris #banner h1 {
    color: #fff;
    font-size: 3em;
	margin-top: 40px;
}
#kmpris #banner h2 {
	color: #fff;
	margin-top: 15px;
	width: 70%;
}
#kmpris .pbox {
	margin-top: -165px;
	z-index: 2;	
	border-radius: 15px 15px 0 0;
	background-color: #fff;
}
#kmpris {
	margin-bottom: 40px;
}
#kmpris #kmpriscontainer {
	border-radius: 40px 40px 40px 0;
	overflow: hidden;
	background-color: #F9F4EA;
}
#kmpris #kmpriscontainer img {
	    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
#kmpriscontainer .km-pc-100 .km-pc-100 {
	padding: 30px;
	height: 100%;
}
#kmpriscontainer .km-pc-100 .km-pc-100 h1 {
	line-height: normal;
	font-size: 3em;
	margin-bottom: 5px !important;
}
#kmpriscontainer .km-pc-100 .km-pc-100 p {
margin-block-start: 5px;
	}
#kmpriscontainer .km-pc-100 .km-container, #kmpriscontainer .km-pc-100 .km-row {
	height: 100%;
}
#kmpriscontainer .km-pc-100 .km-row {
	margin-left: 0px;
}
#kmpriscontainer .km-col.img {
	padding:0;
}
.kmpristoggle.mob {
		display: none !important;		
	}
@media (max-width: 767px) {
#kmpriscontainer .km-col.img {
	height: 50vh;
}
	.kmpristoggle.desc {
		display: none !important;		
	}
	.kmpristoggle.mob {
		display: inline-block !important;		
	}
}
#kmpriscontainer .km-col.img img {
	transition: 0.3s linear all;
	opacity: 1;
	position: relative;
	z-index: 2;
}
#kmpriscontainer .km-col.img > div {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding-right: 10px;
    justify-content: center;
    background-color: #3E6E8E;
}
#kmpriscontainer .km-col.img > div h2 {
	color: #fff !important;
	font-size: 2em;
}
#kmpriscontainer .km-col.img > div p {
	color: #fff;
	font-size: 1.3em;
}
img.hideimg {
	opacity: 0 !important;
}
#kmpriscontainer .km-pc-100 .km-pc-100 a {
    height: 40px;
    line-height: 40px;
    display: inline-block;
    padding: 0 40px;
    background-color: rgba(255,255,255,1);
    border: 2px solid #3E6E8E;
    border-radius: 10px 10px 10px 0;
    color: #303233 !important;
    position: absolute;
    left: 30px;
    bottom: 20px;
    transition: all 0.4s linear;
    font-weight: 600;
}
@media (min-width: 767px) and (max-width: 855px) {
	#kmpriscontainer .km-pc-100 .km-pc-100 a {

    padding: 0 18px !important;

}
}
@media (min-width: 769px) and (max-width: 1200px) {
	.km-container  {
max-width: 96vw !important;
	}
	.km-container .km-container  {
max-width: 100% !important;
	}
}
#kmpriscontainer .km-pc-100 .km-pc-100 a:hover {
    border-radius: 0 0 0 10px;
    text-decoration: none;
    background-color: rgba(255,255,255,0.5);
}
#kmpriscontainer #kmprismore {
	display: none;
}
#kmpriscontainer #kmprismore .list {
	padding-left: 35px;
	padding-bottom: 25px;
}
#kmpriscontainer #kmprismore .list h1 {
	margin-bottom: 10px;
	line-height: normal;
}
#kmpriscontainer #kmprismore .list h2 {
	font-size: 1.1em;
	line-height: 1.7em;
}
#kmpriscontainer #kmprismore .list p {
    font-size: 0.9em;
    line-height: 1em;
    margin-top: 0;
    margin-bottom: 8px;
    padding-left: 25px;
    font-style: italic;
}
#kmpriscontainer #kmprismore .list h2:before {
	content: "\f00c";
	margin-right: 7px;
	color: #56f2a7;
	font-family: FontAwesome;
}
#kmpris .pboxinner {
	position: relative;
	margin: 15px;
}
#kmpris #guld {
	margin-top: -205px;
}
#kmpris  .pheader {
    box-shadow: 0 5px 10px 0px rgba(150,150,150,0.4);
}
#kmpris #standard .pcontent, #kmpris #standard .pbottom {
	background-color:#F9F1D2; 
}
#kmpris #guld .pcontent, #kmpris #guld .pbottom {
	background-color:#F9F4EA; 
}
#kmpris #custom .pcontent, #kmpris #custom .pbottom {
	background-color:#F9F1D2;
}
#kmpris .pheader {
	font-family: 'Barlow', sans-serif;
	text-align: center;
	font-size: 2em;
	text-transform: uppercase;
	line-height: 60px;
	font-weight: 800;
	border-radius: 15px 15px 0 0;
}
#kmpris #standard .pheader {
	background-color:#FFEC9E; 
}
#kmpris #guld .pheader {
	background-color:#D4EEFF;
	line-height: 100px;
}
#kmpris #custom .pheader {
	background-color:#FFEC9E;
}
#kmpris .pcontent {
	position: relative;
    padding: 40px 10px 10px 20px;
    box-shadow: 0px 5px 10px 0px rgba(150,150,150,0.4);
	height: 500px;
}
#kmpris .pcontent h2 {
	font-size: 1.2em;
}
#kmpris .pcontent em {
	color: #C4B594;
	margin-right: 15px;
}
#kmpris .pcontent img {
    position: absolute;
    width: 100px;
    right: 10px;
    bottom: -12px;
}
#kmpris .pbottom {
	text-align: center;
}
#kmpris .pbottom h1 {
	line-height: 1.5em;
	width: 100%;
}
#kmpris #standard .pbottom h1 {
	background-color:#FFEC9E; 
}
#kmpris #guld .pbottom  {
	background-color:#D4EEFF;
}
#kmpris #custom .pbottom h1 {
	background-color:#FFEC9E;
}
#kmpris .pprice {
    background-color: #3E6E8E;
    font-size: 4em;
    color: #fff;
    height: 100px;
    padding-top: 15px;
    font-weight: 900;
}
#kmpris #guld .pprice {
	height: 130px;
	padding-top: 40px;
}
#kmpris #custom .pprice {
    padding-top: 5px;
    text-transform: uppercase;
    font-size: 2.5em;
    line-height: 1.2em;
}
#kmpris #standard .pbottom .pbtxt {
    position: relative;
    display: inline-block;
    height: 40px;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
    background: #F9F1D2;
    padding: 20px 65px;
    text-decoration: none;
    padding-bottom: 0%;
    background-clip: content-box;
}
#kmpris #standard .pbottom .pbtxt::after {
    content: "";
    position: absolute;
    top: 40px;
    left: 0;
    background-color: inherit;
    padding-bottom: 50%;
    width: 57.7%;
    z-index: -1;
    transform-origin: 0 0;
    transform: rotate(-30deg) skewX(30deg);
}
#kmpris #standard .pbottom .pbtxt .fa-hand-point-right {
    position: absolute;
    left: 53px;
    top: 3px;
    font-size: 2.5em;
    transform: rotate(20deg);
}
#kmpris #guld .pbottom .pbtxt {
    position: relative;
    display: inline-block;
    height: 10px;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
    background: #D4EEFF;
    padding: 6px 82px;
    text-decoration: none;
    padding-bottom: 0%;
    background-clip: content-box;
}
#kmpris #guld .pbottom .pbtxt::after {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    background-color: inherit;
    padding-bottom: 50%;
    width: 57.7%;
    z-index: -1;
    transform-origin: 0 0;
    transform: rotate(-30deg) skewX(30deg);
}
#kmpris #custom .pbottom .pbtxt {
       position: relative;
    display: inline-block;
    height: 40px;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
    background: #F9F1D2;
    padding: 10px 71px;
    text-decoration: none;
    padding-bottom: 0%;
    background-clip: content-box;
}
#kmpris #custom .pbottom .pbtxt::after {
    content: "";
    position: absolute;
    top: 40px;
    left: 0;
    background-color: inherit;
    padding-bottom: 50%;
    width: 57.7%;
    z-index: -1;
    transform-origin: 0 0;
    transform: rotate(-30deg) skewX(30deg);
}
#kmpris #standard #standardline {
    height: 65px;
    margin-top: 95px;
    position: absolute;
    width: 100%;
    background-repeat: repeat-y;
    background-position: top center;
    background-image: url(images/pri/line.png);
}
#kmpris #standard .pbottom:hover + #standardline {
    background-image: url(images/pri/line.gif);
}
html body #kmpris #standard .peks {
	display: block;
	background-repeat: no-repeat;
    background-position: top center;
    background-image: url(images/pri/sdesign.jpg?v=0.1);
	width: 100%;
	height: 400px;
	margin-top: 175px;
	border-left: 20px solid #fff;
	border-right: 20px solid #fff;
	background-size: contain;
	cursor: pointer;
}
#kmpris #guld .peks {
	display: block;
	background-repeat: no-repeat;
    background-position: top center;
    background-image: url(images/pri/gdesign.jpg);
	width: 100%;
	height: 400px;
	margin-top: 175px;
	border-left: 20px solid #fff;
	border-right: 20px solid #fff;
	background-size: contain;
	cursor: pointer;
}
#kmpris #custom .peks {
	display: block;
	background-repeat: no-repeat;
    background-position: top center;
    background-image: url(images/pri/pdesign.jpg?v=1.01);
	width: 100%;
	height: 400px;
	margin-top: 175px;
	border-left: 20px solid #fff;
	border-right: 20px solid #fff;
	background-size: contain;
	cursor: pointer;
}
#kmpris #custom .teks {
	display: block;
	background-repeat: no-repeat;
    background-position: top center;
    background-image: url(images/pri/tdesign.jpg);
	width: 100%;
	height: 400px;
	margin-top: 175px;
	border-left: 20px solid #fff;
	border-right: 20px solid #fff;
	background-size: contain;
}
#peksbig {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
	z-index: 1000000004;
}
#peksbigbg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.85);
}
#peksbigcontent {
    z-index: 1;
    position: relative;
    width: 100%;
    height: 100vh;
    text-align: center;
    padding: 60px 20px 20px 20px;
    overflow: auto;
}
#peksbigcontent img {
	max-width: 100%;
}
#peksbigclose {
	height: 46px;
	position: absolute;
	top: 0;
	color: #fff;
	left: 0;
	width: 100%;
	background-color: #ebb22c;
	font-size: 1.5em;
	line-height: 46px;
	text-align: center;
	font-weight: 600;
	z-index: 2;
	cursor: pointer;
}
#kmpris #priscalc {
    background-color: #d4eeff;
	border-bottom-right-radius: 0px;
    border-top-left-radius: 0px;
	border-bottom-left-radius: 200px;
    padding-top: 25px;
    overflow: hidden;
}
#kmpris .memwrap {
    width: 100%;
    display: flex;
    justify-content: space-between;
	max-width: 400px;
	font-size: 1.1em;
}
#kmpris #priscalcleft {
	position: static;
}
#kmpris #priceheader .memwrap {
	font-size: 1em;
	    position: relative;
}
#kmpris .memam {
    margin-right: 8px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
   flex-grow: 1;
  }
#kmpris #priceheader .memam:after {
	content: "";
}
#kmpris .memam:after {
	content: ".................................................................................................";
}
#kmpris .mempr {
    text-align: right;
    white-space: nowrap;
    flex-shrink: 0;
	font-weight: 600;
 }
#kmpris #priceheader {
	margin-bottom: 25px;
}
#kmpris #priceheader h1 {
	line-height: 55px;
	font-size: 1.6em;
}
#kmpris #priceheader:before {
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	height: 55px;
	background-color: #F9F4EA;
}
#kmpris #priscalc > div > div > div.col-sm-12.col-xs-12 > h1 {
	line-height: 1.5em;
}
#kmpris #priscalc > div > div > div.col-sm-12.col-xs-12 {
	padding-bottom: 25px;
}
#kmpris .membottom {
	font-size: 0.8em;
	margin-top: 10px;
	margin-bottom: 30px;
}
#kmpris .star {
	color: #EBB22C;
	font-size: 20px;
}
#kmpris #betallosning {
	height: 450px;
	background-color: #FFEC9E;
	padding: 0 25px;

}
#kmpris #betallosning h1 {
    line-height: 55px;
    font-size: 1.6em;
	margin: 0 -25px;
	text-indent: 25px;
	background-color: rgba(235,178,44,0.15);
}
html #kmpris #betallosning a {
	color: #000;
    padding: 3px 15px;
    border-radius: 8px 8px 0 8px;
    border: 1px solid #000;
    background-color: rgba(235,178,44,1);
    font-weight: 600;
    transition: 0.2s all linear;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    width: 250px;
    margin-top: 40px;
	font-size: 1.3em;
	text-transform: uppercase;
}
#kmpris #betallosning a:hover {
	background-color: rgba(235,178,44,0.5);
}
#kmpris #betallosning h2 {
	margin-top: 15px;
}
#kmpris #page > div:nth-child(3) {
	padding: 50px 0;
}
#contactbtns  #bestil {
	color: #000;
    padding: 3px 25px;
    border-radius: 8px 8px 0 8px;
    border: 1px solid #000;
    background-color: #FFEC9E;
    transition: 0.2s all linear;    
    margin-top: 60px;
	float: right;
	margin-left: 35px;
	font-size: 1.3em;
}
#contactbtns #bestil strong, #contactbtns #bookcall strong {
	font-size: 600;
	text-transform: uppercase;
}
#contactbtns #bestil:hover {
	background-color: rgba(235,178,44,0.5);
}
#contactbtns #bookcall {
	color: #000;   
    border-radius: 8px 8px 0 8px;
    border: 1px solid #000;
    background-color: #FFEC9E;
    transition: 0.2s all linear;    
    margin-top: 60px;
	float: right;
	margin-left: 35px;
	
}
#contactbtns #bookcall > span {
	font-size: 1.3em;
	 padding: 3px 25px;
	display: inline-block;
	cursor: pointer;
}
#contactbtns #bookcall:hover {
	background-color: rgba(235,178,44,0.5);
}
#contactbtns .field-da + .butlbl:after {
    color: #000;
    font-size: 14px;
    text-indent: 5px;
    line-height: 25px;
}
#contactbtns  #bookform {
	padding: 0 25px;
	color: #000;
}
#contactbtns  #bookform input {
	background-color: rgba(255,255,255,0.5);
}
#contactbtns  #formsend {
	padding-bottom: 25px;
}
#contactbtns  #bookform, #contactbtns #bookform h2 {
	display: none;
}
#contactbtns  .field-wrap .field-da {
	text-indent: 5px;
}
#contactbtns .field-wrap .field-da:focus + .butlbl:after, #contactbtns .field-wrap .field-val + .butlbl:after {
    top: -52px;
}
#custom > div > div.pcontent {
	padding: 40px 0px 10px 0px;
}
#kmpris .pcontent .ivbox {
    background-color: #fff;
	width: 100%;
	position: relative;
    border: #ebb22c solid 10px;
    padding: 20px 10px 10px 10px;
	float: left;
}
#kmpris .pcontent .ivbox_l {
	float: left;
}
#kmpris .pcontent .ivbox_bn {
    position: absolute;
    border: 4px solid #3e6e8e;
    height: 85px;
    width: 85px;
    color: #3e6e8e;
    text-align: center;
    line-height: 85px;
    font-size: 4em;
    font-weight: 700;
    border-radius: 50%;
    top: -40px;
    background-color: #fff;
}
#kmpris .pcontent .ivbox_l img {
    position: relative;
    width: 65px;
    right: 0px;
    bottom: 0;
    margin-left: 10px;
    margin-top: 40px;
}
#custom > div > div.pcontent > div:nth-child(2) img {
	width: 70px;
}
#kmpris .pcontent .ivbox_r {
    float: right;
}
#kmpris .pcontent .ivbox_r h1 {
    font-size: 1.35em;
    text-indent: 35px;
    line-height: 0.5em;
	margin-bottom: 20px;
}
#kmpris .pcontent .ivbox_r em {
    color: #C4B594;
    margin-right: 7px;
    margin-left: 8px;
}
#kmpris .pcontent .ivbox_r span {
    font-size: 3.3em;
    font-weight: 700;
    margin-left: 35px;
    color: #3e6e8e;
}
#custom > div > div.pcontent > div:nth-child(2) {
	margin-top: 40px;
}
#kmpris .pcontent .ivbox_bn img {
       position: absolute;
    width: 30px !important;
    top: -46px !important;
    right: 0px !important;
}

#custom > div > div.pbottom > div.pprice > a {
    width: 100%;
    height: 100%;
    display: block;
    color: #fff;
    line-height: 95px;
    font-size: 1.5em;
}
@media screen and (max-width: 350px) {
	.ivbox_r {
		font-size: 0.9em;
	}
}
@media (min-width: 769px) and (max-width: 1280px) {
	#kmpris .pcontent .ivbox_l img {
		display: none !important;
	}
	#kmpris .pcontent .ivbox_r h1 {
		font-size: 1.15em;
	}
	#kmpris .pcontent .ivbox_r span {
		font-size: 2.3em;
	}
}
@media (min-width: 769px) and (max-width: 991px) {
	#kmpris .pcontent .ivbox_r h1 {
		font-size: 1em;
	}
	#kmpris .pcontent .ivbox_bn {
    height: 50px;
    width: 50px;
    line-height: 50px;
    font-size: 2em; 
    top: 3px;
    margin-left: -10px;
}
}
/*--------------------------*/
/*           PRISER         */
/*--------------------------*/
#pris #banner {
	background-color: #3E6E8E;
}
#pris #banner #banner-right img {
    height: auto;
    width: 70%;
	margin-top: 40px;
}
#pris #banner h1 {
    color: #fff;
    font-size: 3em;
	margin-top: 40px;
}
#pris #banner h2 {
	color: #fff;
	margin-top: 15px;
	width: 70%;
}
#pris .pbox {
	margin-top: -165px;
	z-index: 2;	
	border-radius: 15px 15px 0 0;
	background-color: #fff;
}
#pris .pboxinner {
	position: relative;
	margin: 15px;
}
#pris #guld {
	margin-top: -205px;
}
#pris  .pheader {
    box-shadow: 0 5px 10px 0px rgba(150,150,150,0.4);
}
#pris #standard .pcontent, #pris #standard .pbottom {
	background-color:#F9F1D2; 
}
#pris #guld .pcontent, #pris #guld .pbottom {
	background-color:#F9F4EA; 
}
#pris #custom .pcontent, #pris #custom .pbottom {
	background-color:#F9F1D2;
}
#pris .pheader {
	font-family: 'Barlow', sans-serif;
	text-align: center;
	font-size: 2em;
	text-transform: uppercase;
	line-height: 60px;
	font-weight: 800;
	border-radius: 15px 15px 0 0;
}
#pris #standard .pheader {
	background-color:#FFEC9E; 
}
#pris #guld .pheader {
	background-color:#D4EEFF;
	line-height: 100px;
}
#pris #custom .pheader {
	background-color:#FFEC9E;
}
#pris .pcontent {
	position: relative;
    padding: 40px 10px 10px 20px;
    box-shadow: 0px 5px 10px 0px rgba(150,150,150,0.4);
	height: 500px;
}
#pris .pcontent h2 {
	font-size: 1.2em;
}
#pris .pcontent em {
	color: #C4B594;
	margin-right: 15px;
}
#pris .pcontent img {
    position: absolute;
    width: 100px;
    right: 10px;
    bottom: -12px;
}
#pris .pbottom {
	text-align: center;
}
#pris .pbottom h1 {
	line-height: 1.5em;
	width: 100%;
}
#pris #standard .pbottom h1 {
	background-color:#FFEC9E; 
}
#pris #guld .pbottom  {
	background-color:#D4EEFF;
}
#pris #custom .pbottom h1 {
	background-color:#FFEC9E;
}
#pris .pprice {
    background-color: #3E6E8E;
    font-size: 4em;
    color: #fff;
    height: 100px;
    padding-top: 15px;
    font-weight: 900;
}
#pris #guld .pprice {
	height: 130px;
	padding-top: 40px;
}
#pris #custom .pprice {
    padding-top: 5px;
    text-transform: uppercase;
    font-size: 2.5em;
    line-height: 1.2em;
}
#pris #standard .pbottom .pbtxt {
    position: relative;
    display: inline-block;
    height: 40px;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
    background: #F9F1D2;
    padding: 20px 65px;
    text-decoration: none;
    padding-bottom: 0%;
    background-clip: content-box;
}
#pris #standard .pbottom .pbtxt::after {
    content: "";
    position: absolute;
    top: 40px;
    left: 0;
    background-color: inherit;
    padding-bottom: 50%;
    width: 57.7%;
    z-index: -1;
    transform-origin: 0 0;
    transform: rotate(-30deg) skewX(30deg);
}
#pris #standard .pbottom .pbtxt .fa-hand-point-right {
    position: absolute;
    left: 53px;
    top: 3px;
    font-size: 2.5em;
    transform: rotate(20deg);
}
#pris #guld .pbottom .pbtxt {
    position: relative;
    display: inline-block;
    height: 10px;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
    background: #D4EEFF;
    padding: 6px 82px;
    text-decoration: none;
    padding-bottom: 0%;
    background-clip: content-box;
}
#pris #guld .pbottom .pbtxt::after {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    background-color: inherit;
    padding-bottom: 50%;
    width: 57.7%;
    z-index: -1;
    transform-origin: 0 0;
    transform: rotate(-30deg) skewX(30deg);
}
#pris #custom .pbottom .pbtxt {
       position: relative;
    display: inline-block;
    height: 40px;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
    background: #F9F1D2;
    padding: 10px 71px;
    text-decoration: none;
    padding-bottom: 0%;
    background-clip: content-box;
}
#pris #custom .pbottom .pbtxt::after {
    content: "";
    position: absolute;
    top: 40px;
    left: 0;
    background-color: inherit;
    padding-bottom: 50%;
    width: 57.7%;
    z-index: -1;
    transform-origin: 0 0;
    transform: rotate(-30deg) skewX(30deg);
}
#pris #standard #standardline {
    height: 65px;
    margin-top: 95px;
    position: absolute;
    width: 100%;
    background-repeat: repeat-y;
    background-position: top center;
    background-image: url(images/pri/line.png);
}
#pris #standard .pbottom:hover + #standardline {
    background-image: url(images/pri/line.gif);
}
html body #pris #standard .peks {
	display: block;
	background-repeat: no-repeat;
    background-position: top center;
    background-image: url(images/pri/sdesign.jpg?v=0.1);
	width: 100%;
	height: 400px;
	margin-top: 175px;
	border-left: 20px solid #fff;
	border-right: 20px solid #fff;
	background-size: contain;
	cursor: pointer;
}
#pris #guld .peks {
	display: block;
	background-repeat: no-repeat;
    background-position: top center;
    background-image: url(images/pri/gdesign.jpg);
	width: 100%;
	height: 400px;
	margin-top: 175px;
	border-left: 20px solid #fff;
	border-right: 20px solid #fff;
	background-size: contain;
	cursor: pointer;
}
#pris #custom .peks {
	display: block;
	background-repeat: no-repeat;
    background-position: top center;
    background-image: url(images/pri/pdesign.jpg?v=1.01);
	width: 100%;
	height: 400px;
	margin-top: 175px;
	border-left: 20px solid #fff;
	border-right: 20px solid #fff;
	background-size: contain;
	cursor: pointer;
}
#pris #custom .teks {
	display: block;
	background-repeat: no-repeat;
    background-position: top center;
    background-image: url(images/pri/tdesign.jpg);
	width: 100%;
	height: 400px;
	margin-top: 175px;
	border-left: 20px solid #fff;
	border-right: 20px solid #fff;
	background-size: contain;
}
#peksbig {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
	z-index: 1000000004;
}
#peksbigbg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.85);
}
#peksbigcontent {
    z-index: 1;
    position: relative;
    width: 100%;
    height: 100vh;
    text-align: center;
    padding: 60px 20px 20px 20px;
    overflow: auto;
}
#peksbigcontent img {
	max-width: 100%;
}
#peksbigclose {
	height: 46px;
	position: absolute;
	top: 0;
	color: #fff;
	left: 0;
	width: 100%;
	background-color: #ebb22c;
	font-size: 1.5em;
	line-height: 46px;
	text-align: center;
	font-weight: 600;
	z-index: 2;
	cursor: pointer;
}
#pris #priscalc {
    background-color: #d4eeff;
	border-bottom-right-radius: 0px;
    border-top-left-radius: 0px;
	border-bottom-left-radius: 200px;
    padding-top: 25px;
    overflow: hidden;
}
#pris .memwrap {
    width: 100%;
    display: flex;
    justify-content: space-between;
	max-width: 400px;
	font-size: 1.1em;
}
#pris #priscalcleft {
	position: static;
}
#pris #priceheader .memwrap {
	font-size: 1em;
	    position: relative;
}
#pris .memam {
    margin-right: 8px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
   flex-grow: 1;
  }
#pris #priceheader .memam:after {
	content: "";
}
#pris .memam:after {
	content: ".................................................................................................";
}
#pris .mempr {
    text-align: right;
    white-space: nowrap;
    flex-shrink: 0;
	font-weight: 600;
 }
#pris #priceheader {
	margin-bottom: 25px;
}
#pris #priceheader h1 {
	line-height: 55px;
	font-size: 1.6em;
}
#pris #priceheader:before {
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	height: 55px;
	background-color: #F9F4EA;
}
#pris #priscalc > div > div > div.col-sm-12.col-xs-12 > h1 {
	line-height: 1.5em;
}
#pris #priscalc > div > div > div.col-sm-12.col-xs-12 {
	padding-bottom: 25px;
}
#pris .membottom {
	font-size: 0.8em;
	margin-top: 10px;
	margin-bottom: 30px;
}
#pris .star {
	color: #EBB22C;
	font-size: 20px;
}
#pris #betallosning {
	height: 450px;
	background-color: #FFEC9E;
	padding: 0 25px;
}
#pris #betallosning h1 {
    line-height: 55px;
    font-size: 1.6em;
	margin: 0 -25px;
	text-indent: 25px;
	background-color: rgba(235,178,44,0.15);
}
html #pris #betallosning a {
	color: #000;
    padding: 3px 15px;
    border-radius: 8px 8px 0 8px;
    border: 1px solid #000;
    background-color: rgba(235,178,44,1);
    font-weight: 600;
    transition: 0.2s all linear;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    width: 250px;
    margin-top: 40px;
	font-size: 1.3em;
	text-transform: uppercase;
}
#pris #betallosning a:hover {
	background-color: rgba(235,178,44,0.5);
}
#pris #betallosning h2 {
	margin-top: 15px;
}
#pris #page > div:nth-child(3) {
	padding: 50px 0;
}
#contactbtns  #bestil {
	color: #000;
    padding: 3px 25px;
    border-radius: 8px 8px 0 8px;
    border: 1px solid #000;
    background-color: #FFEC9E;
    transition: 0.2s all linear;    
    margin-top: 60px;
	float: right;
	margin-left: 35px;
	font-size: 1.3em;
}
#contactbtns #bestil strong, #contactbtns #bookcall strong {
	font-size: 600;
	text-transform: uppercase;
}
#contactbtns #bestil:hover {
	background-color: rgba(235,178,44,0.5);
}
#contactbtns #bookcall {
	color: #000;   
    border-radius: 8px 8px 0 8px;
    border: 1px solid #000;
    background-color: #FFEC9E;
    transition: 0.2s all linear;    
    margin-top: 60px;
	float: right;
	margin-left: 35px;
	
}
#contactbtns #bookcall > span {
	font-size: 1.3em;
	 padding: 3px 25px;
	display: inline-block;
	cursor: pointer;
}
#contactbtns #bookcall:hover {
	background-color: rgba(235,178,44,0.5);
}
#contactbtns .field-da + .butlbl:after {
    color: #000;
    font-size: 14px;
    text-indent: 5px;
    line-height: 25px;
}
#contactbtns  #bookform {
	padding: 0 25px;
	color: #000;
}
#contactbtns  #bookform input {
	background-color: rgba(255,255,255,0.5);
}
#contactbtns  #formsend {
	padding-bottom: 25px;
}
#contactbtns  #bookform, #contactbtns #bookform h2 {
	display: none;
}
#contactbtns  .field-wrap .field-da {
	text-indent: 5px;
}
#contactbtns .field-wrap .field-da:focus + .butlbl:after, #contactbtns .field-wrap .field-val + .butlbl:after {
    top: -52px;
}
#custom > div > div.pcontent {
	padding: 40px 0px 10px 0px;
}
#pris .pcontent .ivbox {
    background-color: #fff;
	width: 100%;
	position: relative;
    border: #ebb22c solid 10px;
    padding: 20px 10px 10px 10px;
	float: left;
}
#pris .pcontent .ivbox_l {
	float: left;
}
#pris .pcontent .ivbox_bn {
    position: absolute;
    border: 4px solid #3e6e8e;
    height: 85px;
    width: 85px;
    color: #3e6e8e;
    text-align: center;
    line-height: 85px;
    font-size: 4em;
    font-weight: 700;
    border-radius: 50%;
    top: -40px;
    background-color: #fff;
}
#pris .pcontent .ivbox_l img {
    position: relative;
    width: 65px;
    right: 0px;
    bottom: 0;
    margin-left: 10px;
    margin-top: 40px;
}
#custom > div > div.pcontent > div:nth-child(2) img {
	width: 70px;
}
#pris .pcontent .ivbox_r {
    float: right;
}
#pris .pcontent .ivbox_r h1 {
    font-size: 1.35em;
    text-indent: 35px;
    line-height: 0.5em;
	margin-bottom: 20px;
}
#pris .pcontent .ivbox_r em {
    color: #C4B594;
    margin-right: 7px;
    margin-left: 8px;
}
#pris .pcontent .ivbox_r span {
    font-size: 3.3em;
    font-weight: 700;
    margin-left: 35px;
    color: #3e6e8e;
}
#custom > div > div.pcontent > div:nth-child(2) {
	margin-top: 40px;
}
#pris .pcontent .ivbox_bn img {
       position: absolute;
    width: 30px !important;
    top: -46px !important;
    right: 0px !important;
}

#custom > div > div.pbottom > div.pprice > a {
    width: 100%;
    height: 100%;
    display: block;
    color: #fff;
    line-height: 95px;
    font-size: 1.5em;
}
@media screen and (max-width: 350px) {
	.ivbox_r {
		font-size: 0.9em;
	}
}
@media (min-width: 769px) and (max-width: 1280px) {
	#pris .pcontent .ivbox_l img {
		display: none !important;
	}
	#pris .pcontent .ivbox_r h1 {
		font-size: 1.15em;
	}
	#pris .pcontent .ivbox_r span {
		font-size: 2.3em;
	}
}
@media (min-width: 769px) and (max-width: 991px) {
	#pris .pcontent .ivbox_r h1 {
		font-size: 1em;
	}
	#pris .pcontent .ivbox_bn {
    height: 50px;
    width: 50px;
    line-height: 50px;
    font-size: 2em; 
    top: 3px;
    margin-left: -10px;
}
}
/*-------------------------*/
/*     PRODUKTOVERSIGT     */
/*-------------------------*/
#produkt #banner {
	background-color: #3E6E8E;
}
#produkt #banner #bannerimg em {
	color: #5C86A2;
    opacity: 0.52;
    font-size: 2em;
    width: 75px;
    height: 75px;
    line-height: 75px;
    text-align: center;
}
#produkt #banner #bannerimg {
	position: absolute;
	top: 38px;
	padding: 0 10px;
}
#produkt #banner h1, #produkt #banner h2 {
	color: #fff;
}
#produkt #banner h1 {
	margin-top: 50px;
	margin-bottom: 10px;
}
#produkt #kmproducts {
	margin-top: -220px;
}
#produkt #kmproducts .col-sm-4 {
	background-color: #f4dda8;
	height: 775px;
}
#produkt #kmproducts .col-sm-8 {
	background-color: #F9F4EA;
    height: 775px;
    overflow: hidden;
    border-bottom-right-radius: 200px;    
}
#produkt #kmproducts .picker {
	transition: 0.4s all linear;
	line-height: 50px;
	height: 50px;
	padding-left: 20px;
	font-size: 1.1em;
	font-weight: 600;
	cursor: pointer;
}
#produkt #kmproducts .picker em {
    margin-right: 15px;
}
#produkt #kmproducts .picker.active, #produkt #kmproducts .picker:hover {
	background-color: #F9F4EA;
}
#produkt #kmproducts .picker.active {
	background-color: #F9F4EA;
	text-transform: uppercase;
	cursor: default;
}
#produkt #kmproducts .choice {
	height: 775px;
	width: 100%;
	padding: 36px 40px 0 40px;
	position: absolute;
	opacity: 0;
	transition: 0.4s all linear;
	z-index: 1;
}
#produkt #kmproducts .choice.active {
	opacity: 1;
	z-index: 2;
}
#produkt #kmproducts .choice h1 {
	line-height: 1.5em;
	margin-bottom: 5px;
}
#produkt #kmproducts .choice em {
    color: #EBB22C;
    font-size: 8em;
    bottom: 50px;
    right: 90px;
    position: absolute;
	z-index: 1;
}
#produkt #kmproducts .choice ul {
	z-index: 2;
}
#produkt #kmproducts .choice li {
	font-weight: 600;
	font-size: 1.1em;
	margin: 4px 0;
}
#produkt #kmproducts .choice li p {
	margin: 0;
}
#produkt #page > div:nth-child(2) > div > div {
	margin: 40px 0 50px 0;
}
#authorized_accounting {
    background-image: url(images/godkendt.png);
    background-repeat: no-repeat;
    width: 150px;
    height: 120px;
    background-size: contain;
    position: absolute;
    bottom: 23px;
    right: 80px;
    transform: rotate(-15deg);
}
/*--------------------------*/
/*        STANDARDSIDE      */
/*--------------------------*/
#standardside #banner {
    background-color: #3E6E8E;
	color: #fff
}
#standardside #banner p {
	width: 90%;
}
#standardside #banner h1 {
	padding-top: 40px;
}

#standardside #banner #banner-right {
    display: flex;
    height: 100%;
}
#standardside #banner #banner-right > div {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
}
#standardside .blos {
    background-color: #d4eeff;
    padding-top: 25px;
	padding-bottom: 25px;
	margin-bottom: 50px;
}
#standardside #mjw {
	display: none;
}
/*--------------------------*/
/*        52 Tips      */
/*--------------------------*/
#standardside.tips hr {
	margin: 50px 0;

}
#standardside.tips > div.container > div > div.col-sm-5.col-xs-12 > img {
width: auto;
    max-height: 340px;
    height: auto;
}

#standardside > div.container > div > div:nth-child(4) > img {
    margin: 30px 0;
}
/*--------------*/
/*     BODY     */
/*--------------*/
#html {
	position: relative; 
	float: left;
	width: 100%;
	height: 100%;
	max-height: 100%;
	background-color: #e6e6e6;
	overflow: auto;
}

html #body {
	position: relative;
	float: left;
	width: 100%;
	height: auto;
	padding: 0px;
	background-color: #fff;
}

#aspnetForm {
	margin: 0px;
}


/*-----------------*/
/*     TOPMENU     */
/*-----------------*/
body #menuBar {
	left: auto;
	max-width: inherit;
	max-width: 1920px !important;
	padding: 0 75px;
	transition: all 0.3s linear;
	box-shadow: 0px 0px 0px 0px rgba(50,50,50,0);
}
#menuBar.fixed {
	height: 60px;
	box-shadow: 0px 1px 7px 0px rgba(50,50,50,0.25);
}
#menuBar.fixed #topmenu {
	margin-top: 0px;	
}
#menuBar.fixed #logo {
	height: 46px;
	margin-top: 7px;
}
/*-----------------*/
/*     INDHOLD     */
/*-----------------*/
#main-content {
	position: relative;
	float: left;
	width: 100%;
	height: auto;
	background-color: white;
}

body #indhold {
	position: relative;
	float: left;
	width: 100%;
	height: auto;
}

#indhold [class^="col-"] {
	padding-left: 0px;
	padding-right: 0px;
}

#indhold > .km-fullcard {
	float: none !important;
	display: block;
	margin: 0px auto;
}

#indhold .km-fullcard {
	float: none !important;
	display: block;
	margin: 0px auto;
}

#indhold > span > .km-fullcard {
	float: none !important;
	display: block;
	margin: 0px auto;
}

#indhold > div > .km-fullcard {
	float: none !important;
	display: block;
	margin: 0px auto;
}










/*----------------*/
/*     FOOTER     */
/*----------------*/
body footer {
	position: relative;
	float: left;
	width: 100%;
	height: auto;
	padding-top: 40px;
	background-color: #d4eeff;
	border-bottom: 15px solid #477190;
}



footer .footer-box h1 {

}

footer .footer-box p {
	margin: 3px 0px;
}

footer .footer-box a {
	display: block;
	text-decoration: none;
	margin: 3px 0px;
}

footer .footer-box a:hover {
	text-decoration: underline;
}

footer #klubmodul {
	position: absolute;
	top: 15px;
	right: 15px;
	margin: 0px;
}


footer a {
	color:#707070;
	font-weight: 600;
	line-height: 2em;
}
footer p {
	margin: 0;
}
footer .flbox {
	margin-top: 49px;
}









/*-----------------*/
/*      MOBILE     */
/*-----------------*/
@media screen and (max-width: 1280px) {	
	#kmtypeselect a {
		font-size: 1.2em;
	}
}
@media screen and (max-width: 769px) {
	body #indhold {
		padding: 0px !important;
	}

	#main-content .row > div {
		padding: 0px !important;
	}

	body #ctl00_ContentPlaceHolderBody_lblPageContent {
		padding: 0px !important;
	}


	body #menu ul li ul {
		background-color: transparent !important;
	}


	

	.container {
		padding: 0px !important;
	}

	.row {
		margin: 0px !important;
	}
	#kmproducts #c6 {
		padding-bottom: 160px !important;
	}
	#authorized_accounting {		
		right: 20px;
	}
	
}

@media screen and (max-width: 1200px) {
	body #topmenu .menu {
		    margin: 0 10px;
	}
	body #menuBar {
		padding: 0 50px;
	}
	#banner.kmtype h1 {
		font-size: 2.3em;
	}
}

@media screen and (max-width: 990px) {
	body #topmenu .menu {
    	margin: 0 6px;
	}
	body #menuBar {
		padding: 0 20px;
	}
}








#google-maps {
	position: relative;
	float: left;
	width: 100%;
	height: auto;
	overflow: hidden;
}

#google-maps .container {
	position: relative;
	height: auto;
}

#google-maps .row {
	position: relative;
	height: auto;
}


#link-bar {
	position: relative;
	float: left;
	width: 100%;
	height: auto;
}

#link-bar .container {
	position: relative;
	height: auto;
}

#link-bar .row {
	position: relative;
	float: left;
	width: 100%;
	height: auto;
}


#frames-bar {
	position: relative;
	float: left;
	width: 100%;
	height: auto;
}

#frames-bar .container {
	position: relative;
	height: auto;
}

#frames-bar .row {
	position: relative;
	float: left;
	width: 100%;
	height: auto;
}




/*-----------------*/
/*     SLIDERS     */
/*-----------------*/




/* ----------------------------------- */
/* ------- CUSTOM RESPONSIVE --------- */
/* ----------------------------------- */
.heroSlider-fixed {
	position: relative;
}
.km-lang-select {
	display: none;
}
.ellipse {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.boxShadow {
	-webkit-box-shadow: 0px 10px 20px -10px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 10px 20px -10px rgba(0,0,0,0.75);
	box-shadow: 0px 10px 20px -10px rgba(0,0,0,0.75);
}
.hideOnSub {
	display: none;
}
.parallax {
	background-position: center center !important;
	background-attachment: fixed !important;
	background-size: cover !important;
}
.fullCol1 {
	position: relative;
}
.fullCol1:before, .fullCol1:after {
	content: "";
	background: #333333;
	position: absolute;
	top: 0;
	bottom: 0;
	width: 9999px;
}
.fullCol1:before {
	right: 100%;
}
.fullCol1:after {
	left: 100%;
}
.fullCol2 {
	position: relative;
}
.fullCol2:before, .fullCol2:after {
	content: "";
	background: #181818;
	position: absolute;
	top: 0;
	bottom: 0;
	width: 9999px;
}
.fullCol2:before {
	right: 100%;
}
.fullCol2:after {
	left: 100%;
}

.home_link_responsive {
	font-size:2em !important;
	color:#fff;
	width:60px !important;
	height:60px;
	float:left;
	text-align:center;
	z-index:99999;
	display:block;
}
.home_link_responsive:hover, .show_hide_responsive:hover, .menu.create_profile_link_responsive:hover {
	background-color:rgba(255, 255, 255, 0.2);
}
#topmenu .fa-home:before{
     line-height: 65px;
}
/* ----------------------------------- */
/* ------------ KM Farver ------------ */
/* ----------------------------------- */
.km-blue, .chosen-container-single .chosen-single div b:before {
	color: #477190 !important;
}
.km-bg-blue, .chosen-container .chosen-results li.highlighted {
	/*background-color:#4abcea;*/
	background-color: rgb(71,113,144) !important;
}
.km-border-blue {
	border-top: 1px solid rgb(71,113,144) !important;
	border-bottom: 1px solid rgb(71,113,144) !important;
}
.km-bg-blue-fade, .dataTable tbody tr:nth-child(odd) {
	background-color: rgba(71,113,144, 0.2) !important;
}
.km-ico:before {
	color: #fff !important;
	background: #4abcea !important;
}
.km-bico:after, .km-bico:before {
	color: #4abcea !important;
}
/* ---------------------------------- */
/* -------------- BODY -------------- */
/* ---------------------------------- */
#body {
	margin: 0;
	padding: 0;
}
/* ----------------------------------- */
/* -------------- FONTS -------------- */
/* ----------------------------------- */
body { /*BRØDTEKST*/
	font-family: 'Heebo', sans-serif;
	font-size: 1em;
	font-weight: normal;
	color: #303233;
}
h1 {
	font-family: 'Barlow', sans-serif;
	font-size: 2em;
	font-weight: 800;
	line-height: 2.5em;
	margin: 0;
	text-transform: uppercase;
}
h2 {
	font-size: 1.3em;
	color: #303233;
	margin: 0;
}

.text-left {
	text-align: left;
}
.text-right {
	text-align: right;
}
.text-center {
	text-align: center;
}
.text-justify {
	text-align: justify;
}
.text-nowrap {
	white-space: nowrap;
}
.text-lowercase {
	text-transform: lowercase;
}
.text-uppercase, .initialism {
	text-transform: uppercase;
}
.text-capitalize {
	text-transform: capitalize;
}
/* ----------------------------------- */
/* -------------- LINKS -------------- */
/* ----------------------------------- */
#indhold a:link, #indhold a:visited {

	text-decoration: none;
}
#indhold a:hover, #indhold a:active {

}
/* ----------------------------------- */
/* ------------- TOPMENU ------------- */
/* ----------------------------------- */
#body {
	padding-top: 60px;
}
#menuBar {
	background-color: #fff;
	height: 150px;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1002;
}
#topmenu {
	position: relative;
	font-family: 'Barlow', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	float: right;
	display: block !important;
	margin-top: 35px;
	transition: all 0.3s linear;
}
#topmenu .menu {
	margin: 0 15px;
    padding: 5px;
	font-size: 16px;
	display: inline-block;
	text-transform: uppercase;
	color: #707070;
	transition: all 0.2s linear;
}


@media screen and (min-width: 770px) {
	#menu-mobile {
		display: none !important;
		background-color: #477190 !important;
	}
	#menu li {
		display: inline-block;
		position: relative;
		padding: 0;
	}
	#menu li ul {
		opacity: 0;
		visibility: hidden;
		text-align: left;
		padding: 0;
		position: absolute;
		left: 0;
		background-color: #fff;
		margin: 0;
		z-index: 10001;        
		top: 100%;
		transition: 0.2s all linear;
		padding-bottom: 10px;
	}
	#menu li ul li, #menu li ul li a {
		width: 100%;
	}
	#menu li:hover ul {
		visibility: visible;
		opacity: 1;
	}
	#menuBar.fixed li ul {
		box-shadow: 0px 7px 7px 0px rgba(50,50,50,0.25);
	}
	#menuBar.fixed #menu li:hover > a.popout {
		padding-bottom: 20px;
	}
}


#nav-icon3 {
	display: block;
	cursor: pointer;
	height: 100%;
	width: 60px;
}



@media screen and (max-width: 769px) {
	
	#topmenu #menu .level2 a {
		text-indent: 30px;
		background-image: url(../images/responsivebg.png);
	}
	#topmenu #menu .level3 a {
		text-indent: 40px;
		background-image: url(../images/responsivebg.png);
	}
	#topmenu #menu .level4 a {
		text-indent: 50px;
		background-image: url(../images/responsivebg.png);
	}
	#topmenu #menu .level5 a {
		text-indent: 60px;
	}
	#topmenu #menu .level6 a {
		text-indent: 70px;
	}
	#topmenu #menu .level7 a {
		text-indent: 80px;
	}
	.topmn ul {
		padding-left: 0px;
	}
	#topmenu .topmn .menu {
		padding: 0;
	}
	.topmn .popout:after, .topmn .level2 .popout:after {
		content: "\f055";
		font-family: FontAwesome;
		float: right;
		margin-right: 10px;
	}
	.topmn .active:after, .topmn .level2 .active:after {
		content: "\f056";
		font-family: FontAwesome;
		float: right;
		margin-right: 10px;
	}

	.btnwrap span div {
	    /*width: 43px !important;*/
	}

	#km-logged-in-btns > .btnwrapwrap:nth-of-type(1) {
	    right: 45px !important;
	    top: 85px !important;
	}

	#km-logged-in-btns > .btnwrapwrap:nth-of-type(2) {
	    right: 45px !important;
	    top: 120px !important;
	}

	#km-logged-in-btns > .btnwrapwrap:nth-of-type(3) {
	    right: 45px !important;
	    top: 155px !important;
	}

	#km-logged-in-btns > .btnwrapwrap:nth-of-type(4) {
	    right: 81px !important;
	    top: 85px !important;
	}


	#ctl00_cntrlRoleSelection_panLnkAdmin {
	    right: -25px !important;
	    top: 75px !important;
	}



	body #menu {
		z-index: 10000;
	}

	body #topmenu #topmenu-responsive {
		background-color: rgb(71,113,144) !important;
	}

	body #topmenu-responsive:before {
		position: absolute;
		content: "";
		width: 100%;
		height: 100%;
		left: 0px;
		top: 0px;
		background-color: rgba(255, 255, 255, 0.2);
		z-index: 1;
	}

	body #menu li ul li ul {
		border: none;
	}

	body #topmenu-responsive #menu {
		background-color: rgba(0, 0, 0, 0.1) !important;
	}

	body #topmenu-responsive #menu li {
		border-bottom: solid 1px rgba(0, 0, 0, 0.3) !important;
    	border-top: solid 1px rgba(255, 255, 255, 0.15) !important;
	}

	body #menu .menu {
		background-image: none !important;
	}

	body #menu ul li ul .menu {
		background-color: rgba(0, 0, 0, 0.2) !important;
	}

	body #menu ul li ul li ul .menu {
		background-color: rgba(0, 0, 0, 0.4) !important;
	}
}
/* ----------------------------------- */
/* ------------- CONTENT ------------- */
/* ----------------------------------- */
#content {
	position: relative;
	float: left;
}
/* ----------------------------------- */
/* ------------- INDHOLD ------------- */
/* ----------------------------------- */
#indhold {
	position: relative;
	width: 100%;
	padding: 0;
	margin: 0;
	min-height: 300px;
}
#ctl00_ContentPlaceHolderBody_lblPageContent {
	display: block;
}
/* ---------------------------------- */
/* -------------- LEFT -------------- */
/* ---------------------------------- */
#left {
	position: relative;
	float: left;
	width: 172px;
	min-height: 550px;
	margin-bottom: 5px;
	z-index: 1;
}
/* ----------------------------------- */
/* ------------ LEFT MENU ------------ */
/* ----------------------------------- */
#menucon a:hover {
	color: #fff !important;
	background-color: #000;
	border-left: 6px solid #000 !important;
	border-right: 6px solid #000 !important;
	font-weight: 600 !important;
}
#leftmenu {
}
.DynamicMenuStyle {
	display: block !important;
}
.StaticMenuStyle {
	display: block !important;
}
#ctl00_mnSel_mnuMenu a {
	font-weight: normal !important;
}
.IE8Fix {
	margin-top: -5px;
}
.show_left {
	font-size: 0px;
	line-height: 70px;
	text-align: center;
	display: inline-block;
	color: #fff;
	float: left;
	margin-right: 20px;
	text-decoration: none;
	transition: all .1s linear;
	width: 30px;
	height: 57px;
}
.show_left:after {
	background: #000 none repeat scroll 0 0;
	box-shadow: 0 0.3em 0 0 #000, 0 0.6em 0 0 #000;
	content: "";
	font-size: 30px;
	height: 0.08em;
	left: 0;
	position: absolute;
	top: 21px;
	width: 1em;
}
.show_left:hover {
}
.DynamicMenuStyle {
	width: 100%;
}
table.StaticMenuStyle > tbody > tr > td:nth-child(2) > img {
	display: none;
}
table.StaticMenuStyle > tbody > tr > td:nth-child(2) {
	position: absolute;
	right: 15px;
	width: 15px !important;
	height: 15px;
	background: url("images/btn-arrow-right.png") no-repeat center center;
	margin-top: 10px !important;
}
#menucon {
	display: none;
	position: absolute;
	border-top: 0px !important;
	top: 70px;
	width: 340px;
	z-index: 1001 !important;
}
#menucon a {
	display: none;
	color: #000 !important;
	background-color: #fff;
	text-decoration: none;
	line-height: 60px;
	text-indent: 30px;
	width: 330px;
	font-size: 18px !important;
	font-weight: 400 !important;
	border-left: 0px solid #cfcfcf !important;
	transition: all .1s ease-in-out;
}
.StaticMenuStyle {
	display: block !important;
}
/* ----------------------------------- */
/* ----- FOOTER + KLUBMODUL LOGO ----- */
/* ----------------------------------- */

footer {
	position: relative;
	float: left;
	width: 100%;
	text-decoration: none;
	background-color: #fff;
	color: #000;
	position: relative;
	width: 100%;
}
#klubmodul {
	float: right;
	margin: 15px;
	position: relative;
	z-index: 2;
}
/* ----------------------------------- */
/* ---------- IFRAME NYHEDER --------- */
/* ----------------------------------- */

/* ----------------------------------- */
/* ----------- LOGIND BOKS ----------- */
/* ----------------------------------- */

.create_profile_link {
	position: absolute;
	right: 120px;
	background-color: #00a637;
	font-weight: 600;
	top: 0;
}
.show_hide, .show_hide2 {
	position: absolute;
	font-weight: 600;
	z-index: 1001;
	right: 0px;
	top: 0px;
	width: 120px;
	color: #fff;
	line-height: 60px;
	text-align: center;
	background: #224F72;
	/* Skift her */
    
	display: inline-block;
	text-decoration: none;
}
.show_hide i, .show_hide2 i {
	color: #fff;
	font-size: 30px;
	margin-top: 6px;
}
#loginbox, #loginbox2 {
	position: absolute;
	border-top: 0px !important;
	display: none;
	right: 0;
	top: 60px;
	width: 428px;
	z-index: 1001 ! important;
	background-color: #fff;
	border-bottom: 4px solid #224F72;/* Skift her */
}
#loginbox {
	background-color: #fff;
}
#loginbox2 {
	background-color: #fff;
}
.logintop, .logintop2 {
	height: 60px;
	line-height: 60px;
	text-align: left;
	color: #fff;
	background-color: #224F72;
	/* Skift her */
    
	font-weight: 600;
	text-transform: uppercase;
	padding: 0 20px;
	border-bottom: 4px solid #224F72;/* Skift her */
}
.logintop {
	margin-bottom: 30px;
}
#ctl00_lnkCreateprofile {
	float: right;
	text-decoration: none;
	text-transform: none;
	color: #fff;
}
#ctl00_lnkCreateprofile:before {
	content: "\f105";
	font-family: FontAwesome;
	transition: all .1s linear;
	margin-right: 10px;
	font-size: 20px;
}
#ctl00_lnkCreateprofile:hover:before {
	margin-right: 5px;
}
#loginbox .login {
}
#loginbox #logininfo {
	position: relative;
	float: left;
}
#loginbox #logininfo a, #loginbox #logininfo span {
	color: red;
	text-decoration: underline;
}
#usermenu {
	position: absolute;
	width: 100%;
	top: 0;
	right: 0;
	z-index: 10003;
	color: #3D3D3D;
}
#createprofile {
	float: right;
}
#createprofile a {
	color: #343434;
	text-transform: capitalize;
	font-weight: 300;
	font-size: 12px;
	text-decoration: none;
}
#createprofile img {
	display: block;
	margin: 0 auto;
}
#loginbox .login {
	padding: 0 20px;
	height: 200px;
}
#loginbox2 .login {
	padding: 0 20px;
}
#loginbox .login:after {
	content: "";
	position: absolute;
	left: 137px;
	border-width: 7px 7px 0px 7px;
	border-color: #003270 transparent;
	/* reduce the damage in FF3.0 */
    
	display: block;
	width: 0;
	margin-top: 4px;
}
#loginbox #logininfo {
	position: relative;
	float: left;
}
#loginbtn {
	position: relative;
	float: right;
}
#ctl00_ImgLogin {
	font-size: 16px !important;
	text-decoration: none;
	color: #fff;
	text-transform: uppercase;
	display: block;
	border-radius: 3px;
	font-weight: 700;
	height: 40px;
	line-height: 40px;
	text-align: center;
	width: 184px;
	background-color: #00A637;
	/* Skift her */
    
	-webkit-box-shadow: 0px 3px 0px 0px rgba(0, 83, 27, 1);
	-moz-box-shadow: 0px 3px 0px 0px rgba(0, 83, 27, 1);
	box-shadow: 0px 3px 0px 0px rgba(0, 83, 27, 1);
	transition: all 0.1s linear 0s;
}
#ctl00_ImgLogin:hover {
	-webkit-box-shadow: 0px 0px 0px 0px rgba(13, 103, 166, 1);
	-moz-box-shadow: 0px 0px 0px 0px rgba(13, 103, 166, 1);
	box-shadow: 0px 0px 0px 0px rgba(13, 103, 166, 1);
	margin-top: 3px;
	margin-bottom: -3px;
}
#loginbox #logininfo a, #loginbox #logininfo span {
	font-size: 16px !important;
	text-decoration: none;
	color: #fff;
	text-transform: uppercase;
	display: block;
	border-radius: 3px;
	font-weight: 700;
	height: 40px;
	line-height: 40px;
	text-align: center;
	width: 184px;
	background-color: #FFBA53;
	-webkit-box-shadow: 0px 3px 0px 0px rgba(198, 198, 198, 1);
	-moz-box-shadow: 0px 3px 0px 0px rgba(198, 198, 198, 1);
	box-shadow: 0px 3px 0px 0px rgba(198, 198, 198, 1);
	transition: all 0.1s linear 0s;
}
#loginbox #logininfo a:hover {
	-webkit-box-shadow: 0px 0px 0px 0px rgba(198, 198, 198, 1);
	-moz-box-shadow: 0px 0px 0px 0px rgba(198, 198, 198, 1);
	box-shadow: 0px 0px 0px 0px rgba(198, 198, 198, 1);
	margin-top: 3px;
	margin-bottom: -3px;
}
#ctl00_ImgLogin i {
	text-indent: 10px;
	transition: all 0.1s linear 0s;
}
#ctl00_ImgLogin:hover i {
	text-indent: 20px;
}
#ctl00_valReqUsername, #ctl00_valReqPassword {
	position: absolute;
	display: block;
	width: 0px;
	margin-left: 2px;
	font-size: 20px;
}
#loginbox #dkkort {
	margin-top: 2px;
	float: left;
}
#ctl00_valCustUkendt {
	margin-left: 7px;
}
.customprofilebtn {
	text-align: center;
	width: 96px;
	display: inline-block;
	font-size: 16px;
}
.custombg {
	margin-top: 10px;
	padding: 15px 0 10px 0;
}
#profile {
	margin-left: 9px;
	font-size: 12px;
	text-align: center;
}
#ctl00_cntrlRoleSelection_panLnkAdmin hr {
	display: none;
}
#ctl00_txtUsername {
	border: 0 none;
	padding-left: 60px;
	padding: 0 10px 0 50px;
	margin-bottom: 15px;
	height: 40px;
	width: 100%;
	position: relative;
	border: 1px solid #FFE4E1;
}
#ctl00_txtUsername_ico {
	content: "f007";
	position: absolute;
	left: 21px;
	top: 90px;
	width: 43px;
	height: 40px;
	padding: 6px 0;
	text-align: center;
	background: #224F72;
	color: #fff;
	font-size: 32px;
	z-index: 1;
}
#ctl00_txtPassword {
	border: 0 none;
	padding-left: 60px;
	padding: 0 10px 0 50px;
	margin-bottom: 15px;
	height: 40px;
	width: 100%;
	border: 1px solid #FFE4E1;
}
#ctl00_txtPassword_ico {
	content: "f13e ";
	position: absolute;
	left: 21px;
	top: 145px;
	width: 43px;
	height: 40px;
	padding: 6px 0;
	text-align: center;
	background: #224F72;
	color: #fff;
	font-size: 32px;
	z-index: 1;
}
.prodilebtn {
	height: 55px;
}
.prodilebtn a {
	font-size: 16px !important;
	text-decoration: none;
	text-transform: uppercase;
	display: inline-block;
	border-radius: 3px;
	font-weight: 700;
	height: 40px;
	line-height: 40px;
	text-align: center;
	width: 100%;
	margin-bottom: 14px;
	transition: all .1s linear;
}
.prodilebtn a:hover {
	border-bottom-width: 0px;
	margin-top: 3px;
}
.prodilebtnProfile a, .prodilebtnTeams a {
	background-color: #00A637;
	color: #fff;
	border-bottom: 3px solid rgba(198, 198, 198, 1);
}
.prodilebtnLogout a {
	background-color: #CC5151;
	color: #fff;
	border-bottom: 3px solid rgba(160, 64, 64, 1);
}
#ctl00_cntrlRoleSelection_panLnkAdmin a:before {
	content: "Admin login";
	font-size: 16px !important;
	text-decoration: none;
	text-transform: uppercase;
	display: inline-block;
	border-radius: 3px;
	font-weight: 700;
	height: 40px;
	line-height: 40px;
	text-align: center;
	width: 100%;
	margin-bottom: 14px;
	background-color: #0063a7;
	background-image: url(images/adminlogo.png);
	background-position: 116px center;
	background-repeat: no-repeat;
	color: #fff;
	border-bottom: 3px solid rgba(0, 80, 124, 1);
	transition: all 0.1s linear 0s;
}
#ctl00_cntrlRoleSelection_panLnkAdmin a:hover:before {
	border-bottom-width: 0px;
}
#ctl00_cntrlRoleSelection_lnkAdmin {
	font-size: 0px !important;
}
/* ----------------------------------- */
/* ---------- NEWS ARCHIVE ----------- */
/* ----------------------------------- */

.center-text {
	text-align: center!important
}
#newsArchive_rightcol {
	display: none!important
}
.NewsHeading {
	margin-top: -20px!important
}
.NewsHeading h1 {
	text-align: center!important;
	font-size: 30px!important;
}
.NewsHeading h1:after {
	content: "";
	width: 80px!important;
	height: 10px!important;
	display: block!important;
	border-bottom: 2px solid red!important;
	margin-right: auto!important;
	margin-left: auto!important;
	margin-bottom: 59px!important;
}
#newsArchive_leftcol a:link {
	color: #000!important
}
#newsArchive_leftcol .NewsItem {
	border: none !important;
	margin-right: 5px!important;
	padding: 5px 10px !important;
	position: relative !important;
	marign-bottom: 20px!important;
	width: 47%!important;
	float: left!important;
	margin-bottom: 52px!important;
}
#newsArchive_leftcol .NewsItem:hover .NewsHeader span {
text-decoration:none!important!important
}
#newsArchive_leftcol .NewsItem:hover .newsImgCon {
	background-size: 100%!important;
	text-decoration: none!important
}
#newsArchive_leftcol .NewsName {
	position: absolute!important;
	top: 305px!important;
	left: 100px!important;
	font-size: 14px!important;
font-style: normal!important!important;
	font-weight: 700;
	color: #000!important;
}
#newsArchive_leftcol .NewsAuth img {
	display: none!important
}
#newsArchive_leftcol .NewsHeader {
	color: #000 !important;
	font-weight: 700 !important;
	font-size: 20px !important;
	margin-top: 20px !important;
	display: block!important;
}
#newsArchive_leftcol .newsImgCon {
	width: 100%!important;
	display: block!important;
	height: 250px!important;
	background-size: 115%!important;
	background-repeat: no-repeat!important;
	-webkit-transition: all 600ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
	transition: all 600ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
	background-position: center!important;
}
#newsArchive_leftcol .NewsTeaser {
	margin-top: 17px !important;
	overflow: hidden!important;
	height: 100px !important;
	color: #587986;
}
#newsArchive_leftcol .NewsDateTxt {
	font-style: normal !important;
	positioN: absolute !important;
	top: 304px !important;
	left: 12px !important;
	padding-right: 8px !important;
	border-right: 1px solid #000 !important;
}

/* ----------------------------------- */
/* ----------- SYSTEM STYLE ---------- */
/* ----------------------------------- */
#hall {
	overflow-x: scroll;
}
#EventMembers {
	color: #000 !important;
}
.FormIndhold {
	background-attachment: fixed;
	background-color: #FFFFFF;
	border: 1px solid #CCCCCC;
	color: #000000;
	width: 250px;
}
table {
	font-size: inherit;
}
td {
	margin: 2px 2px 2px 2px;
	margin: 12px 12px 12px 12px;
}
.td {
	margin: 2px 2px 2px 2px;
	background-image: url(images/Tabelbg.gif);
}
.tdalert {
	border: 2px;
	border-style: dotted;
	border-color: green;
	padding: 3pt 3pt;
	margin: 2px 2px 2px 2px;
	background-color: #000000;
}
.tdSize11 {
	border-style: solid;
	color: #a5abb1;
	border-width: 1px;
	font-size: 11px;
}
.tdSize14 {
	border-style: solid;
	color: #a5abb1;
	border-width: 1px;
	text-decoration: underline;
	font-size: 14px
}
#TipBox {
	display: none;
	position: absolute;
	z-index: 1000;
	border: green dotted 1px;
	padding: 5px;
	background-color: #FFFFFF;
}
.TipBox {
	display: none;
	position: absolute;
	font-size: 10px;
	font-weight: bold;
	font-family: verdana;
	border: #72B0E6 solid 1px;
	padding: 15px;
	color: #1A80DB;
	background-color: #FFFFFF;
}
.arrow-button {
	display: none;
}
#responsive-login {
	display: none;
}
.menu.create_profile_link_responsive {
	display: none !important;
}
.show_hide_responsive {
	display: none;
}

@media screen and (max-width: 769px) {
#topmenu {
	position: fixed;
	z-index: 999;
	background-color: transparent;
	top: 60px;
	width: 100%;
	left: -100%;
}
#topmenu-responsive.shrink.after {
	top: 40px !important;
}
#topmenu-responsive.shrink {
	top: 40px !important;
}
#topmenu-responsive {
	top: 60px !important;
	position: fixed !important;
	overflow-y: scroll;
	overflow-x: hidden;
	height: 100vh;
	display: block;
	padding-bottom: 60px;
	width: 80%;
	right: 100%;
	transition: ease-out 0.4s;
	background-color: #474b50;
}
#topmenu-responsive.after {
	top: 60px !important;
	right: 20%;
	transition: ease-out 0.4s;
	animation-name: shadow;
}
.home_link_responsive {
	background-color:#224F72;
	border-right:1px solid #fff;
}
#menu {
	left: 0px !important;
	padding: 0 !important;
}
.topmn > ul {
	width: 100%;
}
#menu-mobile {
	height: 60px !important;
	border-bottom: 1px solid #000;
}
.show_hide_responsive, .menu.create_profile_link_responsive {
	color: #fff !important;
	border: none !important;
}
#nav-icon3 span {
	background-color: #fff !important;
	height: 4px !important;
}
#shadow-box {
	top: 60px !important;
}
body #usermenu {
	top: 0px !important;
}
#nav-icon3 {
	display: block;
	cursor: pointer;
	height: 50px;
	width: 60px;
	position: relative;
	top: 5px;
}
#mobileLogo {
	position: absolute;
	top: 0;
	left: 0;
	height: auto;
	
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
#mobileLogo img {
	width: 15%;
	margin: 10px;
	float: left;
}
#mobileLogo span {
	display: block;
	width: 50vw;
	line-height: auto;
	color: #fff;
	text-transform: uppercase;
	font-size: 1.1em;
	text-align: center;
}
#usermenu .logind a {
	height: 45px;
	padding-top: 5px;
}
#usermenu .logind a i:before {
	line-height: 40px !important;
}
#loginbox, #loginbox2 {
	position: absolute;
	border-top: 0px !important;
	display: none;
	right: 0;
	top: 45px;
	width: 428px;
	z-index: 1001 ! important;
	background-color: #fff;
	border-bottom: 4px solid #000;
}
.show_hide, .show_hide2 {
	line-height: 45px !important;
	padding-top: 0 !important;
}


#topmenu .fa-home:before {
    line-height: 40px;
    transition: ease 0.4s;
}


}
/* ------------------------------------- */
/* ----------- Responsive CSS ---------- */
/* ------------------------------------- */





@media (min-width: 1280px) and (max-width: 1625px) {
	#forside #quotebox .container {
		width: 1000px;
	}	
}
@media (min-width: 1180px) and (max-width: 1279px) {
	#forside #quotebox .container { 
		width: 900px;
	}
}
@media (min-width: 1080px) and (max-width: 1179px) {	
	#forside #quotebox .container { 
		width: 850px;
	}
	#forside #quotebox {
		padding-top: 100px;	}
	
}
@media (min-width: 770px) and (max-width: 1080px) {
	#forside #quotebox .container { 
		width: 800px;		
	}
	#forside #quotebox {
		padding-top: 100px;
	}
}

@media (max-width: 769px) {
	#forside #quotebox { 
		padding-top: 100px;
		    border-bottom-right-radius: 100px;
    border-top-left-radius: 100px;
	}
}
@media (min-width: 1375px) and (max-width: 1625px) {
	#forside .frontnd, .frontnd {
	font-size: 2em;
	
}
#forside .frontna, .frontna {
	font-size: 2.3em;
	
}
#forside .frontnt, .frontnt {
	font-size: 2em;
	
}
}

@media (min-width: 1100px) and (max-width: 1374px) {
	#forside #frontnumbers, #frontnumbers {
		padding-left: 80px;
	}
#forside .frontnd, .frontnd {
	font-size: 1.8em;
	
}
#forside .frontna, .frontna {
	font-size: 2em;
	
}
#forside .frontnt, .frontnt {
	font-size: 1.8em;
	
}
}
@media (min-width: 992px) and (max-width: 1099px) {
	#forside #frontnumbers, #frontnumbers {
		padding-left: 80px;
	}
#forside .frontnd, .frontnd {
	font-size: 1.6em;
	
}
#forside .frontna,.frontna {
	font-size: 1.8em;
	
}
#forside .frontnt, .frontnt {
	font-size: 1.6em;
	
}
}
@media screen and (max-width: 1850px) {
	#ovrige #pffeedback > div > div > div {
		padding-left: 100px;
	}
}
@media screen and (max-width: 1659px) {
	#privat #banner.kmtype > div.container > div > div.col-sm-8.col-xs-12 > div {
		padding-right: 50px;
		padding-left: 100px;
	}
	#ovrige #banner.kmtype #bannerimg {
		height: 235px;
		bottom: 75px;
	}
	#ovrige #pffeedback > div > div > div {
		padding-left: 200px;
	}
}
@media screen and (max-width: 1600px) {
	#klubforening #page .reviews:before {		
		height: 60%;
		background-position: left bottom;
		margin-top: 75px;
	}
	#klubforening #page .reviews:after {
		content: "";		
		height: 150px;
		background-size: contain;		
	}
}
@media screen and (max-width: 811px) {
	html body #topmenu .menu {
    margin: 0 4px;
    font-size: 12px;
} 
}
@media screen and (max-width: 1500px) {
	#banner > div.container > div > div.col-sm-8.col-xs-12 > div {
		padding-left: 200px;
	}
	#ovrige #banner.kmtype #bannerimg {
		height: 320px;
	}
	#banner > div.container > div > div.col-sm-8.col-xs-12 > div {
		padding-left: 150px;
	}
	#km_side #banner > div.container > div > div.col-sm-8.col-xs-12 > div {
		padding-left: 0px;
	}
	#kig #banner > div.container > div > div.col-sm-8.col-xs-12 > div {
		padding-left: 50px;
	}
	#omkm #banner > div.container > div > div.col-sm-8.col-xs-12 > div {
		padding-left: 50px;
	}
	#app #banner h1 {
		font-size: 3em;
	}
	#app #banner h2 {
		margin-top: 20px;
	}
	#app #icons .fa-calculator {
		left: 450px;
	}
	#app #icons .fa-calendar-alt {
		left: 535px;
	}
	#app #icons .fa-credit-card {
		left: 575px;
	}
	#app #icons .fa-globe {
		left: 575px;
	}
	#app #icons .fa-envelope {
		left: 535px;
	}
	#app #icons .fa-users {
		left: 438px;
	}
	#produkt #banner > div.container > div > div.col-sm-8.col-xs-12 > div {
		padding-left: 0px;
	}
	#pris #banner > div.container > div > div.col-sm-8.col-xs-12 > div {
		padding-left: 0px;
	}
	#standardside #banner > div.container > div > div.col-sm-8.col-xs-12 > div {
    padding-left: 0px;
}
}
@media (min-width: 992px) and (max-width: 1450px) {
	#privat #banner.kmtype > div.container > div > div.col-sm-8.col-xs-12 > div {
		padding-right: 50px;
		padding-left: 200px;
		font-size: 0.8em;
	}
}
@media screen and (max-width: 1450px) {
	#ovrige #pffeedback > div > div > div {
		padding-left: 300px;
	}
}
@media screen and (max-width: 1400px) {
	#klubforening #page .reviews:before {
		height: 40%;
		margin-top: 170px;
	}
	#klubforening #page .reviews:after {		
		height: 100px;
		margin-top: 30px;
	}
	#privat #pfdsf:before {
		background-size: contain;
		height: 300px;
		margin-top: 60px;
	}
	#privat #pfdsf:after {
		background-size: contain;
		width: 200px;
	}
	#app #appright h2 {
		font-size: 1.2em;
	}
}

@media screen and (max-width: 1340px) {
	#ovrige #banner.kmtype #bannerimg {
		height: 250px;
		bottom: 75px;
	}
	#privat #pfdsf:after {
		width: 150px;
	}
}


@media screen and (max-width: 1300px) {
	#omkm #daily .col-sm-6 {
		padding: 20px 30px;
		height: 160px;
	}
	#app #icons .fa-calculator {
		left: 350px;
	}
	#app #icons .fa-calendar-alt {
		left: 435px;
	}
	#app #icons .fa-credit-card {
		left: 475px;
	}
	#app #icons .fa-globe {
		left: 475px;
	}
	#app #icons .fa-envelope {
		left: 435px;
	}
	#app #icons .fa-users {
		left: 338px;
	}
	#app #banner > div.container > div > div.col-sm-8.col-xs-12 > div {
    padding-left: 100px;
}
}




@media (max-width: 1279px) {
	#forside #fscreen .fscreenlink span:first-child { 
		margin: -20px 25px 0 21px;
	}
	#forside #fscreen .fscreenlink {
		width: 12.1%;
	}
	#forside #fscreen .fscreenlink span:last-child {
		text-align: center;
		display: block;
		color: #000;
	}
	#forside #fscreen-img {
		margin-top: 70px;
		    width: 100%;
    right: auto;
    left: -120px;

	}
	#fscreen-left {
		text-align: center;
	}
	#forside #fscreen-img > div {		
		right: 153px;
		top: 87px;
		height: 425px;
		width: 652px;
	}
	#forside #fscreen-right {
		margin-top: 225px;
	}
	#forside .fscreencontent-right {
		margin-top: 25px;		
	}
	#forside .fscreencontent {
		height: auto;
	}
	#forside #fscreen-right {
		height: 690px;
	}
		#forside .fscreencontent-right > div {
		margin-bottom: 10px;
	}
	#banner.kmtype > div.container > div > div.col-sm-8.col-xs-12 > div {
		padding-left: 100px;
	}
	#page .reviews .col-xs-12 {
		padding: 0 20px;
	}
	#klubforening #page .reviews:before {
		margin-top: 0;
	}
	#kmsalg > div > div > div:nth-child(1) {
		padding-top: 60px;
	}
	#kmsalg > div > div > div:nth-child(1) h1 {
		font-size: 1.7em;
		margin-bottom: 30px;
	}
	#kmsalg #kmmap {
		height: 277px;
		padding-top: 58px;
		text-indent: 61px;
		font-size: 0.8em;
	}
	#kmsalg #kmmap {		
		height: 277px;
		padding-top: 70px;
		text-indent: 80px;
	}
	#privat #banner.kmtype #banner-right {
		padding: 0px 20px;
	}
	#ovrige #fordelboxright > div:nth-child(2) > p {
		font-size: 0.95em;
	}
	#ovrige #rcboxiconsmax h2 {
		font-size: 1.2em;
	}
	#kig #presentation iframe {
		height: 440px;
	}
	#kig #instruk ul {
		margin-left: 0;
		padding-left: 20px;
	}
	#omkm #suc > div.col-md-5.col-sm-12.col-xs-12 > img {
		width: 445px;
		margin-top: -30px;
		margin-left: -50px;
	}
	#produkt #kmproducts .picker {
		padding-left: 15px;
		font-size: 1em;
	}
	#produkt #kmproducts .picker em {
		margin-right: 10px;
	}
	#produkt #kmproducts .choice em {
		font-size: 6em;
	}
	#pris #banner h2 {
		font-size: 1.2em;
	}
	#pris .pcontent h2 {
		font-size: 1em;
	}
	#pris .pcontent {	
		padding: 20px 10px 10px 10px;
		height: 425px;
	}
	#pris .pcontent em {
		margin-right: 10px;
	}
	#pris #priscalc {		
		border-bottom-left-radius: 100px;
	}
	#pris .pbottom .pbtxt {
		font-size: 0.9em;
	}
	#kmmapform > div {		
		width: 480px;
	}
	#standardside .rcbox {
		border-bottom-right-radius: 100px;
    	border-top-left-radius: 100px;
	}
}


@media screen and (max-width: 1215px) {

	#omkm #daily .col-sm-6 {
		height: 185px;
	}
	#omkm #info {
		height: 515px;
	}
}

@media screen and (max-width: 1200px) {
	#banner.kmtype > div.container > div > div.col-sm-8.col-xs-12 > div {
		padding-left: 200px;
		padding-right: 50px;
	}
	#banner.kmtype h1 {
		font-size: 2.3em;
	}
	#omkm #daily > div.col-sm-12.col-xs-12 {
		padding: 50px 0 25px 0;
	}
	#omkm #daily > div.col-sm-12.col-xs-12 h2 {
		padding: 0 10px;
	}
	#omkm #daily > div.col-sm-12.col-xs-12 {
		height: 140px;
	}
	#omkm #info {
		height: 510px;
	}
}

@media screen and (max-width: 1140px) {
	#privat #banner.kmtype > div.container > div > div.col-sm-8.col-xs-12 > div {
		padding-left: 300px;
	}
	#privat #pfdsf:before {
		height: 250px;
		margin-top: 100px;
	}
	#page.kmtype #pfdsftitel.reviewstitle {
		font-size: 1.3em;
	}
	#banner.kmtype #bannerimg {
		height: 300px;
	}
	#app #icons .fa-calculator {
		left: 250px;
		top: 7px;
	}
	#app #icons .fa-calendar-alt {
		left: 335px;
	}
	#app #icons .fa-credit-card {
		left: 375px;
	}
	#app #icons .fa-globe {
		left: 375px;
	}
	#app #icons .fa-envelope {
		left: 335px;
	}
	#app #icons .fa-users {
		left: 238px;
		top: 430px;
	}
}


@media screen and (max-width: 1100px) {
	#kmsalg > div > div > div:nth-child(1) h1 {		
		padding-right: 20px;
		padding-left: 75px;
	}
	#privat #page .reviews:after {
		opacity: 0.1;
	}
	#page .rcbox {
		border-bottom-right-radius: 100px;
		border-top-left-radius: 100px;
	}
	#ovrige #pffeedback:before {
		height: 380px;
		top: 225px;
	}
	#omkm #daily .col-sm-6 h2 {
		font-size: 1.2em;
	}
}
@media screen and (max-width: 1035px) {
	#omkm #daily .col-sm-6 {
		padding: 20px 20px;
	}
}
@media screen and (max-width: 1024px) {
	#page .reviewstitle > h1 {
		font-size: 1.7em;
	}
	#privat #pfdsf:before {
		margin-top: 55px;
	}
}
@media (min-width: 992px) and (max-width: 1060px) {
	body #topmenu .menu {
		margin: 0 8px;
		    font-size: 15px;
	}
}
@media (max-width: 991px) {	
	#kmsalg #kmmap {		
		height: 214px;
		padding-top: 70px;
		text-indent: 80px;
	}
	#kmmapform > div {
		
		width: 371px;
		
	}
	body #topmenu .menu {
		margin: 0 4px;
		font-size: 14px;
	}
	#forside #frontnumbers, #frontnumbers {
		padding: 0px 0 0 140px;
		    height: 400px;
    background-size: cover;
	}
	#kmtypeselect a {
		font-size: 1em;
	}
footer .flbox {
    margin-top: 0;
}

#forside .frontnd, .frontnd  {
	font-size: 1.6em;
	margin-top: 40px;
	
}
#forside .frontna, .frontna {
	font-size: 1.8em;
	
}
#forside .frontnt, .frontnt {
	font-size: 1.6em;
	
}
#forside #qclose {
    background-color: #EBB22C;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 6em;
    color: #fff;
    justify-content: center;
	    z-index: 3;
	position: relative;
}
	footer a {
		line-height: 1.5em;
	}
	#forside #fscreen .fscreenlink span:first-child:after {
    	width: 0px;
	}
	#forside #fscreen .fscreenlink {
		height: 0px;
		border: 0px;
		width: 90px;
	}
	#forside #fscreen .fscreenlink span:first-child {
		margin: -20px 14px 0 14px;		
	}
	#forside #fscreen .fscreenlink span:last-child {
		font-size: 0.9em;
	}
	#forside #fscreen-img {
		width: 100%;
		left: -80px;
		margin-top: 100px;
	}
	#forside #fscreen-right {
		margin-top: 150px;
	}
	#forside #fscreen-img > div {
		right: 118px;
		top: 67px;
		height: 329px;
		width: 505px;
	}
	#forside .fscreencontent h1 {
		margin-bottom: 20px;
		font-size: 1.6em;
	}
	#forside #quotebox { 
		padding-top: 100px;
		border-top-left-radius: 100px;
		border-bottom-right-radius: 80px;
	}
	#forside #quotebox > div > div > div.col-xs-12 {
		text-align: center;
	}
	#forside #quotebox h1 {
		display: inline-block;
		padding: 0 30px;
	}
	#banner.kmtype > div.container > div > div.col-sm-8.col-xs-12 > div {
		padding-left: 100px;
	}
	#banner.kmtype > div.container > div > div.col-sm-8.col-xs-12 > div {
		padding-left: 200px;
		padding-right: 25px;
	}
	#banner.kmtype #banner-right {
		padding: 0;
	}
	#banner.kmtype h1 {
		font-size: 1.9em;
	}
	#banner.kmtype > div.container > div > div.col-sm-8.col-xs-12 > div > h2 {
		font-size: 1.1em;
	}
	#page.kmtype .fordelbox {		
		height: 125px;
	}
	#fordelboxwrap {
		padding-top: 50px;
		padding-bottom: 30px;
	}	
	#page.kmtype #fordelboxcentersm > div {
		padding: 0 20px;
	}
	#page.kmtype #rcboxicons {
		padding-top: 35px;
	}
	#page.kmtype #rcboxicons em {
		width: 13.7%;	
		font-size: 3em;
	}
	#page .rcbox {
		border-bottom-right-radius: 100px;
		border-top-left-radius: 100px;
	}
	#klubforening #page .reviews:before {
		margin-top: 180px;
		opacity: 0.1;
	}
	#page .reviewstitle > h1 {
		z-index: 3;
		position: relative;
	}
	#klubforening #page .reviews:after {
		height: 100px;	
		opacity: 0.1;
	}
	#kmsalg > div > div > div:nth-child(1) h1 {
		font-size: 1.3em;
		margin-bottom: 20px;
	}
	#kmapp > div > div > div.col-sm-8.col-xs-12 > div {
		margin-top: 25px;
	}
	#privat #banner.kmtype > div.container > div > div.col-sm-8.col-xs-12 > div {
		padding-left: 190px;
	}	
	#privat #banner.kmtype #banner-right h2 {		
		font-size: 1.7em;
	}
	#page.kmtype #pfdsftitel.reviewstitle {
		font-size: 1em;
	}
	#privat #page .reviews:after {
		opacity: 1;
	}
	#privat #page.kmtype .fordelbox {
		height: 105px;
	}
	#privat #fordelboxleft > div:nth-child(2), #privat #fordelboxright > div:nth-child(2) {
		height: 180px;
	}
	#forbund #fofeedback h2, #forbund #fofeedback > div > div > div > p:nth-child(3) {
		max-width: 100%;
	}
	#forbund #fofeedback ul{
		max-width: 50%;
	}
	#forbund #fofeedback img {
		top: 260px;
		width: 45%;
		height: auto;
	}
	#fofeedback > div > div > div > h1 {   
		line-height: 1.5em;
		margin: 0 0 1em 0;
	}
	#forbund #foaf .foafbox > div {
		margin: 15px 0px;
	}
	#forbund #foaf .foafbox p {
		padding: 0 10px;
		height: 56px;		
	}
	#ovrige #banner.kmtype h1 {
		font-size: 1.7em;
	}
	#ovrige #page.kmtype .fordelbox {
		height: 150px;
	}
	#ovrige #fordelboxright > div:nth-child(2) > p, #ovrige #fordelboxright > div:nth-child(1) > p {
		font-size: 0.9em;
	}
	#ovrige #page > div.container > div > div > h1 {
		line-height: 1.5em;
	}
	#ovrige #pffeedback > div > div > div {
		padding-left: 0px;
	}
	#ovrige #rcboxiconsmax {
		padding-left: 200px;
	}
	#ovrige #pffeedback p {
		width: 100%;
		padding-left: 200px;
	}
	#kig #banner h1 {
		font-size: 3em;
	}
	.bighead h1 {
		line-height: 1.2em;
		margin-bottom: 40px;
	}
	#kig #presentation iframe {
		width: 80%;
		height: 340px;
	}
	#omkm #banner h1 {
		font-size: 3em;
	}
	#omkm #suc > div.col-md-5.col-sm-12.col-xs-12 {
		text-align: center;
	}
	#omkm #suc > div.col-sm-12.col-md-7.col-xs-12 > h1 {
		text-align: center;
	}
	#omkm #suc > div.col-md-5.col-sm-12.col-xs-12 > img {
		width: 445px;
		margin-top: -30px;
		margin-left: auto;
		margin-right: auto;
	}
	#app #banner > div.container > div > div.col-sm-8.col-xs-12 > div {
		padding-left: 0px;
	}
	#app #appinfo h1 {
		font-size: 1.9em;
	}
	#app #appright h1 {
		margin-top: 20px;
		margin-bottom: 35px;
		line-height: 1.3em;
	}
	#app #icons .fa-calculator {
		left: 190px;
		top: 7px;
	}
	#app #icons .fa-calendar-alt {
		left: 275px;
	}
	#app #icons .fa-credit-card {
		left: 315px;
		    top: 210px;
	}
	#app #icons .fa-globe {
		left: 315px;
		top: 320px;
	}
	#app #icons .fa-envelope {
		left: 275px;
		top: 420px;
	}
	#app #icons .fa-users {
		left: 178px;
		top: 510px;
	}
	#produkt #kmproducts .picker {
		padding-left: 10px;
		font-size: 0.9em;
	}
	#produkt #kmproducts .picker em {
		margin-right: 5px;
	}
	#produkt #kmproducts .picker.active {
		text-transform:none;
	}
	#produkt .choice h2 {
		font-size: 1.1em;
	}
	#produkt #kmproducts .choice li {
		font-size: 1em;
		text-shadow: 2px 2px 2px #F9F4EA;
	}
	#pris #banner h2 {
		width: 95%;
	}
	#pris .pcontent {
		padding: 20px 5px 10px 5px;
		height: 425px;
	}
	#pris .pcontent h2 {
		font-size: 0.9em;
	}
	#pris .pcontent em {
		margin-right: 5px;
	}
	#pris .pbottom h1 {
		font-size: 1.5em;
	}
	#pris .pprice {
		font-size: 3em;
		height: 80px;
	}
	#pris #guld .pprice {
		height: 105px;
	}
	#pris #custom .pprice {
		font-size: 1.8em;
	}
	#pris .pcontent img {
		width: 80px;
		bottom: -8px;
	}
	#pris .pheader {
		font-size: 1.5em;
	}
	#pris #standard .pbottom .pbtxt {
		padding: 10px 30px;
		font-size: 0.8em;
	}
	#pris #standard .pbottom .pbtxt .fa-hand-point-right {
		left: 21px;
		top: -6px;
	}
	#pris #standard #standardline {
		margin-top: 65px;
	}
	#pris #guld .pbottom .pbtxt {
		padding: 0px 32px;
		font-size: 0.8em;
	}
	#pris #custom .pbottom .pbtxt {
		padding: 10px 32px;
		font-size: 0.8em;
	}
	#pris #standard .peks {
		margin-top: 195px;
		height: 209px;
	}
	#pris #guld .peks {
		margin-top: 140px;
		height: 209px;
	}
	#pris #custom .peks {
		margin-top: 140px;
		height: 209px;
	}
	#pris #priscalc {
		margin-top: 70px;
	}
	#standardside.tips > div.container > div > div.col-sm-5.col-xs-12 > img {
		width: 90%;
		height: auto;
		margin-top: 34px;
	}
}


@media (max-width: 950px) {
	#omkm #daily > div:nth-child(2) > h2 {
		font-size: 1.1em;
	}
	#omkm #daily .col-sm-6 {
		height: 185px;
	}
}


@media (max-width: 935px) {
	#ovrige #rcboxiconsmax {
		padding-left: 300px;
	}
	#ovrige #pffeedback p {
		padding-left: 300px;
	}
}
@media (max-width: 875px) {
	#privat #page .reviews:after {
		opacity: 0.1;
	}
}
@media (min-width: 770px) and (max-width: 992px) {
	#kmapp > div > div > div.col-sm-8.col-xs-12 > div h1 {
		font-size: 48px;
		margin-top: 50px;
	}
	#forside #banner #banner-right {
		width: 350px;
		 padding: 60px 20px;
	}
	#forside #banner #bannerimg {
		border-right: 350px solid transparent;
	}
	#forside > div:nth-child(2) > div > div > h1:nth-child(1) {
		line-height: 1.3em;
		margin: 0px 0 10px 0;
	}
	#forside .fbox {
		height: 344px;
	}
	#forside .fbox h1 {
		font-size: 1.9em;
	}
	#klubforening #fordelboxleft > div:nth-child(3) > p {
		font-size: 0.8em !important;
		margin-top: 7px !important;
	}
	#page.kmtype #kmsalg #kmmap {
		height: 214px;
		padding-top: 56px;
		font-size: 0.8em;
		text-indent: 65px;
	}
	#privat #banner.kmtype #bannerimg {
		height: 276px;
	}
	#privat #banner.kmtype h1 {
		font-size: 1.7em;
	}
	#forbund .fordelbox p {
		line-height: 1.2em;
	}
}
@media (max-width: 769px) {
	#ctl00_ContentPlaceHolderBody_lblPageContent a {
    word-break:break-word !important;
}
	#main-content #standardside #banner+.container .col-xs-12, #main-content #standardside #page .col-xs-12 {
		padding-left: 10px !important;
		padding-right: 10px !important;
	}
	#newsarchiveoverview {
		margin-top: 80px;
	}
	#kmmapform > div {
		width: 100%;
		max-width: 480px;
		float: none;
		margin: 0 auto;
		padding: 1px 20px 30px 20px;
	}
	#kmmapform #formsend, #kmmapform #formsend a {
		float: none;
	}
	#page .rcbox {
		margin-left: -10px;
		margin-right:-10px;
		padding-left: 10px;
		padding-right: 10px;
		border-bottom-right-radius: 50px;
		border-top-left-radius: 50px;
		padding-top: 30px;
	}
	#getapp a {
		margin-bottom: 10px;
		margin-right: 0;
	} 
	#kmtypeselect {
		margin-top: 60px;
	}
	#page {
		padding: 0 10px;
	}
	h1 {
		font-size: 2em;  
		line-height: 1.3em;
		margin: 0 0 15px 0;
	}
	#kmtypeselect a {
		font-size: 0.9em;
		height: 44px;
		line-height: 44px;
	}
	#forside .qtext > div {
		top: 25px;
	}
	#forside #frontnumbers, #frontnumbers {
		padding: 0px 0 0 40px;
		height: 630px;
		background-size: cover;
	}
	#forside .frontnd, .frontnd {
		font-size: 1.6em;
		margin-top: 40px;

	}
	#forside .frontna, .frontna {
		font-size: 1.8em;

	}
	#forside .frontnt, .frontnt {
		font-size: 1.6em;

	}
	#forside #quotebox .qtext {
		display: none;
		position: absolute;
		top: 100%;
		width: 100vw;
		height: 200%;
		opacity: 1;
		z-index: 3;		
	}
	#forside #page > div > div > .col-xs-12 > h1, #forside #page > div > div > .col-xs-12 > h2, #forside #page > div > div > .col-xs-12 > p  {
		padding: 0 15px !important;
	}
	body #menu li a {
		line-height: 60px !important;
		 font-size: 1.2em !important;
    text-transform: none;
    text-decoration: none;
    font-weight: 400;
		color: #fff !important;
	}
	#banner {
		height: 100vh !important;
		margin-top: 0px !important;
	}
	#forside #banner #banner-right {  
		width: 100%;
		top: 50%;
		height: 50%;;
	}
	body #menuBar {
		background-color: transparent;
	}
	#logo {		
		display: none;
	}
	html body #indhold #mlogo {
		    display: inline-block !important;
		height: 107px !important;
		width: auto !important;
		margin-top: 80px !important;
		margin-left: 20px !important;
	}
	#menuBar {
		height: 60px;
	}
	#forside #banner #bannerimg {	
		height: 50%;
		margin-top: 60px;
		width: 100vw;
		border-right: 0px solid transparent;		
		background-position: top center;
	}
	#forside #banner h1 {	
		font-size: 1.5em;
		margin-left: 20px;
		margin-top: 90px;
	}
	#forside .fbox {   
   		margin: 0 0 20px 0 !important;
		height: auto;
		padding: 20px 20px 60px 20px !important;
		border-bottom-right-radius:0px !important;
		border-top-right-radius:40px !important;
		border-top-left-radius:40px !important;
		border-bottom-left-radius:40px !important;
   }
	#forside .fbox a {		
		right: 20px;		
	}
	#forside #fboxwrap {
		float: left;
		margin-bottom: 50px;
	}
	#forside #fscreen .fscreenlink {   
		width: auto;
		margin:0 3px;
	}
	#forside #fscreen .fscreenlink span:first-child {
		width: 45px;
		height: 45px;
		margin: 0;
		position: relative;
	}
	#forside #fscreen .fscreenlink span:last-child {	
		position: absolute;
		left: 0;
		top: 138px;
		font-size: 2em;
		padding: 10px 50px;
    	background-color: rgba(250,250,250,0.75);
		display: none;
		margin-left: -10px;
	}
	#forside #fscreen .fscreenlink.active span:last-child {
		display: block;
	}
	#forside #fscreen .fscreenlink em {
		font-size: 1.3em;
		line-height: 45px;
	}
	#forside #fscreen-img {
		width: 875px;
		height: 560px;
		float: right;
		margin-top: 35px;
		right: 45px !important;
		top: 0;
		left: auto;
		position: relative;
	}
	#forside #fscreen-img > div {
		right: 138px;
		top: 79px;
		height: 383px;
		width: 588px;
	}
	#forside #fscreen-right {
    margin-top: 0px;
}
	#forside #quotebox, #forside #frontnumbers, #frontnumbers {
		margin-left: -10px;
		margin-right:-10px;
	}
	#forside #frontnumbers, #frontnumbers {
		border-top-left-radius: 150px;
	}
	footer img {
		height: 125px;
		width: auto;
	}
	#screen-content > footer > div > div > div.col-md-9.col-sm-7.col-xs-12 > div:nth-child(1) > div {
		margin-top: 20px;
	}
	body footer {	
		height: auto;
	}
	#banner.kmtype #bannerimg {
		height: 50%;
		opacity: 0.5;
		background-position: bottom right;		
	}
	html body #indhold #banner.kmtype #mlogo {
		display: inline-block !important;
		position: absolute;
		height: 75px !important;		
		margin-top: 0px !important;
		margin-left: 10px !important;
		top: 10px;
	}
	#banner.kmtype > div.container > div > div.col-sm-8.col-xs-12 {
		display: inline-block;
	}
	#banner.kmtype > div.container > div > div.col-sm-8.col-xs-12 > div {
		padding-left: 10px;
		padding-right: 10px;
	}
	#banner.kmtype h1 {
		font-size: 1.7em;
		margin-top: 70px;
		line-height: 75px;
		margin-left: 80px;
	}
	#banner.kmtype > div.container > div > div.col-sm-8.col-xs-12 > div > h2 {
		font-size: 1em;
	}
	#banner.kmtype #banner-right {
		position: absolute;
		height: auto !important;
		bottom: 110px;
		width: 50%;
		background-color: transparent !important;
	}
	#banner.kmtype #banner-right h2 {
		font-size: 1.5em;
	}
	#fordelboxwrap {		
		margin: 0 -15px;
	}
	#klubforening #fordelboxwrap {
		margin: 0 -10px;
		padding-left: 10px;
		padding-right: 10px;
	}
	#page.kmtype #fordelboxcenterxs {
		text-align: center;
		margin-bottom: 30px;
	}
	#page.kmtype #fordelboxcenterxs h1.big {
		font-size: 5.5em;
	}
	#page.kmtype #fordelboxcenterxs > div > h1:nth-child(2), #page.kmtype #fordelboxcenterxs > div > h2 {
		text-shadow: 2px 2px 2px #fff;
	}
	#page.kmtype .fordelbox {
		height: auto !important;
		margin-left: 20px;
		margin-right: 20px;
		padding-bottom: 8px;
	}
	#page.kmtype .fordelbox h1 {
		line-height: 1.4em;
		margin-top: 2px;
		margin-bottom: 5px;
	}
	#page.kmtype #rcboxicons em {	
		font-size: 2.5em;
		width: 13.6%;
	}
	#klubforening #kfvideo {
		width: 100%;
		height: 350px;
	}
	#klubforening #page .reviews:before {
		margin-left: -10px;		
		bottom: 80px;
   	 	top: auto;
	}
	#page .reviewstitle > h1 {
		z-index: 3;
		position: relative;
	}
	#klubforening #page .reviews:after {
		margin-right: -10px;
		height: 150px;
    	margin-top: 12px;
		opacity: 0.1;
	}
	#page .reviews .col-xs-12 {
		margin-bottom: 25px;
	}
	#kmsalg #kmmap {
		background-position: bottom center;
		text-align: center;
		text-indent: 0;
		text-shadow: 2px 2px 2px #fff;
		height: 277px;
	}
	#kmsalg #kmmap > h1:nth-child(1) {
		padding-top: 66px;
	}
	#kmsalg > div > div > div:nth-child(1) h1 {		
		text-align: center;
		padding-left: 15px;
		padding-right: 15px;
	}
	#kmsalg > div > div > div:nth-child(1) > h1:nth-child(1) {
		padding-top: 40px;
	}
	#kmapp > div > div > div.col-sm-8.col-xs-12 > div {
		text-align: center;
	}
	#privat #banner.kmtype > div.container > div > div.col-sm-8.col-xs-12 > div {
		padding-left: 10px;
		padding-right: 10px;
	}
	#privat #banner.kmtype #banner-right h2 {
		color: #000;
		padding: 0 35px;
	}
	#privat #pfdsf:before {
		opacity: 0.1;
		margin-left: -10px;
		margin-top: 64px;
	}
	#privat #pfdsf {
		margin-top: -25px;
	}
	#privat #page.kmtype .fordelbox {
		margin-bottom: 30px;
	}
	#privat #page.kmtype .fordelbox {
		height: auto;
	}
	#banner.kmtype #bannerimg {
		background-position: bottom left;
	}
	#banner.kmtype #banner-right {
		width: 65%;
	}
	#forbund #fofeedback > div > div > div > p:nth-child(3), #forbund #fofeedback ul, #forbund #fofeedback h2, #fofeedback > div > div > div > p:nth-child(5) {
		max-width: 100%;
	}
	#forbund #fofeedback img {
		position: relative;
		top: 70px;
		width: 60%;
		height: auto;
		margin-bottom: 100px;
	}
	#ovrige #banner.kmtype #banner-right h2 {
		color: #000;
	}
	#ovrige #fordelboxright > div > p {
		font-size: 1em !important;
	}
	#ovrige #page.kmtype .fordelbox {
		margin-bottom: 30px;
	}
	#ovrige #pffeedback p {
		padding-left: 0px;
	}
	#ovrige #pffeedback:before {
		margin-left: -15px;
		top: auto;
		bottom: -50px;
	}
	#kig #banner {
		background-size: cover;
	}
	html body #indhold #kig #banner #mlogo {
		display: inline-block !important;
		position: absolute;   
		margin-top: 0px !important;
		margin-left: 20px !important;
		top: 20px;
	}
	#kig #banner > div.container > div > div.col-sm-8.col-xs-12 > div {
		padding: 0 20px;
	}
	#kig #banner h1 {
		line-height: 66px;
		margin-top: 150px;
	}
	#kig #banner #banner-right {
		display: none;
	}
	#kig .fordelbox .fordelnumber {	
		left: 0;
		right: 0;
		top: -135px;		
		font-size: 13em;
	}
	#kig .fordelbox {
		border-radius: 25px 25px 0 25px;		
		margin: 110px 25px 30px 25px;
		padding: 75px 40px 40px 50px;
	}
	#kig #bestilkm > a > h1 {
		margin: 0;
	}
	#kig #instruk {
		padding: 40px 15px 70px 15px;
		margin-left: -15px;
		margin-right: -15px;
	}
	#page .reviews {
		padding-bottom: 50px;
	}
	#kig #presentation iframe {
		height: 325px;
	}
	#omkm #banner {
		background-size: cover;
	}
	html body #indhold #omkm #banner #mlogo {
		display: inline-block !important;
		position: absolute;
		margin-top: 0px !important;
		margin-left: 20px !important;
		top: 20px;
	}
	#omkm #banner h1 {
		line-height: 66px;
		margin-top: 150px;
	}
	#omkm #banner > div.container > div > div.col-sm-8.col-xs-12 > div {
		padding: 0 20px;
	}
	#omkm #banner-right {
		display: none;
	}
	#omkm #info {
		height: auto;
		padding: 0 15px !important;
	}
	#omkm #info h1 {
		line-height: 1.3em;
		height: auto;
		padding-top: 20px;
	}
	#omkm #page > div:nth-child(1) {
		margin-left: -15px;
		margin-right: -15px;
	}
	#omkm .rcbox {
		margin-top: 30px;
	}
	#omkm #bannerwrap:after {
		background-color: #fff;
	}
	#omkm #suc > div.col-sm-12.col-md-7.col-xs-12 h1 {
		font-size: 3em;
	}
	#app #banner {
		background-size: cover;
	}
	#app #bannerwrap:after {
		background-color: #fff;
	}
	#app #banner > div.container > div > div.col-sm-8.col-xs-12 {
		display: inline-block;
	}
	html body #indhold #app #banner #mlogo {
		display: inline-block !important;
		position: absolute;
		height: 75px !important;
		margin-top: 0px !important;
		margin-left: 10px !important;
		top: 10px;
	}
	#app #banner h1 {
		font-size: 1.7em;
		margin-top: 70px;
		line-height: 75px;
		margin-left: 80px;
		    height: 65px;
	}
	#app #banner > div.container > div > div.col-sm-8.col-xs-12 > div {
		padding-left: 10px;
		padding-right: 10px;
	}
	#app #banner h2 {
		padding-right: 10px;
	}
	#app #banner #banner-right {
		height: 392px;
		position: absolute;
		bottom: 25px;
	}
	#getapp > a:nth-child(1) > img {
		margin-right: 10px;
	}
	#app #banner-right {
		display: none;
	}
	#page > div.container {
		margin-left: -10px;
		margin-right: -10px;
	}
	#app #info {
		padding-left: 10px !important;
		padding-right: 10px !important;
	}
	#app #icons .fa-calculator {
		left: 10px;
		top: 7px;
	}
	#app #icons .fa-calendar-alt {
		left: 95px;
	}
	#app #icons .fa-credit-card {
		left: 135px;
		    top: 210px;
	}
	#app #icons .fa-globe {
		left: 135px;
		top: 320px;
	}
	#app #icons .fa-envelope {
		left: 95px;
		top: 420px;
	}
	#app #icons .fa-users {
		left: 10px;
		top: 510px;
	}
	#app #icons em {		
		margin-left: 110px;
	}
	#app #appright {
		margin-top: 40px;
		margin-bottom: 40px;
	}
	#produkt #banner > div.container > div > div > div {
		padding: 0 20px !important;
	}
	#produkt #kmproducts {
		margin-top: 0px;
	}
	#produkt #kmproducts .col-sm-8 {
		background-color: transparent;
		height: auto;
		overflow: visible;
		border-bottom-right-radius: 0px;
	}
	#produkt #kmproducts .choice {
		opacity: 1;
		background-color: #F9F4EA;
		height: auto;
		overflow: visible;
		border-bottom-right-radius: 100px;
		position: relative;
		padding: 25px 20px 100px 20px;
		margin-bottom: 30px;
	}
	#produkt #kmproducts .choice h1 {
		font-size: 1.5em;
	}
	#produkt #kmproducts .choice em {		
		font-size: 5em;
		bottom: 25px;
		right: 45px;		
	}
	#pris .pbox {
		max-width: 400px;
		margin: 0 auto;
    	float: none;
	}
	html body #indhold #pris #mlogo {
		margin-top: 35px !important;
	}
	#pris #banner > div.container > div > div.col-sm-8.col-xs-12 > div {
		padding: 0 20px;
	}
	#pris .pboxinner {
		margin: 0px;
	}
	#pris .pcontent {
		padding: 20px 15px 20px 15px;
		height: auto;
	}
	#pris .pbottom h1 {
		margin: 0;
		line-height: 2em;
	}
	#pris #standard .pbottom .pbtxt {
		padding: 5px 102px;
		font-size: 1em;
		height: 0;
	}
	#pris #standard .pbottom .pbtxt::after {
		top: 10px;
		left: 0;
	}
	#pris #standard #standardline {
		margin-top: 30%;
	}
	#pris #guld {
		margin-top: 50px;
	}
	#pris #guld .pbottom .pbtxt {
		padding: 0px 104px;
		font-size: 1em;
	}
	#pris #custom {
		margin-top: 50px;
	}
	#pris #custom .pbottom .pbtxt {
		padding: 5px 84px;
		font-size: 1em;
		height: 0;
	}
	#pris #custom .pbottom .pbtxt::after {
		top: 10px;
	}
	#priscalc > div > div > div.col-sm-12.col-xs-12 > h2 {
		margin-bottom: 15px;
	}
	#pris #betallosning {
		padding: 0 15px !important;
		padding-bottom: 120px !important;
		margin: 0px -10px;
		width: 100vw;
		height: auto;
	}
	#pris #priscalc {
		margin-top: 50px;
		margin-bottom: 50px;
	}
	#pris #page > div:nth-child(3) {
		margin: 0 0 40px 0;
	}
	#pris #bestil {
		word-break: break-word;
	}
	#pris #bookform {
		padding: 0px;
	}
	#pris #banner-right {
		
	}
	#pris #standard .pbottom .pbtxt .fa-hand-point-right {
		left: 83px;
	}
	#pris .pcontent img {
		width: 100px;
		bottom: -22px;
	}
	#standardside #banner #banner-right {
		display: none;
	}
	#standardside .rcbox {
		border-bottom-right-radius: 50px;
		border-top-left-radius: 50px;
		padding: 50px 25px;
	}
	#standardside #banner > div.container > div > div.col-sm-8.col-xs-12 > div {
		padding: 0px 10px;
	}
		#standardside.tips > div.container > div > div.col-sm-5.col-xs-12 > img {
		width: 90%;
		max-height: 100%;
		height: auto;
		margin-left: 5%;
		margin-top: 0;
	}
	#standardside.tips .container {
		padding: 0 15px !important;
	}
	#standardside.tips #banner {
		border-bottom-right-radius: 100px;
	}
	#standardside.tips #banner #mjw {
		display:block;
	}
	
}
@media (max-width: 600px) {
	#forside #fscreen-img {
		width: 725px;
		height: 460px;
		right: 0 !important;
	}
	#forside #fscreen-img > div {
		right: 114px;
		top: 65px;
		height: 318px;
		width: 488px;
	}
	#forside #fscreen .fscreenlink span:last-child {		
		top: 124px;	
	}
	#page.kmtype #rcboxicons em {
		font-size: 2em;
		width: 13%;
	}
	#kig #presentation iframe {
		width: 90%;
		height: 295px;
	}
	#kig #instruk .col-sm-5 {
		margin-top: 35px;
	}
	#kig #instruk > div > div > div.col-sm-7.col-xs-12 > a {
		padding: 10px 20px;
		margin-top: 0px;
	}
	#app #appimg img {
		width: 400px;
	}
	
}
@media (max-width: 540px) {
	#ovrige #rcboxiconsmax {
		padding-left: 225px;
	}
	#ovrige #pffeedback:before {
		height: 315px;
	}
	#suc > div.col-md-5.col-sm-12.col-xs-12 > img {
		width: 80%;
		
	}
	#standardside #banner h1 {
		font-size: 2em;
	}
}
@media (max-width: 500px) {
	#forside #fscreen-img {
		width: 592px;
		height: 375px;
	}
	#forside #fscreen-img > div {
		right: 93px;
		top: 53px;
		height: 259px;
		width: 398px;
	}
	#forside #fscreen .fscreenlink span:last-child {		
		top: 112px;
		font-size: 1.5em;		
	}
	#forside .fscreencontent {		
		padding: 15px;
	}
	#banner.kmtype h1 {
		font-size: 1.5em;
	}
	#klubforening #kfvideo {
		height: 270px;
	}
	#kmsalg #kmmap {
		font-size: 0.8em;
		height: 250px
	}
	#kmmapform > div {
		width: 434px;
	}
	#kmsalg #kmmap > h1:nth-child(1) {
		padding-top: 50px;
	}
	#privat #banner.kmtype h1 {
		font-size: 1.4em;
	}
	#privat #banner.kmtype > div.container > div > div.col-sm-8.col-xs-12 > div > h2 {
		text-shadow: 2px 2px 2px #fff;
	}
	#forbund #fofeedback img {
		top: 50px;
		width: 80%;
		margin-bottom: 85px;
	}
	#kig .fordelbox {
		margin: 110px 5px 30px 5px;
		padding: 75px 20px 40px 20px;
	}
	#kig .fordelbox h2 {
		font-size: 1em;
	}
	#kig .bighead {
		font-size: 1.5em;
	}
	#kig #presentation iframe {
		height: 245px;
	}
	#app #appimg {
		padding: 30px 0 30px 0px;
	}
	#app #appimg img {
		width: 90%;
		margin-left: 5%
	}
	#produkt .choice ul {
		padding-left: 20px;
	}
}
@media (max-width: 470px) {
	#forbund .foafbox {
		width: 100%;
	} 
}
@media (max-width: 458px) {
	#kmmapform > div {
		width: 99%;
	}
}
@media (max-width: 450px) {
	#ovrige #rcboxiconsmax h2 {
		font-size: 1em;
	}
	#kig #presentation iframe {
		height: 220px;
	}
	#produkt #banner > div.container > div > div > div > h1 {
		font-size: 2.5em;
	}
}
@media (max-width: 440px) {
	#forside #fscreen-left {
		margin-top: -40px;
	}
html body #forside #fscreen .fscreenlink {   
		width: 20%;
		margin:23px 3px;
	}
	html body #forside #fscreen .fscreenlink span:last-child {
		top: 200px;
	}
}
@media (max-width: 415px) {
	#ovrige #pffeedback:before {
		height: 225px;
	}
	#ovrige #rcboxiconsmax {
		padding-left: 160px;
	}
	#app #banner h1 {
		font-size: 1.7em;
		margin-top: 80px;
		line-height: 28px;
		margin-left: 90px;
	}
}
@media (max-width: 400px) {
	#forside #fscreen .fscreenlink span:first-child {
		width: 40px;
		height: 40px;
	}
	#forside #fscreen .fscreenlink em {
		font-size: 1.2em;
		line-height: 40px;
	}
	#forside #fscreen-img {		
		width: 500px;
		height: 300px;
	}
	#forside #fscreen-img > div {
		right: 97px;
		top: 42px;
		height: 211px;
		width: 322px;
	}
	#forside #fscreen .fscreenlink span:last-child {
		top: 101px;
		font-size: 1.3em;
		padding: 5px 30px;
	}
	#forside #quotebox {
		margin-top: 100px;
	}
	#page.kmtype #rcboxicons em {
		font-size: 1.5em;
	}
	#klubforening #kfvideo {
		height: 215px;
	}
	#page .reviewstitle > h1 {
		font-size: 1.3em;
	}
	#kmsalg #kmmap {
		height: 220px;
		font-size: 0.7em;
	}
	#privat #banner.kmtype #banner-right h2 {
		font-size: 1.2em;
		margin-bottom: 13px;
		text-shadow: 2px 2px 2px #fff;
	}
	#kig #presentation iframe {
		width: 100%;
		height: 215px;
	}
	#pris #priceheader h1 {
		font-size: 1.4em;
	}
}
@media (max-width: 380px) {
	#produkt #banner > div.container > div > div > div > h1 {
		font-size: 2em;
	}
	#pris #standard .pbottom .pbtxt .fa-hand-point-right {
		left: 50px;
	}
}
@media (max-width: 376px) {
	#forside #banner h1 {
		font-size: 1.8em;
		margin-top: 15px;
	}

}
@media (max-width: 361px) {	
	h1 {
		font-size: 1.5em;
	}
	#forside #banner #banner-right p {
		font-size: 1em;
	}
	#forside .qtext h2 {
		font-size: 1.2em;
	}
	#forside #banner h1 {  
		font-size: 1.5em;
		margin-left: 20px;
		margin-top: 15px;	
	}
	#forside #fscreen .fscreenlink {
		margin: 0 2px;
	}
	#forside #fscreen .fscreenlink span:first-child {
		width: 35px;
		height: 35px;
	}
	#forside #fscreen .fscreenlink em {
		font-size: 1em;
		line-height: 35px;
	}
	#forside #quotebox {		
		margin-top: 210px;
	}
	#kmapp > div > div > div.col-sm-8.col-xs-12 > div h1 {
		font-size: 52px;
		line-height: 1.7em;
	}
	#banner.kmtype #banner-right {
		bottom: 60px;
	}
	#klubforening #kfvideo {
		height: 190px;
	}
	#kmsalg #kmmap {
		height: 180px;
		
	}
	#kmsalg #kmmap > h1:nth-child(1) {
		padding-top: 34px;
	}
	#ovrige #rcboxiconsmax {
		padding-left: 125px;
	}
	#ovrige #pffeedback:before {
		height: 180px;
	}
	#kig #presentation iframe {
		height: 195px;
	}
	#pris #standard .pbottom .pbtxt {
		padding: 3px 88px;
		font-size: 0.9em;
	}
	#pris #guld .pbottom .pbtxt {
		padding: 0px 82px;
		font-size: 1em;
	}
	#pris #custom .pbottom .pbtxt {
		padding: 5px 52px;
	}
	#standardside #banner h1 {
		font-size: 1.5em;
	}
	#standardside #banner p {
		width: 81%;
		font-size: 0.85em;
	}
	#standardside.cookies #banner p {
		width: 81%;
		font-size: 0.8em;
	}
	#omkm #daily h2.upper {
		font-size: 1.5em;
	}
}
@media (max-width: 321px) {	
	#app #icons em {
		margin-top: 40px;
	}
	#forside #banner #banner-right h2 {
    font-family: 'Heebo', sans-serif;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 1.3em;
    line-height: 1.2em;
}
	#forside #banner h1 {		
		font-size: 1.3em;		
		line-height: 1.2em;
		margin-top: 11px;
	}
	#forside #fscreen {
		font-size: 0.9em;
	}
	#ovrige #banner.kmtype h1 {
		line-height: 1.2em;
	}
	#kig #presentation iframe {
		height: 172px;
	}
	#omkm #daily .col-sm-6 {
		padding: 20px 10px;
	}
	#pris #banner h1 {
		font-size: 2em;
	}
	#pris #banner h2 {
		font-size: 1em;
		width: 80%;
	}
	#pris #priceheader h1 {
		font-size: 1.3em;
	}
	
}
@media (min-width: 991px) and (max-width: 1279px) {
	#forside #quotebox .container { 
		width: 900px;
	}
	#forside .fbox {
		height: 298px;
	}
	#forside .qtext > div h2 {
		font-size: 1em;
	}
	#forside .qtext > div .qname {
		font-size: 1em;
	}
}
/* ----------------------------------- */
/* -------------- BOXES -------------- */
/* ----------------------------------- */
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.container, .wrapper {
	margin-right: auto;
	margin-left: auto;
	padding-left: 15px;
	padding-right: 15px;
}
.container:before, .container:after, .wrapper:before, .wrapper:after {
	content: " ";
	display: table;
}
.container:after, .wrapper:after {
	clear: both;
}

@media (min-width: 769px) {
	.container, .wrapper {
		width: 750px;
	}

	/*
	html body .container {
		width: 100%;
		padding-right: 15px !important;
		padding-left: 15px !important;
	}
	*/
}

@media (min-width: 992px) {
	.container, .wrapper {
		width: 970px;
	}
}
	
@media (min-width: 1280px) {
	.container, .wrapper {
		width: 1100px;
	}	

}





	/*
	html body .container {
		width: 100%;
		padding-right: 150px !important;
		padding-left: 150px !important;
	}
	*/


.container-fluid {
	margin-right: auto;
	margin-left: auto;
	padding-left: 15px;
	padding-right: 15px;
}
.container-fluid:before, .container-fluid:after {
	content: " ";
	display: table;
}
.container-fluid:after {
	clear: both;
}
.row {
	margin-left: -15px;
	margin-right: -15px;
}
.row:before, .row:after {
	content: " ";
	display: table;
}
.row:after {
	clear: both;
}

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
	position: relative;
	min-height: 1px;
	padding-left: 15px;
	padding-right: 15px;
}
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
	float: left;
}
.col-xs-1 {
	width: 8.33333%;
}
.col-xs-2 {
	width: 16.66667%;
}
.col-xs-3 {
	width: 25%;
}
.col-xs-4 {
	width: 33.33333%;
}
.col-xs-5 {
	width: 41.66667%;
}
.col-xs-6 {
	width: 50%;
}
.col-xs-7 {
	width: 58.33333%;
}
.col-xs-8 {
	width: 66.66667%;
}
.col-xs-9 {
	width: 75%;
}
.col-xs-10 {
	width: 83.33333%;
}
.col-xs-11 {
	width: 91.66667%;
}
.col-xs-12 {
	width: 100%;
}
.col-xs-pull-0 {
	right: auto;
}
.col-xs-pull-1 {
	right: 8.33333%;
}
.col-xs-pull-2 {
	right: 16.66667%;
}
.col-xs-pull-3 {
	right: 25%;
}
.col-xs-pull-4 {
	right: 33.33333%;
}
.col-xs-pull-5 {
	right: 41.66667%;
}
.col-xs-pull-6 {
	right: 50%;
}
.col-xs-pull-7 {
	right: 58.33333%;
}
.col-xs-pull-8 {
	right: 66.66667%;
}
.col-xs-pull-9 {
	right: 75%;
}
.col-xs-pull-10 {
	right: 83.33333%;
}
.col-xs-pull-11 {
	right: 91.66667%;
}
.col-xs-pull-12 {
	right: 100%;
}
.col-xs-push-0 {
	left: auto;
}
.col-xs-push-1 {
	left: 8.33333%;
}
.col-xs-push-2 {
	left: 16.66667%;
}
.col-xs-push-3 {
	left: 25%;
}
.col-xs-push-4 {
	left: 33.33333%;
}
.col-xs-push-5 {
	left: 41.66667%;
}
.col-xs-push-6 {
	left: 50%;
}
.col-xs-push-7 {
	left: 58.33333%;
}
.col-xs-push-8 {
	left: 66.66667%;
}
.col-xs-push-9 {
	left: 75%;
}
.col-xs-push-10 {
	left: 83.33333%;
}
.col-xs-push-11 {
	left: 91.66667%;
}
.col-xs-push-12 {
	left: 100%;
}
.col-xs-offset-0 {
	margin-left: 0%;
}
.col-xs-offset-1 {
	margin-left: 8.33333%;
}
.col-xs-offset-2 {
	margin-left: 16.66667%;
}
.col-xs-offset-3 {
	margin-left: 25%;
}
.col-xs-offset-4 {
	margin-left: 33.33333%;
}
.col-xs-offset-5 {
	margin-left: 41.66667%;
}
.col-xs-offset-6 {
	margin-left: 50%;
}
.col-xs-offset-7 {
	margin-left: 58.33333%;
}
.col-xs-offset-8 {
	margin-left: 66.66667%;
}
.col-xs-offset-9 {
	margin-left: 75%;
}
.col-xs-offset-10 {
	margin-left: 83.33333%;
}
.col-xs-offset-11 {
	margin-left: 91.66667%;
}
.col-xs-offset-12 {
	margin-left: 100%;
}

@media (min-width: 770px) {
	.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
		float: left;
	}
	.col-sm-1 {
		width: 8.33333%;
	}
	.col-sm-2 {
		width: 16.66667%;
	}
	.col-sm-3 {
		width: 25%;
	}
	.col-sm-4 {
		width: 33.33333%;
	}
	.col-sm-5 {
		width: 41.66667%;
	}
	.col-sm-6 {
		width: 50%;
	}
	.col-sm-7 {
		width: 58.33333%;
	}
	.col-sm-8 {
		width: 66.66667%;
	}
	.col-sm-9 {
		width: 75%;
	}
	.col-sm-10 {
		width: 83.33333%;
	}
	.col-sm-11 {
		width: 91.66667%;
	}
	.col-sm-12 {
		width: 100%;
	}
	.col-sm-pull-0 {
		right: auto;
	}
	.col-sm-pull-1 {
		right: 8.33333%;
	}
	.col-sm-pull-2 {
		right: 16.66667%;
	}
	.col-sm-pull-3 {
		right: 25%;
	}
	.col-sm-pull-4 {
		right: 33.33333%;
	}
	.col-sm-pull-5 {
		right: 41.66667%;
	}
	.col-sm-pull-6 {
		right: 50%;
	}
	.col-sm-pull-7 {
		right: 58.33333%;
	}
	.col-sm-pull-8 {
		right: 66.66667%;
	}
	.col-sm-pull-9 {
		right: 75%;
	}
	.col-sm-pull-10 {
		right: 83.33333%;
	}
	.col-sm-pull-11 {
		right: 91.66667%;
	}
	.col-sm-pull-12 {
		right: 100%;
	}
	.col-sm-push-0 {
		left: auto;
	}
	.col-sm-push-1 {
		left: 8.33333%;
	}
	.col-sm-push-2 {
		left: 16.66667%;
	}
	.col-sm-push-3 {
		left: 25%;
	}
	.col-sm-push-4 {
		left: 33.33333%;
	}
	.col-sm-push-5 {
		left: 41.66667%;
	}
	.col-sm-push-6 {
		left: 50%;
	}
	.col-sm-push-7 {
		left: 58.33333%;
	}
	.col-sm-push-8 {
		left: 66.66667%;
	}
	.col-sm-push-9 {
		left: 75%;
	}
	.col-sm-push-10 {
		left: 83.33333%;
	}
	.col-sm-push-11 {
		left: 91.66667%;
	}
	.col-sm-push-12 {
		left: 100%;
	}
	.col-sm-offset-0 {
		margin-left: 0%;
	}
	.col-sm-offset-1 {
		margin-left: 8.33333%;
	}
	.col-sm-offset-2 {
		margin-left: 16.66667%;
	}
	.col-sm-offset-3 {
		margin-left: 25%;
	}
	.col-sm-offset-4 {
		margin-left: 33.33333%;
	}
	.col-sm-offset-5 {
		margin-left: 41.66667%;
	}
	.col-sm-offset-6 {
		margin-left: 50%;
	}
	.col-sm-offset-7 {
		margin-left: 58.33333%;
	}
	.col-sm-offset-8 {
		margin-left: 66.66667%;
	}
	.col-sm-offset-9 {
		margin-left: 75%;
	}
	.col-sm-offset-10 {
		margin-left: 83.33333%;
	}
	.col-sm-offset-11 {
		margin-left: 91.66667%;
	}
	.col-sm-offset-12 {
		margin-left: 100%;
	}
}

@media (min-width: 992px) {
	.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
		float: left;
	}
	.col-md-1 {
		width: 8.33333%;
	}
	.col-md-2 {
		width: 16.66667%;
	}
	.col-md-3 {
		width: 25%;
	}
	.col-md-4 {
		width: 33.33333%;
	}
	.col-md-5 {
		width: 41.66667%;
	}
	.col-md-6 {
		width: 50%;
	}
	.col-md-7 {
		width: 58.33333%;
	}
	.col-md-8 {
		width: 66.66667%;
	}
	.col-md-9 {
		width: 75%;
	}
	.col-md-10 {
		width: 83.33333%;
	}
	.col-md-11 {
		width: 91.66667%;
	}
	.col-md-12 {
		width: 100%;
	}
	.col-md-pull-0 {
		right: auto;
	}
	.col-md-pull-1 {
		right: 8.33333%;
	}
	.col-md-pull-2 {
		right: 16.66667%;
	}
	.col-md-pull-3 {
		right: 25%;
	}
	.col-md-pull-4 {
		right: 33.33333%;
	}
	.col-md-pull-5 {
		right: 41.66667%;
	}
	.col-md-pull-6 {
		right: 50%;
	}
	.col-md-pull-7 {
		right: 58.33333%;
	}
	.col-md-pull-8 {
		right: 66.66667%;
	}
	.col-md-pull-9 {
		right: 75%;
	}
	.col-md-pull-10 {
		right: 83.33333%;
	}
	.col-md-pull-11 {
		right: 91.66667%;
	}
	.col-md-pull-12 {
		right: 100%;
	}
	.col-md-push-0 {
		left: auto;
	}
	.col-md-push-1 {
		left: 8.33333%;
	}
	.col-md-push-2 {
		left: 16.66667%;
	}
	.col-md-push-3 {
		left: 25%;
	}
	.col-md-push-4 {
		left: 33.33333%;
	}
	.col-md-push-5 {
		left: 41.66667%;
	}
	.col-md-push-6 {
		left: 50%;
	}
	.col-md-push-7 {
		left: 58.33333%;
	}
	.col-md-push-8 {
		left: 66.66667%;
	}
	.col-md-push-9 {
		left: 75%;
	}
	.col-md-push-10 {
		left: 83.33333%;
	}
	.col-md-push-11 {
		left: 91.66667%;
	}
	.col-md-push-12 {
		left: 100%;
	}
	.col-md-offset-0 {
		margin-left: 0%;
	}
	.col-md-offset-1 {
		margin-left: 8.33333%;
	}
	.col-md-offset-2 {
		margin-left: 16.66667%;
	}
	.col-md-offset-3 {
		margin-left: 25%;
	}
	.col-md-offset-4 {
		margin-left: 33.33333%;
	}
	.col-md-offset-5 {
		margin-left: 41.66667%;
	}
	.col-md-offset-6 {
		margin-left: 50%;
	}
	.col-md-offset-7 {
		margin-left: 58.33333%;
	}
	.col-md-offset-8 {
		margin-left: 66.66667%;
	}
	.col-md-offset-9 {
		margin-left: 75%;
	}
	.col-md-offset-10 {
		margin-left: 83.33333%;
	}
	.col-md-offset-11 {
		margin-left: 91.66667%;
	}
	.col-md-offset-12 {
		margin-left: 100%;
	}
}

@media (min-width: 1279px) {
	.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
		float: left;
	}
	.col-lg-1 {
		width: 8.33333%;
	}
	.col-lg-2 {
		width: 16.66667%;
	}
	.col-lg-3 {
		width: 25%;
	}
	.col-lg-4 {
		width: 33.33333%;
	}
	.col-lg-5 {
		width: 41.66667%;
	}
	.col-lg-6 {
		width: 50%;
	}
	.col-lg-7 {
		width: 58.33333%;
	}
	.col-lg-8 {
		width: 66.66667%;
	}
	.col-lg-9 {
		width: 75%;
	}
	.col-lg-10 {
		width: 83.33333%;
	}
	.col-lg-11 {
		width: 91.66667%;
	}
	.col-lg-12 {
		width: 100%;
	}
	.col-lg-pull-0 {
		right: auto;
	}
	.col-lg-pull-1 {
		right: 8.33333%;
	}
	.col-lg-pull-2 {
		right: 16.66667%;
	}
	.col-lg-pull-3 {
		right: 25%;
	}
	.col-lg-pull-4 {
		right: 33.33333%;
	}
	.col-lg-pull-5 {
		right: 41.66667%;
	}
	.col-lg-pull-6 {
		right: 50%;
	}
	.col-lg-pull-7 {
		right: 58.33333%;
	}
	.col-lg-pull-8 {
		right: 66.66667%;
	}
	.col-lg-pull-9 {
		right: 75%;
	}
	.col-lg-pull-10 {
		right: 83.33333%;
	}
	.col-lg-pull-11 {
		right: 91.66667%;
	}
	.col-lg-pull-12 {
		right: 100%;
	}
	.col-lg-push-0 {
		left: auto;
	}
	.col-lg-push-1 {
		left: 8.33333%;
	}
	.col-lg-push-2 {
		left: 16.66667%;
	}
	.col-lg-push-3 {
		left: 25%;
	}
	.col-lg-push-4 {
		left: 33.33333%;
	}
	.col-lg-push-5 {
		left: 41.66667%;
	}
	.col-lg-push-6 {
		left: 50%;
	}
	.col-lg-push-7 {
		left: 58.33333%;
	}
	.col-lg-push-8 {
		left: 66.66667%;
	}
	.col-lg-push-9 {
		left: 75%;
	}
	.col-lg-push-10 {
		left: 83.33333%;
	}
	.col-lg-push-11 {
		left: 91.66667%;
	}
	.col-lg-push-12 {
		left: 100%;
	}
	.col-lg-offset-0 {
		margin-left: 0%;
	}
	.col-lg-offset-1 {
		margin-left: 8.33333%;
	}
	.col-lg-offset-2 {
		margin-left: 16.66667%;
	}
	.col-lg-offset-3 {
		margin-left: 25%;
	}
	.col-lg-offset-4 {
		margin-left: 33.33333%;
	}
	.col-lg-offset-5 {
		margin-left: 41.66667%;
	}
	.col-lg-offset-6 {
		margin-left: 50%;
	}
	.col-lg-offset-7 {
		margin-left: 58.33333%;
	}
	.col-lg-offset-8 {
		margin-left: 66.66667%;
	}
	.col-lg-offset-9 {
		margin-left: 75%;
	}
	.col-lg-offset-10 {
		margin-left: 83.33333%;
	}
	.col-lg-offset-11 {
		margin-left: 91.66667%;
	}
	.col-lg-offset-12 {
		margin-left: 100%;
	}
}

@media (max-width: 769px) {
	.hidden-xs {
		display: none !important;
	}
	#body {
		padding-top: 60px;
	}
}

@media (min-width: 770px) and (max-width: 991px) {
	.hidden-sm {
		display: none !important;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	.hidden-md {
		display: none !important;
	}
}

@media (min-width: 1200px) {
	.hidden-lg {
		display: none !important;
	}
}

.pad-0 {
	padding: 0px !important;
}

.pad-15 {
	padding: 15px !important;
}

.pad-25 {
	padding: 25px !important;
}

.pad-50 {
	padding: 50px !important;
}

.pad-t-0 {
	padding-top: 0px !important;
}

.pad-t-15 {
	padding-top: 15px !important;
}

.pad-t-25 {
	padding-top: 25px !important;
}

.pad-t-50 {
	padding-top: 50px !important;
}

.pad-b-0 {
	padding-bottom: 0px !important;
}

.pad-b-15 {
	padding-bottom: 15px !important;
}

.pad-b-25 {
	padding-bottom: 25px !important;
}

.pad-b-50 {
	padding-bottom: 50px !important;
}

.pad-tb-0 {
	padding-top: 0px !important;
	padding-bottom: 0px !important;
}

.pad-tb-15 {
	padding-top: 15px !important;
	padding-bottom: 15px !important;
}

.pad-tb-25 {
	padding-top: 25px !important;
	padding-bottom: 25px !important;
}

.pad-tb-50 {
	padding-top: 50px !important;
	padding-bottom: 50px !important;
}

.pad-l-0 {
	padding-left: 0px !important;
}

.pad-l-15 {
	padding-left: 15px !important;
}

.pad-l-25 {
	padding-left: 25px !important;
}

.pad-l-50 {
	padding-left: 50px !important;
}

.pad-r-0 {
	padding-right: 0px !important;
}

.pad-r-15 {
	padding-right: 15px !important;
}

.pad-r-25 {
	padding-right: 25px !important;
}

.pad-r-50 {
	padding-right: 50px !important;
}

.pad-lr-0 {
	padding-left: 0px !important;
	padding-right: 0px !important;
}

.pad-lr-15 {
	padding-left: 15px !important;
	padding-right: 15px !important;
}

.pad-lr-25 {
	padding-left: 25px !important;
	padding-right: 25px !important;
}

.pad-lr-50 {
	padding-left: 50px !important;
	padding-right: 50px !important;
}

.clear {
	clear: both !important;
}

.slick-dots {
	text-align: center;
	margin: 0 0 10px 0;
	padding: 0;
}

.slick-dots li {
	display: inline-block;
	margin-left: 4px;
	margin-right: 4px;
}

.slick-dots li button {
	font: 0/0 a;
	text-shadow: none;
	color: transparent;
	background-color: #fff;
	border: none;
	width: 15px;
	height: 15px;
	border-radius: 50%;
}

.slick-dots li:hover button {
	background-color: black;
	cursor: pointer;
}

.slick-dots li.slick-active button {
	background-color: black;
}
	
/* Custom Arrow */
.prev {
	color: #999;
	position: absolute;
	top: 48%;
	left: 10px;
	font-size: 1.5em;
	display: none;
}

.prev:hover {
	cursor: pointer;
	color: black;
}

.next {
	color: #999;
	position: absolute;
	top: 48%;
	right: 10px;
	font-size: 1.5em;
	display: none;
}

.next:hover {
	cursor: pointer;
	color: black;
}

@media screen and (max-width: 800px) {
 .next, .prev {
	 display: none !important;
	}
}

html #screen-wrap {
	position: relative;
	display: block;
	width: 100%;
	height: auto;
	margin: 0px auto !important;
}

html #screen-content {
	position: relative;
	float: left;
	width: 100%;
	height: auto;
	background-color: white;
	overflow: hidden;
}

@media screen and (min-width: 1920px) {
	#screen-wrap {
		max-width: 1920px !important;
	}
}

.center {
	position: absolute;
	width: auto;
	height: auto;

	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.center-horizontal {
	position: absolute;
	width: auto;
	height: auto;

	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}


.center-vertical {
	position: absolute;
	width: auto;
	height: auto;

	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.shadow-small {
	margin-bottom: 15px !important;
}
.shadow-small::after {
	position: absolute;
    content: '';
    bottom: -15px;
    left: 0px;
    width: 100%;
    height: 15px;
    background-image: url(images/shadow.png);
    background-position: top center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.shadow {
	margin-bottom: 30px !important;
}
.shadow::after {
	position: absolute;
    content: '';
    bottom: -30px;
    left: 0px;
    width: 100%;
    height: 30px;
    background-image: url(images/shadow.png);
    background-position: top center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.shadow-large {
	margin-bottom: 45px !important;
}
.shadow-large::after {
	position: absolute;
    content: '';
    bottom: -45px;
    left: 0px;
    width: 100%;
    height: 45px;
    background-image: url(images/shadow.png);
    background-position: top center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}
/*MAILCHIMP*/
/* MailChimp Form Embed Code - Classic - 12/17/2015 v10.7 */
#mc_embed_signup form {display:block; position:relative; text-align:left; padding:10px 0 10px 3%}
#mc_embed_signup h2 {font-weight:bold; padding:0; margin:15px 0; font-size:1.4em;}
#mc_embed_signup input {border: 1px solid #ABB0B2; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px;}
#mc_embed_signup input[type=checkbox]{-webkit-appearance:checkbox;}
#mc_embed_signup input[type=radio]{-webkit-appearance:radio;}
#mc_embed_signup input:focus {border-color:#333;}



#mc_embed_signup .button { color: #000;
    padding: 3px 25px;
    border-radius: 8px 8px 0 8px;
    border: 1px solid #000;
	font-weight: 600;
    background-color: #FFEC9E;
    transition: 0.2s all linear;
    margin-top: 60px;
    float: left;
    font-size: 1.3em;
	cursor: pointer;
	height: 39px;
}
.sidebar #mc_embed_signup .button {
	    min-width: 200px;
    text-align: center;
    float: right;
    margin: 10px 0 20px 0;
}
#mc_embed_signup .button:hover {background-color: rgba(235,178,44,0.5);}
#mc_embed_signup .small-meta {font-size: 11px;}
#mc_embed_signup .nowrap {white-space:nowrap;}

#mc_embed_signup .mc-field-group {clear:left; position:relative; width:96%; padding-bottom:3%; min-height:50px;}
#mc_embed_signup .size1of2 {clear:none; float:left; display:inline-block; width:46%; margin-right:4%;}
* html #mc_embed_signup .size1of2 {margin-right:2%; /* Fix for IE6 double margins. */}
#mc_embed_signup .mc-field-group label {display:block; margin-bottom:3px;}
#mc_embed_signup .mc-field-group input {display:block; width:100%; padding:8px 0; text-indent:2%;}
#mc_embed_signup .mc-field-group select {display:inline-block; width:99%; padding:5px 0; margin-bottom:2px;}

#mc_embed_signup .datefield, #mc_embed_signup .phonefield-us{padding:5px 0;}
#mc_embed_signup .datefield input, #mc_embed_signup .phonefield-us input{display:inline; width:60px; margin:0 2px; letter-spacing:1px; text-align:center; padding:5px 0 2px 0;}
#mc_embed_signup .phonefield-us .phonearea input, #mc_embed_signup .phonefield-us .phonedetail1 input{width:40px;}
#mc_embed_signup .datefield .monthfield input, #mc_embed_signup .datefield .dayfield input{width:30px;}
#mc_embed_signup .datefield label, #mc_embed_signup .phonefield-us label{display:none;}

#mc_embed_signup .indicates-required {text-align:right; font-size:11px; margin-right:4%;}
#mc_embed_signup .asterisk {color:#e85c41; font-size:150%; font-weight:normal; position:relative; top:5px;}     
#mc_embed_signup .clear {clear:both;}

#mc_embed_signup .mc-field-group.input-group ul {margin:0; padding:5px 0; list-style:none;}
#mc_embed_signup .mc-field-group.input-group ul li {display:block; padding:3px 0; margin:0;}
#mc_embed_signup .mc-field-group.input-group label {display:inline;}
#mc_embed_signup .mc-field-group.input-group input {display:inline; width:auto; border:none;}

#mc_embed_signup div#mce-responses {float:left; top:-1.4em; padding:0em .5em 0em .5em; overflow:hidden; width:90%; margin: 0 5%; clear: both;}
#mc_embed_signup div.response {margin:1em 0; padding:1em .5em .5em 0; font-weight:bold; float:left; top:-1.5em; z-index:1; width:80%;}
#mc_embed_signup #mce-error-response {display:none;}
#mc_embed_signup #mce-success-response {color:#529214; display:none;}
#mc_embed_signup label.error {display:block; float:none; width:auto; margin-left:1.05em; text-align:left; padding:.5em 0;}

#mc-embedded-subscribe {clear:both; width:auto; display:block; margin:1em 0 1em 5%;}
#mc_embed_signup #num-subscribers {font-size:1.1em;}
#mc_embed_signup #num-subscribers span {padding:.5em; border:1px solid #ccc; margin-right:.5em; font-weight:bold;}

#mc_embed_signup #mc-embedded-subscribe-form div.mce_inline_error {display:inline-block; margin:2px 0 1em 0; padding:5px 10px; background-color:rgba(255,255,255,0.85); -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; font-size:14px; font-weight:normal; z-index:1; color:#e85c41;}
#mc_embed_signup #mc-embedded-subscribe-form input.mce_inline_error {border:2px solid #e85c41;}