﻿
.file-upload-manager-wrapper {
    -webkit-transition: max-height 0.5s;
    -moz-transition: max-height 0.5s;
    -ms-transition: max-height 0.5s;
    -o-transition: max-height 0.5s;
    transition: max-height 0.5s;
    position: fixed;
    right: 1px;
    bottom: 1px;
    width: 300px;
    height: auto;
    z-index: 1000;
    background: #ffffff94;
}

    .file-upload-manager-wrapper.minimized {
        -webkit-transition: max-height 0.5s;
        -moz-transition: max-height 0.5s;
        -ms-transition: max-height 0.5s;
        -o-transition: max-height 0.5s;
        transition: max-height 0.5s;
        max-height: 50px;
    }

    .file-upload-manager-wrapper h4 {
        background-color: #33CCFF;
        color: white;
        font-weight: 700;
        font-size: 22px;
        margin: 0;
        padding: 5px;
        line-height: 22px;
    }

    .file-upload-manager-wrapper ul {
        list-style: none;
        margin: 0;
        padding: 0;
        height: auto;
        width: 100%;
    }

.file-upload-manager-body {
    border: 1px solid #ccc;
    height: auto;
    overflow: hidden;
    margin: 0;
    padding: 0;
    width:100%;
}

.file-list-item {
    height: 50px;
    width: 100%;
    line-height: 40px;
    margin: 0;
    padding: 0;
    border-right: 1px solid #ccc;
    position: relative;
}

    .file-list-item.completed {
        background-color: rgba(0, 127, 147, 0.17);
    }

.file-list-show-more-button {
    height: 50px;
    width: 5.5%;
    line-height: 54px;
    margin: 0;
    padding: 0;
    position: relative;
    float: left;
    text-align: center;
    cursor:pointer;
}
    .file-list-show-more-button label {
        font-weight: normal;
        line-height: 54px;
        cursor: pointer;
    }
    .file-list-show-more-button:hover label {
        font-weight:bold;
    }


.file-list-item:last-of-type {
    border-bottom: none;
}

.file-list-item.empty {
    text-align: center;
    border: none;
}

.file-list-item.error {
    color: #fff;
    background-color: red;
}

.file-list-item > label {
    display: inline-block;
    font-weight: normal;
    margin: 0;
    padding: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    line-height: 40px;
    max-width: 100%;
    height: 100%;
    width: 100%;
}

.file-list-item > button {
    width: 10%;
    line-height: 40px;
}

.file-list-item > label > span {
    line-height: 40px;
    color: #007f93;
    font-size: 25px;
    margin: 0 4px;
    top: 6px;
}

    .file-list-item > label > span.fast-right-spinner {
        -webkit-animation: glyphicon-spin-r 1s infinite linear;
        animation: glyphicon-spin-r 1s infinite linear;
    }

@-webkit-keyframes glyphicon-spin-r {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@keyframes glyphicon-spin-r {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

.file-list-item .progress {
    background-color: rgba(0, 127, 147, 0.17);
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border: none;
    border-radius: initial;
}
button.close {
    position:absolute;
    top:0;
    right:0;
}