/*  =Mobile 
    =Mobile small fixes
    =Tablet Portrait
    =Tablet Landscape / Desktop small 
    =Desktop large
*/

/* ----------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------- */
/* =Mobile  -------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------- */



/* Basics */

body {
    font-family: FFDINRoundWebRegular, sans-serif;
    font-style: normal;
    font-size: 15px;
    line-height: 1.2em;
    color: #787878;
    line-height: 22px;
    background-color: #F0F0EE;
}

h1 {
    font-family: FFNettoWebBold, sans-serif;
    font-size: 28px;
    line-height: 1.2em;
    color: #89A502;
    margin: 0px;
    margin-bottom: 12px;
}

h2 {
    font-family: FFNettoWebBlack, sans-serif;
    font-size: 28px;
    line-height: 1.2em;
    color: #89A502;
    text-transform: uppercase;
    margin: 0px;
    margin-bottom: 12px;
}

h3 {
    font-family: FFNettoWebBold, sans-serif;
    font-size: 23px;
    line-height: 1.1em;
    color: #89A502;
    margin: 0px;
    margin-bottom: 6px;
}

h4 {
    font-family: FFNettoWeb, sans-serif;
    font-size: 20px;
    line-height: 1.3em;
    margin: 0px;
    margin-bottom: 12px;
    color: #4f4f4f;
}

h5 {
    font-family: FFDINRoundWebBold, sans-serif;
    font-size: 16px;
    line-height: 1.4em;
    margin: 0px;
    margin-bottom: 12px;
    color: #4f4f4f;
}

h6 {
    font-family: FFDINRoundWebRegular, sans-serif;
    font-size: 16px;
    line-height: 1.2em;
    margin: 0px;
    color: #4f4f4f;
}

p {
    font-size: 16px;
    line-height: 22px;
}

p.small {
    font-size: 12px;
    line-height: 14px;
}

.lead {
    font-size: 18px;
    line-height: 24px;
}

strong {
    font-family: FFDINRoundWebBold, sans-serif;
    font-weight: normal;
    font-style: normal;
}

.hero ul strong,
.hero p strong,
.content ul strong,
.content p strong {
      color: #4F4F4F;
}

ul,
ol {
    margin-left: 0px;
    padding: 0px;
}

ol {
    margin-left: 40px;
    padding: 0px;
}

li {
    padding: 2px 0px 2px 0px;
}

a, .btn {
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
}

a:link {
    color: #4F4F4F;
    text-decoration: none;
}

a:visited {
    color: #4F4F4F;
    text-decoration: none;
}

a:hover {
    color: #4F4F4F;
    text-decoration: none;
}

a:active {
    color: #4F4F4F;
    text-decoration: none;
}

p a:link,
p a:visited {
    text-decoration: underline;
    color: #89A502;
}

label a:hover,
label a:active,
p a:hover,
p a:active {
    color: #748C01;
}

label a.muted:link,
label a.muted:visited,
p a.muted:link,
p a.muted:visited {
    text-decoration: underline;
    color: #4f4f4f;
}

label a.muted:hover,
label a.muted:active,
p a.muted:hover,
p a.muted:active {
    color: #748C01 !important;
}

label a.primary:link,
label a.primary:visited,
p a.primary:link,
p a.primary:visited {
    text-decoration: underline;
    color: #3291D0;
}

label a.primary:hover,
label a.primary:active,
p a.primary:hover,
p a.primary:active {
    color: #4f4f4f !important;
}

.cd-color-1 {
    color: #89A502 !important;
}

.cd-color-2 {
    color: #B8CD45 !important;
}


/* Header */

.header {
    background-image: -webkit-linear-gradient(47deg, #F3F3F1 0%, #E4E3E4 36%, #F9F9F9 83%, #F0F0EE 100%);
    background-image: linear-gradient(43deg, #F3F3F1 0%, #E4E3E4 36%, #F9F9F9 83%, #F0F0EE 100%);
    height: auto;
    background-color: #F0F0EE;
}

/* Main Section */

main {
    background-color: #fff;
    padding-bottom: 60px;
    min-height: 600px;
}

/* Main Content */

.content {
    padding-top: 48px;
}

/* Global background  */

.bg-light {
    background-color: #F9F9F4;
}

.bg-medium {
    background-color: #EBEBDB;
}

.bg-dark {
    background-color: #B8CD45;
}

/* Global Helper */

.h-divider {
    height: 1px;
    width: 100%;
    margin-top: 36px;
    padding: 0px 0px 36px 0px;
    border-top: 1px solid #DDD9D9;
    display: block;
}

.v-spacer-lg {
    margin-bottom: 36px;
}

.v-spacer-md {
    margin-bottom: 24px;
}

.v-spacer-sm {
    margin-bottom: 12px;
}

.no-v-space {
    margin-bottom: 0px !important;
}

.muted {
    color: #4F4F4F !important;
}

.justify-left {
    float: left;
    margin: 0px 24px 24px 0px;
}

.justify-right {
    float: right;
    margin: 0px 0px 24px 24px;
}

.section {
    padding: 24px 0px 24px 0px;
}

.section.no-padding {
    margin: 0px !important;
    padding: 0px !important;
}

.click-fade {
    background-image: none !important;
    -webkit-animation: fadeIt 0.75s ease-in-out;
    animation: fadeIt 0.75s ease-in-out;
}

@-webkit-keyframes fadeIt {
    0% {
        background-color: #F9F9F4;
    }
    100% {
        background-color: inherit;
    }
}
@keyframes fadeIt {
    0% {
        background-color: #F9F9F4;
    }
    100% {
        background-color: inherit;
    }
}



/* Navbar */

.navbar {
    background-color: transparent;
    background-image: -webkit-linear-gradient(rgba(255,255,255,0.90) 28%, rgba(255,255,255,1) 100%);
    background-image: linear-gradient(rgba(255,255,255,0.90) 28%, rgba(255,255,255,1) 100%);
    border: 0px;
    border-bottom: 1px solid #DDD9D9;
    padding: 0px;
    border-radius: 0px;
    height: 52px;
    font-family: FFNettoWebBold, sans-serif;
    margin-top: 12px;
    z-index: 1;
}

.navbar-header span {
    display: none;
}

.navbar-brand {
    padding: 8px 0px 0px 8px;
    z-index: 3;
    position: relative;
}

.navbar-brand img {
    max-width: 120px;
    height: auto;
    z-index: 2;
}

.nav.navbar-nav {
    margin-top: 0px;
    z-index: 2;
}

.navbar-collapse {
    box-shadow: 0px 20px 10px 0px rgba(0, 0, 0, 0.20);
    position: absolute;
    width: 100%;
    background-color: #FFF;
}

.navbar-toggle {
    border-radius: 0px;
    border: 0px;
}

.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
    background-color: transparent;
}

.navbar-default .navbar-toggle {
    background-color: transparent;
}

.navbar-toggle.collapsed {
    background-color: transparent;
}

.navbar-default .navbar-toggle .icon-bar {
    background-color: #89A502;
}

.navbar-default .navbar-nav>li {
    padding: 0px;
    border-top: 2px solid transparent;
}

.navbar-default .navbar-nav>li.dropdown:hover,
.navbar-default .navbar-nav>li.dropdown.open {
    background-color: #fff;
    border-top: 2px solid #B8CD45;
}

.nav .open>a, .nav .open {
    border-bottom: 1px solid #DDD9D9;
}


.nav .open>a, .nav .open>a:hover, .nav .open>a:focus {
    border-color: transparent;
}

.navbar-default .navbar-nav>li>a {
    color: #414141;
    text-transform: uppercase;
    padding: 12px 12px 12px 12px;
    border-bottom: 1px solid #DDD9D9;
    letter-spacing: 0.4px;
    font-size: 16px;
}

.navbar-default .navbar-nav>li>a span.icon-chevron-down-sm {
    color: #89A502;
    font-size: 8px;
    margin-left: 2px;
    vertical-align: middle;
}

.navbar-default .navbar-nav>li.dropdown:hover a,
.navbar-default .navbar-nav>li.dropdown.open a {
    background-color: #fff;
    color: #89A502;
    font-size: 16px;
}

.navbar-default .dropdown-menu .divider {
    margin-top: 10px;
    margin-bottom: 20px;
}

.navbar-nav .open .dropdown-menu {
    padding: 0px 0px 20px 0px;
    border-bottom: 2px solid #B8CD45;
}


.navbar-default .dropdown-menu > li > a > i {
    font-size: 13px;
    margin-right: 6px;
}

.navbar-default .navbar-nav>.active>a,
.navbar-default .navbar-nav>.active>a:hover,
.navbar-default .navbar-nav>.active>a:focus {
    color: #89A502;
    background-color: transparent;
    border-bottom: 1px solid #DDD9D9;
}

.navbar-default .navbar-nav>.active.dropdown.open>a {
    border-bottom: 1px solid transparent;
}

.navbar .sub-title {
    color: #4f4f4f !important;
    font-size: 12px;
    font-family: FFDINRoundWebRegular, sans-serif;
    display: block;
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


.navbar .btn {
    height: 37px;
    padding: 7px 14px 0px 13px;
    margin: 8px 12px 10px 0px;
}



/* Navbar Kundenportal - Checkout */

.navbar-trust {
    padding-top: 14px;
    position: relative;
    margin-top: -52px;
    margin-right: -8px;
}

.navbar-trust i {
    font-size: 26px;
    color: #89A502;    
    margin-right: 4px;
    float: left;
}

.navbar-trust p {
    float: left;
    line-height: 1.3em;
    font-size: 12px;
}

.navbar-trust p strong {
    color: #4f4f4f;
}

.navbar-trust .navbar-hotline {
    display: none;
}

.navbar-trust .navbar-ssl {
    float: left;
}


/* Dropdowns */

.dropdown-menu {
    border-radius: 0px;
    border-bottom: 2px solid #B8CD45;
}

.dropdown-header {
    text-transform: uppercase;
    color: #4F4F4F !important;
    font-family: FFDINRoundWebRegular, sans-serif;
    font-size: 12px;
    margin-bottom: 2px;
}

.dropdown-menu .divider {
    height: 5px;
    margin: 0px 0px 12px 0px;
    padding: 0px;
    overflow: hidden;
    background-color: transparent;
    border-bottom: 1px solid #DDD9D9;
}

/* Buttons */

.btn:focus, button:focus {
    outline: 0px auto transparent !important;
    outline-offset: 0px !important;
}

.btn {
    font-size: 11px;
    text-transform: uppercase;
    font-family: FFDINRoundWebBold, sans-serif;
    border-radius: 6px;
    letter-spacing: 0.125em;
    font-weight: normal !important;
    font-style: normal !important;
    vertical-align: middle;
    height: 48px;
    padding: 13px 17px 14px 17px;
}

.btn::before {
    content: "";
    font-size: 14px;
}

.btn.btn-default,
.btn.btn-default:visited,
.btn.btn-default:hover,
.btn.btn-default:active {
    color: #89A502;
    border-color: #DDD9D9;
    background-color: #fff;
}

.btn.btn-primary,
.btn.btn-primary:visited,
.btn.btn-primary:active {
    color: #fff;
    background-color: #3291D0;
    border-color: #3291D0;
}

.btn.btn-link,
.btn.btn-link:visited,
.btn.btn-link:active {
    color: #4f4f4f;
}

.btn.btn-link-default,
.btn.btn-link-default:visited,
.btn.btn-link-default:active {
    color: #89A502;
    background-color: #FFF;
}

.btn.btn-link-primary,
.btn.btn-link-primary:visited,
.btn.btn-link-primary:active {
    color: #3291D0;
    background-color: #fff;
}

.btn i {
    padding: 0px 4px 0px 0px;
    vertical-align: middle;
    position: relative;
    top: 1px;
    font-size: 14px;
}

.btn.more::after {
    vertical-align: middle;
    content: "\69";
    font-family: "gruenwelt" !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 6px;
    margin-left: 4px;
    margin-right: 3px; 
    position: relative;
    top: -1px;
    -webkit-transition: inherit;
    transition: inherit;
}

.btn-lg {
    font-size: 14px;
    line-height: 20px;
}

.btn-group .btn {
    padding-left: 12px;
    padding-right: 12px;
}



/* Links */

.link {
    font-size: 11px;
    text-transform: uppercase;
    font-family: FFDINRoundWebBold, sans-serif;
    line-height: 14px;
    padding: 0px 0px 0px 0px;
    letter-spacing: 0.125em;
    font-weight: normal;
    color: #4f4f4f;
    vertical-align: middle;
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    border: 0px;
    background-color: transparent;
}

.link.link-default {
    color: #89A502;
}

.link.link-primary {
   color: #3291D0;
}

.link.more::after {
    vertical-align: middle;
    content: "\69";
    font-family: "gruenwelt" !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 6px;
    margin-left: 4px;
    margin-right: 3px;
    line-height: 14px;
    position: relative;
    top: -1px;
    -webkit-transition: inherit;
    transition: inherit;
}

.link.back::before {
    vertical-align: middle;
    content: "\68";
    font-family: "gruenwelt" !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 6px;
    margin-left: 3px;
    margin-right: 4px;
    line-height: 14px;
    position: relative;
    top: -1px;
    -webkit-transition: inherit;
    transition: inherit;
}

.link.down::after {
    vertical-align: middle;
    content: "\67";
    font-family: "gruenwelt" !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 6px;
    margin-left: 4px;
    margin-right: 3px;
    line-height: 14px;
    position: relative;
    top: -1px;
    -webkit-transition: inherit;
    transition: inherit;
}

.link.up::after {
    vertical-align: middle;
    content: "\6a";
    font-family: "gruenwelt" !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 6px;
    margin-left: 4px;
    margin-right: 3px;
    line-height: 14px;
    position: relative;
    top: -1px;
    -webkit-transition: inherit;
    transition: inherit;
}

/* Hero */

.hero {
    width: 100%;
    height: 250px;
    margin-top: -84px;
    display: block;
    background-color: #F0F0EE;
    position: relative;
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 227px;
}

/* Hero Start */

.hero.start {
   height: auto;
   background-size: auto 250px;
   background-color: #fff;
}


/* Hero Images */

.hero {
    background-image: url('http://placehold.it/1700x460/F0F0EE');
}

.hero.start {
    background-image: url('../img/pic-header-start.jpg');
}

/* >>>> add more header-classes with bg-images here */

.hero.rechtliches {
    background-image: url('../img/pic-header-rechtliches.jpg');
}

.hero.login {
    background-image: -webkit-linear-gradient(46deg, #F3F3F1 0%, #E4E3E4 20%, #F9F9F9 52%, #F0F0EE 100%);
    background-image: linear-gradient(44deg, #F3F3F1 0%, #E4E3E4 20%, #F9F9F9 52%, #F0F0EE 100%);
    min-height: 590px;
    height: auto;
    padding-top: 87px;
    padding-bottom: 30px;
}


/* Intro */

.intro {
    text-align: center;
    max-width: 375px;
    margin: 0 auto;
}

.intro h6 {
    display: inline-block;
    background-color: #89A502;
    padding: 5px 6px 3px 6px;
    text-transform: uppercase;
    color: #FFF;
    font-weight: normal;
    margin-top: 0px;
    font-size: 13px;
    letter-spacing: 0.04em;
    font-family: FFNettoWebBold, sans-serif;
}

.intro h2 {   
    display: none;
}

.intro h2 .muted {
    font-family: FFNettoWebBold, sans-serif;    
    color: #5d5c5c !important;
}

.intro-item-group {
    display: none;
}


/* Intro Startseite */

.hero.start .intro {
    position: relative;
}

.hero.start .intro h6 {
    margin-bottom: 24px;
}

.hero.start .intro h2 {
    display: inline-block; 
    margin-bottom: 0px;
}

.hero.start .intro-item-group {
    display: block;
    margin-top: 12px;
}

.hero.start .intro-badge {
    display: none;
}

.hero.start .intro-text {
   margin-bottom: 24px;
}

.hero.start .intro-text p {
    color: #3e3e3e;
}


/* Calculator */

.calculator {
    padding-bottom: 12px;
}

.calculator .calculator-group {
    
}

.calculator .nav-tabs > li,
.nav-pills > li {
    float: left;
}

.calculator .nav.nav-tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 0px;
    text-align: left;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.calculator .nav-tabs>li {
    margin: 0px 0px 0px 0px;
    padding-top: 20px;
    padding-bottom: 0px;
    text-align: center;
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
}
.calculator .nav-tabs>li>a {
    display: block;
    margin: 0px;
    padding: 12px 13px 12px 13px;
    height: 55px;
    border: 0px;
    border-right: 1px solid #89A502;
    border-left: 1px solid #DDEB94;
    border-radius: 0px;
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
}

.calculator .nav-tabs>li:first-child>a {
    border-left: 1px solid transparent;
}

.calculator .nav-tabs>li:last-child>a {
    border-right: 1px solid transparent;
}

.calculator .nav-tabs>li>a,
.calculator .nav-tabs>li>a:hover,
.calculator .nav-tabs>li>a:focus {
    margin: 0px;
    padding: 11px 11px 11px 11px;
    height: 55px;
    border: 0px;
    border-right: 1px solid #89A502;
    border-left: 1px solid #DDEB94;
    background-color: #B8CD45;
    color: #fff;
    text-transform: uppercase;
    font-size: 18px;
    font-family: FFDINRoundWebRegular, sans-serif;
    line-height: 1.8;
}

.calculator .nav-tabs>li.active>a,
.calculator .nav-tabs>li.active>a:hover,
.calculator .nav-tabs>li.active>a:focus {
    margin: 0px;
    padding: 11px 11px 11px 11px;
    height: 55px;
    border: 0px;
    border-right: 1px solid #89A502;
    border-left: 1px solid transparent;
    background-color: #89A502;
    color: #fff;
    text-transform: uppercase;
    font-size: 18px;
    font-family: FFDINRoundWebRegular, sans-serif;
    line-height: 1.8;
}

.calculator .nav-tabs>li>a::after {
    margin: 0px;
    font-family: gruenwelt;
    content: "\52";
    width: 1em;
    font-size: 20px;
    display: block;
    color: #B8CD45;
    margin: auto;
    position: absolute;
    top: 40px;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
}

.calculator .nav-tabs>li>a:hover::after {
    margin: 0px;
    font-family: gruenwelt;
    content: "\52";
    width: 1em;
    font-size: 20px;
    display: block;
    color: #B8CD45;
    margin: auto;
    position: absolute;
    top: 40px;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 1;
}


.calculator .nav-tabs>li.active>a::after,
.calculator .nav-tabs>li.active>a:hover::after,
.calculator .nav-tabs>li.active>a:focus::after {
    margin: 0px;
    font-family: gruenwelt;
    content: "\52";
    width: 1em;
    font-size: 20px;
    display: block;
    color: #89A502;
    margin: auto;
    position: absolute;
    top: 40px;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 1;
}

.calculator .tab-content {
    background-color: #fff;
    padding: 24px 24px 24px 24px;
    box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.10); 
}

.calculator .tab-heat-flow {
    cursor: pointer !important;
}

.calculator .calculator-text-divider label {
    color: #89A502;
    margin-bottom: 12px;
}

.calculator .calculator-slider {
    padding-bottom: 50px;
}

.calculator .heat-flow-step-1 .radio.as-btn  {
    width: auto;
    margin-bottom: 15px;
    margin-top: 0px;
}

.calculator .heat-flow-step-1 .radio.as-btn label {
    border: 2px solid #DEDEC4;
    border-radius: 6px;
    width: 100%;
    height: 48px;
    margin-left: 0px;
    margin-top: 0px;
    line-height: 1.4em;
    padding: 12px 12px 0px 48px;
}

.calculator .heat-flow-step-1 .calculator-text-divider label {
    color: #89A502;
    
}

.calculator .heat-flow-step-1 label i {
    margin-right: 6px;
}

.calculator .heat-flow-step-2a label span,
.calculator .heat-flow-step-2b label span {
    padding-left: 8px;
}


/* Slider overwrite */

.noUi-horizontal {
	height: 10px;
}

.noUi-horizontal .noUi-handle {
	width: 24px;
	height: 24px;
	left: -12px;
	top: -7px;
    box-shadow: none;
    border-radius: 50%;
    border: 1px solid #DDD9D9;    
    cursor: pointer;
}

.noUi-handle:before {
	content: "";
	display: none;
}

.noUi-handle:after {
	content: "";
	display: block;
	position: absolute;
	height: 12px;
	width: 12px;
	background: #89A502;
	left: 5px !important;
	top: 5px;
    border-radius: 50%;
}

.noUi-handle:after {
	left: 17px;
}

.noUi-active {
	box-shadow: none;
}

.noUi-target {
	background: #EBEBDB;
	border-radius: 20px;
	border: 0px;
	box-shadow: none;
}
.noUi-connect {
	background: #89A502;
	box-shadow: none;
    border-radius: 20px;
    -webkit-transition: background 450ms;
	transition: background 450ms;
}

.noUi-pips-horizontal {
	padding: 8px 0px 0px 0px;
	height: auto;
	top: 12px;
	left: 2px;
	width: 98%;    
}

.noUi-value {
    font-size: 12px;
}

.noUi-marker-horizontal.noUi-marker-normal,
.noUi-marker-horizontal.noUi-marker-sub,
.noUi-marker-horizontal.noUi-marker-large {
	height: 9px;
    background-color: #DDD9D9;
}


#power-slider .noUi-marker-horizontal.noUi-marker {
    display: none;
}

#power-slider .noUi-value {
    top: -2px;
}

#gas-slider .noUi-marker-horizontal.noUi-marker {
    top: 14px;
}


#gas-slider .noUi-value {
    display: none;
}

/* Trust Bar */

.trust {
    padding: 20px 0px 20px 0px;
}

.trust .trust-item-group {
    border-radius: 6px;
    padding: 14px;
}

.trust-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    margin-bottom: 16px;
}

.trust-items img {
    float: left;
    height: 36px;
    width: auto;
    margin-left: 0px;
}

.trust-items img.last-item {
    margin-right: 0px;
}

.trust-items-link span.link-testurteile {
    width: 100%;
    font-size: 12px;
    line-height: 1.4em;
    padding-top: 0px;
    float: left;
    display: block;
    margin-left: 0px;    
    margin-right: 0px; 
    text-align: center;
    margin-bottom: 24px;
}

.trust-items-link span.link-testurteile i {
    vertical-align: middle;
    font-size: 5px;
    margin-left: 1px;
    margin-right: 3px; 
    position: relative;
    top: 1px;
}

.reviews {
    width: 270px;
    overflow: hidden;
}

.reviews .reviews-percent {
    width: 70px;
    height: auto;
    padding: 0px;
    display: block;
    float: left;
}

.reviews .reviews-percent img {
    margin-top: -3px;
    width: 100%;
    height: auto;
}

.reviews .reviews-description {
   float: left;
    width: 200px;
    margin-left: 20px;
}

.reviews .reviews-description h5 {
    font-weight: normal;
    font-family: FFDINRoundWebRegular, sans-serif;
    color: #787878;
    margin-bottom: -3px;
    margin-top: -3px;
}

.reviews .reviews-description sup {
    font-size: 12px;
}

.reviews .reviews-description .icon-star,
.reviews .reviews-description .icon-star-half {
    color: #F68C2C;
    margin-right: 5px;
    margin-left: -1px
}

.reviews .reviews-description p {
    margin-bottom: 0px;
    color: #787878;
}


/* Lists */


ul.icon {
    list-style-type: none;
    margin-left: 18px;
}

ul.icon li {
    text-indent: -18px;
    vertical-align: middle;
}

ul.icon li:before {
    font-family: gruenwelt;
    content: "\63";
    float: left;
    width: 18px;
}

/* Content list */

ul.icon.bullet li:before {
    content: "\63";
    color: #B8CD45;
    font-size: 14px;
    position: relative;
    top: -2px;
}

ul.icon.bullet.error li {
    color: #F03700;
}

ul.icon.bullet.error li:before {
    content: "\54";
    color: #F03700;
    font-size: 12px;
    position: relative;
    top: -1px;
}


/* Check list */

ul.icon.check li:before {
    content: "\6b";
    color: #B8CD45;
    font-size: 11px;
    position: relative;
    top: -1px;    
}


/* List Navigation */

.list-navi {
    list-style-type: none;
    margin-bottom: 0;
}

.list-navi li {
    border-bottom: 1px solid #DDD9D9;
    padding: 6px 0px 5px 0px;
}

.list-navi li a {
    font-family: FFDINRoundWebBold, sans-serif;
    font-weight: normal;
}

.list-navi li a:hover {
    text-decoration: none;
    color: #3291D0;
}

.list-navi li a::after {
    font-family: gruenwelt;
    content: "\69";
    margin-left: 6px;
    margin-right: 2px;
    vertical-align: middle;
    font-size: 6px;
    position: relative;
    top: -1px;
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
}


.list-navi li a:hover::after{
    margin-left: 8px;
    margin-right: 0px;
}

/* Tooltip */

.popover i.icon-info,
i.icon-info.popover {
    cursor: help;
    font-size: 12px;
    line-height: 12px;
    position: relative;
    padding-top: 4px;
    top: 0px;
    color: #787878;
    margin: 0;
    margin-left: 0px;
}

.login .icon-info.popover {
    margin-top: 10px;
    display: block;
    float: left;
    margin-left: -10px;
}

.popover {
    cursor: help;
}


/* Icon with circle */

i.circle {
    display: block;
    border-radius: 50%;
    width: 90px;
    height: 90px;
    color: #fff;
    font-size: 32px;
    line-height: 102px;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 0px;
    margin-top: 0px;
    background-color: #B8CD45;
    position: relative;
}


/* Card */

.card {
    background: #FFFFFF;
    display: block;
    border: 1px solid #DDD9D9;
    text-align: center;
    margin-bottom: 30px;
}

.card::before {
    width: 100%;
    height: 3px;
    display: block;
    content: '';
    background-color: transparent;
    margin-top: -3px;
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
}

.card .card-body {
    padding: 24px 24px 24px 24px;
}

.card .card-body p {
    color: #787878;
}

.card i.circle {
    display: block;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    color: #fff;
    font-size: 28px;
    line-height: 58px;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 12px;
    margin-top: -8px;
    background-color: #3291D0;
    position: relative;
}

.card i.circle span {
    width: inherit;
    height: inherit;
    border: 0.07em solid #3291D0;
    display: inline-block;
    border-radius: 50%;
    position: absolute;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    position: absolute;
    left: 0;
    opacity: 0;
}


.card .card-footer .link {
    display: inline-block;
}


.card .card-footer {
    padding: 0px 24px 24px 24px !important;
    margin-top: -31px;
}

/* Tarifkarte */

.card.rate {
    border-top: 1px solid #89A502;
}
.card.rate::before {
    width: 100%;
    height: 3px;
    display: block;
    content: '';
    background-color: #89A502;
    margin-top: -3px;
}
.card.rate .card-body {
    padding-top: 36px;
}

.card.rate ul.benefits {
    list-style-type: none;
    margin: 0px;
    padding: 0px 0px 12px 0px;
}

.card.rate ul.benefits li {
    color: #787878;
    margin: 0px;
    padding: 12px 0px 6px 0px;
    text-align: center;
    width: 70%;
    margin: 0 auto;
    border-bottom: 1px solid #DDD9D9;
    line-height: 20px;
}

.card.rate ul.benefits li:last-child {
    border-bottom: none;
}

.card.rate ul.benefits li span.benefits-highlight {
    font-size: 28px;
    color: #89A502;
    font-family: FFNettoWebBold, sans-serif;
}

.card.rate ul.benefits li span.benefits-value {
    font-size: 18px;
    color: #4f4f4f;
}


/* Card Rate Checkout */

.card.rate.checkout {
    box-shadow: 0px 6px 6px 0px rgba(0, 0, 0, 0.20);
}

.card.rate.checkout .card-body .badge {
    width: 120px;
    height: 90px;
    display: block;
    overflow: hidden;
    position: absolute;
    right: 15px;
    top: -2px;
    border-radius: 0px;
    background-image: url('../img/badge-empfehlung.png');
    background-position: right top;
    background-color: transparent;
    background-repeat: no-repeat;
    background-size: 119px 91px;
}


.card.rate.checkout .card-body {
    overflow: hidden;
}

.card.rate.checkout h2 {
    text-transform: none;
    font-family: FFNettoWebBold, sans-serif;
    margin-bottom: -20px;
}


.card.rate.checkout ul.benefits {
    padding: 0px 0px 24px 0px;
}


.card.rate.checkout ul.benefits li {
    width: 100%;
    padding: 24px 0px 12px 0px;

}

.card.rate.checkout ul.benefits li span.benefits-highlight {
    font-size: 28px;
    color: #89A502;
    font-family: FFNettoWebBold, sans-serif;
}

.card.rate.checkout ul.benefits li span.benefits-value {
    color: #787878;
}

/* Alternative */

.card.rate.checkout.alternative {
    border-top: 1px solid #B8CD45;
}

.card.rate.checkout.alternative::before {
    background-color: #B8CD45;
}

.card.rate.checkout.alternative h2,
.card.rate.checkout.alternative .benefits-highlight {
    color: #B8CD45 !important;
}

.card.rate.checkout.alternative .link-primary {
    color: #09A4E2;
}

.card.rate.checkout.alternative .btn.btn-primary {
    background-color: #09A4E2;
}

.card.rate.checkout.alternative .card-body::before {
    display: none;
}


/* Card Extended */

.card.extended {
    box-shadow: 0px 6px 6px 0px rgba(0, 0, 0, 0.20);
    min-height: 66px;
    margin-top: -20px;
}

.card.extended .link {
    margin-left: 50px;
    display: inline-block;    
}

.card.extended .link::before {
    content: "\4c";
    display: block;
    width: 36px;
    height: 28px;
    border: 1px solid #DDD9D9;
    border-radius: 6px;
    color: #3291D0;
    font-family: gruenwelt;
    vertical-align: middle;
    position: relative;
    top: 18px;
    left: -48px;
    font-size: 14px;
    padding-top: 6px;
    padding-left: 2px;
    text-align: center;
}

.card.extended .link.minus::before {
    content: "\4b";    
}

.card.extended .card-body {
    text-align: left;
}


.card.extended .card-body h6 {
    color: #89A502;
    border-top: 1px solid #DDD9D9;
    padding-top: 24px;
}

/* Card Calculator */


.card.calculator .card-body {
    padding-top: 24px;
}

.card.calculator .card-body h3 i {
    font-size: 22px;
    margin-right: 12px;
    color: #89A502;
    position: relative;
    top: 1px;
}

.card.calculator.sm .btn {
    margin-top: 0px;
}


/* USP-Group */

.usp-group h3 {
    margin-top: 12px;
}


/* Special Styles Tab-Styled Headline */

h3.tab {
    margin-bottom: 0px;
}

h3.tab span {
    display: inline-block;
    margin-bottom: 0px;
    padding: 11px 29px 11px 29px;
    background-color: #89A502;
    color: #FFF;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 18px;
    font-family: FFDINRoundWebRegular, sans-serif;
    position: relative;
}

h3.tab span::after {
    font-family: gruenwelt;
    content: "\52";
    width: 1em;
    font-size: 20px;
    display: block;
    color: #89A502;
    position: absolute;
    top: 38px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    margin: 0 auto;
}

.card.rate.tabbed::before {
    width: 100%;
    height: 3px;
    display: block;
    content: '';
    background-color: #89A502;
    margin-top: -3px;
}


/* Box */

.box {
    border: 1px solid #DDD9D9;
    margin-bottom: 30px;
}

.box-body {
    padding: 20px;
}

.box-footer {
    padding: 20px 20px 8px 20px;
    padding: 20px 20px 20px 20px;
}

form .box-footer {
    padding: 20px;
}

.box-body::after,
.box-footer::after {
    content: "";
    display: block;
    clear: both;
}

.box .box-body h5 {
    margin-bottom: 4px;
}

.box .h-divider {
    margin-top: 0px;
    padding: 0px 0px 0px 0px;
}

.box .box-footer .link.back {
    margin-top: 17px
}

.box .floating-icon {
    font-size: 30px;
    color: #89A502;
    top: -6px;
    position: relative;    
    float: none;
    height: 48px;
    width: 40px;
}

.box i.circle {
    margin-bottom: 30px;
}

/* Contact Box */

.contact .box {
    text-align: center;
}

.contact .box .btn {
    width: 100%;
    margin-bottom: 6px;
}

/* Steps */

.circle.number {
    background-color: #3291D0;
    display: block;
    width: 44px;
    height: 44px;
    line-height: 48px;
    text-align: center;
    border-radius: 50%;
    color: #FFF;
    font-size: 28px;
    font-family: FFDINRoundWebRegular, sans-serif;
    margin: 0 auto;
    margin-bottom: 24px;
    margin-top: 24px;
}

.steps .box {
    padding-top: 24px;
    padding-bottom: 24px;;
}

.steps-item-group .steps-item {
    padding: 0px 24px 0px 24px;
}

.steps-item-group .steps-item.divider::after {
    content: "";
    display: block;
    width: 1%;
    height: 48px;
    border-left: 1px solid #DDD9D9;
    position: relative;
    margin: 0 auto;
    margin-top: 24px;
    margin-bottom: 24px;
}

/* Checkout My Data Box */

.mydata {
    margin-top: -24px;    
}

.mydata p {
    color: #4f4f4f;
    line-height: 1.3em;    
}

.mydata p.cd-color-1 {
    text-transform: uppercase;
    margin-bottom: 4px;
    font-size: 12px;
    font-family: FFDINRoundWebBold, sans-serif;
}

.mydata .price {
    font-size: 32px;
    color: #89A502;
    padding-top: 4px;
    font-family: FFDINRoundWebBold, sans-serif;
}

.mydata .link {
 
}

.mydata .box .details {
    display: none;
}

.mydata .box .details.show-it {
    display: block;
}

.mydata-close-details {
    position: absolute;
    right: 16px;
    top: 4px;
    display: block;
    
}

/* Tutorial */

.reading .box .box-body.xtra {
    padding: 20px 10px 0px 0px;
}

/* Feature */

.feature {
    background-color: transparent;
    border: 1px solid transparent;
    border-top: 3px solid transparent;
    text-align: center;
    display: block;
    margin-bottom: 30px;
}

.feature .feature-body {
    padding-top: 12px;
    padding-left: 6px;
    padding-right: 6px;
}

.feature .feature-footer {
    margin-top: -6px;
    padding-bottom: 24px;
}

.feature i.circle {
    display: block;
    border-radius: 50%;
    width: 90px;
    height: 90px;
    color: #fff;
    font-size: 48px;
    line-height: 112px;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 12px;
    background-color: #B8CD45;
}

.feature h3 {
    margin-bottom: 6px;
}

a.feature h3 {
    font-size: 20px;
}

.feature.horizontal p {
    margin-top: 12px;
}

/* Tabs */

.nav-tabs>li {
    margin-bottom: -3px;
}

.nav-tabs > li, .nav-pills > li {
    float: none;
    display: inline-block;
    *display: inline; /* ie7 fix */
    zoom: 1; /* hasLayout ie7 trigger */
}

.nav-tabs, .nav-pills {
    text-align: center;
}

.nav-tabs>li>a, .nav-tabs>li>a:hover, .nav-tabs>li>a:focus {
    color: #4f4f4f;
    background-color: #fff;
    border: 1px solid #DDD9D9;
    border-bottom-color: #DDD9D9;
    text-transform: uppercase;
    border-radius: 0px;
    padding: 10px 25px 12px 15px;
    font-size: 16px;
    vertical-align: middle;
}

.nav-tabs>li>a:hover {
    color: #748C01;
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
}

.nav-tabs>li.active>a, .nav-tabs>li.active>a:hover, .nav-tabs>li.active>a:focus {
    color: #89A502;
    font-family: FFDINRoundWebBold, sans-serif;
    padding-top: 14px;
    border-top: 2px solid #B8CD45;
    border-bottom-color: transparent;
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    padding-right: 15px;
}

.nav-tabs>li>a::after {
    vertical-align: middle;
    content: "\69";
    font-family: "gruenwelt" !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 6px;
    margin-left: 6px;
    position: absolute;
    top: 15px;
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
}

.nav-tabs>li.active>a::after {
    font-family: gruenwelt;
    content: "";
    margin-left: 0px;
    width: 0em;
    font-size: 0px;
}

/* Accordion */


.accordion .panel {
    padding: 12px 0px 0px 0px;
    border-bottom: 1px solid #DDD9D9;
}

.accordion h5 a {
    display: block;
    width: 100%;
    padding-right: 48px;
    position: relative;
}

.accordion h5 a:hover {
    color: #3291D0;
}

.accordion h5 a::after {
    font-family: "gruenwelt";
    content: "\4b";
    font-size: 14px;
    position: absolute;
    width: 36px;
    height: 24px;
    right: 0px;
    top: 0px;
    background-color: #3291D0;
    color: #FFF;
    text-align: center;
    line-height: 24px;
    border-radius: 4px;
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
}


.accordion h5 a.collapsed::after {
    content: "\4c";
    background-color: #FFF;
    color: #3291D0;
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
}

.accordion h5 a:hover.collapsed::after {
    background-color: #2874A6;
    color: #FFF;
}


/* Articles */

.img-article {
    margin-bottom: 24px;
}

.reviews-list-item {
    margin-bottom: 30px;
    padding-bottom: 12px;
    border-bottom: 1px solid #DDD9D9;
}

.reviews-list-item img {
    width: 140px;
    height: 140px;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.15s ease-in;
    transition: all 0.15s ease-in;
}

.reviews-list-item.zoom img:hover {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.20);
}

/* Blockquote */

blockquote {
    padding: 24px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 28px;
    margin-left: 0px;
    border: 0px;
    text-align: center;
    background-color: #F9F9F4;
}

blockquote p {
    font-size: 18px;
    color: #89A502;
    font-family: FFNettoWeb, sans-serif;
}

blockquote footer {
    font-size: 12px;
}

blockquote footer cite {
    font-family: FFDINRoundWebBold, sans-serif;
    font-style: normal;
    text-transform: uppercase;
    display: block;
    color: #4f4f4f;
}

blockquote footer:before, blockquote small:before, blockquote .small:before {
    content: '';
}


/* Address bar */

.address-bar i {
    font-size: 22px;
    color: #89A502;
    margin-right: 12px;
    line-height: 22px;
    position: relative;
    top: 5px;
    display: block;
    margin-bottom: 12px;
}

/* Contact */
.contact .contact-list {
    list-style-type: none;
    margin: 0px 0px 48px 0px;
    padding: 0px 0px 0px 0px;
    border-bottom: 1px solid #DDD9D9;
}

.contact .contact-list li {
    border-top: 1px solid #DDD9D9;
    padding: 24px 0px 24px 0px;
    position: relative;
}

.contact .contact-list h5 {
    margin-bottom: 4px;
}


.contact .contact-list h3 {
    position: relative;
    display: block;
    padding-right: 16px;
}

.contact .contact-list a {
    display: block;
}


.contact .contact-list a p {
    color: #787878;
}

.contact .contact-list a h3:after {
    font-family: gruenwelt;
    content: "\4e";
    vertical-align: middle;
    font-size: 16px;
    top: -6px;
    right: -10px;
    position: absolute;
    width: 36px;
    height: 36px;
    color: #89A502;
    text-align: center;
    line-height: 34px;
}

.contact .contact-list li i {
    font-size: 30px;
    color: #89A502;
    top: 24px;
    position: relative;
}

/* CTA Card */

.cta-card {
    background-color: #3291D0;
    display: block;
    padding-top: 36px;
    padding-bottom: 36px;
    cursor: pointer;
    text-align: center;
    color: #FFF;
}

.cta-card .btn {
    margin-top: 6px;
}

:hover .cta-card,
.cta-card,
:hover .cta-card strong,
.cta-card strong,
.cta-card:focus strong,
.cta-card h3,
.cta-card h5,
:hover .cta-card h3,
.cta-card h5 {
    color: #FFF !important;
}


/* Carousel */

.carousel .owl-stage {
    padding-top: 2px;
    margin-bottom: 12px;
}

.carousel .owl-item {
    padding-right: 15px;
    padding-left: 15px;
}

.carousel .owl-dots {
    display: block;
    width: 100%;
    height: 24px;
    text-align: center;
}

.carousel .owl-dots .owl-dot {
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
}

.carousel .owl-nav {
	margin-top: 0px;
	text-align: center;
}

.carousel .owl-dots .owl-dot span{
	display: block;
	width: 8px;
	height: 8px;
	margin: 0px 8px 0px 8px;
	border-radius: 50%;
	background: #EBEBDB;
}

.carousel .owl-dots .owl-dot.active span,
.carousel .owl-dots .owl-dot:hover span{
	background: #89A502;
}

.carousel .owl-nav div {
    position: absolute;
    width: 100%;
    top: 50%;
    height: 0px;
    margin-top: -48px;
}

.carousel .owl-prev .icon,
.carousel .owl-next .icon {
    color: #DDD9D9;
    font-size: 24px;
    line-height: 24px;
    padding: 6px 4px 0px 4px;
    vertical-align: middle;
    background-color: rgba(255, 255, 255, 0.9);
    position: absolute;
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
}

.carousel .owl-prev .icon:hover,
.carousel .owl-next .icon:hover {
    color: #89A502;
}

.carousel .owl-prev .icon {
    left: 0px;
}

.carousel .owl-next .icon {
    right: 0px;
}



/* Checkout process */

.checkout-process {
    background-color: #fff;
    border-top: 1px solid #DDD9D9;
    border-bottom: 1px solid #DDD9D9;
}

.checkout-process .process-item-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    border-left: 1px solid #DDD9D9;
    border-right: 1px solid #DDD9D9;
    overflow: hidden;
}

.checkout-process .process-item-group .process-item {
    float: left;
    height: 32px;
    width: 25%;
    position: relative;
    z-index: 0;
    padding-top: 4px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 20px;
    font-family: FFDINRoundWebBold, sans-serif;
}

.checkout-process .process-item-group .process-item::after {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    background-color: #fff;
    position: absolute;
    right: -15px;
    top: 2px;
    border-top: 1px solid #DDD9D9;
    border-right: 1px solid #DDD9D9;
    z-index: -1;    
    -webkit-transform: rotate(60deg) skewX(29deg);    
    transform: rotate(60deg) skewX(29deg);
}

.checkout-process .process-item-group .process-item .circle.number {
    float: left;
    padding: 0px;
    margin: 0px 12px 0px 0px;
    margin: 0px 6px 0px 0px;    
    height: 24px;
    width: 24px;
    font-size: 12px;
    line-height: 24px;
    border: 1px solid #DDD9D9;
    background-color: transparent;
    color: #4f4f4f;
    font-family: FFDINRoundWebBold, sans-serif;    
}

.checkout-process .process-item-group .process-item p {
    display: none;
    color: #4f4f4f;
    font-size: 12px;
    line-height: 24px;
}


.checkout-process .process-item-group .process-item.step-1 {
    padding-left: 0px;
    z-index: 5 !important;
}

.checkout-process .process-item-group .process-item.step-2 {
    z-index: 4 !important;
}

.checkout-process .process-item-group .process-item.step-3 {
    z-index: 3 !important;
}

.checkout-process .process-item-group .process-item.step-4 {
    z-index: 2 !important;
}

.checkout-process .process-item-group .process-item.step-4::after {
    display: none;
}


/* Active */


.checkout-process .process-item-group .process-item.active {
     width: 60%;
}

.checkout-process .process-item-group .process-item.active::after {
    background-color: #B8CD45;
}

.checkout-process .process-item-group .process-item.active .circle.number {
    border-color: #fff;
    color: #fff;
}

.checkout-process .process-item-group .process-item.active {
    background-color: #B8CD45;
}

.checkout-process .process-item-group .process-item.active p {
    display: block;
    color: #fff;
    
}


/* Done */

.checkout-process .process-item-group .process-item.done::after {
    background-color: #B8CD45;
    border-color: #89A502;
}

.checkout-process .process-item-group .process-item.done {
    background-color: #B8CD45;
}

.checkout-process .process-item-group .process-item.done p {
    color: #fff;
    
}

.checkout-process .process-item-group .process-item.done .circle.number {
    border-color: #fff;
    background-color: #fff;
    color: #B8CD45;
    line-height: 28px;
    
}


/* Forms */

.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
    margin-left: -6px;
}

label {
    font-weight: normal;
    color: #4f4f4f;
    margin-left: 2px;
}

.radio label, .checkbox label {
   padding-left: 36px;
}

.radio .radio-btn, .checkbox .checker  {
   position: absolute!important;
    margin-left: -36px !important; 
}

.form-group {
    position: relative;
}

.form-control {
    display: block;
    width: 100%;
    height: 48px;
    padding: 7px 12px 6px 12px;
    font-size: 16px;
    line-height: 1.4;
    color: #4f4f4f;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ddd9d9;
    border-radius: 6px;
    box-shadow: none;
}

.form-control:focus {
    border-color: #89A502;
    outline: 0;
    box-shadow: none;
}

.form-control:-moz-placeholder,
.form-control::-moz-placeholder,
.form-control::-webkit-input-placeholder,
.form-control:-ms-input-placeholder {
   color: #787878;
}

.form-control:-ms-input-clear {
    display: none;
}

.form-group .inner-label {
    position: absolute;
    margin-top: -34px;
    top: auto;
    right: 12px;
    display: inline-block;
    color: #787878;
    font-weight: normal;
    font-style: italic;
}

.form-group textarea {
    resize: none;
}

/* Calculator form */

.form,
.card.calculator {
    text-align: left;
}

.calculator input.form-control {
    border: 2px solid #DEDEC4;
}

.calculator input.form-control:focus {
    border: 2px solid #89A502;
}

.calculator .selector span {
    border: 2px solid #DEDEC4;
}

.calculator .selector span::after {
    border-color: #DEDEC4;
}

/* Form elements states */

.form-control.error {
    border-color: #F03700;
    padding-right: 20px;
}

.form-control.success {
    border-color: #DDD9D9;
    padding-right: 20px;
}


i.icon-cross-sm.error,
i.icon-correct-sm.success {
    position: absolute;
    height: 48px;
    width: 20px;    
    top: 0px;
    right: 0px;
    display: block;
    font-size: 11px;
    color: #fff;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    padding-top: 15px;
    text-align: center;
}

i.icon-cross-sm.error {
    background-color: #F03700;
}


i.icon-correct-sm.success {
    background-color: #89A502;
}

.selector.error span {
    border-color: #F03700;
}

.selector.success span {
    border-color: #89A502;
}

.selector.error span::after {
  color: #F03700;
  border-left: 1px solid #F03700;
  margin-right: 20px;
}

.selector.success span::after {
  color: #89A502;
  border-left: 1px solid #89A502;
  margin-right: 20px;
}

.disabled {
    opacity: 0.7;
    cursor: not-allowed !important;
}

.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
    background-color: transparent;
}

/* Contact Form */

label.bold {
    font-family: FFDINRoundWebBold, sans-serif;
}

/* Checkout Forms */

.checkout-form .radio,
.checkout-form .checkbox {
    margin-top: 0px;
    margin-bottom: 15px;
}

.checkout-form .radio label {
    border: 1px solid #DDD9D9;
    border-radius: 6px;
    width: 100%;
    height: 48px;
    margin-left: 0px;
    margin-top: 0px;
    line-height: 1.4em;
    padding: 12px 12px 0px 48px;
}

/* Added by BEMA on 08.12.2016 for checkboxes without frames */
.checkout-form .checkbox label {
    border: 0;
    border-radius: 6px;
    width: 100%;
    height: 48px;
    margin-left: 0px;
    margin-top: 0px;
    line-height: 1.4em;
    padding: 10px 12px 0px 36px;
}

.icon-info.form-hint {
    padding-left: 0px;
    vertical-align: middle;
    display: block;
    margin-bottom: 24px;
    margin-left: 15px;
    display: none;
}

.form-hint-item-visible,
.form-hint-item {
    position: relative;
    width: auto;
    border: 1px solid #DDD9D9;
    margin-top: 15px;
    margin-left: 15px;
    margin-right: 15px;
    border-radius: 6px;
    padding: 12px 12px 0px 12px;
    margin-bottom: 30px;
    background-color: #F9F9F4;
    display: block;
    clear: both;
}

.form-hint-item-visible p,
.form-hint-item p {
    font-size: 12px;
    line-height: 1.4em;
}

.form-hint-item-visible::before,
.form-hint-item::before {
    content: "";
    display: block;
    width: 11px;
    height: 11px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    left: 50%;
    margin-left: -6px;
    top: -6px;
    background-color: #F9F9F4;
    border-top: 1px solid #DDD9D9;
    border-left: 1px solid #DDD9D9;
}

.calendar .icon-calendar.input-addon {
    font-family: "gruenwelt";
    content: "\50";
    color: #89A502;
    font-size: 20px;
    border-left: 1px solid #ddd9d9;
    display: block;
    position: absolute;
    top: 0px;
    right: 0px;
    height: 48px;
    width: 48px;
    line-height: 12px;
    text-align: center;
    padding-top: 12px;
    pointer-events: none;
    cursor: pointer;
}

.calendar .icon-calendar.input-addon.active {
    border-left-color: #89A502;
}

/* Payment form fix */

.payment-form #uniform-payment-option {
    margin-top: -10px;
}

.payment-form .box>.box-body {
    margin-bottom: -36px;
}

/* Datepicker */

.datepicker {
    border-bottom: 1px solid #DDD9D9;
    border-color: #DDD9D9;
    padding: 12px !important;
}

.datepicker-dropdown.datepicker-orient-top:before {
    border-top: 7px solid #DDD9D9 !important;
    
}

.datepicker-switch {
    font-family: FFDINRoundWebBold, sans-serif;
    color: #4f4f4f;
    text-transform: uppercase;
}

.datepicker table thead tr {
    border-bottom: 1px solid #DDD9D9 !important;
    border-top: 1px solid #DDD9D9 !important;
}

.datepicker table thead>tr {
    border-bottom: 1px solid #DDD9D9 !important;
    border-top: 0px solid #DDD9D9 !important;
}

.datepicker table tr td {
    color: #4f4f4f !important;
}

.datepicker .cw {
    color: #89A502 !important;
}

.datepicker .datepicker-switch:hover, .datepicker .next:hover, .datepicker .prev:hover, .datepicker tfoot tr th:hover {
    background-color: #fff !important;
    background-image: none !important;
    color: #89A502;
    border-radius: 2px;
}

.datepicker table tr td.today, .datepicker table tr td.today.disabled, .datepicker table tr td.today.disabled:hover, .datepicker table tr td.today:hover,
.datepicker table tr td.day.focused, .datepicker table tr td.day:hover {
    background-color: #EBEBDB !important;
    background-image: none !important;
    color: #4f4f4f;
    border-radius: 2px;
}

.datepicker table tr td.active.active, .datepicker table tr td.active.disabled, .datepicker table tr td.active.disabled.active, .datepicker table tr td.active.disabled.disabled, .datepicker table tr td.active.disabled:active, .datepicker table tr td.active.disabled:hover, .datepicker table tr td.active.disabled:hover.active, .datepicker table tr td.active.disabled:hover.disabled, .datepicker table tr td.active.disabled:hover:active, .datepicker table tr td.active.disabled:hover:hover, .datepicker table tr td.active.disabled:hover[disabled], .datepicker table tr td.active.disabled[disabled], .datepicker table tr td.active:active, .datepicker table tr td.active:hover, .datepicker table tr td.active:hover.active, .datepicker table tr td.active:hover.disabled, .datepicker table tr td.active:hover:active, .datepicker table tr td.active:hover:hover, .datepicker table tr td.active:hover[disabled], .datepicker table tr td.active[disabled],
.datepicker table tr td span.active.active, .datepicker table tr td span.active.disabled, .datepicker table tr td span.active.disabled.active, .datepicker table tr td span.active.disabled.disabled, .datepicker table tr td span.active.disabled:active, .datepicker table tr td span.active.disabled:hover, .datepicker table tr td span.active.disabled:hover.active, .datepicker table tr td span.active.disabled:hover.disabled, .datepicker table tr td span.active.disabled:hover:active, .datepicker table tr td span.active.disabled:hover:hover, .datepicker table tr td span.active.disabled:hover[disabled], .datepicker table tr td span.active.disabled[disabled], .datepicker table tr td span.active:active, .datepicker table tr td span.active:hover, .datepicker table tr td span.active:hover.active, .datepicker table tr td span.active:hover.disabled, .datepicker table tr td span.active:hover:active, .datepicker table tr td span.active:hover:hover, .datepicker table tr td span.active:hover[disabled], .datepicker table tr td span.active[disabled],
.datepicker table tr td span.focused, .datepicker table tr td span:hover {
    background-color: #89A502 !important;
    background-image: none;
    color: #fff !important;
    border-radius: 2px;
}

.datepicker table tr td.today.active:hover {
    color: #fff;    
}

.datepicker table tr td.highlighted {
    background-color: #F9F9F4 !important;
}

.datepicker table tr td.new, .datepicker table tr td.old {
    color: #DDD9D9 !important;
}

/* Contract data */

.contract-data-group h3 {
    max-width: 68%;
}

.contract-data-group .contract-data-view,
.contract-data-group .contract-data-edit {
    position: relative;
}

.contract-data-group .contract-data-view .link,
.contract-data-group .contract-data-edit .link {
    position: absolute;
    top: 26px;
    right: 16px;
}

.contract-data-edit .btn i {
    font-size: 10px;
}

/* Alert Messages */

.alert {
    border: 0px;
    border-radius: 2px;
    text-align: center;
    padding-top: 24px;
}

.alert.alert-success, .alert.alert-success h3 {
    background-color: #B8CD45;
    color: #FFF;
}

.alert.alert-info, .alert.alert-info h3 {
    background-color: #EBEBDB;
    color: #4f4f4f;
}

.alert.alert-warning, .alert.alert-warning h3 {
    background-color: #3291D0;
    color: #FFF;
}

.alert.alert-danger, .alert.alert-danger h3 {
    background-color: #F03700;
    color: #FFF;
}

/* Tables */

.table-responsive {
    margin-bottom: 0px;
    border: 0px;
}

.table > thead > tr > th {
    color: #4f4f4f;
    font-family: FFDINRoundWebBold, sans-serif;
}

.table tbody td {
    
}

.table tbody td i.icon-doc-pdf {
    position: relative;
    top: 2px;
    color: #4f4f4f;
    width: 25%;
}


/* Footer */

.footer .links {
    padding-top: 24px;
    padding-bottom: 12px;
}

.footer .links p {
    font-size: 12px;
}

.footer .links .recommendation {
    text-align: center;
    margin: 0 auto;
    padding-bottom: 24px;
    display: block;
}

.footer .links .recommendation .link {
    margin-left: 12px;
    display: block;
}

.footer .links .recommendation i {
    color: #89A502;
    border: 1px solid #DDD9D9;
    background-color: #fff;
    border-radius: 50%;
    height: 48px;
    width: 48px;
    position: relative;
    font-size: 22px;
    display: block;
    line-height: 56px;
    margin-bottom: 12px;
    margin-left: auto;
    margin-right: auto;
}

.footer .links .recommendation p {
    width: auto;
    line-height: 1.4em;
    color: #4f4f4f;
}


.footer .links .btn {
    width: 100%;
    text-align: left;
    margin-bottom: 12px;
}

.footer .mobile-sitemap  {
    padding-top: 24px;
    padding-bottom: 12px;
    margin-bottom: 12px;
}

.footer .mobile-sitemap li {
    border-right: 1px solid #D5D3C4;
    line-height: 0.8em;
    margin-bottom: 12px;
}

.footer .mobile-sitemap li:last-child {
    border-right: none;
}

.footer .mobile-sitemap li a {
    font-family: FFDINRoundWebBold, sans-serif;
    font-size: 12px;
    text-align: center;
    text-transform: uppercase;
    color: #89A502;
    padding: 2px 12px 0px 8px;

}

.footer .copyright {
    text-align: center;
    padding-top: 24px;
    padding-bottom: 12px;
}

.footer .copyright p {
    font-size: 12px;
    color: #FFF !important;
    margin-bottom: 0px;
}

.footer .copyright p strong {
    color: #FFF;
}

.footer .copyright ul li {
    border-right: 1px solid #D5D3C4;
    line-height: 0.8em;
}

.footer .copyright ul li {
    border-right: 1px solid #FFF;
    line-height: 0.8em;
    padding: 0px 12px 0px 8px;
}

.footer .copyright ul li:last-child {
    border-right: none;
    padding-right: 0px;
}

.footer .copyright ul li a {
    font-size: 12px;
    color: #FFF !important;
    padding: 0px;
    margin: 0px;
}

.footer .copyright ul li a:hover {
    background-color: transparent;
    text-decoration: underline;
}

/* Top-Button */

.page-top:link, .page-top:visited {
    background-color: rgba(255, 255, 255, 0.8);
    width: 40px;
    height: 40px;
    display: block;
    position: fixed;
    bottom: -15px;
    right: 15px;
    opacity: 0;
    outline: 0;
    z-index: 1;
    box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.20);
    text-decoration: none;
    text-align: center;
    padding-top: 11px;
    color: #B8CD45;
    border-radius: 50%;
    border: 1px solid rgba(221, 217, 217, 0.8);
}

.page-top.visible {
    opacity: 1;
    display: block;
    bottom: 25px;
}

.page-top.visible:hover {
    box-shadow: 0px 6px 6px 0px rgba(0, 0, 0, 0.20);
    background-color: rgba(255, 255, 255, 1);
    border: 1px solid rgba(221, 217, 217, 1);
}



/* ----------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------- */
/* =Mobile small fixes --------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------- */



@media (max-width: 320px) {


    /* Basics */

    h3 {
        font-size: 18px;
    }

    /* Trust Bar */

    .trust-items img {
        height: 30px;
    }

    .reviews .reviews-description {
        width: 170px;
    }
    
    .reviews .reviews-description {
        margin-left: 20px;
    } 

    /* Tabs */

    .nav-tabs>li>a, .nav-tabs>li>a:hover, .nav-tabs>li>a:focus {
        padding: 10px 10px 12px 4px;
        font-size: 14px;
    }
    
    /* Navbar */
    
    .navbar-trust p {
        display: none;
    }
    
    /* Checkout process */
    
    .checkout-process .process-item-group .process-item p {
        font-size: 10px;
    }
    
    /* Buttons */
    
    .btn-group .btn {
        padding-left: 4px;
        padding-right: 4px;
    }


}

/* ----------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------- */
/* =Tablet Portrait ------------------------------------------------------------------------------------------------ */
/* ----------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------- */

@media (min-width: 768px) {

    /* Basics */

    h1 {
        font-size: 42px;
        margin-bottom: 0px;
    }

    h2 {
        font-size: 38px;
    }

    h3 {
        font-size: 24px;
    }

    h4 {
        font-size: 22px;
    }

    h5 {
        font-size: 18px;
    }

    h6 {
        font-size: 18px;
    }

    /* Helper */

    .h-divider {
        margin-top: 60px;
        padding: 0px 0px 60px 0px;
    }

    .v-spacer-lg {
        margin-bottom: 48px;
    }
        
    /* Buttons */
    
    .btn-group .btn {
        padding-left: 17px;
        padding-right: 17px;
    }
    
    /* Navbar */
        
    .navbar {
        margin-top: 24px;
    }
    
    .navbar-toggle {
        width: 50px;
        margin-top: 0px;
    }

    .navbar-header span {
        display: block;
        float: left;
        margin-top: 11px;
        border-left: 1px solid #787878;
        padding-left: 16px;
        line-height: 20px;
        font-size: 20px;
        color: #4f4f4f;
        font-family: FFNettoWeb, sans-serif;
        margin-left: 16px;
    }


    .navbar-trust i {
        margin-right: 10px;
    }

    .navbar-trust .navbar-hotline {
        float: left;
        margin-right: 30px;
        display: block;
    }

    .navbar-trust .navbar-ssl {
        margin-right: 10px;
    }        
       
        
    /* Header */

    .hero {
        height: 460px;
        margin-top: -94px;
        padding-top: 170px;
        background-size: auto auto !important;
    }
        
    .hero.start {
        height: 586px;
        margin-top: -94px;
        padding-top: 170px;
        background-size: auto auto !important;
    }
    
    .hero.login {
        padding-top: 100px;
    }        

    /* Intro */
            
    .hero>.container {
        position: relative;
    }
 

    .intro,
    .hero.start .intro {
        margin-top: 0px;
        text-align: left;
        width: 332px;
        position: absolute;
        right: 0px;
    }

    .intro h6 {        
        display: inline-block;
        background-color: #89A502;
        padding: 5px 8px 3px 10px;
        text-transform: uppercase;
        margin-bottom: 2px !important;
        color: #FFF;
        font-weight: normal;
    }
        

    .intro h2 {
        display: inline-block;
        background-color: #fff;
        padding: 7px 6px 2px 8px;
        margin-bottom: 2px !important;
        margin-right: -6px;
        font-size: 32px;
        letter-spacing: -0.02em;
    }
        
    .intro-item-group {
        margin-top: 20px;
        display: block;
    }    
    
    .intro-item-group::after {
         content: "";
         clear: both;
     }    

    .intro .intro-badge {
        display: block !important;
        width: 110px;
        height: 110px;
        float: left;
        position: relative;
        left: -28px;
        margin-right: -23px;
    }
        
    .intro .intro-badge img {
        width: 105px;
        height: auto;
    }
        
    .intro .intro-text {
        width: 300px;
        float: left;
        display: block;
        margin-left: 0px;
        padding: 3px 0px 0px 6px;
    }
        
    .intro .intro-text.with-badge {
        width: 212px;
    }        
    
    .intro .intro-text p {
        display: block;
        padding: 0px;
        color: #3e3e3e;
    }    
        
    .intro .link {
        display: inline-block;
        margin-left: 0px;
    }        
    
    /* Calculator */    
        
    .calculator {
        padding-bottom: 0px;
    }    
    
    .calculator .calculator-group {
        position: relative;
        top: -120px;
        margin-bottom: -120px;        
    }
        
    .calculator .nav.nav-tabs {
        display: block;
    }
    
    .calculator .nav-tabs>li>a,
    .calculator .nav-tabs>li>a,
    .calculator .nav-tabs>li>a:hover,
    .calculator .nav-tabs>li>a:focus,
    .calculator .nav-tabs>li.active>a,
    .calculator .nav-tabs>li.active>a:hover,
    .calculator .nav-tabs>li.active>a:focus {
        padding: 11px 70px 11px 70px;
    }
    
    .calculator .tab-content {
        height: 110px;
        overflow: hidden;
        padding: 16px 24px 0px 24px;
    }        

    .calculator .btn {
        margin-top: 27px;
    }
        
    .calculator .calculator-text-divider {
        position: relative;
        left: -16px;
        float: left;
        width: 10%;
    }

    .calculator .calculator-slider {
        float: right; 
        width: 84%;
        padding-bottom: 0px;
    } 
        
    .calculator .calculator-slider>div {
        margin-top: 6px;
    }         
           
    
    .calculator .heat-flow-step-1 label.question {
        float: none;
        display: block;
    }

    .calculator .heat-flow-step-1 .radio.as-btn  {
        width: auto;
        margin-bottom: 0px;
        margin-top: 0px;
        float: left;
    }

    .calculator .heat-flow-step-1 .radio.as-btn label {
        border: 2px solid #DEDEC4;
        border-radius: 6px;
        width: auto;
        height: 48px;
        margin-left: 0px;
        margin-top: 0px;
        line-height: 1.4em;
        padding: 12px 12px 0px 48px;
    }
    
    .calculator .heat-flow-step-1 .calculator-text-divider {
        position: relative;
        left: 12px;
        margin-right: 24px;
        float: left;
        top: 15px;
        width: 32px;
        display: block;
    }
    
    .calculator .heat-flow-step-1 label.popover {
        margin-top: 15px;
        margin-left: 8px;
    }

    .calculator .heat-flow-step-1 label i {
        margin-right: 6px;
    }

    .calculator .heat-flow-step-2a label span,
    .calculator .heat-flow-step-2b label span {
        padding-left: 8px;
    }


        
    /* Trust Bar */

    .trust {
        padding: 24px 0px 24px 0px;
    }

    .trust-items {
        width: 330px;
        float: left;
        margin-bottom: 0px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap; 
        -webkit-box-pack: start; 
        -ms-flex-pack: start; 
        justify-content: flex-start;
    }

    .trust-items img {
        margin-left: 0px;
        margin-right: 9px;
        height: 64px;
        width: auto;
    }
    
    .trust-items-link span.link-testurteile {
        width: 90px;
        font-size: 12px;
        line-height: 1.2em;
        padding-top: 6px;        
        display: block;
        margin-left: 0px;
        margin-right: 0px;
        text-align: left;
        margin-bottom: 0px;
    }    

    .reviews .reviews-description {
        width: 190px;
        margin-left: 8px;
    }     
    
    /* Tabs */

    .nav-tabs .nav>li>a {
        padding: 20px 20px 20px 20px;
    }

    /* Feature */
    
    .feature .feature-body {
        padding-top: 24px;
        padding-left: 12px;
        padding-right: 12px;
    }

    /* Blockquote */

    blockquote {
        padding: 48px;
    }


    blockquote p {
        font-size: 24px;
        line-height: 30px;
        padding: 0px 30px 0px 30px;
        margin-bottom: 24px;
    }


    /* Address bar */

    .address-bar i {
        display: inline;
        margin-bottom: 0px;
    }

    /* Checkout My Data Box */

    .mydata .box-body {
        padding: 16px 16px 0px 16px;
    }        
    
    .mydata .box-footer {
        padding: 16px 16px 12px 16px;
    }     
    
    .mydata .details .box-body {
        padding-bottom: 16px;
    }


    /* Login USPs */
    
    .login .usp-group {
        padding-top: 36px;
    }
    
        
    /* Footer */

    .footer .links .btn {

    }

    .footer .links .btn {
        width: auto;
    }

    .footer .copyright  {
        text-align: left;
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .footer .copyright p {
        text-align: right;
    }

    .footer .copyright img {
        width: 110px;
        height: auto;
    }

    .footer .copyright.checkout ul {
        text-align: right;
    }

    .footer .copyright.checkout img {
        width: 148px;
        height: auto;
    }


}

/* ----------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------- */
/* =Tablet Landscape / Desktop small ------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------- */


@media (min-width: 992px) {
    
    /* Basics */

    h1 {
        font-size: 46px;
        margin-bottom: 0px;
    }

    h2 {
        font-size: 38px;
    }

    h3 {
        font-size: 28px;
    }

    h4 {
        font-size: 24px;
    }

    h5 {
        font-size: 18px;
    }

    h6 {
        font-size: 18px;
    }    

    /* Header */

    .hero {
        height: 460px;
        margin-top: -124px;
        background-size: auto auto !important;
        background-repeat: no-repeat;
        padding-top: 170px;
        background-color: #F0F0EE;
    }
    
    .hero.start {
        height: 586px;
        margin-top: -124px;
        background-size: auto auto !important;
        background-repeat: no-repeat;
        padding-top: 170px;
        background-color: #F0F0EE;
    } 
    
    .hero.login {
        padding-top: 140px;
    }     

    /* Navbar */

    /* Activating menue on hover */
    .navbar-default .navbar-nav li.dropdown:hover .dropdown-menu {
	    display: block;
    }

    .navbar {
        margin-top: 20px;
        height: 84px;
        background-color: rgba(255,255,255,0.90);
        background-image: none;
    }
    
    .navbar-header span {
        margin-top: 18px;
        padding-left: 24px;
        line-height: 32px;
        font-size: 28px;
        margin-left: 0px;
    }    

    .navbar-brand {
        padding: 16px 30px 18px 25px;
        height: auto;
    }

    .navbar-brand img {
        max-width: 172px;
        height: auto;
    }

    .navbar-collapse {
        box-shadow: none;
        position: relative;
        background-color: transparent;
    }

    .navbar-default .nav  {
        margin-top: 11px;
    }

    .navbar-default .navbar-nav>li.dropdown:hover a,
    .navbar-default .navbar-nav>li.dropdown.open a {
        font-size: 18px;
    }

    .navbar-default .navbar-nav>li.dropdown:hover>a,
    .navbar-default .navbar-nav>li.dropdown.open>a {
        color: #4f4f4f;
    }

    .navbar-default .nav.navbar-right .btn {
        margin-right: 8px;
    }

    .navbar-default .navbar-nav>li>a {
        font-size: 18px;
        padding: 20px 18px 20px 22px;
        border-bottom: 0px;
    }

    .nav .open > a, .nav .open {
        border-bottom: 0px;
    }

    .navbar-default .navbar-nav>li.dropdown.open,
    .navbar-default .navbar-nav>li:hover {
         background-color: #fff;
         box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.20);
    }

    .navbar-default .navbar-nav>.active>a,
    .navbar-default .navbar-nav>.active>a:hover,
    .navbar-default .navbar-nav>.active>a:focus {
        border-bottom: 1px solid transparent;
    }

    .navbar-default .navbar-nav li.dropdown .dropdown-menu {
	    margin-top: 0px;
        background-color: #fff;
        color: #89A502;
        box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.20);
        padding: 17px 0px 20px 0px;
        border: 0px;
        border-bottom: 2px solid #B8CD45;
        width: 280px;
    }
    .navbar-default .dropdown-menu > li > a {
        position: relative;
        line-height: 1.2em;
        white-space: normal;
        padding-right: 0px;
        margin-top: 1px;
        background-color: transparent;
        padding-left: 22px;
        width: 99%;
    }

    .navbar-default .dropdown-menu > li > a > i {
        font-size: 14px;
    }

    .navbar-default .dropdown-menu > li > a .sub-title, .navbar-default .dropdown-menu > li > a .sub-title {
        margin-top: -3px;
        font-size: 12px;
        margin-bottom: -4px;

    }

    .navbar-default .dropdown-menu > li > a:hover .sub-title, .navbar-default .dropdown-menu > li > a:hover .sub-title {
       color: #4f4f4f;
    }

    .navbar-default .dropdown-menu > li > a:hover, .navbar-default .dropdown-menu > li > a:focus {
       color: #3291D0 !important;
        margin-left: 2px;
    }

    .navbar-default .dropdown-menu > li > a::after {
        font-family: gruenwelt;
        content: "\69";
        font-size: 8px;
        display: block;
        top: 2px;
        right: 24px;
        position: absolute;
        opacity: 0;
        -webkit-transition: all 0.15s ease-in-out;
        transition: all 0.15s ease-in-out;
    }

    .navbar-default .dropdown-menu > li > a:hover::after {
        right: 20px;
        opacity: 1;
    }

    .dropdown-header {
        padding-left: 22px;
    }

    .navbar .btn {
        margin-top: 10px;
    }
    
    .navbar-trust {
        margin-top: 8px;
    }

    .navbar-trust i {
        font-size: 32px;
        margin-right: 12px;
        position: relative;
        top: 4px;
    }

    .navbar-trust p {
        font-size: 16px;
    }

    .navbar-trust .navbar-hotline {
        margin-right: 40px;
    }

    .navbar-trust .navbar-ssl {
        margin-right: 30px;
    }      

    /* Calculator */
    
    .calculator .nav-tabs>li>a,
    .calculator .nav-tabs>li>a,
    .calculator .nav-tabs>li>a:hover,
    .calculator .nav-tabs>li>a:focus,
    .calculator .nav-tabs>li.active>a,
    .calculator .nav-tabs>li.active>a:hover,
    .calculator .nav-tabs>li.active>a:focus {
        padding: 11px 90px 11px 90px;
    }
    

    /* Trust Bar */

    .trust {
        height: 144px;
    }

    .trust-items {
        width: 552px;
        float: left;
    }

    .trust-items img {
        -webkit-transition: all 0.05s ease;
        transition: all 0.05s ease;
        margin-left: 9px;
        margin-right: 8px;
        float: left;
        height: 74px;
        width: auto;
    }
    
    .trust-items img:hover {
        -webkit-transform: scale(2);
        transform: scale(2);
        -webkit-transition: all 0.15s ease;
        transition: all 0.15s ease;
        box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.20);
        z-index: 2;
    }
    
    .trust-items-link span.link-testurteile {
        width: 92px;
        font-size: 12px;
        line-height: 1.4em;
        padding-top: 12px;        
        display: block;
        margin-left: -65px;
        margin-right: 95px;
    }        
    
    .trust-items-link span:hover.link-testurteile i {
        margin-left: 4px;
        margin-right: 0px; 
        -webkit-transition: all 0.15s ease;
        transition: all 0.15s ease;        
    }
    
    .reviews .reviews-percent img {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transition: all 0.05s ease;
        transition: all 0.05s ease;   
    }

    .reviews:hover .reviews-percent img {
        -webkit-transform: scale(1.4);
        transform: scale(1.4);
        -webkit-transition: all 0.15s ease;
        transition: all 0.15s ease;
    }    
    
    .reviews .reviews-description {
        width: 190px;
        margin-left: 8px;
    }
    
    /* Buttons */
    
    .btn:hover {
        text-decoration: none;
    }

    a:hover .btn.btn-default,
    .btn.btn-default:hover {
        background: #FFF;
        border: 1px solid #89A502;
        color: #748C01;
    }

    a:hover .btn.btn-default.inverted,
    .btn.btn-default.inverted:hover {
        background: #89A502;
        border: 1px solid #89A502;
        color: #FFF;
    }

    a:hover .btn.btn-primary,
    .btn.btn-primary:hover,
    .alternative .btn-primary:hover {
        background-color: #2874A6 !important;
        border-color: #2874A6;
    }
    
    a:hover .btn.btn-primary.inverted,
    .btn.btn-primary.inverted:hover {
        background-color: #FFF;
        border-color: #3291D0;
        color: #3291D0;
    }

    a:hover .btn-link,
    .btn.btn-link:hover {
        background-color: #4f4f4f;
        color: #FFF;
    }

    a:hover .btn-link-default,
    .btn.btn-link-default:hover {
        background-color: #FFF;
        color: #748C01;
        border: 1px solid #89A502;
    }

    a:hover .btn-link-primary,
    .btn.btn-link-primary:hover {
        background-color: #2874A6;
        color: #fff;
        border: 1px solid #2874A6;
    }    
    
    .btn:hover.more::after,
    a:hover .btn.more::after {
        margin-left: 7px;
        margin-right: 0px;
    }
    
    
    /* Links */
    
    .link:hover {
        text-decoration: none;
    }

    a:hover .link-default,
    .link-default:hover {
        text-decoration: none;
        color: #4f4f4f;
    }

    a:hover .link-primary,
    .link-primary:hover,
    .alternative .link-primary:hover {
        text-decoration: none;
        color: #4f4f4f !important;
    }    

    .link.more:hover::after,
    a:hover .link.more::after {
        margin-left: 7px;
        margin-right: 0px;
        color: #4f4f4f;
    }
    
    .link.back:hover::before,
    a:hover .link.back::before {
        margin-left: 0px;
        margin-right: 7px;
        color: #4f4f4f;
    }    
    
    /* Tabs */

    .nav-tabs>li>a, .nav-tabs>li>a:hover, .nav-tabs>li>a:focus {
        padding: 10px 100px 12px 90px;
    }
    
    .nav-tabs>li.active>a, .nav-tabs>li.active>a:hover, .nav-tabs>li.active>a:focus {
        padding-right: 90px;
    }
    
    .nav-tabs>li>a:hover, .nav-tabs>li>a:focus {
        border-top: 2px solid #B8CD45;
        color: #89A502;
        -webkit-transition: all 0.15s ease-in-out;
        transition: all 0.15s ease-in-out;
    }

    .nav-tabs>li>a:hover::after {
        margin-left: 9px;
        margin-right: -3px;
    }

    .nav-tabs>li.active>a:hover::after {
        margin-left: 0px;
        margin-right: 0px;
    }
    
    /* Small Tabs */
    
    .nav-tabs.small>li.active>a, .nav-tabs.small>li.active>a:hover, .nav-tabs.small>li.active>a:focus {
        padding: 14px 25px 12px 25px;
    }    

    
    .nav-tabs.small>li>a, .nav-tabs.small>li>a:hover, .nav-tabs.small>li>a:focus {
        padding: 10px 35px 12px 25px;
    }    


    /* Articles */

    .img-article.leave-grid-left {
        margin-left: -83px;
        width: 476px;
        float: left;
        margin-right: 28px;
        margin-top: 4px;
    }

    .img-article.leave-grid-right {
        margin-left: 28px;
        width: 476px;
        float: right;
        margin-right: -83px;
        margin-top: 4px;
    }
    
    .img-article.dont-leave-grid-left {
        margin-top: 4px;
        width: 393px;
        float: left;
        margin-right: 28px;
    }

    .img-article.dont-leave-grid-right {
        margin-left: 28px;
        width: 393px;
        float: right;
        margin-top: 4px;
    }
    
    .reviews-list-item {
        margin-bottom: 0px;
        padding-bottom: 0px;
        border-bottom: 0px;
    }


    /* Cards */
    
    .card {
        margin-bottom: 0px;
    }

    a.card:hover .btn.btn-link {
        background-color: #3291D0;
        color: #FFF;
    }

    a.card:hover h3.muted,
    a.card:focus h3.muted {
        color: #4f4f4f;
    }

    a.card:hover {
        border-top: 1px solid #B8CD45;
        box-shadow: 0px 8px 8px 0px rgba(0, 0, 0, 0.20);
        text-decoration: none;
    }

    a.card:hover::before {
        width: 100%;
        height: 3px;
        display: block;
        content: '';
        background-color: #B8CD45;
        margin-top: -3px;
    }

    a.card:hover i.circle span {
        -webkit-transform: scale(1.25);
        transform: scale(1.25);
        opacity: 1;
        position: absolute;
        left: 0;
    }
    
    /* Card with Calculator */
    
    .calculator.sm .heat-flow-step-1 .radio.as-btn  {
        width: 100%;
        margin-bottom: 0px;
        margin-top: 0px;
        margin: 0px;
        float: left;
    }
    
    .calculator.sm .heat-flow-step-1 .radio.as-btn.waermepumpe  {
        width: 37%; 
    }
    
    .calculator.sm .heat-flow-step-1 .radio.as-btn.nachtspeicher  {
        width: 50%; 
    }

    .calculator.sm .heat-flow-step-1 .radio.as-btn label {
        border: 2px solid #DEDEC4;
        border-radius: 6px;
        width: 100%;
        height: 48px;
        margin-left: 0px;
        margin: 0px;        
        line-height: 1.4em;
        padding: 12px 12px 0px 48px;
    }
    
    .calculator.sm .heat-flow-step-1 .calculator-text-divider {
        position: relative;
        left: 0px;
        margin-right: 0px;
        margin-top: 15px;
        margin-bottom: 0px;
        float: left;
        top: 0px;
        display: block;
        width: 13%; 
        text-align: center;
    }
    
    .calculator.sm .heat-flow-step-1 label.popover {
        margin-top: 0px;
        margin-bottom: 0px;
        margin-left: 0px;
        float: right;
    }

    .calculator.sm .heat-flow-step-1 label i {
        margin-right: 6px;
    }

    .calculator.sm .heat-flow-step-2a label span,
    .calculator.sm .heat-flow-step-2b label span {
        padding: 0 0 0 6px;
        margin: 0;
    }
    
    .calculator.sm .icon-info {
        
    }

    
    
    /* Card Rate Checkout */


    .card.rate.checkout {
        margin-bottom: 30px;
    }
    
    .card.rate.checkout h2 {
        margin-top: -10px;
    }
    
    .card.rate.checkout h4 {
        margin-bottom: 0px;
    }
    

    .card.rate.checkout ul.benefits {
        padding: 0px 0px 24px 0px;
    }

    .card.rate.checkout ul.benefits li {
        width: 85%;
        font-size: 20px;
        line-height: 1.5em;
    }
    
    .card.rate.checkout ul.benefits li:last-child {
        padding-top: 10px;
    }

    .card.rate.checkout ul.benefits li span.benefits-highlight {
        font-size: 38px;

    }
    
    .card.rate.checkout ul.benefits li span.benefits-value {
        font-size: 28px;
    }
    
    .card.rate.checkout ul.benefits li p {
        margin-bottom: 0px;
    }
    
    
    .card.rate.checkout .btn {
        margin-top: -12px;
    }
    

    /* Card Extended */
    
    .card.extended {
        margin-bottom: 30px;
    }    

    .card.extended .card-body h6 {
        margin: 0 auto;
        padding-left: 22px;
        margin-bottom: 8px;
        padding-top: 14px;
        width: 85%;
    }
    
    .card.extended .card-body ul {
        padding-left: 50px;
    } 
    
    
    .login .card .card-body {
        padding-top: 56px;
    }


    /* Feature */

    a.feature:hover {
        border: 1px solid #DDD9D9;
        border-top: 3px solid #B8CD45;
        box-shadow: 0px 8px 8px 0px rgba(0, 0, 0, 0.20);
    }

    .feature i.circle  {
        position: relative;
    }

    .feature i.circle span {
        width: inherit;
        height: inherit;
        border: .05em solid #B8CD45;
        display: inline-block;
        border-radius: 50%;
        position: absolute;
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transition: all 0.15s ease-in-out;
        transition: all 0.15s ease-in-out;
        position: absolute;
        left: 0;
        opacity: 0;
    }

    a.feature:hover i.circle span {
        -webkit-transform: scale(1.12);
        transform: scale(1.12);
        opacity: 1;
        position: absolute;
        left: 0;
    }
    
    a.feature h3 {
        font-size: 28px;
    }
        
    .feature .feature-footer {
        margin-top: 6px;
        padding-bottom: 24px;
    }


    /* Contact list */

    .contact .contact-list li {
        padding: 24px;
    }

    .contact .contact-list li i {
        top: 26px;
    }

    .contact .contact-list li::before {
        display: block;
        content: "";
        width: 100%;
        border-top: 1px solid #fff;
        margin: 0px;
        position: absolute;
        left: 0px;
        top: 0px;
    }

    .contact .contact-list li.has-link:hover::before {
        border-top: 2px solid #B8CD45;
    }

    .contact .contact-list li.has-link:hover {
        -webkit-transition: all 0.15s ease-in-out;
        transition: all 0.15s ease-in-out;
        box-shadow: 0px 8px 8px 0px rgba(0, 0, 0, 0.20);
        border-top: 1px solid #B8CD45;
        z-index: 2;
    }

    .contact .contact-list li.has-link:hover h3:after {
        -webkit-transition: all 0.15s ease-in-out;
        transition: all 0.15s ease-in-out;
        right: -16px;
    }

    .contact .contact-list a:hover p {
        color: #787878;
    }
    
    
    /* Box */
    
    .box-body {
        padding: 30px 30px 30px 30px;
    }

    .box-footer {
        padding: 30px 30px 18px 30px;
        padding: 30px 30px 26px 30px;
    }

    form .box-footer {
        padding: 30px 30px 30px 30px;
    }
    
    
    .box .floating-icon {
        font-size: 30px;
        color: #89A502;
        top: 24px;
        position: relative;
        float: left;
        height: 48px;
        width: 40px;
    }    
    
    .box i.circle {
        margin-bottom: 0px;
    }
    
    /* Contact Box */
    
    .contact .box {
        text-align: left;
    }
    .contact .box .btn {
        width: auto;
        margin-bottom: 0px;
    }       


    /* Steps */

    .steps-item-group .steps-item.divider::after {
        width: 55%;
        height: 1px;
        border-left: 0px solid #DDD9D9;
        border-bottom: 1px solid #DDD9D9;
        position: absolute;
        margin: 0 auto;
        margin-top: 0px;
        margin-bottom: 0px;
        top: 46px;
        left: 70%;
    }

    
    /* CTA */

    .cta-card {
        padding-top: 36px;
        padding-bottom: 24px;
        text-align: left;
    }

    .cta-card:hover {
        box-shadow: 0px 8px 8px 0px rgba(0, 0, 0, 0.20);
    }

    /* USP-Group */

    .login .usp-group {
        padding-top: 56px;
    }
    
    
    /* Checkout process */

    .checkout-process .process-item-group .process-item {
        height: 60px;
        padding-top: 12px;
        padding-left: 20px;
    }
    
    .checkout-process .process-item-group .process-item::after {
        width: 60px;
        height: 60px;
        top: 4px;
    }

    .checkout-process .process-item-group .process-item .circle.number {
        margin: 0px 12px 0px 0px;
        height: 32px;
        width: 32px;
        font-size: 16px;
        line-height: 32px;
    }

    .checkout-process .process-item-group .process-item .circle.number i {
        line-height: 38px;    
    }    

    .checkout-process .process-item-group .process-item p {
        display: block;
        line-height: 36px;
        font-size: 16px;
    }


    .checkout-process .process-item-group .process-item.step-1 {
        width: 28%;
    }

    .checkout-process .process-item-group .process-item.step-2 {
        width: 23%;
    }

    .checkout-process .process-item-group .process-item.step-3 {
        width: 29%;
    }

    .checkout-process .process-item-group .process-item.step-4 {
        width: 20%;
    }
    
    
    /* ie9 fixes */
    .no-flexboxlegacy .checkout-process .process-item-group .process-item, 
    .no-flexboxlegacy .checkout-process .process-item-group .process-item {
        padding-left: 5%;
        padding-right: 4%;
        display: inline-block;
    }   
    
    .no-csstransforms3d .checkout-process .process-item-group .process-item::after, 
    .no-csstransforms .checkout-process .process-item-group .process-item::after {
        border-top: 0px;
        top: 0px;
    }
    
    
    /* Checkout Forms */
    
    form .row {
        position: relative;
    }
    
    .checkout-form {
        width: 800px !important;
    }

    .checkout-form>.box>.box-body {
        padding-right: 48px;
    }  
    
    .checkout-form>.box>div>.box-body {
        padding-right: 48px;
    }     
    
    .checkout-form .row .row {
        margin-left: -6px;
        margin-right: -6px;
    }
    
    .checkout-form .row .row .col-md-1,
    .checkout-form .row .row .col-md-2,
    .checkout-form .row .row .col-md-3,
    .checkout-form .row .row .col-md-4,
    .checkout-form .row .row .col-md-5,
    .checkout-form .row .row .col-md-6,
    .checkout-form .row .row .col-md-7,
    .checkout-form .row .row .col-md-8,
    .checkout-form .row .row .col-md-9,
    .checkout-form .row .row .col-md-10,
    .checkout-form .row .row .col-md-11,
    .checkout-form .row .row .col-md-12 {
        position: relative;
        min-height: 1px;
        padding-left: 6px;
        padding-right: 6px;
    }
    
    .checkout-form label {
        margin-top: 14px;
        line-height: 1.2em;
    } 
    
    .icon-info.form-hint {
        position: absolute;
        top: 16px;
        right: -24px;
        font-size: 12px;
        color: #787878;
        padding: 0px;
        margin-left: 0px;
        display: block;
    }
    .form-hint span {
        display: none;
    }

    .form-hint-item {
        position: absolute;
        top: -6px;
        right: -254px;
        bottom: auto;
        left: auto;
        width: 180px;
        border: 0px;
        padding: 0px;
        box-shadow: none;
        margin: 0px;
        font-size: 16px;
        background-color: #fff;
        display: none;
    }
    
    .form-hint-item.show-it {
        display: block;
    }   

    
    .form-hint-item p {
        font-size: 12px;
        line-height: 1.5em;
    }
    
    .form-hint-item::before {
        content: "";
        display: block;
        width: 11px;
        height: 11px;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        position: absolute;
        left: -32px;
        top: 24px;
        background-color: #fff;
        border-top: 0px;
        border-bottom: 1px solid #DDD9D9;
        border-left: 1px solid #DDD9D9;
    }
    
    /* Contract data */

    .contract-data-group h3 {
        max-width: 80%;        
    }

    .contract-data-group .contract-data-view .link,
    .contract-data-group .contract-data-edit .link {
        position: absolute;
        top: 36px;
        right: 24px;
    }
    
    /* Payment form fix */


    .payment-form .box>.box-body {
        margin-bottom: -52px;
    }    
    
    /* Footer */    
    
    .footer .links .recommendation {
        text-align: left;
        padding-bottom: 0px;
        padding-top: 6px;
    }
    
    .footer .links .recommendation .link {
        margin-left: 0px;
        margin-bottom: 2px;
    }
    
    .footer .links .recommendation i {
        text-align: center;
        float: left;
        margin-right: 10px;
        -webkit-transition: all 0.15s ease-in-out;
        transition: all 0.15s ease-in-out;
        margin-left: -4px;
        margin-top: -2px;
    }
    
    .footer .links .recommendation:hover i {
        color: #748C01;
        border: 1px solid #89A502;
    }
    
    .footer .links .recommendation p {
        line-height: 1.3em;
    }
    
    .footer .links .recommendation:hover p {
        color: #4f4f4f;
    }    
    
    .footer .links .btn {
        margin-top: 4px;
    }
    
    .footer .sitemap {
        padding-top: 30px;
        padding-bottom: 36px;
    }
    
    .footer .desktop-sitemap {
        height: 160px;
        border-right: 1px solid #D5D3C4;
    }
    
    .footer .desktop-sitemap:last-child {
        border-right: 0px;
    }
    
    .footer .desktop-sitemap a {
        font-size: 12px;
    }
    
    .footer .desktop-sitemap a:hover {
        text-decoration: underline;
        background-color: transparent;
    }
    
    .footer .desktop-sitemap>a {
        color: #89A502;
        text-transform: uppercase;
        padding: 0px;
        font-family: FFDINRoundWebBold, sans-serif;
    }
    
    .footer .desktop-sitemap>ul {
        list-style-type: none;
    }
    
    .footer .desktop-sitemap>ul>li {
        padding: 0px;
    }
    
    .footer .desktop-sitemap>ul>li>a {
        color: #4f4f4f;
    }
}

/* ----------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------- */
/* =Desktop large -------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------- */

@media (min-width: 1025px) {

    /* Carousel */

    .carousel .owl-prev .icon,
    .carousel .owl-next .icon {
        font-size: 36px;
        line-height: 36px;
        padding: 6px 4px 0px 4px;
    }

    .carousel .owl-prev .icon {
        left: -48px;
    }

    .carousel .owl-next .icon {
        right: -48px;
    }

}

/* Added by BEMA */
.hero.rechtliches {
    background-image: url('../img/pic-header-rechtliches.jpg');
}
.hero.service, .hero.musterrechnung {
    background-image: url('../img/header/service.jpg');
}
.hero.ueber-uns {
    background-image: url('../img/header/ueber-uns.jpg');
}
.hero.tarife-strom {
    background-image: url('../img/header/tarife-strom.jpg');
}
.hero.tarife-strom-default {
    background-image: url('../img/header/tarife-strom-default.jpg');
}
.hero.tarife-gas {
    background-image: url('../img/header/tarife-gas.jpg');
}
.hero.tarife-gas-default {
    background-image: url('../img/header/tarife-gas-default.jpg');
}
.hero.tarife-waermestrom {
    background-image: url('../img/header/tarife-waermestrom.jpg');
}
.hero.tarife-waermestrom-default {
    background-image: url('../img/header/tarife-waermestrom-default.jpg');
}
.hero.wechsel {
    background-image: url('../img/header/wechsel.jpg');
}
.hero.umzug {
    background-image: url('../img/header/umzug.jpg');
}
.hero.kwk {
    background-image: url('../img/header/kwk.jpg');
}
.hero.zehn-jahre {
    background-image: url('../img/header/zehn-jahre.jpg');
}

.hero.covid {
    background-image: url('../img/header/covid.jpg');
}
.small sup { font-size:11px !important; }

.zaehlerstand-txt { font-size:14px;}
.zaehlerstand-mrgn { margin-bottom:10px; }
.zaehlerstand-mrgn2 { margin-bottom:20px; }



/*###############################################################*/
/* Added by SIGNALFEUER on 14.12.2018 for slider feature and stiftung pages */
.display-1, .display-2, .display-3, .display-4 {
    text-transform: none !important;
    font-family: FFNettoWebBold, sans-serif !important;
}

.header.gw-stiftung {
    background-image: url('../img/header/bg-header-gw-stiftung.jpg');
    background-size: cover;
    background-position: top center;
    height: auto;
    background-color: #E7E9D6;
}

.bg-ultradark {
    background-color: #89A502;
}

.bg-cta {
    background-color: #3091CF;
}

.bg-split .background {
  display: none;
}

.pt-0 {
  padding-top: 0;
}

.pb-0 {
  padding-bottom: 0;
}

.no-border {
  border: 0px !important;
}

.no-gutters {
  padding-right: 0;
  padding-left: 0;
}

.no-gutters .row {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters .row > [class^="col-"],
.no-gutters .row> [class*=" col-"] {
  padding-right: 0;
  padding-left: 0;
}

.w-25 {
  width: 25%;
  height: auto;
}

.w-50 {
  width: 50%;
  height: auto;
}

.w-75 {
  width: 75%;
  height: auto;
}

.w-100 {
  width: 100%;
  height: auto;
}

.text-white {
  color: #FFF;
}

.text-secondary {
  color: #FFF;
}

.section {
    padding: 24px 0px 24px 0px;
    position: relative;
}

.section.no-padding {
    margin: 0px !important;
    padding: 0px !important;
}

.click-fade {
    background-image: none !important;
    -webkit-animation: fadeIt 0.5s ease-in-out;
    animation: fadeIt 0.5s ease-in-out;
}

@-webkit-keyframes fadeIt {
    0% {
        background-color: #FFF;
    }
    100% {
        background-color: #FAFAFA;
    }
}
@keyframes fadeIt {
    0% {
        background-color: #FFF;
    }
    100% {
        background-color: #FAFAFA;
    }
}

/* Gruenwelt Stiftung */

.hero.gw-stiftung  {
    background-image: url('../img/header/gw-stiftung-header.jpg') !important;
}

.hero.gw-stiftung.subpage  {
    background-image: url('../img/header/gw-stiftung-header-unterseite.jpg') !important;
}

/* Progress circles */

.progress-circle  {
  position: relative;
  margin-top: 20px;
  margin-bottom: 20px;
}

.progress-circle canvas  {
  border-radius: 50%;
  background-color: #FFF;
}

.progress-circle strong {
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  text-align: center;
  line-height: 92px;
  font-size: 24px;

}

/* Feature primary */

.feature.primary i.circle {
    background-color: #3291D0;
}

/* Nav lines */

.nav-lines {
  border-bottom: 1px solid #DDD9D9;
}

.nav-lines>li {
  margin-bottom: 0;
}

.nav-lines>li>a, .nav-lines>li>a:focus {
  background-color: transparent;
  border-bottom: 4px solid transparent;
  font-size: 18px;
  margin-bottom: -2px;
}

.nav-lines>li>a:hover {
  background-color: #eee;
  border-bottom: 4px solid transparent;
}

.nav-lines>li.active>a {
  border-bottom: 4px solid #B8CD45;
  color: #89A502;
  font-family: FFDINRoundWebBold, sans-serif;
}

.nav-lines>li.active>a:hover {
  background-color: transparent;
}

/* Artikel Block volle Breite */

.full-width-article .text-holder {
  padding: 20px;
}

.full-width-article .image-holder {
  overflow: hidden;
  position: relative;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 280px;
}

/* Image Grid */

.image-grid .image-card  {
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-grid .image-card .image-wrapper {
  overflow: hidden;
  width: 100%;
  height: 100%;
  background-color: #000;
}

.image-grid .image-card .image-wrapper img {
  width: 100%;
  height: 100%;
  transform: scale(1.03);
  transition: all .4s ease-out;
  opacity: 1;
}

.image-grid .image-card:hover .image-wrapper img {
  transform: scale(1);
  opacity: .35;
  transform-origin: center center;
}

.image-grid .image-card .image-text {
  max-width: 80%;
  position: absolute;
  color: #fff;
  z-index: 1 !important;
  text-align: center;
}

.image-grid .image-card .image-text::after {
  content: "";
  display: inline-block;
  display: flex;
  width: inherit;
  height: inherit;
  width: 100%;
  height: 100%;
  background-color: #89A502;
  outline: 10px solid #89A502;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: -1 !important;
  opacity: .7;
  transition: all .2s ease-in-out;
}

.image-grid .image-card:hover .image-text::after {
  opacity: 1;
  background-color: #89A502;
  outline: 16px solid #89A502;
}

/* Change fade speed of bootstrap */

.fade {
   opacity: 0;
   transition: opacity 2s ease;
}

.display-1 {
	font-size: 56px;
}

.display-2 {
	font-size: 48px;
}

.display-3 {
	font-size: 42px;
}

.display-4 {
	font-size: 38px;
}

.h-divider.sm {
	margin-top: 30px;
	padding: 0px 0px 30px 0px;
}

.pt-sm-0 {
	padding-top: 0;
}

.pb-sm-0 {
	padding-bottom: 0;
}

/* Intro large */

.intro.lg {
	margin-top: 100px !important;
}

.full-width-article .image-holder {
  min-height: 380px;
}

.hero.gw-stiftung  {
	background-size: cover !important;
	background-position: center center;
}

.hero .intro.lg  {
	margin-top: 100px;
}

/* Intro large */

.intro.lg {
	margin-top: 100px;
	text-align: left;
	width: 390px !important;
	position: absolute;
	right: 24px !important;
}

.intro.lg h6 {
	display: inline-block;
	background-color: #89A502;
	padding: 5px 8px 3px 10px;
	text-transform: uppercase;
	margin-bottom: 2px !important;
	color: #FFF;
	font-weight: normal;
	font-size: 20px;
}


.intro.lg h2 {
	display: inline-block;
	background-color: #fff;
	padding: 7px 6px 2px 8px;
	margin-bottom: 2px !important;
	margin-right: -6px;
	font-size: 42px;
	letter-spacing: -0.02em;
}

html, body{
  min-height: 100%;
}

body {
  position: relative;
}

/* Service Navigation */

.services {
  position: fixed;
  right: 0;
  top: 330px;
  z-index: 999;
  transition: all .3s ease;
}

.services .service-nav {
  list-style-type: none;
  display: block;
}

.services .service-nav .service-item {
  width: 48px;
  height: 48px;
  position: relative;
}

.services .service-nav .service-item.phone > a,
.services .service-nav .service-item.mail > a,
.services .service-nav .service-item.faq > a {
  width: 48px;
  height: 48px;
  display: block;
  color: #fff;
  background-color: #B8CC45;
  margin-bottom: 0;
  border-top: 1px solid #B8CC45;
  border-bottom: 1px solid #8AA502;
  font-size: 26px;
  text-align: center;
  transition: all .3s ease;
}


.services .service-nav .service-item.mail > a {
  border-top: 1px solid #DDEB94;
  animation-delay: 0.85s;
}

.services .service-nav .service-item.faq > a {
  border-top: 1px solid #DDEB94;
  animation-delay: 0.95s;
}

.services .service-nav .service-item > a:hover {
  border-top: 1px solid rgba(0,0,0,0.1);
  background-color: #8AA502;
}

.services .service-nav .service-item > a i {
  position: relative;
  top: 9px;
}

.services .service-panel {
  width: 460px;
  height: auto;
  background-color: #FFF;
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.10);
  border: 1px solid #DDD9D9;
  position: absolute;
  right: 48px;
  top: 2px;
  z-index: -1;
  opacity: 1;
  transform: translateX(0px);
  transition: all .1s cubic-bezier(0.16, 0.68, 0.43, 0.99);
}

.services .service-panel.hidden-panel {
   transform: translateX(600px);
   transition: all .3s cubic-bezier(0.16, 0.68, 0.43, 0.99);
   opacity: 0;
}

.services .service-panel .close {
  color: #787878;
  position: absolute;
  right: 16px;
  top: 16px;
  border: 0;
  background-color: transparent;
  padding: 0;
  font-size: 12px;
}

.services .service-panel .close:hover {
	color: #5d5c5c;
}

.services .service-panel .panel-header {
  padding: 28px 20px 10px 20px;
}

.services .service-panel .panel-body {
  padding: 0px 20px 28px 20px;
}

.services .service-panel .nav-lines {
  margin-bottom: 20px;
}

.services .service-panel.phone .tab-pane  {
  min-height: 216px;
}

.services .service-panel .tab-pane h4 {
  margin-bottom: 0px;
  font-size: 22px;
}

.services .service-panel .tab-pane h4 i {
  position: relative;
  top: 3px;
  margin-right: 5px;
  width: 22px;
  text-align: left;
  display: inline-block;
}

.services .service-panel .tab-pane h5 {
  margin-top: 4px;
  margin-bottom: 4px;
}

.services .service-panel .tab-pane .small {
  font-size: 14px;
  line-height: 1.4em;
}

.services .service-panel .tab-pane .call-from {
  padding-left: 28px;
}

.services .service-panel .h-divider {
  margin-top: 10px;
  padding-bottom: 20px;
}	

/* Artikel Block volle Breite */

.full-width-article .row{
  display: flex;
  flex-wrap: wrap;
}
.full-width-article .row > [class*='col-'] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  -webkit-flex: 1 1 15em;
}

.full-width-article .text-holder {
  padding: 8%;
}

.full-width-article .image-holder {
  min-height: 420px;
}

/* Feature Hover Background GW Stiftung */

a.feature.bg-hover-50p:hover {
	background-color: rgba(255,255,255,0.5) !important;
}	

/* Feature primary */

a.feature.primary:hover {
  background-color: #fff;
  border-top: 3px solid #3291D0;
}

.feature.primary i.circle span {
	border: .05em solid #3291D0;
}

@media (min-width: 992px) {
	/* Carousel */

	.carousel .owl-prev .icon,
	.carousel .owl-next .icon {
		font-size: 36px;
		line-height: 36px;
		padding: 6px 4px 0px 4px;
	}

	.carousel .owl-prev .icon {
		left: -48px;
	}

	.carousel .owl-next .icon {
		right: -48px;
	}

	/* Artikel Block volle Breite */

	.full-width-article .image-holder {
	  min-height: 520px;
	}

	.bg-split .background {
	  position: absolute;
	  top: -10px;
	  right: 0;
	  width: 41%;
	  display: block;
	  height: 100%;
	}

	.bg-split .box {
	  background-color: transparent !important;
	}

}

@media (min-width: 1200px) {
    .container {
		/*width: 1140px;*/
    }

    /* .checkout-form {
      width: 1020px !important;
    } */

    .bg-split .background {
		width: 39%;
    }
}

@media (min-width: 1300px) {
    .container {
		/*width: 1260px;*/
    }
}

@media (min-width: 1680px) {
  .bg-split .background {
    width: 42%;
  }
}
/*###############################################################*/




/* Added by BEMA on 31.01.2019 for bar rating feature */
.br-theme-bars-square .br-widget span {
	border-radius: 5px;	
	font-family: FFNettoWebBold, sans-serif;		
	display: block;
	width: 40px;
	height: 40px;
	float: left;
	background-color: #a01714;
	margin: 7px;
	text-decoration: none;
	font-size: 20px;
	line-height: 2;
	text-align: center;
	color: white;
	font-weight: 800;
}

.cc1 { background-color: #a01714 !important; }
.cc2 { background-color: #ed8100 !important; }
.cc3 { background-color: #efc00b !important; }
.cc4 { background-color: #9ab80b !important; }
.cc5 { background-color: #47952f !important; }

.br-theme-bars-square .br-widget span:active,
.br-theme-bars-square .br-widget span:hover {
	cursor: pointer;
	color: #ffffff !important;
	background-color: #c1c198 !important; 
}

/* Added by BEMA on 27.03.2019 to change the respective "passive" colors of the strom, gas and wärmestrom tabs in the calculator 
   This will override all properties of the calculator tabs.*/

/* STROM Tab Passive color */
.calculator .nav-tabs>li>a.tab-power,
.calculator .nav-tabs>li>a.tab-power:hover,
.calculator .nav-tabs>li>a.tab-power:focus {
    background-color: #98b216;
}
.calculator .nav-tabs>li>a.tab-power::after,
.calculator .nav-tabs>li>a.tab-power:hover::after,
.calculator .nav-tabs>li>a.tab-power:focus::after {
    color: #98b216; /* upside down triangle under the tab*/
}

/* GAS Tab Passive color */
.calculator .nav-tabs>li>a.tab-gas,
.calculator .nav-tabs>li>a.tab-gas:hover,
.calculator .nav-tabs>li>a.tab-gas:focus {
    background-color: #a8c02e;
}
.calculator .nav-tabs>li>a.tab-gas::after,
.calculator .nav-tabs>li>a.tab-gas:hover::after,
.calculator .nav-tabs>li>a.tab-gas:focus::after {
    color: #a8c02e; /* upside down triangle under the tab*/
}

/* WÄRMESTROM Tab Passive color */
.calculator .nav-tabs>li>a.tab-heat-flow,
.calculator .nav-tabs>li>a.tab-heat-flow:hover,
.calculator .nav-tabs>li>a.tab-heat-flow:focus {
    background-color: #bcd246;
}
.calculator .nav-tabs>li>a.tab-heat-flow::after,
.calculator .nav-tabs>li>a.tab-heat-flow:hover::after,
.calculator .nav-tabs>li>a.tab-heat-flow:focus::after {
    color: #bcd246; /* upside down triangle under the tab*/
}

/* ACTIVE Tab color for all */
.calculator .nav-tabs>li.active>a.tab-gas,
.calculator .nav-tabs>li.active>a.tab-gas:hover,
.calculator .nav-tabs>li.active>a.tab-gas:focus,
.calculator .nav-tabs>li.active>a.tab-power,
.calculator .nav-tabs>li.active>a.tab-power:hover,
.calculator .nav-tabs>li.active>a.tab-power:focus,
.calculator .nav-tabs>li.active>a.tab-heat-flow,
.calculator .nav-tabs>li.active>a.tab-heat-flow:hover,
.calculator .nav-tabs>li.active>a.tab-heat-flow:focus {
    background-color: #87a202;
}
.calculator .nav-tabs>li.active>a.tab-gas::after,
.calculator .nav-tabs>li.active>a.tab-gas:hover::after,
.calculator .nav-tabs>li.active>a.tab-gas:focus::after, 
.calculator .nav-tabs>li.active>a.tab-power::after,
.calculator .nav-tabs>li.active>a.tab-power:hover::after,
.calculator .nav-tabs>li.active>a.tab-power:focus::after, 
.calculator .nav-tabs>li.active>a.tab-heat-flow::after,
.calculator .nav-tabs>li.active>a.tab-heat-flow:hover::after,
.calculator .nav-tabs>li.active>a.tab-heat-flow:focus::after {
    color: #87a202; /* upside down triangle under the tab*/
}

/* Added by BEMA (courtesy of Signalfeuer) on 12.08.2019 to center the "10 Jahre" Slider on mobile view */
@media (max-width: 767px) {
	.zehn-jahre-small {
		background-image: url('../img/slider05-klein.jpg') !important;
	}
}
@media (max-width: 767px) {
	.siegel-small {
		background-image: url('../img/slider04-klein.jpg') !important;
	}
}
@media (max-width: 767px) {
	.main-slider-small {
		background-image: url('../img/slider01-klein.jpg') !important;
	}
}
@media (max-width: 767px) {
	.stiftung-slider-small {
		background-image: url('../img/slider03-klein.jpg') !important;
	}
}

/* Added by BEMA on 12.02.2020 to increase the footer height after Andreas Bach added new tariffs that made the footer looked cramped */
@media (min-width: 767px) {
	.footer .sitemap {
		padding-bottom: 60px;
	}
}

/* Added by BEMA on 16.12.2020 to include a mobile img for the "Weihnachtsspenden" section on the "Stiftung Startseite" */
@media (min-width: 767px) {
  .hidden-desktop {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .hidden-mobile {
    display: none !important;
  }
  .christmas {
	font-size:38px !important;
  } 
}