@charset "utf-8";

/* Style the buttons that are used to open and close the accordion panel */
.accordion {
  background-color: #FFF;
  color: #000;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 17px;
  transition: 0.3s;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .accordion:hover {
  background-color: #FFF;
  color: #0c79e7;
}

/* Add plus and minus icons to buttons*/
.accordion:after {
  content: '\002B' '\2000'; /* Unicode character for "plus" sign (+) */
  color: #777;
  font-weight: bold;
  float: left;
  margin-left: 5px;
}

.active:after {
  content: "\2212" "\2000"; /* Unicode character for "minus" sign (-) */
  color: #0c79e7;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
  padding: 0px 0px 0px 44px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}