.wtb-mobile-add-to-cart {
  position: fixed;
  left: 0;
  z-index: 1;
  transition: 0.3s;
  height: 0px;
  width: 100%;
  height: 100px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  bottom: -100px;
  background-color: var(--e-global-color-8650409);
  border-top: 1px solid #D9D0CB;
  padding: 20px;
  opacity: 0;
  justify-content: center;

  @media (min-width: 1024px) {
    display: none !important;
  }

  &.show {
    bottom: 0;
    opacity: 1;
  }

  button,
  a {
    background: var(--e-global-color-39dd569) !important;
    font-family: var(--e-global-typography-0bf6c45-font-family), Sans-serif;
    font-size: var(--e-global-typography-0bf6c45-font-size);
    font-weight: var(--e-global-typography-0bf6c45-font-weight);
    line-height: var(--e-global-typography-0bf6c45-line-height);
    color: #fff !important;
    text-align: center;
    font-size: 18px !important;
    display: flex !important;
    justify-content: center;
    font-weight: 500 !important;
    gap: 20px;
    width: 100% !important;
    align-items: center;
    border-radius: 50px;
    padding: 14px 20px !important;

    &.added_to_cart {
      display: none !important;
    }

    &:hover {
      background: var(--e-global-color-571a1ca) !important;
    }
  }
}