.btn-liens-rs {
    text-align: right;
    padding: 0rem 0 0;
    display: flex;
    justify-content: flex-end;
    position: relative;
    gap: 0.4vw;
}

.btn-liens-rs .btnrs {
    position: relative;
    display: inline-block;
	width: 4rem;
	height: 4rem;
	background-repeat: no-repeat;
	background-position: center;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	transition: transform 0.4s ease;
}

.btn-liens-rs .btnrs:hover {
	transform: rotate(360deg);
}

.btn-liens-rs .btnrs svg {
    position: relative;
    fill: var(--color1);
    width: 3.5rem;
    height: 3.5rem;
    transition: all .4s ease;
    /*animation: pulse 1.6s infinite ease-in-out;*/
}

.btn-liens-rs .btnrs:hover svg {
    fill: var(--color1);
    animation: none;
}

.btn-liens-rs .btnrs:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: var(--color1);
    opacity: 0.4;
    animation: ripple 1.6s infinite ease-out;
    z-index: 1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.4;
    }
    70% {
        transform: translate(-50%, -50%) scale(1.25);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

.hidden {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-view-more {
    display: flex;
    align-items: center;
    margin-top: 0;
    cursor: pointer;
    font-size: 16px;
}

.plus-icon {
    font-size: 20px;
    margin-right: 8px;
}

.extra-socials-container {
    position: absolute;
    display: none;
    transition: all 0.4s ease;
}

.extra-socials-container.show {
    display: flex !important;
    flex-direction: column;
    width: 3.3rem;
    top: 72px;
    right: 0;
    gap: 0.4vw;
}

.view-more-text {
    font-size: 16px;
    font-weight: bold;
    color: var(--color2);
    background: var(--color0);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.4s ease, background-color 0.4s ease;
}

.view-more-text:hover {
    transform: rotate(360deg);
    background-color: var(--color1);
}

.btn-liens-rs .btnrs.extra-social {
    display: none;
}

.btn-liens-rs .btnrs.extra-social.show {
    display: inline-flex !important;
    animation: fadeIn 0.3s ease;
    opacity: 1;
    margin: 0 0 6px;
}

.btn-liens-rs .btnrs svg.picto.darkpicto {
    filter: drop-shadow(0px 0px 4px #00000082);
    transition: all .4s ease;
}

.btn-liens-rs.btn-rs-center {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 1vh 0;
}

.btn-liens-rs.btn-rs-center .btnrs svg {
    fill: var(--color0);
}

.btn-liens-rs.btn-rs-center .btnrs:hover svg {
    fill: var(--color0);
}

.float-infos .btn-liens-rs.btn-liens-rs {
    position: fixed;
    bottom: 75px;
    right: 5px;
    z-index: 8001;
}

.float-infos .btn-liens-rs .btnrs {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3em;
    height: 3em;
    border-radius: 50%;
    background: var(--color0);
    box-shadow: 0 4px 12px rgba(255,255,255,0.5);
}

.float-infos .btn-liens-rs .btnrs svg {
    fill: #25D366;
    stroke: var(--color0);
    width: 5em;
    height: 5em;

}