.customer-styles {
  /* START article: accordeon */
  /* END article: accordeon */
}

.customer-styles .template_accordeon {
  position: relative;
  background-color: #fff;
}

.customer-styles .template_accordeon.background-color .list-item.open .item-header::after {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.customer-styles .template_accordeon .global-grid {
  box-sizing: border-box;
  width: 100%;
}

.customer-styles .template_accordeon .content-width {
  display: grid;
  gap: 32px;
  justify-items: center;
  grid-column: 1/7;
}

@media (min-width: 768px) {
  .customer-styles .template_accordeon .content-width {
    grid-column: 3/15;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .customer-styles .template_accordeon .content-width {
    grid-column: 2 / 16;
  }
}

.customer-styles .template_accordeon .content-width .buttons-container {
  margin-top: 0;
}

.customer-styles .template_accordeon .headline-container {
  width: 100%;
  text-align: center;
  margin-bottom: 32px;
  grid-column: 1/7;
}

@media (min-width: 768px) {
  .customer-styles .template_accordeon .headline-container {
    grid-column: 3/15;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .customer-styles .template_accordeon .headline-container {
    grid-column: 2 / 16;
  }
}

.customer-styles .template_accordeon .list-container {
  list-style: none;
  justify-self: stretch;
  margin: 0;
  padding: 0;
  color: currentColor;
}

.customer-styles .template_accordeon .list-container .list-item {
  border-top: 1px solid currentColor;
  position: relative;
  list-style-type: none;
  margin-top: -1px;
  padding: 10px;
}

@media (min-width: 768px) {
  .customer-styles .template_accordeon .list-container .list-item {
    padding: 0 10px;
  }
}

.customer-styles .template_accordeon .list-container .list-item:last-child {
  border-bottom: 1px solid currentColor;
}

.customer-styles .template_accordeon .item-header {
  font-family: inherit;
  align-items: center;
  background: transparent;
  color: currentColor;
  border: 0;
  cursor: pointer;
  display: grid;
  padding: 0;
  width: 100%;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  padding: 0px;
}

@media (min-width: 768px) {
  .customer-styles .template_accordeon .item-header {
    grid-template-columns: repeat(26, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .customer-styles .template_accordeon .item-header {
    padding: 32px 0;
  }
}

@media (min-width: 768px) {
  .customer-styles .template_accordeon .item-header {
    gap: 8px;
  }
}

.customer-styles .template_accordeon .item-header .item-headline {
  grid-column: 1/10;
  display: inline-block;
  text-align: left;
  width: 100%;
}

@media (min-width: 768px) {
  .customer-styles .template_accordeon .item-header .item-headline {
    grid-column: 1/26;
  }
}

.customer-styles .template_accordeon .item-header .item-header-icon {
  grid-column: 10/11;
  height: 20px;
  width: 20px;
  flex-shrink: 0;
  margin-left: auto;
  position: relative;
}

@media (min-width: 768px) {
  .customer-styles .template_accordeon .item-header .item-header-icon {
    grid-column: 26/27;
  }
}

@media (min-width: 768px) {
  .customer-styles .template_accordeon .item-header .item-header-icon {
    height: 24px;
  }
}

@media (min-width: 768px) {
  .customer-styles .template_accordeon .item-header .item-header-icon {
    width: 24px;
  }
}

.customer-styles .template_accordeon .item-header .item-header-icon::before, .customer-styles .template_accordeon .item-header .item-header-icon::after {
  background-color: currentColor;
  content: '';
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: transform .5s, opacity .5s;
}

.customer-styles .template_accordeon .item-header .item-header-icon::before {
  height: 100%;
  width: 3px;
}

.customer-styles .template_accordeon .item-header .item-header-icon::after {
  height: 3px;
  width: 100%;
}

.customer-styles .template_accordeon .item-content-wrapper {
  display: grid;
  transition: grid-template-rows .5s;
  grid-template-rows: 0fr;
}

.customer-styles .template_accordeon .item-image-container {
  order: 1;
  position: relative;
  width: 100%;
}

@media (min-width: 768px) {
  .customer-styles .template_accordeon .item-image-container {
    grid-column: 8 / 13;
    grid-row: 1 / 2;
  }
}

.customer-styles .template_accordeon .item-image-container .image {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: middle;
  width: 100%;
}

.customer-styles .template_accordeon .list-item.open .item-content-wrapper {
  grid-template-rows: 1fr;
}

.customer-styles .template_accordeon .list-item.open .item-content {
  margin-block: 20px 26px;
}

.customer-styles .template_accordeon .list-item.open .item-header {
  position: relative;
  padding-bottom: 10px;
}

@media (min-width: 768px) {
  .customer-styles .template_accordeon .list-item.open .item-header {
    padding-bottom: 32px;
  }
}

.customer-styles .template_accordeon .list-item.open .item-header::after {
  content: '';
  position: absolute;
  width: calc(100% + 20px);
  border-bottom: 1px solid var(--theme-border);
  bottom: 0;
  right: -10px;
}

.customer-styles .template_accordeon .list-item.open .item-header-icon::before {
  transform: translate(-50%, -50%) rotate(90deg);
}

.customer-styles .template_accordeon .list-item.open .item-header-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(-90deg);
}

.customer-styles .template_accordeon .item-text-container {
  display: grid;
  gap: 32px;
  order: 2;
}

@media (min-width: 768px) {
  .customer-styles .template_accordeon .item-text-container {
    grid-column: 1 / 7;
    grid-row: 1 / 2;
  }
}

.customer-styles .template_accordeon .item-text-container:last-child {
  grid-column: 1 / 13;
}

.customer-styles .template_accordeon .item-text-container .typo-text {
  line-height: 26px;
  letter-spacing: 0.17px;
}

.customer-styles .template_accordeon .item-content {
  align-items: start;
  display: grid;
  gap: 32px 10px;
  margin-block: 0;
  overflow: hidden;
  transition: margin-block 500ms;
}

@media (min-width: 768px) {
  .customer-styles .template_accordeon .item-content {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}
