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

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

div.feed-item {
    margin-bottom: 15px;
    padding-bottom: 5px;
}

h3.feed-item-title {
    font-weight: 600;
    margin: 0 0 5px 0;
    font-size: 16px;
}

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

div.feed-item-icon > a {
    display: block;
    overflow: hidden;
    width: 36px;
    height: 36px;
    line-height: 36px;
    background-color: #dadae4;
    border-radius: 18px;
    text-align: center;
    color: #6d6e71 !important;
    font-size: 20px;

    -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: #e7e7f1 !important;
    font-size: 22px;
    background-color: #5b5c61;

    text-shadow: 1px 1px 5px #000,
    1px 1px 0 rgba(0, 0, 0, 0.2), 2px 2px 0 rgba(0, 0, 0, 0.2),
    3px 3px 0 rgba(0, 0, 0, 0.2), 4px 4px 0 rgba(0, 0, 0, 0.2),
    5px 5px 0 rgba(0, 0, 0, 0.2);
}

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

div.feed-item-description {
}

div.feed-item-image {
    margin-bottom: 5px;
    background: no-repeat center center;
    background-size: cover;
    border: solid 1px #aaa;
    height: 100px;
    overflow: hidden;
}

div.feed-item-image img {
    max-width: 100%;
    position: absolute;
    left: -99999px;
}