:root {
  --white: #fff;
  --black: #000;
  --blue: blue;
  --gray: #C4C4C4;
  --orange: #F59F35;
  --orange-light: #F2CB9B;
  --orange-dark: #E18330;
  --bg: #F5F5F5;
  --bg-dark: #F1F1F1;
  --bg-table: #F2F2F2;
  --text: #7E8282;
  --link: var(--orange);
  --link-hover: #ce6c00;
}
.inputfile-6 + label {
  max-width: 100%;
  display: flex;
  font-weight: normal;
  outline: none;
  color: var(--black);
  border: none;
  height: 40px;
  background: var(--bg);
  border-radius: 50px;
  box-shadow: none;
  width: 100%;
  padding: 0 15px;
  border: 2px solid var(--bg);
  font-size: 16px;
  line-height: 22px;
}
.inputfile-6 + label strong {
  background: transparent;
  position: relative;
}
.inputfile-6 + label strong:before,
.inputfile-6 + label strong:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/icon-clip.svg) no-repeat center / 16px auto;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
}
.inputfile-6 + label strong:after {
  opacity: 0;
  background-image: url(../img/icon-clip-orange.svg);
}
.inputfile-6 + label span {
  width: auto;
  flex: 1;
  padding-left: 0;
}
.inputfile-6 + label span:empty:after {
  content: "";
  position: absolute;
  color: var(--text);
}
.inputfile-6 + label:hover strong {
  background-color: transparent;
}
.inputfile-6 + label:hover strong:before {
  opacity: 0;
}
.inputfile-6 + label:hover strong:after {
  opacity: 1;
}
.inputfile-6:focus + label strong,
.inputfile-6.has-focus + label strong {
  background-color: transparent;
}
/*# sourceMappingURL=inputfile.css.map */