a {
    color: var(--bulma-primary-1)
}

.login-hero-bg {
    background: url('/static/login/bg.jpg') no-repeat center center;
    background-size: cover;
}

.chart-box {
    width: 100%;
    height: 400px;
}

#snackbar {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: #334;
    color: #fff;
    text-align: center;
    border-radius: 4px;
    padding: 16px;
    position: fixed;
    z-index: 1000;
    left: 50%;
    bottom: 30px;
}

#snackbar.show {
    visibility: visible;
    animation: fadein 0.5s;
}

#snackbar.success {
    background-color: #00d1b2;
}

#snackbar.error {
    background-color: #CC0000;
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}
