/******* Do not edit this file *******
Woody ad snippets CSS and JS
Saved: Jan 07 2021 | 19:04:51 */
.acc_input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.acc_row {
  display: flex;
  flex-direction: column;
}
.acc_row .acc_col {
  flex: 1;
}
.acc_row .acc_col:last-child {
  margin-left: 0;
}
/* Accordion styles  */
.acc_tabs {
	max-width: 680px;
  border-radius: 0px;
  overflow: hidden;
}

.acc_tab {
  color: white;
  overflow: hidden;
 margin-bottom:10px;
}
.acc_tab-label {
  display: flex;
  justify-content: space-between;
  padding: 1em;
  background: #4ba765;
  font-weight: bold;
  cursor: pointer;
  /* Icon */
}
.acc_tab-label:hover {
  background: #449d56;
}
.acc_tab-label::after {
  content: "\276F";
  width: 1em;
  height: 1em;
  text-align: center;
  transition: all 0.35s;
}
.acc_tab-content {
  max-height: 0;
  padding: 0 1em;
  color: #000000;
  background: #dceee1;
  transition: all 0.35s;
}
.acc_tab-close {
  display: flex;
  justify-content: flex-end;
  padding: 1em;
  font-size: 0.75em;
  background: #2c3e50;
  cursor: pointer;
}
.acc_tab-close:hover {
  background: #1a252f;
}
input:checked + .acc_tab-label {
  background: #4ba765;
}
input:checked + .acc_tab-label:hover {
  background: #449d56;
}
input:checked + .acc_tab-label::after {
  transform: rotate(90deg);
}
input:checked ~ .acc_tab-content {
    max-height: 100%;
  padding: 1em;
}
