﻿#snackbar {
    visibility: hidden;
    min-width: 350px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 77%;
    bottom: 30px;
    border: 1px solid;
    border-color: gray;
}

    #snackbar.show {
        visibility: visible;
        -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
        animation: fadein 0.5s, fadeout 0.5s 2.5s;
    }

#snackBarContent ul li input {
    top: 5px;
    display: none;
}

#snackBarContent ul {
    list-style: none;
    margin: 0;
    border-top: 1px solid #2b2e31;
    border-bottom: 1px solid #3d4043;
}

    #snackBarContent ul li {
        background-color: #333639;
        background-image: -webkit-linear-gradient(top, #333639, #303335);
        background-image: -moz-linear-gradient(top, #333639, #303335);
        background-image: linear-gradient(top, #333639, #303335);
        border-top: 1px solid #3d4043;
        border-bottom: 1px solid #2b2e31;
        /*padding: 2px;*/
        height: 25px;
        margin-left: 0px;
        position: relative;
        margin-right: 0;
    }

        #snackBarContent ul li input {
            top: 5px;
            display: none;
        }

        #snackBarContent ul li p {
            width: 144px;
            /*overflow: hidden;*/
            white-space: nowrap;
            color: #EEE;
            font-size: 11px;
            font-weight: bold;
            position: absolute;
            top: 5px;
            left: 30px;
        }

        #snackBarContent ul li i {
            font-weight: normal;
            font-style: normal;
            color: #7f7f7f;
            margin-left: 8px;
        }

        #snackBarContent ul li canvas {
            top: 2px;
            left: 5px;
            position: absolute;
        }

        #snackBarContent ul li span {
            width: 25px;
            height: 12px;
            background: url('~/UserControl/upload/asets/img/icons.png') no-repeat;
            background-position-x: 10px;
            position: absolute;
            top: 5px;
            right: 5px;
            cursor: pointer;
        }

        #snackBarContent ul li.working {
            margin-left: 0px;
        }

#upload ul li.working span {
    height: 16px;
    background-position: 12px -12px;
}

#snackBarContent ul li.error p {
    color: red;
}


.displayInline {
    display: inline;
}