/*! SocialCount - v0.1.5 - 2013-01-22
* https://github.com/filamentgroup/SocialCount
* Copyright (c) 2013 zachleat; Licensed MIT */
.socialcount {
    color: #fff;
    font-size: .875em;
    line-height: 2.2em
}

.socialcount>li {
    background-color: #999;
    border: 1px solid #303030
}

.socialcount>li,
.socialcount>li>a:focus,
.socialcount .loading {
    border-radius: 5px
}

.socialcount>li>a:focus,
.socialcount>li:hover,
.socialcount>li.hover {
    background-color: #464646
}


.socialcount {
    list-style: none;
    padding-left: 0;
    overflow: hidden
}

.socialcount-large {
    line-height: normal
}

.socialcount:link,
.socialcount:visited {
    color: inherit
}

.socialcount>li {
    display: inline-block;
    *display: inline;
    zoom: 1;
    position: relative;
    vertical-align: top;
    min-width: 80px;
    min-height: 30px;
    text-align: center;
    white-space: nowrap;
    *margin-right: 4px
}

.socialcount-small>li {
    min-width: 0
}

.socialcount-large>li {
    float: left;
    margin: 0 .6em .6em 0
}

.socialcount.recommend .facebook {
    min-width: 120px
}

.socialcount-small.recommend .facebook {
    min-width: 0
}

.socialcount-large>li,
.socialcount-large.recommend .facebook {
    min-width: 105px
}

.socialcount>li>a {
    display: block;
    padding: 0 5px;
    text-decoration: none;
    color: inherit
}

.socialcount-small>li>a {
    padding-left: 8px;
    padding-right: 8px
}

.socialcount-large>li>a {
    padding: 12px 5px 8px
}

.socialcount .count {
    color: inherit;
    position: relative;
    display: inline-block;
    *display: inline;
    zoom: 1;
    text-align: center;
    margin-left: 6px
}

.socialcount-large .count {
    display: block;
    width: 100%;
    margin-left: 0;
    padding-top: 10px
}

.socialcount-small .count {
    margin-left: 0
}

.socialcount .facebook iframe {
    height: 21px;
    width: 90px
}

.socialcount.de_DE .facebook iframe {
    width: 78px
}

.socialcount.like .facebook iframe {
    width: 48px
}

.socialcount.like.de_DE .facebook iframe {
    width: 75px
}

.socialcount .button {
    background: none !important;
    padding: 1px 0 0 0;
    display: none;
    width: 100%;
    position: absolute;
    left: 0;
    top: 5px;
    text-align: center;
    pointer-events: none
}

.socialcount .button iframe {
    pointer-events: auto
}

.socialcount-large .button {
    top: auto;
    bottom: 2px
}

.socialcount.grade-a.activate-on-hover>li.hover .count,
.socialcount.grade-a.activate-on-click>li.hover.active .count {
    text-indent: -999px
}

.socialcount.grade-a.activate-on-hover>li.hover .button,
.socialcount.grade-a.activate-on-click>li.hover.active .button {
    display: block
}

.socialcount.grade-a.activate-on-hover>li.hover>a,
.socialcount.grade-a.activate-on-click>li.hover.active>a {
    cursor: default
}

.socialcount-small.grade-a.activate-on-hover>li.hover>a,
.socialcount-small.grade-a.activate-on-click>li.hover.active>a,
.socialcount.grade-a.activate-on-hover>li.hover .button iframe,
.socialcount.grade-a.activate-on-click>li.hover.active .button iframe {
    cursor: pointer
}

.socialcount .loading {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    background-color: #aaa;
    background-color: rgba(170, 170, 170, 0.7);
    color: #000;
    text-transform: uppercase;
    font-size: .75em;
    text-align: center
}

.socialcount-large .loading {
    padding-top: 30%
}

.socialcount .loading .dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    margin: 0 3px;
    background: #fff;
    opacity: 0;
    border-radius: 50%;
    -webkit-animation: socialCountLoadingFade .6s infinite;
    -moz-animation: socialCountLoadingFade .6s infinite;
    animation: socialCountLoadingFade .6s infinite
}

.socialcount .loading .dot:nth-child(1) {
    -webkit-animation-delay: 0s;
    -moz-animation-delay: 0s;
    animation-delay: 0s
}

.socialcount .loading .dot:nth-child(2) {
    -webkit-animation-delay: .05s;
    -moz-animation-delay: .05s;
    animation-delay: .05s
}

.socialcount .loading .dot:nth-child(3) {
    -webkit-animation-delay: .1s;
    -moz-animation-delay: .1s;
    animation-delay: .1s
}

@-webkit-keyframes socialCountLoadingFade {
    0% {
        opacity: 0
    }

    50% {
        opacity: 0.8
    }

    100% {
        opacity: 0
    }
}

@-moz-keyframes socialCountLoadingFade {
    0% {
        opacity: 0
    }

    50% {
        opacity: 0.8
    }

    100% {
        opacity: 0
    }
}

@keyframes socialCountLoadingFade {
    0% {
        opacity: 0
    }

    50% {
        opacity: 0.8
    }

    100% {
        opacity: 0
    }
}