.le-alert {
    position: absolute;
    padding: 30px;
    border-radius: 5px;
    /* box-shadow: 0 0 15px 5px #ccc; */
    margin: 0;
    padding: 0 0 0 20px;
    box-sizing: border-box;
    z-index: 9999999;
    transform: translateY(-50px);
    opacity: 0;
    transition-property: transform, opacity, top;
    transition-duration: 300ms, 300ms, 300ms;
    transition-timing-function: ease-out;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
    padding-right: 50px;
}
.le-alert-raw {
    position: absolute;
    box-sizing: border-box;
    z-index: 9999999;
    transform: translateY(-50px);
    opacity: 0;
    transition-property: transform, opacity, top;
    transition-duration: 300ms, 300ms, 300ms;
    transition-timing-function: ease-out;
}

.le-alert-body {
    padding: 20px 50px 10px 10;
}

.le-alert-shown {
    transform: translateY(0);
    opacity: 1;
}

.le-alert-close {
    position: absolute;
    width: 30px;
    height: 30px;
    opacity: 0.5;
    border-width: 1px;
    border-style: solid;
    border-radius: 50%;
    right: 15px;
    top: 15px;
    text-align: center;
    font-size: 1.6em;
    cursor: pointer;
}

.le-simple-alert {
    background-color: #ebebeb;
    border-left: 5px solid #6c6c6c;
}

.le-simple-alert .le-alert-close {
    border-color: #6c6c6c;
    color: #6c6c6c;
}

.le-success-alert {
    background-color: #a8f0c6;
    border-left: 5px solid #178344;
}

.le-success-alert .le-alert-close {
    border-color: #178344;
    color: #178344;
}

.le-danger-alert {
    background-color: #f7a7a3;
    border-left: 5px solid #8f130c;
}

.le-danger-alert .le-alert-close {
    border-color: #8f130c;
    color: #8f130c;
}

.le-warning-alert {
    background-color: #ffd48a;
    border-left: 5px solid #8a5700;
}

.le-warning-alert .le-alert-close {
    border-color: #8a5700;
    color: #8a5700;
}


.le-fs-unfinished-dialog-buttons button{
    margin-left: 10px;
}
.le-fs-unfinished-dialog-buttons button:first-child{
    margin-left: 0;
}