/**
 * Messages by ben johnson
 */
.alert-messages > .alert {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 32px;
    box-shadow: inset 1px 0 8px rgba(0,0,0,0.3);
    line-height: 1.15;
    margin: 10px auto;
    min-height: 30px;
    position: relative;
    width: 100%;
    padding: 0;
}
.alert-messages > .alert:last-child {
    margin-bottom: 35px;
}

.alert-messages > .alert > .alert-content {
    font-size: 16px;
    line-height: 1.3;
    padding: 17px 33px 14px 65px;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    border-radius: 32px;
}
.alert-messages > .alert > .alert-content p {
    margin: 0;
}

.alert-messages > .alert > .alert-icon {
    background-color: green;
    border-radius: 32px 0 0 32px;
    border-right: 1px solid red;
    bottom: 0;
    box-shadow: inset 1px 0 8px rgba(0,0,0,0.3);
    color: #fff;
    font-size: 34px;
    left: 0;
    position: absolute;
    text-align: center;
    top: 0;
    width: 50px;
}
.alert-messages > .alert > .alert-icon:before {
    bottom: 0;
    content: '\f06a';
    font-family: FontAwesome;
    height: 24px;
    left: 13px;
    line-height: 24px;
    margin-top: -12px;
    position: absolute;
    top: 50%;
    width: 28px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.alert-messages > .alert > .alert-icon:after {

}

.alert-messages > .alert > .alert-close {
    bottom: 0;
    color: #9d9d9d;
    font-size: 1.6em;
    height: 34px;
    line-height: 34px;
    position: absolute;
    right: 6px;
    text-align: center;
    top: 3px;
    width: 30px;
}
.alert-messages > .alert > .alert-close:hover,
.alert-messages > .alert > .alert-close:focus {
    color: #000000;
}

.alert-messages > .alert.success > .alert-icon {
    background-color: #009c65;
    border-right-color: #00764d;
}
.alert-messages > .alert.success > .alert-icon:before {
    content: '\f058'
}

.alert-messages > .alert.error > .alert-icon {
    background-color: #d31f28;
    border-right-color: #af2227;
}
.alert-messages > .alert.error > .alert-icon:before {
    content: '\f06a'
}

.alert-messages > .alert.warning > .alert-icon {
    background-color: #ecac00;
    border-right-color: #d59b00;
}
.alert-messages > .alert.warning > .alert-icon:before {
    content: '\f059'
}

.alert-messages > .alert.info > .alert-icon {
    background-color: #5bc0de;
    border-right-color: #3bb2d6;
}
.alert-messages > .alert.info > .alert-icon:before {
    content: '\f05a'
}