﻿
.alert-area .alert-item {
    position: relative;
    box-shadow: 0px 2px 30px 2px rgba(0, 0, 0, 0.1);
    border-left: 5px solid transparent;
    border-radius: 5px;
    margin-bottom: 10px;
}
.aleart-icon {
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    margin: 0;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.aleart-content {
    padding: 12px 12px 12px 55px;
    text-align: left;
}
.aleart-content h3{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0;
    margin-top: 0;
}
.aleart-content p {
    font-size: 14px;
    margin-bottom: 0;
    opacity: 0.8;
}

.alert-item.alert-error {
    border-color: red;
}

.alert-item.alert-error h3{
    color: red;
}

.alert-item.alert-error .aleart-icon svg path {
    fill: red;
}

.alert-item.alert-green {
    border-color: green;
}

.alert-item.alert-green h3{
    color: green;
}

.alert-item.alert-green .aleart-icon svg path {
    fill: green;
}