/* Allgemein */
body {
	margin: 0;
	padding: 0;
}

#bg-shop {
	font-family: 'Open Sans', sans-serif;
	background-color: #E6E6E6;
	color: #000000;	
	font-size: 14px; 
	margin: 0;
	padding: 0; 
	height: 100%; 
}

img {
	border: none;
}

.flex-container-info {
    display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: center;
	align-items: stretch;
	border: 1px solid #00BEF0;
}

.flex-item-info1 {
	flex: 1 1 auto;
	margin: 15px;
	text-align: left;
	max-width: 100%;
}

.flex-item-info2 {
	flex: 1 1 auto;
	margin: 15px;
	text-align: center;
	max-width: 100%;
}


.clear {
	clear: both;
}

.hidden-xs {
	display: none;
}

.width1200 {
	background-color: #FFFFFF;
}

/* Header */
.bg-header {
	padding: 20px 15px;
	background-image: url(../img/bg-header.jpg);
	background-position: top center;
	background-repeat: no-repeat;
}

.bg-header .logo img {
	max-width: 100%;
	margin: 0 auto;
	display: block;
}

.bg-navi {
	background-image: url(../img/bg-navi.jpg);
	background-position: top center;
	background-repeat: repeat-y;
	color: #000000;
}

.bg-navi .navi {
	padding: 10px 0 0 0;
}

.btn-navi .btn-menu {
	cursor: pointer;
	padding: 0 0 10px 0; 
	text-align: center;		
}

.btn-navi .btn-menu i {
	font-size: 30px;	
}

.btn-navi .shopnavi {
	display: none;
}

.btn-navi:hover .shopnavi {
	display: block;
}

.btn-navi .shopnavi a {
	font-size: 16px;
	font-weight: 600;
	display: block;
	color: #000000;
	text-decoration: none;
	padding: 10px 15px;
	text-transform: uppercase;
}

.btn-navi .shopnavi a:hover {
	color: #FFFFFF;
}

.btn-navi .shopnavi img {
	float: left;
}

.btn-navi .shopnavi .ebay {
	position: relative;
	top: -7px;
	margin-right: 25px;
}

.btn-navi .shopnavi .profil {
	position: relative;
	top: 2px;
	margin-right: 15px;
}

.btn-navi .shopnavi i {
	font-size: 22px;
	padding-right: 20px;
    width: 22px;
}

.btn-navi .shopnavi .fa-paper-plane{
	font-size: 20px;
}

.btn-navi .close {
	background-color: #DDDDDD;
	color: #000000;
	font-size: 18px;
	padding: 15px;
	cursor: pointer;
	width: auto;
}

.btn-navi .close i {
	font-size: 18px;
	color: #000000;	
}

.btn-navi .close:hover {
	display: none;
}

/* Content */
.content-box {
	padding: 15px;	 
}

.content-box h1 {
	color: #1A1A1A;
    margin: 0 0 25px 0;
    font-size: 24px;
	font-weight: 600;
	border-bottom: 2px solid #00BEF0;
	padding-bottom: 15px;
}

.galerie .btn-checkbox {
    display: none;
}

.bild-gross-position {
	display: none;
	height: 250px;
	overflow: hidden;
}

.bild-gross-position a {
	cursor: zoom-in;
	display: block;
	height: 250px;
	overflow: hidden;
	text-align: center;
}

.bild-gross-position img {
	display: inline-block;
	max-height: 100%;
	max-width: 100%;
}

.thumbs {
	margin-bottom: 15px;
	text-align: center;
}

.thumbs label {
	cursor: pointer;
	display: inline-block;
	margin: 0 5px 10px 5px;
	overflow: hidden;
}

.thumbs label img {
	display: inline-block;
	height: auto;
	margin: auto;
	max-height: 100%;
	max-width: 100%;
	width: 60px;
}

.thumbs label img[src=""] {
	display: none;
}

#bild-1:checked ~ .bild-gross #bild-gross-1, 
#bild-2:checked ~ .bild-gross #bild-gross-2, 
#bild-3:checked ~ .bild-gross #bild-gross-3, 
#bild-4:checked ~ .bild-gross #bild-gross-4, 
#bild-5:checked ~ .bild-gross #bild-gross-5, 
#bild-6:checked ~ .bild-gross #bild-gross-6,
#bild-7:checked ~ .bild-gross #bild-gross-7,
#bild-8:checked ~ .bild-gross #bild-gross-8,
#bild-9:checked ~ .bild-gross #bild-gross-9,
#bild-10:checked ~ .bild-gross #bild-gross-10,
#bild-11:checked ~ .bild-gross #bild-gross-11,
#bild-12:checked ~ .bild-gross #bild-gross-12 {
    display: block;
}

.lightbox {
	background: rgba(0, 0, 0, 0.7);
	height: 100%;
	left: 0;
	opacity: 0;
	overflow: hidden;
	visibility: hidden;
	width: 100%;
	z-index: 999;
}

.lightbox .lightbox-popup {
    -moz-transition: transform .5s ease;
    -o-transition: transform .5s ease;
    -webkit-transition: transform .5s ease;
    transition: transform .5s ease;
}

.lightbox:target {
	opacity: 1;
	position: fixed;
	top: 0;
	visibility: visible;
}

.lightbox-popup {
	-ms-transform: scale(0);
	-webkit-transform: scale(0);
	background-color: #FFFFFF;
	bottom: 0;
	left: 0;
	margin: 0 auto;
	max-height: 0;
	max-width: 0;
	position: absolute;
	right: 0;
	top: 10%;
	transform: scale(0);
}

.lightbox:target .lightbox-popup {
	-ms-transform: scale(1);
	-webkit-transform: scale(1);
	max-height: 400px;
	max-width: 400px;
	transform: scale(1);
}

.lightbox-popup img {
	bottom: 0;
	height: auto;
	left: 0;
	margin: auto;
	max-height: 95%;
	max-width: 95%;
	position: absolute;
	right: 0;
	top: 0;
	width: auto;
}

.lightbox a.btn-close {
	background-color: #FFFFFF;
	display: block;
	height: 20px;
	position: absolute;
	right: 0;
	top: 0;
	width: 20px;
	text-decoration: none;
	font-size: 20px;
	color: #000000;
	cursor: pointer;
	padding: 10px;
}

.lightbox a.btn-close:before {
	content: "\f00d";
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	text-decoration: inherit;
}

.zoom {
	font-size: 12px;
	font-weight: 700;
	padding: 15px 0;
	text-align: center;
	color: #000000;
}

.zoom i {
	padding-right: 10px;
	font-size: 16px;
}

.details .merkmale {
	border-top: 2px solid #00BEF0;
    padding: 25px 0;
	color: #1A1A1A;
}

.details .merkmale table {
	color: #1A1A1A;
	font-size: 14px;
	font-family: 'Open Sans', sans-serif;
}

.details .merkmale table td {
	padding: 5px 0;
	font-weight: 700;
}

.details .merkmale table td.abstand {
	padding-right: 15px;
	font-weight: 700;
}

article.accordion section { 
	display: block;
	height: 45px;
	overflow: hidden;
	border: 1px solid #CCCCCC;
}

article.accordion section h2 {
	padding: 12px 15px;
	margin: 0;
}

article.accordion section h2 a:after {  
	content: "\f01a";
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	text-decoration: inherit;
	float: right;
	font-size: 24px;
}

article.accordion section h2 a {
	display: block;
	text-decoration: none;
	color: #1A1A1A;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 14px;
}

article.accordion section h2 a:hover {
	color: #4D4D4D;
}

article.accordion section .text {
	padding: 15px;
}

article.accordion section:target {
	height: auto;
}

article.accordion section {
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-ms-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease; 
}

.details .bg-button {
	background-image: url(../img/bg-button-schwarz.jpg);
	background-position: top center;
	background-repeat: no-repeat;
	border: 1px solid #00BEF0;
	padding: 3px 0;
	max-width: 500px;
	margin: 0 auto;
}

.bg-button {
	background-image: url(../img/bg-button-schwarz.jpg);
	background-position: top center;
	background-repeat: no-repeat;
	border: 1px solid #00BEF0;
	padding: 3px 0;
	max-width: 500px;
	margin: 0 auto;
}



.button {
	background-image: url(../img/bg-button.jpg);
	background-position: top center;
	background-repeat: no-repeat;
	max-width: 240px;
	margin: 10px auto 0 auto;
	display: block;
	padding: 8px 15px;
	text-align: center;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	border: 1px solid #0D0D0D;
}


.button a {
	color: #000000;
	text-decoration: none;	
}

.button:hover {
	color: #FFFFFF;
	transition: all .5s ease;
	-moz-transition: all .5s ease;
    -o-transition: all .5s ease;
   	-webkit-transition: all .5s ease;
}

.button:hover a {
    color: #FFFFFF;
}

.kaufen {
   	background-image: url(../img/bg-button.jpg);
	background-position: top center;
	background-repeat: no-repeat;
	max-width: 240px;
	margin: 10px auto;
	display: block;
	padding: 7px 15px;
	text-align: center;
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	border: 1px solid #0D0D0D;
}

.kaufen a {
    color: #000000;
	text-decoration: none;
}

.kaufen:hover a {
    color: #FFFFFF;
	transition: all .5s ease;
	-moz-transition: all .5s ease;
    -o-transition: all .5s ease;
   	-webkit-transition: all .5s ease;
}

.info {
	text-align: center;
	font-size: 18px;
	font-weight: 700;
	padding: 5px 0;
}

.border {
	margin-top: 25px;
	border: 1px solid #CCCCCC;
}

.beschreibung {
	padding: 15px;
}

.kurzbeschreibung {
	display: none;
}

/* Footer */
.bg-newsletter {
	background-image: url(../img/bg-newsletter.jpg);
	background-position: top center;
	background-repeat: repeat-y;
	text-align: center;
}

.bg-newsletter .newsletter {
	padding: 14px 15px;
}

.newsletter i {
	font-size: 20px;
	padding-right: 10px;
}	
	
.newsletter a {
	color: #000000;
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
	text-transform: uppercase;
}	

.newsletter a:hover {
	color: #FFFFFF;
}

.bg-footer {
	background-image: url(../img/bg-footer-s.jpg);
	background-position: top center;
	background-repeat: no-repeat;
	color: #FFFFFF;
}
	
.bg-footer .footer {
	padding: 0 15px;
}
	
.footer a {
	color: #FFFFFF;
	text-decoration: none;
}

.footer a:hover {
	color: #00BEF0;
}

.footer h2 {
	color: #00BEF0;
	font-size: 16px;
	margin: 0 0 15px 0;
	font-weight: 700;
	text-transform: uppercase;
}

.footer .box {
	padding: 15px 0;
}

.footer .informationen span {
	display: inline-block;
	padding-right: 20px;
}

.informationen a {
	display: block;
	line-height: 220%;
	text-transform: uppercase;
}

.bezahlen img {
	margin: 0 5px 5px 0;
}

.copy {
	margin: 15px;
	padding: 15px 0;
	text-align: center;
	border-top: 1px solid #00BEF0;
	font-size: 12px;
}