.alerts {
    top: 0;
    right: 0;
    position: fixed;
    display: flex;
    flex-flow: column;
    font-family: ProximaNovaExCn-Regular,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen,Ubuntu,Cantarell,"Fira Sans","Droid Sans","Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
    overflow-y: auto;
    padding: 30px;
    width: auto;
}

.alert {
    display: flex;
    flex-flow: row;
    margin: 10px 0;
    width: 250px;
    min-height: 90px;
    height: auto;
    background-color: #7d2020;
    border-radius: 10px;
    color: #fff;
    box-shadow: 11px 36px 42px 22px #888888;
    transition: all 0.3s cubic-bezier(0,0,0.3,1);
}

    .alert:hover {
        box-shadow: 11px 36px 42px 22px -21px #540d0d;
    }

    .alert .sucess {
        background-color: #3db56e;
    }

    .alert .request {
        background-color: #67a4c0;
    }

    .alert .wait {
        background-color: #c3d2d9;
    }

    .alert .failed {
        background-color: #c84346;
    }

.alert-icon {
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30%;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    background-color: #000;
}

.alert-content {
    position: relative;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-flow: column;
    width: 100%;
}

.alert-close {
    position: absolute;
    font-size: 20px;
    top: -20px;
    right: 15px;
    cursor: pointer;
}

.alert-title {
    padding-right: 12px;
    font-size: 16px;
    font-weight: 700;
}

.alert-subtitle {
    display: flex;
    flex-flow: column;
    margin-top: 5px;
    font-size: 14px;
    font-weight: 300;
}
