.modal-outer{
    background: rgba(0,0,0,0.5); position: fixed; left: 0; top: 0; height: 100%; width: 100%; z-index: 999;display: none;
}
.modal-container .close {
    background: none;
    border: none;
    background: url("../images/ic_close.svg") center center no-repeat;
    background-size: 10px auto;
    position: absolute;
    right: 10px;
    top: 10px;
    height: 10px;
    width: 10px;
    opacity: 1;
}

.modal-container {
    width: 250px;
    background: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 5px;
    overflow: hidden;
    margin: -100px 0 0 -100px;
}
.modal-lbl {
    background-image: url("../images/29.png");
    background-position: 10px center;
    background-repeat: no-repeat;
    background-size: 16px auto;
    color: #fff;
    display: block;
    font-size: 18px;
    font-weight: 700;
    padding: 9px 0 9px 34px;
    text-transform: uppercase;
}
.message {
    color: #383938;
    line-height: 130%;
    text-align: center;
    padding-top: 70px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
    background-size: 50px auto;
    background-position: center 10px;
    background-repeat: no-repeat;
    font-weight: 600;
}


.modal-success .modal-lbl {
    background-color: #1ddc00;
}
.modal-success .message {
    background-image: url("../images/ic_success.svg");
}

.modal-warning .modal-lbl {
    background-color: #dc7c00;
}
.modal-warning .message {
    background-image: url("../images/ic_warning.svg");
}

.modal-error .modal-lbl {
    background-color: #ff1f44;
}
.modal-error .message {
    background-image: url("../images/ic_error.svg");
}