.option-group[data-collapsible-ready] {
  padding: 0;
  overflow: hidden;
}

.option-group-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  border: 0;
  padding: 18px 18px;
  color: #fff;
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
  text-align: left;
  cursor: pointer;
}

.option-group-toggle span {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.option-group-toggle strong {
  font-size: 20px;
  font-weight: 900;
}

.option-group-toggle small {
  color: rgba(255,255,255,.64);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.45;
}

.option-group-toggle em {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  padding: 8px 10px;
  color: #fff4e4;
  background: rgba(0,0,0,.32);
  font-style: normal;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.option-group-toggle em::after {
  content: "+";
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
}

.option-group[data-collapsed="false"] .option-group-toggle em::after {
  content: "−";
}

.option-group[data-collapsible-ready] > p,
.option-group[data-collapsible-ready] > .option-warning,
.option-group[data-collapsible-ready] > .option-grid {
  margin-left: 16px;
  margin-right: 16px;
}

.option-group[data-collapsible-ready] > .option-grid {
  margin-bottom: 16px;
}

.option-group[data-collapsed="true"] > p,
.option-group[data-collapsed="true"] > .option-warning,
.option-group[data-collapsed="true"] > .option-grid {
  display: none !important;
}

.option-group[data-collapsed="false"] > p {
  margin-top: 14px;
}

@media (max-width: 720px) {
  .option-group-toggle {
    align-items: flex-start;
    padding: 15px;
  }

  .option-group-toggle strong {
    font-size: 17px;
  }

  .option-group-toggle small {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 12px;
  }

  .option-group-toggle em {
    padding: 7px 8px;
    font-size: 11px;
  }
}
