﻿.progress {
    height: 1.5rem;
}

#descriptionFile {
    border: 3px dashed #c2c2c2;
    border-radius: 4px;
    margin: 2rem 0;
    padding: .5rem 1rem;
    background: #fcfcfc;
}

    #descriptionFile.dragover {
        border: 3px dashed #1b75bc;
    }

    #descriptionFile.containsFiles {
        border: 3px solid #a2a2a2;
    }

    #descriptionFile > span {
        min-height: 100px;
        font-size: 1.5rem;
        color: #666666;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

#uploadTotal {
    font-size: 2rem;
    font-style: italic;
    margin: 1rem 0;
    border-top: 1px solid #ccc;
    padding-top: 1rem;
    color: #767676;
}

.fileUpl {
    display: flex;
    align-items: center;
    justify-content: start;
    margin: 1rem 0;
}

    .fileUpl > * {
        margin: 0;
        padding: 0;
    }

    .fileUpl label {
        width: 200px;
        text-overflow: ellipsis !important;
        overflow-x: hidden !important;
        /*! display: flex; */
        white-space: pre;
        margin-right: 1rem;
    }

    .fileUpl p {
        margin: 0 .5rem;
    }

    .fileUpl .progress {
        width: 25%;
    }


@media screen and (max-width: 766px) {
    .fileUpl {
        flex-direction: column;
    }

        .fileUpl .progress {
            width: 100%;
        }

        .fileUpl label,
        .fileUpl div.progress,
        .fileUpl > p {
            width: 100%;
        }

        .fileUpl > * {
            margin: .5rem 0;
        }
}


.fileUpl > span {
    margin-right: 1.5rem;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    font-size: 1.5rem;
}

    .fileUpl > span:hover {
        color: #f00;
    }