.marketplace-dropdown-arrow {
    animation: arrow-animation-in-active 0.3s ease forwards;
}

.marketplace-dropdown-block.is-active .marketplace-dropdown-arrow {
    animation: arrow-animation-active 0.3s ease forwards;
}

@keyframes arrow-animation-in-active {
    from {
        opacity: 0;
        transform: rotate(0deg);
    }

    to {
        opacity: 1;
        transform: rotate(180deg);
    }
}

@keyframes arrow-animation-active {
    from {
        opacity: 0;
        transform: rotate(180deg);
    }

    to {
        opacity: 1;
        transform: rotate(0deg);
    }
}

@media (max-width: 991px) {
    .marketplace-tabs-categories {
        padding-bottom: 0 !important;
    }

    .marketplace-dropdown-content {
        display: none;
    }
}