/* ===== models ===== */

model-viewer {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

.view__model {
  display: grid;
  position: relative;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

.ambient__model {
  display: block;
  position: relative;
  height: 100%;
  width: 100%;
}
.slider {
  width: 100%;
  text-align: center;
  overflow: hidden;
  position: absolute;
  bottom: 16px;
}

.slides {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.slide {
  scroll-snap-align: start;
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #fff;
  margin-right: 10px;
  border-radius: 10px;
  border: none;
  display: flex;
}

.slide.selected {
  border: 2px solid #4285f4;
}

.slide:focus {
  outline: none;
}

.slide:focus-visible {
  outline: 1px solid #4285f4;
}
