.control {
}
.control .file {
  display: none;
  color: white;
}
.control .file + label {
  left: 50%;
  transform: translateX(-50%);
  font-family: "Fjalla One", sans-serif;
  font-size: 15px;
  color: white;
  width: 250px;
  height: 50px;
  background: #fb1123;
  text-align: center;
  vertical-align: text-top;
  padding-top: 5px;
  position: absolute;
  border: 0px solid #660000;
  transition: 0.2s all;
}
.control .file + label:after {
  transition: 0.2s all;
  position: absolute;
  left: 40px;
  opacity: 0;
  content: " ";
  font-family: "FontAwesome";
}
.control .file + label:hover {
  cursor: pointer;
  border-bottom: 6px solid #660000;
  color: #cccccc;
}
.control .file + label:hover:after {
  opacity: 1;
  transform: translateX(-30px);
}
.control .file + label span {
  font-size: 12px;
  position: absolute;
  top: 60px;
  width: 250px;
  text-align: center;
  left: 0;
  color: black;
}