html {
    margin: 0;
    padding: 0;
}
body.container-fluid {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
    padding-left: 30px;
    padding-right: 30px;
    background-color: #ed1c16;
    background-image: url('../images/bgd-pattern.png');
    background-repeat: repeat;
    background-position: 0 0;
}

img {
    width: 100%;
    height: auto;
}

.hidden {
    display: none;
}

#header {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 9.1666667%;
    background-image: url('../images/header.jpg');
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-color: #fff;
    background-size: cover;
    -webkit-box-shadow: 0px 4px 16px rgba(0, 0, 0, .67);
    -moz-box-shadow: 0px 4px 16px rgba(0, 0, 0, .67);
    box-shadow: 0px 4px 16px rgba(0, 0, 0, .67);
}

#logo, #hashTags {
    float: left;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

#hashTags {
    float: right;
    right: 30px;
}

.targetHashTag {
    float: left;
    width: auto;
    max-height: 100%;
    margin-right: 1.8vw;
}

#wallWrapper {
    position: absolute;
    top: 12%;
    left: 15px;
    right: 15px;
    height: 90%;
    /* overflow:hidden; */
    margin: auto;
    padding: 0;
    transform-origin: center;
    perspective: 10000px;
}

.status {
    position: relative;
    float: left;
    width: 48%;
    height: 42vh;
    margin: 0 1%;
    perspective: 600px;
    transform: rotateX(0deg);
    border-spacing: 0px;
    /* background-color: #fff; */
}

.status.switchSlide {

}

.statusBlock {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 9;
    transition: transform .4s cubic-bezier(.17, .67, .6, .99);
    overflow: hidden;
    backface-visibility: hidden;
    -webkit-box-shadow: 0px 0px 12px rgba(0, 0, 0, .5);
    -moz-box-shadow: 0px 0px 12px rgba(0, 0, 0, .5);
    box-shadow: 0px 0px 12px rgba(0, 0, 0, .5);
}

.status .current {
    transform: rotateX(0);
}

.status.switchSlide .current {
    transform: rotateX(180deg);
}

.status .next {
    transform: rotateX(180deg);
}

.status.switchSlide .next {
    transform: rotateX(360deg);
}

/*.status:nth-child(2n+2) {*/
    /*margin-right: 0;*/
    /*margin-left: 1%;*/
/*}*/

.status:nth-child(n+3) {
    margin-top: 2vh;
}

.statusBlock.twitter:after, .statusBlock.instagram:after {
    content: "";
    display: block;
    position: absolute;
    width: 40px;
    height: 34px;
    bottom: 1vw;
    right: 1vw;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-color: transparent;
    background-size: auto 100%;
}

.statusBlock.twitter:after {
    background-image: url(../images/twitter.png);
}
.statusBlock.instagram:after {
    background-image: url(../images/instagram.png);
}

.avatar {
    float: left;
    width: 4vw;
    height: 4vw;
    overflow: hidden;
    position: relative;

}

img.avatarImg {
    width: 100%;
    height: 100%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.user {
    position: relative;
    height: 4vw;
    float: left;
    margin-left: 1vw;
}

.username {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    color: #ed1c16;
    font-size: 2.5vh;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.media {
    text-align: center;
}

.content {
    padding: 1vw;
}

.message {
    margin-top: 2.5vh;
    font-family: 'Roboto', sans-serif;
    color: #000;
    font-size: 2.5vh;
}

.noMedia .message {
    font-size: 3.6vh;
}

.message .hashTag {
    font-family: 'Roboto', sans-serif;
    mso-ansi-font-weight: 700;
    color: #ed1c16;
}

.media {
    position: absolute;
    height: 100.1%;
    top: 0;
    left: 0;
    overflow: hidden;
}

.statusBlock > .media {
    margin-top: -0.02vw;
    margin-left: -0.02vw;
    padding: 0;
}

img.mediaImg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

img.mediaImg.vertical, img.mediaImg.square {
    width: 100%;
    height: auto;
}

img.mediaImg.horisontal {
    height: 100%;
    width: auto;
    max-width: none;
}