.product-list, .categ-list {
    list-style-type: none;
    padding: 0;
}  

.categ-list > li {
    display: block;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
}

.product-list > li {
    display: block;
    margin-bottom: 0.5em;
}

.categ-list > li li {
    list-style-type: square;
}
.overlay {
    display: none;
    position: absolute;
    width: 100%;
    height: 110%;
    top: -20px;
    bottom: 0;
    left: 0;
    right: 0;
    font-size: 3em;
    color: #ffffff;
    padding-top: 20%;
    background-color: rgba(255,255,255,.15);
}

.overlay-blanket {
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -o-filter: blur(5px);
    -ms-filter: blur(5px);
    filter: blur(5px);
}

.spinner {
   position: absolute;
   left: 50%;
   top: 40%;
   height:60px;
   width:60px;
   margin:0px auto;
   -webkit-animation: rotation .6s infinite linear;
   -moz-animation: rotation .6s infinite linear;
   -o-animation: rotation .6s infinite linear;
   animation: rotation .6s infinite linear;
   border-left:6px solid rgba(0,174,239,.15);
   border-right:6px solid rgba(0,174,239,.15);
   border-bottom:6px solid rgba(0,174,239,.15);
   border-top:6px solid rgba(0,174,239,.8);
   border-left:6px solid rgba(0,0,0,.15);
   border-right:6px solid rgba(0,0,0,.15);
   border-bottom:6px solid rgba(0,0,0,.15);
   border-top:6px solid rgba(0,0,0,.8);
   border-radius:100%;
}


@-webkit-keyframes rotation {
   from {-webkit-transform: rotate(0deg);}
   to {-webkit-transform: rotate(359deg);}
}
@-moz-keyframes rotation {
   from {-moz-transform: rotate(0deg);}
   to {-moz-transform: rotate(359deg);}
}
@-o-keyframes rotation {
   from {-o-transform: rotate(0deg);}
   to {-o-transform: rotate(359deg);}
}
@keyframes rotation {
   from {transform: rotate(0deg);}
   to {transform: rotate(359deg);}
}