.amazonmenu {
	position: relative;
}
.amazonmenu .sele-close {
	top: 50%;
	transform: translateY(-50%);
	display: none;
}
.amazonmenu .sele-close:hover, .amazonmenu .select-value:hover +.sele-close {
	display: inline;
}
.amazonmenu[data-id=""] .sele-close:hover, .amazonmenu[data-id=""] .select-value:hover +.sele-close {
	display: none;
}
.amazonmenu .select-value {
	width: 100%;
	color: #9A9A9A;
	background: url(../../images/select_dorop_down_icon.png) no-repeat calc(100% - 5px) center;
	line-height: 35px;
	display: inline-block;
	border: 1px solid #DDDDDD;
	border-radius: 3px;
	padding: 0px 10px;
	text-align: left;
	vertical-align: -webkit-baseline-middle;
	margin-top: -10px;
}
.amazonmenu .select-value.disabled{
	background: #eee;
}
.amazonmenu .select-ul{
	position: absolute;
	z-index: 1000;
}
.amazonmenu ul {
	display: none;
	font: normal 12px Verdana;
	list-style: none;
	margin: 0;
	padding: 0;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.amazonmenu ul li {
	position: static; /* menu li items should have position set to static */
}
.amazonmenu > ul {
	width: 200px; /* width of main menu */
	/* height of main menu */
	position: relative;
	background: #FFFFFF;
	border: 1px solid #DDDDDD;
	border-radius: 3px;
}
.amazonmenu ul > div {
	height: 250px;
	padding: 5px 0px;
	overflow-y: auto;
}
.amazonmenu > ul li a {
	width: 100%;
	display: inline-block;
	overflow: auto;
	position: relative;
	text-decoration: none;
	cursor: pointer;
	line-height: 30px;
	color: #525252;
	font-size: 14px;
	padding: 0px 10px;
}
.amazonmenu ul li.hassub > div i { /* Arrow to indicate this item has sub menu (LI elements with sub menus have a ".hassub" class). */
	content: '';
	 display:inline-block;
	 width: 36px;
	 height: 30px;
 	background: url('../images/arrow_right_icon_thin.png') no-repeat center;
	 position: absolute;
	 right: 0px;
	 cursor: pointer;
}
.amazonmenu > ul li.cur:hover > div b {
	display:inline-block;
}
.amazonmenu > ul li.cur > div b {
	display: none;
	content: '';
	width: 16px;
	height: 30px;
	background: url('../images/icon-close.png') no-repeat center;
	position: absolute;
	right: 30px;
	cursor: pointer;;
}
.amazonmenu ul li:hover, .amazonmenu ul li.selected { /* style of hover and selected menu item links */
	background: rgba(66,136,232,0.1);
	color: #4288E8;
}
.amazonmenu ul li.cur > a {
	color: #4288E8;
}
.amazonmenu ul li > ul { /* Sub menus (Could be a DIV or UL wrapper) style */
	display: none;
	font-weight: normal;
	left: 100%;
	position: absolute;
	top: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	z-index: 1000;
	width: 200px; /* width of main menu */
	background: #FFFFFF;
	border: 1px solid #DDDDDD;
	border-radius: 3px;
}

/* ###### CSS Media queries ###### */

@media screen and (max-width: 480px) { /* When screen size is 480px */
.amazonmenu .select-ul {width: 180px!important;}
.amazonmenu ul li > div, .amazonmenu ul li > ul {
 /*left: 30px;*/
 width: 180px; /* Stack the sub menus so they take up less space */
}
 .amazonmenu > ul li.hassub::after { /* Add "veil" to parent menus */
 /*background: #eee;*/
 content: '';
 height: 100%;
 left: 0;
 opacity: .8;
 pointer-events: none;
 position: absolute;
 top: 0;
 width: 100%;
 z-index: 1;
}
}
