/**                    _                        _____           _     _    _
 *                    | |                      / ____|         | |   | |  | |
 *   ___ ___  _ __ ___| |_ _ __ ___  ___ ___  | |  __ _ __ ___ | |__ | |__| |
 *  / __/ _ \| '__/ _ \ __| '__/ _ \/ __/ __| | | |_ | '_ ` _ \| '_ \|  __  |
 * | (_| (_) | | |  __/ |_| | |  __/\__ \__ \ | |__| | | | | | | |_) | |  | |
 *  \___\___/|_|  \___|\__|_|  \___||___/___/  \_____|_| |_| |_|_.__/|_|  |_|
 *
 *	Values for Changes = [C]reated / [M]odified / [H]otfix / [D]eleted (outdated/depracted)
 *
 *   CHANGES	DEVELOPER			COMPANY		DATE		COMMENT
 *  ------------------------------------------------------------------------------------------------------------------------
 *  	C		Thomas Christmann	coretress	21.08.2014	START
 *  	M		Thomas Christmann	coretress	16.09.2014	added new box-wrapper, cleaning up css
 *  ------------------------------------------------------------------------------------------------------------------------
 */

html, body {
	height: 100%;
	width: 100%;
	font-family: Arial, Helvetica, 'Helvetica Neue', 'sans-serif';
	color: #424242;
}

body {
	background: url("../img/bg_layout.jpg") no-repeat center center fixed;
	background-size: cover;
	margin:0;
	padding:0;
}

#header img {
	cursor: pointer;
}

label {
	margin-bottom: 15px;
}

label > input {
	margin-right: 6px !important;
}

a:focus, select:focus {
	outline: none;
}

div + a:focus, div + a:hover {
	text-decoration: none;
}

h1 {
	margin-bottom: 30px;
}

td, th {
	vertical-align: top;
	padding-right: 10px;
}

table.paddingCell10 td {
	padding: 10px;
}

tr.border-top {
	border-top: 2px solid #498441;
}

th.alignRight, td.alignRight {
	text-align: right;
	padding-right: 20px;
}

/*
 * xtc-copyright
 */

div.copyright {
	visibility: hidden;
	display: none;
}


/* ==========================================================================
nav
========================================================================== */



/*
 * font-colors
 */

.font-color-w, #footer, #footer a {
	/* white */
	color: #ffffff;
}

.font-color-b {
	/* black */
	color: #3a3a3a;
}

.font-color-p, .purpleSmall {
	/* purple */
	color: #9c0471 !important;
}

.font-color-lg {
	/* light-gray */
	color: #efefef;
}

.font-color-dg {
	/* dark-gray */
	color: #424242;
}

.font-color-s {
	/* yellow green */
	color: #8FBD44;
}

/*
 * language box
 */

#box-language {
	position: relative;

}

ul#languages {
	background-color: #FFF;
	list-style: none;
	position: absolute;
	/* top: -16px; */
	right: 14px;
	z-index: 99;
	margin: 0px;
	padding: 0px;
}

ul#languages li {
	float: left;
	padding: 9px 0px 9px 5px;
}

ul#languages li:first-child {
	padding-left: 10px;
}


/*
 * background-colors
 */

.bg-color-a {
	/* light green golden rod */
	background-color: #CFE1AF;
}

.bg-color-b {
	/* yellow green */
	background-color: #8FBD44;
}

.bg-color-c {
	/* forest green */
	background-color: #00843F;
}

.bg-color-d {
	/* orange */
	background-color: #FF7900;
}

.bg-color-e {
	/* dark magenta */
	background-color: #990066;
}

.bg-color-f, ul.nav-stacked li.nav-header, #footer, #searchfield, #top-navigation ul li, .product-detail-nav ul li, div.product-box div.header, div.product-box-detail div.header-detail,
input[type="submit"], input[type="button"], button, .ui-widget-header, a.button, div[class*="highlightBox-success"] {
	/* gradient lime green to forest green (top to bottom)  */
	background-color: #8FBD44; /* Old browsers */
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #8FBD44), color-stop(1, #008440));
	background-image: -o-linear-gradient(bottom, #8FBD44 0%, #008440 100%);
	background-image: -moz-linear-gradient(bottom, #8FBD44 0%, #008440 100%);
	background-image: -webkit-linear-gradient(top, #8FBD44 0%, #008440 100%);
	background-image: -ms-linear-gradient(bottom, #8FBD44 0%, #008440 100%);
	background-image: linear-gradient(to bottom, #8FBD44 0%, #008440 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8FBD44', endColorstr='#008440', GradientType=0 ); /* IE6-9 */
}

.bg-color-f2, div.tiledNav {
	/* gradient lime green to forest green (left to right) */
	background-color: #8FBD44; /* Old browsers */
	background-image: -webkit-gradient(linear, right top, left top, color-stop(0, #8FBD44), color-stop(1, #008440));
	background-image: -o-linear-gradient(left, #8FBD44 0%, #008440 100%);
	background-image: -moz-linear-gradient(left, #8FBD44 0%, #008440 100%);
	background-image: -webkit-linear-gradient(left, #8FBD44 0%, #008440 100%);
	background-image: -ms-linear-gradient(left, #8FBD44 0%, #008440 100%);
	background-image: linear-gradient(to left, #8FBD44 0%, #008440 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#008440', endColorstr='#8FBD44', GradientType=1 ); /* IE6-9 */
}

.bg-color-g, ul.nav-stacked li:not(.nav-header) {
	/* gradient left light lime green to white and vice versa */
	background-color: #cfe1af; /* Old browsers */
	background: -moz-linear-gradient(left,  #cfe1af 0%, #f7faf1 50%, #cfe1af 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, right top, color-stop(0%,#cfe1af), color-stop(50%,#f7faf1), color-stop(100%,#cfe1af)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(left,  #cfe1af 0%,#f7faf1 50%,#cfe1af 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(left,  #cfe1af 0%,#f7faf1 50%,#cfe1af 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(left,  #cfe1af 0%,#f7faf1 50%,#cfe1af 100%); /* IE10+ */
	background: linear-gradient(to right,  #cfe1af 0%,#f7faf1 50%,#cfe1af 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cfe1af', endColorstr='#f7faf1', GradientType=1 ); /* IE6-9 */
}

.bg-color-h {
	/* yellow */
	background-color: #FFBF00;
}

.bg-color-i {
	/* light-gray */
	background-color: #aaaaaa !important;
}

.bg-color-j {
	/* lighter-gray */
	background-color: #cccccc !important;
}


#header {
	/*  margin-bottom: -15px; */
}

#header div.tiny {
	width: 100%;
	display: none;
	padding-left: 10px;
	padding-right: 15px;
}

#header div.tiny img.logo {
	width: 20%;
	top: 10px;
	left: 10px;
	position: relative;
	padding-bottom: 10px;
}

#header div.tiny .navbar-toggle {
	background-color: #8FBD44;
	margin-right: 0px;
	margin-bottom: 0px;
}

#second-navigation {
	display: none;
}

#top-navigation {
	position: relative;
	witdh: 100%;
}

#top-navigation ul {
	width: 100%;
	margin: 0px;
	padding: 0px;
	list-style: none;
	display: table;
	height: 45px;
	overflow: hidden;
}

#top-navigation ul li {
	display: table-cell;
	width: auto;
	text-align: center;
	border: none;
	white-space: nowrap;
	overflow: hidden;
	/*border-right: 1px solid #008440;*/

}

#top-navigation ul li.border {
	border-right: 1px solid #008440;
}



#top-navigation ul li a {
	padding: 10px 15px;
	color: #ffffff;
	text-decoration: none;
	line-height: 22px;
	font-size: 12px;
	display: inline-block;
	font-size: 16px;
}


/*
#top-navigation ul li, #top-navigation ul li a {
	color: #ffffff;
	text-decoration: none;
	line-height: 22px;
	font-size: 12px;
	display: block;
	height: 45px;
}

#top-navigation ul li {
	border: none;
	border-right: 1px solid #008440;
	float: left;
	list-style: none;
	padding: 10px 0px 10px 10px;
	white-space: nowrap;
}

/*
#top-navigation ul li.one {
	width: 17.5%;
}

#top-navigation ul li.two {
	width: 20%;
}

#top-navigation ul li.three {
	width: 11%;
}

#top-navigation ul li.four {
	width: 9.5%;
}

#top-navigation ul li.five {
	width: 8%;
}

#top-navigation ul li.six {
	width: 34%;
}
*/

.cachet {
	background: transparent !important;
	text-align: center;
}

.cachet img {
	width: 100%;
    height: initial;
}

#second-navigation .cachet {
	margin: 15px 0 196px 0px !important;
}

#snClone-inner ul li.cachet {
	margin: 15px 0 89px 0px !important
}

div.products-sort-pages {
	margin: 20px 15px 0 0 ;
	padding:0px;
	width: auto;
}

div.products-sort-pages div.products-sort label {
	display: block;
	margin: 0px;
}

div.navigation-pages {
	margin-top: 17px;
	min-height: 25px;
}

div#NAVIGATION  {
	margin-top: 5px;
}

div#NAVIGATION div.navigation-pages a {
	padding: 3px 6px;
}

div.navigation-pages a,
div#NAVIGATION div.navigation-pages a {
	color: #00843F;
	padding: 5px 10px 5px 10px;
	border: 1px solid #cdcdcd;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

div.navigation-pages .navigation_selected,
div#NAVIGATION div.navigation-pages .navigation_selected {
	border: 1px solid #00843F;
}

div.navigation-pages a:hover,
div#NAVIGATION div.navigation-pages a:hover {
	border: 1px solid #FF7900;
	text-decoration: none;
}

#header {
	overflow: hidden;
	height: 179px;
}

#header img.main {

}

#content-wrapper {
	background-color: #ffffff;
	padding-left: 15px;
	padding-right: 15px;
	margin: 0px auto;
}



#content {
	z-index: 10;
	float: left;
	position: relative;
	margin-left: 15px;
	margin-right: 15px;

	/* margin-top: -30px; */
}

div.index-text {
	/* padding: 15px; */
}

#main {
/* 	float: left;
	padding: 0 0 0 30px;
	width: 100%; */
}

#second-navigation {
	float: left;
	padding-left: 15px;
}

#footer {
	width: calc(100% + 30px);
	width: -webkit-calc(100% + 30px);
	width: -moz-calc(100% + 30px);
	margin: 20px 0 -15px -15px;
	padding: 20px;
}

#footer-navigation {
	width: 60%;
	margin: 0 auto;
}

#footer-navigation span {
/*	font-family: 'FrizQuadrataSB-Regular', 'Averia Libre', cursive; */
	font-size: 18px;
	display: block;
}

#footer-navigation ul {
	list-style: none;
	padding: 0;
}

#footer-navigation ul li {
	border-bottom: 1px dotted #ffffff;
	font-size: 12px;
	line-height: 40px;
}



.greenLine {
	width: 60px;
	position: relative;
	top: 11px;
	left: 13px;
	display: inline-block;
	height: 1px;
	margin-right: 13px;
	/* same as .bg-color-b */
	border-top: 1px solid #8FBD44;
}

div.copy-right {
	text-align: right;
	margin: 20px 15px 5px 0;
}

.show-xs {
	display: none !important;
}
.show-lg {
	display: none !important;
}
.show-inline-lg {
	display: none !important;
}

/*
 * spaces
 */

.mTop15 {
	margin-top: 15px !important;
}

.mLeft15 {
	margin-left: 15px !important;
}

/*
 * inputs / form-elements
 */

form div.row {
	margin-bottom: 10px;
}

input[type="text"], input[type="password"], select {
	padding: 2px;
	font-weight: normal;
}

input[type="text"]:focus, input[type="password"]:focus {
	/* same as .bg-color-d */
	outline: 1px solid #FF7900;
}


textarea {
	/* same as .bg-color-g */
	padding: 2px;
}


textarea:focus {
	/* same as .bg-color-g */
	outline: none;
}


/*
input[type="submit"], input[type="button"], button, a.button {
	border-radius: 8px;
	border-top: 2px solid #008440;
	border-left: 2px solid #008440;
	border-bottom: 2px solid #000000;
	border-right: 2px solid #000000;
	padding: 5px;
	color: #ffffff;
	outline: none;
	margin: 5px 0px;
	display: inline-block;
}
input[type="submit"]:active, input[type="button"]:active, button:active, a.button:active {
	border-top: 2px solid #000000;
	border-left: 2px solid #000000;
	border-bottom: 2px solid #008440;
	border-right: 2px solid #008440;
}
*/

button a {
	color: white;
}

.error {
	background-color: #F5A285 !important;
}

span.notification {
	font-size: 12px;
	margin: 3px 0px 8px 10px;
}

/*
 * reviews
 */

div.reviewList-wrapper {
	width: 100%;
	height: auto;
	/* border-bottom: 1px solid #eee; */
	font-family: 'Arial';
	border-spacing: 10px;
	text-align: left;
	padding: 15px;
	margin-bottom: 5px;
}

table.reviewlist tr:first-child {
	border-bottom: 1px solid #8FBD44;
}

table.reviewlist tr:last-child {
	border-top: 1px solid #8FBD44;
	font-style: italic;
}

table.reviewlist td.rating-text {
	padding: 8px 0;
}

table.no-table-border td {
	border-top: none !important;
}

/*
table.reviewlist tr:first-child {
	font-size: 13px;
	padding: 8px 20px;
	margin: 30px 0 0 0;
	color: #FFF;
	font-family: 'Arial';
	background-color: #8FBD44;
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #8FBD44), color-stop(1, #008440));
	background-image: -o-linear-gradient(bottom, #8FBD44 0%, #008440 100%);
	background-image: -moz-linear-gradient(bottom, #8FBD44 0%, #008440 100%);
	background-image: -webkit-linear-gradient(top, #8FBD44 0%, #008440 100%);
	background-image: -ms-linear-gradient(bottom, #8FBD44 0%, #008440 100%);
	background-image: linear-gradient(to bottom, #8FBD44 0%, #008440 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8FBD44', endColorstr='#008440', GradientType=0 );
}
*/

table.reviewlist tr td:first-child {
	width: 40px;
}

div#NAVIGATION div.COUNT {
	display: none;
}

/*
 * Searchfield / XTC-Search-Form
 */

#searchfield {
	width: 100%;
	height: 45px;
	margin: 0 0 15px 0;
}

#searchfield input[type="text"] {
	margin: 2px;
	width: 98%; /* old-browser fallback and safari hack */
	width: calc(100% - 45px);
	width: -webkit-calc(100% - 45px);
	width: -moz-calc(100% - 45px);
	height: 41px;
	float: left;
	display: block;
	border: none !important;
	padding: 10px;
}

#searchfield input[type="text"]:focus {
	outline: none;
}

#searchfield button[type="submit"] {
	float: right;
	width: 41px;
	background-color: transparent;
	border: none;
	border-radius: 0;
	height: 41px;
	padding: 0;
	margin: -43px 2px 0 0;
	display: block;
}

#searchfield button[type="submit"] > img {
	width: 100%;
	height: 100%;
	display: block;
}

#search {
	float: left;
}

#search ul {
	list-style: none;
}

/*
 * second-navigation
 */

#second-navigation * {
	z-index: 100;
}

ul.nav-stacked li.nav-header, .nav > li > a {
	line-height: 26px;
	font-size: 12px;
	padding: 0 0 0 10px;
}

ul.nav-stacked li.nav-header, ul.nav-stacked li.nav-header a {
	color: #ffffff;
	display: block;
	padding-right: 3px;
}

ul.nav-stacked li.nav-header {
	font-weight: bolder;
}

ul.nav-stacked li.nav-header a {
	font-weight: normal;
	padding-left: 0;
}

#second-navigation a.cart-button {
	float: none;
	width: 100%;
	position: relative;
}

#second-navigation a.cart-button span {
	position: absolute;
	top: 12px;
	left: 21px;
	font-size: 11px;
	text-align: center;
	width: 22px;
}



.nav-stacked>li+li {
	margin-top: 1px;
	max-height: 26px;
	height: 26px;
}

.nav-stacked>li+li.inheritHeight {
	max-height: none;
	height: inherit;
}

.nav-stacked>li+li.inheritHeight div {
	/*padding: 15px;*/
}

.nav-stacked>li+li.inheritHeight div img {
	display: block;
	margin: auto;
}

.nav > li > a {
	color: #424242;
}

.nav > li > a:hover, .nav > li > a:focus {
	text-decoration: none;
	background-color: transparent;
}

.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
	color: transparent;
	background-color: transparent;
}

.nav-stacked li ul {
	display: none;
}

div.tiledNav {
	/* display: none; don't work with fucking ie9, so we had to do this inline */
	position: relative;
	top: -26px;
	left: 205px;
/*	margin-left: 1px; */
	border-left: 1px solid white;
	padding-bottom: 10px;
	width: 200%;
	/* left: 204px; das sieht schlecht aus */


}

div.tiledNav.navClone {
	position: absolute;
	top: 0px;
	margin-left: 0;
	min-height: 100%;
	width: 100%;
	display: none;

}

div.tiledNav ul {
	display: block;
	list-style: none;
	color: #424242;
	padding: 0;
	width: 100%;

}

div.tiledNav li {
	background-image: none !important;
}

#snClone-inner ul.nav-stacked li.nav-header, #snClone-inner .nav > li > a,
#snClone-inner .nav-stacked > li {
	height: 50px;
	max-height: 50px;
	line-height: 50px;
}

#snClone-inner .nav-stacked>li+li.inheritHeight {
	max-height: none;
	height: inherit;
	line-height: 20px;
}

#snClone-inner div.tiledNav li:not(:last-child) {
	border-bottom: 1px solid white;
}

div.tiledNav ul li:not(.nav-header) {
	padding-left: 15px;
	width: 50%;
	float: left;
}

div.dolly ul li:not(.nav-header) {
	width: 100%;
}

div.tiledNav li, div.tiledNav li a {
	color: #ffffff;
	font-size: 12px;
	background-image: none;
	background-color: transparent;
	text-decoration: none;
	padding-right: 10px;
}
/*
#snClone-inner li:not(:last-child) {
	border-bottom: 1px solid white;
}*/

#snClone-inner li, #snClone-inner li a {
	font-size: 14px;
}

div.tiledNav li a {
	display: block;
}


ul.category-subtree {
	margin: 0px !important;
	padding: 0px !important;
}

li.grandson {
	width: 100% !important;
	text-align: left;
}

li.grandsonLeft15 {
	margin-left: 15px !important;
	width: calc(50% - 15px) !important;
	width: -webkit-calc(50% - 15px) !important;
	width: -moz-calc(50% - 15px) !important;
}

ul.nav-stacked li a div.stripe {
	height: 100%;
	width: 5px;
	float: right;
}

#snClone {
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1000;
	height: 100%;
	background-color: rgba(255,255,255,0.8);
	display: none;
}

#snClone img.closer {
	position: absolute;
	right: 0;
	margin: 10px;
	z-index: 200;
	zoom: 1.5;
}

#snClone-inner {
	position: absolute;
	height: 100%;
	width: 100%;
	max-width: 380px;
	/*padding-right: 10px;*/
	overflow-x: hidden;
	overflow-y: auto;
	z-index: 100;
}

#snClone-inner ul {
	width: 100%;
	background-color: rgba(255,255,255,0.8);
}

#snClone-inner li a div.stripe {
	font-size: 24px;
	text-indent: 14px;
	color: white;
}

html.noscroll, body.noscroll {
	overflow: hidden !important;
}

/*
 * Login-Box
 */

.loginbox label, .loginbox input {
	width: 100%;
}

div.loginbox-fp {
	border: none !important;
	margin-top: -15px !important;
}

div.loginbox-fp ul {
	margin: 0px;
}

div.loginbox-fp span.headline {
	padding: 5px 0;
}

div.loginbox-fp form {
	padding: 10px;
}

.loginbox-logged-in {
	padding:0px;
}


.loginbox-logged-in a:link,
.loginbox-logged-in a:active,
.loginbox-logged-in a:hover,
.loginbox-logged-in a:visited {
	color: #000;
}

/*
 * special sites
 */

div.order_success {

}

div.order_success a {
	color: #9c0471;
}

div.order_success ul {
	list-style: none;
	padding:0;
	margin:0;
}

div.order_success li {
	padding-left: 1em;
	text-indent: -.7em;
	padding-top: 10px;
}

div.order_success li:before {
	content: "■";
	color: #8FBD44;
	padding-right: 1em;
}

/*
 * box-wrapper
 */

div[class*="box-wrapper"] {
	float: left;
	display: block;
}

div[class*="box-wrapper"] div.row {
	margin-left: 0;
	margin-right: 0;
}

div[class*="box-wrapper"] h1:first-child {
	margin-top: 0px;
}

div[class*="box-wrapper"] .wrapper13 {
	width: 30%;
	float: left;
}

div[class*="box-wrapper"] .wrapper23 {
	width: 60%;
	float: left;
}

div[class*="box-wrapper"] .wrapper33 {
	width: 100%;
	float: left;
}


div[class*="highlightBox"] {
	border: 1px solid;
	/* margin: 15px 10px; */
	/* padding:15px 25px 15px 50px; */
	background-repeat: no-repeat;
	background-position: 10px center;
}

div[class*="highlightBox"] span {
	display: block;
	margin-right: 15px;
}


div.highlightBox-warning, div.highlightBox-success, div.highlightBox-error, div.highlightBox-validation, div.highlightBox-info {
	border: 1px solid;
	margin-top: 5px;
	margin-bottom: 10px;
	margin-right: 2px;
	padding:15px 25px 15px 50px;
	background-repeat: no-repeat;
	background-position: 10px center;
}


div.highlightBox-info {
	color: #00529B;
	background-color: #BDE5F8;
	background-image: url('../img/info.png');
}

div.highlightBox-success {
	color: #4F8A10;
	background-color: #DFF2BF;
	background-image:url('../img/success.png');
}

div.highlightBox-warning {
	color: #9F6000;
	background-color: #FEEFB3;
	background-image: url('../img/warning.png');
}

div.highlightBox-error {
	color: #D8000C;
	background-color: #FFBABA;
	background-image: url('../img/error.png');
}

div.highlightBox-validation {
	color: #D63301;
	background-color: #FFCCBA;
	background-image: url('../img/validation.png');
}



/*
div[class*="highlightBox"] {
	border: 1px solid #008440;
	border-radius: 15px;
	border-width: 4px;
	border-style: solid;
	padding: 20px 30px 20px 20px;
	font-weight: bolder;
}

div[class*="highlightBox"] span.headline {
	color: #424242;
	font-weight: bolder;
	display: inline-block;
	top: -30px;
	position: relative;
	background-color: #FFFFFF;
	padding: 0px 5px;
}

div[class*="highlightBox"] span.headline + div {
	margin-top: -10px;
}

div[class*="highlightBox"] div[class*="icon-"] {
	position: absolute;
	margin-top: -26px;
	margin-left: -27px;
	width: 16px;
	height: 16px;
	float: left;
}

div[class*="left-highlightBox"] {
	margin: 0px 10px 0px 0px !important;
}

div[class*="right-highlightBox"] {
	margin: 0px 0px 0px 10px !important;
}

div[class*="highlightBox-info"]
, div[class*="highlightBox-question"] {
	color: #FFFFFF;
	border: none;
	background-color: #65b0ce;
}

div[class*="highlightBox-warning"] {
	color: #FFFFFF;
	color: #000;
	background-color: #f7e05c;
}

div[class*="highlightBox-error"] {
	color: #FFFFFF;
	border: none;
	background-color: #9c0471;
}

div[class*="highlightBox-success"] {
	color: #FFFFFF;
	border: none;
	background-color: #FF7900;
}
*/

div.icon-error,
div.icon-success,
div.icon-question,
div.icon-info,
div.icon-warning  {
	display: none;
}


span.subline {
	display: inline-block;
	padding: 30px 0px;
	/* same as .font-color-p */
	color: #9c0471 !important;
}

span.subline + div {
	margin-top: -10px;
}

div.horizontal-line {
	margin: 20px 0px;
	width: calc(100% + 15px);
	width: -webkit-calc(100% + 15px);
	width: -moz-calc(100% + 15px);
	height: 2px;
	float: left;
	display: block;
	background-color: #afceae; /* Old browsers */
}

div.horizontal-line + div[class*="box-wrapper"] {
	margin-top: 0px;
}

.h-line-no-margin-top {
	margin-top: 0px !important;
}

.h-line-no-margin-bottom {
	margin-bottom: 0px !important;
}

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

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


/*
 * product-box
 */
div.product-box {
	display: block;
	width: 100%;
	height: 466px;
	border: 1px solid #8FBD44;
	/*font-family: 'FrutigerCondensed-Regular', 'Arial';*/

}

div.product-box div.header {
	height: 45px;
	width: 100%;
	display: flex;
	align-items: center;
}

div.product-box div.header div ,
div.product-box div.header h1 ,
div.product-box div.header h3 {
/* 	font-family: 'FrizQuadrataSB-Regular', 'Averia Libre', cursive; */
	font-size: 18px;
	color: #ffffff;
	padding: 0 5px 5px;
}


div.product-box div.image-container {
	position: relative;
	display: block;
	height: 225px;
	overflow: hidden;
}

div.product-box div.image-container div.image-list-overlay {
	background: transparent url('../img/image_container_bg.png') no-repeat top left;
	height: 100%;
	width: 100%;
}

div.box-image-background div.box-background-image-overlay {
	position: absolute;
	background: transparent url('../img/image_container_bg.png') no-repeat top left;
	height: 100%;
	width: 100%;
	z-index: 997;
}

/* div.product-box div.image-container div.image-list-overlay div.image-box-background {
	background: transparent url('../img/image_container_bg.png') no-repeat top left;
	height: 100%;
	width: 100%;
} */

div.product-box div.image-container img.image-product {
	position: relative;
	z-index: 998;
	padding: 8px 10px 0 0;
	height: 215px;
}

div.product-box div.image-container img.img-product-background {
	position: absolute;
	z-index: 0;
	margin: 0px;
	padding: 0px;
	width: 100%;

}

div.product-box div.image-container img.icon-promotion {
	position: absolute;
	right: 90px;
	bottom: 15px;
	z-index: 999;
	float: right;
	width: 65px;
}

div.product-box div.image-container div.slave-icon-container {
	position: absolute;
	margin: auto;
	right: 90px;
	bottom: 15px;
	z-index: 999;
}

div.product-box div.image-container div.slave-icon-container img.slave-icon {
	width: 65px;
	float: right;
	z-index: 999;
}


div.product-box .description-short {
	font-size: 13px !important;
	height: 115px;
	overflow: hidden;
}

div.product-box .description-short {
	padding: 0 15px 0;
}

div.product-box .description-short a:link,
div.product-box .description-short a:active,
div.product-box .description-short a:visited {
	color: #00843F;
	font-weight: bold;
}

div.product-box .description-short a:hover {
	color: #FF7900;
}


div.product-box .description-short p {
	padding: 0px;
	margin: 0px;
}

div.product-box div.footer {
	color: #424242;
	background-color: #efefef;
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #efefef), color-stop(1, #ffffff));
	background-image: -o-linear-gradient(bottom, #efefef 0%, #ffffff 100%);
	background-image: -moz-linear-gradient(bottom, #efefef 0%, #ffffff 100%);
	background-image: -webkit-linear-gradient(top, #efefef 0%, #ffffff 100%);
	background-image: -ms-linear-gradient(bottom, #efefef 0%, #ffffff 100%);
	background-image: linear-gradient(to bottom, #efefef 0%, #ffffff 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#efefef', endColorstr='#ffffff', GradientType=0 );
	height: 75px;
}

div.product-box div.footer a {
	margin: 11px 13px 0 0;
}

div.product-box div.footer div.price {
	margin: 8px 0 0 15px;
	font-size: 20px;
	font-weight: bold;
	text-wrap: normal;
}


span.price-old,
span.price-new {
	font-size: 16px;
}

span.price-old {
	color: #990066;
	text-decoration: line-through;
}


div.product-box div.footer div.meta-info {
	margin: 0 0 0 15px;
	font-size: 10px;
	text-wrap: normal;
}

div.product-box div.footer div.stock-info {
	margin-top: 45px;
}

div.product-box div.footer div.stock-info span{
	font-size: 10px;
	margin-left: -3px;
}



/*
 * product-details
 */

div.product-box-detail {
	display: block;
	width: 100%;
	/* height: 437px; */
	height: auto;
	border: 1px solid #8FBD44;
	font-family: 'Arial';
}

div.product-box-detail div.header-detail {
	height: 75px;
}

div.product-box-detail div.footer-detail {
	height: auto;
}

div.manufacturers-address {
	font-size: 12px;
	padding-top: 2px;
	padding-bottom: 2px;
}

div.product-box-detail div.footer-detail div.stock-info > span,
div.product-box-detail div.footer-detail div.meta-info > div {
	font-size: 12px;
	text-align: left;
}

div.model-info {
	font-size: 12px;
	text-align: left;
}

div.model-info > span {
	/* color: #00843F; */
	font-weight: bold;
}

.legal-info {
	margin: 0px !important;
}



div.product-box-detail div.footer-detail div.meta-info div.meta-info-base-price {
	padding-top: 4px;
}

div.product-box-detail div.footer-detail div.price span.price-old,
div.product-box-detail div.footer-detail div.price span.price-new {
	font-size: 18px;
}


div.product-box-detail div.header-detail {
	width: 100%;
	display: table;
}

div.product-box-detail div.header-detail div ,
div.product-box-detail div.header-detail h1 ,
div.product-box-detail div.header-detail h3 {
/*	font-family: 'FrizQuadrataSB-Regular', 'Averia Libre', cursive; */
	font-size: 22px;
	color: #ffffff;
	vertical-align: middle;
	padding-left: 5px;
	padding-right: 5px
	width: 100%;
	display: table-cell;
}

div.product-box-detail div.image-container-detail {
	/* height: 315px; */
	height: auto;
	overflow: hidden;
}

div.product-box-detail div.image-container-detail div.pictogram-container {
	padding: 15px 0 15px 10px;
	float: left;
	height: auto;
	min-height: 280px;
	overflow: hidden;
}

div.product-box-detail div.image-container-detail div.pictogram-container img.pictogram {
	width: 55px;
	margin-bottom: 5px;
	display: block;
}


div.product-box-detail div.image-container-detail img.image-product-detail {
	padding: 15px 0;
}


div.product-box-detail div.footer-detail {
	color: #424242;
	background-color: #efefef;
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #efefef), color-stop(1, #ffffff));
	background-image: -o-linear-gradient(bottom, #efefef 0%, #ffffff 100%);
	background-image: -moz-linear-gradient(bottom, #efefef 0%, #ffffff 100%);
	background-image: -webkit-linear-gradient(top, #efefef 0%, #ffffff 100%);
	background-image: -ms-linear-gradient(bottom, #efefef 0%, #ffffff 100%);
	background-image: linear-gradient(to bottom, #efefef 0%, #ffffff 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#efefef', endColorstr='#ffffff', GradientType=0 );
}

div.product-box-detail div.footer-detail div.stock-info {
	margin-top: 20px;
	margin-left: 15px;
	font-size: 10px;
}

@-moz-document url-prefix() {
	div.product-box-detail div.footer-detail div.stock-info {
		margin-top: 25px;
		margin-left: 15px;
		font-size: 10px;
	}
}

div.product-box-detail div.footer-detail div.price {
	margin: 12px 0 0 0;
	font-size: 20px;
	font-weight: bold;
	text-align: left;
}

div.product-box-detail div.footer-detail div.meta-info {
	margin: -5px 0px 0 0;
}

/*
div.product-box-detail div.footer-detail div.pull-right {
	text-align: left;
}







div.product-box-detail div.footer-detail div.meta-info {
	margin: -5px 10px;
	font-size: 10px;
}
*/


div.product-description-long {
	/*font-family: 'FrutigerCondensed-Regular', 'Arial';*/
}

div.product-description-long  h2 {
/*	font-family: 'FrizQuadrataSB-Regular', 'Averia Libre', cursive; */
}

#productlist img {
	float: left;
}

#productlist div.product {
	width: 100%;
	float: left;
	margin-bottom: 50px;
}

#productlist p.add-to-cart {
	float: left;
	margin-left: 20px;
}







div.slave-info-wrapper div.slave-info-content {
	width: 100%;
	height: auto;
	border: 1px solid #8FBD44;
	font-family: 'Arial';
	border-spacing: 10px;
	text-align: center;
	padding: 5px;
}

div.slave-info-wrapper div.slave-info-content > a:first-child {
	display: none;
}


div.slave-info-wrapper p.headline {
	font-size: 13px;
	padding: 8px 20px;
	margin: 30px 0 0 0;
	color: #FFF;
	font-family: 'Arial';
	background-color: #8FBD44; /* Old browsers */
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #8FBD44), color-stop(1, #008440));
	background-image: -o-linear-gradient(bottom, #8FBD44 0%, #008440 100%);
	background-image: -moz-linear-gradient(bottom, #8FBD44 0%, #008440 100%);
	background-image: -webkit-linear-gradient(top, #8FBD44 0%, #008440 100%);
	background-image: -ms-linear-gradient(bottom, #8FBD44 0%, #008440 100%);
	background-image: linear-gradient(to bottom, #8FBD44 0%, #008440 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8FBD44', endColorstr='#008440', GradientType=0 ); /* IE6-9 */
}


/* ==========================================================================
STAFFELPREISE
========================================================================== */

div.price-table-wrapper p.headline {
	font-size: 13px;
	padding: 8px 20px;
	margin: 30px 0 0 0;
	color: #FFF;
	font-family: 'Arial';
	background-color: #8FBD44;
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #8FBD44), color-stop(1, #008440));
	background-image: -o-linear-gradient(bottom, #8FBD44 0%, #008440 100%);
	background-image: -moz-linear-gradient(bottom, #8FBD44 0%, #008440 100%);
	background-image: -webkit-linear-gradient(top, #8FBD44 0%, #008440 100%);
	background-image: -ms-linear-gradient(bottom, #8FBD44 0%, #008440 100%);
	background-image: linear-gradient(to bottom, #8FBD44 0%, #008440 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8FBD44', endColorstr='#008440', GradientType=0 ); /* IE6-9 */
}


.graduated-price-table {
	width: 100%;
	height: auto;
	border: 1px solid #8FBD44;
}

.graduated-price-table tbody tr:first-child {
	display: none;
}


/*
#product-graduated-price-table tr:nth-child(even) {background: rgba(207,225,175,0.25);}
#product-graduated-price-table tr:nth-child(odd) {background: #FFF;}

#product-graduated-price-table tr td:last-child,
#product-graduated-price-table tr th:last-child {
	display: none;
}

table#product-graduated-price-table tbody tr:first-child {
	display: none;
}

#product-graduated-price-table {
	width: 100%;
	height: auto;
	border: 1px solid #8FBD44;
	font-family: 'Arial';
	border-spacing: 10px;
	border-collapse: separate;
}


*/


form[name*="product"] {
	margin-top: 15px;
}
form[name*="product"] input[type="text"] {
	width: 40px;
	text-align:center;
}
/*
 * cart button
 */

div.order_success a {
	width:  200px;
	text-align: center;
}

a.cart-button {
	width: 140px;
	float: right;
	display: inline-block;
	color: #ffffff;
	cursor: pointer;
	font-weight: bold;
	text-decoration: none;
	padding: 6px 10px;
	/* same as .bg-color-d */
	background-color: #FF7900;

}

#cart-button-xs {
	position: absolute;
	left: calc(36.5%);
	top: 15px;
	height: 10px;
}


.cart-button-xs div.show-cart-xs {
	position: relative;
	background: url("../img/buttons/cart_37x33.png") no-repeat;
/*
	height: 30px;
	padding-left: 44px;
*/
	height: 34px;
	padding-left: 52px;
	top: 3px;
	left: 7px;

}

#cart-button-xs a.cart-button-xs {
	display: block;
	height: 40px;
	color: #ffffff;
	cursor: pointer;
	font-weight: bold;
/*	margin-left: -10px; */
	margin-left: -15px;
	text-decoration: none;
	/* same as .bg-color-d */
	background-color: #FF7900;
}

#cart-button-xs a.cart-button-xs span {
	font-size: 11px;
	left: 3px;
	position: absolute;
	text-align: center;
	top: 10px;
	width: 22px;
}

.show-cart-xs > span {
	display: none !important;
}

.cart-button-checkout {
	text-align: center;
}

.navigation a.cart-button {
	height: 45px;
}

a.cart-button:hover {
	/* same as .bg-color-h */
	background-color: #FFBF00;
}

a.cart-button div.buy-now, div.show-cart {
	display: table-cell;
	vertical-align: middle;
	background-position-y: -1px;
}

a.cart-button div.buy-now {
	background: url("../img/buttons/cart_26x23.png") no-repeat;
	height: 22px;
	padding-left: 33px;
}

div.show-cart {
	background: url("../img/buttons/cart_37x33.png") no-repeat;
	height: 33px;
	padding-left: 44px;
}

a.cartres {
	margin-right: 0px;
}

div.cart-button-wrapper {
	margin-top: 15px;
}

div.cart-button-wrapper div.pull-left {
	width: 50%;
	font-size: 10px;
	word-wrap: break-word;
}


/*
 * cart-list
 */

@-moz-document url-prefix() {
	fieldset { display: table-cell; }
}

table.cart {
	margin: 0px 5px 0 0;
	width: 100%;
	font-family: Arial;
}

table.cart_sub_total {
	width: 100%;
	margin: 0px;
	padding: 0px;
}

table.cart_sub_total tr {
	margin: 0px;
	padding: 0px;
}

table.cart_sub_total tr td{
	margin: 0px;
	padding: 0px;
}

.cart_sub_total .total-price {
/* 	width: 250px; */
	white-space: nowrap;
}

table.cart td,
table.cart th {
	padding-top: 15px;
	padding-bottom: 15px;
	vertical-align: top;
	font-weight: normal;
	font-size: 16px;
}

table.cart a:link, table.cart a:active, table.cart a:visited, table.cart a:hover {
	color: #000;
	text-decoration: none;
	padding-top: 10px;
}

table.cart a.cart-button:link, table.cart a.cart-button:active, table.cart a.cart-button:visited, table.cart a.cart-button:hover {
	color: #FFF;
	text-decoration: none;
	text-align: center;
	padding: 10px 50px;
	width: auto;
	margin-top: 35px;
}

table.cart td.cart-checkout {
	text-align: right;
}

table.cart th {
	font-weight: normal;
}

table.cart th:first-child {
	padding-left: 10px;
}

table.cart td:first-child {
	padding-left: 10px;
}


table.cart td.agb, table.cart td.agb a {
	font-size: 1em;
	vertical-align: top;
}

table.cart input[type="text"] {
	width: 40px;
	text-align: center;
	margin-right: 15px;
}

table.cart span.product-name {
/*	font-family: 'FrizQuadrataSB-Regular', 'Averia Libre', cursive; */
	font-size: 24px;
}

table.cart td.center {
	text-align: center;
	font-size: 15px;
}

table.cart td.first {
	text-align: center;
}

table.cart td.second {
	width: 50%;
}

table.cart td.second, table.cart td.third, table.cart td.fourth {
	padding-top: 40px;
}

table.cart td.fourth, table.cart td.fourth a {
	text-align: right;
}
table.cart td.total, table.cart td.total a  {
	font-size: 20px;
	text-align: right;
	font-weight: bold;
}

table.cart span.price-old {
	text-decoration: line-through;
	color: #990066;
	font-size: 18px;
}

table.cart span.cart_discount {
	/* color: #008000; */
	font-size: 16px;
}

table.cart td.text-right {
	font-size: 20px;
	font-weight: bolder;
	text-align: right;
}

table.cart tfoot {
	text-align: right;
}

table.cart tfoot .sub-total{
	font-weight: bold;
}

td.checkout-sub-total span {
	display: inline-block;
	width: 100px;
}

table.cart tfoot .total{
	font-weight: bolder;
	font-size: 16px;
}

table.cart tfoot p {
	margin: 2px;
}


.cart-bottom-wrapper {
	margin-top: 50px !important;
}

.cart-bottom-wrapper p.headline {
	background-color: #8fbd44;
	background: linear-gradient(to bottom, #8fbd44 0%, #008440 100%) repeat scroll 0 0 rgba(0, 0, 0, 0);
	color: #fff;
	font-size: 12px;
	font-weight: bold;
	padding: 5px 10px;
}

.cart-bottom-wrapper div.product-listing {
	margin-top: -10px;
	border: 1px solid #8fbd44;
	border-spacing: 10px;
	font-family: "Arial";
	height: auto;
	width: 100%;
}

.cart-bottom-wrapper div.product-listing div.column {
	text-align: center;
	width: 24%;
}


/*
 * navigation toggle-buttons
 */

.navbar-toggle {
	border: 1px solid #ffffff;
}

.navbar-toggle .icon-bar {
	background-color: #ffffff;
}

.expand-clamped {
	background: transparent;
	position: absolute;
	left: 0px;
	padding: 10px;
	cursor: pointer;
}

#showCloneNav {
	float: right;
	padding-right: 20px;
	padding-top: 10px;
}

/*
 * rating stars
 */

div[class*="star-"] {
	position: relative;
	background-repeat: no-repeat;
	float: left;
	display: inline-block;
	width: 18px;
	height: 20px;
	overflow: hidden;
}
div.star-full {
	background-image: url('/templates/ct_fairvital/img/review_star.png');
}
div.star-half {
	background-image: url('/templates/ct_fairvital/img/review_star_half.png');
}
div.star-null {
	background-image: url('/templates/ct_fairvital/img/review_star_light.png');
}
div.review-counter {
	font-size: 12px;
	display: table-cell;
	line-height: 17px;
}

div.reviews_rating_dark,
div.reviews_rating_light {
	background: transparent url(../img/review_star_light.png) repeat-x scroll 0%;
	height: 15px;
	position: relative;
	width: 80px;
}

div.reviews_rating_dark {
	background: transparent url(../img/review_star.png) repeat-x scroll 0%;
}

/*
 * review
 */
div#reviews {
	margin:0px;
	padding: 0px;
}

a.no-review-link:link,
a.no-review-link:visited,
a.no-review-link:active,
a.no-review-link:hover {
	color: #990066;
}


/*
 *textstyles
 */
div.textstyles {
	margin: 0 55px;
}

/*
 * cross sell wrapper
 */

div.cross-sell-wrapper p.headline {
	font-size: 13px;
	padding: 8px 20px;
	margin: 30px 0 0 0;
	color: #FFF;
	font-family: 'Arial';
	background-color: #8FBD44; /* Old browsers */
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #8FBD44), color-stop(1, #008440));
	background-image: -o-linear-gradient(bottom, #8FBD44 0%, #008440 100%);
	background-image: -moz-linear-gradient(bottom, #8FBD44 0%, #008440 100%);
	background-image: -webkit-linear-gradient(top, #8FBD44 0%, #008440 100%);
	background-image: -ms-linear-gradient(bottom, #8FBD44 0%, #008440 100%);
	background-image: linear-gradient(to bottom, #8FBD44 0%, #008440 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8FBD44', endColorstr='#008440', GradientType=0 ); /* IE6-9 */
}

div.cross-sell-wrapper div.product-listing {
	width: 100%;
	height: auto;
	border: 1px solid #8FBD44;
	font-family: 'Arial';
	border-spacing: 10px;
}



div.cross-sell-wrapper div.product-listing div.column {
	float: left;
	width: 33%;
}

div.cross-sell-wrapper div.product-listing div.product {
	display: block;
	text-align: center;
}

div.cross-sell-wrapper div.product-listing div.product p.product-image {
	overflow: hidden;
	height: 150px;
}


div.cross-sell-wrapper div.product-listing div.product p.product-name {
	line-height: 1;
	height: 25px;
	padding: 0 5px;
}

div.cross-sell-wrapper div.product-listing div.product p.product-price {
	font-weight: bold;
	min-height: 40px;
}

div.cross-sell-wrapper div.product-listing div.product p.product-price > span {
	font-size: 13px;
}

div.cross-sell-wrapper div.product-listing div.product p.product-price > span.price-discount {
	display: none;
}


div.cross-sell-wrapper div.product-listing div.product p.product-tax-shipping {
	font-size: 10px;
}

/*
 * sitemap
 */

/*
 * image-buttons
 */

button[class^="image"] {
	width: 38px;
	height: 30px;
	background-repeat: no-repeat;
	background-position: 11px 6px;
	border: 0;
	border-radius: 7px;
}

button[class^="image"]:active {
	background-position: 12px 7px;
}

/*
 * animations
 */

/*
 * jquery-ui customizing
 */

div.dialog {
	display: none;
}

div.ui-dialog {
	background-color: white;
	border: 1px solid green;
}

.ui-widget-header {
	border: none;
}

.ui-widget-content {
	border: none;
	background: transparent;
	color: #424242;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
	border: none;
	border-right: 1px solid #008440;
	background: transparent;
	font-weight: normal;
	color: #fff;
}

.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active {
	border: none;
	border-left: 2px solid #fff;
	border-right: 2px solid #fff;
	font-weight: normal;
	color: #fff;
	/* same as .bg-color-e */
	background-color: #990066;;
}

.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited {
	color: #fff;
	text-decoration: none;
}

.ui-helper-reset {
	font-size: 12px;
}

.ui-tabs .ui-tabs-nav li {
	margin: -2px .2em 0 -3px;
	line-height: 2;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active {
	margin-bottom: 0px;
	padding-bottom: 0px;
}

.ui-tabs .ui-tabs-panel {
	padding: 1.5em 0em;
}

.ui-widget {
	font-family: Arial, Helvetica, 'Helvetica Neue', 'sans-serif';
}

/*
 * eyecatcher
 */
div.eyecatcher_product {
	margin: 0px;
}

/*
 * captcha
 */
#s3capcha  div.img {
	float: left;
	margin: 15px;
	width: 45px;
}

/*
 * checkout
 */

div.checkout-wrapper div.checkout-box-top {
	margin: 0px;
	padding: 0px;
}

div.checkout-wrapper div.checkout-box-top div.box-wrapperOneAndHalf {
	margin: 0px;
	padding: 0px;
	width: 100%;
}
/*
div.product-details-tabs div.box-wrapperOneAndHalf {
	width: 25%;
}
*/
div.checkout-wrapper p.headline {
	font-size: 18px;
	margin-bottom: 10px;
	margin-top: 10px;
	color: inherit;
	font-family: inherit;
	font-weight: 500;
	line-height: 1.1;
}

div.checkout-wrapper div.checkout-box-top h4 {
	font-size: 14px;
	font-weight: bold;
}

div.checkout-wrapper form input.cart-button {
	background-color: #FF7900;
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #FF7900), color-stop(1, #FF7900));
	background-image: -o-linear-gradient(bottom, #FF7900 0%, #FF7900 100%);
	background-image: -moz-linear-gradient(bottom, #FF7900 0%, #FF7900 100%);
	background-image: -webkit-linear-gradient(top, #FF7900 0%, #FF7900 100%);
	background-image: -ms-linear-gradient(bottom, #FF7900 0%, #FF7900 100%);
	background-image: linear-gradient(to bottom, #FF7900 0%, #FF7900 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FF7900', endColorstr='#FF7900', GradientType=0 );
	float: right;
	display: inline-block;
	font-weight: bolder;
	padding: 6px 10px 5px 10px;
	color: #ffffff;
	cursor: pointer;
	text-decoration: none;
	margin-right: 10px;
}

div.checkout-wrapper form input.cart-button:hover {
	/* same as .bg-color-h */
	background-color: #FFBF00;
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #FFBF00), color-stop(1, #FFBF00));
	background-image: -o-linear-gradient(bottom, #FFBF00 0%, #FFBF00 100%);
	background-image: -moz-linear-gradient(bottom, #FFBF00 0%, #FFBF00 100%);
	background-image: -webkit-linear-gradient(top, #FFBF00 0%, #FFBF00 100%);
	background-image: -ms-linear-gradient(bottom, #FFBF00 0%, #FFBF00 100%);
	background-image: linear-gradient(to bottom, #FFBF00 0%, #FFBF00 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FFBF00', endColorstr='#FFBF00', GradientType=0 );
}

.checkout-wrapper input[type="submit"] {
	background: linear-gradient(to bottom, #8fbd44 0%, #008440 100%) repeat scroll 0 0 rgba(0, 0, 0, 0);
	color: #fff;
	display: inline-block;
	font-weight: bold;
	padding: 3px 10px;
	text-decoration: none;
	margin-left: 10px;
	border: none;
}

/*
 * confirmation page special
 */
div.confirmation-page-change-button {
	margin: 5px 0;
}

div.box-conditions {
	margin: 15px 0 0 0;
}


div.confirmation-box-wrapper div.box {
	padding: 5px 0px;
}

div.confirmation-box-wrapper div.box p.headline {
	font-size: 24px;
	margin: 0px;
}

div.confirmation-box-wrapper div.box form span {
	display: inline-block;
	width: auto;
	min-width: 200px;
}

div.confirmation-box-wrapper div.box form input[type="submit"] {
	width: auto;
	min-width: 100px;
}

div.confirmation-box-wrapper hr {
	margin: 0px;
	padding: 0px;
}

div.box-conditions p {
	font-weight: bold;
}


.confirm_coupon_text, .confirm_friend_text {
	display: inline-block;
	width: 200px;
}

.confirm_coupon_button, .confirm_friend_button {
	width: 120px;
}

/*
 * startpage special
 */
div.sp-last-bought-ticker,
div.sp-bestseller {
	border: 1px solid #8fbd44;
	margin: 0px;
	padding: 0px;
	height: 200px;
	overflow: hidden;
}

div.sp-last-bought-ticker p.headline,
div.sp-bestseller p.headline {
	background-color: #8fbd44;
	background-image: linear-gradient(to bottom, #8fbd44 0%, #008440 100%);
	color: #fff;
	font-family: "Arial";
	font-size: 13px;
	padding: 8px 20px;
}

div.sp-bestseller p.headline a:link,
div.sp-bestseller p.headline a:hover,
div.sp-bestseller p.headline a:active,
div.sp-bestseller p.headline a:visited {
	color: #FFF;
	text-decoration: none;
}

div.sp-besteller div.box {

}

div.sp-bestseller p.product-image {
	float:left;
	width: 20%;
	text-align: center;
}


div.sp-bestseller p.product-name,
div.sp-bestseller p.product-price,
div.sp-bestseller p.product-tax-shipping  {
	display: none;
}

/*
 * last bought ticker
 */

#last_bought_ticker ul {
	margin: 0px;
	padding: 0 15px;
}

#last_bought_ticker ul a:link,
#last_bought_ticker ul a:hover,
#last_bought_ticker ul a:visited,
#last_bought_ticker ul a:active {
	color: #000;
}

#last_bought_ticker span.prefix,
#last_bought_ticker span.suffix {
	font-weight: normal !important;
}


#last_bought_ticker span.title {
	font-weight: bold;
}


/*
 * affiliate program
 */
ul.affiliate-menu {
	margin: 0px;
	padding: 0px;
}


ul.affiliate-menu > li {
	border: none;
}

ul.affiliate-banner-list {
	list-style: none;
	margin: 0px;
	padding: 0 5px;
	border: none;
}

ul.affiliate-banner-list li {
	border: none !important;
	margin-top: 5px;
}




ul.affiliate-banner-list li.affiliate-banner-title {
	font-size: 13px;
	padding: 5px;
	margin: 30px 0 0 0;
	color: #FFF;
	font-family: 'Arial';
	background-color: #8FBD44; /* Old browsers */
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #8FBD44), color-stop(1, #008440));
	background-image: -o-linear-gradient(bottom, #8FBD44 0%, #008440 100%);
	background-image: -moz-linear-gradient(bottom, #8FBD44 0%, #008440 100%);
	background-image: -webkit-linear-gradient(top, #8FBD44 0%, #008440 100%);
	background-image: -ms-linear-gradient(bottom, #8FBD44 0%, #008440 100%);
	background-image: linear-gradient(to bottom, #8FBD44 0%, #008440 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8FBD44', endColorstr='#008440', GradientType=0 ); /* IE6-9 */
}

ul.affiliate-banner-list li.affiliate-banner-title h2 {
	padding: 0px;
	margin: 0px;
}

/* ==========================================================================
shipping-preview
========================================================================== */
#shipping-preview p {
	margin-left: 15px;
	margin-bottom: 15px;
	padding: 0px;
}

#shipping-preview > table {
	margin: 0px 15px;
	padding: 0px;
}

#shipping-preview > table tbody tr td.border-L {
	margin: 0px;
	padding: 0px;
}

#shipping-preview > table tbody tr td {
	margin: 0px;
	padding: 0px;
}

.shipping-info {
	padding: 0px 15px;
	width: 45%;
}

/* ==========================================================================
payment
========================================================================== */
.payment-name {
	margin-top: 10px;
	font-weight: bold;
}

.payment-desc table td {
	padding: 5px 0px;
}

/* ==========================================================================
categories
========================================================================== */

.ct-categories-header h1 {
	color: #46863c;
	margin-bottom: 0px;
	font-size: 36px;
}

.ct-products-sort-wrapper label {
	text-align: left;
}

div.category-box {
	width: 100%;
	height: 120px;
	background-color: #8FBD44; /* Old browsers */
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #8FBD44), color-stop(1, #008440));
	background-image: -o-linear-gradient(bottom, #8FBD44 0%, #008440 100%);
	background-image: -moz-linear-gradient(bottom, #8FBD44 0%, #008440 100%);
	background-image: -webkit-linear-gradient(top, #8FBD44 0%, #008440 100%);
	background-image: -ms-linear-gradient(bottom, #8FBD44 0%, #008440 100%);
	background-image: linear-gradient(to bottom, #8FBD44 0%, #008440 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8FBD44', endColorstr='#008440', GradientType=0 ); /* IE6-9 */
}

div.category-box:hover {
	background-color: #ffcf46; /* Old browsers */
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #8FBD44), color-stop(1, #f9ad26));
	background-image: -o-linear-gradient(bottom, #ffcf46 0%, #f9ad26 100%);
	background-image: -moz-linear-gradient(bottom, #ffcf46 0%, #f9ad26 100%);
	background-image: -webkit-linear-gradient(top, #ffcf46 0%, #f9ad26 100%);
	background-image: -ms-linear-gradient(bottom, #ffcf46 0%, #f9ad26 100%);
	background-image: linear-gradient(to bottom, #ffcf46 0%, #f9ad26 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffcf46', endColorstr='#f9ad26', GradientType=0 ); /* IE6-9 */
	cursor: pointer;
}

div.category-box h3 {
	color: #FFF;
	text-decoration: none;
	padding: 25px 10px;
}

div.category-box a:link,
div.category-box a:hover,
div.category-box a:active,
div.category-box a:visited {
	text-decoration: none;
}

div.category-listing > div.box-wrapper1 {
	margin-top: 0px;
	padding: 0px;
}

.side-box-content {
	padding: 10px 0px;
}

.side-box-content a.button {
	text-align: center;
	margin-left: 10px;
	padding: 10px 55px !important;

}

/* ==========================================================================
startpage
========================================================================== */
.banner-wrapper {
	overflow: hidden;
	max-height: 315px;
}

ul.starpage-external-icons {
	margin: 0px;
	padding: 0px;
	list-style: none;
}

ul.starpage-external-icons li{
	margin: 0px;
	padding: 10px;
	float: left;

}


/* ==========================================================================
general
========================================================================== */

div.headline {
	background: #8fbd44; /* Old browsers */
	background: -moz-linear-gradient(top,  #8fbd44 0%, #008440 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#8fbd44), color-stop(100%,#008440)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #8fbd44 0%,#008440 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #8fbd44 0%,#008440 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #8fbd44 0%,#008440 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #8fbd44 0%,#008440 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8fbd44', endColorstr='#008440',GradientType=0 ); /* IE6-9 */

	color: #FFF;
	padding: 5px 10px;
	font-weight: bold;
	font-size: 12px;

}

/* ==========================================================================
product-details
========================================================================== */

h2.description-title {
	margin-top: 0px;
	padding: 0px;
	font-size: 36px;
	color: #498441;
}

div#description .well {
	margin-top: 5px;
	margin-bottom: 0px;
	padding: 10px;
}

.footer-detail .price-wrapper {
	padding-left: 0px;
	padding-right: 0px;
}

.product-detail-nav ul {
	width: 100%;
	margin: 0px;
	padding: 0px;
	list-style: none;
	display: table;
	overflow: hidden;
}

.product-detail-nav li {
	display: table-cell;
	width: auto;
	text-align: center;
	border: none;
	white-space: nowrap;
	overflow: hidden;
	/*border-right: 1px solid #008440;*/

}

.product-detail-nav  ul li.border {
	border-right: 1px solid #008440;
}

.product-detail-nav ul li a {
	padding: 0.5em 1em;
	text-decoration: none;
	color: #ffffff;
	font-size: 13px;
	display: inline-block;
}

.line-height-spacer {
	display: block;
	width: 100%;
	height: 5px;
}

/* ==========================================================================
xsell plugin
========================================================================== */
div.cross-sell-wrapper p.product-tax-shipping {
	display: none;
	height: 0px !important;
}
div.cross-sell-wrapper p.product-base-price {
	display: none;
	height: 0px !important;
}

/* ==========================================================================
product-box
========================================================================== */
.product-box a.cart-button div.buy-now,
.form-product-box-detail a.cart-button div.buy-now {
	background: url("../img/buttons/cart_26x23.png") no-repeat;
	font-size: 13px;
	padding-left: 33px;
	height: auto;
}


/* ==========================================================================
content
========================================================================== */
.ct-content {
	margin-top: 0px !important;
    margin-bottom: 40px;
}

.ct-content h1 {
	margin: 0px 0px 15px 0px;
	padding: 0px;
	font-size: 36px;
	color: #498441;
}

div.ct-content div.textstyles {
	margin: 0 0 50px 0;
	padding: 0 15px 0 0;
}


/* ==========================================================================
forms
========================================================================== */
.form-horizontal .control-label {
	margin: 0px;
	padding-top: 2px;
	padding-left: 25px;
	text-align: left;
	font-size: 15px;
	font-weight: normal;
}

.form-control {
	background-color: #fff;
	background-image: none;
	border: 1px solid #ccc;
	border-radius: 0px;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
	color: #555;
	display: block;
	font-size: 14px;
	height: 26px;
	line-height: 1.42857;
	padding: 3px 12px;
	transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
	width: 65%;
}

.form-horizontal button[type="submit"] {
	background: #8fbd44; /* Old browsers */
	background: -moz-linear-gradient(top,  #8fbd44 0%, #008440 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#8fbd44), color-stop(100%,#008440)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #8fbd44 0%,#008440 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #8fbd44 0%,#008440 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #8fbd44 0%,#008440 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #8fbd44 0%,#008440 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8fbd44', endColorstr='#008440',GradientType=0 ); /* IE6-9 */
	font-weight: bold;
	color: #FFF;
	padding: 10px 60px;
	border: 0px;
	padding-right: 58px !important;
}

label.required:after {
	content: ' *';
	display:inline;
}

input.required {
/*
	background-image: url('../img/asterisk.png');
	background-repeat: no-repeat;
	background-position: right 5px center;
*/
}

.form-bg {
	background: #f1f1f1;
	padding-top: 7.5px;
	padding-bottom: 7.5px;
	margin-top: -7.5px;
	margin-bottom: 7.5px;

}

.form-bg > div.form-group:last-child {
	margin-bottom: 0px;
}

/* ==========================================================================
login page
========================================================================== */
.login-page {
	margin-top: 15px;
}

.login-page .form-horizontal button[type="submit"].margin-left {
	margin-left: 35px;
}


.login-page span.lostpassword a:link,
.login-page span.lostpassword a:active,
.login-page span.lostpassword a:visited {
	padding-top: 5px;
	text-align: center;
	color: #498441;
	font-weight: bold;
}

.create-account-info {
	margin-left: 10px;
	margin-bottom: 10px;
	display: inline-block;
}

/* ==========================================================================
contact page
========================================================================== */
#contact .control-label {
	padding-left: 15px;
}

/* ==========================================================================
login box
========================================================================== */

.loginbox-logged-in {
	margin-left: 10px;
	margin-right: 10px;
	padding-bottom: 15px;
	width: 100%;
}

.login-box {
	margin: 0px;
	padding: 0px;
}

.login-box .form-group,
.loginbox-logged-in .form-group {
	margin-bottom: 5px;
}

.login-box span.lostpassword {
	display: block;
	font-weight: bold;
	width: 100%;
	text-align: center;
	margin-left: -10px;
	margin-top: 55px;
	margin-bottom: -75px;
}


.login-box .form-group .col-sm-3,
.login-box .form-group .col-sm-9,
.loginbox-logged-in .form-group .col-sm-3,
.loginbox-logged-in .form-group .col-sm-9 {
	width: 100%;

}

.login-box .form-group label.required:after {
	content: '';
	display:inline;
}

.login-box .form-group label {
	font-weight: bold;
}

.login-box .form-group input {
	margin: 0px 10px;
	width: 90%;
}

.login-box .col-sm-offset-3 {
	margin: 0px 10px;
}

.login-box  button[type="submit"],
.loginbox-logged-in button[type="submit"] {
	margin-top: 5px;
	padding: 10px 55px;
	margin-bottom: 20px;
	width: 90%;
}

/*.loginbox-logged-in a.button:link, .loginbox-logged-in a.button:active, .loginbox-logged-in a.button:visited, .loginbox-logged-in a.button:hover {
	margin-left: 0px;
	padding: 10px 55px !important;
	margin-top: 50px;
}*/

/* ==========================================================================
bankaccount page detail
========================================================================== */
.bankaccount-info {
	margin-left: 0px;
	margin-bottom: 10px;
	display: inline-block;
}


.form-edit_bank_account .control-label {
	padding-left: 15px;
}
/* ==========================================================================
product detail
========================================================================== */
.footer-detail .col-sm-6 {
	padding-left: 0px;
	padding-right: 0px;
}

.ct-products-detail {
	margin-top: 20px;
}

/*
.ct-products-detail .ui-tabs .ui-tabs-nav {
	padding: 0px;
}


.ct-products-detail .ui-state-default {
	background: #.ct-products-detail .ui-tabs .ui-tabs-nav {

}
*/

/* ==========================================================================
account history
========================================================================== */

.account_history_products {
	width: 100%;
}

.account_history_products thead th,
.account_history_products tbody td {
	padding: 10px 0px;
}

.account_history_products thead tr th:first-child,
.account_history_products tbody tr td:first-child {
	padding-left: 10px;
}

.account_history_products tfoot td {
	padding: 0px;
}

.account_history_products .bold {
	font-weight: bold;
}

.account_history_products .total {
	font-size: 1.2em;
}

/* ==========================================================================
content pages
========================================================================== */

table.content-service tbody td {
	padding-bottom: 15px;

}

table.content-service tbody td.teaser {
	color: #498441;
	text-transform: uppercase;
}

table.subcontent-service tbody td {
	padding-bottom: 0px;
}

table.subcontent-service tbody td:first-child {
	width: 28%;
}

.content-page-h2 {
	color: #498441;
	margin-top: 20px;
	margin-bottom: 0px;
}

/* ==========================================================================
button
========================================================================== */

.button_back {
	background: linear-gradient(to bottom, #d8d8d8 0%, #c7c7c7 100%) repeat scroll 0 0 rgba(0, 0, 0, 0);
	font-weight: bold;
	color: #5d5d5d;
	padding: 10px 60px;
	border: 0px;
}


/* ==========================================================================
href
========================================================================== */
a:link, a:active, a:visited, a:hover {
	color: #498441;
	text-decoration: underline;
}

a.cart-button:link, a.cart-button:active, a.cart-button:visited, a.cart-button:hover {
	color: #FFF;
	text-decoration: none;
}

li.category a:link, li.category a:active, li.category a:visited, li.category a:hover {
	text-decoration: none;
}

li.nav-header a:link, li.nav-header a:active, li.nav-header a:visited, li.nav-header a:hover {
	text-decoration: none;
	font-weight: bold !important;
}

.navigation-pages a:link, .navigation-pages a:active, .navigation-pages a:visited, .navigation-pages a:hover {
	text-decoration: none;
}

.highlightBox-info a:link, .highlightBox-info a:active, .highlightBox-info a:visited, .highlightBox-info a:hover {
	text-decoration: underline;
	font-weight: bold;
	color: #00529B;
}

.highlightBox-success a:link, .highlightBox-success a:active, .highlightBox-success a:visited, .highlightBox-success a:hover {
	text-decoration: none;
	font-weight: bold;
	color: #4F8A10;
}

.highlightBox-warning a:link, .highlightBox-warning a:active, .highlightBox-warning a:visited, .highlightBox-warning a:hover {
	text-decoration: none;
	font-weight: bold;
	color: #9F6000;
}

.highlightBox-error a:link, .highlightBox-error a:active, .highlightBox-error a:visited, .highlightBox-error a:hover {
	text-decoration: none;
	font-weight: bold;
	color: #D8000C;
}

.highlightBox-validation a:link, .highlightBox-validation a:active, .highlightBox-validation a:visited, .highlightBox-validation a:hover {
	text-decoration: none;
	font-weight: bold;
	color: #D63301;
}

.well a:link, .well a:active, .well a:visited, .well a:hover,
#footer-navigation a:link, #footer-navigation a:active, #footer-navigation a:visited, #footer-navigation a:hover {
	text-decoration: none;
}

ul.ct-breadcrump a:link, ul.ct-breadcrump a:active, ul.ct-breadcrump a:visited, ul.ct-breadcrump a:hover {
	color: #3a3a3a;
}

a.button:link, a.button:active, a.button:visited, a.button:hover {
	background: #8fbd44; /* Old browsers */
	background: -moz-linear-gradient(top,  #8fbd44 0%, #008440 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#8fbd44), color-stop(100%,#008440)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #8fbd44 0%,#008440 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #8fbd44 0%,#008440 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #8fbd44 0%,#008440 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #8fbd44 0%,#008440 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8fbd44', endColorstr='#008440',GradientType=0 ); /* IE6-9 */
	font-weight: bold;
	color: #FFF;
	padding: 10px 60px;
	display: inline-block;
	text-decoration: none;
	width: 90%;
}

ol.steps li a:link, ol.steps li a:hover, ol.steps li a:active, ol.steps li a:visited {
	text-decoration: none;
}

/* .content-service a:link, .content-service a:active, .content-service a:visited, .content-service a:hover {
	color: #424242;
	text-decoration: none;
} */


/* ==========================================================================
account
========================================================================== */

ul.ct-account-logged-in {
	margin: 0px;
	padding: 0px;
	list-style: none;
}

ul.ct-account-logged-in li {
	float: left;
	padding-right: 5px;
}

.ct-info-text {
	display: inline-block;
	margin-bottom: 10px;
}

.ct-address-overview .headline, .ct-bank-account-overview .headline {
	margin-top: 12px;
}

.ct-border-green {
	border: 1px solid #8fbd44;
}

.ct-address, .ct-payment {
	padding-top: 10px;
	padding-left: 10px;
	padding-right: 10px;
}

/*

.ct-border-green {
	border: 1px solid #8fbd44;
}

.ct-address-wrapper {
	margin-top: 10px;
	padding-left: 0px;
}


*/

/* ==========================================================================
breadcrump
========================================================================== */
#breadcrumb {
	margin: 0px;
	height: 70px;
}

ul.ct-breadcrump {
	display: block;
	font-weight: bold;
/*	font-family: 'FrizQuadrataSB-Regular', 'Averia Libre', cursive; */
	font-style: italic;
	color: #3a3a3a;
	list-style: none;
	height: 45px;
	margin-left: 0px;
	padding: 0px;
	margin-top: 15px;
	margin-right: 15px;
}

ul.ct-breadcrump li {
	text-align: left;
	float: left;
}

ul.ct-breadcrump li:not(:first-child):not(:last-child) div:after {
	content: "/";
	padding-left: 5px;
	padding-right: 5px;
}

ol.steps {
	padding-left:0;
	list-style-position:inside;
	height: 35px;
}

ol.steps li {
	float: left;
	font-weight: bold;
	color: #b1aaaa;
}



ol.steps li.active,
ol.steps li.active a {
	color: #a52371 !important;
}


/* ==========================================================================
checkout success
========================================================================== */
.checkout-success-top-right-wrapper {
	padding: 5px 10px;
	border: 1px solid #000;
}

.checkout-success-top-right-wrapper table {
	width: 100%;
}


ul.checkout-success-listing {
	list-style: square;
	color: #8cbe4f;
	padding-left: 15px;
}

ul.checkout-success-listing li > span {
	color: #424242;
}

a.ckeckout-success:link, a.ckeckout-success:visited, a.ckeckout-success:active, a.ckeckout-success:hover {
	font-weight: bold;
	color: #000;
}

a.cart-button-i {
	margin-right: 20px;
	background: linear-gradient(to bottom, #d8d8d8 0%, #c7c7c7 100%) repeat scroll 0 0 rgba(0, 0, 0, 0);
	border: 0 none;
	color: #5d5d5d;
	font-weight: bold;
	cursor: pointer;
	display: inline-block;
	float: right;
	font-weight: bold;
	padding: 6px 20px;
	text-decoration: none;
	width: auto;
}


/* ==========================================================================
bootstrap modifiers
========================================================================== */
.ct-no-spacing {
	padding-left: 0px !important;
}


.right {
	float: right !important;
}

.left {
	float: left !important;
}

/* ==========================================================================
media
========================================================================== */
.main-box-wrapperPayment, .main-box-wrapperAddress {
	width: 100%;
}

.box-wrapperPayment a:link, .box-wrapperPayment a:active, .box-wrapperPayment a:visited, .box-wrapperPayment a:hover,
.box-wrapperAddress a:link, .box-wrapperAddress a:active, .box-wrapperAddress a:visited, .box-wrapperAddress a:hover {
	text-decoration: none;
}

/* extra klein */
@media (max-width: 460px) {
	.cachet img {
		width: 126px;
	}

	#content-wrapper {
		width: 330px;
	}

	#searchfield input[type="text"] {
		margin-left: 7px;
	}

	#content {
		width: 100%;
	}

	#top-navigation, #second-navigation {
		display: none;
	}

	div.box-wrapper1 {
		margin-top: 15px;
		margin-right: 13px;
		width: 93%;
		overflow: hidden;
	}

	div.box-wrapper2 {
		margin-top: 15px;
		margin-right: 13px;
		width:  93%;
		overflow: hidden;
	}

	div.box-wrapper3 {
		margin-top: 15px;
		width: 93%;
		overflow: hidden;
	}


	.index-text {
		padding-right: 15px;
	}

	div#header {
		height: auto;
	}

	#header {
		margin-bottom: 0px;
	}
	#header img.main {
		display: none;
	}
	#header div.tiny {
		display: block;
	}
	#header div.tiny .navbar-toggle {
		display: block !important;
	}

	ul#languages {
		background: transparent;
		right: 80px;
		top: 10px;
		/*width: 50px;*/

	}

	ul#languages li:first-child {
		padding-left: 0px;
	}

	ul#languages li {
		float: left;
		padding: 9px 0px 9px 10px;
	}


	table.cart td, table.cart th,
	table.cart td.total, table.cart td.total a {
		font-size: 14px !important;
	}

	table.cart td.first {
		width: 15%;
	}


	table.cart td.second {
		width: 25%;
	}




	table.cart a:link, table.cart a:active, table.cart a:visited, table.cart a:hover {
	font-size: 16px !important;
	}

	ol.steps,
	ol.steps li,
	ol.steps li a:link, ol.steps li a:hover, ol.steps li a:active, ol.steps li a:visited {
	font-size: 12px !important;
	}

	.greenLine {
		margin-right: 5px;
	}
	.greenLine {
		border-top: 1px solid #8fbd44;
		display: inline-block;
		height: 1px;
		left: 13px;
		margin-right: 5px;
		position: relative;
		top: 7px;
		width: 10px;
	}


	#cookie-bar {
		height: 130px;
	}


	#showCloneNav, #breadcrumb, .ct_eyecatcher {
		display: none !important;
	}


	/*
	.product-box {
		height: 400px !important;
	}

	.product-box .description_short {
		height: 80px !important;
	}

	.product-box .header {
		height: 30px !important;
	}

	.product-box .header h3,
	.product-box .description_short {
		font-size: 12px !important;
	}

	.product-box .image-container {
		height: 150px !important;
	}
	*/

	#footer-navigation {
		display: none;
	}
	.shipping-info, #shipping-preview {
		display: none !important;
	}

	table.cart_sub_total tr td {
		display: table;
		width: 100%;
	}

	table.cart td.second, table.cart th.second {
		padding-left: 10px;
	}

	input[type="text"], input[type="password"], select {
		width: 100%;
	}
	#customer_message {
		width: 100%;
	}

	div.box-wrapperAddress {
		margin-top: 15px;
		width: 100%;
		overflow: hidden;
	}


	div.box-wrapperPayment {
		margin-top: 15px;
		width: 100%;
		overflow: hidden;
	}
}


@media (min-width: 461px) and (max-width: 767px) {
	.cachet img {
		width: 34%;
	}
	
	#breadcrumb {
		display: none !important;
	}

	#content-wrapper {
		width: 461px;
	}

	#searchfield input[type="text"] {
		margin-left: 7px;
	}

	#cookie-bar {
		height: 130px;
	}

	#content {
		width: 100%;
	}

	#top-navigation, #second-navigation {
		display: none;
	}

	div.box-wrapper1 {
		margin-top: 15px;
		margin-right: 13px;
		width: 93%;
		overflow: hidden;
	}

	div.box-wrapper2 {
		margin-top: 15px;
		margin-right: 13px;
		width:  93%;
		overflow: hidden;
	}

	div.box-wrapper3 {
		margin-top: 15px;
		width: 93%;
		overflow: hidden;
	}


	.index-text {
		padding-right: 15px;
	}

	div#header {
		height: auto;
	}

	#header {
		margin-bottom: 0px;
	}
	#header img.main {
		display: none;
	}
	#header div.tiny {
		display: block;
	}
	#header div.tiny .navbar-toggle {
		display: block !important;
	}

	ul#languages {
		background: transparent;
		right: 60px;
		top: 10px;
		width: 50px;

	}

	ul#languages li:first-child {
		padding-left: 0px;
	}

	ul#languages li {
		float: left;
		padding: 0px 0px 7px 0px;
	}


	table.cart td, table.cart th,
	table.cart td.total, table.cart td.total a {
		font-size: 14px !important;
	}

	table.cart td.first {
		width: 15%;
	}

	table.cart td.second {
		width: 15%;
	}

	table.cart td.third {
		width: 15%;
	}

	table.cart td.fourth {
		width: 15%;
	}

	table.cart a:link, table.cart a:active, table.cart a:visited, table.cart a:hover {
		font-size: 14px !important;
	}

	.shipping-info,
	#shipping-preview {
		display: none !important;
	}

	ol.steps,
	ol.steps li,
	ol.steps li a:link, ol.steps li a:hover, ol.steps li a:active, ol.steps li a:visited {
	font-size: 10px !important;
	}

	.greenLine {
		margin-right: 5px;
	}
	.greenLine {
		border-top: 1px solid #8fbd44;
		display: inline-block;
		height: 1px;
		left: 13px;
		margin-right: 5px;
		position: relative;
		top: 7px;
		width: 10px;
	}

	#showCloneNav {
		display: none !important;
	}

	#footer-navigation {
		display: none;
	}

	table.cart td.second, table.cart th.second {
		padding-left: 10px;
	}

	table.cart_sub_total tr td {
		display: table;
		width: 100%;
	}

	input[type="text"], input[type="password"], select {
		width: 100%;
	}

	#customer_message {
		width: 100%;
	}

	div.box-wrapperAddress {
		margin-top: 15px;
		margin-right: 10px;
		width: 48.8%;
		overflow: hidden;
	}

	.main-box-wrapperAddress div.box-wrapperAddress:nth-child(2n+2) {
		margin-right: 0px;
	}


	div.box-wrapperPayment {
		margin-top: 15px;
		margin-right: 10px;
/*		width: 47.5%; */
		width: 48.8%;
		overflow: hidden;
	}

	.main-box-wrapperPayment div.box-wrapperPayment:nth-child(2n+2) {
		margin-right: 0px;
	}

div.box-image-background div.box-background-image-overlay {
		background: transparent url('../img/image_container_bg_big.png') no-repeat top left;
	}

	div.product-box div.image-container div.image-list-overlay {
	background: transparent url('../img/image_container_bg_big.png') no-repeat top left;
	}

}


/* klein zwei-spaltig */
@media (min-width: 768px) {
	#main {
		width: 550px;
		overflow: hidden;
	}

	#content-wrapper {
		width: 765px;
	}

	#second-navigation {
		width: 220px;
		display: block !important;
	}

	#content {
		width: 100%;
		max-width: 515px;
	}

	div#header {
		height: auto;
	}


	#top-navigation ul li a {
		padding: 3px 3px;
		font-size: 10px;
	}

	div.box-wrapper1 {
		margin-top: 15px;
		margin-right: 13px;
		width: 93%;
		overflow: hidden;
	}

	div.box-wrapper2 {
		margin-top: 15px;
		margin-right: 13px;
		width:  93%;
		overflow: hidden;
	}

	div.box-wrapper3 {
		margin-top: 15px;
		width: 93%;
		overflow: hidden;
	}


	.index-text {
		padding-right: 15px;
	}

	#footer-navigation {
		display: block !important;
	}

	div.box-wrapperAddress {
		margin-top: 15px;
		margin-right: 10px;
		width: 49%;
		overflow: hidden;
	}

	.main-box-wrapperAddress div.box-wrapperAddress:nth-child(2n+2) {
		margin-right: 0px;
	}

	div.box-wrapperPayment {
		margin-top: 15px;
		margin-right: 10px;
/* 		width: 48%; */
		width: 49%;
		overflow: hidden;
	}

	.main-box-wrapperPayment div.box-wrapperPayment:nth-child(2n+2) {
		margin-right: 0px;
	}


}

@media (min-width: 768px) and (max-width: 898px) {

	div.box-image-background div.box-background-image-overlay {
		background: transparent url('../img/image_container_bg_big.png') no-repeat top left;
	}

	div.product-box div.image-container div.image-list-overlay {
	background: transparent url('../img/image_container_bg_big.png') no-repeat top left;
	}

	table.cart_sub_total tr td {
		display: table;
		width: 100%;
	}
	.shipping-info, #shipping-preview {
		display: none !important;
	}
	input[type="text"], input[type="password"], select {
		width: 100%;
	}
	#customer_message {
		width: 100%;
	}
}

@media (max-width: 899px) {
	#top-navigation {
		height: 30px;
		overflow: hidden;
	}

	/*
	a.cart-button {
		height: 30px;
	}

	#second-navigation a.cart-button span {
		font-size: 11px;
		left: 13px;
		position: absolute;
		text-align: center;
		top: 4px;
		width: 22px;
	}

	div.show-cart {
		background: url("../img/buttons/cart_37x33.png") no-repeat scroll 0 0 rgba(0, 0, 0, 0);
		background-size: 23px;
		height: 20px;
		padding-left: 35px;
	}
	*/
}

/* groß zwei-spaltig */
@media (min-width: 900px) {
	#main {
		width: 675px;
		overflow: hidden;
	}

	#content-wrapper {
		width: 880px;
	}

	#second-navigation {
		width: 220px;
		display: block !important;
	}

	#content {
		width: 100%;
		max-width: 630px;
	}

	div#header {
		height: auto;
	}

	#top-navigation ul li a {
		padding: 10px 8px;
		font-size: 12px;
	}

	div.box-wrapper1 {
		margin-top: 15px;
		margin-right: 13px;
		width: 45.7%;
		overflow: hidden;
	}

	div.box-wrapper2 {
		margin-top: 15px;
		margin-right: 13px;
		width:  45.7%;
		overflow: hidden;
	}

	div.box-wrapper3 {
		margin-top: 15px;
		width: 93%;
		overflow: hidden;
	}

	.index-text {
		padding-right: 15px;
	}


	div.box-wrapperAddress {
		margin-top: 15px;
		margin-right: 10px;
		width: 32.2%;
		overflow: hidden;
	}

	.main-box-wrapperAddress div.box-wrapperAddress:nth-child(2n+2) {
		margin-right: 10px;
	}

	.main-box-wrapperAddress div.box-wrapperAddress:nth-child(3n+3) {
		margin-right: 0px;
	}



	div.box-wrapperPayment {
		margin-top: 15px;
		margin-right: 10px;
/*		width: 31.6%; */
		width: 32.2%;
		overflow: hidden;
	}

	.main-box-wrapperPayment div.box-wrapperPayment:nth-child(2n+2) {
		margin-right: 10px;
	}

	.main-box-wrapperPayment div.box-wrapperPayment:nth-child(3n+3) {
		margin-right: 0px;
	}


}

@media (min-width: 900px) and (max-width: 1259px) {
	table.cart_sub_total tr td {
		display: table;
		width: 100%;
	}
}


/* groß drei-spaltig */
@media (min-width: 1260px) {
	#main {
		width: 995px;
		overflow: hidden;
	}

	#content-wrapper {
		width: 1200px;
	}

	#content {
		width: 100%;
		max-width: 950px;
	}

	#top-navigation ul li a {
		font-size: 16px;
	}

	div.box-wrapper1 {
		margin-top: 15px;
		margin-right: 13px;
		width: 31%;
		overflow: hidden;
	}

	div.box-wrapper2 {
		margin-top: 15px;
		margin-right: 13px;
		width: 63.4%;
		overflow: hidden;
	}

	div.box-wrapper3 {
		margin-top: 15px;
		width: 95.6%;
		overflow: hidden;
	}
/*
	div.box-wrapperAddress {
		margin-top: 15px;
		margin-right: 10px;
		width: 19.15%;
		overflow: hidden;
	}

	div.box-wrapperAddress:last-child {
		margin-right: 0px;
	}
*/
	div.box-wrapperAddress {
		margin-top: 15px;
		margin-right: 10px;
		width: 24.2%;
		overflow: hidden;
	}

	.main-box-wrapperAddress div.box-wrapperAddress:nth-child(2n+2) {
		margin-right: 10px;
	}

	.main-box-wrapperAddress div.box-wrapperAddress:nth-child(3n+3) {
		margin-right: 10px;
	}

	.main-box-wrapperAddress div.box-wrapperAddress:nth-child(4n+4) {
		margin-right: 0px;
	}

	div.box-wrapperPayment {
		margin-top: 15px;
		margin-right: 10px;
/*		width: 23.8%; */
		width: 24.2%;
		overflow: hidden;
	}
	.main-box-wrapperPayment div.box-wrapperPayment:nth-child(2n+2) {
		margin-right: 10px;
	}

	.main-box-wrapperPayment div.box-wrapperPayment:nth-child(3n+3) {
		margin-right: 10px;
	}

	.main-box-wrapperPayment div.box-wrapperPayment:nth-child(4n+4) {
		margin-right: 0px;
	}

/*
	div.box-wrapperPayment-child {
		margin-right: 0px;
	}
*/
	#second-navigation {
		width: 220px;
		display: block !important;
	}
}


/* print */
@media print {
	#header, #footer, #top-navigation, #second-navigation, #breadcrumb {
		display: none !important;
	}

	#content-wrapper{
		width: 60% !important;

	}

	.box-wrapper3 {
		width: 100%;

	}

	#main {
		padding: 50px 0px;
		height: 100%;
		background: #fff;
	}

	a[href]:after {
	content: none !important;
}
}



