.lenta_left {
        display: inline-block;
        position: relative;
        padding: 5px 15px 5px 25px;
        margin: 0px 10px 10px -27px;
        color: #FFF;
        background-color: #3D6898;
    }

    .lenta_left:after {
        content: ' ';
        position: absolute;
        width: 0;
        height: 0;
        left: 0px;
        top: 100%;
        border-width: 4px 6px;
        border-style: solid;
        border-color: #2e4968 #2e4968 transparent transparent;
    }

.text_status {
        background: #ebf2f9;
        position: relative;
    }

    .text_status::after {
        content: '';
        position: absolute;
        /* Абсолютное позиционирование */
        left: 10px;
        top: -20px;
        /* Положение треугольника */
        border: 10px solid transparent;
        /* Прозрачные границы */
        border-bottom: 10px solid #ebf2f9;
        /* Добавляем треугольник */
    }

.sponsor_hint {
        border: 1px solid #f57c00;
        border-radius: 3px;
        position: relative;
        padding: 5px;
        background: #f5ece3;
        color: #f44336;
        font-size: 0.75rem;
        transform: translate3d(0, - 5%, 0);
        animation: spin 1.4s infinite linear;
    }

    .sponsor_hint::before,
    .sponsor_hint::after {
        content: '';
        position: absolute;
        left: 30px;
        top: -20px;
        border: 10px solid transparent;
        border-bottom: 10px solid #f57c00;
    }

    .sponsor_hint::after {
        border-bottom: 10px solid #f5ece3;
        top: -19px;
    }

@keyframes spin {
    0% {
        transform: translate3d(0, -5%, 0);
    }

    50% {
        transform: translate3d(0, 5%, 0);
    }

    100% {
        transform: translate3d(0, -5%, 0);
    }
}

.dashboard-user-box {
    width: 200px;
}

@media screen and (max-width: 750px) {

    .dashboard-user-box {
        width: auto;
    }

}

.profileAboutText {
    margin: -7px 10px 0px 10px;
    position: relative;
}

.profileAboutText::before, .profileAboutText::after {
        content: ''; 
        position: absolute;
        left: 68px; 
        top: -20px;
        border: 10px solid transparent;
        border-bottom: 10px solid #CCC;
    }

    .profileAboutText::after {
        border-bottom: 10px solid white;
        top: -19px; 
    }


.attachImageDelete, .attachVideoDelete {
    background: #000;
    color: #FFF;
    width: 22px;
    height: 22px;
    text-align: center;
    line-height: 22px;
    border-radius: 3px;
    display: block;
    float: right;
    margin-bottom: -33px;
    margin-top: 3px;
    margin-right: 3px;
    position: relative;
    cursor: pointer;
}


#imageBoxDelete {
    content: "X";
    position: absolute;
    right: 10px;
    top: 10px;
    width: 20px;
    height: 20px;
    background: #000;
    border-radius: 3px;
    color: #d5d4d4;
    text-align: center;
    line-height: 17px;
    font-size: 15px;
    cursor: pointer;
    z-index: 1;
    padding: 0px;
}

.postOptionsBox button {
    border: none;
    background: none;
}

.postOptionsBox {
    position: absolute;
    right: 13px;
    top: 13px;
}

.postOptionsBox .dropdown-menu.show {
    display: block;
    margin: -35px 0px 0px 15px !important;
    z-index: 1;
}

.postOptionsBox button i::before {
    color: #98b3c1;
}

.postOptionsBox button.show i::before {
    color: #000 !important;
    position: relative;
    z-index: 2;
}

.mobile-profile-box {
    padding-top:60px;
}

.mobile-profile-avatar {
    width: 150px;
}

.mobile-profile-avatar img {
    padding:2px;
    margin-top:-60px;
}

.mobile-profile-status {
    width: 33px; 
    height: 33px; 
    line-height: 30px; 
    right: 9px; 
    bottom:5px; 
    border: 2px solid #FFF; 
    font-size: 11px;
}

.mobile-profile-soclinks {
    margin-top:-10px;
}

.mobile-profile-username {
    margin-top:-40px;
}

@media screen and (max-width: 400px) { 

    .mobile-profile-box {
        padding-top:37px;
    }

    .mobile-profile-avatar {
        width: 100px;
    }

    .mobile-profile-avatar img {
        margin-top: -45px;
    }

    .mobile-profile-username {
        margin-top:-24px;
        font-size: 16px !important;
    }

    .mobile-profile-status {
        bottom: 3px;
        width: 27px;
        height: 27px;
        line-height: 23px;
        font-size: 11px;
    }

    .mobile-profile-soclinks {
        margin-top:-12px;
    }

    .profileAboutText {
        margin: -3px 0px 0px 0px;
    }

    .profileAboutText::before, .profileAboutText::after {
        left: 45px;
    }    

}