﻿

.app-button-container {
    bottom: 20px;
    left: 10px;
    display: flex;
    align-items: center; 
    z-index: 1000;
}
    
.app-image-button {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    padding: 10px;
    margin-right: 10px;
    text-decoration: none;
    color: black;
    font-size: 14px;
    transition: box-shadow 0.3s ease;
    width:138px;
    height:38px;
    cursor:pointer;
}
.app-store{
    order:2;
}
.google-play {
    order: 1;
}
.title-logo {
    order: 3;
}
.app-image-button img {
    margin: 0 0px;
    width: 77.67px;
    height: 20.97px;
}
     
    .app-image-button p {
        margin: 0;
        text-align: center;
    }

    .app-image-button strong {
        font-weight: bold;
    }

    .app-image-button:hover {
        box-shadow: 0 6px 12px rgba(0,0,0,0.3);
    }

.QR {
    margin-left:8px !important;
    width: 31.34px !important; /* QR kod genişliği */
    height:31.34px !important;
}
@media (max-width: 768px) {
    .app-button-container {
        flex-direction: row; /* Butonları dikey olarak hizalar */
        bottom: 20px;
        left: 50%;
        transform: translateX(0%); /* Merkezlenmesi için */
    }
    .app-store {
        order: 3;
    }

    .google-play {
        order: 2;
    }

    .title-logo {
        order: 1;
    }
    .app-image-button {
        width: 100px;
        margin-bottom: 10px; /* Butonlar arasında dikey boşluk */
        margin-left: 5px
    }
    
    /* Buton içindeki logo ve QR kodunun boyutunu ayarlayın */
    .app-image-button img {
        width: 80px; /* Küçültülmüş logo ve QR kod genişliği */
        margin: 4px; /* Daha az boşluk */
    }
    .QR {
        display:none;
    }
}


.whatsapp-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-main-button {
    position: relative;
    width: 60px;
    height: 60px;
    border: none;
    box-shadow: 0 0 0 0 rgb(37 211 102);
    border-radius: 50%;
    background-color: #25d366;
    animation: none;
    transition: ease 1s;
}

    /*fare üzerine geldiğinde animasyon dursun*/
    .whatsapp-main-button:hover {
        -webkit-animation: none;
        -moz-animation: none;
        -ms-animation: none;
        animation: none;
    }
        
@-webkit-keyframes pulse {
    to {
        box-shadow: 0 0 0 45px rgba(232, 76, 61, 0);
    }
}

@-moz-keyframes pulse {
    to {
        box-shadow: 0 0 0 45px rgba(232, 76, 61, 0);
    }
}

@-ms-keyframes pulse {
    to {
        box-shadow: 0 0 0 45px rgba(232, 76, 61, 0);
    }
}

@keyframes pulse {
    to {
        box-shadow: 0 0 0 45px rgba(232, 76, 61, 0);
    }
}

.whatsapp-main-button i {
    font-size: 24px;
    color: #fff;
}

.whatsapp-sub-buttons {
    display: none;
    position: absolute;
    bottom: 0px;
    /*left: 50%;*/
    transform: translateX(-40%);
    text-align: center;
    transition: bottom 0.5s;
}

    .whatsapp-sub-buttons.active {
        display: block;
        right: 0px;
        width: 160px;
    }

    .whatsapp-sub-buttons a {
        display: block;
        text-decoration: none;
    }

    .whatsapp-sub-buttons button {
        background-color: #25d366;
        color: white;
        width: 100%;
        padding: 10px;
        border: none;
        display: flex;
        align-items: center;
        transition: background-color 0.3s, transform 0.2s;
        transform-origin: center top;
    }

        .whatsapp-sub-buttons button i {
            font-size: 24px;
            margin-right: 10px;
        }

        .whatsapp-sub-buttons button span {
            font-size: 14px;
        }

        .whatsapp-main-button:hover,
        .whatsapp-sub-buttons button:hover {
            transform: scale(1.1);
        }
