.inputfile input {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.inputfile input + label {
    font-size: 1.25rem;
    /* 20px */
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    padding: 0.625rem 1.25rem;
    /* 10px 20px */
}

.no-js .inputfile input + label {
    display: none;
}

.inputfile input:focus + label,
.inputfile input.has-focus + label {
    outline: 1px dotted #000;
    outline: -webkit-focus-ring-color auto 5px;
}

.inputfile input + label * {
    /* pointer-events: none; */
    /* in case of FastClick lib use */
}

.inputfile input + label svg {
    width: 1em;
    height: 1em;
    vertical-align: middle;
    fill: currentColor;
    margin-top: -0.25em;
    /* 4px */
    margin-right: 0.25em;
    /* 4px */
}


/* style 1 */

.inputfile-1 input + label {
    color: #b4b4b4;
    background-color: #fff;
    background-repeat: no-repeat;
    padding-left: 35px;
    background-position: 10px center;
    border: 1px dashed #b4b4b4;
    width: 100%;
}

/*
.inputfile-1 input:focus + label,
.inputfile-1 input.has-focus + label,
.inputfile-1 input + label:hover {
    background-color: #722040;
}*/