.empty_template {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;

  h3 {
    font-size: 16px;
    color: var(--_gray-900);
    font-weight: 600;
    margin-bottom: 10px;
  }
  p {
    font-size: 12px;
    color: var(--_gray-600);
  }
}

.bulk_order_pad_empty_msg_container {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  img {
    max-width: 100px;
    max-height: 100px;
  }

  .bulk_order_pad_empty_msg {
    font-weight: 700;
    font-size: 24px;
    color: var(--_gray-900);
    line-height: 32px;
  }

  .bulk_order_pad_support_msg {
    font-size: 14px;
    line-height: 20px;
    color: var(--_gray-900);
  }
}

.empty_cart_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 6px;
  margin-top: 24px;
  img {
    max-width: 100px;
    max-height: 100px;
  }

  .empty_msg_title {
    font-weight: 700;
    font-size: 24px;
    color: var(--_gray-900);
    line-height: 32px;
    // margin-top: 24px;
  }

  .empty_msg_desc {
    font-size: 14px;
    line-height: 20px;
    color: var(--_gray-900);
  }
  .emtpy_cart_btn {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    .empty_crt_btn {
      padding: 12px 24px;
      border-radius: 6px;
      background-color: var(--_primary-400);
      font-weight: 600px;
      display: flex;
      align-items: center;
      gap: 8px;
      &:hover {
        background-color: var(--_primary-500);
      }
      .label {
        color: var(--_base-white);
        font-size: 16px;
      }
      svg path {
        stroke: var(--_base-white);
      }
    }
    .empty_wl_btn {
      padding: 12px 24px;
      border-radius: 6px;
      background-color: var(--_base-white);
      color: var(--_primary-400);
      font-weight: 500;
      font-size: 16px;
      &:hover {
        background-color: var(--_gray-50);
      }
    }
  }
}
