.upload_container {
    box-sizing: border-box;
    display: inline-block;
    height: 180px;
    max-width: 100%;
    width: 100%;
    background: #fff;
    padding: 10px;
    transition: padding .25s, background .25s;
}

.upload_container.drag-enter {
    padding: 15px;
    background: #ddeac7;
}

.upload_uploader {
    border: 2px dashed #e2e2e2;
    box-sizing: border-box;
    height: 100%;
    max-width: 100%;
    position: relative;
    width: 100%;
    cursor: pointer;
    transition: border-color .25s;
}

.upload_container.drag-enter .upload_uploader {
    border: 2px dashed #82bb28;
}

#plupload-browse-button, .dropfield {
    cursor: pointer;
}

.dropfield-text {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 80%;
    transform: translate(-50%, -50%);
}

.dropfield-text svg {
    fill: #82bb28;
    margin-bottom: 20px;
}

.dropfield {
    color: #000000;
    font-size: 15px;
    left: 0;
    margin: auto;
    text-align: center;
    top: 0;
    vertical-align: middle;
    width: 100%;
}

.plupload_upload_status {
    background: #fff;
    border-bottom: 1px solid #ddd;
    box-sizing: border-box;
    display: block;
    display: none;
    height: 40px;
    left: 0;
    position: fixed;
    top: -40px;
    transition: top 0.35s ease 0s;
    width: 100%;
    z-index: 10000;
}

.plupload_upload_status.active {
    display: block;
    top: 0;
}

.plupload_upload_status .bar {
    background: #fff;
    bottom: 0px;
    height: 4px;
    left: 0;
    position: absolute;
    width: 100%;
}

.plupload_upload_status .status {
    background: #82bb28;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transition: width .35s ease 0s;
    width: 0%;
}

.plupload_upload_status .info {
    font-weight: 500;
    padding: 10px 0;
    text-align: center;
    text-transform: uppercase;
}
