.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;
}

.container_share {
  display: none; 
  justify-content: center;
  align-items: center;
  position: fixed; 
  z-index: 50; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  overflow: auto; 
  background-color: rgb(0,0,0); 
  background-color: rgba(0,0,0,0.4); 
}

.container_share_content {
  position: relative;
  background-color: #fefefe;
  padding: 20px;
  border: 1px solid #888;
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.container_share .close {
  position: absolute;
  right: 20px;
  top: 0;
  color: #aaa;
  font-size: 35px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .container_share_content {
    width: 70%;
  }
 
}