.cookie-consent-floating-bottom {
bottom: 20px;
left: 20px;
right: 20px;
max-width: 600px;
margin: 0 auto;
}
.cookie-consent-floating-bottom .cookie-consent-content {
max-width: none;
width: 100%;
max-height: calc(100vh - 80px);
padding: 12px 16px; border-radius: 8px; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
animation: slideUpFade 0.4s ease-out;
} .cookie-consent-rtl.cookie-consent-floating-bottom .cookie-consent-content {
padding-right: 16px;
padding-left: 16px;
} .cookie-consent-floating-bottom .cookie-consent-message {
margin: 0 0 8px 0; } .cookie-consent-floating-bottom .cookie-consent-buttons {
gap: 6px; }  .cookie-consent-floating-bottom .cookie-consent-button {
padding: 8px 14px; font-size: 12px;
}
@keyframes slideUpFade {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
} @media (max-width: 600px) { .cookie-consent-floating-bottom {
bottom: 10px;
left: 10px;
right: 10px;
}
.cookie-consent-floating-bottom .cookie-consent-content {
border-radius: 10px;
margin: 0;
}
}