
:root {
	--main-bg-color: #F1F1F1;
	--main-text-color: #555555;
	--content-bg-color: #FFFFFF;
	--content-border-color: #E5E5E5;
	--mainmenu-line-color: #F4F4F4;
	
	--input-default-bg: #F0F0F0;
	--input-default-button-bg: #F0F0F0;
	--input-default-color: #555;
	--input-default-border: #C9C9C9;
	
	--input-highlight-color: #FFF;
	--input-highlight-button-bg: #FD933A;
	--input-highlight-border: #ec863b;
	
	--input-focus-border: #FD933A;
	--input-focus-locked-bg: #ba7134;
}


body
{
	background: url("backg_grissel_light_grey.jpg") 0 0 repeat-x fixed;
	background-color: var(--main-bg-color);
	font-size: 9pt;
	font-family:Arial;
	line-height:160%;
	margin:0px;
	padding: 0;
	font-weight:normal;
	color: var(--main-text-color);
}

html
{
	-webkit-text-size-adjust:none;
}


/* ### Resets ### */
input[type="checkbox"],
input[type="radio"],
input[type="image"]
{
	background: transparent;
	border: 0;
}

input,
textarea,
select
{
	margin:0;
}

img
{
	border:0;
}

form
{
	padding:0;
	margin:0;
}

input[type=search]{
	-webkit-appearance: none; /* textfield */
	appearance: none;
	-webkit-border-radius:0;
	border-radius:0;
	box-sizing: content-box;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

address
{
	font-style: normal;
}

/* IE Double Bold Bug */
th,
b, strong,
h1, h2, h3, h4, h5, h6
{
	font-weight: bold;
}










/* ### Links Default ### */
a,
a:link,
a:visited
{
	font-weight:normal;
	color: inherit;  /* #2D3A0C; */
	text-decoration:none;
}

a:hover,
a:active,
a:focus
{
	color:#FD933A;
}

a.delete,
a.delete:link,
a.delete:visited
{
	color:#DD0000;
	font-weight:bold;
}

.a_underline a,
.a_underline a:link,
.a_underline a:visited
{
	text-decoration: underline;
}

a.link_or,
a.link_or:link,
a.link_or:visited
{
	text-decoration: underline;
	color:#FD933A;
}




/* ### Default Werte ### */
.pointer
{
	cursor:pointer;
}

.captcha
{
	display:none;
}

.label, 
.th_sort,
.close
{
	cursor:pointer;
}

table td,
input,
textarea,
select,
option
{
	/*font-size:9pt;*/
}

table th,
table td
{
	padding:0px;
}


input[type="text"],
input[type="password"],
input[type="tel"],
input[type="email"],
input[type="url"],
textarea,
select
{
	padding: 5px;
}

input[type="text"],
input[type="submit"],
input[type="button"],
input[type="search"],
input[type="password"],
input[type="number"],
input[type="tel"],
input[type="email"],
input[type="url"],
textarea,
select,
button
{
	border:1px solid #C9C9C9;
	/* -webkit-appearance: none; */
    /* -webkit-border-radius:0; */
    border-radius:0;
	outline:none;
	color:var(--main-text-color);
	font-weight: normal;
}


input[type="text"]:disabled,
input[type="submit"]:disabled,
input[type="button"]:disabled,
input[type="search"]:disabled,
input[type="password"]:disabled,
input[type="number"]:disabled,
input[type="tel"]:disabled,
input[type="email"]:disabled,
input[type="url"]:disabled,
textarea:disabled,
select:disabled,
button:disabled
{
	color: #c4c4c4;
}


input[type="text"]:focus,
input[type="search"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
textarea:focus,
select:focus,
button:focus
{
	border:1px solid #FD933A;
}

.input_grey
{
	background-color: #EEEEEE;
}



input[type="submit"],
input[type="button"],
button
/*.button*/
{
	border:1px solid #C9C9C9;
	background-color: #F0F0F0;
	min-height: 25px;
}

.button,
a.button,
a.button_or
{
	display: inline-block;
	min-height: 19px;
	padding:4px 6px 0;
	line-height: 16px;
	font-size: 10pt;
	color:var(--main-text-color);
	font-weight: normal;
	border:1px solid #C9C9C9;
	background-color: #F0F0F0;
	text-align: center;
}

.button a
{
	display:block;
}

.button:focus,
a.button:focus,
a.button_or:focus
{
	border:1px solid #FD933A;
}


input[type="submit"].button_or,
input[type="button"].button_or,
button.button_or,
a.button_or
{
	background-color: #FD933A;
	color: #FFFFFF;
	border: 1px solid #FD933A;
}

.button_eyecatcher
{
	background-color: #F0F0F0; /* #F0F0F0 #C9C9C9 */
	border-color: #ED7F25;
	animation: button_eyecatcher_ani 2s linear 0s;
	animation-iteration-count: 10;
}

@keyframes button_eyecatcher_ani {
    0% {	border-color: #C9C9C9; background-color: #F0F0F0; }
    30% {	border-color: #ED7F25; background-color: #FD933A; }
    70% {	border-color: #ED7F25; background-color: #FD933A; }
	100% {	border-color: #C9C9C9; background-color: #F0F0F0; }
}

.field_highlighter
{
	background-color: #F0F0F0;
	animation: field_highlighter_ani 1.5s linear 0.5s;
	animation-iteration-count: 1;
}

@keyframes field_highlighter_ani {
    0% {	border-color: #C9C9C9; background-color: #F0F0F0; }
    20% {	border-color: #ED7F25; background-color: #FD933A; }
    100% {	border-color: #C9C9C9; background-color: #F0F0F0; }
}



/* Header */
h1.normal_text,
h2.normal_text,
h3.normal_text,
h4.normal_text,
h5.normal_text
{
	font-family:Arial;
	font-size:inherit; /* 8pt */
	text-decoration:none;
	font-weight:normal;
	padding:0px;
	margin:0px;
}



h1.main_header,
h2.main_header,
h3.main_header,
h4.main_header,
h5.main_header
{
	font-size:17pt;
	text-decoration:none;
	font-weight:normal;
	padding:0px;
	margin:0px;
}

h1.midp_header,
h2.midp_header,
h3.midp_header,
h4.midp_header,
h5.midp_header
{
	font-size:14pt;
	text-decoration:none;
	font-weight:normal;
	padding:0px;
	margin:0px;
}

h1.mid_header,
h2.mid_header,
h3.mid_header,
h4.mid_header,
h5.mid_header
{
	font-size:13pt;
	text-decoration:none;
	font-weight:normal;
	padding:0px;
	margin:0 0 3px;
}


h2.item_desc,
h3.item_desc,
h4.item_desc,
h5.item_desc
{
	display: inline;
	font-size:inherit;
	text-decoration:none;
	font-weight:bold;
	padding:0px;
	margin:0px;
}



/* ### Div Styles ### */
.error_div,
.info_div,
.info_div_or,
.confirm_div,
.output_div
{
	width:455px;
	margin:30px auto 0;
	padding:10px 20px;
}

.error_div
{
	outline:1px solid #CCCCCC;
	border-left:5px solid #FF0000;
	color: #EE0000; /*#B82F0C;*/
}

.info_div
{
	outline:1px solid #CCCCCC;
	border-left:5px solid #FFFA00;
}

.info_div_or
{
	outline:1px solid #CCCCCC;
	border-left:5px solid #FD933A;
}

.confirm_div
{
	outline:1px solid #CCCCCC;
	border-left:5px solid #19FF00;
}


.output_div
{
	width:460px;
	outline:1px solid #CCCCCC;
}

.error_div .caption,
.info_div .caption,
.info_div_or .caption,
.confirm_div .caption,
.output_div .caption
{
	font-size:13pt;
	margin-bottom:20px;
	font-weight:normal;
}


.position_div
{
	width:500px;
	margin:30px auto 0;
	border:0;
}


.fade_out_div
{
    position: relative;
    height: 25px;
    margin-top: -22px;
	background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 80%);
}


.startp_info
{
	font-size:13pt;
	text-decoration:none;
	font-weight:normal;
}



/* ### Pictogramme ### */
.picto,
.picto a
{
	display:inline-block;
	width:20px;
	height:20px;
}

.picto_cart			{	background:url('icons.png')    0px   0px no-repeat scroll;	}
.picto_cart_gr		{	background:url('icons.png')    0px -20px no-repeat scroll;	}
.picto_cart_ws		{	background:url('icons.png')    0px -40px no-repeat scroll;	}
.picto_cart_menu	{	background:url('icons.png')    0px -60px no-repeat scroll;	}
.picto_cart_menu_fat{	background:url('icons.png')    0px -80px no-repeat scroll;	}
.picto_eye			{	background:url('icons.png') -120px -60px no-repeat scroll;	}
.picto_eye_off		{	background:url('icons.png') -140px -60px no-repeat scroll;	}
.picto_lupe			{	background:url('icons.png') -120px -80px no-repeat scroll;	}


.picto_mid,
.picto_mid a
{
	display:inline-block;
	width:14px;
	height:14px;
}

.picto_dropdown		{	background:url('icons.png')  -20px   0px no-repeat scroll;	}
.picto_dropdown_gr	{	background:url('icons.png')  -20px -20px no-repeat scroll;	}
.picto_dropdown_ws	{	background:url('icons.png')  -20px -40px no-repeat scroll;	}
.picto_info			{	background:url('icons.png') -160px -66px no-repeat scroll;	}
.picto_discount		{	background:url('icons.png') -180px -66px no-repeat scroll;	}


.picto_small,
.picto_small a
{
	display:inline-block;
	width:10px;
	height:10px;
}

.picto_dropdown_small		{	background:url('icons.png') -20px  -80px no-repeat scroll;	}
.picto_dropdown_small_gr	{	background:url('icons.png') -20px  -90px no-repeat scroll;	}
.picto_dropdown_small_ws	{	background:url('icons.png') -20px -100px no-repeat scroll;	}
.picto_arrow_r_small		{	background:url('icons.png') -34px  -80px no-repeat scroll;	}
.picto_arrow_r_small_gr		{	background:url('icons.png') -34px  -90px no-repeat scroll;	}
.picto_arrow_r_small_ws		{	background:url('icons.png') -34px -100px no-repeat scroll;	}
.picto_arrow_rf_small		{	background:url('icons.png') -48px  -80px no-repeat scroll;	}
.picto_arrow_rf_small_gr	{	background:url('icons.png') -48px  -90px no-repeat scroll;	}
.picto_arrow_rf_small_ws	{	background:url('icons.png') -48px -100px no-repeat scroll;	}
.picto_arrow_rf_small_or	{	background:url('icons.png') -48px -110px no-repeat scroll;	}
.picto_star					{	background:url('icons.png') -60px    0px no-repeat scroll;	}
.picto_star_gr				{	background:url('icons.png') -60px  -20px no-repeat scroll;	}
.picto_star_ws				{	background:url('icons.png') -60px  -40px no-repeat scroll;	}
.picto_star_or				{	background:url('icons.png') -60px  -60px no-repeat scroll;	}
.picto_star_menu			{	background:url('icons.png') -60px  -80px no-repeat scroll;	}
.picto_smilie				{	background:url('icons.png') -80px    0px no-repeat scroll;	}
.picto_smilie_we			{	background:url('icons.png') -80px  -20px no-repeat scroll;	}
.picto_smilie_un			{	background:url('icons.png') -80px  -40px no-repeat scroll;	}
.picto_document				{	background:url('icons.png') -80px  -60px no-repeat scroll;	}
.picto_my_account			{	background:url('icons.png') -80px  -80px no-repeat scroll;	}





/* Close */
.picto_close
{
	position:absolute;
	width:20px;
	height:20px;
	top:-10px;
	right:-10px;
	background:url('icons.png') -100px -40px no-repeat scroll;
}

.picto_close a
{
	display:block;
	width:20px;
	height:20px;
	cursor: pointer;
}



/* ### Main ### */
#main_outer_wrapper
{
	position:absolute;
	z-index:10;
	width:100%;
}


#main_wrapper
{
	width:1000px;
	min-height:800px;
	margin:0 auto;
	border-color: #FFFFFF;
}


#topline
{
	position: fixed; /* absolute */
	top:-35px;
	margin:0;
	height:35px;
	width:100%;
	z-index: 1;
	border-bottom:1px solid #E08002; /* FF9100 FFC26A */
	background-color: #FFFFFF;
}











/* ### Head Menu ### */
#head_menu
{
	height:150px;
	margin:0 0 0 0; /* 10px 0 0 0 */
	padding:10px 0 0;
}


#freakware-logo
{
	display:inline-block;
	height:110px; /* 150 */
	width:170px;
	background: url('fw-logo_big_flat.png') no-repeat scroll 0% 0% transparent;
	margin:2px 25px 0 0;
	float:right;
}

#freakware-logo-lower
{
	display:inline-block;
	height:40px; /* 150 */
	width:170px;
	background: url('fw-logo_big_flat.png') 0px -110px no-repeat scroll transparent;
	margin:0px 25px 0 5px;
	float:left;
	/*background: url("../layout/fw-logo_big_flat.png") 5px -110px no-repeat scroll transparent;
	width:200px;*/
}


#head_menu_block
{
	display:inline-block;
	width:800px;
	padding-top: 20px;
	float:right;
}


/* ### Upper Menu ### */
#head_upper_menu
{
	margin:25px 100px 0 0;
	padding:0 10px;
	font-weight: normal;
	font-size: 9pt;
	width:auto;
	float:right;
	text-align:right;
	color:#333333;
	font-weight:normal;
}

#head_upper_menu:hover
{
	color:#000000;
	background-color:#FFFFFF;
}



/* ### Middle Menu ### */
#head_middle_menu
{
	width:800px;
	height:35px;
	font-size: 11pt;
	margin:5px 0 0 0;
	float:right;
	background-color: #1A171B; /* #FF9100 #1A171B */
	/*background: rgba(20,5,0,.8);*/
}

#middle-menu-pos
{
	width:700px;
	text-align: center;
	margin-top: 3px;
}

.middle-menu-but
{
	display:inline-block;
	padding:5px 0px 0px;
	width:83px; /* 95px */
}

.middle-menu-but a,
.middle-menu-but a:link,
.middle-menu-but a:visited,
.middle-menu-but span
{
    font-weight: normal;
    color: #FFFFFF;
    text-decoration: none;
	cursor: pointer;
}

.middle-menu-but a:hover,
.middle-menu-but a:active,
.middle-menu-but a:focus
{
	font-weight: bold;
    color: #FFFFFF;
}

.middle-menu-dropdown
{
	display:none;
	position: absolute;
	min-width:165px;
	border: 1px solid #F4F4F4;
	background-color: #1A171B;
	text-align: left;
	z-index: 100;
}

.middle-menu-dropdown a
{
	padding: 5px 10px;
	display: block;
}

.middle-menu-dropdown a:hover,
.middle-menu-dropdown a:active,
.middle-menu-dropdown a:focus
{
	font-weight: bold;
    color: #FFFFFF;
}



#head_ts_logo
{
	width:75px;
	position: relative;
	top:-58px; /* -35 */
	right:15px;
	/*margin-top: 8px;*/
	padding:0;
	float:right;
}




/* ### Lower Menu ### */
#head_lower_menu
{
	margin: 0;
	width:1000px;
	height:40px;
	padding:0;
	font-size:10pt;
	text-align:right;
	float:right;
}


#search_box
{
	float: left;
	display:inline-block;
	width:450px;
	text-align: left;
	padding-top:3px;
}

#search_field
{
	width:350px;
	height:25px;
	border:1px solid #c9c9c9;
	border-right-width:0;
	text-align:center;
	padding:2px;
}

#search_button
{
	width:70px;
	height:31px;
	margin-top:2px;
	border: 1px solid #ec863b;
    border-left-width: 0;
	background: url('lupe.png') center center scroll no-repeat #FD933A;
	margin:0;
	padding:0;
	color:#FFFFFF;
	text-align:center;
}

#search_button:hover
{
	background-color: #ED7F25;
}




#head_lower_menu.fixed
{
	position: fixed;
	top:0;
	left:0;
	width:100%;
	height:37px;
	margin:0 auto;
	z-index:110;
	
	-webkit-animation:dock_menu 1s; /* Chrome, Safari, Opera */
	animation:dock_menu 1s;
	
	border-bottom:1px solid #E08002; /* FF9100 FFC26A */
	background-color: #0A0A0A;
	background: rgba(10,10,10,.8); /* 20,5,0,.8 */
}

@-webkit-keyframes dock_menu
{
	from {
		background:transparent;
		border-bottom:1px solid transparent;
	}
	to {
		background:rgba(10,10,10,.8);
		border-bottom:1px solid #E08002;
	}
}

@keyframes dock_menu
{
	from {
		background:transparent;
		border-bottom:1px solid transparent;
	}
	to {
		background:rgba(10,10,10,.8);
		border-bottom:1px solid #E08002;
	}
}





#head_lower_menu.fixed > div > #cart_box > #cart_box_dropdown,
#head_lower_menu.fixed > div > #cart_box > #cart_box_overview
{
	color:#E7E7E7;
}


#head_lower_menu.fixed #cart_pict
{
	background:url('icons.png') 0px -20px no-repeat scroll;
}

#head_lower_menu.fixed #cart_dropdown
{
	background:url('icons.png') -20px -20px no-repeat scroll;
}



/* Mein Konto */
#my_account_dropdown
{
	/*display:inline-block;
	width:10px;
	height:10px;
	margin-left:5px;
	background:url('icons.png') -20px -80px no-repeat scroll;
	*/
}

#my_account_menu
{
	display:none;
	position:absolute;
	z-index: 100;
	width:250px;
	min-height:150px;
	margin-left:-93px;
	border: 1px solid var(--content-border-color); /* #DCDCDC */
	background-color: var(--content-bg-color); /* #FFFFFF */
	box-shadow: 0px 0px 8px #7A7A7A;
	cursor: default;
	
	font-size: 10pt;
	line-height: 160%;
	font-weight: normal;
	color: #555;
}




/* Login / Logout */
#my_account_login_button
{
	 background-color:#FD933A;
	 color:#FFFFFF;
	 border:0;
}


#my_account_logout_button
{
	 background-color:#FD933A;
	 color:#FFFFFF;
	 border:0;
}






/* ### Warenkorb Vorschau ### */
#cart_box
{
	float: left;
	display:inline-block;
	width:300px;
	padding-top:8px;
	margin:0 25px 0 0;
	text-align:right;
}

#cart_box_dropdown
{
	display:inline-block;
	width:130px;
	text-align:center;
	font-size:10pt;
	color:#111111;
	font-weight:bold;
}

#cart_box_overview
{
	display:inline-block;
	width:auto;
	text-align:right;
	font-size: 8pt;
	color:#111111;
	line-height:120%;
}

#cart_pict
{
	margin-left:10px;
}

#cart_dropdown
{
	margin-left:3px;
}






#cart_preview
{
	display:none;
	position:absolute;
	z-index: 100;
	width:350px;
	min-height:300px;
	margin-left:-93px;
	border:1px solid var(--content-border-color); /* #DCDCDC */
	background-color: var(--content-bg-color); /* #FFFFFF */
	box-shadow: 0px 0px 8px #7A7A7A;
	cursor: default;
	
	font-size: 10pt;
	line-height: 160%;
	font-weight: normal;
	color:var(--main-text-color);
}






.small_wk_items
{
	width:330px;
	margin:0 auto;
}

.small_wk_items td
{
	line-height: 120%;
}

.small_wk_items td.item_name
{
	width:270px;
	text-align:left;
}

.small_wk_items td.item_pic
{
	width:60px;
	text-align:center;
}

.small_wk_items td.item_amount
{
	width:200px;
	text-align:left;
}

.small_wk_items td.item_price
{
	width:130px;
	text-align:right;
}

.small_wk_items td.item_pic,
.small_wk_items td.item_amount,
.small_wk_items td.item_price
{
	padding-bottom:10px;
}

.small_wk_items td.item_amount .amount_text
{
	color:#888888;
}

.small_wk_items td.item_left
{
	width:200px;
	text-align:right;
}

.small_wk_items td.item_right
{
	width:130px;
	text-align:right;
}

.small_wk_items td.item_total
{
	font-weight: bold;
}



.small_wk_ci_preview:hover .small_wk_ci_preview_div
{
	display:block;
}


.small_wk_ci_preview_div
{
	display: none;
	position:absolute;
	margin-left: -30px;
	padding:10px;
	border:1px solid #111111;
	background-color: var(--content-bg-color); /* #FFFFFF */
	box-shadow: 0px 0px 8px #7A7A7A;
	width:300px;
}







#small_wk_buttons
{
	list-style: none;
	margin:0 10px 10px 10px;
	padding:0;
	line-height: 165%;
}

#small_wk_buttons li
{
	font-size: 10pt;
	text-align: center;
	margin:1px 0;
	padding:0px;
	border:1px solid #C9C9C9;
	background-color: #FBFBFB;
}

#small_wk_buttons li:hover
{
	background-color: #EEEEEE;
}

#small_wk_buttons li a
{
	display:block;
	padding:5px 0;
}

#small_wk_buttons li.checkout
{
	color:#FFFFFF;
	background-color: #FD933A;
	
}

#small_wk_buttons li.checkout:hover
{
	background-color: #ED7F25;
}

#small_wk_buttons li.checkout a,
#small_wk_buttons li.checkout a:hover,
#small_wk_buttons li.checkout a:link
{
	font-weight:bold;
	color:#FFFFFF;
}


#small_wk_fade_out
{
	position:relative;
	bottom:0;
	height:25px;
	margin-top: -35px;
	background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 80%);
}




/* ### Content ### */
#content
{
	min-height: 650px;
	margin:0;
	padding:5px 0;
	background-color: var(--content-bg-color); /* #FFFFFF */
	border: 1px solid var(--content-border-color); /* #E5E5E5 */
}


#content_left
{
	width:200px;
	float:left;
	border-right: 2px solid #F4F4F4; /* var(--content-border-color) */
}

#content_left_big
{
	width:780px;
	float:left;
	border-right: 2px solid #F4F4F4; /* var(--content-border-color) */
}

#content_mid
{
	width:600px;
	min-height:500px;
	float:left;

}

#content_right
{
	width:200px;
	min-height:500px;
	float:left;

}

#content_right_big
{
	margin-left:-2px;
	width:780px;
	border-left: 2px solid #F4F4F4; /* var(--content-border-color) */
}







/* ### Content Boxes ### */
.content_main_box
{
	display:inline-block;
	margin:5px 0;
	padding:5px 0;
	background-color: var(--content-bg-color); /* #FFFFFF */
	/* float:left; */
}



.content_box {
	
	display:inline-block;
	margin:5px 0;
	padding:5px 0;
	background-color: var(--content-bg-color); /* #FFFFFF */
	/* float:left; */
}



/* content_box > *
{
	clear:both;
} */



/* Small Content Box */
.content_box_small
{
	margin:5px 0;
	width:190px;
}


.content_box_small_top
{
	margin:0;
	width:190px;
	height:3px;
	background: url("content-box_backgr.png") no-repeat scroll top left transparent;
	border:0;
}

.content_box_small_bot
{
	margin:0;
	width:190px;
	height:3px;
	background: url("content-box_backgr.png") no-repeat scroll left -5px transparent;
	/*background-position: left -5px;*/
	border:0;
}

.content_box_small_mid {
	
	margin:0;
	width:188px;
	box-shadow:inset 0px 1px 0px 0px #ffffff;
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #f9f9f9), color-stop(1, #e9e9e9) );
	background:-moz-linear-gradient( center top, #f9f9f9 5%, #e9e9e9 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f9f9', endColorstr='#e9e9e9');
	
	display:inline-block;
	
	border-right:1px solid #dcdcdc;
	border-left:1px solid #dcdcdc;
	
}


.spacer_line
{
	 border-bottom:1px solid #F4F4F4; /* var(--content-border-color) */
}

.spacer_line_or
{
	 border-bottom:1px solid #FD933A;
}





/* ### Popups ### */
#info_box,
.function_box
{
	position:absolute;
	display:none;
	left:50%;
	top:40%;
	width:400px;
	min-height:250px;
	margin-left:-225px;
	padding:25px;
	border:solid 1px #000000;
	background-color: var(--content-bg-color); /* #FFFFFF */
	box-shadow: 0px 0px 8px #7A7A7A;
	z-index:20;
}


#pl_content
{
	position:absolute;
	display:none;
	width:400px;
	min-height:200px;
	background-color: var(--content-bg-color); /* #FFFFFF */
	border:solid 1px #000000;
	/*border: 1px solid #FD933A;*/
	box-shadow: 0px 0px 8px #7A7A7A;
	z-index:20;
}


.info_box_head
{
	font-weight: bold;
	font-size: 11pt;
	margin-bottom: 10px;
}











/* ### Site-Head ### */
#head
{
	width:998px;
	margin-top:10px;
	padding:0;
	background-color: var(--content-bg-color); /* #FFFFFF */
	border: 1px solid var(--content-border-color); /* #E5E5E5 */
}

#head_cats
{
	margin:0;
	float:left;
	width:198px;
	height:300px;
	background-color: var(--content-bg-color); /* #FFFFFF */
}





#mainp_categories
{
	list-style:none;
	margin:10px 30px;
	padding:0;
}

#mainp_categories li
{
	font-weight:normal;
	text-align:left;
	color:#333333;
	margin:0;
	padding:5px 0 5px 5px;
	border-bottom:1px solid #EEEEEE;
}

#mainp_categories li.end
{
	padding-top:10px;
	border-top:1px solid #EEEEEE;
	border-bottom:0;
}

#mainp_categories li a
{
	display:block;
}




#head_pic
{
	width:800px;
	height:300px;
	float:left;
}




/* ### Startseite ### */
.main_news_box
{
	width:530px;
	margin:0 auto;
	
}

.main_news_date
{
	float:left;
	width:100px;
	font-weight: bold;
}

.main_news_caption
{
	float:left;
	width:430px;
	margin:0;
	padding:0;
	font-size: inherit;
	font-weight: bold;
	text-align: left;
}

.main_news_content
{
	padding-top:10px;
	width:530px;
	clear:both;
}

.main_news_picture
{
	text-align: center;
	margin-top: 20px;
}

.main_news_add
{
	padding-top:20px;
}




.add_news_box
{
	margin-bottom:25px;
}


.add_news_date
{
	font-weight: bold;
}


.add_news_caption
{
	margin:0;
	padding:0;
	font-size: inherit;
	font-weight: bold;
}


.add_news_content
{
	padding-top:5px;
}


a.news_more_tag,
a.news_more_tag:link
{
	font-weight:bold;
}




.mainp_item_box,
.mainp_item_box_mid,
.mainp_item_box_small
{
	/* float:left; */
	display: inline-block;
	width:150px;
}

.mainp_item_box
{
	margin:0 20px 60px;
}

.mainp_item_box_mid
{
	margin:0 20px 60px 10px;
}

.mainp_item_box_small
{
	margin:0 0 60px;
}


.mainp_item_name_box
{
	min-height:70px;
}

.mainp_item_name
{
	padding: 0;
	margin: 0;
	font-size: inherit;
	text-align: left;
}

.mainp_item_picture
{
	height:150px;
	overflow: hidden;
	text-align: left;
}

.mainp_item_picture > img,
.mainp_item_picture > a > img
{
	max-width: 150px;
}

.mainp_item_price
{
	text-align: right;
	padding-top:10px;
	text-align: left;
}






/* Social Media Buttons */
.socialm_but
{
	width:70px;
	height:70px;
	margin-bottom:10px;
}

.socialm_but a
{
	display:inline-block;
	width:70px;
	height:70px;
}

.socialm_but_fb
{
	background: url('social-media_buttons.png') 0px  0px scroll;
}

.socialm_but_tw
{
	background: url('social-media_buttons.png') 0px -70px scroll;
}

.socialm_but_yt
{
	background: url('social-media_buttons.png') 0px -210px scroll;
}

.socialm_but_in
{
	background: url('social-media_buttons.png') 0px -280px scroll;
}

.socialm_but_in_mb
{
	background: url('social-media_buttons.png') 0px -560px scroll;
}

.socialm_but_in_kl
{
	background: url('social-media_buttons.png') 0px -490px scroll;
}

.socialm_but_tt
{
	background: url('social-media_buttons.png') 0px -350px scroll;
}




.socialm_but_sm
{
	display:inline-block;
	width:50px;
	height:50px;
	margin-bottom:10px;
}

.socialm_but_sm a
{
	display:inline-block;
	width:50px;
	height:50px;
}

.socialm_but_sm_fb
{
	background: url('social-media_buttons_small.png') 0px  0px scroll;
}

.socialm_but_sm_tw
{
	background: url('social-media_buttons_small.png') 0px -50px scroll;
}

.socialm_but_sm_yt
{
	background: url('social-media_buttons_small.png') 0px -150px scroll;
}

.socialm_but_sm_in
{
	background: url('social-media_buttons_small.png') 0px -200px scroll;
}

.socialm_but_sm_in_kl
{
	background: url('social-media_buttons_small.png') 0px -350px scroll;
}

.socialm_but_sm_in_mb
{
	background: url('social-media_buttons_small.png') 0px -400px scroll;
}

.socialm_but_sm_tt
{
	background: url('social-media_buttons_small.png') 0px -300px scroll;
}








/* Breadcrumbs */
#breadcrumbs
{
	list-style: none;
	margin:6px 10px 0 20px;
	padding:0;
}

.bcpath
{
	list-style: none;
	margin:0;
	padding:0;
	/*display: block;
	clear: both;*/
	height:15px;
}

#breadcrumbs li
{
	display: inline;
}

.bcpath li
{
	/*float:left;*/
	display: inline;
	padding:0px;
	line-height: 100%;
}

#breadcrumbs li.breadcrumb_self,
#breadcrumbs li.breadcrumb_last,
#breadcrumbs li.breadcrumb_last a
{
	font-weight:bold;
}

#breadcrumbs li.breadcrumb_last h1,
#breadcrumbs li.breadcrumb_last h2,
#breadcrumbs li.breadcrumb_last h3,
#breadcrumbs h1,
#breadcrumbs h2,
#breadcrumbs h3
{
	display:inline;
	font-size:inherit;
	font-weight:bold;
	padding:0px;
	margin:0px;
	width:auto;
}

#breadcrumbs li.clear,
.bcpath li.clear
{
	clear:both;
}

#breadcrumbs li.breadcrumb_norm:before,
#breadcrumbs a.breadcrumb_norm:before,
#breadcrumbs li.breadcrumb_last:before,
#breadcrumbs a.breadcrumb_last:before,
#breadcrumbs h1.breadcrumb_last:before,
#breadcrumbs h2.breadcrumb_last:before,
#breadcrumbs h3.breadcrumb_last:before,
.bcpath li.bcpath_norm:before,
.bcpath li.bcpath_last:before
{
	content: url('arrow_right_small.png');
	/*content: '<div class="picto_small picto_arrow_r_small"></div>';*/
	margin:0 5px;
}





/* ### Mainmenu ### */
#mainmenu
{
	margin-right:10px;
	margin-top:7px;
}


ul.mainmenu_wgr
{
	max-width:100%;
	list-style-type:none;
	margin:0 10px 0 0;
	margin:0;
	padding:0 0 0 10px;
	border:0;
}

ul.mainmenu_wgr li
{
	padding:0px 0px 0px 0px;
	line-height: 160%;
}

ul.mainmenu_wgr li.norm
{
	border:0px;
	margin:0px;
	padding:0px;
}

ul.mainmenu_wgr li.norm_space
{
	border:0px;
	margin:5px 0px 0px 0px;
}

ul.mainmenu_wgr li.norm_space_mid
{
	border:0px;
	margin:10px 0px 0px 0px;
}

ul.mainmenu_wgr li.norm_space_wide
{
	border:0px;
	margin:20px 0px 0px 0px;
}



ul.mainmenu_wgr li.inner_ul
{
	border:1px solid transparent;
	border-right:0;
	margin:0;
	padding:0;
}

ul.mainmenu_wgr li.inner_ul li:first-child
{
	border-top:1px solid var(--mainmenu-line-color); /* #F4F4F4 */
}

ul.mainmenu_wgr li.inner_ul li:last-child
{
	border-bottom:1px solid var(--mainmenu-line-color); /* #F4F4F4 */
}



ul.mainmenu_wgr li.inner_ul:hover > li
{
	/*background:transparent;*/
	border-left:1px solid var(--mainmenu-line-color); /* #F4F4F4 */
}


ul.mainmenu_wgr li a
{
	display:block;
	margin:0px;
	padding:0 0 0 10px;
	font-size:9pt;
	text-decoration:none;
}

ul.mainmenu_wgr li a:hover,
ul.mainmenu_wgr li a.menue_act:hover
{
	background-color:#FD933A;
	color:#FFFFFF; /* #473E36 */
	text-decoration:none;
}



a.menue:link,
a.menue:visited { color:#000000; }

a.menue_a:link,
a.menue_a:visited { color:#473E36; }

a.menue_b:link ,
a.menue_b:visited { color:#000000; }

a.menue_c:link,
a.menue_c:visited { color:#473E36; }

a.menue_d:link,
a.menue_d:visited { color:#000000; }

a.menue_e:link,
a.menue_e:visited { color:#473E36; }

ul.mainmenu_wgr li a.menue_act,
ul.mainmenu_wgr li a.menue_act:link,
ul.mainmenu_wgr li a.menue_act:visited
{
	color:#FD933A;
	font-weight: bold;
}

ul.mainmenu_wgr li a.menue_act:hover
{
	color:#FFFFFF; /* #473E36 */
}




/* ### Mobile Settings ### */
ul.mainmenu_wgr.mobile:first-child
{
	margin-left: 5px;
}

ul.mainmenu_wgr.mobile li,
ul.mainmenu_wgr.mobile li.norm,
ul.mainmenu_wgr.mobile li.norm_space
{
	border-bottom:1px solid var(--mainmenu-line-color); /* #F4F4F4 */
	margin-left:0px;
}

ul.mainmenu_wgr.mobile li a,
ul.mainmenu_wgr.mobile li.norm a,
ul.mainmenu_wgr.mobile li.norm_space a
{
	padding:3px 0px 1px 5px;
}

ul.mainmenu_wgr.mobile li.inner_ul li:first-child
{
	border-top:0px;
}

ul.mainmenu_wgr.mobile li.inner_ul li:last-child
{
	border-bottom:0px;
}













/* ### Artikelanzeige ### */


/* Text unter Bild */
.pic_text_arts,
.pic_text_artd
{
	color:#666666;
	font-size:7.5pt;
}



.preis_hinw
{
	font-size:7pt;
	color:#AAAAAA; /* 333333 */
}



/* Preisanzeige */
.art_preis,
.artd_preis,
.arts_preis,
.show_price_d 		  { font-size:18pt; color:#444444; font-weight:normal; }

.art_preis_dec,
.artd_preis_dec,
.arts_preis_dec,
.show_price_d_comma   { font-size:18pt; color:#444444; font-weight:normal; vertical-align: 4px; }

.art_preis_cur,
.artd_preis_cur,
.arts_preis_cur,
.show_price_d_current { font-size:17pt; color:#444444; font-weight:normal; }


.art_preis_new,
.artd_preis_new,
.arts_preis_new,
.show_price_d_b 		{ font-size:18pt; color:#FF0000; font-weight:normal; }

.art_preis_dec_new,
.artd_preis_dec_new,
.arts_preis_dec_new,
.show_price_d_comma_b   { font-size:18pt; color:#FF0000; font-weight:normal; vertical-align: 4px; }

.art_preis_cur_new,
.artd_preis_cur_new,
.arts_preis_cur_new,
.show_price_d_current_b { font-size:17pt; color:#FF0000; font-weight:normal; }


.art_preis_old,
.artd_preis_old,
.arts_preis_old,
.show_price_old		    { position: relative; font-weight:normal; /* text-decoration:line-through; */ }

.art_preis_old span,
.artd_preis_old span,
.arts_preis_old span,
.show_price_old span
{
	width: 100%;
	border: 1px solid red;
	height: 0px;
	transform: rotate(-10deg);
	position: absolute;
	top: 50%;
	left: 0;
	opacity: 0.7;
}


.art_preis_cur_old,
.artd_preis_cur_old,
.arts_preis_cur_old,
.show_price_old_current { font-weight:normal; }

/*
.art_preis,
.art_preis_new			{ font-size:18pt; }

.art_preis_dec,
.art_preis_dec_new		{ font-size:18pt; }

.art_preis_cur,
.art_preis_cur_new		{ font-size:17pt; }
*/






.artd_disount_tab
{
	margin-top: 5px;
}

.artd_disount_tab th,
.artd_disount_tab td
{
	padding: 1px 1px 0 0;
}

.artd_disount_tab td.scale_price_amount
{
	text-align: right;
	padding-right: 5px;
}

.artd_disount_tab td.scale_price_price
{
	text-align: right;
}




/* Preishinweis zzgl. Mwst */
.preis_hinweis
{
	font-size:7pt;
	color:#AAAAAA;
}

.preis_hinweis a:link, 
.preis_hinweis a:visited
{
	color:#AAAAAA;
	text-decoration:underline;
}

.preis_hinweis a:hover, 
.preis_hinweis a:active, 
.preis_hinweis a:focus
{
	color:#FD933A;
	text-decoration:underline;
}

.basic_price
{
	font-size: 7pt;
	color: var(--main-text-color);
}



















/* ### Links Artikelbeschreibung ### */
a.break_txt,
a.break_txt:link,
a.break_txt:visited
{
	font-weight:bold;
}

a.item_desc,
a.item_desc:link,
a.item_desc:visited
{
	font-weight:normal;
	color: inherit;
	text-decoration:underline;
}

a.item_desc:hover,
a.item_desc:active,
a.item_desc:focus
{
	color:#FD933A;
}

a.item_desc:before
{
    content: url('arrow_right_mid_or.png');
}




/* ### Artikelseite ### */
.arts_header
{
	display: block;
	margin: 10px 0 0px 10px;
	padding-bottom:10px;
}

.arts_header_pic
{
	display: inline-block;
	width: 150px;
	vertical-align:top;
	margin: 0px 10px 10px;
}

.arts_header_desc
{
	display: inline-block;
	width: 550px;
	vertical-align:top;
	margin: 0px 10px 10px;
}

.arts_header_caption
{
	font-size: 11pt;
	padding: 0px 10px;
	margin: 0px;
}

.arts_header_text
{
	display: block;
	margin: 10px 0px 0px 10px;
}



#arts_top_menu td
{
	width:170px;
	padding:0 15px 0 5px;
}

#arts_top_menu td:first-child
{
	width:160px;
}

#arts_top_menu th.nowrap,
#arts_top_menu td.nowrap
{
	white-space:nowrap;
}

#arts_top_menu.mobile td
{
	padding:5px 15px 0 5px;
}


#arts_site_menu
{
	display:flex;
	align-items:center;
	justify-content:center;
	flex-wrap:wrap;
	margin:5px 0 0;
}

#arts_site_menu .arts_site_menu_cont
{
	display:inline-block;
	min-width:150px;
	margin:15px 15px 10px 15px;
}



.arts_artikel
{
	position: relative;
	margin-left: 10px;
	margin-bottom: 10px;
}

.arts_preview
{
	outline: 1px dashed #FF9C9C;
	padding-top:1px;
}

.arts_preview > label
{
	position: absolute;
	top: -7.5px;
	left: 8px;
	padding: 0 3px;
	color: #f28d8d;
	background-color: var(--content-bg-color); /* #FFFFFF */
	line-height: 100%;
}

.arts_artikel_name
{
	margin: 15px 0;
}

.arts_artikel_name a
{
	/*display:block;*/
}

.arts_artikel_name a h1,
.arts_artikel_name a h2,
.arts_artikel_name a h3
{
	display:inline-block;
	font-size: 11pt;
	padding:0 10px;
	margin: 0;
}


.arts_artikel_content
{
	margin-left:0px;
	min-height:100px;
}

.arts_artikel_content > div
{
	vertical-align: top;
}

.arts_artikel_pic
{
	display:inline-block;
	width:150px;
	/* float:left; */
	margin:0 10px 10px;
	min-height:100px;
}

.arts_artikel_desc
{
	display:inline-block;
	width:350px;
	/* float:left; */
	margin:0px 20px 10px;
}

.arts_artikel_desc .diff_lang_tag
{
	text-align:left;
	font-weight:bold;
	margin-bottom:5px;
}

.arts_artikel_buybox
{
	display:inline-block;
	width:188px;
	/* float:left; */
	padding:0 10px 10px;
}


.arts_artikel_buybox .show_price_d,
.arts_artikel_buybox .show_price_d_b
{
	font-size: 15pt;
}

.arts_artikel_price_box
{
	width: auto;
	text-align: left;
	margin:0px 0 0 10px;
	line-height: 120%;
}

.arts_artikel_stockstatus
{
	margin:10px 0 15px 10px;
	text-align:left;
}

.arts_artikel_buy_button,
.arts_artikel_conf_button
{
	width:168px;
	margin-left:10px;
	padding-bottom:2px;
}

.arts_artikel_vari_button
{
	margin:5px 0 0 10px;
	width:168px;
}

.arts_remark
{
	margin: 0 0 10px 10px;
	padding: 0 20px 0 10px;
}

.arts_free
{
	margin: 0 0 10px 10px;
}

a.art_more_tag,
a.art_more_tag:link,
a.art_more_tag:visited
{
	font-weight:bold;
}


/* Box View*/
.arts_content.arts_content_box
{
	display: flex;
	flex-wrap: wrap;
}

.arts_content.arts_content_box .arts_artikel
{
	position:relative;
	width: 235px;
	max-width: 270px;
	margin: 0 0 30px 20px;
	padding-top: 10px;
	padding-bottom: 60px;
	border: 1px solid #F4F4F4;
}

.arts_content.arts_content_box .arts_artikel_name
{
	height: 76px;
	margin: 5px 0 15px;
}

.arts_content.arts_content_box .arts_artikel_name a h2
{
	padding: 0 15px;
}

.arts_content.arts_content_box .arts_artikel_name a h3
{
	padding: 0 15px;
	font-size: 9pt;
	font-weight: normal;
}

.arts_content.arts_content_box .arts_artikel_pic
{
	/* float: none; */
	display: block;
	height: 150px;
	margin: 0 auto 10px;
}

.arts_content.arts_content_box .arts_artikel_pic img
{
	max-height: 150px;
}

.arts_content.arts_content_box .arts_artikel_buybox
{
	/* float: none; */
}



/* Inline Filter */
.filter_box
{
	display:inline-block;
	margin-right:10px;
	padding:5px;
	width:170px;
}

.filter_select
{
	position:relative;
	border:1px solid #B2B7B2;
	background-color:#FFFFFF;
	padding:2px 5px;
}

.filter_select:after
{	
	position: absolute;
	content: '>';
	right:0;
	top:5%;
	font: 14pt "Consolas", monospace;
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
	margin-right:4px;
}

.filter_select_options
{
	position:absolute;
	display:none;
	min-width:150px;
	padding: 5px;
	border:1px solid #B2B7B2;
	background-color:#FFFFFF;
	box-shadow: 0px 0px 8px #7A7A7A;
	z-index: 1;
}

.filter_counter_badge
{
	display:inline-block;
	min-width: 12px;
	height:14px;
	background-color: #999999;
	border:0px solid #EEEEEE;
	color:#FFFFFF;
	border-radius:7px; 
	font-size:8pt;
	font-weight: bold;
	padding:0 3px 0 3px;
	margin-left: 5px;
	text-align:center;
	line-height: 130%;
}

.filter_act_main
{
	display:inline-block;
	border:1px solid #C9C9C9;
	background-color: #F0F0F0;
	padding:1px;
	margin:10px 0 0 5px;
	border-radius:5px;
}

.filter_act_main_close
{
	display:inline-block;
	padding:0 0 2px 6px;
	font-family: "Consolas", monospace;
	font-size: 13pt;
	font-weight:bold;
	color: #4d0000;
	cursor:pointer;
}

.filter_act_select
{
	display:inline-block;
	border:1px solid #D9D9D9;
	background-color: #FFFFFF;
	padding:2px 5px 0;
	margin-left:5px;
	border-radius:5px;
}

.filter_act_select span
{
	font-family: "Consolas", monospace;
	font-weight:bold;
	font-size: 11pt;
	color: #500;
}






/* ### Artikeldetails ### */
.buybox
{
	padding:0px;
	margin:0 0 0 10px;
	/*background-color: #F4F4F4; /* #FEFEFE #F5F5F5 */
	/*border: 2px solid #F4F4F4; /* #FEFEFE #F5F5F5 */
}

.buy_button_box
{
	border:1px solid #FD933A;
	background-color:#FD933A;
	/*border-radius: 3px;*/
}

.buy_button_box:hover
{
	background-color:#ED7F25;
}


.buy_button,
.buy_button:link,
.buy_button:visited,
.reminder_button,
.reminder_button:link,
.reminder_button:visited
{
	display:block;
	/*float:left;*/
	border:0;
	padding-top:2px;
	border:1px solid #FD933A;
	background-color:#FD933A;
	color:#FFFFFF;
	font-weight:normal;
	font-size:12pt;
	text-align:left;
	vertical-align:bottom;
}

.buy_button:hover,
.buy_button:active,
.buy_button:focus,
.reminder_button:hover,
.reminder_button:active,
.reminder_button:focus
{
	background-color:#ED7F25;
	border-color: #0800ff;
}

.reminder_button
{
	font-size:inherit;
}

.buy_button a,
.buy_button a:hover,
.buy_button a:link,
.reminder_button a,
.reminder_button a:hover,
.reminder_button a:link
{
	color:#FFFFFF;
}



.artd_artikel_name h1,
.artd_artikel_name h2,
.artd_artikel_name h3
{
	display:inline-block;
	font-size: 14pt;
	font-weight: normal;
	padding:0 10px;
	margin: 0;
}


.artd_hr
{
	height:1px;
	border:0px;
	background-color:#c9c9c9;
	margin: 10px;
}


.artikel_info
{
	border: 0;
	margin:0px 0 0 10px;
	border-width:0px;
	border-spacing:0px;
	border-collapse:collapse;
	table-layout:fixed;
	line-height: 130%;
}

.artikel_info tr
{
	margin:0;
	padding:0;
}

.artikel_info td
{
	margin:0;
	padding: 0 10px 0 0;
}




.artd_old_price,
.arts_old_price
{
	/*font-size:10pt;*/
	margin:0 0 10px 0;
	color: #888888;
}

#artd_options
{
	/*list-style-image: url('../layout/arrow_right_small.png');*/
	list-style: none;
	padding:0;
	line-height: 165%;
}

#artd_options li
{
	margin:5px 0;
	padding:2px 5px;
	border:1px solid #C9C9C9;
	background-color: #FBFBFB;
}

#artd_options li:hover
{
	background-color: #EEEEEE;
}

#artd_options li img
{
	margin-right:5px;
	border:0;
}



#artd_notepads
{
	list-style: none;
	padding:0;
}

#artd_notepads li
{
	margin:3px 0;
	padding:7px 5px 5px;
	/*color:#FFFFFF;*/
	border:1px solid #E0E0E0;
	background-color: #E0E0E0;
	font-weight: normal;
	text-align: center;
}

#artd_notepads li:hover
{
	background-color: #EEEEEE;
}


#artd_notepads li img
{
	margin-right:5px;
	border:0;
}


.artd_description
{
	text-align:left;
	padding:10px;
	margin:10px 0;
}

.artd_description .diff_lang_tag
{
	text-align:left;
	font-weight:bold;
	margin-bottom:10px;
}

.artd_description .youtube
{
	width:500px;
	height:281px;
	border:0;
}

.pictures #pic
{
	max-width: 500px;
}

.add_pictures img
{
	margin:5px;
}

#variant_box_hint
{
	font-weight: bold;
}

.artd_choose_hint
{
	display: inline-block;
	width: 200px;
	padding: 5px 10px;
	background-color: #FD933A;
	color: white;
}




/* ### Konfigurator ### */
.konf_artikel_name h1,
.konf_artikel_name h2,
.konf_artikel_name h3
{
	display:inline-block;
	font-size: 14pt;
	font-weight: normal;
	padding:0 10px;
	margin: 0;
}


.konf_item_selected td
{
	background-color: #EEE;
}






/* ### Suche ### */
#more_results_but
{
	width:500px;
	/*border:1px solid black;*/
	margin:40px auto 20px auto;
	padding:10px 0;
	text-align:center;
	/*font-size:10pt;*/
	/*font-weight:bold;*/
	cursor:pointer;
}




/* ### Artikel gekauft ### */
#arts_item_bought,
#artd_item_bought
{
	display:inline-block;
	height:20px;
	padding: 7px 0px 3px 10px; /* 180 175 */
	margin: 0px 10px 0 20px;
	font-weight: bold;
	border-left: 5px solid #19FF00;
	outline: 1px solid #C9C9C9; /* #F4F4F4 */
}

#arts_item_bought
{
	width:544px;
}


#arts_item_bought_co,
#artd_item_bought_co
{
	display:inline-block;
	height: 23px;
	padding: 7px 0 0 0; /* 0px */
	text-align:center;
	color: #FD933A; /* FD933A */
	background-color: transparent;
	border: 1px solid #C9C9C9; /* F4F4F4 FD933A */
	cursor: pointer;
}

#arts_item_bought_co
{
	width: 170px;
}


#arts_item_bought_co:hover,
#artd_item_bought_co:hover
{
	border: 1px solid #FD933A;
}

#arts_item_bought_co a,
#artd_item_bought_co a
{
	display:block;
	height: 30px;
	padding: 7px 0px 0px;
	font-size: 10pt;
}












/* ### Lagerstatus ### */
.stock_status
{
	display:inline-block;
	height:10px;
	width:10px;
	border:1px solid #473E36;
}

.stock_status_inner
{
	display: block;
	width:5px;
	height:10px;
	margin-left: 5px;
	border:0;
}

.stock_status_gn
{
	background-color: limegreen;
}

.stock_status_ye
{
	background-color: yellow;
}

.stock_status_rd
{
	background-color: red;
}

.stock_status_bl
{
	background-color: blue;
}





/* ### News ### */
.news_entry
{
	margin-left: 10px;
	margin-top: 50px;
}

.news_headline
{
	margin: 15px 0;
}

.news_date
{
	width: 100px;
}

.news_headline a h1,
.news_headline a h2,
.news_headline a h3,
.news_headline h1,
.news_headline h2,
.news_headline h3
{
	display:inline-block;
	font-size: 11pt;
	padding:0 10px 0 20px;
	margin: 0;
}


.news_content
{
	margin-left:0px;
	min-height:100px;
}





/* ### Blog ### */
.blog_list_entry
{
	margin: 50px 30px 0 30px;
}

.blog_list_keyword
{
	display:inline-block;
	padding:0;
	margin-left:0;
}

.blog_list_headline
{
	margin: 15px 0 15px 0px;
}

.blog_list_date
{
	width: 100px;
}

.blog_list_caption
{
	display:inline-block;
	width:auto;
	font-size: 11pt;
	padding:0;
	margin:0;
}

.blog_list_header
{
	margin-top:5px;
}

.blog_list_content
{
	margin:20px 0 20px 0px;
	min-height:100px;
}

.blog_preview_pic
{
	max-width:500px;
}

.blog_list_more_but,
.blog_list_more_but:link,
.blog_list_more_but:visited
{
	display:inline-block;
	min-width:150px;
	text-align:center;
	font-size: 11pt;
	padding:5px 0;
	margin:20px 0 0;
	color: #FFFFFF;
	background-color: #FD933A;
	border: 1px solid #FD933A;
}

.blog_menu_keyword
{
	display:inline-block;
	padding:5px 10px;
	margin:0 10px 3px 0;
	background-color:#ECECEC;
}

.blog_selected_keyword
{
	font-size: 12pt;
}

.blog_close
{
	color: #e10000; /* #FD933A */
	font-weight: bold;
}


.blog_entry
{
	/* width: 720px; */
	margin: 0 30px 50px 30px;
}

.blog_header
{
	margin-top: 15px;
}

.blog_date
{
	display:inline-block;
	margin-right: 50px;
}

.blog_keyword
{
	display:inline-block;
	padding:5px 10px;
	margin-left:5px;
	background-color:#ECECEC;
}

.blog_content
{
	margin-top:15px;
	min-height:300px;
}

.blog_picture
{
	float:right;
	margin:5px 0 20px 20px;
	max-width: 500px;
}








/* ### RSS Tabelle ### */
.feed_list
{
	float:right;
	width:70px;
	margin:0;
	padding:0;
}

.feed_list td
{
	width:35px;
	border-bottom:1px solid #F4F4F4;
	text-align: right;
}







/* ### Konto ### */
#content_wrapper
{
	width: 700px;
	margin: 50px auto;
}

.account_menu
{
	width:700px;
	margin:30px auto 0;
}

.account_menu td
{
	vertical-align:top;
	width: 33%;
}

.account_menu td:first-child
{
	width: 34%;
}

.account_order_canceled
{
	color:#FF0000;
}


#account_order_info_box_l,
#account_order_info_box_m,
#account_order_info_box_r
{
	display:inline-block;
	float:left;
	min-height:20px;
	margin:0 50px 20px 0;
}

#account_order_info_box_l
{
	width:200px;
}


#account_order_info_box_m
{
	width:250px;
}

#account_order_info_box_r
{
	width:200px;
	margin-right:0;
}



.account_list_backorders.col_a
{
	width:40px;
}

.account_list_backorders.col_b
{
	width:80px;
}

.account_list_backorders.col_c
{
	width:auto;
}

.account_list_backorders.col_d
{
	width:30px;
}




/* Lieferadressbox */
.delivery_addr_box
{
	float:left;
	width:200px;
	height:220px;
	margin:0 25px 30px;
}
/*
.delivery_addr_box input
{
	font-size:9pt;
}
*/

.delivery_addr_box_new
{
	float:left;
	width:178px;
	height:180px;
	margin:0 25px 30px;
	padding:20px 10px;
	border: 1px dashed #E2E2E2;
}




/* ### Register / Edit Kunde ### */
.tab_register
{
	width:450px;
}

.tab_register td
{
	font-size:9pt;
	padding:0 0 5px 0;
}

.tab_register tr.spacer_big td
{
	padding:0 0 25px 0;
}

.tab_register td:first-child
{
	width:140px;
	vertical-align: top;
}

.tab_register td:last-child
{
	width:310px;
}

.tab_register td.mandatory_field
{
	font-weight:bold;
}

.tab_register td .info_text
{
	line-height: 140%;
}

.tab_register td .error_text
{
	color: #CC3333;
	line-height: 140%;
}


input.error_style,
textarea.error_style,
table.error_style,
table td.error_style
{
	border:1px solid #CC3333;
}


.login_header
{
	font-size:11pt;
	font-weight:bold;
}

.login_error
{
	font-size:12px;
	color:#CC3333;
	font-weight:bold;
}

.login_error_text
{
	color:#CC3333;
}

.mandatory_field_info
{
	font-size: 8pt;
	color:#999999;
}

.input_field_hint
{
	color:#CC3333;
}




/* ### Order ### */
#progress_bar
{
	float: left;
	width: 798px;
	height: 31px;
	margin-top: 0px;
	padding: 0px;
	background-color: var(--content-bg-color); /* #FFFFFF */
	border: 1px solid var(--content-border-color); /* #E5E5E5 */
}

#progress_bar div
{
	display:inline-block;
	width:200px;
	height:26px;
	padding-top: 5px;
	text-align:center;
}

#progress_bar div.active
{
	background-color:#FD933A;
	color:#000000;
}

#order_content_head
{
	width:800px;
	margin:0px auto 0;
}

.order_address_box,
.order_remark_box
{
	display:inline-block;
	vertical-align:top;
}

.order_address_box
{
	width:230px;
	margin-right:40px;
}

.order_remark_box
{
	width: 250px;
}





/* ### Sendorder ### */
.payment_button
{
	border:1px solid #FD933A !important;
	/*background-color:#FD933A;*/
	/*color:#FFFFFF;*/
	font-weight:bold;
	/*font-size:13pt;*/
	text-align:center;

}




/* ### Div ### */
.tab_wkorb
{
	border:1px solid #CCCCCC;
	border-spacing: 0;
}

.tab_wkorb tr
{
	margin: 0;
	padding: 0;
}

.tab_wkorb th
{
	color:#333333;
	background-color: var(--main-bg-color);
	font-size: 10pt;
	font-weight:bold;
	padding: 2px 5px;
	/*text-align: left;*/
}

.tab_wkorb td
{
	font-weight:normal;
	color:#333333;
	background-color: #FFFFFF;
	padding: 2px 5px;
	margin: 0;
	border:0;
	line-height: 130%;
}

.tab_wkorb tr.nlc td
{
	color:#333333;
	background-color: #F1F1F1;
}

.tab_wkorb tr.nlc input[type=submit],
.tab_wkorb tr.nlc input[type=button]
{
	background-color: #FFFFFF;
}

.tab_wkorb tr.bold td,
.tab_wkorb td.bold
{
	font-weight:bold;
}

.tab_wkorb tr.hover:hover td
{
	background-color: #FD933A;
}

.tab_wkorb td a,
.tab_wkorb td a:hover,
.tab_wkorb td a:link
{
	color: inherit;
}

.tab_wkorb td a.delete,
.tab_wkorb td a.delete:hover,
.tab_wkorb td a.delete:link
{
	color: #DD0000;
}




.wkorb_lstatus
{
	font-size: 7.5pt;
	color:#000000;
}

.wkorb_lstatus_err
{
	font-size: 7.5pt;
	color:#DD0000;
}



/* ### Tabelle Payment Matrix ### */
.tab_payment
{
	border-spacing: 0;
	border-collapse: collapse;
}

.tab_payment th,
.tab_payment td
{
	padding:5px 5px;
	border-style:solid;
	border-width:0 1px 1px 0;
	line-height: 130%;
	height: 32px;
}

.tab_payment th.corner,
.tab_payment td.corner
{
	border-top:2px solid transparent;
	border-left:2px solid transparent;
	min-width: 160px;
}

.tab_payment th.ps
{
	border-width:2px;
}

.tab_payment th.pm
{
	border-width:2px;
	min-width: 160px;
}

.tab_payment td.free
{
	background-color:#C2FD9B;
}

.tab_payment th.highlight
{
	color:#000000;
	background-color:#FD933A;
}

.tab_payment td.center
{
	text-align: center;
}




.tab_payment_inline_wrapper
{
	width:450px;
	margin: 0 auto 80px;
}


.tab_payment_inline
{
	border-spacing: 0;
	border-collapse: collapse;
}

.tab_payment_inline tr
{
	padding:5px 5px;
	border-style: solid;
	border-color: #BBBBBB; /* #555555; */
	border-width:1px 0;
	line-height: 130%;
	height: 60px;
}

.tab_payment_inline tr.selectable td
{
	cursor:pointer;
}

.tab_payment_inline tr.selected td
{
	background-color:#B9FD74; /* #FD933A */
}


.tab_payment_inline td
{
	vertical-align:middle;
}

.tab_payment_inline td.center
{
	text-align:center;
}

.tab_payment_inline td.right
{
	text-align:right;
}

.tab_payment_inline td.free
{
	background-color:#ddffc6; /* #C2FD9B */
}









/* ### Liste Versandkosten ### */

.tab_shipping_cost
{
	border-spacing: 0;
	border-collapse: collapse;
}

.tab_shipping_cost th,
.tab_shipping_cost > tbody > tr > td
{
	padding:5px 5px;
	border-right:1px solid grey;
	line-height: 130%;
	vertical-align:top;
}


.tab_shipping_cost th
{
	font-weight:bold;
	border-right:1px solid transparent;
}

.tab_shipping_cost > tbody > tr > td
{
	border-right:1px solid #C9C9C9;
}

.tab_shipping_cost th:last-child,
.tab_shipping_cost > tbody > tr > td:last-child
{
	border-right:0;
}


.tab_shipping_cost td.center,
.tab_shipping_cost_list td.center
{
	text-align: center;
}

.tab_shipping_cost td.right,
.tab_shipping_cost_list td.right
{
	text-align: right;
}


.tab_shipping_cost_list td
{
	padding:0px 5px;
	white-space:nowrap;
}

.tab_shipping_cost_list td:last-child
{
	padding-left:15px;
}





/* ### Partfinder ### */

.partl_group_header
{
	padding:10px;
	border: 1px solid #c9c9c9;
	background-color: #ececec;
	font-weight:bold;
}

.partl_group_older
{
	margin: 0 20px;
	padding: 5px 10px;
	background-color: #c9c9c9;
}

.partl_group_dropdown
{	
	display: inline-block;
	font: 14pt "Consolas", monospace;
	font-weight: bold;
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
	margin: 0 10px;
}








/* ### Div ### */
#back_to_top
{
	display:none;
	position:fixed;
	width:40px;
	height:40px;
	bottom:40px;
	right:5%;
	cursor: pointer;
	z-index: 100;
	
	background: url("icons.png") -100px 0px;
	-webkit-transition-duration: 0.4s; 
	-moz-transition-duration: 0.4s; 
	transition-duration: 0.4s;
}



/* Seiten Buttons */
.site_button,
.site_button_spacer
{
	display:inline-block;
	position: relative;
	min-width: 30px;
	height:30px;
	border:1px solid #F4F4F4; /* #555555 */
	margin: 2px;
	text-align:center;
}

.site_button > a
{
	position: relative;
	display:block;
	min-width: 30px;
	height:30px;
	text-align:center;
}

.site_button a span,
.site_button_spacer span
{
	display: block;
	position: absolute;
	top: 6px;
	width: 100%;
	margin: auto;
	text-align: center;
}

.site_button:hover,
.site_button a:hover,
.site_button_active
{
	background-color: #FF8000;
	color: #000000;
}





/* ### Footer ### */
#footer_wrapper
{
	margin-top:15px;
	min-height: 500px;
	/* background: url("backg_lochbl_bottom_dark2.png") repeat-x scroll 0% 0% rgb(45, 47, 46); */
	background-color: #131313;
	border-top: 5px solid #FF9100; /* #FF9100 #E08002 */
}

@media screen and ( max-width: 1190px )
{
	#footer_wrapper
	{
		width:1000px;
		margin-right:auto;
		margin-left:auto;
	}
}

#footer
{
	font-size:9pt;
	font-weight:normal;
	line-height:165%;
	background: none;
	width:970px;
	min-height:420px;
	margin:0 auto;
	padding:0 15px;
}

.footer_header
{
	font-weight:bold;
	color:#FF8000;
}

.footer_big_box
{
	padding:0;
	float:left;
	width:750px;
}




.footer_box
{
	color:#B3B3B3;
	padding:20px 5px 0;
	float:left;
	min-height: 50px;
	width:150px;
}

.footer_box a,
.footer_box a:active
{
	color:#B3B3B3;
}


.footer_bo_box
{
	padding:20px 5px 10px;
	float:left;
	width:290px;
	min-height:140px;
	font-weight:bold;
}

.bo_name,
a.bo_name,
a.bo_name:link,
a.bo_name:active
{
	color:#FF8000;
	font-weight:bold;
}

a.bo_name:hover,
a.bo_name:focus
{
	color:#B3B3B3;
	text-decoration: underline;
}

.bo_address
{
	color:#B3B3B3;
}

.bo_closed
{
	font-weight:bold;
	color:#FF9100;
}


.footer_box_full
{
	padding:0;
	margin:0;
	float:left;
	width: 970px;
	height:1px;
}


.hor_ruler
{
	border-top:1px solid #B3B3B3;
}

hr.spacer
{
	width:90%;
	height:1px;
	border:0;
	background-color: #FF9100;
	margin:20px auto;
}


.render_time
{
	color:#222222;
}


#classic_switch
{
	margin: 15px auto 0;
	padding: 10px 0;
	background-color: #FD933A;
	color: #FFFFFF;
	border-top:1px solid #B3B3B3;
	text-align: center;
	font-size: 11pt;
	font-weight: bold;
}



/* Fullsize */
.fullsize-icon {
	position: absolute;
	margin: 0;
	padding: 0;
	width: 30px;
	height: 30px;
	background:url('icons.png') -140px 0 no-repeat scroll;
	z-index: 950;
}

.fullsize-loading, .fullsize-wrapper {
	position: absolute;
	margin: 0;
	padding: 0;
	z-index: 999;
	border: 1px solid gray;
}

.fullsize-image {
	display: block;
}

.fullsize-close {
	cursor: pointer;	
}
