.share i {
	font-size: 1.5em;
	color: var(--shareblue);

}

.share svg {
height: 2.1em;
	color: var(--shareblue);
       margin-top: 0.5em;
}

.share a {
cursor: pointer;
position: relative;
margin: 0.3em;
}
.share a:first-child{
	margin-left:0
}
.share a:hover {
	font-size: 1.1em;
}

.share a:hover .tooltiptext {
visibility: visible;
}

.share .fa-whatsapp{
	padding-left:.1em
}

.tooltiptext {
	visibility: hidden;
	width: fit-content;
       min-width: 8em;
       background-color: var(--rosita);
	color: #fff;
       text-align: center;
       border-radius: 6px;
	padding: .5em 0;
	position: absolute;
	  z-index: 1;
	bottom: 110%;
	left: -150%;
	font-size: .8rem;
}

.tooltiptext.wp {
left: -149%;
width:10em
}

.tooltiptext.bottom {
bottom: -90%;
}

.tooltiptext.copy {
left: -75%
}
.tooltiptext.mail {
left: -85%;
  min-width: 7em;
}
.tooltiptext::after {
content: "";
position: absolute;
top: 100%;
left: 50%;
      margin-left: -5px;
      border-width: 5px;
      border-style: solid;
      border-color: var(--rosita) transparent transparent transparent;
}

.tooltiptext.bottom::after {
top: -30%;
     border-color: transparent transparent var(--rosita) transparent;
}

.share {
display: flex;
	 flex-direction: row;
width: fit-content;
}


#toast {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: var(--rosita);
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 100;
    left: 50%;
    bottom: 30px;
    font-size: 17px;
    border-radius: .5em;
  }
  
  #toast.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
  }
  
  @-webkit-keyframes fadein {
    from {bottom: 0; opacity: 0;} 
    to {bottom: 30px; opacity: 1;}
  }
  
  @keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
  }
  
  @-webkit-keyframes fadeout {
    from {bottom: 30px; opacity: 1;} 
    to {bottom: 0; opacity: 0;}
  }
  
  @keyframes fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
  }
