.share {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}

.share_item {
  margin-top: 3px;
}

.share_item:not(:last-child) {
  margin-right: 6px;
}

.share_button {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  width: 33px;
  height: 33px;
  appearance: none;
  border: 0;
  
  background-color: var(--oxy_color_1);
  padding: 0;
  cursor: pointer;
  transition: 0.3s;
}

.share_button:hover {
  background-color: var(--oxy_color_4);
}

.share_button > svg {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.share_item:first-child .share_button > svg {
  width: 15px;
  height: 15px;
  pointer-events: none;
}

.share_button > svg path {
  fill: white;
}

#copy-status {
  position: absolute;
  top: calc(100% - 10px);
  left: calc(100% - 10px);
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 0.8rem;
  min-width: 90px;
  background-color: var(--color_secondary);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}

.share_button.active #copy-status {
  opacity: 1;
}
