/*

	Design & Development:
	
	Thrane.nu
	Spangevej 19
	DK-8700 Horsens
	Denmark
	
	http://thrane.nu

*/




:root {
    
    
    --color-green: rgba(170,161,144,1.00);
    --color-green-dark: rgba(100,95,64,1.00);
    
    --color-black: rgba(0,0,0,1.00);
    --color-white: rgba(255,255,255,1.00);
    --color-grey: rgba(150,150,150,1.00);
    --color-grey-light: rgba(220,220,220,1.00);
    --color-grey-extralight: rgba(240,240,240,1.00);
	
    --color-red: rgba(210,35,42,1.00);
    --color-yellow: rgba(255,245,0,1.00);
    
    --font-default: 'Source Sans Pro', Arial, Tahoma, sans-serif;

}


#Thrane {
	width: 24px;
	height: 24px;
	position: fixed;
	left: 0px;
	bottom: 0px;
	background-image: url(/images/system/Thrane.png);
	background-color: var(--color-grey);
	background-repeat: no-repeat;
	text-indent: -999999px;
	z-index: 750;
	background-position: 2px 2px;
	opacity: 0.5;
	transition:            all .3s ease-out;
	-moz-transition:       all .3s ease-out;
	-webkit-transition:    all .3s ease-out;
	-o-transition:         all .3s ease-out;
}
#Thrane:hover {
	background-color: var(--color-green);
	opacity: 1.0;
}
@media only screen 
and (-webkit-min-device-pixel-ratio: 2) {
	#Thrane {
	background-image: url(/images/system/Thrane2x.png);
	background-size: 20px;
}
}
.back-to-top {
	background-color: rgba(0,0,0,0.00);
	width: 50px;
	height: 50px;
	margin: 0;
	position: fixed;
	/* left: calc(50% - 25px); */
	right: 50px;
    bottom: 50px;
	z-index: 1500!important;
	opacity: 0;
	transition: opacity .5s ease-out;
	-moz-transition: opacity .5s ease-out;
	-webkit-transition: opacity .5s ease-out;
	-o-transition: opacity .5s ease-out;
	-moz-border-radius: 25px;
	border-radius: 25px;
    font-size: 50px;
    line-height: 1;
    color: var(--color-dark);
}
#back-to-top.reveal {
	opacity: .5;
    transition: opacity .3s ease-in;
    -moz-transition: opacity .3s ease-in;
    -webkit-transition: opacity .3s ease-in;
    -o-transition: opacity .3s ease-in;
	cursor: pointer;
}
#back-to-top.reveal:hover {
	opacity: 1;
    transition: opacity .3s ease-in;
    -moz-transition: opacity .3s ease-in;
    -webkit-transition: opacity .3s ease-in;
    -o-transition: opacity .3s ease-in;
}



html {
    background-color: var(--color-black);
}
body {
    font-family: var(--font-default);
    color: var(--color-dark);
    font-size: 17px;
    font-weight: 300;
	padding-top: 100px;
	transition:            all .3s ease-out;
	-moz-transition:       all .3s ease-out;
	-webkit-transition:    all .3s ease-out;
	-o-transition:         all .3s ease-out;
}
body.scroll {
	padding-top: 50px;
	transition:            all .3s ease-out;
	-moz-transition:       all .3s ease-out;
	-webkit-transition:    all .3s ease-out;
	-o-transition:         all .3s ease-out;
}

html body {
    /* padding-top: 0!important;*/
}

@media only screen 
and (-webkit-min-device-pixel-ratio: 2) {
body {
}
}


h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: var(--font-default);
    color: var(--color-black);
	font-weight: 700;
}
h4, .h4, h5, .h5, h6, .h6 {
    margin-top: 20px;
    margin-bottom: 4px;
}
h1 a {
    text-decoration: none!important;
}

/* Anchor Offset due to fixed header */
/*#k2Container a[name] {
    display: block;
    position: relative;
    top: -100px;
    visibility: hidden;
}
*/
/* Anchor Offset due to fixed header EO */

a, a:focus {
    color: var(--color-black);
	transition:            all .3s ease-out;
	-moz-transition:       all .3s ease-out;
	-webkit-transition:    all .3s ease-out;
	-o-transition:         all .3s ease-out;
	text-decoration: underline;
}
a:hover {
    color: var(--color-black);
	text-decoration: none;
}

p:empty{
    height: 14px;
}

input[type=text],
input[type=email],
textarea {   
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.t3-wrapper {
    background-color: var(--color-white);
}
.t3-mainbody {
    padding-top: 0px;
    padding-bottom: 15px;
}
.t3-content {
    padding-top: 0px;
    padding-bottom: 15px;
}
.t3-wrapper {
	margin-top: 0px;
}

#t3-mainbody-wrapper {
    background-color: var(--color-white);
}
.t3-module {
    margin-bottom: 0px!important;
}


img.responsive {
	max-width: 100%;
	height: auto;
}

/* Header */


#t3-header{
	padding-top: 0px;
	padding-bottom: 0px;
	text-align: center;
}
#t3-header {
    background-color: var(--color-white);
}
#t3-header .modulelogo-main {
	display: none;
}
#t3-header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    -webkit-transition: margin-top 0.4s ease-in-out;
    transition: margin-top 0.4s ease-in-out;
	-webkit-box-shadow: 0px -2px 4px 3px rgba(0,0,0,0.3);
	-moz-box-shadow: 0px -2px 4px 3px rgba(0,0,0,0.3);
	box-shadow: 0px -2px 4px 3px rgba(0,0,0,0.3);
}

#t3-header .header-wrapper {
	-webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: -webkit-flex;
    display: -ms-flexbox;
	display: flex;
    position: relative;
}
#t3-header .header-wrapper #t3-mainnav {
	-ms-flex: 1 1;
	flex: 1 1;
    display: -webkit-flex;
    display: -ms-flexbox;
	display: flex;
	width: 100%;
	justify-content: right;
	align-items: center;
}
#t3-header #logo {
	padding: 20px;
	text-align: left;
	transition:            all .3s ease-out;
	-moz-transition:       all .3s ease-out;
	-webkit-transition:    all .3s ease-out;
	-o-transition:         all .3s ease-out;
}
#t3-header.scroll #logo {
	padding: 6px;
	transition:            all .3s ease-out;
	-moz-transition:       all .3s ease-out;
	-webkit-transition:    all .3s ease-out;
	-o-transition:         all .3s ease-out;
}
#t3-header #logo p:last-of-type {
	margin-bottom: 0;
}
#t3-header #logo img {
    height: 60px;
    width: auto;
	transition:            all .3s ease-out;
	-moz-transition:       all .3s ease-out;
	-webkit-transition:    all .3s ease-out;
	-o-transition:         all .3s ease-out;
}
#t3-header.scroll #logo img {
    height: 38px;
	transition:            all .3s ease-out;
	-moz-transition:       all .3s ease-out;
	-webkit-transition:    all .3s ease-out;
	-o-transition:         all .3s ease-out;
}
/* Header EO */


.item-image {
	float: right;
	width: 40%;
	padding: 0 0 25px 25px;
}
.item-image img {
	width: 100%;
	height: auto;
}



/* Navigation MegaMenu */

#t3-mainnav {
	z-index: 400;
	width: 100%;
    position: relative;
	border: 0 solid transparent!important;
    background-color: var(--color-white);
}
#t3-mainnav .container {
	padding-right: 0;
	padding-left: 0;
}

.dropdown-menu .divider {
	height: 1px;
	margin: 0;
	overflow: hidden;
}
.t3-megamenu .mega-nav > li .separator {
	padding: 6px 10px 3px 10px;
	background-color: rgba(126,145,155,1.00)!important;
}


/* Backgroundcolor */
.navbar-default {
	background-color: transparent;
}
#t3-mainnav .t3-megamenu {
    display: flex;
    align-items: center;
	justify-content: center;
    height: 50px;
}
#t3-header .t3-megamenu {
    display: flex;
    align-items: center;
	justify-content: right;
    height: 50px;
    padding-right: 10px;
	transition:            all .3s ease-out;
	-moz-transition:       all .3s ease-out;
	-webkit-transition:    all .3s ease-out;
	-o-transition:         all .3s ease-out;
}
#t3-header.scroll .t3-megamenu { 
    height: 50px;
	transition:            all .3s ease-out;
	-moz-transition:       all .3s ease-out;
	-webkit-transition:    all .3s ease-out;
	-o-transition:         all .3s ease-out;
}

/* Height + Border on Main Menu */

#t3-header .navbar {
	border: 0px none transparent;
}

/* Main Menu Items */
#t3-header .nav > li > a,
#t3-header .nav > li > .separator,
#t3-header .nav > li > span {
	padding: 15px 15px 15px 15px;
	text-decoration: none;
	font-size: 18px;
	font-weight: 700;
	transition:            all .3s ease-out;
	-moz-transition:       all .3s ease-out;
	-webkit-transition:    all .3s ease-out;
	-o-transition:         all .3s ease-out;
}
#t3-header.scroll .nav > li > a,
#t3-header.scroll .nav > li > .separator,
#t3-header.scroll .nav > li > span {
	font-size: 14px;
	padding: 10px 12px 10px 12px;
	transition:            all .3s ease-out;
	-moz-transition:       all .3s ease-out;
	-webkit-transition:    all .3s ease-out;
	-o-transition:         all .3s ease-out;
}

#t3-header .loginbutton {
	padding: 13px 15px 17px 15px!important;
}
#t3-header.scroll .loginbutton {
	padding: 9px 12px 11px 12px!important;
}


#t3-header .lockclosed {
	width: 16px;
	height: auto;
	transition:            all .3s ease-out;
	-moz-transition:       all .3s ease-out;
	-webkit-transition:    all .3s ease-out;
	-o-transition:         all .3s ease-out;
}

#t3-header.scroll .lockclosed {
	width: 14px;
	height: auto;
	transition:            all .3s ease-out;
	-moz-transition:       all .3s ease-out;
	-webkit-transition:    all .3s ease-out;
	-o-transition:         all .3s ease-out;
}



.nav > li > span {
	display: block;
}
/* Color Main Menu Items */
.navbar-default .navbar-nav > li > a,
.navbar-default .navbar-nav > li > span {
    color: var(--color-black);
	transition:            all .2s ease-out;
	-moz-transition:       all .2s ease-out;
	-webkit-transition:    all .2s ease-out;
	-o-transition:         all .2s ease-out;
	margin: 0 2px;
}
/* Color on Hover on Main Menu Items */
.navbar-default .navbar-nav > li > a:hover, 
.navbar-default .navbar-nav > li > a:focus,
.navbar-default .navbar-nav > li > .separator:hover, 
.navbar-default .navbar-nav > li > .separator:focus,
.navbar-default .navbar-nav > li > span:hover, 
.navbar-default .navbar-nav > li > span:focus {
	background-color: var(--color-green);
    color: var(--color-white);
	border-radius: 6px;
}

.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus,
.navbar-default .navbar-nav > .open > .separator,
.navbar-default .navbar-nav > .open > .separator:hover,
.navbar-default .navbar-nav > .open > .separator:focus,
.navbar-default .navbar-nav > .open > span,
.navbar-default .navbar-nav > .open > span:hover,
.navbar-default .navbar-nav > .open > span:focus {
	background-color: var(--color-green);
    color: var(--color-white);
	border-radius: 6px;
}

/* Color on Active Main Menu Item */
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > .separator,
.navbar-default .navbar-nav > .active > span {
	background-color: var(--color-green);
    color: var(--color-white);
	border-radius: 6px;
}
/* Color Hover on Active Main Menu Item */
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
	background-color: var(--color-green);
    color: var(--color-white);
	border-radius: 6px;
}
/* Color on Current Main Manu Item */
.navbar-default .navbar-nav > .current > a {
	background-color: var(--color-green);
    color: var(--color-white);
	border-radius: 6px;
}
/* Color on Hover on Current Main Menu Item */
.navbar-default .navbar-nav > .current > a:hover,
.navbar-default .navbar-nav > .current > a:focus {
	background-color: var(--color-green);
    color: var(--color-white);
	border-radius: 6px;
}

/* Arrow when submenues are present */
.navbar-nav > .dropdown > a .caret,
.navbar-nav > .dropdown > .separator .caret {
	border-color: transparent!important;
    border-top-color: var(--color-black)!important;
	position: absolute;
	top: auto!important;
	right: 0!important;
	bottom: 0!important;
	height: 0;
	border-style: solid;
	border-width: 0 0 8px 8px;
	border-bottom-color: var(--color-black)!important;
}

/* Color on Caret on Active Main Menu Item */
.navbar-default .navbar-nav > .active > a .caret, 
.navbar-default .navbar-nav > .active > .separator .caret {
	background-color: rgba(255,130,186,0.00);
    color: rgba(255,255,255,1.00);
}


/* Hover on Arrow when submenues are present */
.navbar-nav > .dropdown > a:hover .caret,
.navbar-nav > .dropdown > a:focus .caret,
.navbar-nav > .dropdown > .separator:hover .caret,
.navbar-nav > .dropdown > .separator:focus .caret {
	border-top-color: rgba(255,255,255,1.00);
	border-bottom-color: rgba(255,255,255,0.00);
}

/* Dropdown */
.dropdown-menu {
	background-color: var(--color-white);
    border: 0px none rgba(0, 0, 0, 0.00);
    border-radius: 6px;
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0.176);
    font-size: 16px;
    left: 0;
    list-style: outside none none;
    margin: 0 0;
    min-width: 160px;
    padding: 0;
    position: absolute;
    text-align: left;
    top: 100%;
    z-index: 1000;
	font-weight: 700;
}

.t3-megamenu .mega-nav > li a,
.t3-megamenu .dropdown-menu .mega-nav > li a {
    border-radius: 6px;
}


/* Padding on Dropdown */
.t3-megamenu .mega-inner,
.t3-megamenu .mega-col-nav {
	padding: 0;
}

/* Padding on submenu items */
.t3-megamenu .mega-nav > li a,
.t3-megamenu .dropdown-menu .mega-nav > li a {
	padding: 9px 15px 8px 15px;
	text-decoration: none;
}

/* Color on submenu items */
.t3-megamenu .mega-nav > li a,
.t3-megamenu .dropdown-menu .mega-nav > li a {
    color: var(--color-black);
	transition:            all .2s ease-out;
	-moz-transition:       all .2s ease-out;
	-webkit-transition:    all .2s ease-out;
	-o-transition:         all .2s ease-out;
}

/* Hover on submenu items */
.t3-megamenu .mega-nav > li a:hover,
.t3-megamenu .dropdown-menu .mega-nav > li a:hover,
.t3-megamenu .mega-nav > li a:focus,
.t3-megamenu .dropdown-menu .mega-nav > li a:focus {
	background-color: var(--color-green);
    color: var(--color-white);
}
.t3-megamenu .dropdown-submenu.mega span {
    color: rgba(0,12,46,1.00);
}
.t3-megamenu .dropdown-submenu.mega.open span {
	background-color: rgba(145,199,143,1.00)!important;
}
/* Leave on submenu items */
.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
	background-color: transparent;
    color: var(--color-white);
}

/* Dropdown > dropdown placement */
.dropdown-submenu > .dropdown-menu {
    margin-left: 0;
    margin-top: 0;
}

/* Arrow on dropdown > dropdown */
.dropdown-submenu > a:after {
  border-left-color: var(--color-white);
}
/* Hover on Arrow on dropdown > dropdown */
.dropdown-submenu:hover > a:after {
  border-left-color: var(--color-white);
}

/* Color on active dropdown parent */
.dropdown-submenu.open > a {
	background-color: var(--color-green);
}

/* Color on Active dropdown item */
.dropdown-menu .current.active,
.dropdown-submenu.active,
.mega-dropdown-inner li.active {
	background-color: var(--color-green);
}
/* Color on Active dropdown > dropdown item */
.dropdown-submenu.active .current.active {
	background-color: var(--color-green);
}
.mega-dropdown-menu li.current.active a {
    color:  var(--color-white)!important;
}
.dropdown-submenu > .dropdown-menu {
	border-radiitemus: 0;
}
.t3-megamenu .mega-nav > li .separator {
	padding: 9px 15px 8px 15px;
	background-color: rgba(0,0,0,1.00);
}

.dropdown-submenu > a.HideMenuCaret::after {
    display: none!important;
}
.dropdown-submenu > .dropdown-menu {
	border-radius: 0;
}

/* Navigation MegaMenu EO */

.webui-popover-content {
    padding: 9px 14px;
    overflow: auto;
    display: none!important;
}
.webui-popover-title {
    padding: 8px 14px;
    margin: 0;
    font-size: 14px;
    font-weight: bold;
    line-height: 18px;
    background-color: #ffffff;
    border-bottom: 0px none #f2f2f2!important;
    border-radius: 5px 5px 0 0;
}
.fa-film {
}
.jai-map-wrap .point {
	text-decoration: none;
	font-size: 16px;
	width: 130px;
	height: auto;
	background-color: var(--color-green);
	border-radius: 5px;
	padding: 4px 4px 4px 30px;
	text-align: left!important;
	border-bottom: 0px solid #6A0136;
}
/*
.jai-map-wrap .point:after {
    content:'';
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 0;
    height: 0;
	bottom: -10px;
    border-top: 10px solid var(--color-green);;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
}
*/


.jai-map-wrap .bg {
	transform: none!important;
	z-index: 200;
}
.jai-map-wrap i {
	position: absolute;
	left: 5px;
	top: 5px;
	font-size: 20px;
}
/* Off Canvas */
.off-canvas-toggle {
    display: none;
}

/* Off Canvas EO */







/* Slider */
#slider {
	position: relative;
	text-align: center;
	overflow: hidden;
	z-index: 5;
	transition:            all .3s ease-out;
	-moz-transition:       all .3s ease-out;
	-webkit-transition:    all .3s ease-out;
	-o-transition:         all .3s ease-out;
}
#slider.scroll {
	transition:            all .3s ease-out;
	-moz-transition:       all .3s ease-out;
	-webkit-transition:    all .3s ease-out;
	-o-transition:         all .3s ease-out;
}
#slider .moduleimage {
	position: fixed;
	height: 25vw;
	overflow: hidden;
}
#slider .moduleimage img {
	width: 100%;
	height: auto;
}
#slider .moduletext {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
    display: -webkit-flex;
    display: -ms-flexbox;
	display: flex;
	align-items: center;
	justify-content: center;
}

#slider .moduletext .module-inner {
	width: 50%;
}
#slider p:last-of-type {
	margin-bottom: 0;
}

#slider h2 {
	color: var(--color-white);
	font-size: 2.4vw;
	margin: 0;
	line-height: 1.2;
}
/* Slider EO */



#t3-content.sidebar .pageWrapper {
	-webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: -webkit-flex;
    display: -ms-flexbox;
	display: flex;
}
#t3-content.sidebar .page-header-main {
}
#t3-content.sidebar .pageWrapper .com-content-article.item-page {
	-ms-flex: 0 1 75%;
	flex: 0 1 75%;
}
#t3-content.sidebar .pageWrapper .sidebar-2  {
	-ms-flex: 0 1 25%;
	flex: 0 1 25%;
	padding: 18px;
}






#below-content .barnevogne.mod-list .wrapper {
	-webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: -webkit-flex;
    display: -ms-flexbox;
	display: flex;
	margin: 0 -15px;
}
#below-content .barnevogne.mod-list .wrapper > div {
	-ms-flex: 0 1 33.33%;
	flex: 0 1 33.33%;
	padding: 15px;
	text-align: center;
}
#below-content .barnevogne.mod-list img {
	width: 100%;
	height: auto;
}
#below-content .modulebarnevogne {
	padding-bottom: 25px;
}
#below-content .modulebarnevogne h3.module-title {
	font-size: 30px;
}
#below-content .mod-articles-category-group {
	font-size: 30px;
}

#below-content .modulebarnevogne .price {
	font-size: 30px;
	font-weight: 700;
	margin-top: 12px;
}
#below-content .modulebarnevogne .price p:last-of-type {
	margin-bottom: 0;
}
.com-content-category-blog.produkter  .price {
	font-size: 20px;
	font-weight: 700;
	margin-top: 10px;
	text-align: center;
}


#below-content .startpakker.mod-list .wrapper {
	-webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: -webkit-flex;
    display: -ms-flexbox;
	display: flex;
	margin: 0 -15px;
}
#below-content .startpakker.mod-list .wrapper > div {
	-ms-flex: 0 1 33.33%;
	flex: 0 1 33.33%;
	padding: 15px;
	text-align: center;
}
#below-content .startpakker.mod-list img {
	width: 100%;
	height: auto;
}
#below-content .startpakker.mod-list .title {
	font-size: 20px;
	margin-top: 15px;
	font-weight: 700;
}

#below-content .modulestartpakker {
	padding-bottom: 25px;
}
#below-content .modulestartpakker h3.module-title {
	font-size: 30px;
}



.com-content-category-blog.produkter .blog-items,
.com-content-category-blog.produkter .cat-children {
	-webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: -webkit-flex;
    display: -ms-flexbox;
	display: flex;
	margin: 0 -15px;
}
.com-content-category-blog.produkter .blog-items > div,
.com-content-category-blog.produkter .cat-children > div {
	-ms-flex: 0 1 33.33%;
	flex: 0 1 33.33%;
	padding: 15px;
}
.com-content-category-blog.produkter .item-image {
    float: none;
    width: 100%;
    padding: 0;
}
.com-content-category-blog.produkter .page-header {
	text-align: center;
}

.com-content-category-blog.produkter .cat-children img {
	width: 100%;
	height: auto;
}
.com-content-category-blog.produkter .cat-children .wrapper {
    background-color: var(--color-grey-extralight);
	position: relative;
	transition:            all .3s ease-out;
	-moz-transition:       all .3s ease-out;
	-webkit-transition:    all .3s ease-out;
	-o-transition:         all .3s ease-out;
}
.com-content-category-blog.produkter .cat-children .wrapper:hover {
    background-color: var(--color-grey-light);
}
.com-content-category-blog.produkter .cat-children .wrapper .title {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
    background-color: var(--color-green);
	transition:            all .3s ease-out;
	-moz-transition:       all .3s ease-out;
	-webkit-transition:    all .3s ease-out;
	-o-transition:         all .3s ease-out;
}
.com-content-category-blog.produkter .cat-children .wrapper:hover .title {
    background-color: var(--color-green-dark);
}
.com-content-category-blog.produkter .cat-children .wrapper .title h3 {
	color: var(--color-white);
}
.cat-children .page-header {
    line-height: normal;
    padding: 10px 5px;
    margin: 0;
    font-size: 22px;
    font-weight: 500;
}


.table {
    width: auto;
    max-width: 100%;
    margin-bottom: 20px;
}


/* Intro + Medlem */

#intro,
#medlem {
    background-color: var(--color-white);
	padding: 50px 0;
	line-height: 1.6;
	font-size: 18px;
	z-index: 10;
	position: relative;
	text-align: center;
}
#intro .container,
#medlem .container {
	padding: 0 200px;
}
#intro img {
	width: 400px;
	height: auto;
	margin-bottom: 15px;
}
#intro p:last-of-type,
#medlem p:last-of-type {
	margin-bottom: 0px;
}
#medlem .linkbutton {
	margin-top: 20px;
	font-weight: 600;
	font-size: 20px;
}

/* Intro + Medlem EO */





.com-content-article .uk-scope p,
.com-content-article .uk-scope *+p {
    margin: 0px;
}
.com-content-article .uk-scope *+.uk-margin {
    margin-top: 0px!important;
}
.com-content-article .uk-scope .uk-margin {
    margin-bottom: 0px;
}
.com-content-article .uk-scope,
.com-content-article .uk-h3, .uk-scope h3 {
    font-size: 20px;
    line-height: 1.4;
    font-family: var(--font-default)!important;
	margin-bottom: 0!important;
	font-weight: 700!important;
}
.com-content-article .uk-scope .uk-text-left {
    font-family: var(--font-default);
}
.com-content-article .uk-scope .uk-margin a {
	color: var(--color-black);
	text-decoration: underline;
}
.com-content-article .uk-scope .uk-margin a:hover {
	text-decoration: none;
}

.com-content-article .uk-text-left .uk-button-link {
    color: var(--color-white);
    background-color: var(--color-green);
    border-radius: 5px;
    padding: 7px 16px 6px 16px;
	transition: 		all .3s ease-out;
	-moz-transition: 	all .3s ease-out;
	-webkit-transition: all .3s ease-out;
	-o-transition: 		all .3s ease-out;
    display: inline-block;
	font-weight: 700;
    text-decoration: none;
	white-space: nowrap;
	margin-top: 15px;
}
.com-content-article .uk-text-left .uk-button-link:hover {
    color: var(--color-white);
    background-color: var(--color-green-dark);
    text-decoration: none;
}


/* Custom */
#custom .t3-module {
	text-align: center;
	margin-top: 30px;
}
#custom .mod-articlescategory {
	-webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: -webkit-flex;
    display: -ms-flexbox;
	display: flex;
	margin: 0 -15px;
	text-align: center;
	justify-content: center;
}
#custom .mod-articlescategory > div {
	-ms-flex: 0 0 20%;
	flex: 0 0 20%;
	padding: 30px;
}
#custom .mod-articlescategory .image {
	width: 100%;
	height: auto;
	border-radius: 50%;
	overflow: hidden;
	position: relative;
}
.modulebarnevogne .image {
	position: relative;
	overflow: hidden;
}
#custom .mod-articlescategory .image img {
	width: 100%;
	height: auto;
}
#custom .mod-articlescategory .image .splash {
	text-align: center;
	position: absolute;
	top: 18px;
	right: 0;
	left: 20px;
	color: rgba(255,255,255,1.00);
	background-color: rgba(0,0,0,1.00);
	transform: rotate(15deg);
	width: 100%;
	font-weight: 700;
	padding: 4px;
}
.modulebarnevogne .splash {
	text-align: center;
	position: absolute;
	top: 18px;
	right: -120px;
	color: rgba(255,255,255,1.00);
	background-color: rgba(0,0,0,1.00);
	transform: rotate(20deg);
	width: 100%;
	font-weight: 700;
	padding: 4px;
}

#custom h3 {
	font-size: 30px;
	margin-bottom: 5px;
}
#custom .title h3 {
	font-size: 20px;
}
#custom .intro {
	font-size: 16px;
}
#custom .mod-articlescategory img {
	transition:            all .3s ease-out;
	-moz-transition:       all .3s ease-out;
	-webkit-transition:    all .3s ease-out;
	-o-transition:         all .3s ease-out;
}
#custom .mod-articlescategory:hover img {
	opacity: 1.0;
	transition:            all .3s ease-out;
	-moz-transition:       all .3s ease-out;
	-webkit-transition:    all .3s ease-out;
	-o-transition:         all .3s ease-out;
}
#custom .box:hover img {
	opacity: 1.0;
}

#custom .modulecustomized .module-title  {
	text-align: center;
}
#custom .modulecustomized {
	text-align: left;
}
#custom .modulecustomized img {
	float: left;
	margin-right: 25px;
}



/* Custom EO */

/* YouTube frontpage */
#youtube a {
	text-decoration: none;
}
#youtube ul {
	list-style: none;
	padding: 0;
	-webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: -webkit-flex;
    display: -ms-flexbox;
	display: flex;
	margin: 0 -15px;
	text-align: center;
	justify-content: center;
	font-weight: 700;
}
#youtube ul li {
	-ms-flex: 0 0 20%;
	flex: 0 0 20%;
	padding: 30px;
}
#youtube img {
	width: 100%;
	height: auto;
	border-radius: 50%;
	margin-bottom: 12px;
	transition:            all .2s ease-out;
	-moz-transition:       all .2s ease-out;
	-webkit-transition:    all .2s ease-out;
	-o-transition:         all .2s ease-out;
}
#youtube img:hover {
	transform: scale(1.1)
}


/* YouTube frontpage EO */



.searchorder,
.convertforms-submissions-search-bar {
	width: 100%;
}
input.searchorder {
	font-size: 24px;
	height: auto;
	border-radius: 0;
	border: 0 none transparent;
	border-bottom: 1px solid var(--color-grey-light);
}


/* Call To Action */
#calltoaction {
    background-color: var(--color-white);
	position: relative;
	z-index: 10;
	padding-bottom: 15px;
}
#calltoaction .mod-articlescategory {
	-webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: -webkit-flex;
    display: -ms-flexbox;
	display: flex;
	margin: 0 -15px;
	justify-content: center;
}
#calltoaction .mod-articlescategory > div {
	-ms-flex: 1 1 33.33%;
	flex: 1 1 33.33%;
	-ms-flex: 1 1 50%;
	flex: 1 1 50%;
	padding: 15px;
}
#calltoaction img {
	width: 100%;
	height: auto;
}


#calltoaction .image {
	position: relative;
}
#calltoaction .wrapper {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
#calltoaction .wrapper .title {
    color: var(--color-white);
    background-color: var(--color-green-dark);
    font-family: var(--font-default);
	font-weight: 700;
	height: 70px;
	font-size: 36px;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	text-align: center;
    display: -webkit-flex;
    display: -ms-flexbox;
	display: flex;
	align-items: center;
	justify-content: center;
	transition:            all .2s ease-out;
	-moz-transition:       all .2s ease-out;
	-webkit-transition:    all .2s ease-out;
	-o-transition:         all .2s ease-out;
}
#calltoaction .wrapper .intro {
	background-color: rgba(0,0,0,0.70);
    display: -webkit-flex;
    display: -ms-flexbox;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	opacity: 0;
	transition:            all .3s ease-out;
	-moz-transition:       all .3s ease-out;
	-webkit-transition:    all .3s ease-out;
	-o-transition:         all .3s ease-out;
	transition-delay: .1s;
}


#calltoaction a:hover .title {
    background-color: var(--color-green);
}





/* Call To Action EO */



.page-header {
    padding-bottom: 0px;
    margin: 0 0;
    border-bottom: 0px none #eeeeee;
}
.article_wrapper {
	overflow: auto;
}
.article_image {
	float: right;
	width: 50%;
	padding-left: 20px;
	padding-bottom: 20px;
}
.article_image img {
	width: 100%;
	height: auto;
}


.linkbutton {
    color: var(--color-white);
    background-color: var(--color-green);
    border-radius: 5px;
    padding: 7px 16px 6px 16px;
	transition: 		all .3s ease-out;
	-moz-transition: 	all .3s ease-out;
	-webkit-transition: all .3s ease-out;
	-o-transition: 		all .3s ease-out;
    display: inline-block;
	font-weight: 700;
    text-decoration: none;
	white-space: nowrap;
}
.linkbutton:hover {
    color: var(--color-white);
    background-color: var(--color-green-dark);
    text-decoration: none;
	transform: scale(1.1);
}


.linkbutton.order {
    background-color: var(--color-green-dark);
	margin: 10px 0;
}


#topimage {
	width: 100vw;
    position: relative;
	left: calc(-50vw + 50%);
	height: 300px;
	overflow: hidden;
    display: flex;
    align-items: center;
}
#topimage img {
	width: 100%;
	height: auto;

}




.page-header-main {
	width: 100vw;
    position: relative;
	left: calc(-50vw + 50%);
	height: 120px;
    display: -webkit-flex;
    display: -ms-flexbox;
	display: flex;
	align-items: center;
    background-color: var(--color-green-dark);
	margin-bottom: 35px;
}
.page-header-main h1 {
	margin: 0;
	font-size: 40px;
    color: var(--color-white);
}
.page-header-main h2 {
	margin: 8px 0 0 0;
	font-weight: 400;
	font-size: 20px;
    color: var(--color-white);
}


.blog-items-products-wrapper {
	width: 100vw;
    position: relative;
	left: calc(-50vw + 50%);
    background-color: var(--color-grey-light);
	padding: 15px 0;
}


#productinfo {
	width: 100vw;
    position: relative;
	left: calc(-50vw + 50%);
    background-color: var(--color-grey-light);
	padding: 0 0 30px 0;
	margin-top: 30px;
}
#productinfo .container {
	-webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: -webkit-flex;
    display: -ms-flexbox;
	display: flex;
}
#productinfo .container > div {
	-ms-flex: 1 1 33.33%;
	flex: 1 1 33.33%;
}
#productinfo h4 {
    color: var(--color-black);
    font-family: var(--font-heading);
	font-weight: 700;
	margin-top: 30px;
	margin-bottom: 10px;
}
#productinfo ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.download {
	text-align: right;
	margin-top: 10px;
}



/* Products EO */









.btn.btn-primary {
    font-family: var(--font-heading);
	font-weight: 400;
    color: var(--color-black);
    background-color: var(--color-grey-light);
	border: 0 none transparent;
	transition:            all .2s ease-out;
	-moz-transition:       all .2s ease-out;
	-webkit-transition:    all .2s ease-out;
	-o-transition:         all .2s ease-out;
}
.btn.btn-primary:hover {
    color: var(--color-white);
    background-color: var(--color-grey);
}
 .btn.btn-primary.btn-download span.last::before {
     font-family: "Font Awesome 5 Pro";
	 font-weight: 900;
	 content: "\f019";
	 margin-left: 8px;
}
 .btn.btn-primary.btn-pdf span.last::before {
     font-family: "Font Awesome 5 Pro";
	 font-weight: 900;
	 content: "\f1c1";
	 margin-left: 8px;
}

.mod-login__submit {
	margin-bottom: 0;
}
.mod-login__username {
	margin-bottom: 10px;
}
.eboxLogin .eb-h2 {
    font-family: var(--font-default);
	font-weight: 700;
	font-size: 28px;
	margin-bottom: 10px;
}
#form-login-remember-165 .form-check-input {
    padding: 8px 11px;
    height: 18px!important;
    width: 20px !important;
	top: 3px;
	margin-right: 8px;
}
.mod-login__password,
.mod-login__remember {
	margin-bottom: 15px;
}


.com-users-login__remember {
	padding-left: 180px;
}

.form-control-feedback {
    position: relative;
    top: 0;
    right: 0;
    z-index: 2;
    display: block;
    width: 530px;;
    height: 34px;
    line-height: 34px;
    text-align: center;
    pointer-events: none;
	display: none;
}



#instagram {
	margin-top: 25px;
}
#instagram p:empty {
	display: none;
}
#instagram h3 {
	text-align: center;
	margin-bottom: 20px;
}
#instagram h3 a {
	text-decoration: none;
}


/* Disclaimer */
#spacer {
	height: 80px;
}
#disclaimer {
    padding: 10px 0 20px 0;
    background-color: var(--color-white);
    color: var(--color-black);
	position: relative;
	z-index: 10;
}
#disclaimer .t3-module {
    margin-bottom: 0;
    text-align: center;
    font-size: 11px;
}
#disclaimer .t3-module p:last-of-type {
    margin-bottom: 0;
}
#disclaimer .t3-module a {
    margin: 0 10px;
    color: var(--color-grey);
	text-decoration: none;
}
#disclaimer .t3-module a:hover {
    color: var(--color-orange);
}

#disclaimer .t3-module.moduleGoogle {
    font-size: 9px;
    margin-top: 15px;
    color: var(--color-grey);
}
#disclaimer .t3-module.moduleGoogle a {
    margin: 0;
}
/* Disclaimer EO */



/* Samtykke */

.samtykkebox .eb {
    font-family: var(--font-default);
	font-size: 16px;
	color: var(--color-white);
}
.samtykkebox .eb-dialog {
	background-color: var(--color-black)!important;
}
.samtykkebox .eb-content h3 {
	margin-top: 0px!important;
	font-weight: 700;
}
.samtykkebox .eb-content.rstbox-content h3 {
    margin-top: 0;
}
.samtykkebox .eb a {
	color: var(--color-white);
    text-decoration: underline;
	transition: 		all .2s ease-out;
	-moz-transition: 	all .2s ease-out;
	-webkit-transition: all .2s ease-out;
	-o-transition: 		all .2s ease-out;
}
.samtykkebox .eb a:hover {
	color: var(--color-orange);
    text-decoration: none;
}
.samtykkebox .button {
	text-align: center;
}
.samtykkebox .eb-btn {
	display: inline-block;
	height: auto;
	padding: 8px 24px 6px 24px;
	font-size: 16px;
	font-weight: 400;
    text-transform: uppercase;
	line-height: 1.42857143;
	color: rgba(255,255,255,1.00);
    background-color: var(--color-orange)!important;
	background-image: none;
	border: 0 none #cccccc;
	border-radius: 6px;
	margin-top: 15px;
    text-shadow: 0 0 0 rgba(0, 0, 0, 0.25);
	-webkit-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.075);
	box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.075);
	transition: 		all .2s ease-out;
	-moz-transition: 	all .2s ease-out;
	-webkit-transition: all .2s ease-out;
	-o-transition: 		all .2s ease-out;
}
.samtykkebox .eb-btn:hover {
    color: var(--color-white)!important;
    background-color: var(--color-orange-dark)!important;
    opacity: 1;
	border-radius: 6px;
}
/* Samtykke EO */





.ba-gallery-content .row-fluid {
    margin-left: 0!important;
    margin-right: 0!important;
    margin-top: 25px;
}
.ba-gallery-grid {
    padding: 0!important;
}

.eboxSM #system-message-container .alert-info {
    background-color: var(--color-red)!important;
}

.eboxSM #system-message-container .alert {
	border-radius: 10px 0 0 10px!important;
}
.eboxSM .eb-dialog {
	border-radius: 10px!important;
	background-color: aqua;
}


/* Footer */



#footer {
    background-color: var(--color-green);
    color: var(--color-black);
    font-size: 14px;
	padding: 25px 0;
	text-align: center;
	position: relative;
	z-index: 10;
}

#footer .wrap {
	-webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: -webkit-flex;
    display: -ms-flexbox;
	display: flex;
}
#footer .wrap > div {
	-ms-flex: 1 1 25%;
	flex: 1 1 25%;
}


#footer a {
    color: var(--color-black);
}
#footer p:last-of-type {
	margin-bottom: 0;
}
#footer .moduleKontaktinfo img {
	width: 250px;
	height: auto;
	margin-bottom: 15px;
}
#footer .moduleSponsor {
	text-align: left;
}
#footer .moduleSponsor h3 {
	margin-top: 0;
}
#footer .moduleSponsor img {
	width: 70px;
	height: auto;
	margin-right: 20px;
}
#footer .moduleBisnode {
	text-align: right;
}
#footer .moduleBisnode img {
	width: 125px;
	height: auto;
}
/* Footer EO */


.com-content-category__table.category {
	border-top: 0 none transparent;
}
.com-content-category__table.category tr:hover {
	background-color: transparent!important;
}
.cat-list-row1, tr.cat-list-row1 td {
	background-color: transparent!important;
}
.com-content-category__table.category .register i {
}

.rsfiles-download-link {
	text-decoration: none;
	font-weight: 700;
}
.rsfiles-download-link:hover {
	text-decoration: underline;
}
.rsfiles-file-icon {
	margin-right: 6px;
	color: var(--color-red);
}
.badge {
    display: inline-block;
    min-width: 10px;
    padding: 0;
    font-size: inherit;
    font-weight: 400;
    line-height: inherit;
    color: var(--color-grey);
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    background-color: transparent;
    border-radius: 0px;
}
.rsfiles-file {
    display: inline-block;
    margin-bottom: 0px!important;
}
.rsfiles-layout .breadcrumb {
    margin-bottom: 0;
    padding-left: 10px;
    padding-right: 0;
    border-radius: 0;
}



.com-content-category__table .listheader,
.com-content-category__table .listcontent {
	-webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: -webkit-flex;
    display: -ms-flexbox;
	display: flex;
	transition: 		all .2s ease-out;
	-moz-transition: 	all .2s ease-out;
	-webkit-transition: all .2s ease-out;
	-o-transition: 		all .2s ease-out;
}
.com-content-category__table .listcontent {
	border-bottom: 1px solid var(--color-grey-light);
}
.com-content-category__table .listcontent:hover {
	background-color: var(--color-grey-light);
}
.com-content-category__table .listheader > div,
.com-content-category__table .listcontent > div {
	padding: 7px;
}

.com-content-category__table #categorylist_header_title, 
.com-content-category__table .list-title {
	-ms-flex: 1;
	flex: 1;
}
.com-content-category__table .listheader {
	font-weight: 600;
	border-bottom: 1px solid var(--color-grey-light);
}
.com-content-category__table #categorylist_header_date, 
.com-content-category__table .list-date {
	-ms-flex: 0 1 150px;
	flex: 0 1 150px;
	text-align: right;
}
.com-content-category__table #categorylist_header_type, 
.com-content-category__table .list-type {
	-ms-flex: 0 1 180px;
	flex: 0 1 180px;
}
.com-content-category__table #categorylist_header_initial, 
.com-content-category__table .list-initials {
	-ms-flex: 0 1 80px;
	flex: 0 1 80px;
}

.com-content-category__table .list-title {
	font-weight: 600;
}
.com-content-category__table .list-title i {
	margin-left: 5px;
}
.com-content-category__table .list-title a {
	text-decoration: none;
}
.com-content-category__table .list-title a:hover {
	text-decoration: underline;
}


table.contact {
	width: 700px;
}
table.contact td {
	padding: 6px;
}



/* Cookie */
.cpnb-m-cookies-floatButton-icon {
    width: 24px;
    height: 24px;
}
.cpnb-m-cookies-floatButton-icon img {
    width: 24px!important;
    height: 24px!important;
    opacity: 1.0;
	transition: 		opacity .3s ease-out;
	-moz-transition: 	opacity .3s ease-out;
	-webkit-transition: opacity .3s ease-out;
	-o-transition: 		opacity .3s ease-out;
}
.cpnb-m-cookies-floatButton-icon img:hover {
    opacity: 1.0;
}
.cpnb-m-cookies-floatButtonPosition_bottom_left {
	left: 5px!important;
}
.cpnb-m-cookies-floatButton {
	bottom: 50px!important;
}
.cpnb-button-ok {
    text-shadow: 0 0px 0 rgb(0 0 0 / 0%)!important;
    font-weight: 400!important;
}
.cpnb-text-center h3 {
    text-align: left!important;
}

.cpnb-m-cookies-floatButton-icon-fontawesome-icon {
    text-shadow: 0px 0px 0px transparent!important;
	color: rgba(255,255,255,0.70)!important;
}
/* Cookie EO */



cf-control-group cf-one-half boldtext soldout





.convertforms.bestilling .cf-control-group.boldtext label,
.convertforms.reklamation .cf-control-group.boldtext label ,
.convertforms.iconia .cf-control-group.boldtext label {
	font-weight: 700;
	font-size: 20px;
}
.convertforms.bestilling .cf-control-input-desc,
.convertforms.iconia .cf-control-input-desc	{
	text-align: right;
	padding-right: 5px;
}

.convertforms.bestilling .cf-control-group.heading .cf-control-input-desc,
.convertforms.iconia .cf-control-group.heading .cf-control-input-desc	{
	text-align: left;
}


.convertforms.bestilling .cf-control-group.totalsum,
.convertforms.iconia .cf-control-group.totalsum  {
	text-align: right;
}
.convertforms.bestilling .cf-control-group.totalsum .cf-label,
.convertforms.iconia .cf-control-group.totalsum .cf-label {
	font-weight: 700;
}
.convertforms.bestilling .cf-control-group.totalsum span,
.convertforms.iconia .cf-control-group.totalsum span {
	font-weight: 700;
	font-size: 30px;
	padding: 4px 4px 4px 30px;
	width: 200px;
	border-top: 1px solid var(--color-grey);
	border-bottom: 4px double var(--color-grey);
	display: inline-block;
	margin-top: 5px;
}
.convertforms.bestilling h2,
.convertforms.reklamation h2,
.convertforms.iconia h2 {
	margin: 0;
}

.convertforms.bestilling .cf-fields > .flex-one-third,
.convertforms.bestilling .cf-fields > .flex-two-thirds,
.convertforms.iconia .cf-fields > .flex-one-third,
.convertforms.iconia .cf-fields > .flex-two-thirds {
    flex-wrap: wrap;
	display: flex;
	align-self: flex-start;
}
.convertforms.bestilling .cf-fields > .flex-one-third,
.convertforms.iconia .cf-fields > .flex-one-third {
	flex: 1 1 33.33%;
}
.convertforms.bestilling .cf-fields > .flex-two-thirds,
.convertforms.iconia .cf-fields > .flex-two-thirds {
	flex: 1 1 66.66%;
}
.convertforms.bestilling .cf-fields > .flex-fullwidth,
.convertforms.iconia .cf-fields > .flex-fullwidth {
	flex: 1 1 100%;
    flex-wrap: wrap;
	display: flex;
}
.convertforms.bestilling .cf-fields > .flex-fullwidth > div,
.convertforms.iconia .cf-fields > .flex-fullwidth > div {
	-ms-flex: 1 1 100%;
	flex: 1 1 100%;
}
.convertforms.bestilling .cf-fields > .flex-fullwidth .send,
.convertforms.iconia .cf-fields > .flex-fullwidth .send {
	flex: 1 1 300px!important;
}


.convertforms.bestilling button.submit,
.convertforms.reklamation button.submit,
.convertforms.iconia button.submit {
    width: 300px;
	height: 60px;
	font-size: 20px!important;
	font-weight: 700!important;
	background-color: var(--color-black)!important;
	color: var(--color-white);
}

.convertforms.bestilling.cf-success .cf-response,
.convertforms.reklamation.cf-success .cf-response,
.convertforms.iconia.cf-success .cf-response {
	background-color: transparent;
	color: var(--color-black);
	
}
.convertforms.bestilling .textRight,
.convertforms.iconia .textRight {
	text-align: right;
}

.convertforms.bestilling input:required,
.convertforms.reklamation input:required,
.convertforms.iconia input:required {
	border: 1px solid rgba(200,200,200,1.00)
}
.convertforms.bestilling .placeholder,
.convertforms.reklamation .placeholder,
.convertforms.iconia .placeholder {
    position: relative;
}
.convertforms.bestilling .placeholder input,
.convertforms.bestilling .placeholder textarea, 
.convertforms.reklamation .placeholder input,
.convertforms.reklamation .placeholder textarea, 
.convertforms.iconia .placeholder input,
.convertforms.iconia .placeholder textarea {
	padding: 15px 10px 5px 10px;
}
.convertforms.bestilling .placeholder .cf-control-input .cf-control-label-placeholder,
.convertforms.reklamation .placeholder .cf-control-input .cf-control-label-placeholder,
.convertforms.iconia .placeholder .cf-control-input .cf-control-label-placeholder {
    font-size: 1em;
    color: rgba(140,140,140,1.00)!important;
    position: absolute;
    pointer-events: none;
    transition: all 0.2s ease;
    margin-bottom: 0;
    top: 19px;
    left: 20px;
	font-weight: 300;
}

.convertforms.bestilling .placeholder .cf-control-input.active .cf-control-label-placeholder,
.convertforms.bestilling .placeholder .cf-control-input .cf-control-label-placeholder.input-has-value,
.convertforms.reklamation .placeholder .cf-control-input.active .cf-control-label-placeholder,
.convertforms.reklamation .placeholder .cf-control-input .cf-control-label-placeholder.input-has-value,
.convertforms.iconia .placeholder .cf-control-input.active .cf-control-label-placeholder,
.convertforms.iconia .placeholder .cf-control-input .cf-control-label-placeholder.input-has-value {
    top: 12px;
    left: 20px;
    font-size: 10px!important;
    color: rgba(120,120,120,1.00)!important;
	font-weight: 300;
}



.convertforms.bestilling .cf-control-label-placeholder,
.convertforms.bestilling .placeholder .cf-control-label,
.convertforms.reklamation .cf-control-label-placeholder,
.convertforms.reklamation .placeholder .cf-control-label,
.convertforms.iconia .cf-control-label-placeholder,
.convertforms.iconia .placeholder .cf-control-label {
	display: none;
}
.convertforms.bestilling .placeholder .cf-control-label-placeholder,
.convertforms.reklamation .placeholder .cf-control-label-placeholder,
.convertforms.iconia .placeholder .cf-control-label-placeholder {
	display: inline-block;
}

.convertforms.bestilling .cf-required-label,
.convertforms.reklamation .cf-required-label,
.convertforms.iconia .cf-required-label {
	display: none;
}
.convertforms.reklamation .cf-required-label,
.convertforms.iconia .cf-required-label {
	background-color: rgba(255,255,255,1.00)!important;
	padding: 0;
	margin-left: 4px;
	border-radius: 0;
	margin-top: -1px;
	cursor: default;
}
.convertforms.bestilling .textlike .cf-control-input,
.convertforms.bestilling .textlike .cf-control-label,
.convertforms.iconia .textlike .cf-control-input,
.convertforms.iconia .textlike .cf-control-label {
	float: left;
}
.convertforms.bestilling .cf-one-third.columnRight,
.convertforms.bestilling .cf-two-thirds.columnRight,
.convertforms.iconia .cf-one-third.columnRight,
.convertforms.iconia .cf-two-thirds.columnRight {
	padding-top: 0;
	padding-bottom: 0;
}

.convertforms.bestilling .cf-displayNone,
.convertforms.iconia .cf-displayNone {
	display: none;
}
.convertforms.bestilling.cm .donthide.cf-hide,
.convertforms.iconia.cm .donthide.cf-hide {
    display: block;
    pointer-events: none;
}
.convertforms.bestilling.cm .donthide.cf-hide select,
.convertforms.iconia.cm .donthide.cf-hide select {
	opacity: 0.3;
}

.convertforms.bestilling .cf-control-group.status,
.convertforms.iconia .cf-control-group.status {
	display: none;
}

.convertforms.bestilling .cf-dropdown-disable,
.convertforms.bestilling.cm .cf-dropdown-disable,
.convertforms.iconia .cf-dropdown-disable {
	padding: 0;
	background-color: transparent;
}

/* Skjuler Sort Melange (611) */
.convertforms.bestilling.cm  select.kasse option[value="5710156109308"],
.convertforms.bestilling.cm  select.kasseunderdel option[value="Sort Melange (611)"],
.convertforms.bestilling.cm  select.lift option[value="2999000323111"],
.convertforms.bestilling.cm  select.liftunderdel option[value="Sort Melange (611)"],
.convertforms.bestilling.cm  select.pusle option[value="2999000149773"],
.convertforms.bestilling  select.kasse option[value="5710156109308"] {
     display: none;
}

/* Skjuler Choko (621) */
.convertforms.bestilling.cm  select.kasse option[value="2999000418008"],
.convertforms.bestilling.cm  select.kasseunderdel option[value="Choko (621)"],
.convertforms.bestilling.cm  select.liftunderdel option[value="Choko (621)"],

.convertforms.bestilling  select.kasse option[value="2999000418008"],
.convertforms.bestilling  select.lift option[value="2999000418046"],
.convertforms.bestilling  select.pusle option[value="2999000418077"] {
     display: none;
}



.convertforms.reklamation .cf-control-group.status {
	display: none;
}


.convertforms-submissions.list .statusBehandlet td {
	background-color: rgba(195,215,155,1.00)!important;
}
.convertforms-submissions.list .status.fullDelivery td {
	background-color: rgba(195,215,155,1.00)!important;
}



.convertforms.iconia .cf-control-group.soldout .cf-label::after {
	content: "UDSOLGT!";
	background-color: var(--color-black);
	color: var(--color-white);
	border-radius: 6px;
	padding: 3px 8px;
} 
.convertforms.iconia .cf-control-group.soldout input {
	display: none;
} 



.convertforms.iconia .cf-antal .cf-control-input {
	float: right;
	position: relative;
} 
.convertforms.iconia .cf-antal .cf-control-input::after {
	content: "stk.";
	color: var(--color-black);
	font-size: 15px;
	margin-left: 3px;
	font-weight: normal;
	position: absolute;
	right: 0;
	top: 1px;
} 
.convertforms.iconia .cf-antal input {
	padding: 0 25px 0 0;
	text-align: right;
	background-color: var(--color-white);
	width: 50px;
} 





/* -----------------------------------------------------------------------------
,
  Media Query: min-width: 1440px
  
----------------------------------------------------------------------------- */
@media (min-width: 1440px) {
.container {
	width: 1405px;
}


	
}


/* -----------------------------------------------------------------------------

  Media Query: max-width: 1436px
  
----------------------------------------------------------------------------- */
@media (max-width: 1440px) {
.container {
	width: 100%;
}

/* Products */
.blog-items.products .item-image {
	height: 8vw;
}
 /* Products EO */ 
   
	

    
}


/* -----------------------------------------------------------------------------

  Media Query: min-width: 1200px
  
----------------------------------------------------------------------------- */
@media (min-width: 1200px) {



	
	
}


/* -----------------------------------------------------------------------------

  Media Query: max-width: 1300px
  
----------------------------------------------------------------------------- */
@media (max-width: 1300px) {


    
}


/* -----------------------------------------------------------------------------

  Media Query: max-width: 1199px
  
----------------------------------------------------------------------------- */
@media (max-width:1199px) {


    
    
    
}


/* -----------------------------------------------------------------------------

  Media Query: max-width: 991px
  
----------------------------------------------------------------------------- */
@media (max-width: 991px) {
/*
.t3-navbar.navbar-collapse.collapse {
    display: none!important;
}
*/
	
	
html body {
	padding-top: 50px!important;
}
.t3-wrapper {
	margin-top: 0px!important;
}
#t3-mainnav .container {
	padding: 0 15px;
}
#t3-header #logo img {
    height: 30px;
    width: auto;
}
#t3-header.scroll #logo img {
    height: 30px;
}
#t3-header #logo {
	padding: 10px;
}	
	
#t3-header_scroll .navbar {
    min-height: 50px;
}    
#t3-header_scroll::after {
    top: 50px;
}
	
#t3-mainnav {
	display: none!important;
}
    
   
#topimage {
	height: auto;
	overflow: hidden;
}	
	
	
#intro .container {
	padding: 0 50px;
}
	

#calltoaction .mod-articlescategory > div {
	-ms-flex: 0 1 50%;
	flex: 0 1 50%;
}
	
table.contact {
	width: 100%;
}
	
/* Contact  */ 
	
#contact .container .moduleText {
	-ms-flex: 1 1 100%;
	flex: 1 1 10%;
}
#contact .container .moduleForm {
	-ms-flex: 1 1 100%;
	flex: 1 1 100%;
}
#contact .contact .moduletekst,
#contact .contact .moduleform {
    -ms-flex: 100%;
	flex: 100%;
	max-width: 100%;
    text-align: center;
}   

#contact .contact .moduletekst {
    justify-content: center;
} 
#contact .contact .moduletekst .module-inner,
#contact .contact .moduleform .module-inner  {
    max-width: 100%;
    padding: 30px;
}
/* Contact EO */  	
	
#custom .mod-articlescategory > div {
	-ms-flex: 0 0 25%;
	flex: 0 0 25%;
}

#custom .modulecustomized img {
	float: none;
	margin-right: 0;
	margin-bottom: 25px;
	width: 100%;
	height: auto;
}
	
#youtube ul li {
	-ms-flex: 0 0 25%;
	flex: 0 0 25%;
}
	
	
	
}


/* -----------------------------------------------------------------------------

  Media Query: max-width: 767px
  
----------------------------------------------------------------------------- */
@media (max-width: 767px) {

	
.mobilemenuck-item {
	text-align: center;
}	
.mobilemenuck-item .loginbutton {
	width: 40px;
	display: inline-block;
}	

	
#t3-content.sidebar .pageWrapper .com-content-article.item-page {
	-ms-flex: 0 1 100%;
	flex: 0 1 100%;
}
#t3-content.sidebar .pageWrapper .sidebar-2  {
	-ms-flex: 0 1 100%;
	flex: 0 1 100%;
}
	
.page-header-main {
	height: auto;
	min-height: 120px;
	padding-top: 25px;
	padding-bottom: 25px;
}	
.page-header-main h1 {
	font-size: 30px;
}	
.logo-mobile {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	padding: 8px;
}
.logo-mobile img {
	width: 250px;
}	

.com-content-category-blog.produkter .blog-items > div,
.com-content-category-blog.produkter .cat-children > div {
	-ms-flex: 0 1 50%;
	flex: 0 1 50%;
}	
	
/* Products */
#productinfo .container > div {
	-ms-flex: 1 1 50%;
	flex: 1 1 50%;
}
.blog-items.products > div {
	-ms-flex: 1 1 50%;
	flex: 1 1 50%;
} 
.blog-items.products .item-image {
	height: 16vw;
}
/* Products EO */
	
/* Off Canvas */
	#mobilemenuck-153-mobile {
		height: 100vh;
	}
/* Off Canvas EO */
	
/* Footer */
#footer .wrap > div {
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
	text-align: center;
	margin-top: 30px;
}
#footer .wrap .moduleSponsor {
	order: 2;
}
#footer .wrap .moduleSponsor img {
	margin: 0 10px;
}
#footer .wrap .moduleBisnode {
	order: 3;
	margin-top: 50px;
}
#footer .wrap .moduleKontaktinfo {
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
	order: 1;
}
#footer .wrap .moduleKontaktinfo img {
	width: 300px;
}
#footer .moduleKontaktinfo .wrap > div {
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
	text-align: center;
	margin-top: 0;
}	
/* Footer EO */	
  
#below-content .barnevogne.mod-list .wrapper > div {
	-ms-flex: 0 1 50%;
	flex: 0 1 50%;
}
#below-content .startpakker.mod-list .wrapper > div {
	-ms-flex: 0 1 50%;
	flex: 0 1 50%;
}
#latest .container .wrapper > div {
	-ms-flex: 1 1 100%;
	flex: 1 1 100%;
}
	
	
.article_image {
	float: none;
	width: 100%;
	padding-left: 0px;
	padding-bottom: 20px;
}
	
.item-image {
	width: 50%;
}
#intro img {
	width: 60vw;
}	

#t3-header .header-wrapper #logo {
    -ms-flex: 1 1 210px;
    flex: 1 1 210px;
}
#t3-header .header-wrapper #t3-mainnav {
    -ms-flex: 0 0 50px;
    flex: 0 0 50px;
}
	
#custom .mod-articlescategory > div {
	-ms-flex: 0 0 33.33%;
	flex: 0 0 33.33%;
}

#youtube ul li {
	-ms-flex: 0 0 33.33%;
	flex: 0 0 33.33%;
}	
	
/* Slider */
#slider {
	position: relative;
	margin-top: 0px;
	text-align: center;
}
#slider .moduleimage {
    position: relative;
	height: 50vw;
}
#slider .moduletext .module-inner {
    width: 80%;
}
#slider .moduleimage img {
    width: auto;
    height: 50vw;
}
#slider h2 {
	font-size: 4.8vw;
}
/* Slider EO */	
	
/* Contact */   
#contact .cf-fields {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto;
}

#contact .cf-control-group.name {
    grid-column-start: 1;
    grid-column-end: 1;
    grid-row-start: 1;
    grid-row-end: 1;
}
#contact .cf-control-group.email {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 1;
}
#contact .cf-control-group.message {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 2;
    grid-row-end: 2;
}
#contact .cf-control-group.send {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 4;
    grid-row-end: 4;
}
#contact .cf-control-group.consent {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 3;
    grid-row-end: 3;
    justify-self: center;
}
#contact .cf-control-group.send button {
    height: auto;
}
#contact .cf-control-group.consent .cf-checkbox-group {
    justify-content: center;
}
/* Contact EO */    
	
	

	
.convertforms.bestilling .cf-fields > .flex-one-third,
.convertforms.bestilling .cf-fields > .flex-two-thirds {
	-ms-flex: 1 1 100%;
	flex: 0 1 100%;
}
.convertforms.bestilling .cf-fields .flex-one-third {
	order: 2;
}
.convertforms.bestilling .cf-fields .flex-fullwidth {
	order: 3;
}
	
	
	
	
	
#calltoaction .mod-articlescategory > div {
	-ms-flex: 0 1 100%;
	flex: 0 1 100%;
}
	
#calltoaction a:hover .intro {
	display: none;
}

#calltoaction a:hover .title {
	background-color: rgba(0,0,0,0.70);
	top: calc(100% - 80px);
}	
	
	
	
	


.com-content-category__table .list-title {
	-ms-flex: 1 1 100%;
	flex: 1 1 100%;
	order: 1;
}
.com-content-category__table .list-title {
	padding-bottom: 0!important;
}
.com-content-category__table .listheader {
	display: none;
}
.com-content-category__table .list-date {
	-ms-flex: 1 1 120px;
	flex: 1 1 120px;
	text-align: right;
	order: 3;
	padding-top: 0!important;
}
.com-content-category__table .list-type {
	-ms-flex: 0 1 180px;
	flex: 0 1 180px;
	order: 2;
	padding-top: 0!important;
}
.com-content-category__table .list-initials {
	-ms-flex: 0 1 50px;
	flex: 0 1 50px;
	order: 4;
	padding-top: 0!important;
}


	
	
	
	
		
}


/* -----------------------------------------------------------------------------

  Media Query: max-width: 599px
  
----------------------------------------------------------------------------- */
@media (max-width: 599px) {
    

/* Products */
.blog-items.products > div {
	-ms-flex: 1 1 100%;
	flex: 1 1 100%;
} 
	
.blog-items.products .item-image {
	height: 33vw;
}
/* Products EO */
  
.form-horizontal .control-group .controls {
    margin-left: 0px;
}
#custom .mod-articlescategory > div {
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
}
#youtube ul li {
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
}
	
/* Contact */   
#contact .cf-control-group.name {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 1;
    grid-row-end: 1;
}
#contact .cf-control-group.email {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 2;
    grid-row-end: 2;
}
#contact .cf-control-group.message {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 3;
    grid-row-end: 3;
}
#contact .cf-control-group.send {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 5;
    grid-row-end: 5;
}
#contact .cf-control-group.consent {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 4;
    grid-row-end: 4;
}  
/* Contact EO */   
	

.item-image {
	float: none;
	width: 100%;
	padding: 0 0 25px 0;
}
  
#below-content .barnevogne.mod-list .wrapper > div {
	-ms-flex: 0 1 100%;
	flex: 0 1 100%;
}
#below-content .startpakker.mod-list .wrapper > div {
	-ms-flex: 0 1 100%;
	flex: 0 1 100%;
}

.convertforms.bestilling .cf-one-half,
.convertforms.bestilling .cf-one-third {
	width: 100%;
}
.convertforms.bestilling .cf-one-third.columnRight {
	width: 33.333333%;
}
.com-content-category-blog.produkter .blog-items > div,
.com-content-category-blog.produkter .cat-children > div {
	-ms-flex: 0 1 100%;
	flex: 0 1 100%;
}	
	
}


/* -----------------------------------------------------------------------------

  Media Query: max-width: 480px
  
----------------------------------------------------------------------------- */
@media (max-width: 480px) {	
	

	
}


/* -----------------------------------------------------------------------------

  Media Query: min-width: 768px
  
----------------------------------------------------------------------------- */
@media (min-width: 768px) {

	
	
}


/* -----------------------------------------------------------------------------

  Media Query: landscape
  
----------------------------------------------------------------------------- */
@media only screen and (orientation: landscape) {

	
}



