a.whatsapp-button-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 70px;
    right: 10px;
    background-color: #25D366;
    /* WhatsApp yeşili */
    color: #fff;
    border-radius: 50%;
    z-index: 9999999;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.4s ease;
    animation: shake 3s infinite;
}

a.whatsapp-button-float:focus {
    outline: none;
    text-decoration: none;
}

.whatsapp-button-float span {
    max-width: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: all 0.4s ease;
    color: #fff;
    font-weight: 600;
    margin-left: 10px;
    white-space: nowrap;
}

.whatsapp-button-float:hover {
    width: auto;
    padding-right: 20px;
    border-radius: 30px;
}

.whatsapp-button-float:hover span {
    max-width: 200px;
    visibility: visible;
    opacity: 1;
}

.whatsapp-button-float svg {
    width: 32px;
    height: 32px;
    margin-top: 6px;
}

/* Titreşim animasyonu */
@keyframes shake {
    0% {
        transform: rotate(0deg);
    }

    20% {
        transform: rotate(15deg);
    }

    40% {
        transform: rotate(-15deg);
    }

    60% {
        transform: rotate(10deg);
    }

    80% {
        transform: rotate(-10deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

a.dg2-phone-button-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 140px;
    right: 10px;
    background-color: #e53935;
    /* Kırmızı */
    color: #fff;
    border-radius: 50%;
    z-index: 9999999;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.4s ease;
    animation: shake 3s infinite;
}

a.dg2-phone-button-float:focus {
    outline: none;
    text-decoration: none;
}

.dg2-phone-button-float span {
    max-width: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: all 0.4s ease;
    color: #fff;
    font-weight: 600;
    margin-left: 10px;
    white-space: nowrap;
}

.dg2-phone-button-float:hover {
    width: auto;
    padding-right: 20px;
    border-radius: 30px;
}

.dg2-phone-button-float:hover span {
    max-width: 200px;
    visibility: visible;
    opacity: 1;
}

.dg2-phone-button-float svg {
    width: 32px;
    height: 32px;
    margin-top: 6px;
}

/* Titreşim animasyonu */
@keyframes shake {
    0% {
        transform: rotate(0deg);
    }

    20% {
        transform: rotate(15deg);
    }

    40% {
        transform: rotate(-15deg);
    }

    60% {
        transform: rotate(10deg);
    }

    80% {
        transform: rotate(-10deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.scroll-top {
    right: 15px;
    bottom: 15px;

}