﻿.ftoast {
    position: fixed;
    top: 0;
    right: -200px;
    min-width: 150px;
    max-width: 50rem;
    /*padding: 5px 10px;
    font-family: sans-serif;
    text-align: center;
    border: 1px solid #aaaaaaaa;*/
    border-radius: 4px;
    /*background-color: gray;
    color: whitesmoke;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);*/
    visibility: hidden;
    opacity: 0;
    z-index: 3000;
    transition: opacity 0.2s, top 0.2s, visibility 0.2s;
}

.ftoast{
    display: flex;
}

.ftoast:first-child{
    margin-right:1rem;
}

.ftoast-show {
    top: .4rem;
    right: 50%;
    transform: translateX(+50%);
    opacity: 1;
    visibility: visible;
}

.ftoast-success {
    background-color: #00bb00;
    border-color: #007900;
    color: white;
}

.ftoast-error {
    background-color: red;
    border-color: #ba0000;
    color: white;
}

.ftoast-info {
    background-color: #008aff;
    border-color: #006DFF;
    color: white;
}

.ftoast-warning {
    background-color: #ffb400;
    border-color: #ff7500;
    color: #2a2a2a;
}

.ftoast-pre {
    font-size: 1.4rem;
    font-family: 'Microsoft Sans Serif','MS Reference Sans Serif', Roboto, Helvetica, Arial, sans-serif,"Segoe UI", "Helvetica Neue", "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    margin-bottom: 0;
}

.ftoast > i {
    display: flex;
    align-items: center;
}
