.no-select, .no-select * {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.no-outline, .no-outline * {
	outline: none !important;
	border: 0;
}

.uploader-box {
   /*  width: 600px;
    height: 50px; */
    text-align: center;
    background-color: #d9d9d9;
    outline: 2px dashed #fff;
    outline-offset: -5px;
    position: relative;
    font-family: "Helvetica Neue",Helvetica,"Trebuchet MS",Arial,sans-serif;
}
.uploader-box-file {    /* Hide the ugly duckling */
    display: inline-block;
    width: 0.1px;
	height: 0.1px;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	z-index: -1;
}
.uploader-box-file + label {
    cursor: pointer;    /* "hand" cursor */
    /* width: 400px;      */
    margin-top: 10px;
	  margin-bottom: 10px;
    padding: 8px;
    font-size: 1em;
    color: white;
    background-color: #f39c12;
    display: inline-block;
    border-radius: 3px;
}
.uploader-box-file + label svg {
    width: 1em;
    height: 1em;
    vertical-align: middle;
    fill: currentColor;
    margin-top: -0.25em;
    margin-right: 0.25em;
}
.uploader-box-file:focus + label,
.uploader-box-file + label:hover {
    background-color: #e08e0b;
	opacity: 0.9;
}
.uploader-box-file:focus + label,
.uploader-box-file.has-focus + label {
    outline: 5px solid   rgba(107,177,250,0.9); 
    outline: -webkit-focus-ring-color auto 5px;
}
.uploader-box-file.hidden + label {
    display: none;
}
.uploader-box-dragndrop {
    display: inline;
}
.uploader-box-dragover {
  /* background-color: #00ddff;
  outline-offset: -12px; */
  outline: 2px dashed rgba(10,10,10,0.9);
}
.uploader-box-uploading,
.uploader-box-success,
.uploader-box-error,
.uploader-box-abort {
    display:none;
    width: 600px;
    height: 100px;
    color: #fff;
    font-size: 1.2em;
}
.uploader-box-success,
.uploader-box-error,
.uploader-box-abort {
    flex-direction: column;
    justify-content: center;
    color: #fff;
}
.uploader-box-uploading-meter {
    height: 10px;
    width: 410px;
    border: 2px solid #fff;
    position: absolute;
    top: 45px;
    left: 93px;
}
.uploader-box-uploading-bar {
    background-color: #fff;
    display: block;
    width: 0%;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.uploader-box-uploading-info {
    font-size: 0.7em;
    position: relative;
    top: 15px;
}
.uploader-box-uploading-text {
    position: relative;
    top: 45px;
}
.uploader-box-uploading-cancel {
    background-color: #fff;
    display: block;
    width: 10px;
    height: 10px;
    position: relative;
    overflow: hidden;
    float: right;
    right: -16px;
    top: -12px;
    border: 2px solid #fff;
    color: #0099bb;
    font-size: 0.8em;
    font-weight: bold;
    line-height: 10px;
    text-align: center;
}
