﻿.cs-toast {
    display: none;
    padding: 8px;
    color: #fff;
    z-index: 9999;
    /*position: absolute;*/
    /*width: 13rem;*/
    top: 2rem;
    border-radius: 5px;
    right: 2rem;
    position: fixed;
    align-items: center;
}


.cs-toast-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding-left: 10px;
    align-items: center;

}

.cs-toast-body p {
    margin-bottom: 0;
    font-size: 13px;
}

.cs-toast-visible {
    display: flex;
    flex-direction: row;
    animation: fadein 1.5s;
}

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
