section[id*="list-custom-acc"] {
  --tp-max-w: 1100px;
  --tp-radius: 12px;
  --tp-card-gap: 20px;
  --tp-img-h: 150px;
  --tp-img-radius: 10px;
  --tp-margin-bottom: 22px;
  --tp-sub-margin: 6px 0 0;
  --tp-font-size: 16px;
  --tp-toggle-size: 32px;
  --tp-toggle-bg: #f44300;
  --tp-toggle-color: #fff;
  --tp-divider: #ddd;
  --tp-mobile-img-h: 190px;
}
section[id*="list-custom-acc"] .tp-accordion {
  max-width: var(--tp-max-w);
  margin: auto;
}
section[id*="list-custom-acc"] .tp-item {
  background-color: var(--list-section-simple-card-color);
  border-radius: var(--tp-radius);
  margin-bottom: var(--tp-margin-bottom);
  overflow: hidden;
}
section[id*="list-custom-acc"] .tp-header {
  display: grid;
  grid-template-columns: 25% 1fr auto;
  align-items: center;
  gap: var(--tp-card-gap);
  padding: var(--tp-card-gap);
  cursor: pointer;
  position: relative;
  z-index: 10;
}
section[id*="list-custom-acc"] .tp-img {
  width: 100%;
  height: var(--tp-img-h);
  object-fit: cover;
  border-radius: var(--tp-img-radius);
}
section[id*="list-custom-acc"] .tp-title.list-item-content__title {
  margin: 0;
}
section[id*="list-custom-acc"] .tp-sub.list-item-content__description {
  margin: var(--tp-sub-margin);
}
section[id*="list-custom-acc"] .tp-accordion p {
  font-size: var(--tp-font-size);
}
section[id*="list-custom-acc"] .tp-toggle-wrap {
  display: flex;
  align-items: center;
  z-index: 11;
}
section[id*="list-custom-acc"] .tp-toggle {
  width: var(--tp-toggle-size);
  height: var(--tp-toggle-size);
  border-radius: 50%;
  background: var(--tp-toggle-bg);
  color: var(--tp-toggle-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  pointer-events: auto;
}
section[id*="list-custom-acc"] .tp-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
section[id*="list-custom-acc"] .tp-content-inner.list-item-content__description {
  padding: 0 0 20px;
  margin-left: calc(25% + var(--tp-card-gap));
  margin-right: var(--tp-card-gap);
  position: relative;
}
section[id*="list-custom-acc"] .tp-content-inner.list-item-content__description::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  width: calc(100% - 40px);
  height: 1px;
  background: var(--tp-divider);
}
section[id*="list-custom-acc"] .tp-item.active .tp-content {
  max-height: 800px;
}
section[id*="list-custom-acc"] .tp-btn.btn.btn--border.theme-btn--primary-inverse.sqs-button-element--primary {
  text-decoration: none;
}
@media (max-width: 767px) {
  section[id*="list-custom-acc"] .tp-header {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 16px;
  }
  section[id*="list-custom-acc"] .tp-img {
    grid-column: 1 / -1;
    height: var(--tp-mobile-img-h);
  }
  section[id*="list-custom-acc"] .tp-content-inner.list-item-content__description {
    margin-left: var(--tp-card-gap);
    margin-right: var(--tp-card-gap);
  }
}