.roboto-font {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

* {
  margin: 0;
  box-sizing: border-box;
}

html {
  height: -webkit-fill-available;
  font-family: "Roboto", sans-serif;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: var(--bim-ui_bg-base);
  display: flex;
  flex-direction: column;
  width: 100vw;
  height: 100vh;
}

main {
  height: 100vh;
  height: -webkit-fill-available;
  max-height: 100vh;
  overflow-x: auto;
  overflow-y: hidden;
}

footer {
  font-family: "Roboto", sans-serif;
  background-color: #707070; /* rgba(0, 0, 0, 0.8);*/
  color: #eeeeee;
  width: 100%;
  padding: 10px 5px;
}

#grid-viewport {
  height: 100vh;
}

.toolbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #085764;
}

.toolbar-logo {
  max-height: 60px;
  margin-right: 30px;
}

.sidebar-logo {
  max-width: 80px;
  height: auto;
}

.page-loader {
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 100000;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
}
.page-loader .container {
  width: 100%;
  height: 100vh;
}
.page-loader .container .loader-container {
  z-index: 11000;
  position: absolute;
  top: 40%;
  left: 48%;
}
.page-loader .container .loader-container .message {
  margin-top: 20px;
  color: #FFFFFF;
}
.page-loader .container .loader-container .loader {
  --s: 80px;
  --_d: calc(0.353 * var(--s));
  width: calc(var(--s) + var(--_d));
  aspect-ratio: 1;
  display: flex;
  margin: 0 auto;
}
.page-loader .container .loader-container .loader:before,
.page-loader .container .loader-container .loader:after {
  content: "";
  flex: 1;
  clip-path: polygon(var(--_d) 0, 100% 0, 100% calc(100% - var(--_d)), calc(100% - var(--_d)) 100%, 0 100%, 0 var(--_d));
  background: conic-gradient(from -90deg at calc(100% - var(--_d)) var(--_d), #fff 135deg, #666 0 270deg, #aaa 0);
  animation: l5 1.2s infinite;
}
.page-loader .container .loader-container .loader:before {
  margin-right: calc(var(--_d) / -2 - 1px);
}
.page-loader .container .loader-container .loader:after {
  margin-left: calc(var(--_d) / -2 - 1px);
  animation-delay: 0.6s;
}

@keyframes l5 {
  0% {
    transform: translateY(0);
  }
  16.67% {
    transform: translateY(-10px);
  }
  33.33% {
    transform: translateY(10px);
  }
  50%, 100% {
    transform: translateY(0);
  }
}
.bg-panel-white {
  background-color: #ffffff;
}

bim-panel {
  border-radius: 0 !important;
}

bim-button {
  flex: 0;
  background-color: #085764;
}

bim-button[active],
bim-button:hover {
  background-color: #2D8C72;
}

bim-grid {
  background-color: transparent;
}

bim-toolbar {
  background-color: transparent;
}

bim-tabs {
  background-color: rgb(0, 36, 45);
}

bim-input {
  background-color: #ffffff;
}

.options-menu {
  margin: 5px 10px;
}

.view-link {
  font-size: 12px;
  color: #084643;
}

.toolbox-container {
  background-color: #085764;
  padding: 25px;
  border-radius: 10px;
}
.toolbox-container svg {
  stroke: #fefefe;
  color: #fefefe;
}
.toolbox-container .h5 {
  font-size: 0.83em;
  font-weight: 700;
  text-transform: uppercase;
  color: #fefefe;
  margin-left: 5px;
}
.toolbox-container ul {
  list-style: none;
  padding-inline-start: 0;
}
.toolbox-container li {
  margin: 5px 0;
}
.toolbox-container li svg {
  margin-right: 5px;
}
.toolbox-container li a {
  color: #cecece;
  font-weight: 700;
  font-size: 1em;
}
.toolbox-container li a:hover {
  color: #fefefe;
  font-weight: 700;
}
.toolbox-container li ul {
  margin-left: 15px;
}

.phone-menu-toggler {
  visibility: hidden;
}

@media (max-width: 480px) {
  .options-menu {
    visibility: hidden;
    bottom: 5px;
    left: 5px;
  }
  .options-menu-visible {
    visibility: visible;
  }
  .phone-menu-toggler {
    visibility: visible;
    position: fixed;
    top: 5px;
    right: 5px;
  }
}
.tools-panel {
  min-width: unset;
  position: fixed;
  top: 120px;
  right: 20px;
  max-height: calc(100vh - 140px);
  flex-direction: column;
  overflow-y: auto;
}

.left-panel {
  min-width: unset;
  position: fixed;
  top: 120px;
  left: 20px;
  max-height: calc(100vh - 10px);
  flex-direction: column;
}

.info-dialog {
  width: 500px;
  max-height: 400px;
  position: absolute;
  left: calc(50vw - 250px);
  top: calc(50vh - 200px);
}
.info-dialog .info-dialog-content {
  max-height: 450px;
  overflow: auto;
}
.info-dialog .info-dialog-content p {
  font-size: 0.8rem;
}

.property-dialog {
  max-width: 700px;
  position: absolute;
  left: calc(50vw - 350px);
  top: calc(50vh - 225px);
}
.property-dialog .property-dialog-content {
  max-height: 450px;
  overflow: auto;
}
.property-dialog .property-dialog-content bim-label {
  color: #ff0000;
}

.property-cell {
  font-size: 0.9rem;
  color: #ff0000;
}

.property-cell-link {
  font-size: 0.9rem;
}/*# sourceMappingURL=custom_style.css.map */