@charset "utf-8";

/* CSS Document */

/******************
* General
******************/
.trail {
  float: left;
  font-size: 85%;
  margin-bottom: 10px;
}

.breadcrumb {
  float: left;
  margin-right: 5px;
}

.results {
  margin-top: 20px;
}

.label {
  font-weight: bold;
  vertical-align: middle;
}

.no_select {
  user-select: none;
}

.height100 {
  height: 100px;
}

.hidden {
  display: none;
}

.alignLeft {
  text-align: left;
}

.alignRight {
  text-align: right;
}

.alignCenter {
  text-align: center;
}

.fleft {
  float: left;
}

.fright {
  float: right;
}

.vtop {
  vertical-align: top;
}

.vbottom {
  vertical-align: bottom;
}

.inline {
  display: inline;
}

.helpertxt {
  font-size: smaller;
  font-style: italic;
}

.redtxt {
  color: #900;
}

.yellowtxt {
  color: #DD0;
}

.greentxt {
  color: #090;
}

.bold {
  font-weight: bold;
}

.italic {
  font-style: italic;
}

.minW100 {
  min-width: 100px;
}

.minW200 {
  min-width: 200px;
}

.minW300 {
  min-width: 300px;
}

.minW400 {
  min-width: 400px;
}

.minW500 {
  min-width: 500px;
}

.minH100 {
  min-height: 100px;
}

.minH200 {
  min-height: 200px;
}

.minH300 {
  min-height: 300px;
}

.minH400 {
  min-height: 400px;
}

.minH500 {
  min-height: 500px;
}

.maxW100 {
  max-width: 100px;
}

.maxW200 {
  max-width: 200px;
}

.maxW300 {
  max-width: 300px;
}

.maxW400 {
  max-width: 400px;
}

.maxW500 {
  max-width: 500px;
}

.maxH100 {
  max-height: 100px;
}

.maxH200 {
  max-height: 200px;
}

.maxH300 {
  max-height: 300px;
}

.maxH400 {
  max-height: 400px;
}

.maxH500 {
  max-height: 500px;
}

.container-flex_rows {
  display: flex;
  flex-flow: row wrap;
}

.container-flex_columns {
  display: flex;
  flex-flow: column wrap;
}

.float_table_total {
  float: right;
  margin-top: -26px;
}

.dashboard_options {
  float: right;
}

.twoCol {
  float: left;
  width: calc(50% - 20px);
  padding-right: 20px;
}

.padding10 {
  padding: 10px;
}

.padding15 {
  padding: 15px;
}

.padding20 {
  padding: 20px;
}

/******************
* Image Containers
******************/
.photo_container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border: solid 2px #CCC;
}

.photo_menu {
  position: absolute;
  top: 0px;
  right: 0px;
  background: #CCC;
  padding: 5px 10px 5px 10px;
  border-bottom-left-radius: 10px;
  z-index: 10;
}

.photo_container .photo {
  flex-shrink: 0;
  margin: auto;
}

/******************
* Progress Bar
******************/
.progress_bar-container {
  border: 1px solid #CCC;
  position: relative;
}

.progress_bar-fill {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#38c910+0,299a0b+100 */
  background: #38c910; /* Old browsers */
  background: -moz-linear-gradient(top, #38c910 0%, #299a0b 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #38c910 0%, #299a0b 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #38c910 0%, #299a0b 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#38c910', endColorstr='#299a0b',GradientType=0 ); /* IE6-9 */
}

.progress_bar-percent {
  position: absolute;
  left: 5px;
  top: 2px;
}

/******************
* System Notes / Log
******************/
.system_note_header {
  margin-bottom: 0px;  
}

.system_note_container {
  max-height: 300px;
  overflow: auto;
}

.system_note_table {
  width: 100%;
}

.system_note_table .system_note_row {
  clear: both;
  width: calc(100% - 10px);
  padding: 5px;
  margin-bottom: 2px;
}

.system_note_table .system_note_row.even {
  background-color: #EEE;
}

.system_note_table .date_row {
  text-align: center;
  border-bottom: solid 1px #000;
  margin-top: 5px;
  margin-bottom: 5px;
}

.system_note_table .system_note_user_img {
  float: left;
  width: 36px;
  margin-right: 10px;
}

.system_note_table .system_note_detail {
  width: 100%;
}

.system_note_table .log_timestamp,
.system_note_table .log_user_name {
  float: left;
  font-size: smaller;
  font-style: italic;
  font-weight: bold;
  margin-right: 10px;
}

.system_note_table .log_note_description {
  font-size: smaller;
  display: inline;
}

/******************
* Photos
******************/
.photo75 {
  margin-right: 10px;
  margin-bottom: 10px;
  width: 71px;  /* adjusted for 4px border */
  height: 71px; /* adjusted for 4px border */
}

.photo75 img {
  max-width: 75px;
  max-height: 75px;
}

.photo100 {
  margin-right: 10px;
  margin-bottom: 10px;
  width: 96px;  /* adjusted for 4px border */
  height: 96px; /* adjusted for 4px border */
}

.photo100 img {
  max-width: 100px;
  max-height: 100px;
}

.photo150 {
  margin-right: 20px;
  margin-bottom: 20px;
  width: 146px;  /* adjusted for 4px border */
  height: 146px; /* adjusted for 4px border */
}

.photo150 img {
  max-width: 150px;
  max-height: 150px;
}

.photo300 {
  margin-right: 20px;
  margin-bottom: 20px;
  width: 296px;  /* adjusted for 4px border */
  height: 296px; /* adjusted for 4px border */
}

.photo300 img {
  max-width: 300px;
  max-height: 300px;
}

/******************
* Form Elements
******************/

.table_select_options {
  margin-left: 8px;
}

.bulk_options {
  font-size: smaller;
  padding: 8px;
  background-color: #eee;
  border: solid 1px #bbb;
  display: inline-block;
}

.preEditBtn {
  margin-right: 5px;
}

img.ui-datepicker-trigger {
  float: left;
}

img.ui-datepicker-trigger:hover {
  cursor: pointer;
}

.input_lbl {
  font-weight: bold;
  margin-bottom: 5px;
}

.input_lbl,
.input_add_opt,
.form_input {
  float: left;
}

.input_add_opt {
  font-size: smaller;
  margin-left: 30px;
  margin-top: 5px;
}

.dd_country {
  width: 180px;
}

.dd_country_code {
  width: 70px;
}

.hasDatepicker {
  width: 160px;
  float: left;
}

.resetDatepicker {
  float: left;
  width: 26px;
  margin-top: 2px;
  margin-left: 5px;
}

/******************
* List Select
******************/
.listSelect {
  width: 100%;
  height: 200px;
  overflow: auto;
  list-style-type: none;
  margin: 0px;
  padding: 0px;
  border: solid 1px #CCC;
  background-color: #FFFFF8;
}

.listSelect li {
  padding: 5px;
  user-select: none;
}

.listSelect li:hover,
.listSelect li.selected:hover {
  background-color: #FFC;
}

.listSelect li.selected {
  background-color: #EEC;
}


/******************
* Icons
******************/

.icon {
  width: 16px;
  height: 16px;
  padding: 2px;
}

.icon-with-txt {
  width: 16px;
  height: 16px;
  vertical-align: text-top;
}

.icon-large {
  width: 32px;
  height: 32px;
}

.icon-no_padding {
  width: 16px;
  height: 16px;
}

.icon-edit {
  width: 12px;
  height: 12px;
  padding: 2px;
  border: 1px solid #333;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#fcfff4+0,ecf2e3+40,dbe5d3+100 */
  background: #fcfff4; /* Old browsers */
  background: -moz-linear-gradient(top,  #fcfff4 0%, #ecf2e3 40%, #dbe5d3 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top,  #fcfff4 0%,#ecf2e3 40%,#dbe5d3 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom,  #fcfff4 0%,#ecf2e3 40%,#dbe5d3 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcfff4', endColorstr='#dbe5d3',GradientType=0 ); /* IE6-9 */
}

.icon-edit:hover {
  background: #ecf2e3; /* Old browsers */
}

.icon-delete {
  width: 12px;
  height: 12px;
  padding: 2px 0px;
}


/******************
* Messages
******************/
.error_message_container {
  background-color: #ffd4d4;
  border: solid 2px #D00;
  padding: 10px;
  margin: 10px 10px 10px 0px;
}
.error_title {
  color: #D00;
  font-weight: bold;
}

.message_container {
  background-color: #fff6d4;
  border: solid 2px #b7ab8d;
  padding: 10px;
  margin: 10px 10px 10px 0px;
}

/******************
* Management Buttons w/ Reports
******************/
.admin_btn_container {
  float: right;
  margin-top: -36px;
}


/******************
* Buttons
******************/
.green-btn,
.red-btn,
.blue-btn {
  padding: 8px;
  font-weight: bold;
  color: #FFF;
  border: 1px solid;
  border-color: #9AC63C #9AC63C #000000;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:dximagetransform.microsoft.gradient(enabled=false);
  border-radius: 5px;
  box-shadow: inset 0 1px 3px #DDD;
}

.green-btn {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#38c910+0,299a0b+100 */
  background: #38c910; /* Old browsers */
  background: -moz-linear-gradient(top, #38c910 0%, #299a0b 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #38c910 0%, #299a0b 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #38c910 0%, #299a0b 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#38c910', endColorstr='#299a0b',GradientType=0 ); /* IE6-9 */
}
.green-btn:hover {
  cursor: pointer;
  background: #38c910; /* Old browsers */
}

.red-btn {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#d31010+0,9e0c0c+100 */
  background: #d31010; /* Old browsers */
  background: -moz-linear-gradient(top,  #d31010 0%, #9e0c0c 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top,  #d31010 0%,#9e0c0c 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom,  #d31010 0%,#9e0c0c 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d31010', endColorstr='#9e0c0c',GradientType=0 ); /* IE6-9 */
}
.red-btn:hover {
  cursor: pointer;
  background: #d31010; /* Old browsers */
}

.blue-btn {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#63b6db+0,309dcf+100;Blue+3D+%234 */
  background: rgb(99,182,219); /* Old browsers */
  background: -moz-linear-gradient(top,  rgba(99,182,219,1) 0%, rgba(48,157,207,1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top,  rgba(99,182,219,1) 0%,rgba(48,157,207,1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom,  rgba(99,182,219,1) 0%,rgba(48,157,207,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#63b6db', endColorstr='#309dcf',GradientType=0 ); /* IE6-9 */
}
.blue-btn:hover {
  cursor: pointer;
  background: rgb(99,182,219); /* Old browsers */
}

a.green-btn,
a.green-btn:hover,
a.green-btn:visited,
a.red-btn,
a.red-btn:hover,
a.red-btn:visited,
a.blue-btn,
a.blue-btn:hover,
a.blue-btn:visited {
  font: 600 13.3333px Arial;
  color: #FFF;
  text-decoration: none;
}

/******************
* Addresses
******************/
.address_block {
  float: left;
  min-width: 200px;
  margin-right: 10px;
  margin-bottom: 10px;
  border: solid 1px #CCC;
  padding: 3px 5px;
}

.address_block .address-header {
  font-weight: bold;
}

.address_block .address-body,
.address_block .address-functions {
  font-size: smaller;
}

.address_block .address-functions {
  margin-top: 10px;
}

/******************
* Record Tabs
******************/

.tab-list .tab {
  float: left;
}

.tab-list .tab {
  margin-top: 4px;
  line-height: 36px;
  font-weight: normal;
  color: #999;
  background: #f8f8f8;
  border: solid #ddd;
  border-width: 1px 1px 0;
  border-radius: 5px 5px 0 0;
}

.tab-list .tab a {
  padding: 0px 7px 5px 7px;
  margin: 0;
  border-top: 0;
}

.tab-list .tab.active {
  font-weight: bold;
  background: white;
  margin-top: 1px;
  border-top: 4px solid #900;
}

.tab-list .tab.active a {
  color: #900;
}

.tab_options {
  float: right;
}

.record_tab_container {
  padding: 5px 10px 10px 10px;
  box-shadow: 0 1px 3px 0 rgba(0,0,0,.5);
}

.record_tab_content {
  background: #FFF;
  padding: 10px;
}

/******************
* Search
******************/
.search-page_number_container {
  float: right;
}

.search-page_number {
  margin-left: 10px;
  float: left;
}

.search-page_number.active {
  font-weight: bold;
}

/******************
* Admin Page
******************/
.admin_block {
  float: left;
  width: 300px;
  height: 75px;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 10px;
  text-align: left;
  text-decoration: none;
  border-radius: 5px;
  border: solid 2px;
  box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.15);
}

.admin_block_module {
  float: left;
  width: 300px;
  height: 100px;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 10px;
  text-align: left;
  text-decoration: none;
  border-radius: 5px;
  border: solid 2px;
  box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.15);
  cursor: pointer;
}
.admin_block_module.selected {
  background-color: #FFE;
}

.admin_setting_icon {
  float: right;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  width: 50px;
  height: 50px;
  font-size: xx-large;
  font-weight: bold;
  color: #000;
}

.admin_block_title {
  font-weight: bold;
  margin-bottom: 5px;
}

.admin_block_desc,
.admin_block_pricing {
  color: #000;
  font-size: smaller;
}

.admin_block_pricing {
  margin-top: 5px;
}

/* Search Settings */
.search_settings_table-container {
  float: left;
  margin-right: 15px;
}

.search_settings_table-table {
  font-weight: bold;
  font-size: 14px;
}

.search_settings_table-fields {
  font-size: 12px;
}
