html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}
.spinner {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 24px;
  height: 24px;
  border: 3px solid #ccc;
  border-top-color: #59c269;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.panorama-wrap {
  position: relative;
  text-align: center;
}
.panorama-spinner {
  display: none;
  position: absolute;
  inset: 0;
  margin: auto;
  width: 36px;
  height: 36px;
  border: 4px solid #bbb;
  border-top-color: #59c269;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  pointer-events: none;
}
.panorama-text {
  display: none;
  position: absolute;
  top: calc(50% + 40px);
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 14px;
  font-weight: bold;
}
.panorama-wrap.loading .panorama-spinner {
  display: block;
}
.panorama-wrap.loading .panorama-text {
  display: block;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.modal .view-img-container {
  display: block;
  max-width: 100%;
  max-height: 80vh;
  height: auto;
  width: auto;
  object-fit: contain;
  margin: 0 auto;
}
.linkedlist-container {
  background-color: white;
  padding: 2px;
  border-radius: 15px 15px 0 0;
}
.linkedlist-container .toggle-linkedlist-item-container {
  padding: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.linkedlist-container .linkedlist-item-container .linkedscene-item {
  background-color: #59c269;
  color: white;
  padding: 5px;
  margin: 1px;
}
.linkedlist-container .linkedlist-item-container .linkedscene-item:hover {
  background-color: #4dac5b;
}
/* Hide scene name left bottom for now */
.pnlm-panorama-info {
  display: none !important;
}
