.shopify-section--banner-text-with-icons {
  box-shadow: 0px 3px 6px #00000014;
  position: relative;
  z-index: 2;

  & .section__color-wrapper {
    padding: 0;
  }

  & .container {
    padding-top: 10px;
    padding-bottom: 10px;

    & native-carousel {
      position: relative;

      &.content-inline .text-with-icons__item {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 9px;

        & .icon-background {
          margin: unset;
        }
      }

      & .text-with-icons__icon-wrapper {
        display: none;
        margin-bottom: 0;

        @media screen and (min-width: 1000px) {
          display: block;

          &.icon-background {
            background: #EDEDED;
            height: 39px;
            width: 39px;
            min-width:39px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0 auto;
          }
        }
      }

      & .text-with-icons__content-wrapper {
        & p {
          font: normal normal normal 12px/16px var(--text-font-family);
          letter-spacing: 0px;
          text-transform: none;
          margin: 0;
          
          &.heading--small {
            font: normal normal 600 13px/18px var(--text-font-family);
          }
        }
      }

      .banner-text-with-icons-prev-next {
        position: absolute;
        top: -10px;
        width: 100%;
        min-height: 54px;
        height: calc(100% + 20px);
        display: flex;
        justify-content: space-between;
        align-items: center;
        pointer-events: none;

        & .prev-next-button {
          height: 22px;
          width: 22px;
          background: #E6E6E6;
          border: none;

          &:disabled {
            svg path {
              stroke: #BCBCBC;
            }
          }
        }

        @media screen and (min-width: 1000px) {
          display: none;
        }
      }
    }
  }
}