.dnf{
	display: none!important;
}
.dns{
	display: none!important;
}
#shop_splash{
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgb(255,255,255);
	z-index: 200;
	text-align: center;
	padding-top: 25vh;
	font-size: 40px;
}
#shop_splash img{
	margin:auto;
	height: auto;
	max-width: 75%;
	max-height:calc(100vh - 600px);
	min-height: 100px;
}
#shop_zone_marketing{
	position: fixed;
	height:calc(100vh - 160px);
	width: 100vw;
	-webkit-transition:all 2s;
	-moz-transition:all 2s;
	-o-transition:all 2s;
	transition:all 2s;
}
#shop_zone_marketing.open{
	top: 160px;
	opacity: 1;
}
#shop_zone_marketing.close{
	top: calc(-100vh + 320px);
	opacity: 0;
}
#shop_zone_browsing{
	position: fixed;
	width: 100vw;
	z-index: 20;
	height: calc(100vh - 160px);
	background-color: rgb(255,255,255);
	-webkit-transition:all 2s;
	-moz-transition:all 2s;
	-o-transition:all 2s;
	transition:all 2s;
}
#shop_zone_browsing.close{
	top: 100vh;
}
#shop_zone_browsing.open{
	top: 160px;
}
#shop_panel_view_area{
	height: inherit;
	width: 100vw;
}
.shop_panel_container{
	position: absolute;
	height: inherit;
	width: inherit;
	display: none;
}
.shop_cat_view .shop_cat_view_panel{
	display: none;
}
.shop_cat_view.active .shop_cat_view_panel{
	display: block;
}
.shop_cat_view_panel{
	position: absolute;
	height: inherit;
	background-size: cover;
	background-position: center;
	background-color: rgb(0,0,0);
	-webkit-filter: blur(1px) grayscale(1);
	-o-filter: blur(1px) grayscale(1);
	filter: blur(2px) grayscale(1);
	transition: all 1s;
	text-align: center;
}
.shop_cat_view_panel.active{
	-webkit-filter: blur(0);
	-o-filter: blur(0);
	filter: blur(0);
}
.brb{border-right: #FFF solid 1px;}
.panel{
	background-size: cover;
	background-position: center;
	background-color: rgb(0,0,0);
	-webkit-filter: blur(1px) grayscale(1);
	-o-filter: blur(1px) grayscale(1);
	filter: blur(2px) grayscale(1);
}
.panel.active{
	-webkit-filter: blur(0);
	-o-filter: blur(0);
	filter: blur(0);
}
.shop_cat_style{
	border-right: transparent solid 1px;
	border-left: transparent solid 1px;
	border-bottom: transparent solid 3px;
	/*vertical-align: middle;*/
	text-align: center;
	cursor: pointer;
	display: table-cell;
	padding-left: 3px;
	padding-right: 3px;
	position: relative;
}
:hover.shop_cat_style{
	border-right: rgb(130,130,130) solid 1px;
	border-left: rgb(130,130,130) solid 1px;
	border-bottom: transparent solid 3px;
	/*vertical-align: middle;*/
	text-align: center;
	cursor: pointer;
	display: table-cell;
	background-color: rgb(50,50,50);
}
.shop_cat_style.active{
	border-bottom: var(--main-design-color) solid 3px;
}
.shop_cat_style .shop_cat_style_sub{
	max-height: 0;
	overflow-y: hidden;
	position: absolute;
	width: 300px;
	top:129px;
	-webkit-transition:all 1s;
	background-color: rgba(0,0,0,0.75);
	left:-100px;
}
:hover.shop_cat_style .shop_cat_style_sub{
	max-height: 500px;
}

.shop_slide_row{
	display: table-row;
}
.shop_cat_style:last-of-type{
	border-right: rgba(255,255,255,0.5) solid 0px;
}
#shop_cat_sel_container{
	width: 100%;
	height: 129px;
	opacity: 1;
	z-index: 80;
	-webkit-transition:all 2s;
	-moz-transition:all 2s;
	-o-transition:all 2s;
	transition:all 2s;
}
#shop_cat_sel_container > div{
	height: inherit;
}
#shop_cat_sel_container span{
	display: block;
	font-size: 14px;
}
#shop_cat_sel_container img{
	height: 2em;
	-webkit-transition:all 1s;
	-moz-transition:all 1s;
	-o-transition:all 1s;
	transition:all 1s;
}
.shop_cat_sel_ext{
	padding-top:27px;
	height:45px;
}
#shop_header_container{
	height: 160px;
	
}
#shop_basket_button img{
	height: 50px;
}

#shop_left{
	padding-top: 5px;
	max-height:calc(100vh - 375px);
	overflow-y:scroll;
	width: 100%;
}
#shop_left .shop_left_block{
	border-left: rgb(255,255,255) solid 5px;
	margin-bottom: 0px;
	-webkit-transition:all 1s;
	-moz-transition:all 1s;
	-o-transition:all 1s;
	transition:all 1s;
	-webkit-transition-delay: 0.5s;
	transition-delay: 0.5s;
}
#shop_left :hover.shop_left_block{
	border-left: rgba(0,0,0,0.5) solid 5px;
	-webkit-transition:all 1s;
	-moz-transition:all 1s;
	-o-transition:all 1s;
	transition:all 1s;
	-webkit-transition-delay: 0.5s;
}
.shop_left_title{
	padding-top: 5px;
	padding-bottom: 5px;
	padding-left: 15%;
	font-size: 16px;
	text-align: left;
	-webkit-transition:all 1s;
	-moz-transition:all 1s;
	-o-transition:all 1s;
	transition:all 1s;
}
#shop_left :hover.shop_left_block .shop_left_title{
	font-size: 16px;
	color: rgb(0,0,0);
	-webkit-transition:all 1s;
	-moz-transition:all 1s;
	-o-transition:all 1s;
	transition:all 1s;
}
#shop_left .shop_left_container{
	height: 100%;
	-webkit-transition:all 1s;
	-moz-transition:all 1s;
	-o-transition:all 1s;
	transition:all 1s;
}
#shop_left :hover.shop_left_block .shop_left_container{
	max-height: 1000px;
	overflow-y: hidden;
	padding-top: 5px;
	padding-bottom: 5px;
	-webkit-transition:all 1s;
	-moz-transition:all 1s;
	-o-transition:all 1s;
	transition:all 1s;
}
#shop_left .shop_left_block .shop_left_container .filter_element{
	display: block;
	font-size: 14px;
	height: 0;
	overflow: hidden;
	-webkit-transition:all 1s;
	-moz-transition:all 1s;
	-o-transition:all 1s;
	transition:all 1s;
	transition-delay: 0.5s;
}
#shop_left :hover.shop_left_block .shop_left_container .filter_element{
	height: 20px;
	cursor: pointer;
	padding: 3px;
}
#shop_left .shop_left_block .shop_left_container .filter_element.sel{
	visibility: inherit;
	text-align: left;
	height: 20px;
	padding: 3px;
	background-color: rgb(100,100,100);
	color: rgb(255,255,255);
}

#shop_left .shop_left_block .shop_left_container :hover.filter_element{
	background-color: rgb(0,0,0);
	color: rgb(255,255,255);
}
#shop_main{
	text-align: center;
	padding-top: 5px;
	padding-left: 75px;
	padding-right: 75px;
	height: calc(100vh - 160px);
	z-index: 50;
	overflow-y: scroll;
	overflow-x: auto;
	background: radial-gradient(ellipse at bottom, rgba(165,165,165,1) 0%,rgba(255,255,255,1) 100%);
}
#shop_main.blur{
	filter: blur(3px);
	opacity: 0.5;
}
.shop_right_elm_list{
	display: inline-block;
	width: calc(50vw - 110px);
	height: 200px;
	border: rgb(150,150,150) solid 1px;
	margin: 10px;
	border-radius: 3px;
	-webkit-transition:all 0.5s;
	-moz-transition:all 0.5s;
	-o-transition:all 0.5s;
	transition:all 0.5s;
	position: relative;
	opacity: 0;
	animation-fill-mode: forwards;
}
.shop_right_elm_list .int_table{
	height: 200px;
}
:hover.shop_right_elm_list{
	/*background-color: rgb(200,200,200);*/
	box-shadow: rgb(150,150,150)  0 0 10px;
	-webkit-transition:all 0.5s;
	-moz-transition:all 0.5s;
	-o-transition:all 0.5s;
	transition:all 0.5s;
}
.shop_right_elm_list .block_view{
	display: none;
}
.shop_right_elm_list .list_view{
	display: block;
}
.shop_product_sel .mobile_view{
	display: none;
}
div.shop_right_elm_list .marque{
	font-size: 14px;
}
div.shop_right_elm_list .modele{
	padding-top: 15px;
	font-size: 20px;
}
div.shop_right_elm_list .elm_prix{
	font-size: 18px;
}
div.shop_right_elm_list .descri{
	color: rgb(100,100,100);
	font-size: 14px;
}
.shop_right_elm_list img{
	border-radius: 10px;
	-webkit-transition:all 0.5s;
	-moz-transition:all 0.5s;
	-o-transition:all 0.5s;
	transition:all 0.5s;
}

.shop_right_elm_block{
	display: inline-block;
	width: 305px;
	height: 300px;
	margin-top:8px;
	margin-left:10px; 
	margin-right:0px; 
	margin-bottom:5px; 
	border: rgba(150,150,150,0.5) solid 1px;
	border-radius: 3px;
	box-shadow: rgb(200,200,200) 0 0 5px;
	position: relative;
	opacity: 0;
}
.shop_right_elm_block .list_view{
	display: none;
}
:hover.shop_product_sel{
	background-color: rgb(255,255,255);
	box-shadow: rgb(150,150,150)  0 0 10px;
	transform:scale(1.1);
	transition-delay: 0.2s;
	z-index: 10;
}
.shop_product_click{
	cursor: pointer;
}
div.shop_right_elm_block .pt1{
	padding: 5px;
	text-align: center;
	cursor: pointer;
	vertical-align: middle;
}
div.shop_right_elm_block .pt2{
	padding: 0px;
}
div.shop_right_elm_block .pt3{
	display: none;
}
div.shop_right_elm_block .marque{
	height: 32px;
	font-size: 18px;
	text-transform: capitalize;
	color: rgb(100,100,100);
}
div.shop_right_elm_block .modele{
	padding-top: 15px;
	/*font-size: 20px;*/
	font-size: 90%;
	padding-left: 10px;
}
div.shop_right_elm_block .descri{
	padding-left: 10px;
	color: rgb(100,100,100);
	/*font-size: 0.8em;*/
	font-size: 14px;
}
div.shop_right_elm_block .shop_marquee{
	width: 300px;
	overflow:hidden;
	height: 15px;
	position: relative;
}
div.shop_right_elm_block .shop_marquee .marque_anim{
	position: absolute;
	left: 10px;
}
.img_area{
	height: 150px;
	min-width: 150px;
}
div:hover.shop_right_elm_block .shop_marquee .marque_anim{
	animation: marquee 15s infinite;
}
@keyframes marquee {
	0% {
		left:10px;
	}
	50% {
		left:-250px;
	}
	100% {
		left:10px;
	}
}
div.shop_right_elm_block .elm_prix{
	font-size: 18px;
	text-align: center;
}
div.shop_right_elm_block img{
	border-radius: 10px;
	-webkit-transition:all 0.5s;
}
div:hover.shop_right_elm_block img.shadow{
	box-shadow: rgb(255,255,255) 0 0 20px;
	border-radius: 10px;
	-webkit-transition:all 0.5s;
}
#shop_fv{
	position: fixed;
	width: 100vw;
	height: calc(100vh - 160px);
	/*background-color: rgba(200,200,200, 0.75);*/
	text-align: center;
	-webkit-transition:all 0.5s;
	margin: auto;
	padding-top: 30px;
	left:0px;
}
#shop_fv.close{
	opacity: 0;
	transform: scale(3, 3);
	-moz-transform: scale(3, 3);
	z-index: -1;
}
#shop_fv.closeing{
	opacity: 0;
	transform: scale(0.5, 0.5);
	z-index: 90;
}
#shop_fv.open{
	opacity: 1;
	z-index: 90;
	top:160px;
	background: linear-gradient(to right, rgba(255,255,255,1) 0%,rgba(255,255,255,0.5) 50%,rgba(255,255,255,1) 100%); 
}
#shop_fv_data{
	/*background-color: rgb(255,255,255);*/
	/*border:rgb(100,100,100) solid 2px;*/
	border-radius: 5px;
	height: calc(100vh - 160px);
	padding: 10px;
}
.shop_fv_scroll{
    overflow:auto;
	height: calc(100vh - 260px);
    padding-bottom: 50px;
}
#shop_fv_close {
	position: absolute;
	right: 25px;
	text-align: center;
	top: 10px;
	cursor: pointer;
	padding: 8px;
	z-index: 1;
}
.shop_fv_card{
	margin-bottom:25px;
	padding-bottom: 10px;
	color: rgb(0, 0, 0);
}
.shop_fv_card .title{
	font-size: 22px;
	margin-bottom: 10px;
	padding: 5px;
	border-bottom: solid 1px rgb(200, 200, 200);
}
#shop_right_panel{
	position: fixed;
	top: 160px;
	z-index: 80;
	width: calc(100vw /2);
	height: calc(100vh - 160px);
	color: rgb(255,255,255);
	padding-top:10px;
	overflow: auto;
}
#shop_right_panel.close{
	left: calc(-100vw /2);
	background: linear-gradient(to bottom, rgba(43,43,43,0.80) 0%,rgba(0,0,0,0.80) 100%);
	-webkit-transition:all 0.5s;
	-moz-transition:all 0.5s;
	-o-transition:all 0.5s;
	transition:all 0.5s;
}
#shop_right_panel.open{
	left: 0;
	/*background-color: rgba(0,0,0,0.80);*/
	background: linear-gradient(to bottom, rgba(43,43,43,0.80) 0%,rgba(0,0,0,0.80) 100%);
	/*box-shadow: rgb(0,0,0) 0 0 15px;*/
	-webkit-transition:all 0.5s;
	-moz-transition:all 0.5s;
	-o-transition:all 0.5s;
	transition:all 0.5s;
}
:hover#shop_right_panel.open{
	/*background-color: rgba(0,0,0,1);*/
	background: linear-gradient(to bottom, rgba(43,43,43,1) 25%,rgba(0,0,0,1) 100%);
	-webkit-transition:all 0.5s;
	-moz-transition:all 0.5s;
	-o-transition:all 0.5s;
	transition:all 0.5s;
}
#shop_right_panel img{
	box-shadow: rgb(255,255,255) 0 0 15px;
	border-radius: 5px;
}
.shop_product_sel{
	overflow:hidden;
	-webkit-transition:all 0.5s;
	-moz-transition:all 0.5s;
	-o-transition:all 0.5s;
	transition:all 0.5s;
	animation: fadein 2s;
	background-color: rgb(240,240,240);
	animation-fill-mode: forwards;
}

@keyframes fadein {
	0% {
		/*top:200px;*/
		-webkit-filter:grayscale(1);
		opacity: 0;
		-webkit-transform:scale(0.5, 0.5);
	}
	50% {
		/*top:0;*/
		-webkit-filter:grayscale(1);
		
		-webkit-transform:scale(1, 1);
	}
	100% {
		opacity: 1;
		-webkit-filter:grayscale(0);
	}
}


.shop_product_sel div.shop_button{
	position: absolute;
	top:0;
	/*left:-20px;*/
	width: 40px;
	height: 110px;
	overflow: hidden;
	z-index: 10;
	-webkit-transition:all 0.5s;
	transition:all 0.5s;
}
:hover.shop_product_sel div.shop_button{
	/*left:0;*/
}
div.shop_product_sel div.shop_button div.in{
	opacity: 1;
}
div.shop_product_sel div.shop_button div.out{
	opacity: 0;
}
div:hover.shop_product_sel div.shop_button div{
	opacity: 1;
}
div.elm_basket{
	cursor: pointer;
	margin: 5px;
	text-align: left;
	color: rgb(200,200,200);
	font-size: 24px;
	height: 30px;
	width: 30px;
	background-repeat: no-repeat;
	-webkit-transition:all 0.5s;
	transition:all 0.5s;
}
.elm_basket.out{
	background-image: url(../image/svg/basket_000.svg);
}
.elm_wishlist.out{
	background-image: url(../image/svg/heart_000.svg);
}
.elm_basket.in{
	background-image: url(../image/svg/basket_0070c6.svg);
}
.elm_wishlist.in{
	background-image: url(../image/svg/heart_CC0066.svg);
}
.elm_compare.out{
	background-image: url(../image/svg/spinner_000.svg);
}
.elm_compare.in{
	background-image: url(../image/svg/spinner_00FF1D.svg);
}
div#shop_full_view_scroll .elm_compare.out{
	background-image: url(../image/svg/spinner_000.svg);
}
div#shop_full_view_scroll .elm_compare.in{
	background-image: url(../image/svg/spinner_00FF1D.svg);
}
div.shop_elm_full .elm_basket{
	background-color: rgb(0,160,80);
	padding: 5px;
	text-align: center;
	color: rgb(200,200,200);
	font-size: 24px;
	-webkit-transition:all 0.5s;
	transition:all 0.5s;
}
div.shop_product_sel .elm_wish{
	background-color:#CC0066;
	padding: 8px;
	font-size:18px;
	font-weight:900;
	color:white;
	outline: none;
	border: none;
}
div.shop_product_sel .elm_wishlist{
	cursor: pointer;
	padding: 5px;
	color: rgb(200,200,200);
	height: 30px;
	width: 30px;
	background-repeat: no-repeat;
	background-position: 5px 0;
	-webkit-transition:all 0.5s;
	transition:all 0.5s;
}
div.shop_product_sel .elm_quick{
	cursor: pointer;
	padding-left: 5px;
	padding-right: 5px;
	color: rgb(200,200,200);
	height: 30px;
	width: 30px;
	background-image: url(../image/svg/eye_000.svg);
	background-repeat: no-repeat;
	background-position: 5px;
	-webkit-transition:all 0.5s;
	transition:all 0.5s;
}
div.shop_product_sel .elm_compare{
	cursor: pointer;
	padding-top: 5px;
	padding-left: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	color: rgb(200,200,200);
	height: 28px;
	width: 28px;
	background-repeat: no-repeat;
	background-position: 5px;
	-webkit-transition:all 0.5s;
	transition:all 0.5s;
}
div.shop_right_elm_block .image{
	margin-top: 10px;
	height: 150px;
	vertical-align: inherit;
}
div.shop_elm_full .elm_wishlist{
	background-color: rgb(0,102,153);
	padding: 5px;
	text-align: center;
	color: rgb(200,200,200);
	font-size: 24px;
	-webkit-transition:all 0.5s;
	transition:all 0.5s;
}
div#shop_full_view_scroll .elm_compare{
	cursor: pointer;
	padding-top: 5px;
	padding-left: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	color: rgb(200,200,200);
	height: 28px;
	width: 28px;
	background-repeat: no-repeat;
	background-position: 5px;
	-webkit-transition:all 0.5s;
	transition:all 0.5s;
}
#shop_order_button{
	background-color: rgb(36,181,94);
	color: rgb(255,255,255);
	width: 75%;
	padding: 10px;
	text-align: center;
	-webkit-transition:all 0.5s;
	cursor: pointer;
	transition:all 0.5s;
	margin: auto;
}
:hover#shop_order_button{
	background-color: rgba(36,181,94,1);
	color: rgb(0,0,0);
}
.shop_qte_style_neg{
	display: inline-block;
	text-align: center;
	background-color: rgb(150,150,150);
	color: rgb(0,0,0);
	width: 48px;
	border-radius: 50%;
}
.shop_qte_style_pos{
	display: inline-block;
	text-align: center;
	background-color: rgb(200,200,200);
	color: rgb(0,0,0);
	width: 48px;
	border-radius: 50%;
}
.basket_item_tr{
	margin-top: 10px;
	background-color: rgba(100,100,100,0.8);
}
.reminder_style{
	color: rgb(100,100,100);

}
span:hover.reminder_style{
	color: rgb(255,255,255);
}
.shop_product_grid{
	/*cursor: pointer;
	margin: 10px;*/
	opacity: 0.5;
}
.shop_product_grid.active{
	opacity: 1;
}
.inscri_bad{
	box-shadow: rgb(255,0,0) 0 0 10px !important;
	border-radius: 5px !important;
	color: rgb(255,0,0) !important;
}
.inscri_good{
	box-shadow: rgb(0,74,131) 0 0 10px !important;
	border-radius: 5px !important;
}
.ins_inp{
	margin: 10px;
	padding: 5px;
	font-size: 24px;
}
#shop_left_container{
	/* display: table-cell;
	width: 15%;*/
	display: none;
}
#shop_right_container{
	/* display: table-cell;
	 width: 70%;
	 vertical-align: top;
	 height: inherit;*/
	margin-left: 75px;
}
#shop_browser{
	height: inherit;
}
#shop_landing{
	position: fixed;
	background-color: rgb(200,200,200);
	height: calc(100vh - 160px);
	overflow-y: scroll;
	overflow-x: hidden;
	padding-top: 20px;
	padding-right:200px;
	padding-left:200px;
	width: calc(100vw - 400px);
	-webkit-transition:all 0.5s;
}
#shop_landing.close{
	opacity: 0;
	top:100vh;
	z-index: -1;
}
#shop_landing.open{
	opacity: 1;
	top:160px;
	z-index: 50;
}

.product_img{
	border-radius: 3px;
}
.product_img_small{
	width: auto;
	/*min-width: 200px;*/
	max-width: 300px;
	max-height: 150px;
	-webkit-transition:all 1s;
}
.shop_basket_img{
	width: auto;
	max-width: 250px;
    max-height: 100px;
}
input.sbp_qte{
	width:50px;
	border-radius: 3px!important;
	height: 20px;
	font-size: 14px;
	padding: 2px!important;
	/*
	background-color:rgba(255,255,255,0.3)!important;
	color:rgb(255,255,255)!important;*/
	text-align: center;
}
#shop_compare{
	position: fixed;
	top:160px;
	color: rgb(255,255,255);
	width: 15vw;
	height: calc(100vh - 160px);
	z-index: 100;
	-webkit-transition:all 0.5s;
}
#shop_compare.close{
	left: -15vw;
	opacity: 0;
}
#shop_compare.open{
	left: 0;
	opacity: 1;
	box-shadow: rgb(0,0,0) 0 0 20px;
	background:linear-gradient(to bottom, rgba(43,43,43,1) 25%,rgba(0,0,0,1) 100%);;
}
.focus{
	box-shadow: rgb(0,0,0) 0 0 30px!important;
}
@keyframes blink {
	0% {
		opacity: 1;
	}
	50% {
		opacity: 0.2;
	}
	100% {
		opacity: 1;
	}
}
.sr_blink {
   animation: blink 1s infinite;
}
.shop_fv_img_wrapper{
	height: calc(100vh / 3);
}
.shop_full_view_img{
	min-width: 50px;
	min-height: 50px;
	max-width: 90%;
	height: auto;
	max-height: calc(100vh /3);
	border-radius: 5px;
	margin: auto;
	background-color: white;
	box-shadow: rgb(255,255,255) 0 0 10px 5px;
	-webkit-transition:all 1s;
}
.shop_full_view_img.fs{
	position: fixed;
	top: 160px;
	left: 0;
	z-index: 105;
	height: auto;
	width: auto;
	max-height: calc(100vh - 160px);
	max-width: calc(100vw);
	cursor: pointer;
}
.shop_product_gallery_thumb_sel{
	margin-bottom: 5px;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	background-size: cover;
	background-position: center;
}
:hover.shop_product_gallery_thumb_sel{
	box-shadow: var(--main-design-color) 0 0 10px;
}
.shop_product_gallery_thumb_sel.active{
	box-shadow: var(--main-design-color) 0 0 10px;
}

.shop_full_view_button{
	color:white;
	outline: none;
	border: none;
	font-size:12px;
	font-weight:900;
}
.shop_full_view_button_buy{
	background-color:#0088cc;
	padding: 15px;
}
:hover.shop_full_view_button_buy{
	background-color:#00FF53;
	padding: 15px;
}
.shop_full_view_button_wish{
	background-color:#CC0066;
	padding: 15px;
	width: 170px;
}
:hover.shop_full_view_button_wish{
	background-color:#CC0077;
	padding: 15px;
}
.shop_right_elm_list .list_hide{
	display: none;
}
.shop_right_elm_block .block_hide{
	display: none;
}
#shop_compare_pin{
	display: inline-block;
	width: 25px;
	height: 25px;
	background-position: top;
	background-repeat: no-repeat;
	background-size: contain;
	cursor: pointer;
	float: right;
}
div.shop_right_compare{
	margin: 10px;
	border: rgb(150,150,150) solid 1px;
	border-radius: 3px;
	-webkit-transition:all 0.5s;
	-moz-transition:all 0.5s;
	-o-transition:all 0.5s;
	transition:all 0.5s;
}
div:hover.shop_right_compare{
	background-color: rgb(225,225,225);
	box-shadow: rgb(150,150,150)  0 0 10px;
}
#shop_view_compare{
	cursor: pointer;
	margin: 10px;
	opacity: 0.5;
}
#shop_view_compare.active{
	opacity: 1;
}
#inv_first_load{
	background-color: rgb(0,0,0);
	width: 0;
	height: 10px;
}
#shop_cat_sub.wide{
	position: fixed;
	top: 160px;
	left: 100vw;
	background-color: rgb(30,30,30);
	padding:10px;
	color:rgb(255,255,255);
	z-index: 90;
	width:300px;
}
.shop_cat_sub{
	border-bottom:rgb(255,255,255) solid 1px;
	padding: 10px;
	vertical-align: middle;
	font-size: 12px;
}
:hover.shop_cat_sub{
	border-bottom:rgb(255,255,255) solid 1px;
	padding: 10px;
	vertical-align: middle;
	background-color: rgb(75,75,75);
}
#shop_fv_head{
	width: 100%;
	/*border-bottom:3px solid rgb(200,200,200);*/
	text-align: center;
	/*background-color: rgb(255,255,255);*/
	border-radius: 10px 10px 0 0;
	padding-top: 5px;
}
#shop_fv_head span{
	font-size: 22px;
}
.fv_ancre_link{
	margin-bottom: 5px;
	cursor: pointer;
	font-weight: bold;
	border-bottom: transparent solid 1px;
	font-size: 1.0em;
	text-transform: uppercase;
	color: rgb(100,100,100);
	border-left:transparent solid 2px;
}

:hover.fv_ancre_link{
	font-weight: bold;
	position: relative;
	color: rgb(0,0,0);
	text-decoration: none;
}

.fv_ancre_link.active{
	font-weight: bold;
	position: relative;
	color: rgb(0,0,0);
	text-decoration: none;
	border-left:#000 solid 2px;
}

#shop_fv_scroll_bottom{
	height: 90vh;
	width: 1px;
	background-color: transparent;
}
#shop_filter_setting{
	width: 32px;
	height: 32px;
	display: inline-block;
	cursor: pointer;
}
#shop_filter_setting.and{
	background-image: url(../image/svg/shop_filter_and.svg);
}
#shop_filter_setting.or{
	background-image: url(../image/svg/shop_filter_or.svg);
}
.wos_center_button{
	white-space: nowrap;
	text-align: center;
	padding-left: 10px;
	padding-right: 10px;
	max-width: 150px;
}
.shop_table{
	display: table;
}
.shop_tr{
	display: table-row;
}
.shop_td{
	display: table-cell;
}
#add_to_basket{
	font-size: 18px;
}
#shop_fv_description{
	padding-right: 30px;
	padding-left: 30px;
	width: 50%;
}
#shop_cat_vid1 .shop_cat_vid_block{
	cursor: pointer;
	position: relative;
	overflow:hidden;
	width: 150px;
	margin:auto;
}
#shop_cat_vid2 .shop_cat_vid_block{
	cursor: pointer;
	position: relative;
	width: 300px;
	margin:auto;
	margin-left: auto;
	margin-right: auto;
	margin-top: 20px;
	margin-bottom: 20px;
}
#shop_cat_vid1 .shop_cat_vid_title{
	position: absolute;
	bottom: 4px;
	width: 150px;
	color:rgb(255,255,255);
	background-color: rgba(0,0,0, 0.5);
	font-size: 14px;
	-webkit-transition:all 0.5s;
	-moz-transition:all 0.5s;
	-o-transition:all 0.5s;
	transition:all 0.5s;
}
:hover#shop_cat_vid1 .shop_cat_vid_title{
	position: absolute;
	bottom: 4px;
	width: 150px;
	color:rgb(255,255,255);
	background-color: rgba(0,0,0, 0.5);
	font-size: 14px;
	-webkit-transition:all 0.5s;
	-moz-transition:all 0.5s;
	-o-transition:all 0.5s;
	transition:all 0.5s;
}
#shop_cat_vid2 .shop_cat_vid_title{
	position: absolute;
	top: 0;
	left:150px;
	width: 150px;
	color:rgb(0,0,0);
	font-size: 14px;
	padding-left: 5px;
	font-weight: bold;
	-webkit-transition:all 0.5s;
	-moz-transition:all 0.5s;
	-o-transition:all 0.5s;
	transition:all 0.5s;
}
#shop_cat_vid1 .shop_cat_vid_bg{
	width: 150px;
	height: 84px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	-webkit-transition:all 0.5s;
	-moz-transition:all 0.5s;
	-o-transition:all 0.5s;
	transition:all 0.5s;
}
#shop_cat_vid2 .shop_cat_vid_bg{
	width: 150px;
	height: 84px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	-webkit-transition:all 0.5s;
	-moz-transition:all 0.5s;
	-o-transition:all 0.5s;
	transition:all 0.5s;
}
#shop_cat_vid1 .shop_cat_vid_descri{
	display: none;
}
#shop_cat_vid2 .shop_cat_vid_descri{
	position: absolute;
	left: 150px;
	top:25px;
	font-size: 12px;
	width: 150px;
	height: 50px;
	padding: 5px;
	color:#767676;
}
:hover#shop_cat_vid1 .shop_cat_vid_title{
	display: block;
	color:rgb(255,255,255);
	background-color: rgba(0,0,0, 0.9);
}
#shop_cat_vid2 :hover.shop_cat_vid_block .shop_cat_vid_title{
	color:#167ac6;
}
.shop_cat_vid_block .shop_cat_vid_play{
	position: absolute;
	top:-32px;
	left:60px;
	opacity: 0;
	display: block;
	width: 32px;
	height: 32px;
	background-image:url(../image/svg/play_000.svg);
	-webkit-transition:all 0.5s;
	-moz-transition:all 0.5s;
	-o-transition:all 0.5s;
	transition:all 0.5s;
}
:hover.shop_cat_vid_block .shop_cat_vid_play{
	top:25px;
	opacity: 1;
	animation: invert_color 1s infinite;
}
@keyframes invert_color {
	0% {
		-webkit-filter: invert(0%);
	}
	50% {
		-webkit-filter: invert(100%);
	}
	100% {
		-webkit-filter: invert(0%);
	}
}
#shop_option_panel{
	position: fixed;
	top:160px;
	
	z-index: 50;
	width: 75px;
	height: calc(100vh - 160px);
	-webkit-transition:all 0.8s;
	-moz-transition:all 0.8s;
	-o-transition:all 0.8s;
	transition:all 0.8s;
	overflow:hidden;
}
#shop_option_panel.close{
	left:-75px;
}
#shop_option_panel.open{
	left:0;
	/*background-color: rgb(210,210,210);*/
}
#shop_option_panel.openfull{
	width: 500px;
	background-color: rgb(255,255,255);
	box-shadow: rgb(100,100,100) 0 0 20px;
}
#shop_option_panel_left{
	text-align: center;
	padding: 15px;
	position: absolute;
	top: 0;
	left:0;
	width: 50px;
}
#shop_option_panel_right{
	padding: 10px;
	position: absolute;
	top: 0;
	left:75px;
	width: 400px;
	-webkit-transition:all 0.5s;
	-moz-transition:all 0.5s;
	-o-transition:all 0.5s;
	transition:all 0.5s;
}
#shop_option_panel.close #shop_option_panel_right{
	opacity: 0;
}
#shop_option_panel.open #shop_option_panel_right{
	opacity: 0;
}
#shop_option_panel.openfull #shop_option_panel_right{
	opacity: 1;
}
.shop_op_icon{
	padding-left: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-top: 10px;
	margin-bottom: 10px;
	border-right: transparent solid 2px;
	cursor: pointer;
	-webkit-transition:all 0.5s;
	-moz-transition:all 0.5s;
	-o-transition:all 0.5s;
	transition:all 0.5s;
}
.shop_op_icon.active{
	border-right: rgb(128, 128, 128) solid 1px;
/*	background: linear-gradient(to bottom, rgba(201,134,0,0) 0%,rgba(201,134,0,0.65) 50%,rgba(0,0,0,0) 100%);*/
}
.shop_op_right.open{
	display: block;
}
.shop_op_right.close{
	display: none;
}
.shop_op_right{
	width: inherit;
}
#shop_search_history{
	padding: 10px;
}
#shop_search_history div{
	padding: 5px;
	font-size: 14px;
	cursor: pointer;
}
/*
3 panel
*/
.shop_panel_1_3{
	left:0%;
	width: 7.5%;
}
.shop_panel_1_3.active{
	left:0%;
	width: 85%!important;
}
.shop_panel_1_3.preview{
	left:0%;
	width: 33%!important;
}

.shop_panel_2_3{
	left:85%;
	width: 7.5%;
}
.shop_panel_2_3.active{
	left:7.5%;
	width: 85%;
}
.shop_panel_2_3.preview{
	left:33%!important;
	width: 33%!important;
}

.shop_panel_2_3.left{
	left:7.5%;
	width: 7.5%;
}
.shop_panel_3_3{
	left:92.5%;
	width: 7.5%;
}
.shop_panel_3_3.active{
	left:15%;
	width: 85%;
}
.shop_panel_3_3.preview{
	left:66%!important;
	width: 33%!important;
}
/*
end 3 panel

2 panel
*/
.shop_panel_1_2{
	left:0%;
	width: 15%;
}
.shop_panel_1_2.active{
	left:0%;
	width: 85%;
}
.shop_panel_1_2.preview{
	left:0%!important;
	width: 50%!important;
}

.shop_panel_2_2{
	left:85%;
	width: 15%;
}
.shop_panel_2_2.active{
	left:15%;
	width: 85%;
}
.shop_panel_2_2.preview{
	left:50%!important;
	width: 50%!important;
}
/*
end 2 panel

1 panel
*/
.shop_panel_1_1{
	left:0%;
	width: 100%;
}
/*
end 1 panel

Documentation display
*/
.sr_card.sr_doc{
	width: 180px;
	height: 250px;
	position: relative;
}
.img_pdf{
	background-image: url('../image/pdf.png');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
.sr_doc .tag{
	border-top: 1px solid rgba(0,0,0, 0.5);
	bottom: 0px;
	left: 0px;
	position: absolute;
	height: 40px;
	padding: 10px 0px 10px 0px;
	background-color: rgba(250,250,250, 0.9);
}
.shop_product_sel:nth-child(1) {
	animation-delay: 50ms;
}
.shop_product_sel:nth-child(2) {
	animation-delay: 150ms;
}
.shop_product_sel:nth-child(3) {
	animation-delay: 200ms;
}
.shop_product_sel:nth-child(4) {
	animation-delay: 250ms;
}
.shop_product_sel:nth-child(5) {
	animation-delay: 300ms;
}
.shop_product_sel:nth-child(6) {
	animation-delay: 350ms;
}
.shop_product_sel:nth-child(7) {
	animation-delay: 400ms;
}
.shop_product_sel:nth-child(8) {
	animation-delay: 450ms;
}
.shop_product_sel:nth-child(9) {
	animation-delay: 500ms;
}
.shop_product_sel:nth-child(10) {
	animation-delay: 550ms;
}
.shop_product_sel:nth-child(11) {
	animation-delay: 600ms;
}
.shop_product_sel:nth-child(12) {
	animation-delay: 650ms;
}
.shop_product_sel:nth-child(13) {
	animation-delay: 700ms;
}
.shop_product_sel:nth-child(14) {
	animation-delay: 750ms;
}
.shop_product_sel:nth-child(15) {
	animation-delay: 800ms;
}
.shop_product_sel:nth-child(16) {
	animation-delay: 850ms;
}
.shop_product_sel:nth-child(15) {
	animation-delay: 900ms;
}
.shop_product_sel:nth-child(17) {
	animation-delay: 950ms;
}
.shop_product_sel:nth-child(18) {
	animation-delay: 1000ms;
}
.shop_product_sel:nth-child(19) {
	animation-delay: 1050ms;
}
.shop_product_sel:nth-child(20) {
	animation-delay: 1100ms;
}
#shop_main_search{
	font-size: 18px;
	box-shadow: #000 0 0 5px;
	background-color: rgb(255,255,255);
	border-radius: 5px;
	border:rgb(0,0,0) solid 1px;
	color: rgb(0,0,0);
	margin-left:10px;
	height: 32px;
	background-position: 5px;
	width: 75%;
	margin-top: 10px;
	-webkit-transition:all 1s;
}
#shop_fv_galerie{
	position: fixed;
	top:160px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	background-color: rgb(255,255,255);
	z-index: 200;
	display: none;
}
#shop_page{
	position: fixed;
	top: 160px;
	display: flex;
	bottom: 0px;
	justify-content: center;
	align-items: flex-end;
	flex-direction: column;
	will-change: transform;
}
#shop_page.close{
	right: -50px;
}
#shop_page.open{
	right: 35px;
}
.shop_page_row .shop_page_elm{
	background-color: rgb(150,150,150);
	padding: 5px;
	border-radius: 50%;
	width: 5px;
	height: 5px;
	cursor: pointer;
	transition: transform 0.5s ease-out;
}
.shop_page_row .shop_page_elm.active{
	background-color: rgb(255, 153, 51);
	animation: PunchIn 0.8s;
}
@keyframes PunchIn {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(2);
	}
	100% {
		transform: scale(1);
	}
}
.shop_page_row .shop_page_elm:hover{
	transform: scale(1.5);
}
#shop_page .shop_page_row{
	display: flex;
	height: 32px;
	align-items: center;
}
.shop_page_row .shop_page_label{
	display: none;
	margin-right: 10px;
	padding: 0 16px;
	background-color: rgb(0,0,0);
	color:rgb(255,255,255);
    align-items: center;
    height: 40px;
    border-radius: 3px;
}
:hover.shop_page_row .shop_page_label{
	display: inline-flex;
}
.li_inline {
	display : inline-block;
}
div.shop_left_title{
	background-color: rgb(255,255,255);
	border-bottom: rgb(150,150,150) solid 1px;
}
div.shop_left_block{
	background-color: rgb(150,150,150);
}
#shop_slides_browser_zone1 div.shop_cat_sel.active{
	border-bottom: var(--main-design-color) solid 3px;
}
input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {  
	opacity: 1;
}
#int_top_center_container{
	color: rgb(255,255,255);
}
.shop_basket_scroll{
	max-height:calc(100vh - 415px);
	overflow-y:auto;
}