/* Slick Modals - Alert 1 */
.lm-alert-1 {
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0,0,0,0.2);
}
.lm-alert-1:not([data-state="warning"]) * {
    color: #fff;
}
.lm-alert-1[data-state="success"] {
    background-color: #59bda5;
}
.lm-alert-1[data-state="error"] {
    background-color: #dc6868;
}
.lm-alert-1[data-state="info"] {
    background-color: #7cc5e8;
}
.lm-alert-1[data-state="warning"] {
    background-color: #f7eab7;
    color: #333;
}
.lm-alert-1 .lm-alert-title {
    font-weight: 700;
    font-size: 24px;
    display: block;
    margin-top: 130px;
    margin-bottom: 10px;
    position: relative;
}
.lm-alert-1 p {
    font-size: 20px;
    padding-bottom: 50px;
    line-height: 26px;
}
.lm-alert-1 .lm-alert-title,
.lm-alert-1 p {
    padding-left: 30px;
    padding-right: 30px;
}
.lm-alert-1 .lm-alert-title:before,
.lm-alert-1 .lm-alert-title:after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
}
.lm-alert-1:not([data-state="warning"]) .lm-alert-title:before {
    top: -70px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    border: solid 2px #fff;
}
.lm-alert-1[data-state="success"] .lm-alert-title:after {
    top: -56px;
    width: 8px;
    height: 20px;
    border: solid #fff;
    border-width: 0 4px 4px 0;
    transform: rotate(45deg);
}
.lm-alert-1[data-state="error"] .lm-alert-title:after {
    top: -89px;
    font-size: 60px;
    line-height: 90px;
    content: "\00D7";
}
.lm-alert-1[data-state="warning"] .lm-alert-title:before {
    top: -70px;
    width: 0;
    height: 0;
    border-left: 34px solid transparent;
    border-right: 34px solid transparent;
    border-bottom: 54px solid rgba(0,0,0,0.2);
}
.lm-alert-1[data-state="warning"] .lm-alert-title:after,
.lm-alert-1[data-state="info"] .lm-alert-title:after {
    content: "i";
    font-size: 28px;
    font-family: monospace, sans-serif;
}
.lm-alert-1[data-state="warning"] .lm-alert-title:after {
    top: -52px;
}
.lm-alert-1[data-state="info"] .lm-alert-title:after {
    top: -60px;
}
.lm-alert-1 .lm-alert-btn {
    width: 100%;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 20px;
    text-transform: uppercase;
    background: #3C6CAD;
    
}
.lm-alert-1 .lm-alert-btn:hover {
    opacity: 0.6;
}