﻿.cs-toast {
    display: none;
    padding: 1.5rem;
    width;100%;
    color: #fff;
    z-index: 999;
    position: absolute;
    width: 25rem;
    bottom: 0rem;
    border-radius: 1rem;
    left: 0rem;
    z-index:999
    
}

.cs-toast-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 1rem;
    font-size: 2.5rem;
}

.cs-toast-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding-left: 1rem;
}

    .cs-toast-body p {
        margin-bottom: 0;
    }

.cs-toast-visible {
    display: flex;
    flex-direction: row;
    animation: fadein 1.5s;
}

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
