:not(:defined)>* {
  display: none;
}

html {
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: "Archivo", sans-serif;
  font-weight: 400;
  font-size: 14px;
}


.Header {
  position: fixed;
  z-index: 10;
  width: 100%;
  height: 60px;
  border-bottom: solid 1px #e3e3e3;
  background-color: #fff;
}

.HeaderNavContainer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  max-width: 1660px;
  margin: auto;
}

@media (max-width: 1699px) {
  .HeaderNavContainer {
    margin: 0 20px 0 20px;
  }
}


.Logo {
  cursor: pointer;
}

.ColorButtons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;

}

.ColorButton {
  display: flex;
  align-items: center; 
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.2s;
  position: relative;
  height: 22px;
  width: 22px; 
  padding: 2px; 
}

.ColorButton:hover {
  border: 1px solid #393939;
  
}
.Color {
  display: block;
  border-radius: 50%;
  height: 100%;
  width: 100%;
  z-index: -1;
  }


model-viewer {
  width: 100%;
  height: 100%;
  background-color: #f6f6f6;

}


.progress-bar {
  display: block;
  width: 80%;
  max-width: 1660px;
  height: 2px;
  position: absolute;
  left: 50%;
  top: 70%;
  transform: translate3d(-50%, -50%, 0);
  border: none;
  background-color: rgba(51, 51, 51, 0.25);
}



.progress-bar.hide {
  visibility: hidden;
  transition: visibility 0.3s;
}

.update-bar {
  background-color: #333;
  width: 0%;
  height: 100%;
  float: left;
  transition: width 0.3s;
}

.loading-text {
  font-size: 24px;
  font-weight: 400;
  color: #393939;
  margin-top: 10px;
}

@media (max-width: 533px) {
  .progress-bar {
    top: 60%;
  }

  .loading-text {
    font-size: 21px;
  }
}

.ar-icon {
  height: 20px;
  width: 20px;
  background-image: url(ar_icon.png);
  background-size: contain;
  background-repeat: no-repeat;
}

#ar-button {


  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  position: absolute;
  left: 50%;
  bottom: 15%;
  transform: translateX(-50%);
  white-space: nowrap;
  padding: 14px 24px 14px 20px;
  font-size: 16px;
  line-height: 20px;
  color: #393939;
  border: 1px solid #e3e3e3;
  background-color: #fcfcfc;
  border-radius: 100px;
  transition: 0.2s;
}

#ar-button:active {
  background-color: #f2f2f2;
  border-color: #d6d6d6;
}

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

#ar-button:focus-visible {
  outline: 1px solid #4285f4;
}

@keyframes circle {
  from {
    transform: translateX(-50%) rotate(0deg) translateX(50px) rotate(0deg);
  }

  to {
    transform: translateX(-50%) rotate(360deg) translateX(50px) rotate(-360deg);
  }
}

@keyframes elongate {
  from {
    transform: translateX(100px);
  }

  to {
    transform: translateX(-100px);
  }
}

model-viewer>#ar-prompt {
  position: absolute;
  left: 50%;
  bottom: 20%;
  animation: elongate 2s infinite ease-in-out alternate;
  display: none;
}

model-viewer[ar-status="session-started"]>#ar-prompt {
  display: block;
}

model-viewer>#ar-prompt>img {
  animation: circle 4s linear infinite;
}



.blueberry-pie-wool {
  background-color: #32349a;
}
.lilac-fluff-wool {
  background-color: #92566c;
}
.classic-beige-wool {
  background-color: #d3c8af;
}
.vulcano-black {
  background-color: #393939;
}
.wine-berry {
  background-color: #53302f;
}
.piazza-beige, .almond-grey {
  background-color: #ece8e4;
}
.terracotta-blush 
{background-color: #802614;
}