.wpdc-floating-wrapper {

    position: fixed;

    right: 20px;
    bottom: 20px;

    display: flex;
    flex-direction: column;

    gap: 10px;

    z-index: 999999;
}

.wpdc-btn {

    display: flex;

    align-items: center;
    justify-content: center;

    width: 60px;
    height: 60px;

    text-decoration: none;

    transition: .3s;
}

.wpdc-btn:hover {

    transform: scale(1.08);
}

.wpdc-btn img {

    width: 100%;
    height: 100%;

    object-fit: contain;
}

@media (max-width:768px){

    .wpdc-floating-wrapper {

        right: 15px;
        bottom: 15px;
    }

    .wpdc-btn {

        width: 50px;
        height: 50px;
    }

}