/* ----------- ALERT -----------*/

/* Position Fixed Center */ 
.alert {
    position: fixed;
    margin: auto;
    left: calc(0%);
    right: 0;
    top: 22px;
    font-size: 15px;
    line-height: 20px;
    min-width: 150px;
    max-width: 350px;
    padding: 10px 10px;
    border-radius: 6px;
    z-index: 1200 !important;
    border: 1px solid transparent;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
    transition:all 0.3s;
}
.alert div,.alert span{z-index:1200 !important;}
.alert-info {
    color: #0c5460 !important;
    background-color: #d1ecf1 !important;
    border-color: #c3e6cb !important;
}
.alert-success {
    color: #155724 !important;
    background-color:#d4edda !important;
    border-color: #c3e6cb !important;
}
.alert-warning {
    color:#856404 !important;
    background-color: #fff3cd !important;
    border-color: #ffeeba !important;
}
.alert-danger {
    color: #721c24 !important;
    background-color: #f8d7da !important;
    border-color: #f5c6cb !important;
}
.alert-primary {
    color: #004085 !important;
    background-color: #cce5ff !important;
    border-color: #b8daff !important;
}
.alert-secondary {
    color: #383d41 !important;
    background-color: #e2e3e5 !important;
    border-color: #d6d8db !important;
}
.alert-dark {
    color: #1b1e21 !important;
    background-color: #d6d8d9 !important;
    border-color: #c6c8ca !important;
}
.alert-light {
    color: #818182 !important;
    background-color: #fefefe !important;
    border-color: #fdfdfe !important;
}
.alert .icon {
    margin-right:10px
}
.alert .close {
    color: inherit;
    font-size: 16px;
    line-height: inherit;
    position: absolute;
    top: 9px;
    right: 0;
    margin-right: 11px;
    opacity: .3;
    filter: alpha(opacity=30);
}
.alert .close:hover{
    opacity:.5;
    filter:alpha(opacity=50)
}
.alert a {
    color:#fff;
    text-decoration:underline
}
.alert span {
    margin-right:20px;
    display: block;
    text-align: center;
    word-wrap: break-word;
}
.alert h4{
    font-weight:600
}

@keyframes fadein {
    from {top: 0; opacity: 0;}
to {top: 22px; opacity: 1;}
}

@keyframes fadeout {
    from {top: 22px; opacity: 1;}
to {top: 0; opacity: 0;}
}
/* //----------- ALERT -----------*/

/* ----------- MODAL -----------*/
.modalStatus-success{
    background:green;
    color:white;
}
.modalStatus-warning{
    background:orange;
    color:white;
}
.modalStatus-danger{
    background:red;
    color:white;
}
.modalStatus-error{
    background:red;
    color:white;
}
.modal-header>.close{
    margin-top:-11px;
}
.modal-dialog{
    margin:55px auto;
}
.modal-content{
    border-radius: 6px;
}
.modal-body{overflow-y:auto;max-height:350px;}
/* //----------- MODAL -----------*/