/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/

body {
  background: rgba(68, 60, 44, 0.1); /* #c1bdba */
  font-family: 'Titillium Web', sans-serif;
}
/* The container */
.container {

    display: block;
    position: relative;
    padding-left: 25px;
    margin-bottom: 0px;
    margin-top: 0px;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: rgba(68, 60, 44, 0.4);
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
    background-color: rgba(68, 60, 44, 0.1);
}

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
    background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
    left: 5px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 1px 1px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
/* Styles for the columns and rows of check boxes */

* {
    box-sizing: border-box;
}

/* Create two equal columns that floats next to each other */
.column {
    float: left;
    width: 50%;
    padding: 3px;
    
}
.name_column {
    float: left;
    width: 30%;
    padding: 3px;
    
}
.hours_column {
    float: left;
    width: 30%;
    padding: 3px;
    text-align: right;
    margin-right: 30px;
}
.detail_column {
    float: left;
    text-align: center;
    width: 30%;
    padding: 3px;
    
}
/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}
.output_row {
    border: 1px solid #D3D3D3; 
    border-style: none none solid none; 

}
.output_row:after {
    content: "";
    display: table;
    clear: both;
}

.review_row {
    border: 1px solid #D3D3D3; 
    border-style: none none solid none; 
     padding: 10px;
}
.review_row:after {
    content: "";
    display: table;
    clear: both;
}
.bullet {
    color: #009999;
}
.bullet:after {
    content: "";
  
    clear: both;
}
.field_label {
    color: #b38f00;
}
.field_label:after {
    content: "";
 
    clear: both;
}
h3.top_header {
  text-align: center;
}
.top_header {
  text-align: center;
  margin-top: 4px;
  margin-bottom: 4px;
  font-weight: bold;
}
.comment-container {
    padding:10px;
}
.comment-text {
    width:100%;
    min-height: 70px;
}

div.content_area {
    width:70%; 
    margin:0 auto;
    display: block;
}
div.content_area::after {
    content: "";
    display: table;
    clear: both;  
}    
div.half_content_area_left {
    width:50%; 
/*    display:block;*/
    box-sizing: border-box;
    float:left;
}
div.half_content_area_right {
    width:50%; 
/*    display:block;*/
    box-sizing: border-box;
    float:right;
}

.select_button:hover {
    color:white;
    background-color:  rgba(68, 60, 44, 0.9);
}

.marker {
    color: #806600;
}
.marker::after {
    content: "";
    clear: both; 
}
#dialogoverlay{
	display: none;
	opacity: .8;
	position: fixed;
	top: 0px;
	left: 0px;
	background: #FFF;
	width: 100%;
	z-index: 10;
}
#dialogbox{
	display: none;
	position: fixed;
	background: #000;
	border-radius:7px; 
	width:550px;
	z-index: 10;
}

.field_label.tab {
    color: #b38f00;  
    display: inline-block; 
    margin-left: 100px; 
}
#dialogbox > div{ background:#FFF; margin:8px; }
#dialogbox > div > #dialogboxhead{ background: #666; font-size:19px; padding:10px; color:#CCC; }
#dialogbox > div > #dialogboxbody{ background:#333; padding:20px; color:#FFF; }
#dialogbox > div > #dialogboxfoot{ background: #666; padding:10px; text-align:right; }