@import '@/styles/responsive.scss';

.heroSection {
  height: 100vh;

  &::after {
    position: absolute;
    top: 0px;
    right: -50px;
    z-index: -1;
    background-image: url('/images/website/delivery-image.png');
    width: 1014px;
    height: 100%;
    content: '';

    @media (max-width: 1600px) {
      width: 800px;
    }

    @media (max-width: 1400px) {
      width: 722px;
    }

    @media (max-width: 1200px) {
      display: none;
    }
  }

  @media (max-width: 1100px) {
    p {
      text-align: center;
    }
  }

  @include laptop {
    height: auto;
  }
}

.locationPicker {
  border: 1px solid #387c44;
  // width: 100%;

  .pickerdropDown {
    display: flex;
    justify-content: center;
    align-items: center;

    padding: 6px;
  }

  @media (max-width: 1400px) {
    max-width: 90%;
  }

  @media (max-width: 1100px) {
    margin: 0 auto;
  }

  @include laptop {
    // width: 90%;
    max-width: 100%;
  }

  @media (max-width: 767px) {
    border-radius: 10px !important;
    padding: 10px !important;
    width: 100%;

    p {
      text-align: start !important;
    }
  }

  @media (max-width: 450px) {
    & > div {
      // flex-direction: column !important;

      button {
        padding-right: 8px;
        padding-left: 8px;
        font-size: 12px !important;
      }

      p {
        font-size: 12px;
      }
    }
  }
}
