﻿.fileDropContainer {
    height: 50px;
    border: 2px dashed #45484d;
    position: relative;
    cursor: pointer;
    margin: 10px 0;
    overflow: hidden;
}

.fileDropContainer {
    height: 50px;
    border: 2px dashed #45484d;
    position: relative;
    cursor: pointer;
}

    .fileDropContainer.dragOver {
        background: lightgray;
    }

.fileDropLabel {
    line-height: 50px;
    text-align: center;
}

.fileDropContainer input {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    cursor: pointer;
    opacity: 0;
    font-size: 0;
    z-index: 100;
    height: 100%;
    width: 100%;
}

.fileDropFileInfo {
    line-height: 50px;
    padding: 0 10px;
    position: relative;
}

    .fileDropFileInfo:before, .fileDropFileInfo:after {
        font-family: 'icomoon' !important;
        speak: none;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        font-size: 16px !important;
        vertical-align: middle;
        position: relative;
        margin-right: 5px;
    }

    .fileDropFileInfo:before {
        top: -2px;
            content: "\e9ad";
        margin-right: 5px;
    }
