@import url(https://fonts.googleapis.com/css?family=Lato);
@font-face{
    font-family:'PhotoStream';
    src:url('photostream.ttf') format('truetype');
}
.ph-font{
    display: inline-block;
    font: normal normal normal 14px/1 PhotoStream;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translate(0, 0);
}
.ph-font.logo{
    color: #489ae2;
    font-size: 40vh;
}
.ph-font.logo:before {
    content: "\0110";
}
.visit-photostream{
    position: absolute;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 1.75em;
    bottom: 10%;
}

html, body{
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: 'Lato', 'Myriad Pro','Trebuchet MS', sans-serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    font-size: 10px;
    width: 100vw;
    height: 100vh;
}
body{
    background-color: #333333;
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track        {
    background-color: transparent;
}
::-webkit-scrollbar-track-piece  {

}
::-webkit-scrollbar-thumb        {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}


a{
    text-decoration: none!important;
}
#photostream-container{
    position: relative;
    width: 100%;
}
.loading {
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.loading i.logo {
    -webkit-animation-name: rotate;
    -webkit-transition-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-duration: 1.2s;
    animation-name: rotate;
    animation-duration: 1.2s;
    animation-iteration-count: infinite;
    transition-timing-function: linear;
}
.loading .loading-patience{
    font-size: 4em;
    color: #489ae2;
    margin-top: 1em;
    display: none;
    transition: all cubic-bezier(0.65, 0.05, 0.36, 1) 275ms;
    -webkit-transition: all cubic-bezier(0.65, 0.05, 0.36, 1) 275ms;
    -moz-transition: all cubic-bezier(0.65, 0.05, 0.36, 1) 275ms;
    -ms-transition: all cubic-bezier(0.65, 0.05, 0.36, 1) 275ms;
    -o-transition: all cubic-bezier(0.65, 0.05, 0.36, 1) 275ms;
}
.loading .loading-patience.collapsed {
    transform: scale(0, 0);
    -webkit-transform: scale(0, 0);
    -moz-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    -o-transform: scale(0, 0);
}
@-webkit-keyframes rotate {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
    }
}
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.item{
    opacity: 0;
    border: 5px solid transparent;
    overflow: hidden;
}
.item > a{
    position: absolute;
    top:0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.socialmeter {
    position: absolute;
    right: -20rem;
    top: 5vh;
    z-index: 999;
    transition: all 850ms linear 100ms;
    background: white;
    padding: .75rem 1.5rem;
    border-radius: .5rem 0 0 .5rem;
    box-shadow: 2px 4px 9px -3px black;
}

.image-mini{
    position: absolute;
    bottom: 0;
    color: white;
    z-index: 2;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 0.45rem 0.9rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 1.35rem;
}
.image-mini > i.fa{
    padding-right: 0.45rem;
}
.photos-counter{
    width:inherit;
    height:inherit;
    color: white;
    background: rgba(72, 154, 226, 0.85);

    transition: all 850ms linear 100ms;
    opacity: 0;

    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: center;
    align-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;

}
.photos-counter > div{
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
    flex-wrap: wrap;
    text-align: center;
}
.hashtags{
    font-size: 3rem;
}
.counters{
    font-size: 3rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content : space-around;
    -ms-flex-pack : distribute;
    justify-content : space-around
}
.counters > div{
    padding: .5rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.counters > div > span{
    padding: 0 .5rem;
}
.counters > div:first-child{
    border-right: .25rem;
}
.counters > div:last-child{
    border-left: .25rem;
}
.dblh.dblw.logo > a {
    /*background-size: 100%!important;*/
}

.news-block{
    width: 100vw;
    height: 4.5em;
    background: rgba(0,0,0,0.9);
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 999999;
}

.news-list{
    margin: 0;
    list-style: none;
    color: #ffffff;
    position: relative;
}

.news-item{
    font-size: 2.5em;
    padding: 0 10px;
    line-height: 1.75em;
    width: 100vw;
    display: inline-block;
    position: absolute;
    left: 100vw;
    /*text-align: center;*/
}

.news-item b{
    color: #489AE2;
}

.event-mode-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.35);
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 1000!important;

    transition: opacity linear 3s;

    opacity: 0;
    visibility: hidden;

}
.event-mode-container.show{
    opacity: 1;
}
.event-mode-container.visible{
    visibility: visible;
}
.event-mode-container .event-mode-logo-container{
    width: 70%;
    height: 70%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.event-mode-container .event-mode-hashtag-container{
    font-size: 15vh;
    padding: 1vh;
    font-weight: 600;
    color: #fff;
}
.event-mode-container .event-mode-logo-container + .event-mode-hashtag-container{
    font-size: 5vh;
}

#photostream-details{
    position: absolute;
    top: 0;
    left:0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    background-color: transparent;
    transition: background-color linear 200ms;
}
#photostream-details.display{
    z-index: 9999999;
    visibility: visible;
    background-color: rgba(0,0,0,.75);
}

#photostream-details .single-image{
    position: absolute;
    background-size: cover;
    background-position: center;
    border-style: solid;
    border-color: transparent;
    background-repeat: no-repeat;
    border-radius: 4px;
    box-shadow : 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.4);
}


#photostream-details .single-image.centered{
    position: initial;
    border: 0;
}

#photostream-details .single-image .single-video{
    visibility: hidden;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 4px;
}
#photostream-details .single-image .single-video video{
    min-width: 100%;
    object-fit: cover;
    object-position: center;
    min-height: 100%;
}
#photostream-details .single-image .social-tag-container{
    position: absolute;
    width: 48px;
    height: 48px;
    top: 16px;
    left: -34px;
    border-radius: 3px;
    padding: 8px;
    background-color: #fff;
    opacity: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.36);
    font-size: 3.25rem;
    transition: all linear 250ms;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}
#photostream-details .single-image .social-tag-container.show{
    transform: translatex(10px);
}
#photostream-details .single-image .social-tag{
    font-size: 3.25rem;
    display: block;
}
#photostream-details .single-image .social-tag.fa-twitter{
    color: #489AE2;
}
#photostream-details .single-image .social-tag.fa-instagram{
    color: #e91ea1;
}



#photostream-details .single-image .details-options{
    width: 100%;
    height: 100%;
    position: relative;
}
#photostream-details .single-image .details-options .user-details{
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: all linear 250ms;
    border-radius: 0 0 4px 4px;

    background: -webkit-linear-gradient(transparent, rgba(0,0,0,.9));
    background: -o-linear-gradient(transparent, rgba(0,0,0,.9));
    background: -moz-linear-gradient(transparent, rgba(0,0,0,.9));
    background: linear-gradient(transparent, rgba(0,0,0,.9));
}
#photostream-details .single-image .social-tag-container.show,
#photostream-details .single-image .details-options .user-details.show,
#photostream-details .single-image .details-options .text-details.show{
    opacity: 1;
    visibility: visible;
}
#photostream-details .single-image .details-options .user-details .user-profile-image{
    margin-right: 8px;
    background-color: #eaeaea;
    border-radius: 50%;
    display: flex;
    position: relative;
    width: 48px;
    height: 48px;
}
#photostream-details .single-image .details-options .user-details .user-profile-image::before{
    content: "\0110";
    font: normal normal normal 14px/1 PhotoStream;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    color: rgba(0,0,0,.12);
    font-size: 3em;
    text-align: center;
    line-height: 48px;
    animation: fa-spin 1.25s infinite ease-in-out;
}
#photostream-details .single-image .details-options .user-details .user-profile-image.loaded::before{
    opacity: 0;
}
#photostream-details .single-image .details-options .user-details img
{
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-right: 8px;
}
#photostream-details .single-image .details-options .user-details .user-profile-image img{
    margin-right: 0;
    opacity: 0;
}
#photostream-details .single-image .details-options .user-details .user-profile-image.loaded img{
    opacity: 1;
}

#photostream-details .single-image .details-options .user-details span{
    font-weight: 600;
    font-size: 18px;
    color: #ffffff;
}
#photostream-details .single-image .details-options .text-details{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 16px 24px;
    opacity: 0;
    transition: opacity linear 250ms;
    background-color: rgba(0,0,0,0.75);
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
}

#photostream-details .single-image .details-options .text-details > p{
    font-size: 5vh;
    color: #fff;
    text-align: center;
    max-height: 75%;
    overflow: auto;
    word-break: break-word;
}
#photostream-details .single-image .details-options .text-details > p > b,
#photostream-details .single-image .details-options .text-details > p > a{
    color: #489ae2;
}
#photostream-details .single-image .details-options .text-details > p > a:hover{
    border-bottom: 2px dotted;
}
@keyframes explode {
    from{}
    to{
        transform: translateZ(500px);
    }
}

@media (min-width: 769px) {
    .share-photostream{
        position: absolute;
        top: 0;
        left: 0;
        width: 60px;
        height: 60px;
        border-radius: 0 0 100% 0;
        background: rgba(255, 255, 255, 0.75);
        border-right: 6px solid #333;
        border-bottom: 6px solid #333;
        cursor: pointer;
        transition: all ease-in-out 200ms;
        background-position: center;
        background-repeat: no-repeat;
        z-index: 9;
    }
    .share-photostream > i,
    .share-photostream-2 > i{
        padding: 2px;
        color: #09afdf;
        font-size: 35px;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        text-shadow: 1px 1px 4px black;
        visibility: hidden;
    }

    .share-photostream:hover{

        width: 200px;
        height: 200px;
        border-bottom-right-radius: 8px;

    }
    .share-photostream:hover > i{
        visibility: hidden;
    }

    /* SHARE V2 */
    .share-photostream-2 {
        position: absolute;
        top: calc( 50vh - 30px );
        left: calc( 50vw - 30px );
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.75);
        border: 6px solid #333;
        cursor: pointer;
        transition: all ease-in-out 200ms;
        background-position: center;
        background-repeat: no-repeat;
        z-index: 9;
    }
    .share-photostream-2:hover {
        top: calc( 50vh - 100px );
        width: 200px;
        height: 200px;
        border-radius: 8px;
        left: calc( 50vw - 100px );
    }
}