/* No Print */
@media print {
    .no-print, .no-print * {
        display: none !important;
    }
}

/* Processing Modal */
.uc-modal-processing .modal-dialog {
    box-shadow: none;
}
.uc-modal-processing .modal-content {
    margin-top: 125px;
    background: none;
    border: none;
}
@media (min-height: 500px)
{
    .uc-modal-processing .modal-content {
        margin-top: 200px;
    }
}
@media (min-height: 768px)
{
    .uc-modal-processing .modal-content {
        margin-top: 100%;
    }
}
.uc-modal-processing .modal-body {
    color: white;
}


/* Animation: fade opacity change. */
.modal-backdrop {
    transition-duration: 0.375s;
}

.note-error,
.note-warning,
.note-default,
.note-info,
.note-success {
    background: none;
}
.note-error {
    color: red;
}
.note-warning {
    color: #BF5B16;
}
.note-default {
    color: gray;
}
.note-info {
    color: dodgerblue;
}
.note-success {
    color: seagreen;
}