.lp-share * {
  box-sizing: border-box;
}

.lp-share {
  flex-direction: row;
  align-items: center;
  margin-top: 30px;
  display: flex;
}

@media screen and (min-width: 992px) {
  .lp-share {
    margin-top: 0;
  }
}

.lp-share .dropdown-custom-toggle,
.lp-share .icon.copy-link {
  margin-left: 10px;
  padding: 5px;
  font-weight: 700;
}

.lp-share>div:nth-of-type(1) {
  margin-left: 0;
  padding-left: 0;
}

.lp-share>div.text {
  text-transform: uppercase;
  padding: 5px;
  font-weight: 700;
}

.lp-share>div.icon,
.lp-share div.dropdown-custom-toggle {
  cursor: pointer;
  border: .5px solid #b1b1b1;
  border-radius: 8px;
  height: 42px;
  width: 37px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lp-share>div.icon i,
.lp-share div.dropdown-custom i {
  font-size: 25px;
  position: relative;
  top: 4px;
}

.lp-share .dropdown-custom-toggle {
  cursor: pointer;
  border: 0.5px solid #b1b1b1;
  border-radius: 8px;
}

.lp-share .dropdown-custom {
  position: relative;
}

.lp-share .dropdown-custom-menu.open {
  display: block;
}

.lp-share .dropdown-custom-menu {
  z-index: 1000;
  min-width: 10rem;
  color: #212529;
  text-align: left;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #00000026;
  border-radius: 0.25rem;
  margin: 0;
  padding: 0.5rem 0;
  font-size: 1rem;
  list-style: none;
  display: none;
  position: absolute;
}

.lp-share .dropdown-custom-item {
  width: 100%;
  clear: both;
  color: #333333;
  text-align: inherit;
  white-space: nowrap;
  background-color: #0000;
  border: 0;
  padding: 0.25rem 1rem;
  font-weight: 400;
  text-decoration: none;
  display: block;
}

.lp-share .dropdown-custom-item:hover, .lp-share .dropdown-custom-item:focus {
	color: #1e2125;
    background-color: #e9ecef;
}

.lp-share [tooltip] {
  position: relative;
}

.lp-share [tooltip]::before,
.lp-share [tooltip]::after {
  text-transform: none;
  font-size: .9em;
  line-height: 1;
  user-select: none;
  pointer-events: none;
  position: absolute;
  display: none;
  opacity: 0;
}

.lp-share [tooltip]::before {
  content: "";
  border: 5px solid transparent;
  z-index: 1001;
}

.lp-share [tooltip]::after {
  content: attr(tooltip);
  text-align: center;
  min-width: 3em;
  max-width: 21em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 1ch 1.5ch;
  border-radius: .3ch;
  box-shadow: 0 1em 2em -.5em rgba(0, 0, 0, 0.35);
  background: #333;
  color: #fff;
  z-index: 1000;
}

.lp-share [tooltip]:hover::before,
.lp-share [tooltip]:hover::after {
  display: block;
  opacity: 1;
}

/* don't show empty tooltips */
.lp-share [tooltip='']::before,
.lp-share [tooltip='']::after {
  display: none !important;
}

.lp-share [tooltip][flow^="down"]::before {
  top: 100%;
  border-top-width: 0;
  border-bottom-color: #333;
}

.lp-share [tooltip][flow^="down"]::after {
  top: calc(100% + 5px);
}

.lp-share [tooltip][flow^="down"]::before,
.lp-share [tooltip][flow^="down"]::after {
  left: 50%;
  transform: translate(-50%, .5em);
}