input[type="number"] {
  background: #fff;
  border: 1px solid #cbd8df;
  border-radius: 0;
  color: var(--ink);
  outline: 0;
  padding: 14px 15px;
  transition: border .2s, box-shadow .2s;
  width: 100%;
}

input[type="number"]:focus {
  border-color: var(--blue-bright);
  box-shadow: 0 0 0 3px rgba(54, 115, 167, .12);
}

.party-editor {
  display: grid;
  gap: 12px;
}

.party-editor__list {
  display: grid;
  gap: 9px;
}

.party-editor__row {
  align-items: center;
  display: grid;
  gap: 10px;
  grid-template-columns: 34px minmax(0, 1fr) 44px;
}

.party-editor__number {
  align-items: center;
  background: rgba(36, 77, 124, .08);
  border-radius: 50%;
  color: var(--blue);
  display: flex;
  font-weight: 700;
  height: 32px;
  justify-content: center;
  width: 32px;
}

.party-editor__row input {
  margin: 0;
}

.party-editor__remove,
.party-editor__add {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--blue);
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
}

.party-editor__remove {
  font-size: 24px;
  height: 44px;
  width: 44px;
}

.party-editor__remove:disabled,
.party-editor__add:disabled {
  cursor: default;
  opacity: .35;
}

.party-editor__actions {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.party-editor__add {
  gap: 7px;
  min-height: 42px;
  padding: 8px 14px;
}

.party-editor__add:hover:not(:disabled),
.party-editor__remove:hover:not(:disabled) {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.party-editor__actions small {
  color: #76828b;
  font-weight: 700;
}

.hotel-booking-note {
  align-items: center;
  background: linear-gradient(135deg, rgba(185, 212, 230, .2), rgba(255, 255, 255, .75));
  border: 1px dashed rgba(36, 77, 124, .35);
  display: grid;
  gap: 2px;
  grid-template-columns: 58px 1fr;
  margin-top: 16px;
  padding: 14px 16px;
}

.hotel-booking-note__mark {
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--blue);
  display: flex;
  font-family: var(--serif);
  font-size: 30px;
  grid-row: 1 / 3;
  height: 46px;
  justify-content: center;
  width: 46px;
}

.hotel-booking-note strong {
  color: var(--blue);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.2;
}

.hotel-booking-note small {
  color: #76828b;
  font-size: 11px;
  line-height: 1.35;
}

.hotel-booking-note__phone {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  grid-column: 2;
  margin-top: 6px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.gift-note {
  align-items: flex-start;
  background: linear-gradient(135deg, rgba(184, 154, 98, .13), rgba(255, 255, 255, .78));
  border: 1px solid rgba(184, 154, 98, .42);
  display: grid;
  gap: 15px;
  grid-template-columns: 42px 1fr;
  margin: 10px 0 28px;
  padding: 20px;
}

.gift-note__mark {
  align-items: center;
  background: var(--paper);
  border: 1px solid rgba(184, 154, 98, .45);
  border-radius: 50%;
  color: var(--gold);
  display: flex;
  font-size: 15px;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.gift-note strong {
  color: var(--blue);
  display: block;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.2;
  margin: 2px 0 7px;
}

.gift-note p {
  color: #65717b;
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
}

.gift-note__bank {
  border-top: 1px solid rgba(184, 154, 98, .35);
  display: grid;
  gap: 5px;
  margin: 13px 0 0;
  padding-top: 11px;
}

.gift-note__bank div {
  display: grid;
  gap: 9px;
  grid-template-columns: 105px 1fr;
}

.gift-note__bank dt,
.gift-note__bank dd {
  font-size: 12px;
  margin: 0;
}

.gift-note__bank dt {
  color: var(--gold);
  font-weight: 800;
}

.gift-note__bank dd {
  color: #65717b;
  overflow-wrap: anywhere;
}

@media (max-width: 480px) {
  .gift-note {
    gap: 11px;
    grid-template-columns: 32px 1fr;
    padding: 16px;
  }

  .gift-note__mark {
    height: 30px;
    width: 30px;
  }
}
