:root {
  --color-border-light: #ddd;
  --color-border-medium: #eee;
  --color-border-dark: #333;
  --color-border-black: #000;
  --color-background-white: #fff;
  --color-background-overlay: rgba(255, 255, 255, 0.7);
  --color-spinner-light: #bbb;
  --color-spinner-dark: #333;
  --beige: #f3efec;
  --grigino: #61605c;
  --verde: #1d7015;
  --white: #fff;
}

.mm-pf-cont-pills {
  position: relative;
}
.mm-pf-cont-pills .mm_cont__btn {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0px;
  background: var(--grigino);
  border-radius: 999px;
}
.mm-pf-cont-pills .mm_cont__btn .mm-pf__pill {
  padding: 0.6rem 1.3rem;
}
.mm-pf-cont-pills .mm_cont__btn .mm-pf__pill.mm-pf__pill.is-active {
  background: var(--verde);
  color: var(--white);
}

.mm-pf {
  margin: 1rem 0;
  position: relative;
}
.mm-pf[aria-busy=true] {
  pointer-events: none;
}
.mm-pf.is-loading .mm-pf__results::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-background-overlay);
}
.mm-pf.is-loading .mm-pf__results::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 34px;
  height: 34px;
  margin: -17px 0 0 -17px;
  border-radius: 50%;
  border: 3px solid var(--color-spinner-light);
  border-top-color: var(--color-spinner-dark);
  animation: mmspin 0.8s linear infinite;
}
.mm-pf__pills {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  padding-left: 90px;
}
.mm-pf__pills.is-grabbing .mm-pf__pills__wrap {
  cursor: grabbing;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.mm-pf__pills__wrap {
  position: relative;
  overflow: hidden;
  padding: 0;
  background-color: var(--beige);
  border-radius: 999px;
  cursor: grab;
  flex: 1;
}
.mm-pf__pills__wrap::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.2509803922) 100%);
  border-radius: inherit;
}
.mm-pf__pills__internal {
  position: relative;
  z-index: 0;
  display: flex;
  gap: 0.5rem;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0.4rem 10px;
  scrollbar-width: none;
}
.mm-pf__pills__internal::-webkit-scrollbar {
  display: none;
}
.mm-pf__pill {
  border: none;
  background: var(--grigino);
  border-radius: 999px;
  padding: 0.2rem 0.9rem;
  cursor: pointer;
  white-space: nowrap;
  color: var(--white);
}
.mm-pf__pill:hover, .mm-pf__pill:focus, .mm-pf__pill.is-active {
  background: var(--verde);
}
.mm-pf__results {
  margin-top: 1rem;
  position: relative;
  min-height: 60px;
}
.mm-pf__grid {
  display: grid;
  grid-template-columns: repeat(var(--mm-cols, 3), minmax(0, 1fr));
  gap: 30px;
}
@media (max-width: 1170px) {
  .mm-pf__grid {
    grid-template-columns: repeat(min(var(--mm-cols, 3), 2), minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .mm-pf__grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.mm-pf__card {
  border: 1px solid var(--color-border-medium);
  border-radius: 12px;
  padding: 0.75rem;
  background: var(--color-background-white);
}
.mm-pf__title {
  font-size: 1rem;
  margin: 0.5rem 0 0;
}
.mm-pf__pagination {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
}
.mm-pf__page {
  padding: 0.4rem 0.7rem;
  border: 1px solid var(--color-border-light);
  border-radius: 999px;
  background: var(--color-background-white);
  cursor: pointer;
}
.mm-pf__page.is-active {
  border-color: var(--color-border-black);
  font-weight: 600;
}
.mm-pf__empty {
  opacity: 0.7;
}

@keyframes mmspin {
  to {
    transform: rotate(360deg);
  }
}/*# sourceMappingURL=mm-pf.css.map */