.neon-file-upload{
    line-height: 32px;
    position: relative;
    width: auto;
    margin: 0 auto;
}
.neon-file-upload .placeholder{
    border: 1px dashed #98A5BB;
    background: #fff;
    width: 100%;
    height: 100%;
    min-height: 140px;
    position: relative;
    display: flex;
    align-items: center;
    flex-flow: wrap;
    text-align: center;
    cursor: pointer;
    margin: 0 auto;
}

.neon-file-upload .placeholder:hover,
.neon-file-upload .placeholder.dragging{
    border: 1px dashed #0074D9;
}
.neon-file-upload .placeholder.error{
    border: 1px dashed #FE2D44;
}

.neon-file-upload .upload-tip{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    margin-top: 8px;
}
.neon-file-upload .upload-tip.error-text{
    color: #FE2D44;
}
.neon-file-upload .upload-tip.error-text span i{
    margin-right: 5px;
}
.neon-file-upload .upload-content{
    width: 100%;
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    text-align: center;
    color: #979DA0;
}
.neon-file-upload .upload-content p{
    margin: 17px 0 0 0;
}
.neon-file-upload .upload-content .fa-cloud-upload-alt{
    color: #98A5BB;
    font-size: 32px;
}
.neon-file-upload .placeholder label,
.neon-file-upload .placeholder .upload-loading{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    cursor: pointer;
}
.neon-file-upload .placeholder .upload-loading{
    background: #000;
    opacity: 0.7;
    z-index: 22;
    text-align: center;
    display: flex;
    align-items: center;
    border-radius: 2px;
}
.neon-file-upload .placeholder .upload-loading span{
    width: 100%;
}
.neon-file-upload .placeholder .upload-loading span p{
    margin: 0;
    padding: 0;
    color: #fff;
    font-size: 14px;
}
.neon-file-upload .placeholder .upload-loading span i{
    font-size: 32px;
    color:#fff;
    -webkit-transform: rotate(360deg);
    animation: rotation 1.5s linear infinite;
    -moz-animation: rotation 1.5s linear infinite;
    -webkit-animation: rotation 1.5s linear infinite;
    -o-animation: rotation 1.5s linear infinite;
}
@-webkit-keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
    }
}
.neon-file-upload .upload-list ul{
    padding: 0;
    margin: 0;
}
.neon-file-upload .upload-list li{
    list-style: none;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    padding: 5px;
}
.neon-file-upload .upload-list li:hover{
    background-color: #f5f7fa;
}
.neon-file-upload .upload-list .upload-list-item-name,
.neon-file-upload .upload-list .file-size{
    color: #979DA0;
    text-decoration: none;
}
.neon-file-upload .upload-list{
    margin-top: 8px;
}
.neon-file-upload .upload-list .fa-file-pdf{
    color: #2F4975;
    padding-right: 9px;
    font-size: 14px;
}
.neon-file-upload .upload-list .file-size{
    padding-left: 13px;
}
.neon-file-upload .upload-list .upload-remove{
    float: right;
    cursor: pointer;
}
.neon-file-upload .upload-list .fa-times{
    color: #407796;
    font-size: 14px;
}
.neon-file-upload .upload-precent{
    height: 4px;
    background: #98A5BB;
    overflow: hidden;
    position: relative;
    vertical-align: middle;
}
.neon-file-upload .upload-precent .upload-progress-bar{
    background: #0074D9;
    width: 0;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    text-align: right;
    line-height: 1;
    white-space: nowrap;
    transition: width .6s ease;
}