.alert {
    padding-top: 20px;
    padding-bottom: 20px;
    color: white;
    cursor: pointer;

    width: 100%;
    position: fixed;
    overflow: hidden;
}

.error {
    background-color: #BE6C6B;
}

.success {
    background-color: #5f974f;
}

.visible {
    bottom:0;
    transition: bottom 0.5s ease-out;
}

.hidden {
    bottom:-25%;
    transition: bottom 0.5s ease-in;
}
