.pk-cookie-consent {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 1180px;
    margin: 0 auto;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .12);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .16);
    color: #222;
    font: inherit;
}

.pk-cookie-consent__text {
    line-height: 1.45;
}

.pk-cookie-consent__text a {
    color: inherit;
    text-decoration: underline;
}

.pk-cookie-consent__actions {
    display: flex;
    flex: 0 0 auto;
    gap: 10px;
}

.pk-cookie-consent__button {
    min-height: 42px;
    padding: 9px 18px;
    border: 1px solid #222;
    border-radius: 8px;
    background: #222;
    color: #fff;
    cursor: pointer;
    font: inherit;
}

.pk-cookie-consent__button_secondary {
    background: #fff;
    color: #222;
}

@media (max-width: 767px) {
    .pk-cookie-consent {
        left: 10px;
        right: 10px;
        bottom: 10px;
        display: block;
        padding: 15px;
    }

    .pk-cookie-consent__actions {
        margin-top: 12px;
        display: grid;
        grid-template-columns: 1fr;
    }

    .pk-cookie-consent__button {
        width: 100%;
    }
}
