﻿.alert {
    position: relative;
    border-radius: 5px;
    /*box-shadow: 0 0 15px 5px #ccc;*/
    box-shadow: 0px 3px 3px #ccc;
}

.alert-position {
    position: absolute;
    top: 75px;
    left: 20px;
    height: 50px;
    width: 450px;
    display: none;
    z-index: 980;
    transition: opacity 5s ease-out;
}

.info-alert {
    background-color: #ebebeb;
    border-right: 5px solid #11393c;
}

    .info-alert .close {
        border-color: #6c6c6c;
        color: #6c6c6c;
    }


.success-alert {
    background-color: #A5D6A7;
    border-right: 5px solid #11393c;
}

    .success-alert .close {
        border-color: #178344;
        color: #178344;
    }


.danger-alert {
    background-color: #f7a7a3;
    border-right: 5px solid #8f130c;
}

    .danger-alert .close {
        border-color: #8f130c;
        color: #8f130c;
    }


.warning-alert {
    background-color: #ffd48a;
    border-right: 5px solid #8a5700;
}

    .warning-alert .close {
        border-color: #8a5700;
        color: #8a5700;
    }


.alert-close {
    position: absolute;
    width: 30px;
    height: 30px;
    opacity: 0.5;
    border-width: 1px;
    border-style: solid;
    border-radius: 50%;
    left: 15px;
    top: 15px;
    padding-top: 3px;
    text-align: center;
    font-size: 1.6em;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: flex; /* CSS3 */
    align-items: center; /* Vertical align */
    justify-content: center; /* Horizontal align */
}
