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);
}

.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;
}

.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;
}

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

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