.alert-notification {
    position: fixed;
    right: 20px;
    bottom: -9999px;
    max-width: 375px;
    padding: 20px;
    border-left: 5px solid @theme-blue3;
    background-color: #FFFFFF;
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.2);
    border-radius: @border-radius-default;
    z-index: @z-index-tooltip;

    transition: all 1s ease;
}

.alert-notification--show {
    bottom: 20px;
}

.alert-notification__close {
    position: absolute;
    right: 15px;
    top: 10px;
    width: 30px;
    height: 35px;
}

.alert-notification__body {
    display: flex;
    padding-right: 30px;
}

.alert-notification__icon {
    font-size: 20px;
    padding-right: 15px;
    padding-top: 4px;
}

.alert-notification__text {
    padding-bottom: 10px;
    color: @theme-grey9;
    line-height: 18px;
}

.alert-notification__link {
    color: @theme-grey7;
    &:active {
        color: @theme-grey7;
    }
}
