.share-icon{
  fill: var(--col-green-1); 
  stroke:none;
  transition: all 0.3s;
  cursor: pointer;
}

.share-icon svg {
  width: 1.2em;
  height: 1.2em;
  fill: var(--col-green-1); 
}

.share-icon:hover{
  fill: var(--col-green-1); 
  stroke:none;
  transform: scale(1.2);
}

/* Mobile social buttons display */
#socials-parent-cont{
	display: none;
}

@media only screen and (max-width: 992px) {
    #socials-parent-cont{
		display: flex;
		justify-content: space-between;
		padding-top: 2rem;
	}
}

/* Side socials btns */
#side-social-btns {
  text-align: center;
  font-size: 0.9rem;
  padding-top: 0rem;
  position: -webkit-sticky;
  position: sticky; 
  top: 12rem;
}

#side-social-btns-container {
	position: absolute; 
	right: 0; 
	top: 0; 
	height: 60rem; 
	width: 100%;
	z-index: 1;
}

#side-social-rounded-bg{
	width: 50%; 
	background-color: rgb(255,255,255,0.7);;
	border-radius: 40px;
	position: relative;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.icon-sub-text{
  opacity: 0;
  font-size: 0.5rem;
  font-weight: 500;
  color: var(--col-green-1);
  transition: all 0.3s ease-in-out;
}

.share-icon:hover .icon-sub-text{
  display: block;
  opacity: 1;
}