#cat_search {
	width:90px;
	background-color:#ecf0f1;
}


/* Light ReDesign Code - Stas | Anfang */


.navbar-nav > li > a, #myCarousel {
    transition: all 0.5s;
}


#container.wvd {
    -webkit-animation: fadein 1s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 1s; /* Firefox < 16 */
        -ms-animation: fadein 1s; /* Internet Explorer */
         -o-animation: fadein 1s; /* Opera < 12.1 */
            animation: fadein 1s;
}



.carousel-inner, .ib {
    -webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 2s; /* Firefox < 16 */
        -ms-animation: fadein 2s; /* Internet Explorer */
         -o-animation: fadein 2s; /* Opera < 12.1 */
            animation: fadein 2s;
}

.listingbox {
    -webkit-animation: fadein 3s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 3s; /* Firefox < 16 */
        -ms-animation: fadein 3s; /* Internet Explorer */
         -o-animation: fadein 3s; /* Opera < 12.1 */
            animation: fadein 3s;
}



@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}



.listingrow.col-xs-12 .lr_inner.panel.panel-default .panel-body.row {
 padding: 15px;
 margin: 0 0px 0 0px;
}





span.options_selection_text + span.options_selection_input input:checked {
    color:green;
    background:white;
    padding:2px;
    border-radius:2px;
}



.activearticel {
    font-size: 18px;
    color: white;
    font-weight: heavy;
    background-color: green;
    outline: solid green;
    outline-width:5px;
}




.well {
	background-color:#1f539f;
	color:#fff;
}


.well a {
	color:gold;
}


.text-danger, .special_price {
 	font-weight:bold;
}

a span.pull-left {
	color:#1f539f;
}


.list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus {
    z-index: 2;
    color: black;
    font-weight:bold;
    background-color: #fbcd2e;
    border-color: #1f539f;
}


.list-group-item level1.active .panel.panel-default {
  background-color: #fbcd2e;
}


.pd_price span.new_price.lead.text-danger {
 color:#fbcd2e;
}

.contact-container {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  background-color: #F2F2F2; /* Adjust background color as needed */
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-container {
  display: flex;
  justify-content: flex-start;
  padding: 20px;
  align-items: flex-start;
  background-color: #FFD700;
  border-radius: 5px;
  font-size: 14px;
  font-family: Arial, sans-serif;
  color: #333;
  word-wrap: break-word; 
  overflow-wrap: break-word; 
  line-height: 1.5; 
  text-align: center;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.cat-flex {
  display: flex;
  gap: 15px; /* space between image and box */
  align-items: flex-start; /* align tops */
  flex-wrap: wrap; /* make responsive on small screens */
}

.contact-box {
  flex: 1;
  background-color: #FFF6B4;
  border-radius: 8px;
  font-size: 14px;
  font-family: Arial, sans-serif;
  color: #333;
  padding: 15px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  margin-top: 5px;
  width: 100%;
  opacity: 0;               /* start invisible */
  transform: scale(0.8);    /* start slightly smaller */
  animation: fadeZoomIn 1s ease forwards;
  animation-delay: 4s;      /* delay before animation starts */
}

@keyframes fadeZoomIn {
  to {
    opacity: 1;             /* fully visible */
    transform: scale(1);    /* normal size */
  }
}

.contact-title {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 12px;
}

.contact-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 per row */
  gap: 5px 40px; /* row-gap and column-gap */
}

.contact-item {
  display: flex;
  align-items: center;
  min-width: 220px;
  white-space: nowrap;
}

.contact-number {
  font-weight: bold;
  text-decoration: none;
  color: #1F539F;
  display: flex;
  align-items: center;
  font-size: 16px; /* phone number size */
  margin-left: 8px;
}

.contact-right {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #1F539F;
  font-size: 14px;
}

.contact-right .whatsapp-icon {
  width: 28px;
  height: 28px;
  margin-right: 6px;  /* proper space between icon and label */
}

.contact-right .label {
  font-size: 14px;
  line-height: 1;
  font-weight: lighter;
  color: #1F539F;
  margin-left: 0;
}


@media (max-width: 768px) {
  .contact-container {
    flex-direction: column; 
    align-items: center; 
  }

  .whatsapp-qr {
    display: none; 
  }

  .contact-box {
    font-size: 14px; /* Slightly smaller text for better fit */
    padding: 15px; /* Reduce padding */
  }
}



.col-xs-12.col-md-9 .well .btn-default {
 color:#1f539f;
 background-color:#fbcd2e;
 transition: all 0.5s;
}


.col-xs-12.col-md-9 .well .btn-default:hover {
 color:#fff;
 background-color:green;
}

.col-xs-12.col-md-9  {
	background-color:#fff;
}

.col-xs-12.col-md-9.transparentbackground {
	background-color:transparent;
}

#container.wvd {
 background-image: linear-gradient(to right, white, #dddddd, white);
}

.panel, .panel-body, ul#categorymenu.list-group, .col-xs-12.col-md-9, .paypal a, .sofort a, #myCarousel, .panel-group .panel {
    border-radius: 15px;
}

#homepage-slider, .panel-body, .img-thumbnail, .well, .subheader, ul#categorymenu.list-group, #myCarousel {
    box-shadow: 0 8px 6px -6px rgb(100, 100, 100);
}

.thumbnail {
    border: 0px solid #ecf0f1;
}


.navbar-inverse .navbar-nav > li > a:hover {
    background-image: linear-gradient(to top, #2a6ccf 0%, #1f539f 50%, #1a4483 51%, #1f539f 100%);
    color: #fff;
    -moz-box-shadow: inset 0 0 5px black;
    -webkit-box-shadow: inset 0 0 5px black;
    box-shadow: inset 0 0 5px black;
    border-radius: 4px;
}


.navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus {
    -moz-box-shadow: inset 0 0 20px #102b53;
    -webkit-box-shadow: inset 0 0 20px #102b53;
    box-shadow: inset 0 0 20px #102b53;
    border-radius: 4px;
}






.carousel-indicators {
	bottom:0px;
	opacity:0.7;
}

.carousel-indicators li, 
.carousel-indicators li.active {
	width: 40px;
}


h1.well {
	background-color:#1f539f;
	color:#fff;
}

#logo2 {
 float:none;
 padding-right:20px;
}



#suggestions.suggestionsBox.well.well-sm.pull-right {
	left:32%
}

#logo1 a img.img-responsive.center-block {
	width: 150px;
	height: 150px;
	float: left;
	margin-right:60px;
}


#search.panel {
	background-color: transparent;
	box-shadow: 0 0px 0px rgba(0,0,0,0);

}


.toplogo {
 background-image: linear-gradient(to top, #cccccc 0%, white 80%);
}

.panel-default > .panel-heading, .panel-default > .panel-heading a {
    color: #fff;
    background-color: #1f539f;
    border-color: #333;
}


.infosubheader {
	text-align: center;
	border: 0px solid green;
	margin: 4px 0;
	padding: 40px  5px  5px  5px;
	font-weight: bold;
	font-size: large;
}

.socialsubheader {
	float:right;
}


.socialsubheader2 {
	text-align:center;
}


.socialsubheader i {
	padding:0 8px 0 8px;
	font-size:25px;
	transition: all 0.8s;
}

.socialsubheader2 i {
	padding:20px 30px 0px 30px;
	font-size:35px;
	transition: all 0.8s;
}

.socialsubheader i:hover {
	opacity: 0.6;
}


ul li.list-group-item.level1 {
	background:none;
}



.carousel-inner .item a img {
	width:100%;
	border-radius: 15px;
}



/* Ansicht unter 750px Breite (mobile Geräte) - Stas */

@media only screen and (max-width: 750px) {

.infosubheader {padding:0px 5px 5px 5px;}
#search.panel {margin: 15px 0px 0px 15px;}
#suggestions.suggestionsBox.well.well-sm.pull-right { left:15px;}

}



/* Light ReDesign Code - Stas | Ende */












.eq-height {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-align-content: flex-end;
  align-content: flex-end;
}

.eq-height > div[class*='col-'] {
  flex:1 1 inherit;
  display: flex;
}
/* Höhen im Produktlisting */
.lb_title {
	height:43px;
	overflow:hidden;
}
.lb_image {
	height:160px; /* hier die Höhe an die Thumbnailgröße der Produktbilder anpassen */
}
.lb_image img {
	max-height:160px; /* hier die Höhe an die Thumbnailgröße der Produktbilder anpassen */
}
.lb_shipping {
	height:18px;
	overflow:hidden;
}
.lb_rating {
	height:20px;
	overflow:hidden;
}
.lb_price {
	height:22px;
	overflow:hidden;
}
@media (min-width: 768px) {
.lb_price {
	height:29px;
}
}
@media screen and (max-width: 991px) {
  .special_price .small_price {
    display:none;
  }
}
/* EU-Cookie unten rechts (https://www.modified-shop.org/forum/index.php?topic=37218.msg338521#msg338521) */
/*
#eucookielaw {
    bottom: 0;
    margin-bottom: 0;
    position: fixed;
    right: 0;
    width: 20%;
	min-width: 350px;
    z-index: 999999;
}
*/
/* EU-Cookie unten gesamte Breite (https://www.modified-shop.org/forum/index.php?topic=37218.msg338719#msg338719) */
/*
#eucookielaw {
    bottom: 0;
	left:0;
    margin-bottom: 0;
    position: fixed;
    width: 100%;
    z-index: 999999;
    text-align: center;
}
*/
/* EU-Cookie siehe Forum - danke Hanspeter (https://www.modified-shop.org/forum/index.php?topic=37218.msg338392#msg338392) */
#eucookielaw{display:none;
}
/* Systemfehlermeldung siehe Forum - danke web28 (https://www.modified-shop.org/forum/index.php?topic=37218.msg339064#msg339064) */
.errormessage {
  border:solid #DCA7A7 1px;
  padding:10px;
  font-size:13px !important;
  line-height:17px;
  color:#A94442;
  background-color:#F2DEDE ;
  margin-bottom:10px;
}
.errormessage.shopsystem {
  margin-top:38px;
  margin-bottom:-32px;
}
.errormessage ul li {
  margin-left:10px;
}
/* INFO MESSAGES */
.infomessage {
  border: 1px solid #b2dba1;
  padding: 10px;
  background-color: #d4ebcb;
  margin-bottom: 10px;
  line-height: 17px;
  color:#3C763D;
}
/* siehe Forum - danke Timm (https://www.modified-shop.org/forum/index.php?topic=37218.msg338385#msg338385) */
img {
	display: block;
	height: auto;
	max-width: 100%;
}
.cat_description img {
	margin-right: 20px;
}
.nav img {
	display: inline;
}
/* einfaches responsives Menü */
nav.responsive-nav {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 0;
    padding-bottom: 30px;
}
nav.responsive-nav .menu-header {
		box-shadow: -10px 0 6px -9px rgba(0, 0, 0, 0.7) inset;
        position: relative;
		height:70px;
        padding-top: 20px;
		color: inherit;
		font-size:1.2em;
        text-transform:uppercase;
    }
nav.responsive-nav #back {
        position: absolute;
        left: -50px;
        top: 10px;
        transition: left .2s;
}
nav.responsive-nav #back.active {
            left: 10px;
            transition: left .2s;
        }
nav.responsive-nav .menu {
        position: absolute;
        -webkit-overflow-scrolling: touch;
        overflow: scroll;
        overflow-x: hidden;
        overflow-y: auto;
        margin: 0;
        position: absolute;
        left: -100%;
        right: 100%;
        transition: left .2s;
        z-index: 0;
        top: 70px;
        bottom: 30px;
}
nav.responsive-nav .menu.active {
            z-index: 1;
            left: 0;
            transition: left .2s;
            right: 0%;
        }
nav.responsive-nav .menu .next {
	background-color: rgba(0, 0, 0, 0.2);
            position: absolute;
            right: 0;
            top: 0;
            bottom: 0;
            padding: 10px 20px;
            border-left-style: solid;
            border-left-width: 1px;
			border-color:inherit;
        }
nav.responsive-nav .menu ul {
            list-style: none;
            padding: 0;
}
nav.responsive-nav .menu ul li {
                position: relative;
}
nav.responsive-nav .menu ul li a {
                    display: block;
                    padding: 10px 15px;
					border-bottom-style: solid;
					border-bottom-width: 1px;
					border-color:inherit;
}
nav.responsive-nav a:hover, nav.responsive-nav a:focus {
	text-decoration:none;
}
nav.responsive-nav li.Selected a.active {
	background-color: rgba(0, 0, 0, 0.1);
}
nav.responsive-nav #home {
	position: absolute;
	right: 10px;
	top: 10px;
}
/* Superfishmenü */
@media screen and (min-width: 992px) {
/* Superfishmenü Megakategorien */
#main.navbar-nav > li.mega {
    position: static;
}
	ul.mega {
		left: 0 !important;
		right: 0 !important;
        width: 100%;
		padding:8px;
	}
	ul.mega.level2 > li{
        width: 100%;
	}
	 li.mega.level3 {
		width:25%;
		margin-left:0;
	} /* 4 col */
	.tab-content {
		width:100%;
		padding-top: 10px;
        display: inline-block;
	}
	.tab-pane ul {
        padding:0;
		margin:0;
	}
	ul.mega li, li.mega.level3 {
		float:left;
		display:inline;
        border-radius: 4px;
	}
	li.mega.level4 {
		float:none;
		margin-left:0;
	}
	.tab-pane ul li a {
    	display: block;
    	padding: 3px 20px;
	}
	.tab-pane ul li a:hover, .tab-pane ul li a:focus, li.mega.level2 {
    	background-color: #eeeeee;
    	background-image: linear-gradient(to bottom, #eeeeee, #eeeeee);
    	background-repeat: repeat-x;
        text-decoration: none;
	}
	.cyborg .tab-pane ul li a:hover, .cyborg .tab-pane ul li a:focus, .cyborg li.mega.level2,
	.superhero .tab-pane ul li a:hover, .superhero .tab-pane ul li a:focus, .superhero li.mega.level2,
	.darkly .tab-pane ul li a:hover, .darkly .tab-pane ul li a:focus, .darkly li.mega.level2 {
    	background-color: #505050;
    	background-image: linear-gradient(to bottom, #505050, #505050);
	}
	.tab-pane ul > .active > a, .tab-pane ul .active > a:hover, .tab-pane ul .active > a:focus {
    	outline: 0 none;
    	text-decoration: none;
	}
    #main.nav li.dropdown:hover > ul.dropdown-menu, #main.nav li.level1.mega:hover li.level2:first-child ul {
      display: block;
    }
	.dropdown-submenu>.dropdown-menu {
		top:0;left:80%;
		margin-top:-6px;margin-left:-1px;
		-webkit-border-radius:0 6px 6px 6px;
		-moz-border-radius:0 6px 6px 6px;
		border-radius:0 6px 6px 6px;
	}
	div.canvasmenu.container-fluid {
		display:none;
	}
	#main.navbar-nav {
		float:none;
	}
}
@media (max-width: 991px) {
	div.fullmenu.container-fluid {
		display:none;
	}
}
.caret-right {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 4px;
  vertical-align: middle;
  border-left: 4px dashed;
  border-left: 4px solid \9;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}
/* Ende Superfish */
/* Navbar Top */
.top .navbar-default {
    background-color: inherit;
    border-color: inherit;
}
.top.navbar {
	margin-bottom:0;
}
.top .navbar-toggle.navbar-left {
  float: left;
}
.top .navbar-nav > li, .top2 .navbar-nav > li {
	float: left;
}
@media screen and (max-width: 767px) {
  .top span.glyphicon, .top2 .dropdown-toggle {
    font-size: 1.2em;
  }
.top .navbar-nav {
    margin: 0;
}
}
/* Autocomplete-Box von Suche */
.suggestionsBox {
    position: absolute;
    z-index: 99999;
}
.suggestionList, .toggle_cart, .toggle_wishlist {
    max-height: 600px;
    overflow: auto;
	width: 460px;
}
.suggestionList li a.autocomplete .autocomplete_image {
    display: block;
    height: 40px;
    margin-right: 10px;
    overflow: hidden;
    width: 40px;
}
@media screen and (max-width: 767px) {
.toggle_wishlist {
	right: -80px;
}
}
.toggle_cart li, .toggle_wishlist li {
	display: inline-block;
	width: 100%;
}
@media screen and (max-width: 500px) {
.suggestionList li a.autocomplete .autocomplete_image {
    display: none !important;
  }
.suggestionList, .toggle_cart, .toggle_wishlist {
	width: 100% !important;
}
li.cart, li.wishlist {
	position: static;
}
.toggle_cart, .toggle_wishlist {
	position: absolute;
	right: 0;
	top: 88px;
}
}
.suggestionList li a.autocomplete {
    display: inline-block;
    width: 100%;
}
/* Ganz kleine Bildschirme */
@media screen and (max-width: 500px) {
#myCarousel {
    display: none !important;
  }
#checkoutnavigation .col-xs-6, .listingbox.col-xs-6, .listingrow .col-xs-4, .listingrow .col-xs-8, .pd_content .col-xs-6 {
	width:100%;
	}
.pd_more_images .col-xs-3 {
	width:50%;
	}
.view-buttons{
	display:none;
}
}
/* Gototop Button */
.go2top {
font-size: 1.2em;
position: fixed;
bottom: 5px;
right: 5px;
display: none;
z-index:99999;
}
@media (max-width: 991px) {
	.go2top {
		right:-80px;
	}
}
/* Copyright */
span.cop_magenta {
  color:#B0347E;
}
span.cop_grey {
  color:#6D6D6D;
}
.copyright, .parseTime {
  margin:0 auto;
  text-align:center;
  color:#666;
  font-size:11px;
}
.copyright {
  margin: -40px 0 0 0;
	min-height: 40px;
}
.copyright a {
  text-decoration:none;
}
.mod_copyright {
margin-top: 20px;
}
/* Bestsellercarousel */
#bsCarousel img{
	max-height: 110px;
}
#bsCarousel .prod_title{
	display:inline-block;
	height: 45px;
	padding:5px;
	overflow: hidden;
}
/* Unveil-Thumbnails bei deaktiviertem Javascript ausblenden */
.thumbnail img.unveil, img.unveil {
	display:none;
}
/* AGB-Fenster im Checkout */
div.agbframe {
    border-radius: 2px;
    border-style: solid;
    border-width: 1px;
    height: 130px;
    overflow: auto;
    padding: 5px;
}
/* miscellaneous */
#col_left li.list-group-item {
	padding:4px;
}
#col_left .list-group-item a{
	padding:6px 4px 6px 2px;
}
#categorymenu .panel, #layout_navbar .list-group {
	margin-bottom:0;
	margin-top:0;
}
#main_container {
	padding-top: 20px;
	padding-bottom: 20px;
}
.mt {
	margin-top: 20px;
}
.mb {
	margin-bottom: 10px;
}
.mini {
    font-size: 85%;
}
#checkoutnavigation .desc {
display:block;
font-size: 13px;
line-height: 17px;
min-height: 34px;
}
.bs.form-inline .form-control, .bs.form-inline .form-group {
    display: inline-block;
    vertical-align: middle;
    width: auto;
}
.list-group-item.active > a, .list-group-item.active:hover > a, .list-group-item.active:focus > a {
    color: inherit;
}
.clear {
clear:both;
height:0;
line-height:0;
}
.special_price {
    color: #bc0000;
}
.small_price {
	font-size:0.6em;
}
.box_image img, .lb_image img {
	max-width: 200px;
}
#layout_footer {
	padding-top: 10px;
	padding-bottom: 40px;
}
.dropdown-menu.toggle_cart, .dropdown-menu.toggle_wishlist {
	padding-top:0;
	padding-bottom:0;
	margin-top:0;
}
#layout_footer .box-heading {
display:block;
font-size:1.2em;
margin-bottom: 10px;
border-bottom:2px groove;
float:none;
}
.filter_bar .glyphicon{
	font-size:1.6em;
}
#modal .carousel-control {
    background-image: none;
	color: inherit;
}
.pd_fsk18 {
  background: transparent url(img/fsk18.png) no-repeat top center;
  height: 44px;
  width: 44px;
	position: absolute;
}
.pd_more_images img {
	max-height: 80px;
}
/* EU-Cookie */
#cookie a {
	color:#000; text-decoration:none;
}
/* GROSSSCHREIBUNG Angebote und Neue Artikel in den Menüs */
.up {
	text-transform: uppercase;
}
/* Ausrichtung Sternchenbild */
.rating_stars img {
    margin-top: -5px;
}
/* Überschrift */
h1.well.well-sm {
	font-size:25px;
}
/* meine Icons */
@font-face {
  font-family: 'my_icons';
  src: url('./fonts/my_icons.eot');
  src: url('./fonts/my_icons.eot#iefix') format('embedded-opentype'),
       url('./fonts/my_icons.woff2') format('woff2'),
       url('./fonts/my_icons.woff') format('woff'),
       url('./fonts/my_icons.ttf') format('truetype'),
       url('./fonts/my_icons.svg?#my_icons') format('svg');
  font-weight: normal;
  font-style: normal;
}

 [class^="icon-"]:before, [class*=" icon-"]:before {
  font-family: "my_icons" !important;
}

.icon-news:before { content: '\e800'; } /* '' */
.icon-cart:before { content: '\e801'; } /* '' */
.icon-waves:before { content: '\e802'; } /* '' */
.icon-money:before { content: '\f0d6'; } /* '' */
.icon-user-plus:before { content: '\f234'; } /* '' */
.icon-user-times:before { content: '\f235'; } /* '' */
.icon-opencart:before { content: '\f23d'; } /* '' */

/* Breite der Modal-Box */
@media screen and (min-width: 768px) {
.modal-dialog {
	width:745px;
}
}
/* Schalter vorheriges/nächstes Bild in Modalbox */
#show-previous-image.carousel-control, #show-next-image.carousel-control {
	height:50%;
	top:20%;
}
/* Sternchen für Pflichtfelder */
.stern input[type="text"], .stern input[type="password"], .stern input[type="email"], .stern input[type="tel"], .stern select, .stern textarea {
    width: 97%;
	float:left;
}
.ib {
	display:inline-block;
}
#cart_quantity .input-group {
	width:160px;
}
.lr_buttons .btn, .lb_buttons .btn {
    margin-bottom: 10px;
}
.markProductOutOfStock {
  display:inline-block;
  padding-left:5px;
}



/* IE10 und Windows Phone 8 Hack */
@-webkit-viewport   { width: device-width; }
@-moz-viewport      { width: device-width; }
@-ms-viewport       { width: device-width; }
@-o-viewport        { width: device-width; }
@viewport           { width: device-width; }

.cat_description .img-thumbnail {
	max-width: 150px;
}

.zoomLens {
	background-image: url("img/Zoom-Scroll-Maus.jpg");
	background-size: 100% 100%;
}

.sale_motive li {
	list-style-image: url("img/daumen-top.gif");
}


/* Nav - Abstand Korrektur Test */

@media screen and (max-width: 770px) {
  .input-group {
    //      margin-left:20px;
     //     margin-top: 10px;
          }   }

 @media screen and (min-width: 771px) {
  .pull-left {
    //    margin-left:-18px;
         }   }


/* Nav - Download Anleitungen - ENGEL */

.sup li {
	height: 38px;
 // line-height: 0.8;
//	font-size: 14px;
overflow: hidden;
	font-weight: 500;
	text-align: left;
	white-space: nowrap;
	vertical-align: middle;
	-ms-touch-action: manipulation;
	touch-action: manipulation;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background-image: none;
	border-bottom: 1px solid rgb(221, 221, 221);
}

.sup li a:hover {
  text-decoration: none;
  background-image: linear-gradient(to right, #1f539f, #3498db);
  color: #fbfbfb;
  height: 38px;
  border-bottom: none;
}

/* Nav - Download Anleitungen | Ende */


/* Support - Gut zu wissen - Textblock - ENGEL */
.txt_blk_sup {
  background: none repeat scroll 0 0 #F1F3F4; 
  overflow: auto;
  border-radius: 0.7em; 
  margin-left: 0;
  padding: .5em 1.8em 2em 1.2em; 
  border: 1px solid #d5d5d5;
  border-collapse: separate;
}

.txt_blk_sup:hover {
box-shadow:
inset 0px 0 0 hsla(90,50%,40%,0.4),
inset 0 3px 0 hsla(240, 57%, 36%, 0.2), 
inset -3px 0 0 hsla(208, 59%, 26%, 0.2), 
inset 0 -3px 0 hsla(189, 61%, 25%, 0.2)
}

.sup_red {
  border-left: 5px solid #aa1f72;
}

.sup_ora {
  border-left: 5px solid #e6c719;
}

.sup_gre {
  border-left: 5px solid #15cfc0;
}
@media screen and (min-width: 992px) {
  .fs-support ul {
     margin-left:30px;
   }   }



  @media screen and (min-width: 481px) {
 img.pic_blk {
  box-shadow: 0px 3px 3px rgb(160, 160, 160);
  border-radius: 10px;
  float: right;
    width: 200px;
    height: auto;
    margin-left:8px;
    margin-bottom:15px;
  }   }

  @media screen and (max-width: 480px) {
img.pic_blk {
  float: inherit;
  width: 100%;
  height: auto;
  margin-top:20px;
  margin-left:0px;
  margin-bottom:25px;
  }   }


div.fs-support {
  border-radius: 4px;
  padding: 5px 20px 5px 10px;
  margin: 10px 0;
  border: 1px solid #d0d0d0;
  border-left: 5px solid;
  }
  
div.fs-support-red {
  border-left-color: #d54e4a;
  background-image: linear-gradient(to right, white 40%, #e8e8e8);
}
.fs-support-red code {
  font-weight: bold;
}
  
div.fs-support-blue {
  border-left-color: #72c7f2;
}
  
div.fs-support-green {
  border-left-color: #8ad56b;
}

div.fs-support-media {
  overflow: auto;
  border-left-color: #e9e9e9;
}


img.media-pic {
  margin-right: 20px;
  float: left;
  height: 100px;
  border: 1px solid #8ad56b;
  border-radius: 6px;
  box-shadow: 1px 1px 1px 0px rgba(31, 31, 31, 0.32);
}
 
  @media screen and (max-width: 480px) {
    img.media-pic {
      float: inherit;
      width: 100%;
      height: auto;
      margin-top:20px;
      margin-left:0px;
      margin-bottom:25px;
      }   }

img.media-pic a:hover {
  border: 1px solid #8ad56b;
  background-color: #8ad56b;
}

.fs-support-green a {
  color: #bc0000;
  background-color: #f8f8f8;
  border: 1.5px solid #bc0000;
  font-weight:bold;
  text-decoration: none;
  padding: 0px 7px 0px 7px;
  appearance: none;
  cursor: pointer;
  display: inline-block;
  border-radius: 6px;
  font-size: 0.8rem;
  box-shadow: 1px 1px 1px 0px rgba(31, 31, 31, 0.32);
  }
  .fs-support-green a:hover {
    color: #fcfcfc;
    background-color: #bc0000;
  }

div.fs-support-tip {
  border-left-color: #eadc6c;
  background-color: #f0ee835c;
}

.fs-support-tip a {
  color: #1f539f;
  background-color: #f8f8f8;
  border: 1.5px solid #1f539f;
  font-weight:bold;
  text-decoration: none;
  padding: 0px 7px 0px 7px;
  appearance: none;
  cursor: pointer;
  display: inline-block;
  border-radius: 6px;
  font-size: 0.8rem;
  box-shadow: 1px 1px 1px 0px rgba(31, 31, 31, 0.32);
  }
  .fs-support-tip a:hover {
    color: #fcfcfc;
    background-color: #1f539f;
  }


div.sheet {
  padding: 5px;
  background-color: #ffffff;
  box-shadow: 1px 1px 1px 0px rgba(31, 31, 31, 0.32);
    }

.lst.btn-xs a:hover  {
  background-image: linear-gradient(to right, #1f539f, #3498db);
}

.pull-left {
    width: 100%;
  }

ul.nav.nav-tabs {
  border: none;
}

.tap-content  {
 width: 100%;
}

.nav .nav-tabs {
  margin-bottom: 0px;
 }

.nav-tabs li.active  {
  font-weight: bold;
  border-bottom: 3px solid #1f539f;
 }


 #modnav ul {
  margin-left: 8px;
}
 
 #modnav li {
  padding-bottom: 12px;
  margin-right: 10px;
  float: left;
  display: inline;
}

#modnav li.active a {
  background-image: linear-gradient(to right, #1f539f, #3498db);
  color: #efefef;
}

@media screen and (max-width: 480px) {
  #modnav li {
    width: 95%;
  }   }

/* Support - Gut zu wissen - Textblock | Ende */