/* Write your custom css code here */

/* WEBFONTS ##################################
############################################## */

@font-face {
    font-family: 'Open Sans Bold';
    src: url('fonts/OpenSans-Bold.eot');
    src: url('fonts/OpenSans-Bold.eot?#iefix') format('embedded-opentype'),
        url('fonts/OpenSans-Bold.woff2') format('woff2'),
        url('fonts/OpenSans-Bold.woff') format('woff'),
        url('fonts/OpenSans-Bold.ttf') format('truetype'),
        url('fonts/OpenSans-Bold.svg#OpenSans-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans';
    src: url('fonts/OpenSans.eot');
    src: url('fonts/OpenSans.eot?#iefix') format('embedded-opentype'),
        url('fonts/OpenSans.woff2') format('woff2'),
        url('fonts/OpenSans.woff') format('woff'),
        url('fonts/OpenSans.ttf') format('truetype'),
        url('fonts/OpenSans.svg#OpenSans') format('svg');
    font-weight: normal;
    font-style: normal;
}




@font-face {
	font-family: 'Yanone';
	src: url('fonts/YanoneKaffeesatz-Regular.eot');
	src: url('fonts/YanoneKaffeesatz-Regular.eot?#iefix') format('embedded-opentype'),  url('fonts/YanoneKaffeesatz-Regular.woff2') format('woff2'),  url('fonts/YanoneKaffeesatz-Regular.woff') format('woff'),  url('fonts/YanoneKaffeesatz-Regular.ttf') format('truetype'),  url('fonts/YanoneKaffeesatz-Regular.svg#YanoneKaffeesatz-Regular') format('svg');
	font-weight: bold;
	font-style: normal;
}
@font-face {
	font-family: 'Yanone Bold';
	src: url('fonts/YanoneKaffeesatz-Bold.eot');
	src: url('fonts/YanoneKaffeesatz-Bold.eot?#iefix') format('embedded-opentype'),  url('fonts/YanoneKaffeesatz-Bold.woff2') format('woff2'),  url('fonts/YanoneKaffeesatz-Bold.woff') format('woff'),  url('fonts/YanoneKaffeesatz-Bold.ttf') format('truetype'),  url('fonts/YanoneKaffeesatz-Bold.svg#YanoneKaffeesatz-Bold') format('svg');
	font-weight: bold;
	font-style: normal;
}











/* SIDEBAR ################################ */
.sidebar {
  position: fixed;
  z-index: 9;
  top: 233px;
  right: 0;
  background-color: #e31e24;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
    animation: slideInRight 0.5s forwards; /* Animation zum Einfahren von rechts */
}

.sidebar-item {
  position: relative;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.sidebar-item:hover {
	color:#fff;
}

.icon {
  font-size: 25px;
  transition: transform 0.3s ease;
}

.label {
    position: absolute;
    right: 60px;
    opacity: 0;
    visibility: hidden;
    white-space: nowrap;
    background-color: var(--blau);
    color: var(--tuerkis);
    padding: 0 20px;
    height: 60px;
    line-height: 60px;
    border-radius: 0;
    transition: opacity 0.3s ease, visibility 0s ease 0.3s;
    min-width: 150px;
    font-size: 18px;
}

.sidebar-item:hover .label {
  opacity: 1;
  visibility: visible;
  right: 60px; /* Abstand zum Icon */
  background-color: #e31e24;
  color: #fff;
}

.sidebar-item:focus .icon,
.sidebar-item:hover .icon {
  transform: scale(1.2);
  color: var(--tuerkis);
}

.sidebar-item:hover {
  background-color: #e31e24;
}

/* Desktop & Tablet */
@media (min-width: 768px) {
  .sidebar-item {
    width: 60px;
    height: 60px;
  }

  .label {
    right: 60px; /* Label rechts vom Button */
  }
}

/* Mobile Ansicht */
@media (max-width: 767px) {
  .sidebar {
    top: auto;
    bottom: 0;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    height: 60px;
      animation: slideInUp 0.5s forwards; /* Animation zum Einfahren von unten */
  }

  .sidebar-item {
    width: 25%; /* Buttons gleichmÃ¤ÃŸig auf die volle Breite verteilen */
    height: 100%;
    justify-content: center;
    align-items: center;
  }

  .icon {
    font-size: 30px;
    transition: transform 0.3s ease;
  }

  .label {
    display: none
  }

  .sidebar-item:active .label {
    opacity: 1;
    visibility: visible;
  }

  .sidebar-item:active .icon {
    transform: scale(1.1);
  }
}
      
      /* Animation fÃ¼r das Einfahren von rechts (Desktop/Tablet) */
@keyframes slideInRight {
  0% {
    right: -70px;
  }
  100% {
    right: 0;
  }
}

/* Animation fÃ¼r das Einfahren von unten (Mobile) */
@keyframes slideInUp {
  0% {
    bottom: -60px;
  }
  100% {
    bottom: 0;
  }
}

/* END SIDEBAR ############################ */
















/* INHALTE ######################################
################################################# */

body {
	font-family: 'Open Sans';
	font-size: 18px;
	box-sizing: border-box;
}

.subline span {
	font-family: 'Yanone';
	font-size: 22px;
	color: #87182f;
}

h1, h2 {
	font-family: 'Yanone Bold';
	color: #87182f;
}
h3 {
	font-family: 'Yanone';
	color: #87182f;
}

h2.border {
	font-size: 38px;
	margin-top: 0;
	color: #4b4b4b;
}
h3.border {
	font-size: 30px;
	margin-top: 0;
	color: #4b4b4b;
}
h2.border:before, h3.border:before {
	content: "";
	display: block;
	border-top: solid 2px #e31e24;
	width: 100%;
	height: 2px;
	position: absolute;
	top: 50%;
	z-index: 1;
}
h2.border span, h3.border span {
	background: #fff;
	padding: 0 20px;
	position: relative;
	z-index: 5;
}

strong, b {font-family: 'Open Sans Bold';}

#team a {color: #fff;}

a {
	color: #000;
	}

a:hover {
	color: #000;
	text-decoration: underline;
	}

/* HEADER #######################################
################################################# */

/* METABAR ######################################### */

/* MODULPOSITION: top-left ######################### */

.metabar {
    font-size: 12px;
    background: #383736;
    color: #999;
    padding: 10px 0;
}

.metabar ul {
    margin: 0;
    padding: 0;
}

.metabar ul li {
    float: left;
    list-style: none;
    border-right: 1px solid #999;
    margin: 0;
    padding: 0 10px;
    line-height: 100%;
}

.metabar ul li:last-child {
    padding: 0 0 0 10px;
    border: 0;
}

.metabar ul li a {
    color: #999;
}

.metabar ul li a:hover {
    color: #999;
    text-decoration: underline;
    background: transparent;
}

/* MODULPOSITION: top-right ######################### */

ul#metabar li {
    padding: 0;
}

ul#metabar a {
    padding: 0 10px;
}


@media (min-width: 1200px) {
	#sunfw_section_metabar.sunfw_section_metabar.metabar .col-xs-12.col-sm-6.col-md-6.col-lg-9 {
		width: 66% !important;
	}
}


@media (min-width: 1200px) {
	#sunfw_section_metabar.sunfw_section_metabar.metabar .col-xs-12.col-sm-6.col-md-6.col-lg-3 {
		width: 33% !important;
	}
}

/* LOGO UND NAVIGATION ############################## */

.sunfw-sticky.sunfw-sticky,
.sunfw-sticky.sunfw-sticky-open {
	background: #e31e24;
	-webkit-box-shadow: 0px 0px 14px 0px rgba(0,0,0,0.52);
	-moz-box-shadow: 0px 0px 14px 0px rgba(0,0,0,0.52);
	box-shadow: 0px 0px 14px 0px rgba(0,0,0,0.52);
	z-index: 9999;
}

#sunfw_section_header nav ul {
    float: right;
}


/* NAVIGATION ###################################### */

.navbar-default {
	background-color: rgba(255, 255, 255, 0);
	border: 0;
	margin: 60px 0 0;
}
ul.nav {
	float: right;
}
span.menutitle {
	font-family: 'Yanone';
	text-transform: uppercase;
	font-size: 25px;
	color: #fff;
}

#menu_item_standardmenu > ul > li.item-137.parent.megamenu.center.full-width > a > span.caret {
	color: #fff;
}

li.dropdown-submenu > ul > li > a span span {
	font-family: 'Open Sans'!important;
	font-size: 15px!important;
	text-transform: none!important;
}
.navbar-default .navbar-nav > .active > a {
	background: transparent!important;
}
ul.sunfw-tpl-menu > li.megamenu ul.sunfw-megamenu-sub-menu .modulecontainer h3 {
	font-size: 20px;
	font-family: 'Yanone';
	letter-spacing: 1px;
	/*background: #e31e24;*/
	background: #333;
	border: 1px solid #999;
	color: #fff;
	padding: 7px 14px;
}
ul.sunfw-tpl-menu > li.megamenu ul.sunfw-megamenu-sub-menu .modulecontainer li {
	border-bottom: 1px solid #999;
	padding: 10px 15px;
}
ul.sunfw-tpl-menu > li.megamenu ul.sunfw-megamenu-sub-menu .modulecontainer li:last-child {
	border-bottom: 0;
}
ul.dropdown-menu.sunfw-submenu-level-1 > li > a > span > span, ul.sunfw-tpl-menu > li.megamenu ul.sunfw-megamenu-sub-menu .modulecontainer a {
	color: #999;
	transition: .5s;
	font-size: 15px;
}
ul.dropdown-menu > li > a > span > span, ul.dropdown-menu.sunfw-submenu-level-1 > li > a > span > span:hover, ul.sunfw-tpl-menu > li.megamenu ul.sunfw-megamenu-sub-menu .modulecontainer a:hover, ul.sunfw-tpl-menu > li.megamenu ul.sunfw-megamenu-sub-menu .modulecontainer li.current.active a {
	color: #333;
	transition: .1s;
}
ul.sunfw-tpl-menu > li.megamenu ul.sunfw-megamenu-sub-menu {
	z-index: 900;
}
ul.sunfw-tpl-menu > li.dropdown-submenu ul li {
	padding: 0;
}
ul.sunfw-tpl-menu > li.dropdown-submenu ul li a {
	padding: 10px 15px;
}
.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus, ul > li.active.parent.dropdown-submenu > ul > li.current.active > a > span > span {
	background: transparent;
	color: #333;
}



/* BREADCRUMB ###################################
################################################# */

#sunfw_section_abschnitt-6_XKdqtpF9 {
	background-color: #E31E24;
	font-size: 18px;
	color: #fff;
	border-bottom: 1px solid #fff;
}

#sunfw_section_abschnitt-6_XKdqtpF9 .breadcrumb {
	margin: 10px 0;
	background: transparent;
	}
	
.breadcrumb > .active {
	color: #fff;
}

#sunfw_section_abschnitt-6_XKdqtpF9 .breadcrumb a {
	color: #fff;
}


#sunfw_section_abschnitt-6_XKdqtpF9 .breadcrumb > li + li:before {
	content: " ";
	color: #fff;
}


#sunfw_section_abschnitt-6_XKdqtpF9 .breadcrumb > li + li + li:before {
	content: " ";
	color: #fff;
}


/* ROUTENPLANER #################################
################################################# */

#routenplaner._9ADbNDlp {
	padding: 0!important;
}
#routenplaner .col-md-12 {
	padding: 10px 0;
}
#routenplaner .col-md-12 input {
	width: 100%;
	padding: 10px;
	border: 1px solid #333;
	padding: 15px;
	border-radius: 3px;
	border: 0;
	background-color: rgba(0, 0, 0, .1);
}
#routenplaner .col-md-12.hinweis {
	background: #333;
	color: #fff;
	padding: 10px;
}
#routenplaner .col-md-12 span {
	font-size: 80%;
}
#routenplaner #berechnen {
	text-transform: uppercase;
	letter-spacing: 3px;
	text-align: center;
	background-color: rgb(227, 30, 36);
	color: rgb(255, 255, 255);
	transition: all 0.5s ease 0s;
	border: 1px solid #333;
	padding: 10px;
}
#routenplaner #berechnen:hover {
	background: #333;
	border: 1px solid #333;
	transition: all 0.5s ease 0s;
}


/*/ HOVERBOXEN #################################
################################################ */

#hoverbox {
	-webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0);
	-moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0);
	box-shadow: 0px 0px 5px 0px rgba(0,0,0,0);
	transition: .3s;
}

#hoverbox:hover {
	-webkit-box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.52);
	-moz-box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.52);
	box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.52);
	transition: .3s;
}

/* KONTAKT #####################################
################################################ */

/* JSN UNIFORM ################################# */

#jsn_form_1.jsn-master .jsn-bootstrap .jsn-form-content .control-group .control-label {
	font-family: 'Yanone Bold';
	font-size: 24px;
}
/*input.jsn-input-xlarge-fluid*/
#jsn_form_1.jsn-master .jsn-bootstrap .jsn-form-content .control-group .controls input.jsn-input-xlarge-fluid, #jsn_form_1.jsn-master .jsn-bootstrap .jsn-form-content .control-group .controls textarea {
	padding: 15px;
	border-radius: 3px;
	border: 0;
	background-color: rgba(0, 0, 0, .1);
	width: 100%;
	font-family: 'Open Sans';
	font-size: 18px;
}
label.checkbox {
	font-family: 'Open Sans';
	font-weight: normal;
	font-size: 16px;
	color: #333;
	line-height: 150%;
}
.btn-toolbar > .btn, .btn-toolbar > .btn-group, .btn-toolbar > .input-group {
	margin-left: 0;
}
button.btn.btn-link.jsn-form-submit {
	background: rgb(227, 30, 36);
	padding: 10px;
	color: #fff;
	font-family: 'Open Sans';
	font-size: 18px;
}
button.btn.btn-link.jsn-form-submit:hover {
	background: #333;
}


/* GALERIE ######################################
################################################# */


.os-gallery-caption.onImage {
	transition: ease-in-out .3s;
	cursor:pointer;
}

[class^=os-gallery-tabs-main] .os-cat-tab-images .img-block a {
	border-radius: 3px;
}

a.os_fancybox-10 div,
[class^=os-gallery] .os-cat-tab-images .img-block {
	background: rgba(0,0,0,.3);
	border-radius: 3px;
}

.grid-item img {
	border-radius: 5px;
}

.os-gallery-caption.onImage {
	background-color: rgba(0,0,0,.3);
	transition: ease-in-out .3s;
}

.os-gallery-caption.onImage:hover {
	background-color: rgba(0,0,0,0);
	transition: ease-in-out .3s;
}

[class^=os-gallery-album-tabs-main] .img-block.none-effect .os-gallery-caption h3.os-gallery-img-title {
	padding: 84px;
}

[class^=os-gallery-album-tabs-main] .back-to-albums {
	background: #333333;
	padding: 10px 30px;
}

[class^=os-gallery-album-tabs-main] .back-to-albums:hover {
	background: #e31e24;
}

[class^=os-gallery-tabs-main] .osgalery-cat-tabs {
	display: none;
}

[class^=os-gallery-tabs-main] .os-cat-tab-images {
	margin-top: 3px;
}

/* END GALERIE ##################################
################################################# */


/* FOOTER #######################################
################################################# */

#sunfw_section_abschnitt-4_XqGkA8EC {
	background-color: #333;
	color: #fff;
	width: 100%;
	padding: 30px 0 60px 0;
}

#sunfw_section_abschnitt-4_XqGkA8EC h3 {
    color: #fff;
}

[data-name="footer-area"] a {color: #fff;}

/* FOOTER 2 ++++++++++++++++++++++++++++++++++++ */

.sunfw-pos-footer2 {
	font-size: 14px;
}








/* MEDIA QUERIES #################################### 
##################################################### */

@media screen and (max-width: 767px) {
	
.metabar ul li {
	display: block;
	width: 100%;
	clear: both;
	border: 0;
	margin-bottom: 5px;
	text-align: center;
}

.metabar ul.nav {
	width: 100%;
}

#column_spalte-0_DHmpRbPt {
	position: relative;
	z-index: 90000;
}
	
.sunfw-logo {
	margin-top: 20px;
	max-width: 80%;
	}
	
.navbar-default {
	margin: 20px 0 0;
}

#column_spalte_9 > div > div > nav {
	margin-top: -60px;
}


#menu_item_mobilemenu > ul {
	width: 100%;
}


	
}




/* Slider / Banner Musterkuechenabverkauf */

._epNwrNGv._rb32f2QE {
	width: 100%;
}

._O689JW7n._b35Ri280 > div > div > div > picture::after,
._epNwrNGv._xbpof1rE::after,	/* Modell Fiora-Lana 9.999 */
._epNwrNGv._q84rfkNb::after,	/* HWR Modell Alina 5.999 */
._epNwrNGv._1bWWfk_b::after,	/* HWR Modell Fiora 10.999 */
._epNwrNGv._OE0kf478::after,	/* HWR Modell Selma 5.999 */
._epNwrNGv._KEQmf3LG::after,	/* HWR Modell Lara 4.999 */
._epNwrNGv._3b1zfRQ8::after,	/* HWR Modell Sophie 9.999 */
._epNwrNGv._oZD6fBPG::after,	/* HWR Modell Fiona-Lana */
._epNwrNGv._R82QfgzE::after,	/* Küche Modell Senso */
._epNwrNGv._BGkJfJPE::after,	/* Badezimmer Modell Fiora */
._epNwrNGv._kb6efm5G::after,	/* Küche Modell Thea */
._epNwrNGv._VEXLfpQG::after     /* Kassentresen Modell Kira */ {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 1;
	top: 0;
	left: 0;
	background-image: url(https://www.kuechenland-c-b.de/images/assets/musterkuechen/verkauft.jpg);
    background-repeat: no-repeat;
    background-size: 133%;
    background-position: center;
}







/* Slider 1 oder 2 */

html[data-slider="1"] .sunfw-itemid-101 ._epNwrNGv._EYKnHyYa {
	
}
html[data-slider="2"] .sunfw-itemid-101 ._epNwrNGv._EYKnHyYa {
	display: none;
}
html[data-slider="1"] .sunfw-itemid-101 ._epNwrNGv._nO8AHdew {
	display: none;
}
html[data-slider="2"] .sunfw-itemid-101 ._epNwrNGv._nO8AHdew {
	display: block;
}




