.sticky-buttons {
    position: fixed;
    right: 20px;
    bottom: -20px;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sticky-buttons ul {
    list-style: none;
    padding: 0px;
    margin: 0;
    margin-bottom: 70px;
}

.sticky-buttons li {
    margin-bottom: 0px;
}

.sticky-buttons a img {
    display: block;
    border-radius: 50%;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

/* Media Queries */
@media screen and (max-width: 1024px) {
    .sticky-buttons {
        position: fixed;
        right: 22px;
        bottom: 13px;
    }


    .sticky-buttons a img {
        width: 50px;
        height: 50px;
    }
}

@media screen and (max-width: 768px) {
    .sticky-buttons {
        bottom: -14px;
        right: 27px;
    }

    .sticky-buttons a img {
        width: 45px;
        height: 45px;
    }
}

@media screen and (max-width: 480px) {
    .sticky-buttons {
        right: 10px;
        /* top: 65%; */
    }

    .sticky-buttons a img {
        width: 40px;
        height: 40px;
    }

    .sticky-buttons ul {
        list-style: none;
        padding: 19px;
        margin: 0;
        margin-bottom: 70px;
    }

    .sticky-buttons {
        position: fixed;
        right: 15px;
        bottom: -14px;
        z-index: 9999999;
    }
}
