/* progress */

.progress-footer {
    left: 0;
    bottom: 0;
    width: 100%;
    height: 160px;
    margin-bottom: 50px;
}

.progress-bar-container {
    margin-bottom: 100px;
}
.progressbar {
   counter-reset: step;
   padding: 0;
}
.progressbar li {
    list-style-type: none;
    float: left;
    font-size: 12px;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    width: 150px;
}
.progressbar li:before {
    width: 30px;
    height: 30px;
    content: counter(step);
    counter-increment: step;
    line-height: 30px;
    border: 2px solid #7d7d7d;
    display: block;
    text-align: center;
    margin: 0 auto 10px auto;
    border-radius: 50%;
    background-color: #7d7d7d;
    color: white;
}

.progressbar li.active:before {
    background-color: #83793e;
    color: #eee;
}

.progressbar li:after {
    width: 100%;
    height: 2px;
    content: '';
    position: absolute;
    background-color: #7d7d7d;
    top: 15px;
    left: -50%;
    z-index: -1;
}
.progressbar li:first-child:after {
    content: none;
}
.progressbar li.active {
    color: #ad974f;
}
.progressbar li.active:before {
    border-color: #83793e;
}
.progressbar li.active + li:after {
    background-color: #83793e;
}

/* Upload Data */

#project_form .text_area:after {
    content: "\A";
    white-space: pre;
  }

.row-form{
    display:flex;
    align-items: center;
    margin-bottom: 10px;
}

#project_form textarea{
    margin-bottom:0px;
    /* margin-left: 5px; */
}

#id_dna_extraction{
    max-width: 500px
}

label[for$="file_r1"]{
    margin-left: 20px;
}

.file-upload select, .file-upload label{
    margin-right: 10px;
}

textarea, select{
    border: 1px solid #ddd;
}

/* input[type=button] {
    background:black;
} */

#uploadedModalBody p button{
    width: 250px;
}

#uploadedModalBody p{
    text-align:center;
}

.required-field{
    font-size: .7rem;
    color: red;
    margin: 0;
    visibility: hidden;
}

#text{
    display: none;
}


#dropzone_r1, #dropzone_r2{
    margin-left: 20px;
    margin-right: 5px;
    width: 240px;
}

#dropzone_r2{
    visibility: hidden;
}

label[for$="pair_opt"]{
    display: none
}

#id_pair_opt{
    margin-left: 0px !important;
}


/* mobile mode */
@media (max-width: 1200px){
    #id_org_name, #id_human_name, #id_description, #id_sequencing_type, #id_dna_extraction, #library_prep, #sequencing_tech, #bioinfo_pipeline, #analysis_results, #featured{
        width: 250px !important;
    }


}
