/* Кнопка входа */
#top-login-button-wrapper {
    float: right;
}

#top-login-button {
    cursor: pointer;
    color: #fff;
    font-weight: 300;
    padding: 14px 0px 14px 40px;
    position:relative;
    height: 50px;
}

#top-login-button .login-icon,
#top-user-button .login-icon{
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    left: 0px;
    top: 10px;
    padding-left: 0px;
}

#top-login-button .login-icon:before,
#top-user-button .login-icon:before{
    position: absolute;
    top: 5px;
    left: 5px;
}

#top-user-button {
    cursor: pointer;
    color: #fff;
    font-weight: 300;
    padding: 14px 25px 14px 40px;
    position:relative;
    height: 50px;
}

#top-user-button .tail {
    position: absolute;
    width: 20px;
    height: 20px;
    
    top: 50%;
    margin-top: -10px;
    right: 0px;
    
    cursor: pointer;
}

#top-user-button .tail:before {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 5px 0 5px;
    border-color: #e4e5e6 transparent transparent transparent;
    content: " ";
    display: block;
    
    position: absolute;
    top: 50%;
    margin-top: -2px;
    left: 50%;
    margin-left: -5px;
    
}

#top-user-button img {
    display: block;
    position: absolute;
    width: 31px;
    height: 31px;
    left: 0px;
    top: 10px;
   
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    
    border: 1px solid #50585f;
}

#top-user-button:after {
    content: " ";
    display: block;
    position: absolute;
     width: 33px;
    height: 33px;
    left: -1px;
    top: 9px;
   
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    
    border: 2px solid #50585f;
}

#top-user-button.user-no-photo:after {
    display:none;
}

#top-user-button .user-name {
   text-overflow: ellipsis;
   white-space: nowrap;
   overflow: hidden; 
   display: inline-block;
   max-width: 180px;
}

@media only screen and (max-width: 768px) {
    #top-login-button,
    #top-user-button {
        padding: 0px;
        width: 33px;
        height: 50px;
    }
    #top-login-button .login-text,
    #top-user-button .user-name{
        display: none;
    }
    
    #top-user-button .tail {
        display: none;
    }
    
   
}