.list-wrapper {
    overflow-y: hidden;
    overflow-x: hidden;
    height: 95px;
    max-height: 260px;
    position: absolute;
    top: 100%;
    left: 5%;
    -webkit-transition: 0.4s linear all;
    transition: 0.4s linear all;
    transform-style: preserve-3d;
    width: 90%;
    z-index: 8;
    -webkit-user-select: none;
    user-select: none;
    opacity: 0;
}

.list-wrapper.showList {
    transform: translateY(-290px);
    overflow-y: hidden;
    opacity: 1;
}

.list-wrapper.moreList {
    height: 240px;
    overflow-y: auto;
    opacity: 1;
}

.list-wrapper::-webkit-scrollbar {
    width: 3px;
    -webkit-user-select: none;
    user-select: none;
}

.list-wrapper::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #ffffff;
    -webkit-user-select: none;
    user-select: none;
}

.list-wrapper::-webkit-scrollbar-thumb {
    background-color: #299C90;
    border-radius: 10px;
    -webkit-user-select: none;
    user-select: none;
}

.list-wrapper .list-item {
    font-size: 13px;
    color: #ffffff;
    width: 100%;
    height: 30px;
    margin-bottom: 10px;
    position: relative;
    font-family: "Roboto";
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
    overflow: hidden;
    outline: none;
}

.list-wrapper .list-item .photo {
    width: 30px;
    height: 100%;
    -webkit-user-select: none;
    user-select: none;
    float: left;
}

.list-wrapper .list-item .photo img{
    border-radius: 50%;
    -webkit-user-select: none;
    user-select: none;
    width: 100%;
    height: 100%;
}

.list-wrapper .list-item .name {
    margin-left: 15px;
    height: 30px;
    -webkit-user-select: none;
    user-select: none;
    float: left;
    line-height: 30px;
}

.list-wrapper .view-more-label {
    height: 15px;
    font-size: 12px;
    line-height: 15px;
    font-family: "OpenSans";
    color: #299C90;
    outline: none;
}

.view-more-label.ng-enter, .view-more-label.ng-leave {
    -webkit-transition: opacity linear 400ms;
    transition: opacity linear 400ms;
}

.view-more-label.ng-enter,
.view-more-label.ng-leave.ng-leave-active {
    opacity: 0;
}

.view-more-label.ng-leave,
.view-more-label.ng-enter.ng-enter-active {
    opacity: 1;
}

.list-wrapper .view-more-label .view-more-label-inner {
    width: 100px;
    text-align: left;
    outline: none;
}
