.inputfile {
	width: 0.1px;
	height: 0.1px;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	z-index: -1;
}
.inputfile + label {
    font-size: 1.25em;
    font-weight: 700;
    color: white;
    color: var(--text-color-white);
    background-color: var(--bg-color-red);
    border-color: var(--bg-color-red);
    display: inline-block;
    cursor: pointer;
    padding: .375rem .75rem;
    border-radius: 0.25rem;
}

.inputfile:focus + label {
	outline: 1px dotted #000;
	outline: -webkit-focus-ring-color auto 5px;
}

.inputfile:focus + label,
.inputfile + label:hover {
    background-color: var(--bg-color-dark-red);
    border-color: var(--bg-color-dark-red);
}