
.video{
  border: 2px solid #000 !important;
  background-color: #000;
}

.product .brand{
    font-size: 1.2rem;
    color: var(--orange) ;
    font-family: "Poppins", sans-serif;
    font-weight: bold;
}

.product .title h1{

    font-family: "Poppins", sans-serif;
font-size: 2.2rem;
font-weight: 500;
color: black;
}

.product .description h2{
    font-size: 0.9rem;
    line-height: 1.3rem;
}

.product .thumbnail{
  overflow: hidden;
    width: 100%;
    height: auto;
  max-height: 100px;
    border: 3px solid var(--border-color);
    border-radius: var(--border-radius);
margin-bottom: 2px;
    

}

.product .thumbnail img{
  position: relative;
  height: 100%;
  width: auto;
  
 
}


.product .video-container {
  position: relative;
  width: 100%;
  height: 85px;
  max-height: 100px;

  overflow: hidden;
  border: 3px solid var(--border-color);
  border-radius: var(--border-radius);

  display: flex; /* Agregamos flexbox para centrar verticalmente */
  align-items: center; /* Centramos verticalmente */
  justify-content: center; /* Centramos horizontalmente */
  background-color: black;

  cursor: pointer;

}





.product .video-container .video-thumbnail {
  width: 100%;
  height: auto;
  object-fit: contain;
  
}

.product .video-container .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 35px;
  height: 25px;
  background-color: rgba(255, 0, 0,1);
  border-radius: 25%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product .video-container .play-icon::before {
  content: '\25B6'; /* Código Unicode del ícono de reproducción */
  color: white;
  font-size:14px;
}


.product .video-container-g {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
  border: 3px solid black;
    display: flex; /* Agregamos flexbox para centrar verticalmente */
  align-items: center; /* Centramos verticalmente */
  justify-content: center; /* Centramos horizontalmente */
  background-color: black;
  cursor: pointer;
}

.product .video-container-g .video-thumbnail {
  width: 100%;
  height: auto;
  object-fit: contain;
  
}


.product .video-container-g .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 50px;
  background-color: rgba(255, 0, 0,1);
  border-radius: 25%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product .video-container-g  .play-icon::before {
  content: '\25B6'; /* Código Unicode del ícono de reproducción */
  color: white;
  font-size:24px;
}

.product .vpg {
    cursor: pointer;

  }


  .product #lightbox {
    position: fixed; /* keeps the lightbox window in the current viewport */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .7) url(../_IMG/loading_w.svg) center no-repeat;
    text-align: center;
    z-index: 40000;
    display: none;
    opacity: 0;
  }
  .product #lightbox #content {
    opacity: 0;
    width: 100%;
    height: 100%;
  }
  .product #lightbox #content img {
    height: 90vh;
    padding: 10px;
  }


  .product .attributes .row{
    padding: 1rem;
    margin-bottom: 0px !important;
  }

  .product .attributes .row:nth-child(even) {
    background-color: #f2f2f2;
    border: 1px solid #dee2e6 !important;
  }
  .product .attributes .row:nth-child(odd) {
    background-color: #fff;
  }

  .product .attributes .line{
    font-size: 1rem !important;
  }
  
  .product .attributes .atribute{
    font-size: 1rem !important;
    font-weight: bold;
    text-transform: uppercase;
    color: black;
  }
  
  .product .attributes .value{
    font-size: 1rem !important;

  }