/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Author     : Stephan Verheyen
*/

.FileUploadInnerBox .progress {
    bottom: 0;
    left: 0;
    position: absolute;
    width: 100%;
}

.FileUploadInnerBox .glyphicon {
    font-size: 60px;
    left: 0;
    margin-top: 94px;
    position: absolute;
    text-align: center;
    top: 0;
    width: 100%;
}

.FileUploadContainer .fileupload {
    cursor: pointer;
    direction: ltr;
    font-size: 200px !important;
    margin: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
}

div.FileUploadDropBox {
    width: 100%;
    height: 250px;
    border: 1px solid darkgray;
    border-radius: 3px;
    box-shadow: 0px 2px 2px 1px lightgray;
    background-color: white;
    position: relative;
}

div.FileUploadDropBox:hover {
    background-color: f2ffe4;
}

div.FileUploadDropBox.dragover {
    background-color: #62f262;
}

div.FileUploadDropBox.loading {
    background-color: #e5ff7b;
}

div.FileUploadDropBox.active {
    background-color: #c1e2b3;
}

div.FileUploadDropBox.failed {
    background-color: lightcoral;
}

div.FileUploadInnerBox {
    width: inherit;
    height: inherit;
    position: absolute;
    padding: 10px;
    top: 0;
    right: 0;
}

div.FileUploadTargetBox {
    width: inherit;
    height: inherit;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
    cursor: pointer;
}