.wgt-cookie-consent {
position: fixed;
left: 20px;
right: 20px;
bottom: 20px;
z-index: 99999;
}
.wgt-cookie-consent__inner {
display: flex;
justify-content: space-between;
align-items: flex-end;
gap: 16px;
padding: 16px 18px;
border: 1px solid rgba(255,255,255,.12);
border-radius: 14px;
background: rgba(17, 17, 17, 0.96);
color: #fff;
box-shadow: 0 10px 30px rgba(0,0,0,.24);
}
.wgt-cookie-consent__content {
min-width: 0;
}
.wgt-cookie-consent__title {
margin: 0 0 6px;
font-size: 18px;
line-height: 1.2;
}
.wgt-cookie-consent__message p {
margin: 0;
color: rgba(255,255,255,.88);
line-height: 1.55;
}
.wgt-cookie-consent__policy {
margin: 8px 0 0;
}
.wgt-cookie-consent__policy a {
color: #fff;
text-decoration: underline;
}
.wgt-cookie-consent__actions {
flex: 0 0 auto;
}
.wgt-cookie-consent__button {
min-height: 42px;
padding: 0 18px;
border: 0;
border-radius: 10px;
background: #2563eb;
color: #fff;
font-weight: 700;
cursor: pointer;
}
.wgt-cookie-consent__button:hover {
opacity: .94;
}
@media (max-width: 782px) {
.wgt-cookie-consent {
left: 12px;
right: 12px;
bottom: 12px;
}
.wgt-cookie-consent__inner {
flex-direction: column;
align-items: stretch;
}
.wgt-cookie-consent__button {
width: 100%;
}
}