/*
* Upload
* ================================================== */
.upload-file-box {
    position: relative;
}
.upload-bar-box {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(255,255,255,0.5);

    display: flex;
    align-items: center;
    justify-content: center;
}
.upload-bar-info {
    padding: 5px 10px;
    color: #000;
    background-color: rgba(255,255,255,0.9);
    border-radius: 5px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    font-size: 14px;
    z-index: 2;
}
.upload-bar {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 0;
    background-color: rgba(0, 195, 0, 0.12);
    z-index: 1;
    transition: all 1s linear 0s;
}

/* Desativa o box */
.upload-box-inactive {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 10;
}
.upload-enviando .btn {
	opacity: 0.5;
}
