.color_form {
  background-color: white;
}
.tamanho {
  width: 300px;
  border-radius: 25px;
}
.carouselExampleSlidesOnly {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Estilos básicos para o popup */
#popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 360px;
  height: 230px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #fff;
  z-index: 1000;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

#popup iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: flex;
  border-radius: 5px;
  flex: 1;
  align-items: center;
  justify-content: center;
}

#popup .close-btn {
  position: absolute;
  right: 10px;
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
}

/* Estilo para o fundo escuro */
#overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

/* Estilos para o carregamento */
#loading {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1050;
}

.spinner {
  border: 16px solid #f3f3f3;
  border-top: 16px solid #3498db;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
