#model-viewer-container {
  height: 100vh;
  width: 100vw;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  user-select: none;
  overflow: hidden;
}

#model-viewer-content {
  width: 100%;
  height: 100%;
  position: relative;
}

model-viewer {
  height: 100%;
  width: 100%;
  transition: height 0.5s, width 0.5s;
}

model-viewer::part(default-progress-bar) {
  display: none;
}

model-viewer::part(default-ar-button) {
  display: none;
}

model-viewer::part(default-exit-webxr-ar-button) {
  top: 2rem;
  right: 0.5rem;
  padding: 0;
  cursor: pointer;
  border-radius: 50%;
}

.toolbar-icon {
  cursor: pointer;
  color: white;
  padding: 0.5rem;
  border-radius: 50%;
  box-sizing: border-box;
  background: #fff;
  box-shadow: 0 0 0.5rem 0 rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.shopper-tool.MuiIconButton-root {
  border-radius: 50%;
  background-color: #fff;
}
.shopper-tool.MuiIconButton-root:hover {
  background-color: #fff;
}

.text-icon {
  color: rgb(20, 20, 20);
  font-size: 0.66rem;
  font-weight: 600;
  height: 2.5rem;
  width: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.standard-icon {
  border: 2px solid #5b5b5b;
  background: #666;
  color: white;
  border-radius: 4px;
}

.customizer-container {
  width: fit-content;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: auto;
  transition: height 0.5s, width 0.5s;
  background-color: #f6f6f6;
  padding: 5px 10px;
  z-index: 2;
  box-sizing: border-box;
  position: relative;
}

.customizer-docker {
  position: absolute;
  top: 50%;
  right: -8px;
  display: none;
  justify-content: center;
  align-items: center;
  border: 1px solid #5b5b5b;
  border-radius: 4px;
  background: #666;
  padding: 4px;
  height: 32px;
  width: 32px;
  transform: translateY(-50%) rotate(90deg);
  color: white;
  z-index: 2147483647;
}

#customizer-button:focus {
  outline: none;
}

#customizer-button:focus-visible {
  outline-color: transparent;
}

#customizer-content {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 20px;
  padding: 0 2%;
  overflow-y: auto;
}

.material-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  margin-top: 15px;
  gap: 12.5px;
}

.material-title {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
}

.material-name.MuiTypography-root {
  font-size: 14px;
  flex: 0 1 80%;
  word-break: break-word;
}

.textures-container {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.texture-item-container {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 75px;
  align-items: center;
}

.texture-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-decoration: none;
  cursor: pointer;
  border: none;
  background-repeat: round;
  background-blend-mode: multiply;
  background-size: cover;
  background-position: center;
}

.texture-button:hover {
  transition: box-shadow 0.3s ease;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.texture-name.MuiTypography-root {
  font-size: 12px;
  font-size: 12px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  max-width: 100%;
}

.w150-h150 {
  width: 150px;
  height: 150px;
}

#main-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.progress-bar-container {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.progress-bar-container > div {
  width: 10vmin;
  height: 10vmin;
}
.progress-bar-container .progress-text {
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  font-size: 12.5px;
  font-weight: bold;
  color: #fff;
}

#overlay-info {
  position: absolute;
  font-size: 24px;
  color: red;
}

.hide {
  visibility: hidden;
}

.qr-modal-content {
  background-color: #fff;
  padding: 2rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  width: 25%;
  max-width: 350px;
  min-width: 275px;
  z-index: 1;
  box-sizing: border-box;
}

button.close-button {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}

#ar-button {
  position: absolute;
  top: 10px;
  cursor: pointer;
  z-index: 1;
  left: 50%;
  transform: translate(-50%);
}

#ar-icon-button {
  width: 35px;
  height: 35px;
  background: white;
  margin: 7.5px auto auto auto;
}

.page-center-fix {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#logo-container {
  text-align: center;
  position: absolute;
  z-index: 1;
  top: 1%;
  left: 1%;
}

.zoom-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.w1rem-h1rem {
  height: 1rem;
  width: 1rem;
}

.flex-center {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.incompatible-text {
  font-size: 0.75rem;
}

@media screen and (min-width: 1025px), (max-height: 430px) {
  #model-viewer-container {
    flex-direction: column;
    width: 100vw;
    height: 100vh;
  }
  model-viewer {
    transition: height 0s, width 0s;
    width: 100%;
    height: 100%;
  }
  .customizer-container {
    max-width: 40%;
    min-width: 15%;
    padding-top: 40px;
  }
  .ar-instruction {
    right: 20%;
    left: unset;
    transform: translateX(-20%);
  }
}
@media screen and (max-width: 500px) {
  .ar-instruction {
    min-width: 80%;
  }
}
@media screen and (max-width: 1024px) {
  #ar-button {
    top: unset;
    bottom: 50px;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media (max-width: 1024px) and (min-height: 431px) {
  /* put your css styles in here */
  model-viewer {
    width: 100%;
  }
  .customizer-visibility-toolbox {
    align-self: flex-end;
    padding-right: 10px;
    column-gap: 10px;
    display: flex;
  }
  .customizer-visibility-toolbox .maximize,
  .customizer-visibility-toolbox .minimize {
    cursor: pointer;
    border-radius: 50%;
  }
  .customizer-container {
    border-radius: 50px 50px 0 0;
    padding-top: 12px;
    width: 100%;
  }
  .customizer-container .customizer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-left: 1em;
    padding-right: 1em;
    box-sizing: border-box;
  }
  .customizer-container .customizer-header .heading {
    font-size: 20px;
  }
  .customizer-container #customizer-content {
    width: 100%;
    margin-top: 20px;
  }
  .customizer-container.maximized {
    bottom: 0;
    position: absolute;
    height: 30%;
    overflow: hidden;
  }
  .customizer-container.minimized {
    height: 60px;
    bottom: 0;
    position: absolute;
    overflow: hidden;
  }
}
.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 20px;
  cursor: pointer;
}

.switch-checkbox {
  display: none;
}

.switch-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  border-radius: 20px;
  transition: background-color 0.3s;
}

.switch-slider::before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  border-radius: 50%;
  transition: transform 0.3s;
}

.switch-checkbox:checked + .switch-slider {
  background-color: #2196f3;
}

.switch-checkbox:checked + .switch-slider::before {
  transform: translateX(20px);
}

.skybox {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.hotspot {
  position: relative;
  cursor: pointer;
}

.hotspot:not([data-visible]) {
  opacity: 1 !important;
}

.annotation {
  background-color: #888888;
  position: absolute;
  transform: translate(10px, 10px);
  border-radius: 10px;
  padding: 10px;
  width: max-content;
  white-space: pre-wrap;
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.mv-toolbox {
  position: absolute;
  top: 3rem;
  right: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mv-toolbox-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mv-tools-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mv-toolbox-button {
  color: rgb(20, 20, 20) !important;
  padding: 0 !important;
  margin: 0.25em !important;
  width: 1.5em !important;
  height: 1.5em !important;
}

.ar-instruction {
  opacity: 0;
  animation: fadeInOut 4s forwards;
  position: fixed;
  top: 15%;
  width: "content-width";
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: #000;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 10px;
  border-radius: 10px;
  z-index: 2;
  transform: translateX(-50%);
  left: 50%;
}

model-viewer[ar-status=object-placed] > .customizer-container {
  z-index: 1;
}

model-viewer[ar-status=session-started] .customizer-docker,
model-viewer[ar-status=object-placed] .customizer-docker {
  display: flex;
}

model-viewer[ar-status=session-started] > .customizer-docker,
model-viewer[ar-status=object-placed] > .customizer-docker {
  left: 0;
  transform: translateY(-50%) rotate(-90deg);
}

model-viewer[ar-status=session-started],
model-viewer[ar-status=object-placed],
.customizer-container {
  user-select: none;
}

@media (max-height: 430px) {
  .ar-instruction {
    top: unset;
    bottom: 15%;
    right: 20%;
    left: unset;
    width: "content-width";
    max-width: 50vw;
    transform: translateX(25%);
  }
}
@keyframes ping {
  75%, 100% {
    box-shadow: 0 0 0 0.5rem rgba(29, 40, 58, 0);
  }
}.cell {
  flex: 1;
}
.cell-w2 {
  flex: 2;
}
.cell-w3 {
  flex: 3;
}
.cell-w4 {
  flex: 4;
}
.cell-w5 {
  flex: 5;
}

.inline {
  display: inline;
}

.flexible {
  display: flex;
}

.flex-y {
  display: flex;
  flex-direction: column;
}

.flex-fix {
  flex-shrink: 0;
  flex-grow: 0;
}

.flex-grow {
  flex-grow: 1;
}

.flex-noshrink {
  flex-shrink: 0;
}

.flexible-start {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.flexible-end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.flexible-center-equidistant-cells {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
}

.flexible-center-space-around {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.flexible-centered {
  display: flex;
  justify-content: center;
}

.flexible-spacebetween {
  display: flex;
  justify-content: space-evenly;
}

.flexible-hvcentered {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-self-align-start {
  align-self: flex-start;
}

.flex-self-align-end {
  align-self: flex-end;
}

.bottom-sidebar-menu-item {
  bottom: 0;
  position: absolute !important;
  width: 100%;
}

.five {
  min-width: 25%;
}

.no-bottom-padding {
  padding-bottom: 0 !important;
}

.scaled-down {
  transform: scale(0.25);
}

.relative {
  position: relative;
}

.main-content {
  max-height: calc(100vh - 90px);
}

.flex-fit {
  flex-grow: 0 !important;
}

.full-width {
  width: 100%;
}

.full-height {
  max-height: 100% !important;
  height: 100% !important;
}

.wrap {
  flex-wrap: wrap;
}

.vertically-scrollable {
  overflow-y: auto;
}

.borderboxed {
  border: 1px solid #ccc;
}

.link {
  cursor: pointer;
  color: #1e70bf;
}
.link:hover {
  text-decoration: underline;
}

.border-box {
  border: 1px solid #ccc;
  padding: 24px;
  border-radius: 0.28571429rem;
}

.no-margin {
  margin: 0 !important;
}

.pointer {
  cursor: pointer;
}

.smallest {
  font-size: 0.35rem !important;
}

.dark-background {
  background-color: #808080 !important;
}

.image-holder {
  background-color: #ccc;
  padding: 5px;
}

.p-6-3 {
  padding: 6px 3px;
}

.p-10-5 {
  padding: 10px 5px;
}

.p-top-2 {
  padding-top: 2px;
}

.p-top-4 {
  padding-top: 4px;
}

.p-top-5 {
  padding-top: 5px;
}

.p-top-10 {
  padding-top: 10px;
}

.p-btm-2 {
  padding-top: 2px;
}

.p-btm-4 {
  padding-top: 4px;
}

.p-btm-5 {
  padding-top: 5px;
}

.p-btm-10 {
  padding-top: 10px;
}

td.p-v-0 {
  padding-top: 0;
  padding-bottom: 0;
}
td.p-v-2 {
  padding-top: 2;
  padding-bottom: 2;
}
td.p-v-4 {
  padding-top: 4;
  padding-bottom: 4;
}

.m-5 {
  margin: 5px;
}
.m-l-5 {
  margin-left: 5px !important;
}

.m-top-5 {
  margin-top: 5px;
}

.m-top-10 {
  margin-top: 10px;
}

.m-top-20 {
  margin-top: 20px;
}

.m-top-30 {
  margin-top: 30px;
}

.m-top--20-left--30 {
  margin-top: -10px;
  margin-left: -30px;
}

.col-gap-10 {
  column-gap: 10px;
}
.col-gap-20 {
  column-gap: 20px;
}
.col-gap-30 {
  column-gap: 30px;
}
.col-gap-40 {
  column-gap: 40px;
}

.gap-10 {
  gap: 10px;
}
.gap-20 {
  gap: 20px;
}
.gap-30 {
  gap: 30px;
}
.gap-40 {
  gap: 40px;
}

.font-size-10 {
  font-size: 10px;
}
.font-size-20 {
  font-size: 20px;
}
.font-size-35 {
  font-size: 35px;
}
.font-bold {
  font-weight: bold;
}

.ui.vertical.divider.fullheight:after,
.ui.vertical.divider.fullheight:before {
  height: 100% !important;
}

.display-none {
  display: none;
}

.wp-5 {
  min-width: 5% !important;
  width: 5% !important;
}
.wp-10 {
  min-width: 10% !important;
  width: 10% !important;
}
.wp-15 {
  min-width: 15% !important;
  width: 15% !important;
}
.wp-20 {
  min-width: 20% !important;
  width: 20% !important;
}
.wp-25 {
  min-width: 25% !important;
  width: 25% !important;
}
.wp-30 {
  min-width: 30% !important;
  width: 30% !important;
}
.wp-35 {
  min-width: 35% !important;
  width: 35% !important;
}
.wp-40 {
  min-width: 40% !important;
  width: 40% !important;
}

.loader {
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #3498db;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loader-image {
  width: 150px;
  height: 150px;
}

body {
  margin: 0;
}

#root {
  height: 100dvh;
  overflow: hidden;
  display: flex;
}