#product-list .col-sm-3{
	cursor: pointer;
}

.product {
	height:150px;
	position: relative;
}
.product-selected{
	border: 3px solid;
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
  background-color: lightGrey;
}

.product:hover .overlay {
  opacity: 0.85;
  border: 3px solid;
}

.text {
  color: black;
  position: absolute;
  font-weight:700;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}


.ui-autocomplete {
    position: absolute;
    z-index: 1000;
    cursor: default;
    padding: 0;
    margin-top: 2px;
    list-style: none;
    background-color: #ffffff;
    border: 1px solid #ccc;
    -webkit-border-radius: 5px;
       -moz-border-radius: 5px;
            border-radius: 5px;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
       -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.ui-autocomplete > li {
  padding: 3px 20px;
}
.ui-autocomplete > li.ui-state-focus {
  background-color: #DDD;
}
.ui-helper-hidden-accessible {
  display: none;
}

.fullScreenAjaxLoader
{
    position: fixed;
    z-index: 1100;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
   	background-color: Black;
    filter: alpha(opacity=30);
    opacity: 0.3;
    -moz-opacity: 0.3;
}
.loaderCenter
{
    z-index: 1000;
    margin: 300px auto;
    padding: 10px;
    width: 130px;
   //background-color: White;
    border-radius: 10px;
    //filter: alpha(opacity=100);
    //opacity: 1;
    //-moz-opacity: 1;
}

.botted-box {
	border: 1px dashed #645A5A;
	display: block;
	padding: 10px;
	float: left;
	background: #fff;
}