/* Autocomplete */
/* ===================== */
.admin_webshop_autocomplete_wrapper{
	display:inline-block;
	width:49%;
	position:relative;
	z-index:1;
	background-color:white;
	border:1px solid #779DCA;
	box-sizing:border-box;
}
.admin_webshop_autocomplete_wrapper input[type="text"]{
	background-color:#b2d2f7 !important;
	background:-webkit-linear-gradient(#b2d2f7, #9fc6f2) !important;
	background:-o-linear-gradient(#b2d2f7, #9fc6f2) !important;
	background:-moz-linear-gradient(#b2d2f7, #9fc6f2) !important;
	background:linear-gradient(#b2d2f7, #9fc6f2) !important;
	width:100% !important;
	min-width:250px !important;
	font-size:80%;
	box-sizing:border-box !important;
	border:none !important;
}
.admin_webshop_autocomplete_active{
	
}
.admin_webshop_autocomplete{
	background-color:inherit;
	border:inherit;
	border-top:0;
	position:absolute;
	margin-left:-1px;
	width:100%;
	height:auto;
	max-height:50vh;
	overflow:auto;
	display:none;
	box-sizing:content-box;
	box-shadow:5px 5px 3px rgba(55,55,55,.1);
}
.admin_webshop_autocomplete_content{
	/* padding-right:50px; */
}
.admin_webshop_autocomplete_content ul{
	list-style:none;
	margin:0;
	padding:0;
}
.admin_webshop_autocomplete_content li{
	cursor:pointer;
	padding:1%;
	text-align:left;
	font-weight:400;
	width:100%;
	height:auto;
	font-size:85%;
	background-color:rgba(55, 55, 55,.1);
	position:relative;
	border-bottom:2px solid white;
	overflow:hidden;
	box-sizing:border-box;
}
.admin_webshop_autocomplete_content li:hover{
	background-color:var(--main-color) !important;
	color:white !important;
	cursor:pointer;
}
.admin_webshop_autocomplete_content li:hover *{color:white !important;}
.admin_webshop_autocomplete_content li:nth-child(even){background-color:rgba(55, 55, 55,.2);}
.admin_webshop_autocomplete_content li:first-of-type{
	margin-top:0% !important;
}
.admin_webshop_autocomplete_content li:last-of-type{
	border-bottom:none;
}
.admin_webshop_autocomplete_content li span:first-of-type{
	display:inline-block;
	width:15%;
	vertical-align:top;
	overflow:hidden;
	font-size:70%;
	text-align:center;
}
.admin_webshop_autocomplete_content li span:last-of-type{
	display:inline-block;
	width:81%;
	padding-left:1%;
	vertical-align:top;
}
.admin_webshop_autocomplete_content li img{
	width:auto;
	height:auto;
	max-width:100px;
	max-height:50px;
	border:thin solid #cecece;
}
.admin_webshop_autocomplete_content li span i{
	font-size:100%;
	font-style:normal;
	font-weight:bold;
}
.admin_webshop_autocomplete_content li span div{
	font-size:90%;
}
.product_row:hover .product_row_img:hover img{
	transform:scale(2);
	z-index:99999;
	position:relative;
	left:25px;
}
.webshopinput_copy{
	width:100% !important;
	font-size:70% !important;
	background:none !important;
	background-color:#afafaf !important;
	padding:2px !important;
	box-sizing:border-box !important;
}
/* /Autocomplete */
/* ===================== */

.wsclient_mode{
	-webkit-transition: all 200ms ease-in-out;
	-moz-transition: all 200ms ease-in-out;
	transition: all 200ms ease-in-out;
	filter:blur(3px);
}
.wsclient_mode:hover{filter:none;}

/* Products Flags */
/* ===================== */
.product_img{position:relative !important;}
.product_flag{
	display:inline-block;
	font-size:90%;
	padding:5px;
	line-height:initial !important;
	text-align:left !important;
	vertical-align:top !important;
}
.product_flag_pos{
	position:absolute;
	z-index:5;
	line-height:initial !important;
	text-align:left !important;
	vertical-align:top !important;
}
.product_flag_pos_lefttop{left:1%;top:1%;}
.product_flag_pos_righttop{right:1%;top:1%;}
.product_flag_pos_centertop{left:50%;top:1%;transform:translate(-50%,0%);}
.product_flag_pos_centermiddle{left:50%;top:50%;transform:translate(-50%,-50%);}
.product_flag_pos_leftbottom{left:1%;bottom:1%;}
.product_flag_pos_rightbottom{right:1%;bottom:1%;}
.product_flag_pos_centerbottom{left:50%;bottom:1%;transform:translate(-50%,0%);}
/* ===================== */