body {
    background-color: #636060;
    font-family: tahoma, geneva, sans-serif;
}

label{
    color: red;
}

form{
    margin-bottom: 0;
}

textarea {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
}


#template-report-page{
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
}

#pre-report-page,
#tech-performance-page{
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
}

#template-more-photo,
#template-detail-photo,
#template-photo-1,
#template-photo-2,
#template-photo-3,
#template-photo-4{
    background-color: #EEEEEE;
}

#template-common-section,
#template-comment-section{
    background-color: #EEEEEE;
}

#template-action-section,
#template-repair-section,
#template-report-summary,
#template-report-payment{
    background-color: #EEEEEE;
}


#template-special-section{
    background-color: #EEEEEE;
}

.section-title {
    color: #f6f6f6;
    font-weight: normal;
    display: block;
    width: 200px;
    float: left;
    background-color: #404a79;
    padding: 5px;
    padding-left: 20px;
    margin-top: 10px;
    border-radius: 5px 5px 0 0;
}


.select2-container .select2-drop {
  z-index: 9001 !important;
}

.report_item_view{
    text-decoration: underline;
}
.ui-dialog .ui-dialog-titlebar-close  {
    display: none;
}

.new_report_button {
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    padding: 6px 12px;
    border: 1px solid #ac730b;
    border-radius: 4px;
    background: #ffbd12;
    background: -webkit-gradient(linear, left top, left bottom, from(#ffbd12), to(#ac730b));
    background: -moz-linear-gradient(top, #ffbd12, #ac730b);
    background: linear-gradient(to bottom, #ffbd12, #ac730b);
    font: normal normal bold 20px arial;
    color: #ffffff;
    text-decoration: none;
}
.new_report_button:hover,
.new_report_button:focus {
    border: 1px solid #f6a410;
    background: #ffe316;
    background: -webkit-gradient(linear, left top, left bottom, from(#ffe316), to(#ce8a0d));
    background: -moz-linear-gradient(top, #ffe316, #ce8a0d);
    background: linear-gradient(to bottom, #ffe316, #ce8a0d);
    color: #ffffff;
    text-decoration: none;
}
.new_report_button:active {
    background: #ac730b;
    background: -webkit-gradient(linear, left top, left bottom, from(#ac730b), to(#ac730b));
    background: -moz-linear-gradient(top, #ac730b, #ac730b);
    background: linear-gradient(to bottom, #ac730b, #ac730b);
}


.standard_action_bt,
.standard_action_detail_bt,
.standard_action_view_bt,
.standard_action_edit_bt,
.standard_action_update_bt,
.standard_action_copy_bt,
.standard_action_delete_bt{
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin-left: 10px;
}

.standard_add_bt{
    width: 20px;
    height: 20px;
}

.standard_add_bt:hover{
    width: 20px;
    height: 20px;
    cursor: pointer;
}

div.blueTable {
  background-color: #EEEEEE;
  width: 100%;
  text-align: center;
  border-collapse: collapse;
}
.divTable.blueTable .divTableCell, .divTable.blueTable .divTableHead, .divTable.blueTable .divIssueCell {
  border: 0.2px solid #1C6EA4;
  padding: 10px 5px;
}
.divTable.blueTable .divTableBody .divTableCell {
  font-size: 12px;
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
}
.divTable.blueTable .divTableBody .divIssueCell {
  font-size: 12px;
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
}
.divTable.blueTable .divTableHeading {
  background: #46899e;
}
.divTable.blueTable .divTableHeading .divTableHead {
  font-size: 12px;
  font-weight: normal;
  color: #FFFFFF;
  text-align: center;
  border-left: 2px solid #D0E4F5;
  vertical-align: middle;
}
.divTable.blueTable .divTableHeading .divTableHead:first-child {
  border-left: none;
}

.blueTable .tableFootStyle {
  font-size: 14px;
}
.blueTable .tableFootStyle .links {
     text-align: right;
}
.blueTable .tableFootStyle .links a{
  display: inline-block;
  background: #1C6EA4;
  color: #FFFFFF;
  padding: 2px 8px;
  border-radius: 5px;
}
.blueTable.outerTableFooter {
  border-top: none;
}
.blueTable.outerTableFooter .tableFootStyle {
  padding: 3px 5px;
}
/* DivTable.com */
.divTable{ display: table; }
.divTableRow { display: table-row; }
.divTableHeading { display: table-header-group;}
.divTableCell, .divTableHead, .divIssueCell { display: table-cell;}
.divTableHeading { display: table-header-group;}
.divTableFoot { display: table-footer-group;}
.divTableBody { display: table-row-group;}




.select2-default {
  color: #3269f2 !important;
}

.select2-choice{
    background-image: none !important;
}

.modalBox {
  position: fixed; /* create the modal window layer, and have it fill the entire screen */
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0,0,0,0.8); /* set the modal window layer's background color to a translucent black */
  z-index: 1000; /* put the layer on top of every other layer */
  opacity:0; /* make the layer invisible intially */
  pointer-events: none;
}
.modalBox:target {
  opacity:1; /* make the modal window layer visible */
  pointer-events: auto;
}
.modalBox > div {
  position: relative;
  margin: 2% auto; /* center the window horizontally */
  padding: 10px;
  background:#c1c1c1;
  border:1px solid #A6C9E2;
  border-radius:5px;
  overflow-y:scroll;
  overflow-x:hidden;
  height: 80%;
  width: 90%;
}
.photo-review{
    width: 120px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.photo-thumb{
    width: 60px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.template-button{
    height: 40px;
    line-height: 30px;
    background: #15c4ff;
    color: #000000;
    margin: 10px;
    cursor: pointer;
    width: 150px;
    font-size: 15px !important;
}

