.cookie-panel {
    position: fixed;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);

    width: auto;
    max-width: 750px;
    min-width: 500px;

    padding: 12px 18px;

    background: rgba(36, 181, 229, 0.92) !important;
    color: #121314;

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.18);

    z-index: 2147483647 !important;
    display: none;
    box-sizing: border-box;
}

.cookie-panel .container {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0;
}

.cookie-panel p {
    margin: 0;
    width: auto;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    text-align: left;
}

.cookie-panel p a {
    color: inherit;
    text-decoration: underline;
}

.cookie-panel__btn {
    display: inline-block;
    flex-shrink: 0;

    min-width: 80px;
    height: 34px;
    padding: 0 16px;

    line-height: 32px;
    text-align: center;
    text-decoration: none;

    border: none;
    border-radius: 6px;

    cursor: pointer;
    transition: .2s;
    white-space: nowrap;
    box-sizing: border-box;
}

.cookie-panel__btn:hover {
    opacity: 0.9;
}

.cookie-panel.cookie-panel--close {
    display: none;
}

@media (max-width: 767px) {

    .cookie-panel {
        left: 10px;
        right: 10px;
        bottom: 10px;
        transform: none;

        min-width: auto;
        max-width: none;
        width: auto;

        padding: 12px;
        border-radius: 10px;
    }

    .cookie-panel .container {
        flex-direction: column;
        gap: 10px;
    }

    .cookie-panel p {
        width: 100%;
        text-align: center;
        font-size: 12px;
    }

    .cookie-panel__btn {
        width: 100%;
        max-width: 180px;
        height: 32px;
        line-height: 32px;
        font-size: 12px;
    }
}
