@import "styles/bootstrap.min.css";
@import "styles/font-awesome.min.css";

.hidden {
    display:none important;
}
.inputfile {
    max-width: 120px;
	opacity: 0 !important;
	overflow: hidden !important;
	position: absolute !important;
	left:0; top:0;
	z-index: 100 !important;
}
.inputfile + label {
    font-size: 1.25em;
    font-weight: 700;
    color: white;
    background-color: black;
    display: inline-block;
}
.hoverable:hover {
    cursor: pointer;
}

.inputfile:focus + label,
.inputfile + label:hover {
    background-color: red;
}
.inputfile + label {
	cursor: pointer; /* "hand" cursor */
}
.inputfile:focus + label {
	outline: 1px dotted #000;
	outline: -webkit-focus-ring-color auto 5px;
}