.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.header {
  font-family: "MaulstickHeader";
  color: #004173;
  font-size: 1.875rem; /*30px*/
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: 0.075rem; /*1.2px*/
  margin: 0;
}

.accordion-header {
  display: flex;
  flex: 1;
  justify-content: space-between;
  width: 100%;
  padding-top: 12px;
  padding-bottom: 12px;
  border: none;
  background-color: #fff;
  border-bottom: 1px solid #a6a6a6;
}

.accordion-item {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.accordion-header h2 {
  font-family: "MaulstickHeader";
  text-align: left;
  font-size: 1.5rem; /*24px*/
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: 0.06rem; /*0.96px*/
  color: #111;
  border: none;
  cursor: pointer;
}

.accordion-question {
  padding-left: 12px;
  padding-right: 12px;
  padding-top: 14px;
  padding-bottom: 14px;
  display: flex;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #a6a6a6;
  border-left: 5px solid #0052bd;
  background-color: #f2f2f2;
  cursor: pointer;
  text-decoration: none;
  color: #111;
}

.accordion-header img {
  align-self: center;
}

.accordion-header.open img {
  transform: rotate(180deg);
}

.accordion-question-text {
  font-size: 1.125rem; /*18px*/
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.05625rem; /* 0.9px */
}

.accordion-question img {
  transform: rotate(270deg);
}

input.search {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 12px;
  padding-left: 40px;
  display: flex;
  height: 35px;
  width: 545px;
  align-items: center;
  gap: 8px;
  border-radius: 10px;
  border: 1.5px solid #a6a6a6;
  background: #fff;
  margin-bottom: 10px;
  margin-top: 10px;
  font-size: 18px;
  font-family: "MaulstickBody";
}

input.search:focus {
  border-radius: 10px;
  border: 1px solid #0052bd;
  background: var(--Black-White, #fff);
  box-shadow: 0 0 0 4px rgba(0, 82, 189, 0.5);
}

label.search-label {
  position: relative;
}

.search {
  padding-right: 40px;
}

.search-clear {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);

  width: 24px;
  height: 24px;
  border-radius: 50%;

  background: #000;
  border: 0;
  padding: 0;

  display: none;
  align-items: center;
  justify-content: center;

  cursor: pointer;
}

.search-clear-x {
  color: #fff;
  font-size: 20px;
  line-height: 1;
  font-family: Arial, Helvetica, sans-serif;
}

label.search-label:before {
  content: "";
  position: absolute;
  padding-right: 12px;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 15px;
  background: url("./search.svg") center / contain no-repeat;
}

.no-results-title {
  font-size: 1.75rem; /*28px*/
  text-align: center;
  font-family: "MaulstickHeader";
  color: #004173;
  margin-bottom: 12px;
}

.no-results-text {
  font-size: 1.375rem; /*22px*/
  text-align: center;
  font-family: "MaulstickBody";
  color: #000;
}

.no-results-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.no-results-icon {
  margin-top: 60px;
  margin-bottom: 60px;
}

body.is-searching #faq-container {
  margin-top: 24px;
}