/*

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

*/




:root {
    
    
    --color-orange: rgba(242,111,33,1.00);
    --color-orange-dark: rgba(212,90,0,1.00);
    
    --color-black: rgba(0,0,0,1.00);
    --color-white: rgba(255,255,255,1.00);
    --color-grey: rgba(74,74,74,1.00);
    --color-grey-light: rgba(218,218,218,1.00);
    
    --font-default: 'Source Sans 3', 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-dark);
	background-repeat: no-repeat;
	text-indent: -999999px;
	z-index: 750;
	background-position: 2px 2px;
	opacity: 0.5;
	transition: opacity .5s ease-out;
	-moz-transition: opacity .5s ease-out;
	-webkit-transition: opacity .5s ease-out;
	-o-transition: opacity .5s ease-out;
}
#Thrane:hover {
	background-color: var(--color-dark);
	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-white);
}
body {
    font-family: var(--font-default);
    color: var(--color-grey);
    background-color: var(--color-white);
    font-size: 17px;
    font-weight: 300;
}

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-orange);
	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-orange);
	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-orange);
	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: 110px;
}
#t3-mainbody-wrapper {
    background-color: var(--color-white);
}
.t3-module {
    margin-bottom: 0px!important;
}

/* 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 #logo {
	-ms-flex: 0 0 210px;
	flex: 0 0 210px;
}
#t3-header .header-wrapper #t3-mainnav {
	-ms-flex: 1 1;
	flex: 1 1;
}
#t3-header #logo {
	padding: 10px;
	text-align: left;
}
#t3-header #logo p:last-of-type {
	margin-bottom: 0;
}
#t3-header #logo img {
    height: 90px;
    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: 60px;
	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 */






/* 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: 80px;
}
#t3-header .t3-megamenu {
    display: flex;
    align-items: center;
	justify-content: right;
    height: 110px;
    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: 80px;
	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: 45px 20px 45px 20px;
	text-decoration: none;
	font-weight: 600;
	font-size: 18px;
	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: 30px 12px 30px 12px;
	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-grey);
	transition:            all .2s ease-out;
	-moz-transition:       all .2s ease-out;
	-webkit-transition:    all .2s ease-out;
	-o-transition:         all .2s ease-out;
}
/* 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-orange);
    color: var(--color-white);
}

.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-orange);
    color: var(--color-white);
}

/* 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-orange);
    color: var(--color-white);
}
/* 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-orange);
    color: var(--color-white);
}
/* Color on Current Main Manu Item */
.navbar-default .navbar-nav > .current > a {
	background-color: var(--color-orange);
    color: var(--color-white);
}
/* 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-orange);
    color: var(--color-white);
}

/* Arrow when submenues are present */
.navbar-nav > .dropdown > a .caret,
.navbar-nav > .dropdown > .separator .caret {
	border-color: transparent!important;
    border-top-color: var(--color-grey)!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-grey)!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-black);
    border: 0px none rgba(0, 0, 0, 0.00);
    border-radius: 0px;
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0.176);
    font-size: 18px;
    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;
}

/* 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-white);
	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-orange);
    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: rgba(255,255,255,1.00);
}
/* Hover on Arrow on dropdown > dropdown */
.dropdown-submenu:hover > a:after {
  border-left-color: rgba(255,255,255,1.00);
}

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

/* Color on Active dropdown item */
.dropdown-menu .current.active,
.dropdown-submenu.active,
.mega-dropdown-inner li.active {
	background-color: var(--color-black);
}
/* Color on Active dropdown > dropdown item */
.dropdown-submenu.active .current.active {
	background-color: var(--color-black);
}
.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 */


.com-content-article__body .item-image {
	width: 40%;
	float: right;
}
.com-content-article__body .item-image img {
	width: 100%;
	height: auto;
}



/* Off Canvas */
.off-canvas-toggle {
    display: none;
}

/* Off Canvas EO */

/* Off-Canvas menu */

.sm-logo.sm-logo {
    background-color: var(--color-white)!important;
    padding: 20px 0 20px 0;
    text-align: center!important;
}
.sm-logo img {
    width: 220px!important;
    height: auto!important;
}
/* Off-Canvas menu EO */




/* Slider */
#slider {
	margin-top: 110px;
	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 {
	margin-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;
}
/* Slider EO */






/* Intro */

#intro {
	-webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: -webkit-flex;
    display: -ms-flexbox;
	display: flex;
	padding: 30px 0 15px 0px;
}
#intro .moduletext {
	-ms-flex: 1 1;
	flex: 1 1;
	background-color: var(--color-orange);
    display: -webkit-flex;
    display: -ms-flexbox;
	display: flex;
	justify-content: flex-end;
}
#intro .moduletext .module-inner {
	width: calc(100vw - 800px);
	padding: 20px 50px 20px 50px;
	color: var(--color-white);
	font-size: 20px;
	font-weight: 400;
    display: -webkit-flex;
    display: -ms-flexbox;
	display: flex;
	align-items: center;
	text-align: center;
}


#intro .moduleimage {
	-ms-flex: 0 0 400px;
	flex: 0 0 400px;
	overflow: hidden;
}
#intro p:last-of-type {
	margin-bottom: 0;
}
/* Intro EO */





/* Call To Action */
#calltoaction {
	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%;
	padding: 15px;
}
#calltoaction img {
	width: 100%;
	height: auto;
}


#calltoaction .image {
	position: relative;
}
#calltoaction .wrapper {
	background-color: var(--color-grey-light);
	height: 100%;
}
#calltoaction .wrapper .title {
	color: var(--color-white);
	background-color: var(--color-orange);
    font-family: var(--font-default);
	font-weight: 700;
	font-size: 24px;
	text-align: center;
	padding: 15px 15px;
}
#calltoaction .wrapper .intro {
	padding: 15px 25px;
	font-size: 17px;
}
#calltoaction h3 {
	text-align: center;
	margin-top: 30px;
	margin-bottom: 30px;
	font-size: 40px;
}





/* 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;
}


/* Kontaktformular */
#contact {
    background-color: var(--color-grey);
	padding: 50px 0;
	position: relative;
	z-index: 10;
	color: var(--color-white);
}
#contact .container {
	-webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: -webkit-flex;
    display: -ms-flexbox;
	display: flex;
}
#contact .container .moduleText {
	-ms-flex: 1 1 40%;
	flex: 1 1 40%;
	padding-right: 30px;
}
#contact .container .moduleForm {
	-ms-flex: 1 1 60%;
	flex: 1 1 60%;
}
#contact .convertforms {
    margin-top: 20px;
    font-family: var(--font-default)!important;
}
#contact .convertforms .cf-form-wrap {
    padding: 0!important;
}
#contact h3 {
	margin-top: 0;
	color: var(--color-white);
}

#contact .container .moduleText h3 {
	font-weight: 700;
	font-size: 28px;
}
#contact .container .moduleText p:last-of-type {
	margin-bottom: 0;
}
#contact .container .moduleText a {
	font-weight: 700;
}
#contact .container .moduleText a:hover {
	color: var(--color-white);
}

#contact .cf-fields {
    display: grid;
    grid-template-columns: auto auto 140px;
    grid-template-rows: auto auto 20px;
    grid-gap: 10px;
    padding: 0px;
    margin: 0!important;
}
#contact .cf-control-group {
    padding: 0px;
}
#contact .cf-control-group input {
}

#contact .cf-control-group.name {
    grid-column-start: 1;
    grid-column-end: 1;
    grid-row-start: 1;
    grid-row-end: 2;
}
#contact .cf-control-group.email {
    grid-column-start: 1;
    grid-column-end: 1;
    grid-row-start: 2;
    grid-row-end: 3;
}
#contact .cf-control-group.message {
    grid-column-start: 2;
    grid-column-end: 2;
    grid-row-start: 1;
    grid-row-end: 3;
}
#contact .cf-control-group.send {
    grid-column-start: 3;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 3;
}
#contact .cf-control-group.consent {
    grid-column-start: 1;
    grid-column-end: 4;
    grid-row-start: 3;
    grid-row-end: 3;
    justify-self: end;

}

#contact .cf-control-group.consent .cf-checkbox-group {
    justify-content: flex-end;
}


#contact .cf-control-group.consent label {
	color: var(--color-white)!important;
    
}
#contact .cf-control-group.consent label a {
    text-decoration: underline;
	transition: 		all .3s ease-out;
	-moz-transition: 	all .3s ease-out;
	-webkit-transition: all .3s ease-out;
	-o-transition: 		all .3s ease-out;
}
#contact .cf-control-group.consent label a:hover {
    text-decoration: none;
	color: var(--color-black);
}

#contact .cf-control-group.message textarea {
    height: 97px;
}
#contact .cf-control-group.send button {
    height: 97px;
	background-color: var(--color-orange-dark)!important;
	font-weight: 700;
    font-family: var(--font-default);
}

#contact .convertforms.cf-success.cf-success-hideform .cf-fields,
#contact .convertforms.cf-success.cf-success-hideform .cf-footer {
    display: none;
}

.convertforms.cf-success .cf-response {
    background-color: transparent!important;
}

.checkbox_styled {
    width: 1px !important;
    height: 1px !important;
    opacity: 0;
}
.checkbox_styled + label::before {
    content: "";
    display: inline-block;
    background: var(--color-white);
    border-radius: 3px;
    border: 1px solid var(--color-white);
    height: 14px;
    width: 14px;
    position: absolute;
    top: 2px;
    left: 0;
}
.checkbox_styled:checked + label::after {
    height: 14px;
    width: 14px;
    background-color: transparent;
    position: absolute;
    left: 0px;
    top: -3px;
    border-radius: 0px;
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    content: "\f00c";
    color: var(--color-black);
    font-size: 18px;
}
.checkbox_styled + label {
    cursor: pointer;
    margin-bottom: 0;
    display: inline-block;
    position: relative;
    padding-left: 20px!important;
}

html.kontakt #contact .moduleText {
	display: none;
}
html.kontakt #contact .container .moduleForm {
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
}
/* Kontaktformular EO */


.linkbutton {
    color: var(--color-white);
    background-color: var(--color-orange);
    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;
}
.linkbutton:hover {
    color: var(--color-white);
    background-color: var(--color-orange-dark);
    text-decoration: none;
	transform: scale(1.1);
}

.linkbutton i {
	margin-left: 8px;
}






/* Social Media */


#socialmedia .container {
    flex-wrap: wrap;
	display: flex;
}
#socialmedia .container > div {
	flex: 1 1 50%;
	padding: 15px;
}

.grp-theme-default .grp-reviews-container {
    background-color: var(--color-white)!important;
}
.grp-theme-default .grp-widget-load-more-btn {
    background-color: var(--color-orange-dark)!important;
    color: var(--color-white)!important;
}
.grp-widget-box-head {
	min-height: 160px!important;
}

.grp-widget-box-request {
	min-height: 50px;
    padding: 12px 20px 11px 20px!important;
}

.ffp-feed-header-cover {
	padding-top: 50%!important;
}
#socialmedia .ffp-feed-header-cover {
	padding-top: 53px!important;
    background-position: 0% 0%!important;
}
#socialmedia .container {
    padding: 0;
}

.ffp-feed-container {
    position: relative;
    overflow: hidden;
    overflow-y: auto;
    border-top: 1px solid #f1f1f1;
    background: rgba(0, 0, 0, 0.0)!important;
    transition: all 0.2s ease;
}
.ffp-feed-wrap {
    min-height: 60px;
    position: relative;
    transition: 0.2s;
    border: 0px solid #f1f1f1!important;
    border-radius: 0px;
    overflow: hidden;
    background: #fff;
    font-family: "Roboto", Arial, sans-serif;
    font-size: 13px;
    line-height: 1.2;
    color: #333;
    font-weight: 400;
}
.ffp-feed-menu-item {
    padding: 18px 12px 17px 12px!important;
}
.ffp-feed-header-cover-blank {
    height: 60px!important;
    background-color: transparent!important;
}
.ffp-feed-header-info {
	height: 100px!important;
}
a.ffp-feed-header-name {
    text-decoration: none;
    font-size: 23px;
    color: var(--color-white)!important;
    font-weight: 600;
}
.ffp-feed-header-info {
    position: relative;
    padding: 20px 20px 12px 20px!important;
    box-sizing: border-box;
    min-height: 73px;
}
a.ffp-feed-header-picture {
    float: left;
    display: block;
    width: 90px;
    height: 90px;
    background-size: cover;
    background-position: 50% 50%;
    text-decoration: none;
    margin-top: -30px!important;
    margin-right: 20px;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1), 0 3px 6px rgba(0, 0, 0, 0.19);
}
.ffp-feed-load-more-btn {
    display: block;
    text-align: center;
    cursor: pointer;
    opacity: 1!important;
    background-color: var(--color-orange-dark)!important;
    color: rgba(255,255,255,1.00)!important;
    padding: 8px 20px;
    border-radius: 0px!important;
    transition: all .2s ease;
}
.ffp-feed-menu {
    padding: 0 20px;
    min-height: 50px!important;
}
a.ffp-feed-header-button,
a.ffp-feed-btn {
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
    color: rgba(255,255,255,1.00)!important;
    background-color: var(--color-orange)!important;
    border-radius: 3px;
    padding: 4px 14px;
    transition: .2s all;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1), 0 3px 6px rgba(0,0,0,0.19);
}
/* Social Media EO */




/* Products */

.blog-items.products {
	-webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: -webkit-flex;
    display: -ms-flexbox;
	display: flex;
	margin: 0 -15px;
}
.blog-items.products > div {
	-ms-flex: 1 1 25%;
	flex: 1 1 25%;
	padding: 15px;
}
.blog-items.products .item-image {
	height: 120px;
    display: -webkit-flex;
    display: -ms-flexbox;
	display: flex;
	align-items: center;
	padding: 10px;
    background-color: var(--color-white);
}
.blog-items.products .item-image img {
	width: 100%;
	height: auto;
}

.blog-items.products .page-header h2 {
    background-color: var(--color-red);
	margin: 0;
    font-family: var(--font-heading);
    color: var(--color-white);
	font-size: 18px;
	font-weight: 700;
	padding: 12px 14px 10px 14px;
	transition:            all .2s ease-out;
	-moz-transition:       all .2s ease-out;
	-webkit-transition:    all .2s ease-out;
	-o-transition:         all .2s ease-out;
}
.blog-items.products a:hover {
	text-decoration: none;
}
.blog-items.products .item-content-image-link:hover + .item-content h2 {
    background-color: var(--color-red-dark);
}
.page-header-main {
	width: 100vw;
    position: relative;
	left: calc(-50vw + 50%);
    background-color: var(--color-orange-dark);
	height: 150px;
    display: -webkit-flex;
    display: -ms-flexbox;
	display: flex;
	align-items: center;
	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);
}
.category-desc {
	width: 100vw;
    position: relative;
	left: calc(-50vw + 50%);
    background-color: var(--color-white);
	padding: 0 0 35px 0;
}
.category-desc p:last-of-type {
	margin-bottom: 0;
}

.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;
    background-color: var(--color-red);
	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 {
    background-color: var(--color-red-dark);
}
 .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;
}




/* Disclaimer */
#spacer {
	height: 80px;
}
#disclaimer {
    padding: 10px 0 20px 0;
    color: var(--color-grey-light);
	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;
}





/* Footer */



#footer {
    color: var(--color-grey);
    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-grey);
}
#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 */




/* 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 */


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

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

#intro .moduletext .module-inner {
	width: calc(100vw - 800px);
	padding: 20px 50px 20px 50px;
}
#intro .moduleimage {
	-ms-flex: 0 0 400px;
	flex: 0 0 400px;
}
	
}


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

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

#intro .moduletext .module-inner {
	width: calc(100vw - 600px);
	padding: 20px 50px 20px 50px;
	font-size: 20px;
}
#intro .moduleimage {
	-ms-flex: 0 0 300px;
	flex: 0 0 300px;
}
	
}


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

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

/* Products */
.blog-items.products .item-image {
	height: 8vw;
}
 /* Products EO */ 
   
#intro .moduletext .module-inner {
	width: calc(100vw - 300px);
	padding: 20px 50px 20px 50px;
	font-size: 20px;
}
#intro .moduleimage {
	-ms-flex: 0 0 300px;
	flex: 0 0 300px;
}

    
}


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

  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) {


 #intro .moduletext .module-inner {
	width: calc(100vw - 300px);
	padding: 20px 50px 20px 50px;
	font-size: 18px;
}
#intro .moduleimage {
	-ms-flex: 0 0 300px;
	flex: 0 0 300px;
}  
    
    
}


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

  Media Query: max-width: 991px
  
----------------------------------------------------------------------------- */
@media (max-width: 991px) {
/*
.t3-navbar.navbar-collapse.collapse {
    display: none!important;
}
*/
#t3-header_scroll .navbar {
    min-height: 50px;
}    
#t3-header_scroll::after {
    top: 50px;
}
	

    
   
 #intro .moduletext .module-inner {
	width: calc(100vw - 250px);
	padding: 20px 50px 20px 50px;
	font-size: 2vw;
}
#intro .moduleimage {
	-ms-flex: 0 0 250px;
	flex: 0 0 250px;
}  

#calltoaction .mod-articlescategory > div {
	-ms-flex: 0 1 50%;
	flex: 0 1 50%;
}
	
	
	
/* 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 */  	
	
#socialmedia .container > div {
	flex: 1 1 100%;
}
	
}


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

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

.t3-wrapper {
	margin-top: 50px!important;
}
#t3-mainnav .container {
	padding: 0 15px;
}
#t3-header #logo img {
    height: 30px;
    width: auto;
}
#t3-header.scroll #logo img {
    height: 30px;
}

.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;
}	
	
#slider {
	margin-top: 50px;
}
   
 #intro .moduletext .module-inner {
	width: 100vw;
	padding: 30px 30px 30px 30px;
	font-size: 18px;
}
#intro .moduleimage {
	-ms-flex: 0 0 200px;
	flex: 0 0 200px;
	display: none;
}  	
	
	

	
/* Footer */
#footer .wrap > div {
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
	text-align: center;
	margin-top: 30px;
}
#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 */	
    
	
.article_image {
	float: none;
	width: 100%;
	padding-left: 0px;
	padding-bottom: 20px;
}
	
	
#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;
}
	

	
/* Slider */
#slider.scroll {
	margin-top: 50px;
}
/* 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 */    
	
	
#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);
}	
	
	
	
		
}


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

  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 */
  
.com-content-article__body .item-image {
	width: 100%;
	float: none;
}
	
	
/* 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 */   
	
	
    
}


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

  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) {

	
}



