body .prodcut-list-wrapper {
    margin-bottom: 0 !important;
}
body .directory-body {
    max-width: 800px;
    margin-inline: auto;
    padding: 20px;
}
body .product-directory .product-list ul {
    gap: 0;
    margin: 0;
    grid-template-columns: 1fr;
}
body .product-directory .product-list ul li {
    position: relative;
    padding: 0;
}
body .product-directory .product-list ul li a:before {
    position: absolute;
    content: '';
    border-top: 2px solid #6f6f6f;
    border-right: 2px solid #6f6f6f;
    width: 6px;
    height: 6px;
    transform: rotate(45deg) translateY(-50%);
    left: 10px;
    top: 47%;
}
body .product-directory .product-list ul li a {
    position: relative;
    padding: 10px;
    padding-left: 34px;
    color: #3f3f3f;
    font-size: 15px;
    background: #f5f5f5;
}
body .product-directory .product-list ul li:nth-child(odd) a {
    background: #ebebeb;
}
body .product-directory .product-list ul li a:hover:before {
    position: absolute;
    content: '';
    border-top: 2px solid #689769;
    border-right: 2px solid #689769;
    width: 6px;
    height: 6px;
    transform: rotate(45deg) translateY(-50%);
    left: 10px;
    top: 47%;
}
body .product-directory .product-list ul li a:hover {
    background: #e9f1e9;
}
@media only screen and (max-width: 479px) {
    body .directory-body {
        padding: 14px;
    }

}