@import url('font-awesome.css');

/* GLOBALS

*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

::selection {
    background: transparent; 
}

::-moz-selection {
    background: transparent; 
}
 */
 
.product-listing .product {
width:205px !important;
margin-left:0px;
} 

.product-listing .product:nth-child(1) { 
/*margin-left:3px;*/
}
 
.product-listing .product:hover{
-webkit-box-shadow: 0px 0px 10px 0px rgba(162,154,154,1);
-moz-box-shadow: 0px 0px 10px 0px rgba(162,154,154,1);
box-shadow: 0px 0px 10px 0px rgba(162,154,154,1);
cursor:pointer;
} 
 
.product-listing .product-name{
margin-left:18px;
font-size:14px;
color:#7a7a7a;
}

.product-listing  a{
text-decoration:none;
}
 
.wrapper-demo {
    /*margin: 60px 0 0 0;*/
	width:300px;
    *zoom: 1;
    font-weight: 400;
	display:inline-block;
}

.wrapper-demo:after {
    clear: both;
    content: "";
    display: table;
}

/* DEMO 2 */

.wrapper-demo .active{
background: #a8a9ad;
color:white;
}

.wrapper-dropdown-2:hover{
background: #a8a9ad;
color:white;
}


.wrapper-dropdown-2 {
    /* Size and position */
    position: relative; /* Enable absolute positionning for children and pseudo elements */
    margin: 0 auto;
    padding: 10px 15px;
	border-color: #b9b9b9;
	border-style: solid;
	border-width:1px;
    /* Styles */
    background: #ebebeb;
    /*border-left: 5px solid grey;*/
    cursor: pointer;
    outline: none;
	font-weight:normal;
	font-size:15px;
	color:#576f31;
}

.wrapper-dropdown-2:after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    right: 16px;
    top: 50%;
    margin-top: -3px;
    border-width: 6px 6px 0 6px;
    border-style: solid;
    border-color: grey transparent;
}

.wrapper-dropdown-2 .dropdown {
  /* Size & position */
    position: absolute;
    top: 100%;
    left: 0px;
    right: 0px;
	border-color: #b9b9b9;
	border-style: solid;
	border-width:1px;
    /* Styles */
    background: #ebebeb;
	/*
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
	*/
    list-style: none;

    /* Hiding */
    opacity: 0;
    pointer-events: none;
}

.wrapper-dropdown-2 .dropdown li a {
    display: block;
    text-decoration: none;
    color: #333;
    /* border-left: 5px solid;*/
    padding: 12px;
	margin-left:8px;
	height:23px;
	line-height:23px;
	/*
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
	*/
}

.wrapper-dropdown-2 .dropdown li:nth-child(1) a { 
     /*border-left-color: #00ACED;*/
}

.wrapper-dropdown-2 .dropdown li:nth-child(2) a {
     /*border-left-color: #4183C4;*/
}

.wrapper-dropdown-2 .dropdown li:nth-child(3) a {
    /* border-left-color: #3B5998;*/
}

.wrapper-dropdown-2 .dropdown li i {
   /* margin-right: 5px;*/
    color: inherit;
    vertical-align: middle;
}

/* Hover state */

.wrapper-dropdown-2 .dropdown li:hover a {
    color: grey;
}

/* Active state */

.wrapper-dropdown-2.active:after {
    border-width: 0 6px 6px 6px;
	
}

.wrapper-dropdown-2.active .dropdown {
    opacity: 1;
    pointer-events: auto;
	margin:0;
	padding:0;
	z-index:1000;
}

/* No CSS3 support */

.no-opacity       .wrapper-dropdown-2 .dropdown,
.no-pointerevents .wrapper-dropdown-2 .dropdown {
    display: none;
    opacity: 1; /* If opacity support but no pointer-events support */
    pointer-events: auto; /* If pointer-events support but no pointer-events support */
}

.no-opacity       .wrapper-dropdown-2.active .dropdown,
.no-pointerevents .wrapper-dropdown-2.active .dropdown {
    display: block;
}

a {
outline:0;
}