.question {
    padding: 10px;
    border-radius: 15px;
    background: white;
    transition: all 0.5s ease;
    margin-bottom: 15px;
    font-size: 14px;
  }


  .arshia-dark .question {
    padding: 10px;
    border-radius: 15px;
    background: rgba(93, 93, 97, 0.9);
    transition: all 0.5s ease;
    margin-bottom: 15px;
    font-size: 14px;
    
  }
  
  .question:hover {
    background-color: #233651;
  }

  .arshia-dark .question:hover {
    background-color: #233651;
  }
  
  .question.open {
    -webkit-box-shadow: 0px 0px 17px -1px rgba(0,0,0,0.13);
    -moz-box-shadow: 0px 0px 17px -1px rgba(0,0,0,0.13);
    box-shadow: 0px 0px 17px -1px rgba(0,0,0,0.13);
  }
  
  .question .faqAnswer { 
    display: none; 
    padding: 20px 10px;
    line-height: 28px;
    color: rgba(0,0,0,0.6);
    font-size: 17px;
  }

  .arshia-dark .question .faqAnswer { 
    display: none; 
    padding: 20px 10px;
    line-height: 28px;
    color: #fff;
    font-size: 17px;
  }
  
  .question.open:hover {
    background: white;
  }

  .arshia-dark .question.open:hover {
    background: rgba(52, 53, 57, 0.9);
  }
  
  .question h4 {
    border-radius: 15px;
    margin: 0px;
    padding: 10px;
    color: black;
    font-weight: 400;
    font-size: 20px;
    cursor: pointer;
  }


  .arshia-dark .question h4 {
    border-radius: 15px;
    margin: 0px;
    padding: 10px;
    color: #fff;
    font-weight: 400;
    font-size: 20px;
    cursor: pointer;
  }
  
  .question h4.open {
    border-radius: 15px;
    margin: 0px;
    color: white;
    background-color: #233651;
    cursor: pointer;
  }


  .arshia-dark .question h4.open {
    border-radius: 15px;
    margin: 0px;
    color: white;
    background-color: rgba(52, 53, 57, 0.9);
    cursor: pointer;
  }
  
  .question:hover h4 {
    color: white;
  }