/*
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 {
        margin: 0;
		font-size: 0.8em;
		min-height: 70px;
		padding-left: 85px;
		position: relative;
		padding-top: 10px;
		padding-bottom: 10px;
		border-bottom: 1px solid #d7d7d7;
    }

    .wpp-list li:last-of-type {
        padding-top: 10px;
		border-top: 1px solid #d7d7d7;
    }

    /* Styles for the popular post in view */
    .wpp-list li.current {
		padding-top: 10px;
		border-top: 1px solid #d7d7d7;
    }

        /* Thumbnail styles */
        .wpp-thumbnail {
            position: absolute;
			left: 0; top: 10px;
			width: 65px;
			transition: all .15s ease-in-out; -webkit-transition: all .15s ease-in-out; -moz-transition: all .15s ease-in-out;
			display: block; border-radius: 3px; -moz-border-radius: 3px; -webkit-border-radius: 3px; box-shadow: 0 1px 2px rgba(0,0,0,0.3);
        }
        .wpp-thumbnail:hover { opacity: 0.7 }
		.wpp-list li:first-child .wpp-thumbnail { top: 15px; }

        /* Title styles */
        .wpp-post-title {
			font-weight: bold;
			font-weight: 600;
			font-size: 1.231em;
        }

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

        /* Stats tag styles */
        .wpp-meta, .post-stats {
            display:block;
			font-size:9px;
			font-weight:bold;
        }

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

            /* Views count styles */
            .wpp-views {
            }

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

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

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

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