/*-------------------------------------------------------------------------*/
/*	MOBIL ALT FOOTER STİLLERİ
/*-------------------------------------------------------------------------*/

@media only screen and (min-width: 601px) {
    .mobilalt {
        display: none;
    }
}

@media only screen and (max-width: 600px) {
    .form-cerceve {
        margin: 0px !important;
    }
    .mobilalt {
        width: 100%;
        text-align: center;
        position: fixed;
        z-index: 999;
        bottom: 0px;
        font-size: 17px;
        display: flex; /* Flexbox ile yan yana hizalama */
    }
    .reklamver,
    .whatsapp {
        height: 45px;
        color: #ffffff;
        display: flex; /* İçeriği ortalamak için flexbox */
        justify-content: center; /* Yatayda ortala */
        align-items: center; /* Dikeyde ortala */
    }
    .reklamver {
        background-color: #bd1622;
    }
    .reklamver a {
        color: #ffffff;
        text-decoration: none;
    }
    .whatsapp {
        background-color: #16c706;
    }
    .whatsapp a {
        color: #ffffff;
        text-decoration: none;
        display: flex; /* İkon ve yazıyı yan yana hizalamak için */
        align-items: center; /* Dikeyde ortala */
        justify-content: center; /* Yatayda ortala */
    }
    .whatsapp i {
        margin-right: 5px; /* İkon ile yazı arasında boşluk */
        font-size: 20px; /* İkon boyutu */
    }
    /* Dinamik genişlik sınıfları */
    .reklamver.width-50,
    .whatsapp.width-50 {
        width: 50%;
    }
    .reklamver.width-100,
    .whatsapp.width-100 {
        width: 100%;
    }
}

/*-------------------------------------------------------------------------*/
/*	MOBIL ALT FOOTER STİLLERİ
/*-------------------------------------------------------------------------*/