/**
 * ToasterBox.js 
 * see https://github.com/ZitRos/toaster-js for usage
 */
/* The toaster - position it at the bottom and in the middle of the screen */
.inverted {
    -webkit-filter: invert(1);
    filter: invert(1);
}
.toaster-container {
    max-width: 450px;
    min-width: 250px;
    /* Set a default minimum width */
    background-color: white;
    /* Black background color */
    color: #303030;
    /* White text color */
    border-radius: 2px;
    /* Rounded borders */
    padding: 16px;
    /* Padding */
    position: absolute;
    /* Sit on top of the screen */
    z-index: 2000;
    /* Add a z-index if needed */
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px 13px 10px -7px rgba(0, 0, 0, 0.1);
    width: 100%;
    font-family: inherit;
}
.toaster-container.top-right {
    right: 1%;
    top: 30px;
}
.toaster-container.top-left {
    left: 1%;
    top: 30px;
}
.toaster-container.top-center {
    left: 50%;
    transform: translateX(-50%);
    top: 30px;
}
.toaster-container.bottom-center {
    left: 50%;
    transform: translateX(-50%);
    bottom: 30px;
}
.toaster-container.bottom-left {
    left: 1%;
    bottom: 30px;
}
.toaster-container.bottom-right {
    right: 1%;
    bottom: 30px;
}
.toaster-container.top-right,
.toaster-container.top-left,
.toaster-container.top-center {
    -webkit-animation: fadeinTop 0.5s;
    animation: fadeinTop 0.5s;
}
.toaster-container.bottom-right,
.toaster-container.bottom-left,
.toaster-container.bottom-center {
    -webkit-animation: fadeinBottom 0.5s;
    animation: fadeinBottom 0.5s;
}
.toaster-close {
    font-size: 20px;
    background-color: transparent;
    border: none;
    color: #fff;
    outline: none;
}
/* Animations to fade the snackbar in and out from top */
@-webkit-keyframes fadeinTop {
    from {
        top: 0;
        opacity: 0;
    }
    to {
        top: 30px;
        opacity: 1;
    }
}
@keyframes fadeinTop {
    from {
        top: 0;
        opacity: 0;
    }
    to {
        top: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeoutTop {
    from {
        top: 30px;
        opacity: 1;
    }
    to {
        top: 0;
        opacity: 0;
    }
}
@keyframes fadeoutTop {
    from {
        top: 30px;
        opacity: 1;
    }
    to {
        top: 0;
        opacity: 0;
    }
}
/* Animations to fade the snackbar in and out from bottom */
@-webkit-keyframes fadeinBottom {
    from {
        bottom: 0;
        opacity: 0;
    }
    to {
        bottom: 30px;
        opacity: 1;
    }
}
@keyframes fadeinBottom {
    from {
        bottom: 0;
        opacity: 0;
    }
    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeoutBottom {
    from {
        bottom: 30px;
        opacity: 1;
    }
    to {
        bottom: 0;
        opacity: 0;
    }
}
@keyframes fadeoutBottom {
    from {
        bottom: 30px;
        opacity: 1;
    }
    to {
        bottom: 0;
        opacity: 0;
    }
}