/* 
	Uploader: 
	- These styles are the ones used on the examples. No needed to use it by any means.
	- It disables user selection to avoid some weird visuals in some browsers
	- It masks/hides the the file input behind a button
 */

.dm-uploader {
	cursor: default;

	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.dm-uploader .btn {
	position: relative;
	overflow: hidden;
}

.dm-uploader .btn input[type="file"] {
	position: absolute;
	top: 0;
	right: 0;
	margin: 0;
	border: solid transparent;
	width: 100%;
	opacity: .0;
	filter: alpha(opacity= 0);
	cursor: pointer;
}
.dm-uploader {
	border: 0.01px dashed #01a3ba;
	text-align: center;
        padding: 10px
}
.dm-uploader.active {
	border-color: #01a3ba;
	border-style: solid;
}
li.in_valid {   
    color:  red !important;
}
li.success_border{
    color:  #01a3ba !important;    
}
.close_btn_padding{
    padding: 6px 0px 0px;
}
li.empty{
    font-size: 16px;
    line-height: 16px;
    color: #565656;
    padding: 0px 0px 10px;
    -webkit-border-radius: 5px;
    border-radius: 5px;    
    -webkit-box-shadow: none;
    box-shadow: none;
    margin: 5px 0;
    height: auto;        
}