﻿/* ==============
  Form-Upload
===================*/
.dropzone {
    min-height: 230px;
    border: 1px solid #ced4da;
    background: $white;
    border-radius: 6px;

    .dz-message {
        font-size: 30px;
    }
}

.form-group {
    position: relative;
}

.fileUpload {
    position: relative;
    overflow: hidden;

    input.upload {
        position: absolute;
        top: 0;
        right: 0;
        margin: 0;
        padding: 0;
        font-size: 20px;
        cursor: pointer;
        opacity: 0;
        filter: alpha(opacity=0);
    }

    &.btn--browse {
        border-left: 0;
        border-radius: 0 2px 2px 0;
        background-color: $secondary;
        color: #fff;
        height: 40px;
        padding: 6px 14px;
        position: absolute;
        right: 0;
        top: 0;

        &:hover {
            color: #fff;
        }
    }