

.full_test {
    color:#0d6179;
    font-family:'LatoMedium';
    width:100%;
    padding: 1em 2%;
    background:#f4f4f4;
    background: #fff;
}

.sticky {
    position: fixed;
    width:90%;
    top: 0;
    z-index: 100;
    border-top: 0;
  }

.test_title {
    font-size:1.7em;
    padding: 0 1.3em 1.3em 0;
}

.test_content p {
    font-size:1.3em;
    line-height: 1.3em;
    padding:1em 1em 1em 0em;
    margin:0;
    font-family: 'InterstateLight', sans-serif;
    font-weight: normal;
    color:#555555;
}

.sub_tests {    
    width:100%;
    display:block;
    border-top:1px solid #dbdbec;    
}

.sub_field_text {
    padding:1em;
    width:50%;
    margin:1em;
    margin-bottom:0em;
    border:1px solid #0d6179;
}

.sub_field_text_table {
    padding:1em;
    width:auto;
    margin:1em;
    margin-bottom:0em;
    border:1px solid #0d6179;
}

.sub_test_title {
    width:100%;
    color:#0d6179;
    font-family:'LatoMedium';
    font-size:1.3em;
    font-weight:bold;
    display:block;
    padding: 1.7em 0.7em 1.7em 0;
    float:left;
}

.sub_test_fields {
    border-top:1px solid #dbdbec;
    padding: 1em 2%;
}

.sub_test_field_description {
    font-family: 'InterstateLight', sans-serif;
    font-size:1.3em;
    color:#555555;
    font-weight: normal;
    padding-left:0.5em; 
    float:left;
}



.checkbox_field {    
    display: flex;
    width:100%;
}

.last_updated {
    display:grid;
    grid-template-columns: 1.9em 90%;
    grid-column-gap:0.7em;
    margin-top:1em;
    margin-bottom:1.5em;
}

.field_status_icon {
    width:100%;
}

.field_status_text {
    color:#999999;
}

.field_status_text a {
    color:#0d6179;
}

.top_level_test_field_description {
    font-family: 'InterstateLight', sans-serif;
    font-size:1.3em;
    color:#555555;
    font-weight: normal;
    padding-left:0.5em; 
    float:left;
}

.top_level_test_fields {
    background:#f9faff;
    padding:0em 1.5em 1.5em 0em;
}

#test_progress {
    width:100%;
    float:left;
    display: block;
}

#test_progress2 {
    display:block; 
    width:100%;
    float:left;
    padding: 1.7em;
    background:#f9faff;
    border-bottom:1px solid #dbdbec;
    z-index: 500;
    margin-bottom:1.7em;
}

.test_progress_title {
    width:100%;    

    color:#0d6179;
    font-family:'LatoMedium';
    font-size:1.3em;
    font-weight:bold;
    display:block;
    padding: 0em 0.7em 0.5em 0;
    float:left;
}

#percent_necessary_completed_tests {
    float:left;
    width:95%;
    border:2px solid rgb(175, 175, 175);
    background:#fff;    
    height:62px;       
    display:block;    
}

#percent_completed {
    display:block; 
    background:#0d6179; 
    float:left;
    color:#fff;
    font-size:1.5em;
    padding:15px;
}

.test_comments_title {
    width:100%;
    color:#0d6179;
    font-family:'LatoMedium';
    font-size:1.7em;
    font-weight:bold;
    display:block;
    padding: 0.7em 0.7em 0.7em 0;
    float:left;
}

.delete_comment {    
    display: inline;
    border:none;
    background:none;
    cursor:pointer;
}

.add_comment_button {
    background:#0d6179;
    border:none;
    font-size:1.3em;
    padding:1em;
    color:#fff;
}

.test_comment {
    border-bottom:1px solid #dbdbec;
}

.test_comment:nth-child(even) {
    background:#f9faff;
}

.user_comment_info {
    display:grid;
    grid-template-columns: 1.9em 90%;
    grid-column-gap:0.7em;
}

.user_comment_info img {
    width:100%;
    height:100%;
}

.user_comment_info p {
    margin:0px;
}

.comment_content {
    font-size:1.3em;
    color:#555;
    margin-bottom:1.3em;
    margin-top:1em;
}

.user_comment_timestamp {
    color:#999;
}

.comment_field, .textarea_field {
    border:2px solid #0d6179;
    width:90%;
    height:200px;
    font-size:1.5em;
    font-family: 'Interstate', sans-serif;
}

.test_pagination ul {
    padding:0;
    margin:1em 0em 1em 1.5em;
}

.test_pagination li {
    list-style: none;
    float:left;
    padding:0px;
    margin-left:0;
    padding-right:1em;
    padding-bottom: 3em;
}

.test_pagination a {
    padding:1.5em;
    background:#0d6179;
    color:#fff;
}

/* 

    Custom checkbox CSS

*/

input[type="checkbox"] {
  /* Add if not using autoprefixer */
  -webkit-appearance: none;
  /* Remove most all native input styles */
  appearance: none;
  /* For iOS < 15 */
  background-color: #fff;
  /* Not removed via appearance */
  margin: 0;

  font: inherit;
  color: currentColor;
  width: 1.9em;
  height: 1.9em;
  border: 0.15em solid currentColor;
  border-radius: 0.15em;
  transform: translateY(-0.075em);
  display: grid;
  place-content: center;
  float:left;
}

input[type="checkbox"]::before {
  content: "";
  width: 1em;
  height: 1em;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  transform: scale(0);
  transform-origin: bottom left;
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em var(--form-control-color);
  /* Windows High Contrast Mode */
  background-color: #0d6179;
}

input[type="checkbox"]:checked::before {
  transform: scale(1);
}

input[type="checkbox"]:focus {
  outline: max(2px, 0.15em) solid currentColor;
  outline-offset: max(2px, 0.15em);
}

input[type="checkbox"]:disabled {
  --form-control-color: var(--form-control-disabled);

  color: var(--form-control-disabled);
  cursor: not-allowed;
}

.test_table th {
    padding:1em;

}
.file-div
{
  float: left;
  width: 100%;
  margin: 0 0 1em 0;
  padding: 0;
  background-color: #f4f4f4;
  /*border-bottom: 1px solid #0d6179;*/
}