#jmv-alert.modal{
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    overflow: hidden;
    outline: 0;
    display: none;
    opacity: 0;
}
#jmv-alert.modal.show {
    opacity: 1;
    display: block;
}
#jmv-alert .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
}
#jmv-alert .modal-dialog-centered {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    width: auto;
    margin: 0.5rem auto;
    min-height: calc(100% - (1.75rem * 2));
}
#jmv-alert .modal-content {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: 0.3rem;
    outline: 0;
}
#jmv-alert .modal-body {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1rem;
    padding-bottom: 1.5rem;
}
#jmv-alert .content-icon {
    width: 100px;
    height: auto;
    margin: 10px auto 15px;
}
#jmv-alert .content-message {
    text-align: center;
    margin: 15px;
    color: #545454;
    font-size: 20px;
}

#jmv-alert-backdrop.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000;
}
#jmv-alert-backdrop.modal-backdrop.show{
    opacity: 0.5;
}

.jmv-center {
    text-align: center !important;
}
.jmv-bg-success {
    background-color: #28a745 !important;
}

.jmv-bg-danger {
    background-color: #dc3545 !important;
}

@media (max-width: 767.98px) {
    #jmv-alert, 
    #jmv-alert-backdrop{
        height: 100vh !important;
        width: 100vw !important;
    }
}