* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  -ms-content-zooming: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html,
body {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  background-color: #f5f5f5;
  color: #fff;
}

a,
a:hover,
a:active,
a:visited {
  text-decoration: none;
  color: inherit;
}

#signOutBtn {
  background-color: white;
  color: #0d6efd;
  width: 100px;
}

#signOutBtn:hover {
  background-color: #0d6efd;
  color: white;
}

#sceneList {
  top: 0;
  flex-grow: 1;
  max-height: 95vh;
  border-right: 1px solid #dee2e6;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-transition: margin-left 0.5s ease-in-out;
  transition: margin-left 0.5s ease-in-out;
}

#sceneList .scenes {
  width: 100%;
  background-color: rgb(58, 68, 84);
  background-color: rgba(58, 68, 84, 0.8);
}

#sceneList.enabled {
  margin-left: 220px;
}

#sceneList .scene {
  display: block;
  width: 100%;
  height: 30px;
}

#sceneList .scene .text {
  width: 100%;
  height: 100%;
  padding: 0 15px;
  line-height: 30px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.no-touch #sceneList .scene:hover {
  background-color: rgb(103, 115, 131);
  background-color: rgba(103, 115, 131, 0.8);
}

#sceneList .scene.current {
  background-color: rgb(103, 115, 131);
  background-color: rgba(103, 115, 131, 0.8);
}

body.single-scene #sceneList,
body.single-scene #sceneListToggle {
  display: none;
}

.header {
  display: flex;
  justify-content: space-between;
  padding: 6px;
  background: #f8f9fa;
}

.actions-container {
  gap: 2rem;
}

.actions-container-item {
  border-right: 1px solid #d5d1d1;
  padding-right: 2px;
}

.upload-btn-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70%;
}

#details h5 {
  padding-left: 6px;
}

#meshRowContainer {
  overflow-y: auto;
  height: 85vh;
}

.details-information {
  border-bottom: 1px solid #d5d1d1;
  padding-left: 7px;
  padding-top: 12px;
}

.asset-properties {
  border-top: 1px solid #d5d1d1;
  border-bottom: 1px solid #d5d1d1;
  padding-left: 7px;
  padding-top: 12px;
}

.active {
  background-color: #d3d4d5;
}

.side-menu-btns {
  margin-top: 1rem;
  width: 50px;
  display: flex;
  align-items: center;
  flex-direction: column;
  height: 20%;
  gap: 2rem;
}

.mesh-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 6px 4px 6px;
  border-bottom: 1px solid #d5d1d1;
}

.mesh-row:hover {
  background: #e6e6e6;
  font-weight: 600;
}

.threeD-viewer-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.threeD-viewer-container > div {
  position: absolute;
  top: 0px;
  width: 100%;
}

.dropdown,
.text-end {
  position: absolute;
  right: 10px;
}

.material-symbols-outlined:hover {
  cursor: pointer;
  border-radius: 50%;
  color: black;
  font-size: 30px;
  transition: ease-in-out;
}

.material-symbols-outlined {
  color: #626262;
}

.active-row {
  background: #e6e6e6;
  font-weight: 600;
}

.dropdown-menu {
  list-style-type: none;
  background-color: #ffffff;
  background-clip: padding-box;
  border-radius: 6px;
  outline: none;
  box-shadow: 0 6px 16px 0 rgba(0, 0, 0, 0.08),
    0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
}

.details-heading {
  height: 40px;
  background-color: #f8f9fa;
  display: flex;
  border-bottom: 1px solid #d5d1d1;
  justify-content: space-between;
  align-items: center;
}

.tj_description {
  display: flex !important;
  overflow-x: hidden;
}

.details-side-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  width: 50px;
  background: #f8f9fa;
  border-left: 1px solid #d5d1d1;
}

.hotspot-btn {
  display: block;
  position: absolute;
  z-index: 100;
}

.hotspot-info {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 1rem;
  border-radius: 8px;
  width: 325px;
}

#filesDiv {
  width: 80%;
  display: flex;
  justify-content: center;
}

#meshesDiv {
  width: 80%;
  display: flex;
  justify-content: center;
}

@media (max-width: 650px) {
  .sceneList {
    margin-left: -300px;
  }
}

@media (min-width: 650px) {
  .sceneList {
    margin-left: 0;
  }
}
