/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css");

#bcalrt-btn {
    padding: 0;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 6rem;
    height: 2rem;
    z-index: 95;
    font-size: .75rem;
}

#bcalrt {
    padding: 1rem 0 0 0;
    position: absolute;
    top: 4rem;
    left: 0;
    width: 100%;
    z-index: 100;
}

#bcalrt .row {
    text-align: center;
    padding: 0 3rem 1rem 2rem;
}

.bcalrt-close-x {
    position: absolute;
    right: .5rem;
    top: .5rem;
    width: 2rem;
    height: 2rem;
    background-color: transparent;
    border: none;
}

/* information message */
.bcalrt.information {
    background-color:darkgrey;
    color:black;
}

/* warning message */
.bcalrt.warning, .bcalrt.fake {
    background-color:goldenrod;
    color:black;
}

/* alert message */
.bcalrt.alert {
    background-color:crimson;
    color:white;
}

@media only screen and (max-width: 500px) {
    #bcalrt-btn {
        top: 4rem;
    }
}
