/*CATEGORY SLIDER*/
.main-category-hover-image img {
    max-width: 100%;
    height: auto;
}

.additional-categories-thumbnails {
    display: flex;
    gap: 10px;
}

.additional-category-thumbnail img {
    max-width: 100px;
    height: auto;
}

.category-swiper-container {
    width: 100%;
    height: 100%;
    position: relative;
	margin-bottom: 20px;
}

.category-swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.main-category-hover-image img,
.additional-category-thumbnail img {
    max-width: 100%;
    height: auto;
}

.category-swiper-button-next, .category-swiper-button-prev {
    width: 40px;
    height: 40px;
    background-color: #1fb25a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
}

.category-swiper-button-next {
    right: 10px;
}

.category-swiper-button-prev {
    left: 10px;
}

.category-arrow {
    border: solid white;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 5px;
    margin: 0;
}

.category-right {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
	margin-left:-4px;
}

.category-left {
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
	margin-left:4px;
}

.category-swiper-scrollbar {
    width: auto;
	height:5px;
	margin: 0px 30px;
}

.category-swiper-title {
    margin-top: 4px;
    font-size: 13px;
    color: #333;
	font-weight: 600;
}