div.feed-loader {
    display: none;
    position: absolute;
    border-radius: 15px;
    width: 30px;
    height: 30px;
    top: 50%;
    left: 50%;
    margin: -15px 0 0 -15px;
    background: #222 url('img/loading.html') no-repeat center center;
    background-size: contain;
}

div.social-feed {
    min-height: 100px;
}

div.feed-item {
    margin-bottom: 15px;
    padding: 0 5px 5px 5px;
    display: inline-block;
    vertical-align: top;
    width: 100%;
}

h3.feed-item-title {
    margin: 0 0 5px 0;
    padding-bottom: 5px;
    border-bottom: solid 1px #ccc;
    font-size: 16px;
}

div.feed-item-author {
    float: left;
    margin: 0 5px 5px 0;
}

div.feed-item-author > a {
    display: block;
    overflow: hidden;
    width: 36px;
    height: 36px;
    line-height: 36px;
    background: #333 no-repeat center center;
    border: solid 1px #555;
    background-size: cover;
    border-radius: 3px;
    text-align: center;

    box-shadow: inset 1px 1px 2px 0 rgba(0, 0, 0, 0.3), inset 1px 1px 0 0 rgba(0, 0, 0, 0.3), inset 2px 2px 0 0 rgba(0, 0, 0, 0.3);

    -webkit-transition: all 200ms ease-in;
    -moz-transition: all 200ms ease-in;
    -o-transition: all 200ms ease-in;
    transition: all 200ms ease-in;
}
div.feed-item-author > a:hover,
div.feed-item-author > a:focus {
    background-color: #777;
    box-shadow: none;
}

div.feed-item-icon {
    float: left;
    margin: 0 5px 5px 0;
}

div.feed-item-icon > a {
    display: block;
    overflow: hidden;
    width: 36px;
    height: 36px;
    line-height: 36px;
    background-color: #333;
    border: solid 1px #555;
    border-radius: 3px;
    text-align: center;
    color: #ddd;
    font-size: 20px;

    box-shadow: inset 1px 1px 2px 0 rgba(0, 0, 0, 0.3), inset 1px 1px 0 0 rgba(0, 0, 0, 0.3), inset 2px 2px 0 0 rgba(0, 0, 0, 0.3);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3), 1px 1px 0 #0e0e0e, 2px 2px 0 #0e0e0e, 3px 3px 0 #0e0e0e;

    -webkit-transition: all 200ms ease-in;
    -moz-transition: all 200ms ease-in;
    -o-transition: all 200ms ease-in;
    transition: all 200ms ease-in;
}

div.feed-item-icon > a:hover,
div.feed-item-icon > a:focus {
    color: #fff;
    font-size: 22px;
    background-color: #777;
    text-shadow: 4px 4px 7px rgba(0, 0, 0, 0.3),
    1px 1px 0 #0e0e0e, 2px 2px 0 #0e0e0e, 3px 3px 0 #0e0e0e, 4px 4px 0 #0e0e0e, 5px 5px 0 #0e0e0e,
    6px 6px 0 #0e0e0e, 7px 7px 0 #0e0e0e, 8px 8px 0 #0e0e0e, 9px 9px 0 #0e0e0e, 10px 10px 0 #0e0e0e,
    11px 11px 0 #0e0e0e, 12px 12px 0 #0e0e0e, 13px 13px 0 #0e0e0e, 14px 14px 0 #0e0e0e, 15px 15px 0 #0e0e0e,
    16px 16px 0 #0e0e0e, 17px 17px 0 #0e0e0e, 18px 18px 0 #0e0e0e, 19px 19px 0 #0e0e0e, 20px 20px 0 #0e0e0e;
    box-shadow: none;
}

div.feed-item-link {
    margin-bottom: 5px;
    /*font-style: italic;*/
    font-weight: 600;
}

div.feed-item-description {
}

div.feed-item-intents {
    margin-top: 5px;
    text-align: right;
}
div.feed-item-intents > a {
    display: inline-block;
    vertical-align: middle;
    margin: 0 10px;
}
div.feed-item-intents > a:hover,
div.feed-item-intents > a:focus {
    text-decoration: none;
}

div.feed-item-image {
}

div.feed-item-image img.attachment {
    width: 100%;
    margin: 5px 0;
    border: solid 1px #aaa;
    border-radius: 3px;
}