<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#list_menu {
  z-index: 111;
}

main #list_menu {
  background-color: var(--main-bg-color);
}

.tabs {
  display: none;
}

main .tabs {
  top: 0;
  display: block;
  position: static;
}

.search-results-container {
  top: 36px;
}

main .tabs-sub-menu {
  top: 34px;
}

.tabs-main-menu&gt;li:last-child {
  margin-left: unset;
}

.asset-profile-table {
  width: 100%;
  z-index: 11;
  display: flex;
  row-gap: 22px;
  padding: 26px 24px;
  flex-direction: column;
  background-color: var(--asset-profile-main);
  border-top: 1px solid var(--table-border-color);
}

.asset-profile-table:first-child {
  padding-top: 0;
  border-top: none;
}

.asset-profile-table .centered-head th {
  text-align: center;
}

.asset-profile-table tr td {
  transition: background-color 0.2s ease-in-out;
}

.asset-profile-table tr:hover td {
  background-color: var(--dropdown-item-hover) !important;
}

.asset-profile-table-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.asset-profile-table-header a {
  color: var(--text-color);
  font-size: 14px;
  font-weight: 500;
  font-style: normal;
  line-height: normal;
  text-decoration: none;
  font-family: Poppins, sans-serif;
  display: flex;
  column-gap: 6px;
}

.asset-profile-table-header img {
  width: 20px;
  height: 20px;
}


h3.asset-profile-table-title {
  margin-bottom: 22px;
}

h2.asset-profile-table-title,
h3.asset-profile-table-title,
h4.asset-profile-table-title {
  color: var(--text-color);
  font-size: 22px;
  font-weight: 700;
  font-style: normal;
  line-height: normal;
  font-family: Poppins, sans-serif;
}

h3.asset-profile-table-title {
  font-size: 18px;
  font-weight: 600;
}

h4.asset-profile-table-title {
  font-size: 16px;
  font-weight: 500;
}


.table-container {
  position: relative;
  overflow: auto;
  /*max-height: 400px;*/
  border-radius: 8px;
  box-shadow: 0px 0px 0px 1px var(--table-border-color);
  width: 100%;
  overscroll-behavior: contain;
}

.table-container-short {
  max-height: 400px;
}

.table-container table th,
.table-container table td {
  border-bottom: 1px solid var(--table-border-color);
}

.table-container table td:not(:last-child), 
.table-container table th:not(:last-child) {
  border-left: none;
  border-right: 1px solid var(--table-border-color);
}

.table-container table td:last-child, 
.table-container table th:last-child {
  border-right: none;
}

.table-container table tr:last-child td {
  border-bottom: none;
}

.table-container table th {
  border-top: none;
}


.table-container table tr td:first-child,
.table-container table tr th:first-child {
  position: sticky;
  left: 0;
}

.table-container table tr td:first-child {
  z-index: 6;
}

.table-container table tr th:first-child {
  z-index: 8;
}
.table-container table tr th:not(:first-child) {
  z-index: 7;
}

.table-container table th {
  position: sticky;
  top: 0;
  width: 120px;
  text-align: left;
  z-index: 6;
}

.table-container table .centered {
  text-align: center;
}

.table-container th:first-child {
  z-index: 10;
}

.table-container table {
  width: 100%;
  border-spacing: 0;
  border-collapse: separate;
}

.fixed-layout-table table {
  table-layout: fixed;
}

.table-container th:before {
  content: "";
  background: linear-gradient(180deg, rgba(28, 31, 47, 0.08) 0%, rgba(34, 38, 57, 0) 100%);
  position: absolute;
  z-index: 4;
  left: 0;
  right: 0;
  top: 100%;
  height: 23px;
  pointer-events: none;
  opacity: 0;
  transition: all 300ms ease-in-out;
}

.table-container.scrolled-y th:before {
  opacity: 0;
  transition: all 300ms ease-in-out;
}

.table-container tbody td:first-child:after{
  content: "";
  background: linear-gradient(90deg, rgba(28, 31, 47, 0.06) 0%, rgba(34, 38, 57, 0) 100%);
  position: absolute;
  top: -1px;
  bottom: 0;
  left: 100%;
  width: 0px;
  pointer-events: none;
  transition: all 300ms ease-in-out;
  z-index: 2;
}

.asset-profile-table .table-container thead th:first-child:after{
  content: "";
  background: linear-gradient(90deg, rgba(28, 31, 47, 0.06) 0%, rgba(34, 38, 57, 0) 100%);
  position: absolute;
  top: -1px;
  bottom: 0;
  left: 100%;
  width: 0px;
  pointer-events: none;
  transition: all 300ms ease-in-out;
  z-index: 2;
}

.table-container.scrolled-x tbody td:first-child:after,
.table-container.scrolled-x thead th:first-child:after {
  width: 24px;
  transition: all 300ms ease-in-out;
}

.table-container th,
.table-container td {
  padding: 10px 12px;
  text-align: center;
  color: var(--text-color);
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
  background-color: var(--table-head-color);
  font-family: Poppins, sans-serif;
}

.table-container th &gt; a,
.table-container td &gt; a {
  color: var(--text-color)!important;
}

.table-container tr:nth-of-type(2n) td {
  background-color: var(--table-sec-background)
}

.table-container th {
  padding: 10px 16px;
}

.table-container th {
  font-weight: 600;
}

.table-container td {
  text-align: right;
  background-color: var(--color-white);
}

.table-container .align-left {
  text-align: left;
}

.table-container .align-center {
  text-align: center;
}

.asset-profile-table-description {
  row-gap: 6px;
  display: flex;
  flex-direction: column;
  color: var(--text-color);
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
  font-family: Poppins, sans-serif;
  opacity: 0.64;
}

.asset-profile-table-text {
  color: var(--text-color);
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  font-style: normal;
  font-family: Arial, sans-serif;
  margin-bottom: 22px;
}

.asset-profile-table-text:last-child {
  margin-bottom: 0;
}

.asset-profile-table-locked-content {
  display: flex;
  column-gap: 8px;
  align-items: center;
}

.asset-profile-table-locked-content img {
  width: 24px;
  height: 24px;
}

.asset-profile-table-locked-content p {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  line-height: normal;
  font-family: Poppins, sans-serif;
}

.asset-profile-table-list {
  list-style: inside;
  color: var(--text-color);
  font-size: 16px;
  font-weight: 600;
  line-height: 35px;
  font-style: normal;
  font-family: Poppins, sans-serif;
}

.profile-link {
  display: flex;
  margin: 0 auto;
  max-width: 24px;
  overflow: hidden;
}

.profile-link img {
  height: 24px;
  margin: 0 -10px;
}

.asset-profile-table #map_large {
  height: 600px;
  width: auto;
}

.gm-style iframe + div { border:none!important; }

.asset-profile-table #map_large,
.asset-profile-table #map_large &gt; div, 
.asset-profile-table #map_large &gt; div &gt; div,
.asset-profile-table #map_large &gt; div &gt; .gm-style,
.asset-profile-table #map_large  &gt; .gm-style &gt; div, 
.asset-profile-table #map_large  &gt; .gm-style &gt; div &gt; div {
  border-radius: 8px;
  overflow: hidden;
}

.asset-profile-table #map_large &gt; div {
  background: transparent!important;
}

.digits-right a {
  color: var(--text-color)!important;
}

@media screen and (max-width: 1150px) {
  .table-container {
    border-right: 1px solid var(--table-border-color);
  }

  .table-container.ps--active-x {
    border-right: none;
  }

  .table-container table td:first-child, 
  .table-container table th:first-child {
    border-left: 1px solid var(--table-border-color);
  }

  main .tabs {
    z-index: 111;
  }
  main #list_menu {
    background-color: var(--dropdown-item-hover);

  }

  .asset-profile-table {
    padding: 15px 0;
/*    margin-bottom: 25px;*/
  }

  .mobile-label-tab-wrapper {
    padding: 0 14px;
  }

  .mobile-label-tab-wrapper .info-icon {
    right: 17px;
  }

  .asset-profile-table {
    background-color: transparent;
  }
}</pre></body></html>