/*OCFilter Pages*/
.ocf-page-list-top {
    margin-bottom: 5px;
	overflow: hidden;
    position: relative;
    z-index: 3;
	margin-bottom: 30px;
}
.ocf-page-group {
    margin-bottom: 10px;
    display: flex;
    align-items: start;
}
.ocf-page-group-name {
    font-weight: bold;
    font-size: 14px;
    margin-top: 3px;
    margin-right: 15px;
    width: 150px;
    flex: 0 0 150px;
}
.ocf-category-page-list {
    max-height: 135px;
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px;
    overflow-y: auto;
    overflow-x: hidden;
}
.ocf-category-page-list li {
    margin-bottom: 10px;
}
.ocf-category-page-list li.ocf-page-selected {
}
.ocf-category-page-list a {
    background-color: #eceef2;
    padding: 3px 7px;
    border-radius: 7px;
    color: #3a3c40;
    display: block;
    font-size: 13px;
    align-items: center;
    font-weight: normal;
    margin: 0 5px;
    min-height: 100%;
    text-decoration: none;
}
.ocf-category-page-list .ocf-page-selected a {
    background-color: #656565;
    color: #fff;
}
.ocf-category-page-list .ocf-page-selected a:after {
    content: "";
    width: 12px;
    height: 12px;
    display: inline-block;
    color: #656565;
    vertical-align: top;
    margin-left: 5px;
    margin-top: 4px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23fff' fill-opacity='0.8' viewBox='0 0 16 16'%3e%3cpath d='M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM5.354 4.646a.5.5 0 1 0-.708.708L7.293 8l-2.647 2.646a.5.5 0 0 0 .708.708L8 8.707l2.646 2.647a.5.5 0 0 0 .708-.708L8.707 8l2.647-2.646a.5.5 0 0 0-.708-.708L8 7.293 5.354 4.646z'/%3e%3c/svg%3e);
}

/*categories hub*/
.category-hub .slick-arrow{
	opacity: 0!important;
}
.category-hub:hover .slick-arrow{
	opacity: 1!important;
}
.category-hub .slick-arrow.slick-disabled{
	opacity: 0!important;
}
@media (min-width: 1200px) {
	.category-hub .slick-dots{
		bottom: -2px;
	}
}
.category-hub .products{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: nowrap;
    margin-right: -15px;
    margin-left: -15px;
	overflow: hidden;
}
.category-hub .products.slick-slider{
	overflow: visible;
}
.category-hub__category{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: var(--darck-background);
    padding: 15px;
    border-radius: var(--border-radius);
    border: 1px solid var(--darck-border-color);
    height: calc(100% - 30px);
    margin-bottom: 30px;
    position: relative;
}
.category-hub__category > .thumb{
    margin: 0 auto;
    min-height: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
	position: relative;
}
.category-hub__category > .thumb > img{
	margin: 0 auto;
	position: relative;
	z-index: 2;
}
.category-hub__category > .thumb > div{
    width: 250px;
    height: 250px;
    position: absolute;
    top: 22%;
    z-index: 1;
    opacity: 0.1;
    background-repeat: no-repeat;
    background-position: center;
}
.category-hub__category > .thumb > div:before{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	background-color: rgba(89, 131, 252, 0);
	background-image: linear-gradient(0deg, rgba(89, 131, 252, 0) 0%, rgba(29, 34, 42, 1) 100%);
}
.category-hub__category > .h2,
.category-hub__category > h2{
    font-size: 1.6rem;
    color: var(--text-darck-color);
}
.category-hub__category > .fa {
    position: absolute;
    bottom: 10px;
    right: 47px;
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0;
}
.category-hub__category:hover{
	border-color: var(--primary-color);
	-webkit-box-shadow: 0px 0px 8px 0px var(--primary-color-shadow-2);
    -moz-box-shadow: 0px 0px 8px 0px var(--primary-color-shadow-2);
    box-shadow: 0px 0px 8px 0px var(--primary-color-shadow-2);
}
.category-hub__category:hover > .h2,
.category-hub__category:hover > h2{
    color: var(--primary-color);
}
.category-hub__category:hover > .fa {
    right: 10px;
    opacity: 1;
}