* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  .previous-button{
    padding-top: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .previous {
    padding: 1em 2em;
    margin-left: 1em;
    background-color: #1f1f1f;
    color: #ffffff;
    border-radius: 5px;
    text-decoration: none;
  }
  .previous:hover {
    background-color: #2e332e;
  }
  .product-container {
    padding: 50px 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .product-container h1 {
    font-size: 36px;
  }
  /* .img-card{
      width: 40%;
  } */
  
  .img-card img {
    width: 100%;
    flex-shrink: 0;
    border-radius: 4px;
    height: 520px;
    object-fit: cover;
    padding: 0 50px;
  }
  


  .product-info{
    width: 60%;
  }

  
  .product-info h4 {
    font-size: 27px;
    font-family: Lato;
    font-weight: 500;
    line-height: 130%;
    color: #ff4242;
    margin: 6px 0;
  }
  
  .product-info del {
    color: #a9a9a9;
  }
  
  .product-info p {
    color: #424551;
    margin: 15px 0;
    width: 70%;
    font-size: 17px;;
  }
  

  button {
    background: #4CAF50;
    border-radius: 4px;
    padding: 10px 37px;
    border: none;
    color: white;
    font-weight: 600;
    font-size: 24px;
    cursor: pointer;
  }
  
  button:hover {
    background: #f18e1d;
    transition: ease-in 0.4s;
  }
  
  .pagination {
      color: #787a80;
      margin: 15px 0;
      cursor: pointer;
  }
  
  @media screen and (max-width: 576px) {
    .product-info h4 {
        font-size: 25px;
      }
    .product-container{
      flex-direction: column;
    }
    .product-info{   
        padding: 0 15px;
      width: 100%;
    }

    .product-info p{
     
        font-size: 17px;
      width: 100%;
    }
      
    button {
        font-size: 30px;;
    }
  }
  
.container{
    width: 100%;
    margin: 0 auto;
    margin-top: 30px;
}

.accordion{
    width: 100%;
    padding: 0 5px;
    border: 2px solid #1f1f1f;
    cursor: pointer;
    display: flex;
    margin: 10px 0;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-radius: 30px;
    
}

.accordion i {
    color: #1f1f1f;
    transition: all .5s ease-in;
}
.accordion .fa-minus{
    display: none;
}
.active, .accordion:hover{
    background-color: #131418;
    color: white;
    transition: all .3s ease-in;
    border: 2px solid #131418;
    transform: scale(1.02);
}
.active .fa-minus{
    display: block;
}
.active .fa-plus{
    display: none;
}
.accordion h5{
    font-size: 20px;
    margin: 0;
    color: #131418;
    padding-left: 5px;
}
.active i, .active h5 , .accordion:hover i , .accordion:hover h5{
    color: white;
}
.panal{
    padding: 0 15px;
    border-left: 1px solid #131418;
    margin-left: 25px;
    font-size: 14px;
    text-align: justify;
    overflow: hidden;
    transition: all .5s ease-in;
    max-height: 0;
}
