/* CSS Document */
/* DROPZONE PLUGIN */

.dropzone 
{
    color: rgba(0,0,0,.8);
}

.dropzone.dz-clickable 
{
    position:relative;
    padding: 0 0 0 0;
    background-color: rgba(0,0,0,.05);
    border-top: 1px dashed rgba(0,0,0,.2);
    border-right: 1px dashed rgba(0,0,0,.2);
    border-bottom: 1px dashed rgba(0,0,0,.2);
    border-left: 1px dashed rgba(0,0,0,.2);
    cursor: pointer;
    max-height: 400px;
    overflow: auto;
}

.dz-message 
{
    position: relative;
    padding: 100px 0 100px 0;
    text-align: center;
    font-style: italic;
    font-weight: bold;
    color: rgba(0,0,0,.4);
}

.dz-started .dz-message 
{
    padding: 10px 0 10px 0;
}

.dz-preview 
{
    position: relative;
    display: inline-block;
    padding: 10px;
    background-color: rgba(255,255,255,1);
    height: 130px;
    width: 130px;
    margin: 0 0 22px 22px;
    box-shadow: 0 0 3px rgba(0,0,0,.8)
}

.dz-image img
{
    width: 130px;
    max-height: 110px;
}

.dz-preview .dz-details .dz-size 
{
    position: absolute;
    bottom: 0;
    width: 130px;
    text-align: right;
    font-size: .8em;
}

.dz-preview .dz-details .dz-filename 
{
    position: absolute;
    top: 5px;
    left: 5px;
    width: 100px;
    height: 30px;
    background-color: rgba(0,0,0,.5);
    visibility: hidden;
}

.dz-preview .dz-details img 
{
    width: 130px;
    height: 100px;
    border: 1px solid rgba(0,0,0,.2);
}

.dz-preview .dz-progress 
{
    position: relative;
    width: 100%;
    height: 5px;
    -webkit-border-radius: 3px;
    border-radius: 3px;			
    background-color: rgba(0,0,0,.2);
}

.dz-preview .dz-progress .dz-upload 
{
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: rgba(0,204,0,1);
    -webkit-animation: loading 0.4s linear infinite;
    -moz-animation: loading 0.4s linear infinite;
    -o-animation: loading 0.4s linear infinite;
    -ms-animation: loading 0.4s linear infinite;
    animation: loading 0.4s linear infinite;
    -webkit-transition: width 0.3s ease-in-out;
    -moz-transition: width 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out;
    -ms-transition: width 0.3s ease-in-out;
    transition: width 0.3s ease-in-out;
    -webkit-border-radius: 3px;
    border-radius: 3px;			
}

.dz-preview .dz-success-mark,
.dz-preview .dz-error-mark
{
    position: absolute;
    top: -10px;
    right: -10px;
    visibility: hidden;
}

.dz-preview .dz-success-mark svg,
.dz-preview .dz-error-mark svg
{
    width: 48px;
    height: 48px;
}

.dz-success-mark #Oval-2
{
    fill: #00CC66;
    fill-opacity: 0.6;
    stroke: #00CC66;
    stroke-opacity: 1;
}

.dz-error-mark #Oval-2
{
    fill: #FF0033;
    fill-opacity: 0.6;
    stroke: #FF0033;
    stroke-opacity: 1;
}

.dz-preview.dz-success .dz-success-mark,
.dz-preview.dz-error .dz-error-mark
{
    visibility: visible;
}

.dz-preview .dz-success-mark span,
.dz-preview .dz-error-mark span
{
    visibility: hidden;
}

.dz-preview .dz-error-message 
{
    position: absolute;
    background-color: rgba(0,0,0,.8);
    width: 138px;
    height: 50px;
    bottom: 1px;
    left: 1px;
    padding: 5px;
    visibility: hidden;
    font-size: .8em;
    color: rgba(255,255,255,1);
}

.dz-preview.dz-error .dz-error-message 
{
    visibility: visible;
}