.product-category-list {
    list-style-type: none;
}
.product-category-child {
    font-size: 14pt;
    margin-left: 40px;
}
.product-category-parent {
    font-size: 16pt;
}
.product-category-parent button {
    bottom: 8px;
}


a {
    color: black;
}
a:hover {
    color: #eee
    text-decoration: underline;
}

/**
*PLUS MINUS BUTTON START
*/
.btn-plus-minus {
    color: #ecf0f1;
    background-color: #ff8c00;
    width: 20px;
    height: 20px;
    font-size: 1.5em;
    position: relative;
    border: 0;
}
.btn-plus-minus span {
    position: absolute;
    transition: 0.3s;
    background-color: white;
    border-radius: 2px;
}

.btn-plus-minus span:first-of-type {
    top: 25%;
    bottom: 25%;
    left: 45%;
    width: 10%;
}
.btn-plus-minus span:last-of-type {
    top: 45%;
    right: 25%;
    left: 25%;
    height: 10%;
}
.btn-plus-minus.active span:last-of-type {
    left: 50%;
    right: 50%;
}
.btn-plus-minus.active span {
    transform: rotate(90deg);
}
/**
*PLUS MINUS BUTTON END
*/



.product-category-list {
    background-image: url("../images/shop-bg.jpg");
    background-size: cover;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    border: 1px solid #666;
}
