/*
Custom Css
*/
/* 
body{
    background-image: url("../images/about1.jpg");
    background-attachment: fixed;
    background-size: cover;
}
 */

 /* imagenes dentro de VER */
 #imagenVer {
    width: 350px; /* Ancho fijo para el div */
    height: 500px; /* Altura fija para el div */
    overflow: hidden; /* Para recortar cualquier contenido que sobresalga */
  }

  #product-ver {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Ajustar la imagen para que quepa dentro del div sin distorsión */
  }

.container-boton{
    background-color: #2e6329;
    border: 1px solid #fff;
    position: fixed;
    z-index: 999;
    border-radius: 50%;
    bottom: 20px;
    right: 25px;
    padding: 25px;
    transition: ease 0.3s;
    animation: efecto 1.2s infinite;
}

.container-boton:hover{
    transform: scale(1.1);
    transition: 0.3s;
}

.boton{
    width: 30px;
    transition: ease 1s;
}

@keyframes efecto{
    0%{
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.85);
    }
    100%{
        box-shadow: 0 0 0 25px rgba(0, 0, 0, 0);
    }
}

.search{
width: 50%;
text-align: right;
}


/* nuevos */

.card-img-container {
    width: 100%;
  }
  .card-img-container img {
    width: 100%;
    height: auto;
  }


  /* Subir imagenes */

  .imagenContenedor {
    position: relative;
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
}

.imagenContenedor img {
    max-width: 100px;
    max-height: 100px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.imagenContenedor .botonEliminar {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: red;
    color: white;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
}

.card-imagen {
    width: 100%;
    height: 200px; /* Altura fija para la imagen */
    object-fit: contain; /* Ajustar la imagen para que cubra el contenedor sin distorsión */
}

.proago{
  color :red;
}


/* range slider */

input[type='range'] {
    width: 210px;
    height: 30px;
    overflow: hidden;
    cursor: pointer;
      outline: none;
  }
  input[type='range'],
  input[type='range']::-webkit-slider-runnable-track,
  input[type='range']::-webkit-slider-thumb {
    -webkit-appearance: none;
      background: none;
  }
  input[type='range']::-webkit-slider-runnable-track {
    width: 200px;
    height: 1px;
    background: #003D7C;
  }
  
  input[type='range']:nth-child(2)::-webkit-slider-runnable-track{
    background: none;
  }
  
  input[type='range']::-webkit-slider-thumb {
    position: relative;
    height: 15px;
    width: 15px;
    margin-top: -7px;
    background: #fff;
    border: 1px solid #003D7C;
    border-radius: 25px;
    z-index: 1;
  }
  
  
  input[type='range']:nth-child(1)::-webkit-slider-thumb{
    z-index: 2;
  }
  
  .rangeslider{
      position: absolute;
      height: 60px;
      width: 210px;
      display: inline-block;
      margin-top: -5px;
      margin-left: 20px;
  }
  .rangeslider input{
      position: absolute;
  }
  .rangeslider{
      position: absolute;
  }
  
  .rangeslider span{
      position: absolute;
      margin-top: 30px;
      left: 0;
  }
  
  .rangeslider .right{
     position: relative;
     float: right;
     margin-right: -5px;
  }

/* 

  #imagenesPrevisualizar {
    display: flex;
    flex-wrap: wrap;
    max-width: 800px; /* Establecer un ancho máximo para el contenedor 
    margin: 0 auto; /* Centrar el contenedor 
}

.imagenContenedor {
    margin: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 150px; /* Establecer un ancho para cada imagen 
}

.imagenContenedor img {
    max-width: 100%; /* Ajustar la imagen al ancho del contenedor 
    max-height: 100px; /* Establecer una altura máxima para las imágenes 
}

 */

 * {box-sizing:border-box}

 /* Slideshow container */
 .slideshow-container {
   max-width: 500px;
   position: relative;
   margin: auto;
 }
 
 /* Hide the images by default */
 
 .mySlides {
  display: flex; /* Usa flexbox */
  justify-content: center; /* Centra horizontalmente */
  align-items: center; /* Centra verticalmente */
  width: 300px; /* Ancho fijo */
  height: 300px; /* Alto fijo */
  position: absolute; /* Establece una posición relativa */
}

/* Estilo para las imágenes dentro del slide */
.mySlides img {
  max-width: 80%;
  max-height: 80%;
  object-fit: cover;
}
 /* Next & previous buttons */
 .prev, .next {
   cursor: pointer;
   position: absolute;
   top: 50%;
   width: auto;
   margin-top: -22px;
   padding: 16px;
   color: white;
   font-weight: bold;
   font-size: 18px;
   transition: 0.6s ease;
   border-radius: 0 3px 3px 0;
   user-select: none;
 }
 
 /* Position the "next button" to the right */
 .next {
   right: 0;
   border-radius: 3px 0 0 3px;
 }
 
 /* On hover, add a black background color with a little bit see-through */
 .prev:hover, .next:hover {
   background-color: rgba(0,0,0,0.8);
 }
 
 /* Caption text */
 .text {
   color: #f2f2f2;
   font-size: 15px;
   padding: 8px 12px;
   position: absolute;
   bottom: 8px;
   width: 100%;
   text-align: center;
 }
 
 /* Number text (1/3 etc) */
 .numbertext {
   color: #f2f2f2;
   font-size: 12px;
   padding: 8px 12px;
   position: absolute;
   top: 0;
 }
 
 /* The dots/bullets/indicators */
 .dot {
   cursor: pointer;
   height: 15px;
   width: 15px;
   margin: 0 2px;
   background-color: #bbb;
   border-radius: 50%;
   display: inline-block;
   transition: background-color 0.6s ease;
 }
 
 .active, .dot:hover {
   background-color: #717171;
 }
 
 /* Fading animation */
 .fade {
   animation-name: fade;
   animation-duration: 3.5s;
 }
 
 
 @keyframes fade {
   from {opacity: .4}
   to {opacity: 1}
 }