/**
* Theme Name: Biztech Child
* Description: This is a child theme of Biztech, generated by Merlin WP.
* Author: <a href="https://themeforest.net/user/template_path">template_path</a>
* Template: biztech
* Version: 1.0.2
*/

/* Wrapper */
/* Share section wrapper */
.share-section {
  display:inline-block !important;
}

/* Share label */
.share-label {
  display: inline-block;
  cursor: pointer;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-size: 14px;
  position: relative;
	background-color:#037BC3;
	cursor:pointer;
	padding:10px 25px;
	border-radius:4px;
}
.share-label a {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Hidden links initially */
.share-links {
 display:none;
	transition:.3s all ease;
  margin-top: 8px;
  gap: 8px;
  flex-wrap: wrap;
  padding: 10px;
	transform:scaleX(0);
	
}

/* Show on hover */
.share-section:hover .share-links {
  transition:.3s all ease;
	transform:scaleX(1);
display:flex
}

/* Each button */
.share-links a {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  padding: 6px 12px;
  font-size: 14px;
  border-radius: 5px;
  color: #fff;
}

/* Official colors */
.share-links a.fb { background: #1877F2; }
.share-links a.linkedin { background: #0A66C2; }
.share-links a.whatsapp { background: #25D366; }
.share-links a.twitter { background: #000; }
.share-links a.copy-link { background: #555; }

/* Hover effect */
.share-links a:hover {
  opacity: 0.85;
}
