/* Titane custom date picker */
.tdp-field {
  position: relative;
}

.tdp {
  position: absolute;
  z-index: 1300;
  top: calc(100% + 6px);
  left: 0;
  width: min(300px, 92vw);
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  padding: 12px;
  box-sizing: border-box;
}

.tdp__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}

.tdp__title {
  font-size: 15px;
  font-weight: 600;
  color: #191919;
  text-transform: capitalize;
}

.tdp__nav {
  width: 36px;
  height: 36px;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  background: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  color: #191919;
}

.tdp__nav:hover {
  border-color: #fd6c1e;
  color: #fd6c1e;
}

.tdp__week {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 4px;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
}

.tdp__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.tdp__empty {
  height: 36px;
}

.tdp__day {
  height: 36px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  color: #191919;
  cursor: pointer;
}

.tdp__day:hover:not(:disabled) {
  background: #fff3eb;
  color: #fd6c1e;
}

.tdp__day.is-today {
  box-shadow: inset 0 0 0 1px #fd6c1e;
}

.tdp__day.is-selected {
  background: #fd6c1e;
  color: #fff;
}

.tdp__day.is-disabled,
.tdp__day:disabled {
  color: #ccc;
  cursor: not-allowed;
  background: transparent;
}

/* Order total card */
.rent-total {
  background: #f7f7f7;
  border: 1px solid #ececec;
  border-radius: 18px;
  padding: 22px 24px;
  margin: 8px 0 28px;
}

.rent-total__title {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #191919;
}

.rent-total .pay-sum {
  gap: 14px;
}

.rent-total .pay-sum__row {
  padding: 4px 0;
  font-size: 15px;
  line-height: 1.4;
}

.rent-total .pay-sum__row span {
  color: #666;
  padding-right: 16px;
}

.rent-total .pay-sum__row strong {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.rent-total__note {
  margin: 14px 0 0;
  padding-top: 12px;
  border-top: 1px solid #e8e8e8;
  font-size: 13px;
  line-height: 1.45;
  color: #666;
}

.rent-total__note[hidden] {
  display: none !important;
}

