
.jBox-wrapper {
	text-align: left;
}

.jBox-wrapper,
.jBox-wrapper * {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.jBox-title,
.jBox-content,
.jBox-container {
	position: relative;
	word-break: break-word;
}

.jBox-container {
	background: #fff;
}

.jBox-content {
	padding: 8px 10px;
	overflow: auto;
	-webkit-transition: opacity .15s;
	transition: opacity .15s;
}

/* jBox Tooltip */

.jBox-Tooltip .jBox-container,
.jBox-Mouse .jBox-container {
	border-radius: 3px;
	box-shadow: 0 0 5px rgba(0, 0, 0, .3);
}

.jBox-Tooltip .jBox-title,
.jBox-Mouse .jBox-title {
	padding: 8px 10px 0;
	font-weight: bold;
}

.jBox-hasTitle.jBox-Tooltip .jBox-content,
.jBox-hasTitle.jBox-Mouse .jBox-content {
	padding-top: 5px;
}

/* Pointer */

.jBox-pointer {
	position: absolute;
	overflow: hidden;
}

.jBox-pointer-top { top: 0; }
.jBox-pointer-bottom { bottom: 0; }
.jBox-pointer-left { left: 0; }
.jBox-pointer-right { right: 0; }

.jBox-pointer-top,
.jBox-pointer-bottom {
	width: 30px;
	height: 12px;
}

.jBox-pointer-left,
.jBox-pointer-right {
	width: 12px;
	height: 30px;
}

.jBox-pointer:after {
	content: '';
	width: 20px;
	height: 20px;
	position: absolute;
	background: #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.jBox-pointer-top:after {
	left: 5px;
	top: 6px;
	box-shadow: -1px -1px 4px rgba(0, 0, 0, .2);
}

.jBox-pointer-right:after {
	top: 5px;
	right: 6px;
	box-shadow: 1px -1px 4px rgba(0, 0, 0, .2);
}

.jBox-pointer-bottom:after {
	left: 5px;
	bottom: 6px;
	box-shadow: 1px 1px 4px rgba(0, 0, 0, .2);
}

.jBox-pointer-left:after {
	top: 5px;
	left: 6px;
	box-shadow: -1px 1px 4px rgba(0, 0, 0, .2);
}

/* jBox Modal & jBox Confirm */

.jBox-Modal .jBox-container,
.jBox-Confirm .jBox-container {
	border-radius: 3px;
	box-shadow: 0 3px 15px rgba(0, 0, 0, .4), 0 0 5px rgba(0, 0, 0, .4);
}

.jBox-Modal .jBox-title,
.jBox-Confirm .jBox-title {
	border-radius: 3px 3px 0 0;
	padding: 10px 15px;
	background: #f4f5f6;
	border-bottom: 1px solid #ddd;
	text-shadow: 0 1px 0 #fff;
}

.jBox-Modal.jBox-closeButton-title .jBox-title,
.jBox-Confirm.jBox-closeButton-title .jBox-title {
	padding-right: 55px;
}

.jBox-Modal.jBox-closeButton-box:before,
.jBox-Confirm.jBox-closeButton-box:before {
	box-shadow: 0 3px 15px rgba(0, 0, 0, .4), 0 0 5px rgba(0, 0, 0, .4);
}

/* jBox Modal */

.jBox-Modal .jBox-content {
	padding: 12px 15px;
}

/* jBox Confirm */

.jBox-Confirm .jBox-content {
	text-align: center;
	padding: 45px 35px;
}

.jBox-Confirm-footer {
	border-top: 1px solid #e2e2e2;
	background: #fafafa;
	border-radius: 0 0 3px 3px;
	text-align: center;
	padding: 10px 0;
}

.jBox-Confirm-button {
	display: inline-block;
	cursor: pointer;
	font-size: 15px;
	line-height: 30px;
	height: 30px;
	border-radius: 3px;
	padding: 0 20px;
	-webkit-transition: color .2s, background-color .2s;
	transition: color .2s, background-color .2s;
}

.jBox-Confirm-button-cancel {
	text-shadow: 0 1px 1px rgba(255, 255, 255, .6);
	background: #ddd;
	color: #999;
	margin-right: 25px;
}

.jBox-Confirm-button-cancel:hover {
	background: #ccc;
	color: #666;
}

.jBox-Confirm-button-submit {
	text-shadow: 0 -1px 1px rgba(0, 0, 0, .2);
	background: #5fc04c;
	color: #fff;
}

.jBox-Confirm-button-submit:hover {
	background: #53a642;
}

.jBox-Confirm-button-cancel:active,
.jBox-Confirm-button-submit:active {
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, .26);
}

/* jBox Notice */

.jBox-Notice {
	-webkit-transition: margin .2s;
	transition: margin .2s;
}

.jBox-Notice .jBox-container {
	border-radius: 3px;
	box-shadow: 0 0 3px rgba(0, 0, 0, .2);
	color: #fff;
	text-shadow: 0 -1px 0 #000;
	background: #333;
	background-image: linear-gradient(to bottom, #444, #222);
}

.jBox-Notice .jBox-content {
	border-radius: 3px;
	padding: 12px 20px;
}

.jBox-Notice .jBox-title {
	padding: 8px 20px 0;
	font-weight: bold;
}

.jBox-hasTitle.jBox-Notice .jBox-content {
	padding-top: 5px;
}

.jBox-Notice-color .jBox-container {
	text-shadow: 0 -1px 0 rgba(0, 0, 0, .3);
}

.jBox-Notice-gray .jBox-container {
	color: #666;
	text-shadow: 0 1px 0 #fff;
	background: #f4f4f4;
	background-image: linear-gradient(to bottom, #fafafa, #f0f0f0);
}

.jBox-Notice-red .jBox-container {
	background: #b02222;
	background-image: linear-gradient(to bottom, #ee2222, #b02222);
}

.jBox-Notice-green .jBox-container {
	background: #70a800;
	background-image: linear-gradient(to bottom, #95cc2a, #70a800);
}

.jBox-Notice-blue .jBox-container {
	background: #2b91d9;
	background-image: linear-gradient(to bottom, #5abaff, #2b91d9);
}

.jBox-Notice-yellow .jBox-container {
	color: #744700;
	text-shadow: 0 1px 0 rgba(255, 255, 255, .6);
	background: #ffb11f;
	background-image: linear-gradient(to bottom, #ffd665, #ffb11f);
}

/* jBox Image */

.jBox-Image {
	background: #fff;
	padding: 8px 8px 45px;
	border-radius: 5px;
}

.jBox-Image .jBox-content {
	padding: 0;
	width: 100%;
	height: 100%;
}

.jBox-image-container {
	border-radius: 5px;
	background: #fff center center no-repeat;
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0;
}

.jBox-image-label {
	box-sizing: border-box;
	position: absolute;
	background: #fff;
	top: 100%;
	left: 0;
	width: 100%;
	color: #333;
	margin-top: -35px;
	padding: 0 90px 5px 10px;
	border-radius: 0 0 5px 5px;
	-webkit-transition: opacity .3s;
	transition: opacity .3s;
	opacity: 0;
}

.jBox-image-label.active {
	opacity: 1;
}

.jBox-image-pointer-next,
.jBox-image-pointer-prev {
	position: absolute;
	bottom: 0px;
	width: 22px;
	height: 45px;
	background: no-repeat center center url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ijc0LjcgMjI0IDE4LjcgMzIiPg0KPHBhdGggZmlsbD0iIzAwMDAwMCIgZD0iTTkzLDIyNy40TDgwLjQsMjQwTDkzLDI1Mi42YzAuNCwwLjQsMC40LDEuMSwwLDEuNWwtMS42LDEuNmMtMC40LDAuNC0xLDAuNS0xLjUsMEw3NSwyNDAuN2MtMC40LTAuNC0wLjUtMSwwLTEuNWwxNC45LTE0LjljMC40LTAuNCwxLTAuNCwxLjUsMGwxLjYsMS42QzkzLjUsMjI2LjQsOTMuNCwyMjcsOTMsMjI3LjR6Ii8+DQo8L3N2Zz4=);
	background-size: 11px auto;
	cursor: pointer;
	opacity: .6;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-transition: opacity .2s;
	transition: opacity .2s;
}

.jBox-image-pointer-next:hover,
.jBox-image-pointer-prev:hover {
	opacity: 1;
}

.jBox-image-pointer-next {
	right: 8px;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

.jBox-image-pointer-prev {
	right: 30px;
}

.jBox-image-open #jBox-overlay {
	background-color: rgba(0, 0, 0, .86);
}

.jBox-Image.jBox-loading .jBox-container:before {
	left: auto;
	top: auto;
	bottom: -33px;
	right: 55px;
	margin-top: -9px;
	margin-left: -9px;
}

/* Close button */

.jBox-closeButton {
	cursor: pointer;
	position: absolute;
}

.jBox-closeButton svg {
	position: absolute;
	top: 50%;
	right: 50%;
}

.jBox-closeButton path {
	-webkit-transition: fill .2s;
	transition: fill .2s;
}

.jBox-closeButton path {
	fill: #aaa;
}

.jBox-closeButton:hover path {
	fill: #888;
}

.jBox-closeButton:active path {
	fill: #666;
}

/* Close button in overlay */

#jBox-overlay .jBox-closeButton {
	top: 0;
	right: 0;
	width: 40px;
	height: 40px;
}

#jBox-overlay .jBox-closeButton svg {
	width: 20px;
	height: 20px;
	margin-top: -10px;
	margin-right: -10px;
}

#jBox-overlay .jBox-closeButton path {
	fill: #d2d4d6;
}

#jBox-overlay .jBox-closeButton:hover path {
	fill: #fff;
}

#jBox-overlay .jBox-closeButton:active path {
	fill: #b2b4b6;
}

/* Close button in title */

.jBox-closeButton-title .jBox-closeButton {
	top: 0;
	right: 0;
	bottom: 0;
	width: 40px;
}

.jBox-closeButton-title .jBox-closeButton svg {
	width: 12px;
	height: 12px;
	margin-top: -6px;
	margin-right: -6px;
}

/* Close button in box */

.jBox-closeButton-box .jBox-closeButton {
	top: -8px;
	right: -10px;
	width: 24px;
	height: 24px;
	background: #fff;
	border-radius: 50%;
}

.jBox-closeButton-box .jBox-closeButton svg {
	width: 10px;
	height: 10px;
	margin-top: -5px;
	margin-right: -5px;
}

.jBox-hasTitle.jBox-Modal.jBox-closeButton-box .jBox-closeButton {
	background: #f4f5f6;
}

.jBox-closeButton-box:before {
	content: '';
	position: absolute;
	top: -8px;
	right: -10px;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	box-shadow: 0 0 5px rgba(0, 0, 0, .3);
}

.jBox-pointerPosition-top.jBox-closeButton-box:before {
	top: 4px;
}

.jBox-pointerPosition-right.jBox-closeButton-box:before {
	right: 2px;
}

/* Overlay */

#jBox-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	background-color: rgba(0, 0, 0, .6);
}

/* Block scrolling */

body[class^="jBox-blockScroll-"],
body[class*=" jBox-blockScroll-"] {
	overflow: hidden;
}

/* Draggable */

.jBox-draggable {
	cursor: move;
}

/* Spinner */

@keyframes jBoxLoading {
	to {transform: rotate(360deg);}
}

@-webkit-keyframes jBoxLoading {
	to {-webkit-transform: rotate(360deg);}
}

.jBox-loading .jBox-content {
	min-height: 32px;
	min-width: 38px;
	opacity: 0;
}

.jBox-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    margin-left: -10px;
}

.jBox-spinner:before {
    content: 'Loading…';
    display: block;
    width: 20px;
    height: 20px;
	text-align: center;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.jBox-spinner:not(:required):before {
    content: '';
    border-radius: 50%;
    border: 2px solid rgba(0, 0, 0, .3);
    border-top-color: rgba(0, 0, 0, .6);
    animation: jBoxLoading .6s linear infinite;
    -webkit-animation: jBoxLoading .6s linear infinite;
}

/* IE8 fixes */

.jBox-IE8.jBox-Tooltip .jBox-container,
.jBox-IE8.jBox-Mouse .jBox-container {
	border: 1px solid #aaa;
}

.jBox-IE8 .jBox-pointer:after {
	display: none;
}

.jBox-IE8 .jBox-pointer {
	border: 0;
	background: no-repeat url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABsAAAAbCAYAAACN1PRVAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAPJJREFUeNq01l0OwyAIAGAlvY+n8ZJ6Gk/EqqkNtf7ApCQ+LM34iuCmRUQzihjj6FH+kjWL8N4/Ph9GHpiTnC9SwDbhLGyvspSScc71KkOa/HpuuRhIK+psE2pjONouCQg7kBSEXUgC2tHo52mTTBpnaEATWlaYK6MrhIAaceWpOcsCrYp6FV4H/90zTWjUQ/gSevVQq0ecHqoOxWpYoO7p5O9ku2fnVtp7QAik2rsK3fnpWfjynJWpbw+1BkghurrYDjiCptg/4AxaYhJwBbEwDsiB2NgM5EIirAdKIDFGQSmU1+NaIPjJYt2I25vxT4ABAMhWvtle2YvmAAAAAElFTkSuQmCC);
}

.jBox-IE8 .jBox-pointer-top { background-position: center top; }
.jBox-IE8 .jBox-pointer-bottom { background-position: center bottom; }
.jBox-IE8 .jBox-pointer-left { background-position: left center; }
.jBox-IE8 .jBox-pointer-right { background-position: right center; }

.jBox-IE8.jBox-Modal .jBox-container {
	border: 3px solid #aaa;
}

/* No SVG support fixes */

.jBox-nosvg .jBox-closeButton:before {
    font-family: Verdana, sans-serif;
    content: 'x';
    text-align: center;
    font-size: 18px;
    color: #888;
}


.jBox-ModalBorder {
	border-radius: 8px;
	background: rgba(0, 0, 0, .4);
	padding: 8px;
	box-shadow: 0 0 6px rgba(0, 0, 0, .2);
}

/* Container */

.jBox-ModalBorder .jBox-container {
	border-radius: 5px;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

/* Close button */

.jBox-ModalBorder.jBox-closeButton-box {
	border-top-right-radius: 0;
}

.jBox-ModalBorder.jBox-closeButton-box:before {
	display: none;
}

.jBox-ModalBorder.jBox-hasTitle.jBox-closeButton-box .jBox-closeButton,
.jBox-ModalBorder.jBox-closeButton-box .jBox-closeButton {
	background: rgba(0, 0, 0, .4);
	border-radius: 0 50% 50% 0;
	right: -32px;
	top: -8px;
}

.jBox-ModalBorder.jBox-closeButton-box .jBox-closeButton path {
	fill: #d2d4d6;
}

.jBox-ModalBorder.jBox-closeButton-box .jBox-closeButton:hover path {
	fill: #fff;
}

.jBox-ModalBorder.jBox-closeButton-box .jBox-closeButton:active path {
	fill: #b2b4b6;
}


/* jBox: Notice */

.jBox-NoticeBorder .jBox-container {
	border-radius: 6px;
}

.jBox-NoticeBorder .jBox-content,
.jBox-NoticeBorder .jBox-title {
	padding-left: 26px;
}

.jBox-NoticeBorder.jBox-Notice-color .jBox-container {
	color: #fff;
	text-shadow: 0 -1px 0 #000;
	background: rgba(0, 0, 0, .92);
}

.jBox-NoticeBorder.jBox-Notice-color .jBox-container:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 8px;
	border-radius: 5px 0 0 5px;
	background-image: linear-gradient(45deg, rgba(255, 255, 255, .5) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .5) 50%, rgba(255, 255, 255, .5) 75%, transparent 75%, transparent);
	background-size: 18px 18px;
}

.jBox-NoticeBorder.jBox-Notice-red .jBox-container:after {
	background-color: #CC0000;
}

.jBox-NoticeBorder.jBox-Notice-green .jBox-container:after {
	background-color: #95cc2a;
}

.jBox-NoticeBorder.jBox-Notice-blue .jBox-container:after {
	background-color: #4cb4ff;
}

.jBox-NoticeBorder.jBox-Notice-yellow .jBox-container:after {
	background-color: #ffba00;
}


/* Container */

.jBox-TooltipBorder .jBox-container {
	border-radius: 5px;
	border: 2px solid #CC0000;
}

/* Pointer */

.jBox-TooltipBorder .jBox-pointer:after {
	border: 2px solid #CC0000;
}

.jBox-TooltipBorder .jBox-pointer-top,
.jBox-TooltipBorder .jBox-pointer-bottom {
	width: 34px;
	height: 12px;
}

.jBox-TooltipBorder .jBox-pointer-left,
.jBox-TooltipBorder .jBox-pointer-right {
	width: 12px;
	height: 34px;
}

/* Close button */

.jBox-TooltipBorder.jBox-closeButton-box:before {
	width: 28px;
	height: 28px;
	background: #CC0000;
}


/* Container */

.jBox-TooltipDark .jBox-container {
	border-radius: 3px;
	background: #222;
	color: #fff;
	box-shadow: 0 0 6px rgba(0, 0, 0, .4);
}

/* Pointer */

.jBox-TooltipDark .jBox-pointer:after {
	background: #222;
}

/* Close button */

.jBox-TooltipDark .jBox-closeButton {
	background: #222;
}

.jBox-TooltipDark.jBox-closeButton-box:before {
	box-shadow: 0 0 6px rgba(0, 0, 0, .4);
}

.jBox-TooltipDark.jBox-closeButton-box .jBox-closeButton path {
	fill: #d2d4d6;
}

.jBox-TooltipDark.jBox-closeButton-box .jBox-closeButton:hover path {
	fill: #fff;
}

.jBox-TooltipDark.jBox-closeButton-box .jBox-closeButton:active path {
	fill: #b2b4b6;
}


.shoppic {
	border:1px;
	border-color: #CCC;
	border-style: solid;}

.kategorie {
	width: 100%;}
.kategorie1 {
	float: left;
	margin: 0px 0px 0px 0px;
	height: 22px;
	white-space:nowrap;}
.kategorie1-left {
	background-image: url(/img/e/basic/shop/kat_reiter_li_ia.gif);
	background-position: left top;
	background-repeat: no-repeat;
	height: 22px;
	float: left;
	padding: 0px 5px 0px 0px;
	white-space:nowrap;}
.kategorie1-left_a {
	background-image: url(/img/e/basic/shop/reiter_li_a.gif);
	background-position: left top;
	background-repeat: no-repeat;
	height: 22px;
	float: left;
	padding: 0px 5px 0px 0px;
	position: relative;
	top: -5px;
	white-space:nowrap;}
.kategorie1-middle {
	background-image: url(/img/e/basic/shop/kat_reiter_mi_ia.gif);
	background-repeat: repeat-x;
	height: 22px;
	float: left;
	padding: 2px 0px 0px 0px;
	white-space:nowrap;}
.kategorie1-middle_a {
	background-image: url(/img/e/basic/shop/reiter_mi_a.gif);
	background-position: top;
	background-repeat: repeat-x;
	height: 22px;
	float: left;
	position: relative;
	top: -5px;
	padding: 2px 0px 0px 0px;
	white-space:nowrap;}
.kategorie1-right {
	background-image: url(/img/e/basic/shop/kat_reiter_re_ia.gif);
	background-position: right top;
	background-repeat: no-repeat;
	height: 22px;
	float: left;
	padding: 0px 0px 0px 5px;
	white-space:nowrap;}
.kategorie1-right_a {
	background-image: url(/img/e/basic/shop/reiter_re_a.gif);
	background-position: right top;
	background-repeat: no-repeat;
	height: 22px;
	float: left;
	padding: 0px 0px 0px 5px;
	position: relative;
	top: -5px;
	white-space:nowrap;}

.uebersicht { /* Shop Katalog Liste */
	width: 100%;}
.uebersicht1 { /* Artikelblock */
	width: 100%;
	border: 1px solid #d1d1d1;
	margin: 0px 12px 6px 0px;}
.uebersicht2 { /* Titel */
	overflow: hidden;
	height: 20px;
	font-size:1em;
	text-align: left;
	font-weight: bold;
	line-height: 16px;
	padding: 4px 2px 2px 5px;
	margin: 1px 1px 1px 1px;
	background-color: #666;}
.uebersicht3 { /* Summary */
	overflow: hidden;
	height: 75px;
	font-size:.9em;
	text-align: left;
	line-height: 15px;
	padding: 2px 2px 2px 5px;
	margin: 1px 1px 1px 1px;}
.uebersicht4 { /* Preis + Warenkorb + Lupe */
	width: 100%;
	background-color: #FFFFFF;
	margin: 1px 1px 1px 1px;}
.uebersicht41 { /* Preis */
	color: #000;
	font-weight: bold;
	float: left;
	margin: 0px 0px 0px 5px;}
.uebersicht42 { /* Warenkorb + Lupe */
	float: right;
	margin: 3px 3px 0px 0px;}



.detail { /* Artikel Detail */
	width: 100%; }

.detail-pic { /* gro�es Bild Detailansicht */
float:right;
margin-left: 10px;
margin-bottom:5px;}
.detail-pic1 { /* gro�es Bild Detailansicht */
	border: 1px solid #666;
	margin: 0px 0px 0px 10px;
	padding: 1px;}
.detail-pic2 { /* Kleine Bilder Detailansicht */
	border: 1px solid #666;
	margin: 5px 0px 5px 0px;
	padding: 1px;}
.detail-vergroessern { /*Lupe zum vergr��ern */
	position: relative;
	top: -6px;
	left: -5px;
	cursor: pointer;}
.detail2 { /* Preis und "in den Warenkorb" */
	width: 100%;
	padding: 0px 0px 5px 5px;
	margin: 30px 0px 5px 0px;
   background-color: #FFF;
	border-bottom: 1px solid #666;
	border-left: 1px solid #666;}

.detail-backbasket { /* Zur�ck, Weiter */
	width: 100%;
	margin: 20px 0px 0px 0px;
	padding: 1px 5px 5px 5px;
	border-top: 1px solid #666;
	background-color: #666;}
.detail-backbasket1 {  /* Zur�ck */
	float: left;
	font-weight: bold;}
.detail-backbasket2 {  /* Weiter */
	float: right;
	font-weight: bold;}

.empfehlung { /*** Empfehlungsbox ***/
	width: 100%;
	margin: 10px 0px 0px 0px;
	padding: 20px 0px 0px 0px;}
.empfehlung1 { /*** Block ***/
	float: left;
	width: 210px;
	height: 60px;}
.empfehlung11 { /*** Bild ***/
	float: left;
	width: 60px;}
.empfehlung12 { /*** Text ***/
	float: left;
	width: 140px;
	margin: 0px 10px 10px 0px;
	font-size:.9em;
	font-weight: bold;}


.basket { /* Warenkorb-Tabelle */
	}
.basket1 { /* Tabellen�berschrift */
	color: #FFF;
	padding:2px 5px 2px 5px;
	vertical-align: middle;
	text-align:center;
    text-transform: uppercase;
	}
.basket2 { /* Tabelleninhalt */
	font-size:.9em;
	padding:5px;
	border-collapse:collapse;
	vertical-align: middle;
	text-align:center;
}
.basket2 a {text-decoration:none !important;}

.basketstep { /* Darstellung einzelne Schritte Bilder */
	margin: 0px 20px 0px 0px;}
.basketstep1 { /* Darstellung einzelne Schritte */
	border-bottom: 1px solid #666;
	margin: 0px 0px 20px 0px;
	border-collapse:collapse;}

.shopfooter { /* Weiter & Zur�ck Buttons */
	border-top: 1px solid #666;
	padding: 10px 0px 0px 0px;
	margin: 20px 0px 0px 0px;}
.shopfooter1 {
	float: left;}
.shopfooter2 {
	float: right;}

.col3er { /* 3er Spalte */
	width: 182px;
	float: left;}
.col3er-end { /* 3er Spalte Ende*/
	width: 182px;
	clear: both;}


/* Check-Seite */
.check1 { /* Rechnungsadresse */
	width: 280px;
	float: left;}
.td1-check {
	font-weight: bold;}
.td2-check {}
.check2 { /* Lieferadresse */
	width: 280px;}
.check3 {
	width: 100%;
	float: left;}
.check4 {
	width: 96%;
	float: left;
}

/* Warenkorb au�erhalb des Shops */
.basket-extern {}
.basket-extern1 {
	width: 100%;}
.basket-extern11 {
	float: left;
	width: 17px;
	text-align: right;}
.basket-extern12 {
	float: left;}
.basket-extern2 {
	font-size:.9em;
	line-height: 14px;}


.payment_radio {
	margin-right: 10px;
}



.button1 {
	-moz-transition:all .3s ease-out; -ms-transition: all .3s ease-out; -o-transition: all .3s ease-out; -webkit-transition: all .3s ease-out; transition:all .3s ease-out;
}
.button1 {display:inline-block; background:#fff; border:1px solid #000; padding:.85em .5em .85em 1.65em; text-decoration:none !important; color:#000 !important; -webkit-appearance:none;}
.button1:hover {background:#000; color:#fff !important;}


.input1, .input2, .select1 {width:100%; padding:0 4px; height:30px; border-radius:.25em; box-sizing:border-box; background:#fff;}

.entry input.button1 {min-width:200px;}
div.anschrift112 input.button1, .formbutton.button1 {border:1px solid #000; padding:.15em .5em; min-width:60px !important;}
.payment_block {border-bottom:2px solid #fff;}
.payment_block .checkbox label, .payment_block .radio label {padding-left:0;}
.payment_block img.pull-right {margin: 1em 0px 1em 1em;}

.promoCode .input2 {margin-left:15px; width:120px; min-width:120px;}
#content .anschrift h2, #content .anschrift h1 {line-height:1; padding:.6em 0 .35em;}

#basket_list_wrapper, .tabStyle {margin-bottom:1em; background:rgba(255,255,255,.95); box-shadow:3px 6px 10px rgba(0,0,0,.2); box-sizing:border-box;}

#basket_list_wrapper td, .tabStyle td {padding:1px 2px; text-align:center; border-right:1px solid rgba(0,0,0,.15);}
#basket_list_wrapper td:first-child, .tabStyle td:first-child {border-left:1px solid rgba(0,0,0,.15);}
#basket_list_wrapper tr:last-child td, .tabStyle tr:last-child td {border-bottom:1px solid rgba(0,0,0,.15);}

.basket_list {
	width: 100%; box-sizing:border-box;
}
.basket_list .icon {float:right; vertical-align:middle; margin:.25em .5em 0 0;}
.subTotal {position:relative;}
.subTotal .icon {position:absolute; right:0.1em;}
.basket_list .tHead, .tabStyle .tHead {background-color:#05243e; color:#fff;}
.basket_list .subHead, .tabStyle .subHead {line-height:2em}
td.prodItem {max-width:200px;}
td.first {max-width:60px;}
td.first img {max-width:100%;}

.confirmPage .anschrift112 {line-height: 30px;}
.cBox, .rgtButton {clear:both;}

.button1, .button2 {background-color:#05243e !important; color:#fff !important; border-color:#05243e !important;}
.button1:hover, .button2:hover {background-color:#44919e;}

/* 1/3 zeile */
.formblock-A { /* Formfeld Block */
	width: 33%;
	float: left;

	margin: 0px 0px 10px 0px;}
.formblock-A1 {  /* Formfeld Name */
	width: 100%;
	font-weight: bold;}
.formblock-A2 { /* Formfeld */
	width: 100%;}
.formblock-A3 { /* Formfeld Name Zusatz */
	width: 100%;
	color: #4f4f4f;
	line-height: 15px;
	border-left:1px solid #878787;
	padding: 0px 0px 0px 5px;
	background-image: url(/img/e/basic/htgr_hinweis.gif);
	background-repeat: repeat-y;}

/* 1 komplette zeile */
.formblock-B { /* Formfeld Block */
	width: 100%;
	margin: 0px 0px 0px 0px;}
.formblock-B1 {  /* Formfeld Name */
	width: 100%;
	font-weight: bold;}
.formblock-B2 { /* Formfeld */
	width: 100%;}
.formblock-B3 { /* Formfeld Name Zusatz */
	width: 100%;
	color: #4f4f4f;
	line-height: 15px;
	border-left:1px solid #878787;
	padding: 0px 0px 0px 5px;
	background-image: url(/img/e/basic/htgr_hinweis.gif);
	background-repeat: repeat-y;}


/* 2/3 zeile */
.formblock-C { /* Formfeld Block */
	width: 66%;
	float: left;
	margin: 0px 0px 10px 0px;}
.formblock-C1 {  /* Formfeld Name */
	width: 100%;
	font-weight: bold;}
.formblock-C2 { /* Formfeld */
	width: 100%;}
.formblock-C3 { /* Formfeld Name Zusatz */
	width: 100%;
	color: #4f4f4f;
	line-height: 15px;
	border-left:1px solid #878787;
	padding: 0px 0px 0px 5px;
	background-image: url(/img/e/basic/htgr_hinweis.gif);
	background-repeat: repeat-y;}

/* 1 halbe zeile */
.formblock-D { /* Formfeld Block */
	width: 50%;
	float: left;
	margin: 0px 0px 10px 0px;}
.formblock-D1 {  /* Formfeld Name */
	width: 100%;
	font-weight: bold;}
.formblock-D2 { /* Formfeld */
	width: 100%;}
.formblock-D3 { /* Formfeld Name Zusatz */
	width: 100%;
	color: #4f4f4f;
	line-height: 15px;
	border-left:1px solid #878787;
	padding: 0px 0px 0px 5px;
	background-image: url(/img/e/basic/htgr_hinweis.gif);
	background-repeat: repeat-y;}

.formblock-A2 input,
.formblock-B2 input,
.formblock-C2 input,
.formblock-D2 input {
	width: 95%;
}


@media all and (max-width:1024px) {
	.anschrift1, .anschrift2 {width:98%; padding:0; clear:both;}
	.promoCode .input2 {margin-left:0; margin-top:5px;}
	.cBox, .rgtButton {margin-right:1em;}
	.formblock-A,
	.formblock-B,
	.formblock-C,
	.formblock-D {
		width: 100%;
	}
	.formblock-A2 input,
	.formblock-B2 input,
	.formblock-C2 input,
	.formblock-D2 input {
		width: 98%;
	}
}

@media all and (max-width:768px) {
	#primary_block {display:table-cell;}
	#basket_list_wrapper, .tabStyle {position:relative; z-index:10; margin-top:0;}
	.anschrift {
		float: left;
		width: 100%; margin:1em 0;
	}
	.anschrift1, .anschrift2 {width:100%; padding: 1em 1em 1em 0; box-sizing:border-box;}
	.anschrift111 {text-align:right; padding-right:4%; width:31%;}
	#content .anschrift h2, #content .anschrift h1 {border-bottom:0; margin-bottom:1em;}
	#content .cBox h2, #content .cBox h1 {background-color:transparent; border-bottom:0;}
	.cBox {padding: 1em 1em 1em 0;}
	.payment_block {border-bottom:0;}
	.tHead .lastCol {width:125px;}
	.shopfooter2 {float:left; margin-top:.5em;}
}

@media all and (max-width:714px) {
	.anschrift {background-color:rgba(0,0,0,.6); color:#fff;}
	.anschrift1, .anschrift2 {width:100%; padding:1em;}
	#basket_list_wrapper, .tabStyle {font-size:.9em;}
	.tHead .lastCol {width:125px;}
	.cBox {padding:1em; background-color:rgba(0,0,0,.6); color:#fff;}
}
@media all and (max-width:680px) {
	body.fromTop #content-1 {top:3em;}
	.cBox, .rgtButton {margin-right:0;}
	.shopfooter1, .shopfooter2 {float:none; min-width:100%; clear:both; text-align:center;}
	.shopfooter1 input, .shopfooter2 input {padding:.85em 1.5em .85em 1.5em; min-width:280px;}
}
@media all and (max-width:320px) {
	.anschrift {font-size:.8em;}
	#basket_list_wrapper, .tabStyle {font-size:.8em;}
	.tHead .lastCol {width:105px;}
}



#inworten {
	border-left: 1px solid #999;
	border-top: 1px solid #999;
	border-bottom: 1px solid #FFF;
	border-right: 1px solid #FFF;
	background-color:#EEE;
	color: #000;
	font-weight: bold;
	padding:5px;
	font-size: 1.2em;
	text-align:center;
}

#accv-result-block {
	display: none;
	border: 2px solid #C00;
	background-color:#FFF;
	color: #C00;
	font-weight: bold;
	padding:5px;
	font-size: 14px;
	text-align:center;
	margin-bottom: 8px;
}

#accv-result-block.nok {
	background-color:#C00;
	border: 2px solid #C00;
	color: #FFF;
}

#accv-result-block.notp {
	border: 2px solid #999;
	color: #999;
}

#accv-result-block.ok {
	border: 1px solid #009900;
	color: #009900;
}


div.flashing, div.flashing div {
	background-color: #c00 !important ;
	color: #FFF !important;
}

#customer-login .container-fluid.bg-light-grey {padding-top:1em; padding-bottom:1em;}
.check-result {padding:.1em .25em .15em; border-radius:15px;}

.alert_div {
	border:3px solid #C00;
	background-color: #FFF;
	color: #C00;
	padding: 10px;
}

.alert_div p {
	font-size: 15px;
	color: #C00;
	margin-bottom: 6px;
}

#responsebox {
	margin: 20px 0 0;
    width: 520px;
}

#responsebox > div {
	font-weight: bold;
    padding: 7px 10px 5px;
}

#to-sepa {
	display: none;
	margin-left: 20px;
}

#to-old {
	margin-left: 20px;
}

#konto-blz {
	display: none;
}

#sepa_transfer_result {
	font-size: 10px;
	color:#060;
	position: relative;
	top: -7px;
	clear: both;
}

#last-box label {
	display: block;
	width: auto;
	height: 100%;
	cursor: pointer;
	padding: 3px;
}
#last-box label:hover {
	background-color: #EDD;
}

#check-table td {
	height: 100%;
}


.search {
	width: 468px;}
.search12 {
	width:240px;}

.check {
	border: 0px;
	height: 15px;}

.button_disabled {
	color: #BBB !important;
	cursor: default !important;
}

#accv_check_result {
	height: 30px;
	width: auto;
	padding: 1px 10px;
	background-image: url(/img/e/basic/shop/ampel.png);
	background-repeat:no-repeat;
	background-position: 2px -14px;
}
#accv_check_result.accv_off { background-position: 2px -14px; }
#accv_check_result.accv_red { background-position: 2px -65px; }
#accv_check_result.accv_yellow { background-position: 2px -114px; }
#accv_check_result.accv_green { background-position: 2px -164px; }

.toggle-basket {display:none; font-size:1.12em; height:56px;}
.toggle-basket .icon {font-size:1.35em;}
.basket_list .closeMe {display:none;}
