#product-filters {
    margin-bottom: 30px;
}
#product-filters .filter-title{
    font-size: 18px;
    font-family: 'Lato';
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
    border-bottom: 2px solid #000000;
}


#product-filters  .filter-group{
    margin: 0 0 20px 0;
    border: 2px solid #a29b9b;
    padding: 13px;
}

#product-filters  .filter-group .category-filter,
#product-filters  .filter-group  .attribute-filter{
    margin-bottom:0px;
}
#product-filters  .filter-group label{
    font-weight: 400;
    margin-left: 10px;
}
#product-filters  .filter-group h4{
    font-size:16px;
}
#filtered-products {
    margin-top: 20px;
}

#filter-submit{
    background: #ffffff;
    border: 2px solid #000000;
}

#product-filters  .filter-group-heading{
    position:relative;
    padding-right:20px;
    cursor: pointer;
}

#product-filters  .filter-group-heading:after {
    content: "-";
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    font-size: 26px;
    line-height: 26px;
    font-weight: 400;
}
#product-filters  .filter-group-heading.close:after{
    content:"+";
}
#product-filters  .attribute-filter-group h5{
    padding: 10px 0px 0px;
    font-weight: 500;
}
.shop-container .products.row .loader {
    border: 10px solid #f3f3f3;
    border-radius: 50%;
    border-top: 10px solid #000000;
    width: 60px !important;
    height: 60px !important;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    position: absolute;
    top: 45%;
    left: 45%;
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}