/* Helper styles for rendering 'toast' messages */
.toast-container {
    display: flex; 
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 15px;
    padding-right: 15px;
}

.toast-container-floating {
    position: absolute;
    z-index: 100000;
    width: 100%;
}

.toast-message {
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
    margin: 0 0 15px 15px;
    border-right:none;
    border-top:none;
    border-bottom:none;
    padding-bottom: 8px;
    padding-right: 30px;
}

.toast-message:not([open]) { 
    display: none; 
}

.toast-message form.toast-close {
    position: absolute;
    top: 0;
    right: 0;
}

.toast-message form.toast-close button {
    border: none;
    background: transparent;
    font-size: 24px;
    margin: 0;
    line-height: .75em;
    font-weight: 800;
    color: rgba(0,0,0,.5);
}