.cookies-widget {
    position: fixed;
    display: flex;
    align-items: center;
    bottom: 0;
    max-width: 1200px;
    margin: 0 auto 20px auto;
    left: 0;
    right: 0;
    background: #000000b2;
    border-radius: 25px;
    color: #fff;
    line-height: 1.3;
    padding: 20px;
    gap: 20px;
    z-index: 999;
}
.cookies-widget.hidden {
    display: none;
}
.cookies-widget a {
    color: #fff;
    font-weight: bold;
    text-decoration: underline;
}

.cookies-widget .ttl {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 18px;
}

.cookies-widget button {
    background: #fff;
    color: #000;
    padding: 10px;
    font-size: 16px;
    border-radius: 8px;
}

@media (max-width: 1280px) {
    .cookies-widget {
        margin: 20px 40px;
    }
}

@media (max-width: 750px) {
    .cookies-widget {
        flex-wrap: wrap;
        margin: 20px;
        justify-content: center;
    }
}