.accordion-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4px;
  background-color: #fff;
  cursor: pointer;
  padding: 16px 18px;
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(83, 83, 83, 0.2);
  text-align: left;
  outline: none;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  transition: 0.4s;
  color: rgba(83, 83, 83, 1);
}

.accordion-header {
  font-size: 24px;
  line-height: 130%;
  letter-spacing: -0.4px;
  font-weight: bold;
  margin: 0;
  text-align: center;
  color: #000000;
}

.accordion-subheader {
  font-size: 14px;
  line-height: 17px;
  font-weight: 500;
  margin: 12px 0 16px 0;
}

#accordion-input {
  font-size: 14px;
  line-height: 17px;
  font-weight: 400;
  padding: 16px 11px 17px 40px;
  border-radius: 8px;
  border: 1px solid rgba(83, 83, 83, 0.2);
  background: #fff;
  outline: none;
  width: 100%;
  color: rgba(1, 1, 1, 1);

}

#accordion-input:disabled {
  background: #e8e0e0;
}

.accordion-input-wrapper {
  position: relative;
}

.accordion-input-wrapper:after {
  content: "";
  display: block;
  position: absolute;
  top: 16px;
  left: 16px;
  width: 16px;
  height: 16px;
  background-image: url("../img/MagnifyingGlass.png");
}

.accordion-icon {
  width: 12px;
  min-width: 12px;
  height: 12px;
}

.accordion-icon > svg {
  fill: currentColor;
  stroke: currentColor;
}

.active {
  border: none;
  border-bottom: 1px solid transparent;
  background-color: #F185001a;
}

.panel {
  padding: 0 16px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  border: none;
  box-shadow: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  margin-bottom: 0px;
  background-color: #F185001a;
  white-space: break-spaces;
}

.panel-content {
  padding: 8px 0;
}

.panel-content ul {
  white-space: normal;
  list-style-type: none;
}

.panel-content ul > li:before {
  content: "- ";
}

.panel-header, .panel-text {
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  margin: 1px 0 14px 0;
}

.panel-text {
  font-weight: 400;
}

.panel p:empty {
  display: none;
}

.panel p {
  margin-bottom: 8px;
  color: #535353;
  font-size: 14px;
  line-height: 17px;
}

.panel a {
  color: #F18500;
}

.accordion-toggle.active + .panel {
  border-bottom: 1px solid rgba(83, 83, 83, 0.2);
}

.accordion-toggle.hidden + .panel {
  display: none;
}

.accordion-toggle.active .accordion-icon {
  transform: rotate(180deg);
  color: #F18500;
}

.hidden {
  display: none;
}

.accordion-empty {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(83, 83, 83, 1);
  padding: 16px 18px;
  margin-top: 20px;
}

@media (max-width: 500px) {
	.accordion-toggle {
    font-size: 14px;
    line-height: 1.5;
    padding: 12px 0px;
	}

  .panel {
    font-size: 12px;
    line-height: 1.5;
    padding: 0;
  }

  .panel p {
    margin-bottom: 8px;
  }
}
