.uAvatar_inner.dropdown .dockedPopup.dropdown-menu {
    background-color: transparent;
    box-shadow: none;
    border: none;
}

.user_search_icon {
    width: 16px;
    height: 18px;
    display: inline-block;
}

.users_header {
    background: #f3f5f6;
}

user {
    display: block;
    content: "";
    padding-left: 3px;
    margin: 2px 0px;
}

user:after {
    display: block;
    content: "";
    clear: both;
}

.togTitle, .togCount, .togAction, .uAvatar {
    float: left;
}

.togTitle, .uTitle {
    cursor: pointer;
}

.togAction {
    float: right;
}

.togCount {
    min-width: 25px;
    height: 25px;
    background: #75d29a;
    border-radius: 4px;
    text-align: center;
    line-height: 26px;
    font-size: 15px;
    margin: 0px 5px;
    color: white;
}

.togCount.green {
    background: #75d29a;
}

.togCount.red {
    background: #f48586;
}

.togCount:after {
    content: attr(_users)
}

.togUsers {
    height: 25px;
    line-height: 25px;
    margin: 5px 0px 12px;
}

.togUsers:after {
    clear: both;
    content: "";
    display: block;
}

#header .search_form li.online_users, #header .search_form li.offline_users {
    width: 330px;
    padding: 0px 0px 10px 5px;
}

#header .search_form li.online_users:after {
    display: block;
    content: "";
    height: 1px;
    width: 300px;
    margin: 0px auto;
    background: #f3f5f6;
    margin-top: 10px;
}

.togContent {
    display: none;
}

.togContent.opn {
    display: block;
    overflow-y: scroll;
    max-height: 300px;
}

.uAvatar {
    width: 52px;
    height: 52px;
    /*overflow: hidden;*/
}

.uTitle {
    line-height: 45px;
}

.uTitle:hover {
    color: #3498da;
    cursor: pointer;
}

.cube {
    float: left;
    height: 50px;
    margin-left: 8px;
    width: 80%;
    -webkit-transition: -webkit-transform .33s;
    transition: transform .33s; /* Animate the transform properties */
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d; /* <-NB */
}

/* Position the faces */
.flippety {
    width: 100%;
    height: 100%;
    background: white;
    /*-webkit-transform: translateZ(27px);
    transform: translateZ(27px);*/
}

.flop {
    width: 100%;
    height: 100%;
    background: #f3f5f6;
    -webkit-transform: rotateX(-90deg) translateZ(-27px);
    transform: rotateX(-90deg) translateZ(-27px);
}

/* Rotate the cube */
.cube.rotate {
    -webkit-transform: rotateX(89deg);
    transform: rotateX(89deg); /* Text bleed at 90º */
}

.uAvatar_inner {
    margin-top: 5px;
    position: relative;
    width: 40px;
    height: 40px;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    text-align: center;
    background-color: #eceded;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1) inset;
    border-radius: 50%;
}

.uAvatar_inner > span[data-rel="avatar_name"] {
    line-height: 38px;
    vertical-align: middle;
}

.uActions.hov {
    position: absolute;
    margin-top: -50px;
    opacity: 0;
    overflow: hidden;
    -webkit-transition: max-height ease-in-out 0.3s;
}

.cube:hover .uActions.hov {
    display: block;
    opacity: 1;
    -webkit-transition: opacity ease-in-out 0.3s;
}

.uActions .comm {
    width: 31px;
    float: left;
    margin: 10px 4px 0px;
    cursor: pointer;
    display: none;
}

.uActions .comm.comm_icon {
    font-size: 31px;
}

.uActions .comm.cancel {
    float: right;
    width: 17px;
    margin: 18px 10px 0px 0px;
    display: block;
    font-size: 17px;
    font-weight: bold;
}

.communication_icon {
    display: none;
    vertical-align: middle;
    cursor: pointer;
    padding: 8px;
    margin: 5px;
    background: white;
    color: rgb(65, 77, 96);
    border-radius: 4px;
}

.communication_icon.active {
    display: inline-block;
    padding: 4px 6px;
    /*  background: rgb(65, 77, 96);
      color: white;
      border-radius: 4px;*/
}

.communication_icon span {
    text-transform: uppercase;
    display: table-caption;
    font-size: 10px;
    font-weight: 400;
}

.online_users user.offline.new_tr {
    display: none;
}

.online_users user.online.new_tr {
    display: block;
}

.offline_users user.offline.new_tr {
    display: block;
}

.offline_users user.online.new_tr {
    display: none;
}

[uuser] .lastOnline {
    float: right;
    font-size: 11px;
    color: #7f8595;
    margin: -23px 7px 0px 0px;
    font-weight: 500;
}

[uuser] .lastOnline:after {
    content: attr(data-last-status)
}

[uuser].online .lastOnline:after {
    content: "online"
}

div.uAvatar_inner {
    box-shadow: 1px 1px 10px 2px transparent inset;
    -webkit-transition: box-shadow 0.3s ease-in;
    transition: box-shadow 0.3s ease-in;
}

div.uAvatar_inner.ring {

    -webkit-animation: ring 0.3s; /* Chrome, Safari, Opera */
    animation: ring 0.3s;
}

/* Chrome, Safari, Opera */
@-webkit-keyframes ring {
    from {
        box-shadow: 1px 1px 10px 2px transparent inset;
    }
    to {
        background: 1px 1px 10px 2px white inset;
    }
}

/* Standard syntax */
@keyframes ring {
    from {
        box-shadow: 1px 1px 10px 2px transparent inset;
    }
    to {
        background: 1px 1px 10px 2px white inset;
    }
}