.form-member::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background-image: url("/local/templates/ldpr/images/complaint-back.webp");*/
    background-image: url('/local/templates/ldpr/images/complaint-back2.webp');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    z-index: -1;
}

.form-member__share {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.share-sticker {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    animation: float 3s ease-in-out infinite;
}

.share-sticker img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    transition: transform 0.3s;
}

.share-sticker:hover img {
    transform: scale(1.1);
}

.share-popup {
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    margin-right: 20px;
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.share-popup.active {
    opacity: 1;
    visibility: visible;
}

/* Стрелка попапа */
.share-popup__arrow {
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid white;
}

.share-popup__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    max-width: 280px;
    margin: 15px 0 5px;
}

.share-popup__link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.share-popup__link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Размер иконок */
.share-popup__link img {
    width: 24px;
    height: 24px;
}

.share-popup__close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #999;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}


.form-member--treatment .img {
    position: fixed;
    bottom: 0;
    left: 50%;
    margin-left: -800px;
    max-height: 60vh;
    object-fit: contain;


}

@media screen and (max-width: 767px) {
    .form-member--treatment .top img {
        width: 100% !important;
        height: auto !important;
        margin: auto;
        display: block;
    }

    .share-sticker img {
        width: 100px;
        height: 100px;
    }

    .form-member__share {
        top: 80%;
        z-index: 100;
    }
}
