

/* Safari için */
.cn-buttons .cm-btn-success{
    position: relative !important;
    z-index: 99999 !important;
}

.cn-buttons .cm-btn-danger{
    position: relative !important;
    z-index: 99999 !important;
}

/* Safari için */

.klaro .cookie-notice .cn-body .cn-ok .cn-buttons button:hover{
	transition: transform 0.4s ease;
	transform: scale(1.1); 
}
.klaro .cookie-notice .cn-body .cn-ok a {
	transition: transform 0.4s ease;
	display: inline-block; 
}

.klaro .cookie-notice .cn-body .cn-ok a:hover {
	animation: bounceY 1.2s ease infinite;
}

@keyframes bounceY {
	0%   { transform: translateY(0); }
	50%  { transform: translateY(-8px); }
	100% { transform: translateY(0); }
}


.klaro .cm-modal .cm-footer .cm-footer-buttons button:hover{
	transition: transform 0.4s ease;
	transform: scale(1.1); 
}

.klaro .cookie-modal .cm-modal .cm-header h1.title::before{
	width: 0px !important;
}

.klaro .cookie-modal .cm-modal .cm-body .cm-services .cm-caret a span {
	display: none;
}




.cookie-balloon {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background-color: #333;
    color: white;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    text-align: center;
    align-items: center;
    box-shadow: 8px 4px 10px 1px rgba(0, 0, 0, 0.75);
    -webkit-box-shadow: 8px 4px 10px 1px rgba(0, 0, 0, 0.75);
    -webkit-box-shadow: 8px 4px 10px 1px rgba(0, 0, 0, 0.75);
    animation: pulse 2s infinite;
    z-index: 998;
    
}

.cookie-balloon .row img {
    width: 40px !important;
    height: 40px !important;
    object-fit: contain;
}
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255,255,255, 0.4);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255,255,255, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255,255,255, 0);
    }
}

