﻿.cs-toast {
    color: #fff;
    z-index: 100003;
    position: fixed;
    width: 500px;
    top: 16px;
    -ms-border-radius: 8px;
    border-radius: 8px;
    border: 1px solid #989898;
    right: 32px;
    background-color: #ffffff;
}

.cs-toast-info, .cs-popup-info {
    box-shadow: 6px 6px 20px -2px rgb(13, 202, 240);
}

.cs-toast-error, .cs-popup-error {
    box-shadow: 6px 6px 20px -2px rgb(220, 53, 69);
}

.cs-toast-success {
    box-shadow: 6px 6px 20px -2px rgb(25, 135, 84);
}

.cs-toast-warning, .cs-popup-warning {
    box-shadow: 6px 6px 20px -2px rgb(255, 193, 7);
}

.cs-toast-icon {
    width: 20px;
    height: 20px;
    -ms-border-radius: 4px;
    border-radius: 4px;
    margin-right: 8px;
}

.cs-toast-body {
    padding-left: 16px;
}

    .cs-toast-body p {
        margin-bottom: 0;
    }

.cs-toast-visible {
    display: block;
    animation: fadein 1.5s;
}

.cs-toast-in-visible {
    display: none;
    animation: fadeout 1.5s;
}

ul.no-bullets {
    list-style-type: none;
    margin-top: 2px;
    padding: 0;
    font-size: 11px;
    color: #505050;
}

ul.bullets {
    margin-top: 2px;
    list-style-type: square;
    padding-left: 14px;
    font-size: 11px;
    color: #505050;
}

@keyframes fadein {
    from {
        -ms-opacity: 0;
        opacity: 0;
    }

    to {
        -ms-opacity: 1;
        opacity: 1;
    }
}
