/* HOMERIDER NOTIFICATION */
#hr-notification-wrapper {
    position: fixed;
    top: 90px;          /* below HomeRider header */
    right: 25px;
    z-index: 999999;
    max-width: 380px;
}

.hr-alert {
    background: #fff;
    border-left: 5px solid;
    padding: 14px 16px;
    margin-bottom: 12px;
    border-radius: 4px;
    box-shadow: 0 10px 25px rgba(0,0,0,.15);
    display: flex;
    align-items: center;
    animation: slideInRight .5s ease;
}

.hr-alert.success { border-color: #28a745; }
.hr-alert.danger   { border-color: #dc3545; }
.hr-alert.warning { border-color: #ffc107; }

.hr-alert-icon {
    font-size: 22px;
    margin-right: 12px;
}

.hr-alert.success .hr-alert-icon { color: #28a745; }
.hr-alert.danger .hr-alert-icon { color: #dc3545; }
.hr-alert.warning .hr-alert-icon { color: #ffc107; }

.hr-alert-text {
    flex: 1;
    font-size: 14px;
    color: #333;
    text-align: left;
}

.hr-alert-close {
    cursor: pointer;
    font-size: 22px;
    margin-left: 10px;
    opacity: .6;
}

.hr-alert-close:hover {
    opacity: 1;
}

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to   { transform: translateX(0); opacity: 1; }
}