.pisell-hdl-kiosk {
  .hdl-fulfillment-screen {
    width: 100%;
    min-height: 100%;
    overflow: auto;
    padding: 58px 58px 184px;
    background:
      radial-gradient(
        circle at 82% 8%,
        rgba(245, 184, 75, 0.22),
        transparent 22rem
      ),
      linear-gradient(180deg, #fff, #f1f4f8);
  }

  .hdl-fulfillment-screen__heading p {
    margin: 0;
    color: #b20d12;
    font-size: 25px;
    font-weight: 950;
    text-transform: uppercase;
  }

  .hdl-fulfillment-screen__heading h1 {
    max-width: 886px;
    margin: 11px 0 30px;
    color: #111827;
    font-size: 56px;
    font-weight: 950;
    line-height: 0.95;
  }

  .hdl-fulfillment-screen__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 19px;
  }

  .hdl-fulfillment-card {
    position: relative;
    display: grid;
    min-height: 513px;
    grid-template-rows: minmax(281px, 1fr) auto;
    overflow: hidden;
    border: 2px solid #d6dbe5;
    border-radius: 24px;
    padding: 0;
    background: #fff;
    color: #111827;
    text-align: left;
    box-shadow: 0 19px 45px rgba(17, 24, 39, 0.1);
    cursor: pointer;
    transition:
      transform 160ms ease,
      border-color 160ms ease,
      box-shadow 160ms ease;
  }

  .hdl-fulfillment-card:hover {
    transform: translateY(-3px);
    border-color: #f5b84b;
    box-shadow: 0 26px 58px rgba(17, 24, 39, 0.16);
  }

  .hdl-fulfillment-card:active {
    transform: scale(0.99);
  }

  .hdl-fulfillment-card__visual {
    min-width: 0;
    min-height: 0;
    overflow: hidden;
  }

  .hdl-fulfillment-card__visual,
  .hdl-fulfillment-card__visual svg {
    display: block;
    width: 100%;
    height: 100%;
  }

  .hdl-fulfillment-card__copy {
    display: block;
    min-height: 145px;
    padding: 35px;
  }

  .hdl-fulfillment-card__copy strong,
  .hdl-fulfillment-card__copy small {
    display: block;
  }

  .hdl-fulfillment-card__copy strong {
    font-size: 35px;
    font-weight: 950;
    line-height: 1;
  }

  .hdl-fulfillment-card__copy small {
    max-width: calc(100% - 82px);
    margin-top: 13px;
    color: #667085;
    font-size: 26px;
    font-weight: 850;
  }

  .hdl-fulfillment-card__chevron {
    position: absolute;
    right: 26px;
    bottom: 30px;
    display: grid;
    width: 70px;
    aspect-ratio: 1;
    place-items: center;
    border-radius: 50%;
    background: #b20d12;
    color: #fff;
  }

  .hdl-fulfillment-card__chevron svg {
    width: 48%;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
  }

  .hdl-fulfillment-screen > .hdl-inline-error {
    width: min(778px, 100%);
    margin: 26px auto 0;
  }
}
