.delivery-flow__swiper {
  width: 100%;

  @media screen and (max-width: 768px) {
    overflow-x: scroll;
  }

  .delivery-flow__container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin-bottom: 24px;
    padding: 0;
    gap: 36px;
    list-style: none;

    @media screen and (max-width: 768px) {
      gap: 12px;
    }

    .delivery-flow__item {
      flex: 1;
      background-color: white;
      border-radius: 10px;
      padding-block: 12px;
      padding-inline: 12px;

      @media screen and (max-width: 768px) {
        min-width: 240px;
      }

      .delivery-flow__item--title {
        color: var(--mymoods-gray);
        font-family: var(--mymoods-font-poppins), sans-serif;
        font-weight: var(--mymoods-font-weight-extrabold);
        font-size: 18px;
        margin-bottom: 6px;
        text-align: center;
        display: block;
        min-height: 1lh;
      }

      .delivery-flow__item--icon {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 12px;

        .delivery-flow__item--icon-image {
          width: 180px;
          height: auto;
        }
      }

      .delivery-flow__item--description {
        width: 100%;
        word-break: break-all;
        font-size: 14px;
        color: var(--mymoods-gray);
      }
    }

    .delivery-flow__step__line {
      width: 100%;
      height: 2px;
      background-color: #f5f5f5;
      margin: 0 10px;
    }
  }
}