.alert_pop_up_container {
    display: inline-block;
    width: calc(100% - 2 * 20px);
    position: absolute;
    z-index: 999999;
    top: 20px;
    left: 20px;
    right: 20px;
    text-align: center;
}

.alert_pop_up {
    position: relative;
    margin-bottom: 10px;
    box-shadow: 0 2px 10px 4px rgba(0, 0, 0, 0.03), 0px 10px 20px 4px rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    display: inline-block;
    transform: translateY(0);
    transition: all 0.5s cubic-bezier(.15,1.08,.53,.97);
}
.alert_pop_up.before_animate {
    transform: translateY(-150%);
    transition: all 0.5s cubic-bezier(.15,1.08,.53,.97);
} 

.alert_pop_up.success {
    background: #E1FFE3;
}
.alert_pop_up.error {
    background: #FFE6E2;
}
.alert_pop_up.warning {
    background: #fff8d6;
}

.alert_pop_up .icon {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 15px;
    margin: auto;
    width: 24px;
    height: 24px;
} 

.alert_pop_up p {
    display: inline-block;
    padding: 12px 16px 12px 52px;
    font-size: 14px;
    font-family: Acumin; font-weight: 550;
    text-align: left;
    line-height: 16px;
    margin-bottom: 0px;
    color: #444444;
    letter-spacing: 0px;
} 
.alert_pop_up.success p {
    color: #49A537; 
} 
.alert_pop_up.error p {
    color: #CF3C15; 
} 
.alert_pop_up.warning p {
    color: #C68C16; 
} 