#natixis-notification-icon {
    width: 50px;
    text-align: right
}

@media (max-width: 991px) {
    #natixis-notification-icon {
        position: absolute;
        z-index: 1;
        left: 86%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
}

#natixis-notification-icon a {
    text-decoration: none;
    color: #4B4B62;
    position: relative;
}

#natixis-notification-icon a span {
    position: absolute;
    top: -7px;
    right: -9px;
    font-size: 9px;
}

#natixis-notification-list {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.15);
    position: absolute;
    width: 300px;
    right: 20px;
    text-align: left;
    margin: 0;
}

#natixis-notification-list ul {
    list-style: none;
    padding: 1em 0;
}

#natixis-notification-list li {
    padding: .5em 1em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #ddd;
}

#natixis-notification-list li:last-child {
    border-bottom: none;
}

#natixis-notification-list li.not-viewed {
    background: rgba(0, 0, 0, .1);
}

#natixis-notification-list li:hover {
    background: rgba(0, 0, 0, .4);
}

#natixis-notification-list li .not-viewed-point {
    width: 8px;
    height: 8px;
    border-radius: 100%;
}

#natixis-notification-list li * {
    margin: 0;
}