body.ddf-socialfeed-demo {
    background: #f0f3f0;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    line-height: 1.45em;
    padding: 0;
}

body.ddf-socialfeed-demo header {
    background: #a5e3be;
    border-bottom: 3px solid #32d082;
    padding: 45px 0;
    text-align: center;
    margin-bottom: 45px;
}

body.ddf-socialfeed-demo footer {
    background: #a5e3be;
    border-top: 3px solid #32d082;
    padding: 45px 0;
    text-align: center;
}

body.ddf-socialfeed-demo a {
    color: #32d082;
    font-weight: 700;
}

body.ddf-socialfeed-demo .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

#social-feed-wrap {
    padding-bottom: 45px;
}

#social-reveal-all,
#social-feed-load-more,
#social-feed-end,
#social-feed-loading {
    padding: 15px 0;
    text-align: center;
    z-index: 105;
    position: relative;
    background: white;
}

#social-reveal-all,
#social-feed-load-more,
#social-feed-loading {
    -webkit-box-shadow: 0 -15px 15px -15px rgba(0,0,0,0.5);
    box-shadow: 0 -15px 15px -15px rgba(0,0,0,0.5);
}

#social-feed-load-more,
#social-feed-end,
#social-feed-loading {
    display: none;
}

#social-reveal-all a,
#social-feed-load-more a,
#social-feed-end span,
#social-feed-loading span {
    display: inline-block;
    padding: 10px 30px;
    color: inherit;
    text-decoration: none;
    opacity: 0.5;
    font-size: 1em;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    font-weight: 700;
}

#social-reveal-all a:hover,
#social-feed-load-more a:hover {
    opacity: 1;
}

#social-feed {
    height: 500px; 
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    overflow: hidden;
    margin-left: -3px;
    margin-right: -3px;
}

#social-feed * {
    box-sizing: border-box;
}

#social-feed img,
#social-feed picture,
#social-feed video {
    max-width: 100%;
    height: auto;
}


#social-feed .social-feed-item {
    width: 100%;
    padding: 3px;
    animation-name: fadeIn;
    animation-iteration-count: 1;
    animation-direction: forwards;
    text-align: left;
}

#social-feed .social-feed-item > * {
    background: #fff;
    border-radius: 2px;
    overflow: hidden;
    padding: 15px;
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    z-index: 99;
    position: relative;
}

#social-feed .social-feed-item:hover > * {
/*    -moz-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);*/
    z-index: 100;
    -webkit-box-shadow: 0 0 5px 0 rgba(0,0,0,0.2);
    box-shadow: 0 0 5px 0 rgba(0,0,0,0.2);
    backface-visibility: hidden;
}

#social-feed .social-feed-item > *:after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: '';
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#f3f3f3+0,ffffff+100 */
    background: rgb(243,243,243); /* Old browsers */
    background: -moz-linear-gradient(-45deg, rgba(243,243,243,1) 0%, rgba(255,255,255,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg, rgba(243,243,243,1) 0%,rgba(255,255,255,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(135deg, rgba(243,243,243,1) 0%,rgba(255,255,255,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f3f3f3', endColorstr='#ffffff',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
    opacity: 1;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    z-index: -1;
    border-top: 1px solid rgba(255,255,255,0.0);
    border-bottom: 1px solid rgba(0,0,0,0.0);
    -webkit-box-shadow: 0 0 5px 0 rgba(0,0,0,0);
    box-shadow: 0 0 5px 0 rgba(0,0,0,0);
}

#social-feed .social-feed-item:hover > *:after {
    opacity: 0;

    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

#social-feed .media-thumb {
    margin-bottom: 15px;
}

#social-feed .social-feed-item .meta {
    position: relative;
    min-height: 48px;
    margin-bottom: 15px;
}

#social-feed .social-feed-item .dated {
    padding-top: 10px;
    text-align: right;
    color: #989898;
    font-size: 0.75em;
}


#social-feed .social-feed-item .controls {
    padding-right: 48px;
    padding-left: 58px;
    display: flex;
    align-items: center;
    min-height: 48px;
}

#social-feed .social-feed-item .profile-img {
    position: absolute;
    left: 0;
    width: 48px;
    max-height: 48px;
    overflow: hidden;
    opacity: 0;
    z-index: 101;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

#social-feed .social-feed-item .logo {
    position: absolute;
    left: 0;
    width: 48px;
    height: 48px;
    text-align: center;
    line-height: 48px;
    font-size: 30px;
    opacity: 0.5;
    z-index: 100;
}

#social-feed .social-feed-item .link {
    position: absolute;
    right: 0;
    top: 0;
    width: 48px;
    height: 48px;
    font-size: 20px;
    line-height: 48px;
    text-align: center;
}

#social-feed .social-feed-item:hover .profile-img {
    opacity: 1;

}

/*#social-feed .social-feed-item .profile-img + .controls {
    padding-left: 58px;
}
*/
#social-reveal-all a:before,
#social-feed-load-more a:before,
#social-feed-loading span:before {
    content: '\f021';
    margin-right: 10px;
    font-family: "Font Awesome 5 Pro";
    opacity: 0.5;
    display: inline-block;
}

#social-reveal-all a:hover:before,
#social-feed-load-more a:hover:before,
#social-feed-loading span:before {
    animation-name: reload;
    animation-iteration-count: infinite;
    animation-duration: 4s;
}



@keyframes reload {
    0% {transform: rotate(0deg);}
    25% {transform: rotate(180deg);}
    50% {transform: rotate(180deg);}
    75% {transform: rotate(360deg);}
    100% {transform: rotate(360deg);}
}

@keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
}

@media only screen and (min-width: 480px)  {
    #social-feed .social-feed-item { 
        width: 50%;
    }
}

@media only screen and (min-width: 768px)  {
    #social-feed .social-feed-item { 
        width: 33.33%;
    }
}

@media only screen and (min-width: 992px)  {
    #social-feed .social-feed-item { 
        width: 25%;
    }
}