﻿/*--------------------------------------------------------
 * NOTE: We use LESS syntax in this project for our CSS.
 * "LESS extends CSS with: variables, mixins, operations,
 * and nested rules."
 * -http://lesscss.org/
 *--------------------------------------------------------*/
/* MIXINS   
----------------------------------------------------------*/
/*--------------------------------------------------------
 * NOTE: We use LESS syntax in this project for our CSS.
 * "LESS extends CSS with: variables, mixins, operations,
 * and nested rules."
 * -http://lesscss.org/
 *--------------------------------------------------------*/
/* COLORS   
----------------------------------------------------------*/
/* WIDTHS   
----------------------------------------------------------*/
.table tr.default-clickable-row {
  cursor: pointer;
}
.table tr.default-clickable-row:hover .btn.default-click-action {
  color: #ffffff;
  background-color: #0044cc;
  *background-color: #003bb3;
  background-position: 0 -15px;
  -webkit-transition: background-position 0.1s linear;
  -moz-transition: background-position 0.1s linear;
  -o-transition: background-position 0.1s linear;
  transition: background-position 0.1s linear;
}
.table tr.no-border th {
  border-top: 0px;
}
.pretty-table thead tr th {
  font-size: 18px;
  border-bottom: none;
}
.pretty-table thead tr.divider td {
  padding-top: 0px;
  padding-bottom: 0px;
  border-top: 0px;
}
.pretty-table thead tr.divider td hr {
  height: 0px;
  border-top: 3px dotted #b2b1b1;
  margin-top: 0px;
  margin-bottom: 0px;
}
.pretty-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.8);
}
.pretty-table tbody tr td {
  border-top: none;
}
.pretty-table tbody tr td > div {
  margin-bottom: 5px;
}
.pretty-table tbody tr td > div label {
  color: #717171;
  line-height: normal;
  margin-bottom: 0px;
}
.pretty-table tbody tr td hr.line-divider {
  margin-top: 0px;
  margin-bottom: 10px;
}
.pretty-table tbody tr.divider td {
  padding-top: 0px;
  padding-bottom: 0px;
}
.pretty-table tbody tr.divider td hr {
  height: 0px;
  border-top: 3px dotted #ddd;
  margin-top: 0px;
  margin-bottom: 0px;
}
.pretty-table tbody tr.divider:hover {
  opacity: 1;
}
.pretty-table tbody td.no-top-padding {
  padding-top: 0px;
}
.pretty-table tbody tr.no-top-bottom-padding td {
  padding-top: 0px;
  padding-bottom: 0px;
}
.pretty-table tbody td.no-left-padding {
  padding-left: 0px;
}
.pretty-table tbody td.no-right-padding {
  padding-right: 0px;
}
.pretty-table tfoot tr {
  font-size: 18px;
  font-weight: bold;
  color: #ddd;
}
.pretty-table tfoot tr td {
  border-top: none;
}
.box .pretty-table tr.divider td {
  padding-left: 0px !important;
  padding-right: 0px !important;
}
form .pretty-table tr.divider td {
  padding-left: 0px !important;
  padding-right: 0px !important;
}
.report-table tr.header-row th,
.report-table tr.header-row td {
  font-weight: bold;
  font-size: 18px;
}
.report-table tr.subheader-blue-row th,
.report-table tr.subheader-blue-row td {
  background-color: #e6eefb !important;
  font-weight: bold;
  font-size: 16px;
}
.report-table tr.subheader-row th,
.report-table tr.subheader-row td {
  font-weight: bold;
}
#search-options-displayed {
  font-size: 11px;
}
#search-options-displayed div.margin-top {
  margin-top: 0px;
}
#search-options-displayed label {
  margin-bottom: 0px;
}
#search-options-displayed div.margin-bottom {
  margin-bottom: 0px;
}
.thumbnail-container {
  width: 140px;
  height: 115px;
  overflow: hidden;
  position: relative;
  border-radius: 5px;
}
.thumbnail-container a {
  vertical-align: middle;
  display: block;
}
.thumbnail-container img {
  object-fit: none;
  /* Do not scale the image */
  object-position: center;
  /* Center the image within the element */
  height: 100%;
  width: 100%;
}
.thumbnail-container img.no-photo {
  width: 140px;
  height: 115px;
  object-fit: contain;
  background-color: #ddd;
}
.thumbnail-container .gradient {
  background: url('/Images/Lists/photo-gradient.png') repeat-x;
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 60px;
  pointer-events: none;
}
.thumbnail-container .gradient span {
  color: #fff;
  text-shadow: 2px 2px 4px #000;
  line-height: 18px;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  padding: 5px;
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
}
.thumbnail-container .badge {
  position: absolute;
  top: 5px;
  right: 5px;
}
.col-check {
  width: 30px;
}
.col-thumbnail {
  width: 140px;
}
.col-25 {
  width: 25%;
}
.col-33 {
  width: 33%;
}
.col-actions {
  width: 130px;
}
.col-actions-sm {
  width: 100px;
}
.col-actions-lg {
  width: 165px;
}