.sharefallback {
	display:none;
}
.sahrefall {
    margin-top: 4px;
    width: 48px;
    display: flex;
    flex-direction: column;
    gap: 4px;
	displ
}
.sahrefall a {
   color:#FFF !important;
	text-decoration: none !important;
}
	
.itemshare {
	display: flex;
    align-items: center;
    width: 48px;
    height: 48px;
    overflow: hidden;
    text-decoration: none;
    border-radius: 6px 0 0 6px;
    transition: width 0.6s ease;
    color: #fff;
    background: #e4112c;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    justify-content: center;
    font-size: 18px;
}
.sticky-share {
  position: fixed;
  bottom: 30%;
  right: 0;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
	align-items: end;
  flex-direction: column;
  gap: 4px;
}

/* Bouton */
.sticky-share .item {
	display: flex;
	align-items: center;
	width: 48px;
	height: 48px;
	overflow: hidden;
	text-decoration: none;
	border-radius: 6px 0 0 6px; /* arrondi côté gauche */
	transition: width 0.6s ease;
	color: #fff;
	background: #e4112c;
	box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* Hover = texte visible */
.sticky-share .item:hover {
  width: 215px;
}

/* Icône */
.sticky-share .icon {
  width: 48px;
  min-width: 48px;
  text-align: center;
  font-size: 20px;
}

/* Texte */
.sticky-share .label {
  white-space: nowrap;
  padding-left: 4px;
  padding-right: 20px;
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.5s ease;
  font-weight: bold;
}

/* Texte apparaît */
.sticky-share .item:hover .label {
  opacity: 1;
}

.sticky-share  a[href^="tel"] {
    color: #FFF !important;
}
@media screen and (max-width: 750px) {
	.sticky-share {
		bottom: 20px;
        transform: none;
	}
}
@media screen and (max-width: 900px) and (orientation: landscape) {
	.sticky-share {
		bottom: 20px;
        transform: none;
	}
}
