.chip-offer-selector {
  border: 0;
  margin: 1.25rem 0;
  padding: 0;
}

.chip-offer-selector legend {
  color: #171c20;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .65rem;
}

.chip-offer-selector__options {
  display: grid;
  gap: .65rem;
}

.chip-offer-option {
  align-items: center;
  background: #fff;
  border: 1px solid #dbe2e6;
  border-radius: 12px;
  cursor: pointer;
  display: grid;
  gap: .8rem;
  grid-template-columns: auto minmax(0, 1fr) auto;
  padding: .85rem .95rem;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}

.chip-offer-option:hover,
.chip-offer-option.is-selected {
  background: #f7fcf9;
  border-color: #00a968;
  box-shadow: 0 0 0 1px rgba(0, 169, 104, .12);
}

.chip-offer-option input {
  accent-color: #00a968;
  height: 18px;
  margin: 0;
  width: 18px;
}

.chip-offer-option__copy {
  display: grid;
  gap: .12rem;
  min-width: 0;
}

.chip-offer-option__copy strong {
  color: #171c20;
  font-size: .96rem;
  line-height: 1.25;
}

.chip-offer-option__copy small,
.chip-offer-selector__note {
  color: #68757d;
  font-size: .78rem;
}

.chip-offer-option__price {
  color: #171c20;
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
}

.chip-offer-selector__note {
  margin: .55rem 0 0;
}

.chip-delivery-single {
  align-items: center;
  background: #f7fcf9;
  border: 1px solid #dcebe3;
  border-radius: 10px;
  display: flex;
  gap: .65rem;
  margin: 1rem 0;
  padding: .7rem .85rem;
}

.chip-delivery-single span {
  color: #68757d;
  font-size: .82rem;
}

.chip-delivery-single strong {
  color: #171c20;
  font-size: .9rem;
}

@media (max-width: 520px) {
  .chip-offer-option {
    align-items: start;
    grid-template-columns: auto minmax(0, 1fr);
  }

  .chip-offer-option__price {
    grid-column: 2;
  }
}
