.cookie-notifier {
    font-size: 14px !important;
    position: fixed;
    z-index: 1001;
    left: 16px;
    bottom: 16px;
    padding: 16px;
    max-width: 300px;
    background: #f8f8f8;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    box-shadow: rgba(201, 228, 115, 0.1) 0px 4px 16px, rgba(201, 228, 115, 0.05) 0px 8px 32px;
    border-radius: 0;
    box-sizing: border-box;
    border: 1px solid #cccccc;
}
.cookie-notifier__text {
    flex: 1;
}
.cookie-notifier__text a {
    white-space: nowrap;
    border-bottom: 0 !important;
    line-height: 1.2;
    text-decoration: underline;
}
@media (max-width: 1200px) {
    .cookie-notifier {
    }
}
@media (max-width: 768px) {
    .cookie-notifier {
        font-size: 12px !important;
        line-height: 1.2;
        gap: 8px;
        left: 0;
        right: 0;
        bottom: 0;
        max-width: initial;
    }
    .cookie-notifier .btn {
        height: 32px;
    }
}