.files input {
  outline: 2px dashed #92b0b3;
  outline-offset: -1px;
  -webkit-transition: outline-offset 0.15s ease-in-out,
    background-color 0.15s linear;
  transition: outline-offset 0.15s ease-in-out, background-color 0.15s linear;
  /*padding: 120px 0px 85px 35%;*/
  /*text-align: center !important;*/
  /*margin: 0;*/
  /*width: 100% !important;*/
}

.files input:focus {
  outline: 2px dashed #92b0b3;
  outline-offset: -10px;
  -webkit-transition: outline-offset 0.15s ease-in-out,
    background-color 0.15s linear;
  transition: outline-offset 0.15s ease-in-out, background-color 0.15s linear;
  border: 1px solid #92b0b3;
}

.files {
  position: relative;
}

.files:after {
  pointer-events: none;
  position: absolute;
  top: 60px;
  left: 0;
  width: 50px;
  right: 0;
  height: 56px;
  content: "";
  /*background-image: url(/img/icons/upload.png);*/
  display: block;
  margin: 0 auto;
  background-size: 100%;
  background-repeat: no-repeat;
}

.color input {
  background-color: #eeeeee;
}

.files:before {
  position: absolute;
  bottom: -35px;
  left: 0;
  pointer-events: none;
  width: 100%;
  right: 0;
  height: 57px;
  content: " or drag a MIDI file here";
  display: block;
  margin: 0 auto;
  /*color: #2ea591;*/
  /*font-weight: 200;*/
  text-transform: capitalize;
  text-align: center;
  color: white;
}

input[type="file"]::file-selector-button {
  margin-right: 20px;
  border: none;
  /*background-color: #0A58C9;*/
  height: 35px;
  padding: 5px 10px;
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease-in-out;
}

input[type="file"]:enabled::file-selector-button:hover {
  background-color: #0d45a5;
}

input[type="file"]:not(disabled)::file-selector-button {
  background-color: #0d45a5;
  color: grey;
}

input[type="file"]:enabled::file-selector-button {
  background-color: #0A58C9;
  /*background-color: #084cdf;*/
  color: white;
}
