.nixo-cookie-banner {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
z-index: 999999;
padding: 20px;
transform: translateY(100%);
transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.nixo-cookie-banner.show {
transform: translateY(0);
} .nixo-cookie-banner-inner {
max-width: 1200px;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: space-between;
gap: 30px;
} .nixo-cookie-content {
display: flex;
align-items: flex-start;
gap: 20px;
flex: 1;
}
.nixo-cookie-icon {
font-size: 40px;
line-height: 1;
flex-shrink: 0;
}
.nixo-cookie-text {
flex: 1;
}
.nixo-cookie-title {
font-size: 18px;
font-weight: 700;
color: #ffffff;
margin: 0 0 8px 0;
line-height: 1.3;
}
.nixo-cookie-description {
font-size: 14px;
color: rgba(255, 255, 255, 0.85);
margin: 0;
line-height: 1.6;
} .nixo-cookie-actions {
display: flex;
align-items: center;
gap: 12px;
flex-shrink: 0;
}
.nixo-cookie-link {
color: rgba(255, 255, 255, 0.7);
font-size: 14px;
text-decoration: underline;
transition: color 0.3s ease;
white-space: nowrap;
}
.nixo-cookie-link:hover {
color: #ffffff;
} .nixo-cookie-btn {
padding: 12px 24px;
border: none;
border-radius: 8px;
font-size: 14px;
font-weight: 700;
cursor: pointer;
transition: all 0.3s ease;
white-space: nowrap;
}
.nixo-cookie-btn-decline {
background: rgba(255, 255, 255, 0.1);
color: #ffffff;
border: 1px solid rgba(255, 255, 255, 0.2);
}
.nixo-cookie-btn-decline:hover {
background: rgba(255, 255, 255, 0.15);
border-color: rgba(255, 255, 255, 0.3);
}
.nixo-cookie-btn-accept {
background: #2934c4;
color: #ffffff;
box-shadow: 0 4px 12px rgba(41, 52, 196, 0.3);
}
.nixo-cookie-btn-accept:hover {
background: #1f2596;
transform: translateY(-1px);
box-shadow: 0 6px 16px rgba(31, 37, 150, 0.4);
} @media (max-width: 991px) {
.nixo-cookie-banner-inner {
flex-direction: column;
align-items: stretch;
gap: 20px;
}
.nixo-cookie-actions {
justify-content: flex-end;
}
} @media (max-width: 767px) {
.nixo-cookie-banner {
padding: 16px;
}
.nixo-cookie-content {
flex-direction: column;
gap: 12px;
}
.nixo-cookie-icon {
font-size: 32px;
}
.nixo-cookie-title {
font-size: 16px;
}
.nixo-cookie-description {
font-size: 13px;
}
.nixo-cookie-actions {
flex-wrap: wrap;
gap: 10px;
}
.nixo-cookie-link {
width: 100%;
text-align: center;
order: 3;
}
.nixo-cookie-btn {
flex: 1;
padding: 12px 20px;
font-size: 13px;
}
.nixo-cookie-btn-decline {
order: 1;
}
.nixo-cookie-btn-accept {
order: 2;
}
} @media (max-width: 480px) {
.nixo-cookie-btn {
width: 100%;
}
.nixo-cookie-actions {
flex-direction: column;
}
} .nixo-cookie-btn:focus {
outline: 2px solid #ffffff;
outline-offset: 2px;
}
.nixo-cookie-link:focus {
outline: 2px solid rgba(255, 255, 255, 0.5);
outline-offset: 2px;
} @keyframes slideUp {
from {
transform: translateY(100%);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}
.nixo-cookie-banner.animate-in {
animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}