.confirm-wrapper {
    position: absolute;
    z-index: 10000;
    top: 0; bottom: 0; left: 0; right: 0;
    background-color: rgba(255,255,255,0.6);
    display: none;
    justify-content: center;
    align-items: center;
    transition: 1s all ease;
}

.modal-wrapper {
    position: absolute;
    z-index: 9999;
    top: 0; bottom: 0; left: 0; right: 0;
    background-color: rgba(0,0,0,0.6);
    display: none;
    justify-content: center;
    align-items: center;
    transition: 1s all ease;
}
.modal-container {
    position: fixed;
    display: flex;
    width: 80%;
    height: 80%;
    background-color: #fff;
    color: #333;
    flex-direction: column;
}
.modal-container .modal-header {
    position: sticky;
    padding: 0 15px;
}
.modal-container #modal-content {
    overflow-y: auto;

}
.modal-container .close {
    position: absolute;
    top: 3px; right: 8px;
    font-size: 3em;
    line-height: 0.7em;
    cursor: pointer;
}

#notify-container {
    position: fixed;
    width: 250px;
    bottom: 20px; right: 20px;
    z-index: 10001;
}
.notify {
    position: relative;
    margin-top: 5px;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #fff;
    overflow: hidden;
}
.notify h3 {
    margin: 0 0 5px 0;
}
.notify p {
    margin: 0;
}
.notify footer {
    position: absolute;
    bottom: 0; right: 0; left: 0;
}
.notify footer > div {
    width: 100%;
    height: 5px;
    background-color: rgba(0,0,0,.3);
}
.notify-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}
.notify-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}
.notify-info {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
}
.notify-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}

div[data-notify="container"] {
    background: #e24927;
    color: #fff;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-right: 40px;
    min-height: 30px;
    border-radius: 0.4rem;
}
div[data-notify="container"] .progress-bar {
    height: 5px;
    background-color: #fff;
}
div[data-notify="container"] .progress {
    overflow: hidden;
}
div[data-notify="container"] .progress-bar {
    height: 2px;
    background-color: #fff;
}