p.partner-price {
    width: 100%;
    background-image: linear-gradient(to top, #09203f 0%, #537895 100%);
    color: white;
    text-align: center;
    padding: .25em 1.5em;
}
p.partner-price > span:first-child {
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
}
p.partner-price > span:nth-child(2) {
    font-family: "Quicksand", sans-serif;   
}
body {
    background-color: white;
    padding-bottom: 100px;
}
.no-product-found {
    width: 100%;
    font-family: "Montserrat", sans-serif;
    text-align: center;
    font-style: italic;
}
.product-container {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
}

.product-layout {
    width: 32%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    border-radius: 5px;
    box-shadow: 2px 2px 2px #CCC;
    background-color: white;
}

.product-layout:nth-child(3n-1), .product-layout:nth-child(3n-2) {
    margin-right: 1%;
}
.product-layout:nth-child(3n-2) {
    margin-left: 1%;
}

.product-layout img {
    width: 100%;
}

.product-name {
    color: black;
    font-size: .9em;
    text-align: center;
    margin-top: 1em;
    font-weight: bold;
    font-family: "Montserrat", sans-serif;
}

.product-price {
    font-family: "Montserrat", sans-serif;
    font-size:  .9em;
    font-weight: 500;
}

img[rendered] {
    width: 100%;
}

figure.image {
    width: 100%;
    padding: 8px;
    border-radius: 20px;
    background-color: #EEE;
}
figure.image img {
    width: 100%;
    border-radius: 20px;
}
figure.image.image-style-side {
    width: 50%;
    padding: 8px;
    background-color: #EEE;
    border-radius: 15px;
    display: inline-block;
    float: right;
    margin-left: 20px;
}
figure.image.image-style-side img {
    width: 100%;
    border-radius: 15px;

}

figcaption {
    text-align: center;
    font-size: .8em;
}

blockquote {
    border-left: 8px solid #DDD;
    padding-left: 2em;
    font-style: italic;
}
#category-detail-description {
padding: 1.5em 2em;
font-family: "Quicksand", sans-serif;
font-weight: .8em;
background-color: white;
overflow-y: hidden;
transition: height 1s;
position: relative;        }

.bold {
    font-weight: bold;
}
.italic {
    font-style: italic;
}
#no-item-in-category {
    font-family: "Quicksand", sans-serif;
    font-style: italic;
}
.category-title {
    display: flex;
    justify-content: center;
    align-content: center;
    width: 100%;
    height: 100px;
    background-color: rgb(235, 235, 235);
}
.category-title > span {
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1.15em;
    letter-spacing: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.category-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.category-container > .side-bar {
    width: 25%;
}
.category-container > .main-content {
    width: 75%;
}
.mobile-filter {
    display: none;
}
.category-notification {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1em 1.5em 1em 1.5em;
}
.product-sortby {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.product-list-sortby {
    margin-right: .5em;
    font-family: "Montserrat", sans-serif;
    font-size: .8em;
}
#sort-order {
    padding: .25em 1em;
    font-family: "Quicksand", sans-serif;
    min-width: 200px;
    font-size: .7em;
    border-color: #AAA;
}
.category-report {
    font-size: .8em;
    font-family: "Montserrat", sans-serif;
}

div.load-more {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

div.load-more > button {
    padding: .5em 1.5em;
    text-transform: uppercase;
    background-color: white;
    color: black;
    font-family: "Monserrat", sans-serif;
    border: 1px solid #555;
    font-size: .9em;
    transition: all 200ms;
}

div.load-more > button:hover {
    background-color: black;
    color: white;
}

@media screen and (max-width: 768px) {
    .product-container {
        justify-content: space-between;
    }
    .product-layout {
        width: 49%;
    }
    .product-layout:nth-child(3n-1), .product-layout:nth-child(3n-2) {
        margin-right: 0;
    }
    .product-layout:nth-child(3n-2) {
        margin-left: 0;
    }
   .category-container {
        flex-direction: column;
    }
    .category-container > .side-bar {
        width: 100%;
    }
    .category-container > .main-content {
        width: 100%;
    }
    .category-notification {
        justify-content: space-around;
        flex-wrap: wrap;
    }
    .category-notification > *:nth-child(3n) {
        margin-top: .75em;
    }
    .mobile-filter {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 48%;
        padding: .25em 1em;
        font-family: "Quicksand", sans-serif;
        font-size: .7em;
        border: 1px solid #AAA;
        pointer-events: all;
    }
    .mobile-filter:hover {
        cursor: pointer;
        border-color: black;
    }
    .product-sortby {
        width: 48%;
    }
    #sort-order {
        min-width: none;
        width: 100%;
    }
    .product-list-sortby {
        display: none;
    }
}