[type="file"] {
  height: 0;
  overflow: hidden;
  width: 0;
}

[type="file"] + label {
	background: #f15d22;
	border: none;
	border-radius: 5px;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-family: 'Poppins', sans-serif;
	font-size: inherit;
	font-weight: 600;
	margin-bottom: 1rem;
	outline: none;
	padding: 5px;
	position: relative;
	transition: all 0.3s;
	vertical-align: middle;

	&:hover {
  	background-color: darken(#f15d22, 10%);
  }
}
