.shrk_me-buttons{
    margin-bottom: 30px !important;
    position: relative;
}
.shrk_me-buttons.floating-right{
    position: fixed;
    bottom: 50%;
    right: 20px;
    transform: translateY(50%);
    z-index: 99999;
}
.shrk_me-buttons.floating-left{
    position: fixed;
    bottom: 50%;
    left: 20px;
    transform: translateY(50%);
    z-index: 99999;
}
.shrk_me-buttons.floating-left .icons,
.shrk_me-buttons.floating-right .icons{
    flex-direction: column;
    row-gap: 5px;
    margin: 0;
}
.shrk_me-buttons .icons{
    display: flex;
    align-items: center;
    column-gap: 5px;
    list-style: none !important;
    padding: 0;
    margin: 0;
}
.shrk_me-buttons .icons .icon i{
    color: #fff;
    width: 40px;
    height: 40px;
    font-size: 22px;
    line-height: 40px;
    text-align: center;
    background-color: #4caf50;
}

.shrk_me-buttons.radio-button i{
	border-radius: 50%;
}
.shrk_me-buttons.rounded-button i{
	border-radius: 5px;
}
.shrk_me-buttons.square-button i{
	border-radius: 0;
}
.shrk_me-buttons .icons .icon .fa-facebook-f{
	background-color: #1877f2;
}
.shrk_me-buttons .icons .icon .fa-x-twitter{
	background-color: #14171a;
}
.shrk_me-buttons .icons .icon .fa-linkedin-in{
	background-color: #0a66c2;
}
.shrk_me-buttons .icons .icon .fa-pinterest{
	background-color: #e60023;
}
.shrk_me-buttons .icons .icon .fa-whatsapp{
	background-color: #075e54;
}
.shrk_me-buttons .icons .icon .fa-telegram{
	background-color: #0088cc;
}
.shrk_me-buttons .icons .icon .fa-envelope{
	background-color: #000000;
}
.shrk_me-buttons .icons .icon .fa-reddit{
	background-color: #ff4500;
}
.shrk_me-buttons .icons .icon .fa-facebook-messenger{
	background-color: #0084ff;
}
.shrk_me-buttons .icons .icon .fa-viber{
	background-color: #59267c;
}
.shrk_me-buttons .icons .icon .fa-flipboard{
	background-color: #e12828;
}
.shrk_me-buttons .icons .icon .fa-clone{
	background-color: #720eec;
    font-size: 18px;
}

.shrk_me-buttons .more-icons {
    display: none;
    list-style: none !important;
    padding: 0;
    margin: 0 !important;
}

.shrk_me-buttons .more-icons.show {
    display: flex;
    align-items: center;
    column-gap: 5px;
}
.shrk_me-buttons.floating-left .more-icons.show,
.shrk_me-buttons.floating-right .more-icons.show{
    flex-direction: column;
    row-gap: 5px;
    margin: 0;
}
.shrk_me-buttons.floating-left .more-icons.show{
    left: 30px;
}
.shrk_me-buttons.floating-right .more-icons.show{
    right: 30px;
}
.shrk_me-buttons .more-button.icon {
    cursor: pointer;
}

.shrk_me-buttons .icons .pulse-animation{
    animation: pulse 800ms ease-in-out infinite;
    -webkit-animation: pulse 800ms ease-in-out infinite;
}

.shrk_me-buttons .icons .shake-animation{
    animation: shake 800ms ease-in-out infinite;
    -webkit-animation: shake 800ms ease-in-out infinite;
}

.shrk_me-buttons .icons .bounce-animation{
    animation: bounce 800ms ease-in-out infinite;
    -webkit-animation: bounce 800ms ease-in-out infinite;
}

.shrk_me-buttons .icons .swing-animation{
    animation: swing 800ms ease-in-out infinite;
    -webkit-animation: swing 800ms ease-in-out infinite;
}

.shrk_me-buttons .icons .wobble-animation{
    animation: wobble 800ms ease-in-out infinite;
    -webkit-animation: wobble 800ms ease-in-out infinite;
}

.shrk_me-buttons .icons .flip-animation{
    animation: flip 800ms ease-in-out infinite;
    -webkit-animation: flip 800ms ease-in-out infinite;
}

.shrk_me-buttons .icons .fade-in-out{
    animation: fade 800ms ease-in-out infinite;
    -webkit-animation: fade 800ms ease-in-out infinite;
}

.shrk_me-buttons .icons .zoom-animation{
    animation: zoom 800ms ease-in-out infinite;
    -webkit-animation: zoom 800ms ease-in-out infinite;
}

.shrk_me-buttons .icons .heartbeat-animation{
    animation: heartbeat 800ms ease-in-out infinite;
    -webkit-animation: heartbeat 800ms ease-in-out infinite;
}

/* ====== Pulse Animation ====== */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* ====== Shake Animation ====== */
@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    25%, 75% {
        transform: translateX(-10px);
    }
    50% {
        transform: translateX(10px);
    }
}

/* ====== Bounce Animation ====== */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ====== Hover Glow ====== */
.shrk_me-buttons .icons .icon i:hover {
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
    transition: box-shadow 0.3s ease-in-out;
}

/* ====== Swing Animation ====== */
@keyframes swing {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(15deg);
    }
    50% {
        transform: rotate(0deg);
    }
    75% {
        transform: rotate(-15deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

/* ====== Wobble Animation ====== */
@keyframes wobble {
    0% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-5px) rotate(-5deg);
    }
    50% {
        transform: translateX(5px) rotate(5deg);
    }
    75% {
        transform: translateX(-5px) rotate(-5deg);
    }
    100% {
        transform: translateX(0);
    }
}

/* ====== Flip Animation ====== */
@keyframes flip {
    0% {
        transform: rotateY(0);
    }
    50% {
        transform: rotateY(90deg);
    }
    100% {
        transform: rotateY(180deg);
    }
}

/* ====== Fade In and Out ====== */
@keyframes fade {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

/* ====== Zoom Animation ====== */
@keyframes zoom {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

/* ====== Heartbeat Animation ====== */
@keyframes heartbeat {
    0% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.2);
    }
    50% {
        transform: scale(1);
    }
    75% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}
/**mobile view**/
@media (max-width: 921px) {
    .shrk_me-buttons.bottom-bar {
        background-color: #fff;
        position: fixed;
        right: 0;
        left: 0;
        bottom: 0;
        z-index: 99999;
        width: 100%;
        margin: 0 !important;
        height: 40px;
        transform: unset !important;
        -webkit-transform: unset !important;
        -moz-transform: unset !important;
        -ms-transform: unset !important;
        -o-transform: unset !important;
}
    .shrk_me-buttons.bottom-bar .icons,
    .shrk_me-buttons.bottom-bar .more-icons.show {
        flex-direction: initial;
        align-items: center;
        justify-content: space-between;
        column-gap: 0 !important;
    }
    .shrk_me-buttons .more-icons.show {
        position: absolute;
        bottom: 40px;
        right: 0;
        left: 0;
        width: 100%;
        height: 40px;
    }
    .shrk_me-buttons.normal-view .more-icons.show {
        position: inherit;
    }
    .shrk_me-buttons.bottom-bar .icons .icon,
    .shrk_me-buttons.bottom-bar .more-icons.show .icon{
        flex: 1;
    }
    .shrk_me-buttons.bottom-bar i{
        width: 100% !important;
        border-radius: 0 !important;
        -webkit-border-radius: 0 !important;
        -moz-border-radius: 0 !important;
        -ms-border-radius: 0 !important;
        -o-border-radius: 0 !important;
    }    
}