.app-rpn-notifications {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 10;
    max-width: 100%;
    padding: 0 10px;
    transition: all .3s;
}

.app-rpn-notifications.app-rpn-notifications_down {
    bottom: -92px;
    transition: all 0s;
}

.app-rpn-notification {
    display: flex;
    max-width: 440px;
    width: 100%;
    margin: 0 0 10px;
    border: 1px solid #d4d6d9;
    border-radius: 2px;
    box-shadow: 0 4px 10px -3px rgba(0, 0, 0, 0.15);
    background: #fff;
    color: #666;
    font-size: 13px;
    line-height: 1.5;
}

.app-rpn-notification__image {
    flex-grow: 0;
    flex-shrink: 0;
    width: 82px;
    height: 82px;
    margin: -1px 0 -1px -1px;
    border-radius: 2px 0 0 2px;
    background-size: cover;
    background-position: center center;
}

.app-rpn-notification__content {
    flex-grow: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 0 20px;
    max-width: 100%;
    overflow: hidden;
}

.app-rpn-notification__content__container {
    width: 100%;
}

.app-rpn-notification__title {
    margin: 0;
    font-size: 15px;
    font-weight: 800;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.app-rpn-notification__title a {
    color: #666;
}

.app-rpn-notification__title a:hover {
    color: #222;
    text-decoration: none;
}

.app-rpn-notification__description {
    margin: 0;
}