.gs-offer-filter-panel {
  margin: 0 0 1.6rem;
  overflow: hidden;
  border: 1px solid rgba(15, 55, 82, .14);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(11, 42, 64, .07);
}

.gs-offer-filter-panel > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 64px;
  padding: .85rem 1.1rem;
  cursor: pointer;
  list-style: none;
  color: #103a55;
  user-select: none;
}

.gs-offer-filter-panel > summary::-webkit-details-marker {
  display: none;
}

.gs-offer-filter-summary {
  display: grid;
  gap: .15rem;
}

.gs-offer-filter-summary strong {
  font-size: 1rem;
  line-height: 1.25;
}

.gs-offer-filter-summary small {
  color: #607483;
  font-size: .78rem;
}

.gs-offer-filter-chevron {
  width: 11px;
  height: 11px;
  flex: 0 0 auto;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .2s ease;
}

.gs-offer-filter-panel[open] .gs-offer-filter-chevron {
  transform: rotate(225deg) translate(-2px, -2px);
}

.sdv-simple-filters.gs-dynamic-offer-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .65rem;
  margin: 0;
  padding: 1rem 1.1rem 1.15rem;
  border-top: 1px solid rgba(15, 55, 82, .1);
}

.sdv-simple-filters.gs-dynamic-offer-filters a {
  white-space: nowrap;
}

@media (max-width: 700px) {
  .gs-offer-filter-panel {
    margin-bottom: 1.15rem;
    border-radius: 14px;
  }

  .gs-offer-filter-panel > summary {
    min-height: 58px;
    padding: .75rem .9rem;
  }

  .sdv-simple-filters.gs-dynamic-offer-filters {
    flex-wrap: nowrap;
    max-width: 100%;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding: .85rem .9rem 1rem;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }

  .sdv-simple-filters.gs-dynamic-offer-filters a {
    flex: 0 0 auto;
  }
}
