﻿.ttoast {
    word-wrap:break-word;
    display: none;
    padding: 15px;
    color: black;
    z-index: 1;
    position: fixed;
    width: 350px;
    border-radius: 5px;
    margin:0 auto;
    top: 30%;
    left: 33%;
    z-index:1000000 !important;
}

.ttoast-success {
    border-color: #009308;
    color: #027408;
    font-weight: bold;
    background-color: #aad4ad;
}

.ttoast-error {
    border-color: #c40000;
    color: #930000;
    font-weight: bold;
    background-color: #e6b5b5;
}

.ttoast-warning {
    border-color: #c4c000;
    color: #8d8a00;
    font-weight: bold;
    background-color: #dcdbb3;
}

.ttoast-info {
    border-color: #00b9db;
    color: #02758a;
    font-weight: bold;
    background-color: #c3e7ee;
}





.ttoast-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 1rem;
    font-size: 12px;
}

.ttoast-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding-left: 1rem;
}

    .ttoast-body p {
        margin-bottom: 0;
    }

    .ttoast-body span, .ttoast-body label {
        margin-bottom: 0;
    }

.ttoast-visible {
    display: block;
    flex-direction: row;
    animation: fadein 0.3s;
}

/*.bg-danger {
    background-color: red;
}

.bg-warning {
    background-color: yellow;
    color: black;
}*/

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
