.flash-info {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    background-color: #f57c00;
    color: white;
    border: 2px solid black;
    border-radius: 1rem;
    padding: 1rem;
    opacity: 1;
    transition: opacity 2s linear;
}

.fading {
    opacity: 0 !important;
    transition: opacity 2s linear;
}

.flash-success {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    background-color: #0B6623;
    color: white;
    border: 2px solid black;
    border-radius: 1rem;
    padding: 1rem;
    opacity: 1;
    transition: opacity 2s linear;
}

footer {
    position: relative;
    bottom: 0;
    width: 100%;
    background-color: #333;
    color: white;
    padding: 10px 0;
    text-align: center;
}

main {
    flex: 1;
}

html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.dialog {
    position: absolute;
    left: 50vw;
    top: 50vh;
    transform: translate(-50%, -75%);
    display: flex;
    flex-direction: column;
    height: 40vh;
    width: 40vw;
    align-items: center;
    justify-content: space-between;
    border: 3px solid #e65100;
    border-radius: 5vmin;
    padding: 3vmin;
    background-color: white;
}

.dialog div {
    align-self: end;
}

.toast {
    position: absolute;
    background: #333;
    color: #fff;
    padding: 6px 10px;
    border-radius: 5px;
    font-size: 12px;
    opacity: 0;
    pointer-events: none;
    z-index: 9999;
}

.toast.show {
    opacity: 1;
}

.full-inline * {
    display: inline;
}

label.required::after {
    content: ' *';
    color: red;
    font-weight: normal;
}