

.toolbar {
    background: #4bae77;
    height: 4em;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;    /* pick one less than Slider's! */
}
.toolbar header a {
    text-decoration: none;
    color: #fff!important;
    font-weight: normal!important;
    font-size: 2em;
    line-height: 2em;
    margin-left: .5em;
}
.toolbar #menu-btn {
    right: .5em!important;
    top: 1.25em!important;
}


.form-div input, textarea {
    border-radius: .25em!important;
}

fieldset {
    border: 0;
}

.footer label {
    padding: 0 0 1em 3em!important;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

.toast {
    width: auto;
    max-width: 260px;
    padding: 1em 2em;
    border-radius: 3em;
    background-color: var(--brunswick-green);
    color: white;
    font-size: small;
    border: 2px solid white;
    text-align: center;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    visibility: hidden;
    z-index: 1000;
    -webkit-box-shadow: 3px 3px 8px 2px rgb(0 0 0 / 62%);
    -moz-box-shadow: 3px 3px 8px 2px rgba(0,0,0,0.62);
    box-shadow: 3px 3px 8px 2px rgb(0 0 0 / 62%);
}
.show-toast {
    visibility: visible;
    animation: toast 2s ease reverse;
}
@keyframes toast {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.modal {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    padding: 1em;
    border-radius: 10px;
    background: white;
    -webkit-box-shadow: 3px 3px 8px 2px rgb(0 0 0 / 62%);
    -moz-box-shadow: 3px 3px 8px 2px rgba(0,0,0,0.62);
    box-shadow: 3px 3px 8px 2px rgb(0 0 0 / 62%);
    text-align: center;
}

.modal-open {
    display: block!important;
    animation: scale-in .2s cubic-bezier(.2,0,.13,1.5);
}

.modal-shroud {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background: rgba(0,0,0, 0.7);
    display: none;
}

button {
    background: var(--brunswick-green);
    color: white;
    border: 1px solid white;
    border-radius: .25em;
    text-align: center;
    font-size: initial;
    width: 6em;
    height: 2.5em;
}



