[type="file"] {
  height: 0;
  overflow: hidden;
  width: 0;
}
[type="file"] + label {
  background-color: #00C389;
  border: none;
  /* border-radius: 5px; */
  color: #fff;
  cursor: pointer;
  display: inline-block;
	font-family: 'Rubik', sans-serif;
	font-size: inherit;
  font-weight: 500;
  outline: none;
  /* padding: 10px 70px; */
  position: inherit;
  transition: all 0.3s;
  vertical-align: middle;
  align: center;

    &:hover {
      background-color: darken(#84bd1a, 10%);
    }

    &.btn-1 {
      background-color: #f79159;
      box-shadow: 0 6px darken(#f79159, 10%);
      transition: none;

      &:hover {
        box-shadow: 0 4px darken(#f79159, 10%);
        top: 2px;
      }
    }
  }

  &.btn-2 {
    background-color: #00C389;
    border-radius: 50px;
    overflow: hidden;

    &::before {
      color: #fff;
      content: "\f382";
      font-family: "Font Awesome 5 Pro";
      font-size: 100%;
      height: 100%;
      right: 130%;
      line-height: 3.3;
      position: inherit;
      top: 0px;
      transition: all 0.3s;
    }

    &:hover {
      background-color: darken(#00C389, 30%);

      &::before {
        right: 75%;
      }
    }
  }

  &.btn-3 {
    background-color: #00C389;
    border-radius: 0;
    overflow: hidden;

    span {
      display: inline-block;
      height: 100%;
      transition: all 0.3s;
      width: 100%;
    }

    &::before {
      color: #fff;
      content: "\f382";
      font-family: "Font Awesome 5 Pro";
      font-size: 130%;
      height: 130%;
      left: 0px;
      line-height: 2.6;
      position: inherit;
      top: -180%;
      transition: all 0.3s;
      width: 100%;
    }

    &:hover {
      background-color: darken(#00C389, 30%);
      box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19);

      span {
        transform: translateY(300%);
      }

      &::before {
        top: 0;
      }
    }
  }


}
