.share-buttons {
    z-index: 9999999999;
    position: fixed;
    width: 300px;
    padding-left: 135px;
    bottom: 10%;
    left: 0%;
    margin-left: -100px;
    margin-top: -106px;
    display: flex;
    flex-direction: column; /* Varsayılan olarak dikey hizalama */
    align-items: flex-start; /* Butonları ortala */
}

/* Mobil ekranlar için yatay hizalama */
@media (max-width: 768px) {
    .share-buttons {
        flex-direction: row; /* Yatay hizalama */
        justify-content: center; /* Butonları yatayda ortala */
        width: 100%; /* Butonları ekranın tamamına yay */
        margin-left: 0; /* Margin'i sıfırla */
        margin-top: 0; /* Margin'i sıfırla */
        bottom: 10%; /* Alt mesafeyi ayarla */
        left: 0;
        padding: 0; /* Padding'i sıfırla */
    }

    .share-button {
        margin: 10px; /* Butonlar arasına boşluk bırak */
        width: 60px; /* Butonların genişliğini sabitle */
        height: 60px; /* Butonların yüksekliğini sabitle */
    }

}
/*}*/

.share-buttons .share-button {
    float: left;
    margin-top: 15px; /* Masaüstü versiyonlarında butonlar arasına boşluk bırak */
}


.share-buttons .share-button:after {
    clear: both;
    display: table;
}

.share-button {
    display: block;
    position: relative;
    height: 30px;
}

.share-button:hover {
    cursor: pointer;
}

.share-button:hover .share-button-primary {
    box-shadow: 1px 0 0 0 rgba(0, 0, 0, 0.1);
}

.share-button:hover .share-button-secondary-content {
    transform: translate3d(0, 0, 0);
}

.share-button-primary {
    position: absolute;
    background: #fff;
    border: 1px solid #f1f1f1;
    width: 40px;
    height: 40px;
    border-radius: 15px;
    left: 0;
    top: 50%;
    margin-top: -15px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.share-button-icon {
    display: block;
    color: #242424;
    position: absolute;
    width: 50px;
    line-height: 30px;
    font-size: 28px;
    margin-top: 1px;
}

.share-button-secondary {
    overflow: hidden;
    margin-left: 15px;
    height: 30px;
}

.share-button-secondary-content {
    font-family: sans-serif;
    font-size: 0.75em;
    background: #fff;
    display: block;
    height: 30px;
    text-align: left;
    padding-left: 40px;
    padding-right: 18px;
    line-height: 30px;
    color: #242424;
    border-radius: 0 15px 15px 0;
    transform: translate3d(-100%, 0, 0);
    transition: transform 175ms ease;
}


.cookie {
    z-index: 10000;
}

.cookie p {
    font-size: 16px;
}

.cookie-modal{
    padding: 15px;
}

.cookie-card {

    padding: 20px;
    border: 2px solid #155E97;
    border-radius: 10px;

}

.cookie-card input[type="checkbox"] {
    height: 25px;
    width: 25px;
}


.cookie-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
}

.cookie-header span {
    text-align: center;
}


.cookie-mobile {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 65px;
    left: 20px;
    background-color: var(--color-primary);
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

.cookie-mobile-icon {
    margin-top: 14px;
}


@keyframes cookie-mobile {
    0% {
        box-shadow: 0 0 0 0 var(--color-primary);
    }

    100%,
    30% {
        box-shadow: 0 0 0 20px transparent
    }
}

.cookie-mobile::before,
.cookie-mobile::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 42px;
    z-index: -1;
}


.cookie-mobile::before {
    animation: cookie-mobile 3.5s infinite
}


.cookie-mobile::after {
    animation: cookie-mobile 3.5s infinite
}


@media ( max-width: 1440px) {
    .cookie {
        display: none !important;
    }
}


.floating-icons {
    position: fixed;
    left: 20px;
    top: 90%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 1000;
}

.floating-icons .icon {
    position: relative;
    display: flex;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 15px;
    text-decoration: none;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    color: black;
    font-size: 20px;
    overflow: hidden;
    padding: 0 10px;
    white-space: nowrap;
}

.floating-icons .icon i {
    flex-shrink: 0;
    z-index: 2;
    transition: all 0.3s ease-in-out;
}

.floating-icons .icon .icon-text {
    opacity: 0;
    transform: scale(0.9);
    margin-left: 8px;
    font-size: 12px;  /* Daha küçük yazı */
    transition: all 0.3s ease-in-out;
    white-space: nowrap;
}

.floating-icons .icon:hover {
    width: 100px;  /* Daha minimal genişleme */
    background-color: white;
}

.floating-icons .icon:hover .icon-text {
    opacity: 1;
    transform: scale(1);
}
@media (max-width: 1199.8px) {
    .floating-icons {
        flex-direction: row;
        bottom: 8px;
        top: unset;
        left: 50%;
        transform: translateX(-50%);
    }
}
