/*! BootstrapMsg v1.0.8 | Copyright (c) 2016-present Duc Doan (ducdhm@gmail.com) + css from BootStrap */
#msg {
    position: fixed;
    z-index: 9999999999;
    opacity: 0;
    width: auto;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}
#msg i {
    font-size: 20px;
    vertical-align: middle;
    width: 1em;
    text-align: center;
}
#msg span {
    font-size: 15px;
}
#msg .msg-progress {
    position: absolute;
    margin: 0;
    padding: 0;
    border-width: 2px 0;
    bottom: 0;
    left: 0;
    width: 0;
    border-radius: 0;
}
#msg.showed {
    top: 50px;
    opacity: 1;
}
#msg.alert-no-icon i {
    display: none;
}

/* Base alert styling */
#msg.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
        border-top-color: transparent;
        border-right-color: transparent;
        border-bottom-color: transparent;
        border-left-color: transparent;
    border-radius: 4px;
}

/* Info Alert */
#msg.alert-info {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1;
}

/* Success Alert */
#msg.alert-success {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}

/* Warning Alert */
#msg.alert-warning {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc;
}

/* Danger Alert */
#msg.alert-danger {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}

/* Primary Alert (Bootstrap 4+) */
#msg.alert-primary {
    color: #004085;
    background-color: #cce7ff;
    border-color: #b3d7ff;
}

/* Secondary Alert (Bootstrap 4+) */
#msg.alert-secondary {
    color: #383d41;
    background-color: #e2e3e5;
    border-color: #d6d8db;
}

/* Light Alert (Bootstrap 4+) */
#msg.alert-light {
    color: #818182;
    background-color: #fefefe;
    border-color: #fdfdfe;
}

/* Dark Alert (Bootstrap 4+) */
#msg.alert-dark {
    color: #1b1e21;
    background-color: #d6d8d9;
    border-color: #c6c8ca;
}

/* Close button styling */
#msg .close {
    float: right;
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    filter: alpha(opacity=20);
    opacity: .2;
}

/* Base font styling */
#msg {
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 14px;
    line-height: 1.42857143;
    color: #333;
}

/* Responsive breakpoints */
@media (min-width: 1200px) {
    #msg {
        max-width: 1000px;
    }
}
@media (max-width: 479px) {
    #msg {
        max-width: 95vw;
        min-width: 280px;
    }
}

/*# sourceMappingURL=bootstrap-msg.css.map */