body {
  margin: 0 0;
  overflow: hidden;
}

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

.resetButtonOut {
  position: absolute;
  top: calc(100vh - 3rem);
  left: calc(50vw - 1.25rem);
  width: 3.5vh;
  height: 3.5vh;
  border-radius: 5px;
  cursor: pointer;
}

.resetButton {
  z-index: 2000;
  position: absolute;
  width: 2.5rem;
  height: 2.5rem;
  background: url("/3dviewer/imgs/reset2.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.texturesMenu {
  margin-top: 10px;
  width: 100vw;
  text-align: center;
  position: absolute;
}

.texture {
  display: inline-block;
  width: 50px;
  height: 50px;
  background-color: gray;
  cursor: pointer;
  border-radius: 5px;
  overflow: hidden;
  transition: 0.2s;
  border: 2px solid #fff;
  z-index: 2000;
}

.texture:hover {
  border: 2px solid #000 !important;
}

.textureImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.active {
  border: 2px solid #000 !important;
}