﻿
/*
 * Styling of input inspired by to following article:
 * https://blog.benestudio.co/custom-file-upload-button-with-pure-css-5aacf39aa0a
 */


.inputfile-btn-wrapper {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

  .inputfile-btn-wrapper input[type=file] {
    /*font-size: 100px;*/
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0;
  }

