/* Container */
.meta-reading-time {
  margin-top: 0;
  transform: translateY(2px);
}
.social-share-custom {
  margin: 2px 0 0 15px;
  display: flex;
  padding: 0;
}
.single-collections .social-share-custom {
	margin: 0px 0px 5px -5px;
}
.single-collections .social-share-custom svg:hover {
 color: #000; 
}
.social-share-custom svg:hover {
 color: #fc624a; 
}

.social-share-custom svg{
	width: 30px;
}
.social-share-custom li {
  list-style: none;
  margin-right: 7px;
}
.social-share-custom li a,
.social-share-custom li .printButton,
.social-share-custom li .copyToClipboard {
  display: block;
}
.social-share-custom a {
  background: none !important;
    background-image: none;
  background-image: none !important;
}

/* Icons */
.social-share-custom img {
  width: 30px;
  display: inline-block;
  vertical-align: middle;
  transition: filter 0.3s ease;
}
.bc-icon-email img {
  margin-top: 2px;
}
.bc-icon-print img {
  margin-top: 2px;
}
.bc-icon-copy img {
  margin-top: 2px;
}
/* Tooltips */
.tooltip-wrapper { position: relative; display: inline-block; }
.tooltip-text {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: #fff;
  padding: 5px 8px;
  border-radius: 5px;
  font-size: 12px;
  white-space: nowrap;
  transition: opacity 0.3s ease;
  z-index: 10;
}
.tooltip-wrapper:hover .tooltip-text { visibility: visible; opacity: 1; }
.tooltip-wrapper.disabled .tooltip-text { display: none; }

/* Copy status */
.fade {
  opacity: 0;
  display: inline-block;
  margin-left: 5px;
  position: relative;
  top: 3px;
  color: #5046ff;
  transition: opacity 0.3s ease;
}
.single-collections .fade {
  color: #fff;
}
.fade.show { opacity: 1; }
