.alert-pop {
    position: fixed;
    width: 340px;
    padding: 10px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    z-index: 3;
    transition: .3s;
    opacity: 0;
    visibility: hidden;
}

.alert-pop.is-active {
    opacity: 1;
    visibility: visible;
}

.alert-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    transition: .3s;
    opacity: 0;
    visibility: hidden;
}

.alert-bg.is-active {
    opacity: 0.5;
    visibility: visible;
    z-index: 2;
}

.alert-text {
    font-weight: bold;
    color: #fff;
}

.alert-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 35px;
    font-weight: bold;
    color: #fff;
}

.alert-error.alert-pop {
    background: #DC512C;
}

.alert-error .alert-text {
    margin: 0 10px;
}

.alert-error .alert-btn {
    background: #B33716;
}

.alert-error .alertBody {
    padding: 20px 0 30px;
}

.error-text {
    color: #fff;
    margin: 0 0 20px;
}

#myProgress {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 10000;
}
#myBar {
    background-color: rgba(255, 255, 255, 0.5);
    width: 100%;
    height: 2px;
}

.alert-success .alertBody {
    padding: 35px 0;
}

.alert-error .alertBody {
    padding: 20px 0 30px;
}

.alert-success.alert-pop {
    background: #1982D4;
}

.alert-success .alert-text {
    text-align: center;
}

.alert-success .alert-btn {
    background: #0F5992;
}

.alert-success .alertBody {
    padding: 35px 0;
}

.alert-error.alert-pop {
    background: #DC512C;
}

.alert-error .alert-text {
    margin: 0 10px;
}

.alert-error .alert-btn {
    background: #B33716;
}

.alert-error .alertBody {
    padding: 20px 0 30px;
}

.success-text-alert{
    color: #fff;
    text-align: center;
}

.style-mess-err {
    font-weight: bold;
}

.error-text, .success-text {
    margin: 5px;
}
