.js .inputfile {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.inputfile + label {
    max-width: 100%;
    font-size: 15px;
    /* 20px */
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    display: block;
    overflow: hidden;
    padding: 0.625rem 1.25rem;
    /* 10px 20px */
	line-height: 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;
}

.inputfile + label * {
    /* pointer-events: none; */
    /* in case of FastClick lib use */
}

.inputfile + label svg {
    width: 1em;
    height: 1em;
    vertical-align: middle;
    fill: currentColor;
    margin-top: -0.25em;
    /* 4px */
    margin-right: 0.25em;
    /* 4px */
}

/* style 6 */

.inputfile-6 + label {
    color: #2E2E2E;
}

.inputfile-6 + label {
    border: 1px solid #D6D6D6;
    background-color: #fff;
    padding: 0;
	border-radius: 5px;
}

.inputfile-6:focus + label,
.inputfile-6.has-focus + label,
.inputfile-6 + label:hover {
    border-color: #D6D6D6;
}

.inputfile-6 + label span,
.inputfile-6 + label strong {
    padding: 0.625rem 1.25rem;
    /* 10px 20px */
}

.inputfile-6 + label span {
    width: 60%;
    min-height: 2em;
    display: inline-block;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    vertical-align: top;
	
	color: #2E2E2E;
	font-size: 13px;
	line-height: 20px;
	font-weight: 400;
}

.inputfile-6 + label strong {
	width:40%;
    height: 100%;
    color: #2E2E2E;
    background-color: #D6D6D6;
    display: inline-block;
	vertical-align: top;
}

.inputfile-6:focus + label strong,
.inputfile-6.has-focus + label strong,
.inputfile-6 + label:hover strong {
    background-color: #F18903;
	color: #fff;
}



@media only screen and (max-width: 950px) {
	.inputfile-6 + label span {
		width: 50%;
	}
	.inputfile-6 + label strong {
		width:50%;
	}
}
@media screen and (max-width: 50em) {
	.inputfile-6 + label strong, .inputfile-6 + label span {
		display: block;
		width:100%;
	}
}
