/*https://tympanus.net/codrops/2015/09/15/styling-customizing-file-inputs-smart-way/*/

.js .inputfile,
.mycustomfileupload .inputfile {
    width: 0.1px;
    height: 0.1px;
    margin: 0;
    padding: 0;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}
.mycustomfileupload{
    text-align: center;
    background-color: #eee;
    padding: 20px;
    margin-bottom: 20px;
}
.inputfile + label {
    max-width: 80%;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    padding: 8px 10px 6px;
    font-weight: 400;
    font-size: 0.9rem;
    /* 10px 20px */
}

.no-js .inputfile + label {
    display: none;
}

.inputfile:focus + label,
.inputfile.has-focus + label {
    outline: 1px dotted #000;
    outline: -webkit-focus-ring-color auto 5px;
}


/* style 1 */
.inputfile-1 + label {
	margin-top: 20px;
	margin-bottom: 20px;
	/* border-radius:6px; */
    color: #222;
/*  */

}

.inputfile-1:focus + label,
.inputfile-1.has-focus + label,
.inputfile-1 + label:hover {

}
