.splide__slide.category {
    height: 128px;
    padding: 12px 6px;
    background: transparent;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media only screen and (max-width: 478px) {
    .splide__slide.category {
        height: 120px;
        padding: 12px 0px;
    }
}

.splide__slide.category:hover {
    transform: translateY(-2px);
}

.splide__track {
    overflow: visible !important;
}

.splide__list {
    overflow: visible !important;
}

.splide {
    overflow: visible !important;
}

.container.splide {
    overflow: visible !important;
}

.section.content.splide {
    display: flex;
    flex-direction: column;

    overflow: visible !important;
}

.section.content-wrapper.slider {
    overflow: hidden !important;
}

.splide__slide.is-active {
    border-color: var(--primary-accent);
}

.splide__arrow:disabled {
    opacity: 0;
    pointer-events: none;
}

.category.content-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.category.image-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category.image {
    width: 156px;
    height: auto;
    object-fit: cover;
}

@media only screen and (max-width: 767px) {
    .category.image {
        width: 128px;
        height: auto;
    }
}

@media only screen and (max-width: 478px) {
    .category.image {
        width: 96px;
        height: auto;
    }
}