#disclaimer {
    position: absolute; 
    top: 400px; 
    left: 5%; 
    width: 88%; 
    height: auto; 
    text-align: center;
    background-color:#2196F3;
    border-radius:10px;
    padding:20px;
    color:#fff;
    font-size: 1.5em;
}

progress {
    border-radius: 10px; 
    width: 100%;
    height: 40px;
  }
  progress::-webkit-progress-bar {
    background-color: yellow;
  }
  progress::-webkit-progress-value {
    background-color: blue;
  }
  progress::-moz-progress-bar {
    border-radius: 10px; 
    width: 100%;
    height: 40px;
  }

input[type=submit], input[type=button] {
    -webkit-appearance:none;
    -webkit-border-radius: 0px;
    width: 80%;
    height: 6em;
    background-color: #FF7F00;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-family: Roboto, Arial, Helvetica;
    font-size: 2em;
    opacity: 0.8;
}

input[type=submit]:hover, input[type=button]:hover {
    background-color: #ffa200;
    opacity: 1.0;
}

#file-5 {
    width: 0.1px;
	height: 0.1px;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	z-index: -1;
}

*,
*:after,
*:before {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.js .inputfile {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.inputfile + label {
    /*position: absolute;
    left: 50%;
    margin-left: -170px;*/
    max-width: 80%;
    font-size: 2.5rem;
    /* 20px */
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    padding: 0.625rem 1.25rem;
    text-align: center;
    /* 10px 20px */
}

.no-js .inputfile + label {
    display: none;
}

.inputfile:focus + label,
.inputfile.has-focus + label {
    outline: 1px dotted #000;
    outline: -webkit-focus-ring-color auto 5px;
}

.inputfile + label * {
    /* pointer-events: none; */
    /* in case of FastClick lib use */
}

.inputfile + label svg {
    width: 1em;
    height: 1em;
    vertical-align: middle;
    fill: currentColor;
    margin-top: -0.25em;
    /* 4px */
    margin-right: 0.25em;
    /* 4px */
}

/* style 4 */

.inputfile-4 + label {
    color: #2196F3;
    opacity: 1.0;
}

.inputfile-4:focus + label,
.inputfile-4.has-focus + label,
.inputfile-4 + label:hover {
    color: #2196F3;
    opacity: 0.9;
}

.inputfile-4 + label figure {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: #2196F3;
    opacity: 1.0;
    display: block;
    padding: 40px;
    margin: 0 auto 20px;
}

.inputfile-4:focus + label figure,
.inputfile-4.has-focus + label figure,
.inputfile-4 + label:hover figure {
    background-color: #2196F3;
    opacity: 0.9;
}

.inputfile-4 + label svg {
    width: 100%;
    height: 100%;
    fill: #f1e5e6;
}