﻿/* .cs-toast {
    display: none;
    padding: 1rem 1rem;
    color: #fff;
    z-index: 999;
    position: absolute;
    width: 25rem;
    top: 5rem;
    border-radius: 0.5rem;
    right: 2rem;
    -webkit-box-shadow: 0px 0px 1px 1px rgba(0,0,0,0.3);
    -moz-box-shadow: 0px 0px 1px 1px rgba(0,0,0,0.3);
    box-shadow: 0px 0px 1px 1px rgba(0,0,0,0.3);
    opacity: 0.75;
} */

.cs-toast {
    display: none;
    padding: 1rem 1rem;
    color: #fff;
    z-index: 999;    
    border-radius: 0.5rem;    
    -webkit-box-shadow: 0px 0px 1px 1px rgba(0,0,0,0.3);
    -moz-box-shadow: 0px 0px 1px 1px rgba(0,0,0,0.3);
    box-shadow: 0px 0px 1px 1px rgba(0,0,0,0.3);
    opacity: 0.75;
    width: 50% !important;
    position: absolute;
    left: 50%;
    top: 50%
    transform: translate(-50%, -50%);
}

.cs-toast-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 1rem;
    font-size: 2rem;
}

.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 2s;
}

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 0.75;
    }
}
