
body{
  width: 100vw;
  height: 100vh;
  overflow-x: hidden;
  background: rgb(255, 255, 255) !important;
}

.contentoptions{
  margin-top: 4%;
}
.flex-sb-m {
  display: flex;
  justify-content: space-between; /* para separar los elementos y posicionar el botón a la derecha */
  align-items: center;
}
.filter-tope-group {
  margin-right: 20px; /* ajusta el valor según tus necesidades */
}

.productcontent{
  margin-top: 4%;
}



.product {
    position: relative;
    display: inline-block;
  }
  
  .product img {
    width: 100%;
    border-radius: 0;
  }
.snb{
  border: none !important;
  box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.2);
  
}
  
  .btnvrm {
    position: absolute;
    top: 58%; /* Posiciona el botón en el centro verticalmente */
    left: 21%; /* Posiciona el botón en el centro horizontalmente */
    background-color: #333;
    width: 60%;
    color: #fff;
    border: none;
    border-radius: 50px;
    outline: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    transition: all 0.5s ease-in-out; 
   
    transform: scale(0.8);
  }
  .btnvrm:hover{
    background: #ffffff;
    color: black;
  }
  
  .product:hover .btnvrm {
    opacity: 1;
    transform: scale(1);
  }
  
  .img-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 250px;
    
  }

  .img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
  }

  .img-container:hover img {
    transform: scale(1.1);
  }



  .contentoptions  .txtactivo{
    color: #000000 !important;
    border-bottom: 1px solid #202020 !important;
  }
  .contentoptions a{
    margin-right: 20px;
    color: #808080 !important;
    text-decoration: none;
    transition: color 0.4s ease;
    border-bottom: 1px solid #20202000;
    transition: border-bottom 0.3s ease;
  }


 .contentoptions a:hover{
    color: #202020 !important;
    border-bottom: 1px solid #202020;
  }
  
  .navbar {
    position: sticky;
    background: rgb(255, 255, 255) !important;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
  }

  .colorblnv{
    color: black !important;
  }
  
.mybtnb{
  background: white;
  border-color: rgb(153, 153, 153);
  transition: all 0.5s ease-in-out; 
}

.mybtnb:hover{
  background: #9f6caa;
  border-color: #9f6caa;
  color: #fff;
}

.wt{
  width: 90% !important;
}

.txtproducto{
  color: #797979 !important;
}

.mycn{
  margin-bottom: 10px;
}


@media (max-width: 480px) {
  .wt{
    width: 72% !important;
  }
}