.funds-grid {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
}
    .funds-grid > * {
        flex: 0 1 20%;
        text-align: center;
        padding: 0.7em;
    }

    .funds-grid .effcf_fund_thumbnail {
        width: 100%;
    }
    .funds-grid .effcf_fund_thumbnail img {
        width: 150px;
        height: auto;
        border-radius: 50%;
    }

    .funds-grid.featured-funds {
        justify-content: space-evenly;
    }
        .funds-grid.featured-funds > * {
            flex: 0 1 33%;
            font-size: 1.25em;
        }
        .funds-grid.featured-funds .effcf_fund_thumbnail img {
            width: 200px;
            height: auto;
            border-radius: 50%;
        }
 
.effcf_fund_categories {
    padding: 0;
    margin: 0;
    text-align: center;
}
    .effcf_fund_categories li {
        display: inline-block;
        padding: 0.2em 0.8em;
        background: darkgray;
        margin: 0.2em 0.4em;
        list-style: none;
    }
    .effcf_fund_categories li:hover {
        background: gray;
    }
    .effcf_fund_categories li.active {
        background: lightgray;
        color: gray;
        outline: 1px solid red;
    }
    .effcf_fund_categories li a {
        color: black;
    }



/* Filtering */
@keyframes zoom-in {
    0% {
        transform: scale(.1);
    }
    100% {
        transform: none;
    }
}

@keyframes rotate-right {
    0% {
        transform: translate(-100%) rotate(-100deg);
    }
    100% {
        transform: none;
    }
}

.is-animated {
    animation: .6s zoom-in;
    /* animation: .6s rotate-right; */
}


.slick-container .slick-prev::before, .slick-container .slick-next::before {
    color: rgb(149, 193, 57) !important;
    font-size: 60px !important;
}

.slick-container .slick-prev, .slick-container .slick-next {
    width: 40px;
    height: 40px;
}

.slick-container .slick-prev {
    left: -50px !important;
}

.slick-container .slick-slide { text-align: center !important; vertical-align:  middle; height: 100%;}
.slick-container .slick-slide img { margin: 0 auto 0 auto;}
.slick-container { margin: 50px 0 50px 0 !important;}