.cngm-cookie-notice {
position: fixed;
bottom: 20px;
left: 20px;
right: 20px;
z-index: 9999;
display: block;
}
.cngm-cookie-notice__content {
max-width: 900px;
margin: 0 auto;
background: #111;
color: #fff;
padding: 16px 20px;
border-radius: 10px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
display: flex;
gap: 16px;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
}
.cngm-cookie-notice__text {
margin: 0;
font-size: 14px;
line-height: 1.6;
flex: 1 1 300px;
}
.cngm-cookie-notice__text a {
color: #fff;
text-decoration: underline;
}
.cngm-cookie-notice__button {
border: 0;
border-radius: 8px;
padding: 10px 18px;
cursor: pointer;
font-size: 14px;
font-weight: 600;
}
.cngm-cookie-notice__button:hover {
opacity: 0.92;
}
@media (max-width: 600px) {
.cngm-cookie-notice {
left: 12px;
right: 12px;
bottom: 12px;
}
.cngm-cookie-notice__content {
padding: 14px;
}
.cngm-cookie-notice__button {
width: 100%;
}
}