.fm-share-buttons {
  --fm-sb-bg: transparent;
  --fm-sb-hover-bg: transparent;
  --fm-sb-icon-color: currentColor;
  --fm-sb-hover-icon-color: var(--fm-sb-icon-color);

  display: flex;
  align-items: center;
  gap: var(--fm-sb-gap, 20px);
}

.fm-share-buttons--align-left {
  justify-content: flex-start;
}
.fm-share-buttons--align-center {
  justify-content: center;
}
.fm-share-buttons--align-right {
  justify-content: flex-end;
}

.fm-share-btn {
  background-color: var(--fm-sb-bg);
  color: var(--fm-sb-icon-color);
  transition:
    background-color 0.15s ease,
    color 0.15s ease;

  width: var(--fm-sb-btn-size, 50px);
  height: var(--fm-sb-btn-size, 50px);
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.fm-share-btn:hover {
  background-color: var(--fm-sb-hover-bg);
  color: var(--fm-sb-hover-icon-color);
}

.fm-share-btn__icon {
  display: flex;
  width: 100%;
}
.fm-share-btn svg {
  width: 15px;
  height: 15px;
  display: flex;
  max-width: 100%;
  max-height: 100%;
  fill: currentColor;
}
