﻿.dropify-wrapper {
    display: flex;
    padding: 20px 10px;
    text-align: center;
    transition: border-color .15s linear;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    color: #000;
    position: relative;
    width: 100% !important;
    max-width: 100%;
    box-sizing: border-box;
}

    .dropify-wrapper.biginput,
    .dropify-wrapper.tinyinput,
    .dropify-footer {
        border: 5px dashed rgb(229 55 0 / 53%);
        padding: 50px 20px;
        background-color: white;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

.dropify-message,
.dropify-filelist, .dropify-preview, .dropify-result, .dropify-footer,
.dropify-info-error, .dropify-info-uploading, .dropify-info-waiting, .dropify-info-converting,
#pnl_Success, #pnl_Raster, #pnl_Timeout, #pnl_Fail {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    max-width: 100%;
}

.dropify-filelist, .dropify-preview, .dropify-result, .dropify-footer,
.dropify-info-error, .dropify-info-uploading, .dropify-info-waiting, .dropify-info-converting,
#pnl_Success, #pnl_Raster, #pnl_Timeout, #pnl_Fail {
    display: none;
}

.imgWrap img {
    width: 75px;
}


.keepgoing {
    height: 30px;
    border: 2px solid #ffa000;
    border-radius: 4px;
    background-size: 90px 90px;
    background-image: linear-gradient(-45deg,#ffa000 25%,transparent 25%,transparent 50%,#ffa000 50%,#ffa000 75%,transparent 75%,transparent);
    animation: stripes 2s linear infinite;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

#multiUp.biginput {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 0;
}

.dropify-wrapper.biginput:hover {
    background-size: 30px 30px;
    background-color: rgba(100,100,100,.1);
    background-image: linear-gradient(-45deg,#F6F6F6 25%,transparent 25%,transparent 50%,#F6F6F6 50%,#F6F6F6 75%,transparent 75%,transparent);
    animation: stripes 2s linear infinite;
    background-color: white;
}

#multiUp.tinyinput {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    cursor: pointer;
}

.file-panel {
    position: absolute;
    width: 14px;
    height: 14px;
    top: 0;
    left: 25px;
    z-index: 2;
}

    .file-panel .cancel {
        background: url(/img/close.png) no-repeat center center;
        display: inline-block;
        width: 14px;
        height: 14px;
        text-indent: -9999px;
        position: absolute;
        left: 60px;
        top: 0;
        cursor: pointer;
    }

.imgWrap {
    position: relative;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

.dropify-footer {
    width: 100%;
    max-width: 100%;
    min-height: 100px;
    padding: 10px;
    line-height: 30px;
    background-color: #FFF;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    box-shadow: 4px 1px 4px rgba(0,0,0,.1);
    border-top: none;
    box-sizing: border-box;
}

    .dropify-footer div {
        margin-bottom: 15px;
    }

.dropify-wrapper.has-error {
    border-color: #F34141;
}

#btn-startover {
    display: none;
    margin: 10px;
}

.dropify-wrapper.has-error:hover .dropify-errors-container {
    visibility: visible;
    opacity: 1;
    transition-delay: 0s;
}

.dropify-wrapper.disabled input {
    cursor: not-allowed;
}

.dropify-wrapper.disabled:hover {
    background-image: none;
    animation: none;
}

.dropify-wrapper.disabled .dropify-message {
    opacity: .5;
    text-decoration: line-through;
}

.dropify-wrapper.disabled .dropify-infos-message {
    display: none;
}

ul.current-files {
    text-decoration: none;
    list-style: none;
    padding: 0;
    margin: 0;
}

    ul.current-files li {
        position: relative;
        width: 120px;
        /*overflow: hidden;*/
        max-width: 100%;
    }

        ul.current-files li p.title {
            white-space: nowrap;
            display: flex;
            justify-content: center;
        }

.progress {
    display: none;
    height: 8px;
    overflow: hidden;
    max-width: 100%;
    box-sizing: border-box;
}

.dldexe-restart {
    margin-top: 40px;
}

@keyframes stripes {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 60px 0;
    }
}
