.pshowgallery-images #container-floating {
    position: absolute;
    width: 35px;
    height: 35px;
    bottom: 10px;
    right: 10px;
    z-index: 50;
    border-radius: 20px;
    transition: all 0.3s;
    opacity: 0;
}

.popup-image-wrapper:hover #container-floating,
.grid-image-wrapper:hover #container-floating,
.list-image-wrapper:hover #container-floating {
    opacity: 1;
}

.pshowgallery-images #floating-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    transform: translate(25%, 25%);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    position: absolute;
    bottom: 10px;
    right: 10px;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.pshowgallery-images #container-floating:hover {
    width: 175px;
    height: 35px;
}

.pshowgallery-images .share {
    display: block;
    position: absolute;
    top: 0;
    bottom: -1px;
    left: -2px;
    color: #fff;
    right: 0;
    padding: 0;
    margin: auto;
    transition: all 0.3s;
}

.pshowgallery-images .nds {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    position: absolute;
    z-index: 300;
    transform: scale(0);
    cursor: pointer;
}

.pshowgallery-images .pinterest-icon {
    background-color: #c8232c;
    background-image: url('../img/pinterest.svg');
    background-size: 35px;
    right: 45px;
    bottom: 0;
    animation-delay: 0.2s;
    animation: bounce-out-nds 0.3s linear;
    animation-fill-mode: forwards;
}

.pshowgallery-images .twitter-icon {
    background-image: url('../img/twitter-x.svg');
    background-color: #212121;
    background-size: 40px;
    background-position: center;
    right: 90px;
    bottom: 0;
    animation-delay: 0.15s;
    animation: bounce-out-nds 0.15s linear;
    animation-fill-mode: forwards;
}

.pshowgallery-images .facebook-icon {
    background-color: #3b5998;
    background-image: url('../img/fb.svg');
    background-size: 35px;
    right: 135px;
    bottom: 0;
    animation-delay: 0.1s;
    animation: bounce-out-nds 0.1s linear;
    animation-fill-mode: forwards;
}

@keyframes bounce-nds {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounce-out-nds {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0);
    }
}

.pshowgallery-images #container-floating:hover .nds {
    animation: bounce-nds 0.1s linear;
    animation-fill-mode: forwards;
}

.pshowgallery-images #container-floating:hover .nd3 {
    animation-delay: 0.08s;
}

.pshowgallery-images #container-floating:hover .nd4 {
    animation-delay: 0.15s;
}

.pshowgallery-images #container-floating:hover .nd5 {
    animation-delay: 0.2s;
}

.pshowgallery-images .social-media-icon {
    font-size: 23px;
    color: white;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0;
    top: 0;
    bottom: 0;
    text-align: center;
    line-height: 35px;
}

.pshowgallery-images .profile {
    border-radius: 50%;
    width: 35px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 20px;
}