/* Style the buttons that are used to open and close the accordion panel */
.og-accordion .og-accordion-button {
  background-color: var(--primary-color-a15);
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  border-radius: 30px;
  outline: none;
  transition: 0.4s;
  margin-bottom: 5px;
  {# note: should be using gap instead, rewrite layout! #}
}

.og-accordion .og-accordion-button-white {
  background-color: #ffffff;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: solid;
  border-width: 2px;
  border-color: #ffffff;
  border-radius: 30px;
  outline: none;
  transition: 0.4s;
  margin-bottom: 5px;
  {# note: should be using gap instead, rewrite layout! #}
}


/* 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) */
.og-accordion .active, .og-accordion-button:hover {
  background-color: var(--primary-color);
  color: white;
}

/* 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) */
.og-accordion .active, .og-accordion-button-white:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Style the accordion panel. Note: hidden by default */
.og-accordion .og-accordion-panel {
  padding: 10px 20px 20px 20px;
  background-color: white;
  display: none;
  overflow: hidden;
  font-size: 0.8em;
}

.og-accordion .og-accordion-panel h3 {
  margin: 10px 0;
}

.og-accordion .og-accordion-button:after {
/*  content: '\02795'; /* Unicode character for "plus" sign (+) */
  font-size: 13px;
  color: #777;
  float: right;
  margin-left: 5px;
}

.og-accordion .active:after {
/*  content: "\2796"; /* Unicode character for "minus" sign (-) */
}