.cici-pending-payment {
  position: fixed;
  z-index: 58;
  left: 50%;
  bottom: 18px;
  display: grid;
  grid-template-columns: minmax(0, auto) auto auto;
  align-items: center;
  gap: 16px;
  width: max-content;
  max-width: calc(100vw - 32px);
  padding: 10px 12px 10px 20px;
  border: 1px solid rgba(167, 67, 47, .22);
  border-radius: 999px;
  background: #fffaf1;
  box-shadow: 0 12px 36px rgba(37, 51, 45, .2);
  color: #25332d;
  font: 600 14px/1.25 "DM Sans", system-ui, sans-serif;
  transform: translateX(-50%);
}

.cici-pending-payment__message {
  min-width: 0;
  white-space: nowrap;
}

.cici-pending-payment__time {
  color: #a7432f;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.cici-pending-payment__action {
  min-width: 86px;
  border: 0;
  border-radius: 999px;
  background: #a7432f;
  color: #fff;
  cursor: pointer;
  padding: 10px 16px;
  font: 700 13px/1 "DM Sans", system-ui, sans-serif;
}

.cici-pending-payment__action:disabled {
  cursor: wait;
  opacity: .65;
}

.cici-pending-payment__mobile-action {
  display: none;
}

@media (max-width: 780px) {
  body.cici-pending-payment-visible {
    padding-top: calc(48px + env(safe-area-inset-top));
  }

  .cici-pending-payment {
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    grid-template-columns: minmax(0, 1fr) auto 34px;
    gap: 8px;
    width: 100%;
    max-width: none;
    min-height: calc(48px + env(safe-area-inset-top));
    padding: calc(8px + env(safe-area-inset-top)) 12px 8px;
    border-width: 0 0 1px;
    border-radius: 0;
    box-shadow: 0 6px 20px rgba(37, 51, 45, .16);
    font-size: clamp(11px, 3.15vw, 13px);
    transform: none;
  }

  .cici-pending-payment__message {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .cici-pending-payment__time {
    font-size: 13px;
  }

  .cici-pending-payment__action {
    display: flex;
    width: 34px;
    min-width: 34px;
    height: 34px;
    padding: 0;
    align-items: center;
    justify-content: center;
    font-size: 0;
  }

  .cici-pending-payment__desktop-action {
    display: none;
  }

  .cici-pending-payment__mobile-action {
    display: block;
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.25;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
}
