.mfsc-counter {
  position: fixed;
  left: 50%;
  bottom: 10px;
  z-index: 999999;
  display: flex;
  justify-content: center;
  gap: 5px;
  width: min(310px, calc(100vw - 20px));
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  transform: translateX(-50%);
}

.mfsc-counter__link {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex: 1 1 0;
  min-height: 30px;
  padding: 5px 7px;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(15, 23, 42, .18);
  isolation: isolate;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.mfsc-counter__link::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(120deg, rgba(255, 255, 255, .24), rgba(255, 255, 255, 0) 45%);
  opacity: .9;
}

.mfsc-counter__link:hover,
.mfsc-counter__link:focus {
  color: #fff;
  text-decoration: none;
  filter: saturate(1.06);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, .22);
}

.mfsc-counter__link--instagram {
  background: linear-gradient(135deg, #5b2be0 0%, #c13584 42%, #fd4e4e 70%, #f6a623 100%);
}

.mfsc-counter__link--facebook {
  background: linear-gradient(135deg, #0f5bd8 0%, #1877f2 58%, #4aa3ff 100%);
}

.mfsc-counter__icon {
  display: grid;
  place-items: center;
  flex: 0 0 19px;
  width: 19px;
  height: 19px;
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2);
}

.mfsc-counter__icon svg {
  display: block;
  width: 12px;
  height: 12px;
  fill: currentColor;
}

.mfsc-counter__body {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  flex: 0 1 auto;
  min-width: 0;
  line-height: 1;
}

.mfsc-counter__number {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.mfsc-counter__number--live {
  text-shadow: 0 0 14px rgba(255, 255, 255, .42);
}

.mfsc-counter__label {
  display: inline-block;
  margin-top: 0;
  font-size: 9.5px;
  font-weight: 600;
  opacity: .9;
  text-transform: uppercase;
  white-space: nowrap;
}

.mfsc-counter__badge {
  align-self: flex-start;
  padding: 3px 5px;
  font-size: 8px;
  font-weight: 800;
  line-height: 1;
  color: rgba(255, 255, 255, .96);
  text-transform: uppercase;
  letter-spacing: .04em;
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
}

@media (max-width: 520px) {
  .mfsc-counter {
    left: 50%;
    bottom: 7px;
    gap: 4px;
    width: min(292px, calc(100vw - 14px));
  }

  .mfsc-counter__link {
    min-height: 28px;
    padding: 4px 6px;
  }

  .mfsc-counter__number {
    font-size: 11.5px;
  }

  .mfsc-counter__label {
    font-size: 8.5px;
  }

  .mfsc-counter__badge {
    display: none;
  }
}
