/****************** BASE CSS (ALL PAGES) ******************/

* {
    font-family: Lato;
}

body {
    background: #f0f0f0;
    margin-bottom: 100px;
}

/* unvisited link */
a:link {
    color: #8fd4ff;
}

/* visited link */
a:visited {
    color: #8fd4ff;
}

/* mouse over link */
a:hover {
    color: hotpink;
}

.login-indicator {
    color: #06b000;
}

/* PROGRESS BAR */
#progressBarHolder {
  width: 100%;
  background-color: #ddd;
  border-radius: 5px;
}

#progressBar {
  width: 1%;
  height: 15px;
  background-color: #04b032;
  margin-top: 20px;
  border-radius: 5px;
}

/********************** SEARCH PAGE **********************/

.requiredField,
#div_id_email .control-label {
    font-size: 28px;
}

.help-block,
.controls ul {
    font-size: 16px;
    margin-top: 0px;
    color: #a6a6a6;
}

.search-box,
.login-box,
.register-box {
    color: white;
    background: #212c3e;
    width: 55%;
    margin-top: 250px;
    margin-left: auto;
    margin-right: auto;
    /* top/botton 40x, l/r auto. This centers the box */
    padding: 15px;
    border-radius: 10px;
    font-size: 20px;
}

.controls {
    padding-top: 10px;
    padding-bottom: 0px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}


#id_search_type_1,
#id_search_type_0 {
    margin-right: 10px;
    margin-bottom: 20px;

}

.radio {
    font-size: 24px;
}



#id_search_term,
#id_username,
#id_password,
#id_email,
#id_password1,
#id_password2 {
    background: white;
    width: 100%;
    height: 50px;
    font-size: 24px;
    padding: 5px 10px;
    border-radius: 5px;
    margin-top: 5px;
    margin-bottom: 10px;
}

#div_id_search_term .control-label .asteriskField {
    color: #212c3e;
}

#hint_id_password1 {
    margin: 0px;
}
.search-button,
.login-button,
.register-button {
    width: 100%;
    height: 50px;
    background: #ffc26a;
    border-radius: 5px;
    font-size: 20px;
}

.search-button:hover,
.login-button:hover,
.register-button:hover {
    background: #ffae49;
}

.login-status {
    text-align: right;
    width: 100%;
    margin-bottom: 15px;
    font-size: 12px;
    color: #dedede;
}

form {
    margin-bottom: 0px;
}

label {
    cursor: pointer;
}

/********************** RESULTS PAGE **********************/

.results-box {
    background: #212c3e;
    width: 85%;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
    /* top/botton 40x, l/r auto. This centers the box */
    padding: 15px;
    border-radius: 10px;
    color: white;
}

.results-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 10px;
}

.results-table tr:hover {
    background: #ba7d25;
    color: black;
}

.results-table td {
    border: 1px solid #eee;
}

.results-table,
th,
td {
    font-size: 20px;
    color: white;
}

th,
td {
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    color: white;
}

tr:nth-child(even) {
    background-color: #415370;
}

tr:nth-child(odd) {
    background-color: #212c3e;
}

th {
    background-color: #ffc26a;
    color: black;
}

input[type="radio"] {
    margin: 0px;
    width: 25px;
    height: 25px;
}

.download-button {
    width: 100%;
    background: #ffc26a;
    border-radius: 5px;
    font-size: 20px;
    
    margin-right: auto;
    margin-left: auto;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 1px;
    padding-bottom: 1px;
    font-weight: bold;
    min-height: 100px;
}

.download-button:hover {
    background: #ffae49;
}

.download-button-local {
    width: 100%;
    background: #ffc26a;
    border-radius: 5px;
    font-size: 20px;
    
    margin-right: auto;
    margin-left: auto;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 1px;
    padding-bottom: 1px;
    font-weight: bold;
    min-height: 100px;
}

.download-button-local:hover {
    background: #ffae49;
}

/********************** LOADER **********************/

.loader-div {
    margin-top: 0px;
    margin-bottom: 5px;
    margin-left: auto;
    margin-right: auto;
    width: 55%;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 10px;
    font-size: 18px;
}

.loader-div-results {
    margin-top: 0px;
    margin-bottom: 5px;
    margin-left: auto;
    margin-right: auto;
    width: 70%;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 10px;
    font-size: 18px;
}

/* .register-box {
    color: white;
    background: #212C3E;
    width: 35%;
    margin: 250px auto;
    top/botton 40x, l/r auto. This centers the box
    padding: 15px;
    border-radius: 10px;
    font-size: 20px;
} */

.loading-text {
    padding-top: 3px;
    font-size: 24px;
    color: #212c3e;
    float: left;
    margin-bottom: 50px;
}

.doloading {
    margin-top: 0px !important;
}


.asteriskField {
    display: none;
}
