
/* general styles */
body {
    font-family: sans-serif;
    background-color: #7ca724;
    color:#ffffff;
    font-family: 'Open Sans', sans-serif;
    text-align: center;
}

h1 {
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    padding-bottom: 20px;
}

.container {
    width: 600px;
    margin: 50px auto;
}

form {
    margin-bottom: 30px;
}

.btn-file {
    position: relative;
    overflow: hidden;

    background-color: rgba(0, 0, 0, 0);
    border: solid #fff 2px;
    color: #fff;
    cursor: pointer;
    font-size: 21px !important;
    font-weight: 400;
    letter-spacing: 1px;
    padding: 10px;
    text-transform: uppercase;
    -webkit-font-smoothing: antialiased;
    -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.55);
    -moz-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.55);
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.55);
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    box-shadow: none;
    padding:16px 24px;
    margin-top:50px;
}
.btn-file input[type=file] {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 100%;
    min-height: 100%;
    font-size: 100px;
    text-align: right;
    filter: alpha(opacity=0);
    opacity: 0;
    outline: none;
    background: white;
    cursor: inherit;
    display: block;
}

/* textarea to show files as json */
textarea#uploaded {
    width: 100%;
    min-height: 300px;
    font-size: 10px;
}


/* show upload progress with bars */
.progress-bar-area {
    margin-top: 50px;
}
.progress {
    display: none;
    position: relative;
    width: 100%; height: 15px;
    background: #C7DA9F;
    border-radius: 15px;
    overflow: hidden;
    margin-top: 10px;
}
.bar {
    position: absolute;
    top: 0; left: 0;
    width: 0; height: 15px;
    background: #ffffff;
    text-align: center;
    color: #000;
    font-weight: bold;
    font-size: .7em;
}
.bar.red { background: tomato; }