/** Shopify CDN: Minification failed

Line 28:13 Expected identifier but found whitespace
Line 28:14 Unexpected "1px"
Line 28:25 Unexpected "{"
Line 28:34 Expected ":"
Line 32:16 Expected identifier but found whitespace
Line 32:17 Unexpected "1px"
Line 32:28 Unexpected "{"
Line 32:37 Expected ":"

**/
.accordion-section {
  padding: 0;
}

.accordion-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.accordion-title {
  margin-bottom: 40px;
}

.accordion-wrapper {
  border-top: 1px solid {{ section.settings.border_color }};
}

.accordion-item {
  border-bottom: 1px solid {{ section.settings.border_color }};
  background-color: #ffffff;
}

.accordion-header {
  position: relative;
  padding: 20px 0;
  cursor: pointer;
  font-weight: 500;
  transition: color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-item .icon--plus {
  height: 10px;
  width: 10px;
  transition: transform 0.3s ease-in-out;
}

.accordion-item.active .icon--plus  {
  transform: rotate(45deg);
}

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

.accordion-content-inner {
  padding: 0 0 20px 0;
}