#shop .row {
    max-width: 90vw;
    margin: 5rem auto;
    width: 100%;
    position: relative;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
#shop aside{
    width: 23%;
}
#shop aside h5{
    margin-top: 1.5rem;
    border-top:1px solid #CED4DA;
    padding-top: 1.5rem;
}
#shop aside a{
    display: block;
    border-bottom: 0;
    padding: 0;
}
#shop aside span{
    font-size: 0.875rem;
    line-height: 1rem;
    color: #333333;
    display: block;
    margin: 0 0 0.7rem;
}
#shop section{
    width: 77%;
    padding-left: 3%;
    -webkit-align-content: flex-start;
        -ms-flex-line-pack: start;
            align-content: flex-start;
}
#shop section h1{
    color: #f6f8f8;
    text-align: right;
    width: 100%;
    margin-bottom: 3rem;
    line-height: 3rem;
  }
#search{
    position: relative;
    margin-bottom: 3rem;
}
#search .icon {
    width: 2rem;
    height: 2rem;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}
#search .icon g{
    fill: #CED4DA;
    stroke: none;
}
#searchproducts{
    -webkit-border-radius: 0;
       -moz-border-radius: 0;
            border-radius: 0;
    border: none;
    border-bottom: 2px solid #CED4DA;
}
#searchproducts:focus{
    border-bottom: 2px solid #333333;
}
#filter span{
    cursor: pointer;
}
#filter svg{
    width: 1.3rem;
    height: 1.3rem;
    vertical-align: middle;
    margin-right: .3rem;
}
#filter svg .checked{
    fill: #333333;
}
#filter svg .check{
    fill: #ffffff;
}
#filter svg .checkbox{
    fill: #333333;
}
#filter span.hide svg .checked, #filter span.hide svg .check{
    fill: transparent;
}
#products .wrap{
    width: 100%;
}
#products .card{
    width: 33.33%;
    padding: 0 1rem 4.375rem;
    text-align: center;
    position: relative;
    margin-bottom: 3rem;
}
#products .card a{
    border: 0;
    padding: 0;
    margin: 0;
}
#products .card a img{
    max-width: 70%;
}
#products .card a h6{
    margin: 1rem 0;
}
#products .card a p{
    color: #CED4DA;
}
#products .card button{
    background-color: #CED4DA;
    border: 1px solid #CED4DA;
    color: #333333;
    margin-top: 1rem;
    width: -webkit-calc(100% - 2rem);
    width: -moz-calc(100% - 2rem);
    width: calc(100% - 2rem);
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 0;
    text-transform: uppercase;
}
#products .card button i{
    font-style: normal;
    font-size: 1.25rem;
    margin-right: .5rem;
    vertical-align: middle;
}
#products .card.hide, #showCats{
    display: none;
}
@media screen and (max-width: 1100px){
#products .card {
    width: 50%;
}
}
@media screen and (max-width: 980px) {
    #products .card {
      width: 100%;
    }
    #shop section {
        width: 60%;
    }
    #shop aside {
        width: 40%;
      }
  }
  @media screen and (max-width: 720px) {
    #shop .row {
        max-width: 92vw;
        margin: 3rem auto;
    }
    #shop aside, #shop section {
        width: 100%;
        padding-left: 0;
    }
    #products .card button {
        width: 100%;
        left: 0;
        right: 0;
    }
    #cats, #filter{
        display: none;
    }
    #cats.opend, #filter.opend{
        display: block;
    }
    #shop section h1 {
        text-align: center;
        margin-bottom: 1rem;
        line-height: 3rem;
      }
      #products .card {
        padding: 0 0rem 4.375rem;
      }
      #showCats {
        display: block;
        width: 100%;
        margin-bottom: 2rem;
      }
  }