﻿.reels-container {
    display: inline-block;
    margin-top: 10px;
}

#reels-lst {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content:center;
    align-items:center;
}

    #reels-lst .reel-slide {
        text-align: center;
        font-size: 18px;
        background: #fff;
        flex-shrink: 0;
        position: relative;
        transition-property: transform;
        display: block;
        flex-grow: 1;
        width: 270px;
        height: 400px;
    }


@media screen and (max-width: 700px) {
    #reels-lst .reel-slide {
        max-width: calc(50% - 7.5px);
        height: 300px;
    }
}

    #reels-lst .reel-slide a {
        display: block;
        width: 100%;
        height: 100%;
    }

#reels-lst .reel-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

    #reels-lst .reel-slide .reels-view {
        position: absolute;
        bottom: 0;
        left: 0;
        color: #fff;
        font-size: 11px;
        margin: 0 0px 5px 10px;
    }

        #reels-lst .reel-slide .reels-view i {
            margin-right: 5px;
        }