
.my-inaz-toast-message {
    color: white;
    background-color: #6E6E6E;
    overflow-x: auto;
    z-index: 10000;
    word-break: break-word;
}


.my-inaz-toast-content{
    padding:10px;
    line-height:1rem;
}
    .my-inaz-toast-content h2 {
        font-size:1.4rem;
        line-height:1.6rem;
        padding-bottom:1rem;
    }

    .my-inaz-toast-content a,
    .my-inaz-toast-content a:visited,
    .my-inaz-toast-content a:hover {
        color: #CCCCCC;
    }

    .my-inaz-toast-content p a {
        font-size: 1rem;
        font-family: "Inaz-CondBold";
    }

    .my-inaz-toast-auto-hide {
        bottom: 80px;
        width: 300px;
        position: fixed;
        left: -350px;
        cursor: pointer;
    }

    .my-inaz-toast-scroll {
        max-width: 300px;
        max-height: 450px;
        overflow: scroll;
        white-space: nowrap;
    }

    .my-inaz-toast-scroll::-webkit-scrollbar-corner {
        background: #6E6E6E;
    }

    .my-inaz-toast-scroll {
        scrollbar-width: thin;
        scrollbar-color: #E9E9E9 #6E6E6E;
    }

    .my-inaz-toast-scroll::-webkit-scrollbar {
        width: 12px;
        height: 12px;
    }

    .my-inaz-toast-scroll::-webkit-scrollbar-track {
        background: #6E6E6E;
    }

    .my-inaz-toast-scroll::-webkit-scrollbar-thumb {
        background-color: #E9E9E9;
        border-radius: 20px;
        border: 3px solid #6E6E6E;
    }

.my-inaz-toast-close {
    float:right;
    cursor:pointer;
}

    .my-inaz-toast-auto-hide.animated-stop {
        animation: my-inaz-toast-autoHide 1s forwards;
    }

    .my-inaz-toast-auto-hide.fast-hide {
        animation: my-inaz-toast-fastHide 1s forwards;
    }

    .my-inaz-toast-auto-hide.auto-hide {
        animation: my-inaz-toast-autoHide-slow 3s forwards;
    }

@keyframes my-inaz-toast-autoHide {
    0% {
        left: -350px;
    }

    100% {
        left: 0px;
    }
}

@keyframes my-inaz-toast-fastHide {
    0% {
        left: 0px;
    }

    100% {
        left: -350px;
    }
}

@keyframes my-inaz-toast-autoHide-slow {
    0% {
        left: -350px;
    }

    10% {
        left: 0px;
    }

    90% {
        left: 0px;
    }

    100% {
        left: -350px;
    }

}

