
.mealz-my-meals-button {
  cursor: pointer;
  width: 400px;
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translate(-50%);
  z-index: 100;
  display: inline-flex;
  min-height: 48px;
  padding: 0 16px;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border-radius: 1000px;
  background: var(--mealz-ds-color-primary-900, #10323f);
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.20);

  @media (max-width: 607px) {
    width: max-content;
    z-index: 2;
  }

  &.hidden {
    display: none;
  }

  .mealz-my-meals-button__text {
    font-weight: bold;
    color: var(--mealz-ds-color-neutral-white, #fff);
    white-space: nowrap;
  }

  .mealz-my-meals-button__second__icon {
    transform: rotate(-90deg);
  }
}
