
/* all product page */

.qna{
    max-width: 100%;
    margin: 0 auto;
  }
  /* Button default resets */
  button{
    border: none;
    outline: none;
    cursor: pointer;
  }
  /* Styling the accordion buttons */
  .accordion {
    
    width: 100%;
    background-color: #1b75bd;
    color: #fff;
    font-size: 17px;
    padding: 7px 16px;
    border-radius: 3px;
    margin-bottom: 1px;
    text-align: left;
    border-left: 3px solid #4161b2;
    display: flex;
    border-bottom: 1px solid #ddd;
    border-right: 1px solid #ddd;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #ddd;
    transition:ease-in-out 0.1s;
}
.accordion:hover{
  background-color: #a11a09ed;
}
  /* adding the "plus" sign (+) */ 
  .accordion::after{
    content: '\f078';
    font-size: 20px;
    color: #b8b8b8;
    font-family:FontAwesome;
  }
  .panel{
    background-color: #f9f9fa;
    color: #b8b8b8;
    margin-bottom: 4px;
    overflow: hidden;
    transition: max-height .33s cubic-bezier(.5,0,.1,1);
  }
  .panel > p {
    font-size: 20px;
    padding: 10px 20px;
  }
  .panel-closed{
    max-height: 0;
    overflow: hidden;
  }
  .panel-open {
    max-height: 700px;
    margin-bottom: 20px;
}
  /* active class for accordion, adds the "cross sign (x)" */
  .accordion-active::after {
    content: "\f077";
    font-family:FontAwesome;
    color:#b8b8b8;
  }
  .inner-details span{
    border-bottom: 1px solid #b8b8b8;
    color: #000;
    padding: 7px 0px;
  }