.leftsidebarcategory{
    background-color: #fff;
}
.leftsidebarcategory > ul > li > a {
    background: #FFF !important;
}
#sstore-3-level ul > li.has-sub > a.toggle-a::after, #sstore-3-level ul > li.has-sub > a.toggle-a::before{
    background: black !important;
}
#sstore-3-level ul ul{
    position: absolute;
    left: 100%;
    z-index: 99;
    bottom: -50%;
    min-width: 300px;
    flex-flow: column wrap;
}
#sstore-3-level ul ul li a{
    padding: 7px 20px;
}
.homepage--categories{
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    max-width: 1280px;
    margin: auto;
    text-align: center;
}
.homepage--category{
    align-self: center;
    position: relative;
}
.homepage--category > a {
	text-decoration: none;
}

.homepage--category:hover img {
	transform: scale(1.1);
}
.homepage--category__image{
    width: 100%;
    height: 100%;
    overflow: hidden;
    border: 1px solid #ddd;
}
.homepage--category__image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
    transition: transform .3s;
}
.homepage--category__title {
    width: 100%;
    height: 40px;
    color: #000;
    line-height: 40px;
    font-size: 18px;
    font-weight: 600;
}
@media(max-width: 1280px) {
    .homepage--categories {
        justify-content: space-evenly;
    }
    .homepage--category {
        width: 200px;
    }
}
@media(max-width: 768px) {
	.homepage--category__title {
        position: absolute;
        bottom: 0;
        left: 0;
        background: #000000b5;
        color: #fff;
    }
    .homepage--category {
        width: calc(50% - 20px);
        margin-bottom: 20px;
    }
}
@media (max-width: 480px) {
	.homepage--category {
        width: calc(50% - 10px);
        margin-bottom: 10px;
    }
	.homepage--category__title {
    	font-size: 14px;
    	font-weight: 400;
	}
}