/**
 * angular-ui-notification - Angular.js service providing simple notifications using Bootstrap 3 styles with css transitions for animating
 * @author Alex_Crack
 * @version v0.3.6
 * @link https://github.com/alexcrack/angular-ui-notification
 * @license MIT
 */
.ui-notification
{
    position: fixed;
    z-index: 9999;

    width: 360px;

    -webkit-transition: all ease .5s;
    -o-transition: all ease .5s;
    transition: all ease .5s;

    color: #fff;
    border-radius: 0;
    background: #337ab7;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, .3);
}
.ui-notification.clickable
{
    cursor: pointer;
}
.ui-notification.clickable:hover
{
    opacity: .7;
}
.ui-notification.killed
{
    -webkit-transition: opacity ease 1s;
    -o-transition: opacity ease 1s;
    transition: opacity ease 1s;

    opacity: 0;
}
.ui-notification > h3
{
    font-size: 14px;
    font-weight: bold;

    display: block;

    margin: 10px 10px 0 10px;
    padding: 0 0 5px 0;

    text-align: left;

    border-bottom: 1px solid rgba(255, 255, 255, .3);
}
.ui-notification a
{
    color: #000;
}
.ui-notification a:hover
{
    text-decoration: underline;
}
.ui-notification > .message
{
    margin: 10px 10px 10px 10px;
}
.ui-notification.warning
{
    color: #fff;
    background: #f0ad4e;
}
.ui-notification.error
{
    color: #fff;
    background: #d9534f;
}
.ui-notification.success
{
    color: #39414d;;
    background: #fff;
}
.ui-notification.info
{
    color: #fff;
    background: #5bc0de;
}

.ui-notification  .notification_sender .user-avatar-style{
    width: 50px;
    height:50px
}
.ui-notification    .notification_sender img {
    /*width: 50px !important;*/
    /*height: 50px;*/
    /*min-width: 50px !important;*/
    max-width: 100%;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    overflow: hidden;
    }
}

.ui-notification   .notification_sender{
    width: 50px;
    height: 50px;
    float: left;
    margin-right: 8px;
}

.notification_sender {
    float: left;
    margin-right: 10px;
    margin-top: -1px;
}

.notification_info .time {
    padding: 0px 0px 2px 10px;
    font-size: 9pt;
    color: #79879c;
}

.notification_info h3 {
    font-size: 13px;
    margin-bottom: 2px;
    color: #39414d;
    width: calc(100% - 18px);
    background-repeat: no-repeat;
    background-position: 0px 5px;
    background-size: 12px 12px;
    font-weight: 500;
    margin-top: 0px;
    padding-left: 18px;
}

.notification_layer .notification_info .icon-Public {
    border-radius: 10px;
}

.username {
    font-weight: bold;
}

.notification_info {
    width: calc(100% - 64px);
    float: left;
    display: block;
    font-size: 10pt;
    margin-top: -5px;
}
.notification_info .user-avatar-style{
    overflow: hidden !important;
    border:3px;
}

.notification_info .user-avatar-style img,
.pac-container .user-avatar-style img{
    overflow: hidden;

    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
}

.button-notification .close-button-notification {
    color: #b0b9c1;
    display: inline;
    font-size: 10px;
    line-height: 20px;
    vertical-align: middle;
}

.button-notification {
    border: 1px solid #DCDEDE;
    border-radius: 5px;
    color: #b0b9c1;
    display: inline-block;
    height: 10px;
    text-align: center;
    width: 10px;
    vertical-align: middle;
    transition: all 0.1s ease;
}

.notification_layer .notification_info .media__title .popup{
    overflow: initial;
    text-overflow: ellipsis;
    white-space: inherit;
    max-width: 100%;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 8em;
}

@media only screen and (max-width: 375px) {
    .ui-notification{
        width: 100%;
    }
}

.green-bonus{
    color:#32b644;
    font-weight: bold;
}
