/* Styling for the Kanat WhatsApp button */
.kanat-whatsapp-button {
    position: fixed;
    bottom: 125px;
    z-index: 14;
    background-color: #0AB285;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s ease;
    width: 85px;
    height: 85px;
    width: 85px;
    margin: 0 30px;
    height: 85px;
    -webkit-box-shadow: 6px 6px 20px rgba(0, 0, 0, 0.4);
    box-shadow: 6px 6px 20px rgba(0, 0, 0, 0.4);
    border-radius: 85px;
    -webkit-transition: 0.4s ease all;
    -o-transition: 0.4s ease all;
    transition: 0.4s ease all;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kanat-whatsapp-button:hover {
    transform: scale(1.1);
}

.kanat-whatsapp-button .kanat-whatsapp-icon {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
    width: 43px;
    height: 43px;
}

.kanat-whatsapp-button[role="button"]:focus {
    outline: none;
    box-shadow: 0 0 5px 3px rgba(0, 123, 255, 0.5);
}

@media(max-width: 1024px){
    .kanat-whatsapp-button {
        width: 63px;
        height: 63px;
        margin: 0 12px;
    }
}

@media(max-width: 768px){
    .kanat-whatsapp-button {
        right: auto;
        left: 0;
        bottom: 105px;
    }
}