@charset "utf-8";
/* CSS Document */

.accordion {
  background-color:#ACDC81; 
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ACDC81), color-stop(40%, #CCE9B1), color-stop(100%, #ECF7E1)); 
  background: -moz-linear-gradient(top, #ACDC81, #CCE9B1, #ECF7E1);
  margin-left: 1.5vw;
  margin-bottom: 0.5vw;
  color: #000009;
  cursor: pointer;
  padding: 18px;
  width: 95%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  font-weight: 900;
  transition: 0.4s;
}

.active, .accordion:hover {
  background-color: #D6F20D; 
}

.panel {
  background-color: white;
  margin-left: 1.5vw;
  margin-bottom: 1.5vw;
  padding: 0 18px;
  width: 95%;
  font-size: 12px;
  text-align: left;
  display: none;
  overflow: hidden;
}