﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



.fab {
    position: fixed;
    right: 25px;
    bottom: 45px;
    z-index: 9999;
}

/* Ana Buton */
.fab-main {
    border: 1px !important;
    z-index: 8788888;
    position: fixed;
    right: 25px;
    bottom: 39px;
    background: url(//i.ozdemirkaya.com/images/w5.png) center no-repeat #42db87;
    color: #fff;
    width: 60px;
    height: 60px;
    font-size: 30px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translatey(0px);
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 0 0 #42db87;
    -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    font-weight: normal;
    font-family: sans-serif;
    text-decoration: none !important;
    transition: all 300ms ease-in-out;
    cursor: pointer;
    /* width: 62px;
    height: 62px;
    border: none;
    border-radius: 50%;
    background: #25D366;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0,0,0,.25);
    transition: .3s;*/
}

    .fab-main:hover {
        transform: scale(1.08);
    }

    .fab-main img {
        width: 34px;
        height: 34px;
        display: block;
    }

/* Menüler */
.fab-item {
    position: absolute;
    right: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: .3s;
}

.fab.active .fab-item {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.item1 {
    bottom: 75px;
}

.item2 {
    bottom: 140px;
}

.item3 {
    bottom: 205px;
}

.fab-item span {
    background: #fff;
    color: #333;
    padding: 10px 16px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,.18);
}

.icon {
    width: 48px;
    height: 48px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(0,0,0,.18);
}

    .icon img {
        width: 26px;
        height: 26px;
        display: block;
    }

.fab-item:hover span {
    background: #25D366;
    color: #fff;
}

.fab-item:hover .icon {
    transform: scale(1.08);
}
