@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
.container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 40px;
  width: 80%;
  margin: auto;
}

.prod-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  width: 100%;
  padding: 1em;
  background-color: #0b0b0b;
  border: 2px solid rgba(50, 99, 165, 0.25);
  border-radius: 8px;
}
.prod-container p {
  font-size: small;
}

.slideshow {
  position: relative;
  width: 33%;
  overflow: hidden;
}

.slides img {
  width: 100%;
  object-fit: cover;
  display: none;
}
.slides img.active {
  display: block;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 10px;
  padding: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  font-weight: bold;
  user-select: none;
  transition: all 0.25s ease-in-out;
}
.prev:hover, .next:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

p, h2, h4 {
  color: #FFFFFF;
  font-family: "Open Sans";
  text-align: center;
  padding-bottom: 10px;
}

.info {
  color: rgb(231.8181818182, 231.8181818182, 231.8181818182);
  text-align: center;
  font-family: "Open Sans";
  font-size: smaller;
}

.id-info {
  font-size: smaller;
  padding: 3px;
  background-color: #3263A5;
  max-width: fit-content;
  border-radius: 3px;
  border: 1px solid rgb(67.7441860465, 123.3534883721, 198.2558139535);
  margin-bottom: 10px;
}

.extra-info-container {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: space-around;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.info-container {
  min-width: 6rem;
}

.prod-info {
  width: 50%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.numbers-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.contact-btn, .dialog button {
  padding: 5px;
  background-color: #3263A5;
  border-style: solid;
  border-color: #204575;
  border-radius: 5px;
  color: #FFFFFF;
  font-weight: bold;
  font-size: 0.85em;
  cursor: pointer;
}
.contact-btn:hover, .dialog button:hover {
  background-color: #3875c5;
}
.contact-btn:active, .dialog button:active {
  background-color: #204575;
}
.contact-btn, .dialog button {
  transition: background-color 0.2s ease;
  padding: 8px;
  background-color: #2c731e;
  border-color: #5fc165;
}
.contact-btn:hover, .dialog button:hover {
  background-color: rgb(59.475862069, 155.4482758621, 40.5517241379);
}
.contact-btn:active, .dialog button:active {
  background-color: #2c731e;
}

.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease;
  z-index: 100;
}

.dialog {
  background: #000000;
  padding: 20px;
  border-radius: 12px;
  border: 2px solid #3263A5;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  position: relative;
}
.dialog h2 {
  margin-top: 0;
  font-size: 1.4em;
  color: #FFFFFF;
}
.dialog input, .dialog textarea {
  border-radius: 0.325rem;
  border: solid 1px rgb(167.5, 167.5, 167.5);
}
.dialog input:focus, .dialog textarea:focus {
  outline: 0;
  border-color: rgb(87.3139534884, 137.111627907, 204.1860465116);
  box-shadow: 0 0 0 0.15rem rgba(13, 110, 253, 0.25);
}
.dialog input, .dialog textarea {
  background-color: #0b0b0b;
  color: #FFFFFF;
  width: 100%;
  padding: 10px;
  margin-top: 8px;
  margin-bottom: 15px;
  resize: none;
  font-family: "Open Sans";
  font-size: small;
}
.close-btn {
  position: absolute !important;
  top: 10px !important;
  right: 14px !important;
  font-size: 20px !important;
  background: none !important;
  border: none !important;
  cursor: pointer !important;
  color: #666 !important;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.btn-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.filters-container-wrapper {
  overflow: hidden;
  transition: height 300ms ease-in-out;
}

.filters-collapser {
  display: none;
}

#lightbox {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
#lightbox img {
  max-width: 95vw;
  max-height: 95vh;
  object-fit: contain;
}
#lightbox button {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
}

@media (orientation: portrait) and (width <= 740px) {
  .container {
    width: 100%;
    padding: 0;
  }
  .prod-container {
    background-color: unset;
    border: none;
    border-radius: 0;
  }
  .extra-info-container {
    flex-direction: column;
  }
  .prod-info {
    width: 75%;
  }
  .slideshow {
    width: 75%;
  }
  .filters-collapser {
    display: unset;
    margin: auto;
    margin-bottom: 20px;
  }
  #filters-collapser-button {
    padding: 5px;
    background-color: #3263A5;
    border-style: solid;
    border-color: #204575;
    border-radius: 5px;
    color: #FFFFFF;
    font-weight: bold;
    font-size: 0.85em;
    cursor: pointer;
  }
  #filters-collapser-button:hover {
    background-color: #3875c5;
  }
  #filters-collapser-button:active {
    background-color: #204575;
  }
  #filters-collapser-button {
    transition: background-color 0.2s ease;
  }
}

/*# sourceMappingURL=productos.css.map */
