/*
Wordpress Popular Posts plugin stylesheet
Developed by Hector Cabrera
cabrerahector.com | @cabrerahector

Use the following classes to style your popular posts list as you like.
*/

/* Styles the "Sorry, no data so far" message */
.wpp-no-data {
}

/* UL - Popular Posts container styles */
.wpp-list {

}
    /* LI - Post container styles */
    .wpp-list li {
        position: relative;
        overflow: hidden;
        float: none;
        clear: both;
        margin-bottom: 1rem;
    }
    .wpp-list li :hover{
        color: #ff9933;
        transition: color 0.3s;
    }

    .wpp-list li:last-of-type {
        margin-bottom: 0;
    }

    /* Styles for the popular post in view */
    .wpp-list li.current {
    }

        /* Thumbnail styles */
        .wpp-thumbnail {
            display: block;
            overflow: hidden;
            float: left;
            margin: 0 1rem 0 0;
            border: none;
        }
        .wpp-thumbnail img{
            transition: transform 0.3s ease;
        }
        .wpp-thumbnail :hover img{
            transform: scale(1.2);
        }


        /* Title styles */
        .wpp-post-title {
            font-size: 0.875rem;
            font-weight: 700;
            line-height: 1.5;
            text-decoration: none;
            color: #333333;
        }

        /* Excerpt styles */
        .wpp-excerpt {
        }

        /* Stats tag styles */
        .wpp-meta, .post-stats {
            display: block;
            font-size: 0.8em;
        }

        .wpp-meta:empty, .post-stats:empty {
            display: none;
        }

            /* Comments count styles */
            .wpp-comments {
            }

            /* Views count styles */
            .wpp-views {
                display: none;
            }

            /* Author styles */
            .wpp-author {
            }

            /* Post date styles */
            .wpp-date {
            }

            /* Post category styles */
            .wpp-category {
            }

        /* WP-PostRatings styles */
        .wpp-rating {
        }