/* LESS Variables */
/* LESS Mixins */
.display-flex {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.flex-column {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.flex-row {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
}
.centered {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.vertical-centered {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.box-shadowed {
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.left-shadowed {
  -webkit-box-shadow: -1px 1px 4px rgba(0, 0, 0, 0.1);
  box-shadow: -1px 1px 4px rgba(0, 0, 0, 0.1);
}
.right-shadowed {
  -webkit-box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1);
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1);
}
#results-count,
#select-all,
#quick-refine,
#refine-search,
#export {
  webkit-transition: margin-top 0.4s;
  -moz-transition: margin-top 0.4s;
  -o-transition: margin-top 0.4s;
  transition: margin-top 0.4s;
}
.table-toolbar {
  border-bottom: 1px solid #e2e5e7;
  left: 0;
  margin: 0;
  padding: 0;
  position: fixed;
  width: 100%;
  z-index: 4000;
}
.table-toolbar.scrolling {
  border-bottom: 1px solid #3d3e3f;
}
.table-toolbar.scrolling #results-count,
.table-toolbar.scrolling #select-all,
.table-toolbar.scrolling #quick-refine,
.table-toolbar.scrolling #refine-search,
.table-toolbar.scrolling #export {
  margin-top: -52px;
}
.table-toolbar .toolbar-button:hover {
  background-color: #fafafa;
}
.table-toolbar #select-all {
  background-image: url('../assets/img/icon-table-select.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px;
  padding-left: 0;
}
@media (min-width: 992px) {
  .table-toolbar #select-all {
    background-position: 34% 50%;
    padding-left: 64px;
  }
}
.table-toolbar #select-all h5.selectAll {
  margin-left: 24px;
}
.table-toolbar #quick-refine {
  background-image: url('../assets/img/icon-table-quickrefine.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 12px;
  padding-left: 0;
}
@media (min-width: 992px) {
  .table-toolbar #quick-refine {
    background-position: 28% 50%;
    padding-left: 50px;
  }
}
.table-toolbar #refine-search {
  background-image: url('../assets/img/icon-table-refine.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 18px;
  padding-left: 0;
}
@media (min-width: 992px) {
  .table-toolbar #refine-search {
    background-position: 22% 50%;
    padding-left: 48px;
  }
}
.table-toolbar #refine-search a:hover {
  text-decoration: none;
}
.table-toolbar #export {
  background-image: url('../assets/img/icon-table-export.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 26px;
  padding-left: 0;
}
@media (min-width: 992px) {
  .table-toolbar #export {
    background-position: 32% 50%;
    padding-left: 38px;
  }
}
.table-toolbar #export .table-export {
  background-color: #ebf0f4;
  border: 1px solid #ebf0f4;
  display: none;
  padding: 2px;
  position: absolute;
  z-index: 4000;
  top: 100%;
  right: 50%;
  width: 150px;
}
.table-toolbar #export .table-export .export-option {
  background-color: #ebf0f4;
  color: #000000;
  display: block;
  padding: 12px;
  position: relative;
}
.table-toolbar #export .table-export .export-option:hover {
  background-color: #009be4;
  color: #ffffff;
  text-decoration: none;
}
.table-toolbar #export .table-export:after {
  bottom: 100%;
  right: -1px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(235, 240, 244, 0);
  border-bottom-color: #ebf0f4;
  border-width: 16px;
  margin-left: -16px;
}
.table-toolbar #customize-view {
  background-image: url('../assets/img/icon-table-customize.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 22px;
  padding-left: 0;
}
@media (min-width: 992px) {
  .table-toolbar #customize-view {
    background-position: 20% 50%;
    padding-left: 54px;
  }
}
.table-toolbar div {
  border-left: 1px solid #e2e5e7;
  height: 52px;
  padding: 16px;
  /*&:last-of-type {
			display: none;
			@media (min-width: 992px) {
				.display-flex;
			}
		}*/
}
.table-toolbar div a {
  display: block;
  white-space: nowrap;
}
.table-toolbar div h5 {
  color: #292c37;
  display: none;
  font-size: 16px;
  margin: 6px;
  overflow-x: ellipsis;
  white-space: nowrap;
}
@media (min-width: 992px) {
  .table-toolbar div h5 {
    display: inline-block;
  }
}
.table-toolbar div:nth-of-type(1) {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #f4f7fa;
  width: 100%;
}
.table-toolbar div:nth-of-type(1) h5 {
  display: block;
}
@media (min-width: 992px) {
  .table-toolbar div:nth-of-type(1) {
    width: 16.66%;
  }
}
@media (max-width: 992px) {
  .table-toolbar div:nth-of-type(1) {
    background-color: #ffffff;
    border-bottom: 1px solid #e2e5e7;
  }
}
.table-toolbar div:not(:nth-of-type(1)) {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #ffffff;
  cursor: pointer;
  width: 25%;
}
@media (min-width: 992px) {
  .table-toolbar div:not(:nth-of-type(1)) {
    width: 20.835%;
  }
}
.table-toolbar .col-xs-2 {
  width: 25%;
}
@media (min-width: 992px) {
  .table-toolbar .col-xs-2 {
    width: 20%;
  }
}
.table-toolbar div.active-toolbar {
  background-color: #009be4;
}
.table-toolbar div.active-toolbar h5 {
  color: #ffffff;
}
.toolbar-button.active-toolbar:hover {
  background-color: #009be4;
}
.toolbar-button.active-toolbar#quick-refine {
  position: relative;
  background-color: #009be4;
  background-image: url('../assets/img/icon-table-quickrefine-white.png');
}
.active-toolbar:after,
.active-toolbar:before {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.active-toolbar:after {
  border-color: rgba(0, 155, 228, 0);
  border-top-color: #009be4;
  border-width: 13px;
  margin-left: -13px;
}
.active-toolbar:before {
  border-color: rgba(226, 229, 231, 0);
  border-top-color: #e2e5e7;
  border-width: 14px;
  margin-left: -14px;
}
.table-quick-refine {
  background-color: #f4f7fa;
  margin-top: 150px;
  padding: 16px;
  position: fixed;
  width: 100%;
  z-index: -1000;
}
.table-quick-refine .table-toolbar-close {
  cursor: pointer;
  position: absolute;
  right: 15px;
  top: 15px;
  width: 25px;
  height: 25px;
  background-image: url(../assets/img/icon-close-toolbar.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media (min-width: 992px) {
  .table-quick-refine {
    margin-top: 116px;
  }
  .table-quick-refine fieldset {
    float: left;
    width: auto;
  }
  .table-quick-refine fieldset:nth-of-type(1) {
    margin-right: 48px;
  }
}
.table-quick-refine legend {
  font-size: 16px;
  margin-bottom: 12px;
  z-index: 1000;
}
.table-quick-refine select {
  display: block;
}
@media (min-width: 992px) {
  .table-quick-refine select {
    display: inline-block;
  }
}
.table-quick-refine select:nth-of-type(2) {
  margin-bottom: 12px;
}
.active-refine {
  z-index: 3000;
}
.header-shift {
  margin-top: 364px;
}
@media (min-width: 992px) {
  .header-shift {
    margin-top: 176px;
  }
}
.table.table-shift {
  margin-top: 416px;
}
@media (min-width: 992px) {
  .table.table-shift {
    margin-top: 240px;
  }
}
.table {
  margin-top: 156px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  z-index: 3000;
}
@media (min-width: 767px) and (max-width: 992px) {
  .table {
    margin-top: 169px;
  }
}
.table.scrolling {
  margin-top: 65px;
}
@media (max-width: 767px) {
  .table.scrolling {
    margin-top: 52px;
  }
}
@media (min-width: 992px) {
  .table {
    margin-top: 116px;
  }
}
.table input {
  display: none;
}
.table .table-header {
  overflow: scroll;
  table-layout: fixed;
}
.table .table-header tr {
  border-bottom: 1px solid #3d3e3f;
  position: fixed;
  z-index: 3000;
}
.table .table-header tr th {
  background-color: #8c95a4;
  color: #ffffff;
  padding: 20px 12px;
  word-wrap: break-word;
}
@media (max-width: 992px) {
  .table .table-header tr th:nth-of-type(2) {
    display: none;
  }
}
.table .table-header tr th:hover {
  background-color: #7e8899;
}
.table .table-header tr .column-detail-page {
  background-image: url('../assets/img/icon-detail-white.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 18px;
}
.table .table-body {
  margin-top: 62px;
  overflow: scroll;
  table-layout: fixed;
}
.table .table-body tr {
  border-bottom: 1px solid #babcbe;
}
@media (max-width: 992px) {
  .table .table-body tr td:not(:nth-of-type(2)) {
    padding-top: 68px;
  }
}
.table .table-body tr td {
  word-wrap: break-word;
}
@media (max-width: 992px) {
  .table .table-body tr .column-building {
    border-bottom: 1px solid #dcddde;
    font-size: 18px;
    left: 0;
    padding: 12px;
    position: absolute;
    width: 100%;
  }
}
.table .table-body tr:nth-of-type(1) td div {
  padding-top: 64px;
}
.table .table-body tr:nth-of-type(1) .column-detail-page {
  background-position: 50% 88%;
}
@media (min-width: 992px) {
  .table .table-body tr:nth-of-type(1) .column-detail-page {
    background-position: 50% 82%;
  }
}
.table .table-body tr:nth-of-type(1) .has-circle {
  background-position: 50% 88%;
}
@media (min-width: 992px) {
  .table .table-body tr:nth-of-type(1) .has-circle {
    background-position: 50% 83%;
  }
}
.table .table-body tr:nth-of-type(1n) {
  background-color: #e5ecf3;
}
.table .table-body tr:nth-of-type(1n):hover {
  background-color: #d4dfeb;
}
.table .table-body tr:nth-of-type(1n):hover td {
  border-color: #c2d3e3;
}
@media (max-width: 992px) {
  .table .table-body tr:nth-of-type(1n) .column-building {
    background-color: #e5ecf3;
  }
}
.table .table-body tr:nth-of-type(2n) {
  background-color: #ffffff;
}
.table .table-body tr:nth-of-type(2n):hover {
  background-color: #f2f2f2;
}
.table .table-body tr:nth-of-type(2n):hover td {
  border-color: #e6e6e6;
}
@media (max-width: 992px) {
  .table .table-body tr:nth-of-type(2n) .column-building {
    background-color: white;
  }
}
.table .table-body .active-row:nth-of-type(1n),
.table .table-body .active-row:nth-of-type(1n):hover {
  background-color: #fddbb3;
}
.table .table-body .active-row:nth-of-type(1n) td,
.table .table-body .active-row:nth-of-type(1n):hover td {
  background-color: #fddbb3;
  border-color: #ffcc91;
}
.table .table-body .active-row:nth-of-type(2n),
.table .table-body .active-row:nth-of-type(2n):hover {
  background-color: #ffcc91;
}
.table .table-body .active-row:nth-of-type(2n) td,
.table .table-body .active-row:nth-of-type(2n):hover td {
  background-color: #ffcc91;
  border-color: #ffb555;
}
.table .table-body .column-detail-page {
  background-image: url('../assets/img/icon-detail-gray.png');
  background-position: 50% 78%;
  background-repeat: no-repeat;
  background-size: 18px;
}
@media (min-width: 992px) {
  .table .table-body .column-detail-page {
    background-position: center;
  }
}
.table .table-body .has-circle {
  background-image: url('../assets/img/icon-filled-circle-gray.png');
  background-position: 50% 78%;
  background-repeat: no-repeat;
  background-size: 18px;
}
@media (min-width: 992px) {
  .table .table-body .has-circle {
    background-position: center;
  }
}
.table .table-header th,
.table .table-body th,
.table .table-header td,
.table .table-body td {
  cursor: pointer;
  overflow-x: hidden;
  white-space: nowrap;
}
.table .table-header td,
.table .table-body td {
  padding: 16px 12px;
}
.table .table-header tr th.column-detail-page div,
.table .table-body tr th.column-detail-page div,
.table .table-header tr td.column-detail-page div,
.table .table-body tr td.column-detail-page div {
  width: 30px;
}
.table .table-header tr th.column-building div,
.table .table-body tr th.column-building div,
.table .table-header tr td.column-building div,
.table .table-body tr td.column-building div,
.table .table-header tr th.column-building-header div,
.table .table-body tr th.column-building-header div,
.table .table-header tr td.column-building-header div,
.table .table-body tr td.column-building-header div {
  width: 200px;
}
.table .table-header tr th.column-suite div,
.table .table-body tr th.column-suite div,
.table .table-header tr td.column-suite div,
.table .table-body tr td.column-suite div {
  width: 50px;
}
.table .table-header tr th.column-rsf div,
.table .table-body tr th.column-rsf div,
.table .table-header tr td.column-rsf div,
.table .table-body tr td.column-rsf div {
  width: 75px;
}
.table .table-header tr th.column-ask div,
.table .table-body tr th.column-ask div,
.table .table-header tr td.column-ask div,
.table .table-body tr td.column-ask div {
  width: 100px;
}
.table .table-header tr th.column-glr div,
.table .table-body tr th.column-glr div,
.table .table-header tr td.column-glr div,
.table .table-body tr td.column-glr div {
  width: 50px;
}
.table .table-header tr th.column-ti div,
.table .table-body tr th.column-ti div,
.table .table-header tr td.column-ti div,
.table .table-body tr td.column-ti div {
  width: 125px;
}
.table .table-header tr th.column-la div,
.table .table-body tr th.column-la div,
.table .table-header tr td.column-la div,
.table .table-body tr td.column-la div {
  width: 30px;
}
.table .table-header tr th.column-marketed div,
.table .table-body tr th.column-marketed div,
.table .table-header tr td.column-marketed div,
.table .table-body tr td.column-marketed div {
  width: 200px;
}
.table .table-header tr th.column-customer div,
.table .table-body tr th.column-customer div,
.table .table-header tr td.column-customer div,
.table .table-body tr td.column-customer div {
  width: 200px;
}
.table .table-header tr th:nth-of-type(n+9) div,
.table .table-body tr th:nth-of-type(n+9) div,
.table .table-header tr td:nth-of-type(n+9) div,
.table .table-body tr td:nth-of-type(n+9) div {
  width: 200px;
}
.table .table-header tr th:nth-of-type(n+2),
.table .table-body tr th:nth-of-type(n+2) {
  border-left: 1px solid #6f7989;
}
.table .table-header tr td:nth-of-type(n+2),
.table .table-body tr td:nth-of-type(n+2) {
  border-left: 1px solid #dcddde;
}
.table .table-building-mobile {
  border-bottom: 1px solid #babcbe;
  cursor: pointer;
  overflow-x: hidden;
  position: absolute;
  text-align: left;
  white-space: nowrap;
  width: 100%;
}
.table .table-building-mobile h3 {
  margin: 0;
  padding: 9px;
}
.table .table-building-mobile:nth-of-type(1n) {
  background-color: #e5ecf3;
}
.table .table-building-mobile:nth-of-type(1n):hover {
  background-color: #c2d3e3;
}
.table .table-building-mobile:nth-of-type(2n) {
  background-color: #ffffff;
}
.table .table-building-mobile:nth-of-type(2n):hover {
  background-color: #e6e6e6;
}
.table .table-building-mobile:nth-of-type(1) {
  margin-top: 60px;
}
@media (min-width: 992px) {
  .table .table-building-mobile {
    display: none;
  }
}
#export.open .circle {
  background-position: 100% 0;
}
#export .circle {
  position: absolute;
  right: 6%;
  top: 18px;
  width: 18px;
  height: 18px;
  border: none;
  padding: 0;
  background-image: url(../assets/img/icon-table-printselect-toggle.png);
  background-color: transparent;
  background-size: 200% auto;
  background-repeat: no-repeat;
}
#export .circle .table-export {
  display: none;
  width: 125px;
  height: auto;
  padding: 0;
  border: 1px solid #bcbfc1;
  border-bottom: none;
  background-color: #ebf0f4;
  position: absolute;
  right: -2px;
  top: 34px;
  width: 130px;
}
#export .circle .table-export:after {
  right: -1px;
  content: " ";
  height: 12px;
  width: 22px;
  position: absolute;
  pointer-events: none;
  background-image: url(../assets/img/menu-arrow-top.png);
  background-position: bottom center;
  background-color: transparent;
  border: none;
  background-size: 100%;
  background-repeat: no-repeat;
  top: -12px;
}
#export .circle .table-export .export-option {
  color: #000000;
  display: block;
  padding: 9px 12px;
  border-bottom: 1px solid #bcbfc1;
}
#export .circle .table-export .export-option:hover {
  background-color: #009be4;
  color: #ffffff;
  text-decoration: none;
}
