.ciasteczka-privacy-button {
    position: fixed;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    z-index: 2147483000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    appearance: none;
    background: #17324d;
    color: #fff;
    font-size: 20px;
    line-height: 1;
    box-shadow: 0 3px 12px rgba(0, 0, 0, .2);
    cursor: pointer;
}

.ciasteczka-privacy-button--left {
    right: auto;
    left: calc(16px + env(safe-area-inset-left, 0px));
}

.ciasteczka-privacy-button--right {
    right: calc(16px + env(safe-area-inset-right, 0px));
    left: auto;
}

.ciasteczka-privacy-button:focus-visible {
    outline: 3px solid #f2b134;
    outline-offset: 2px;
}

.ciasteczka-iframe-placeholder {
    display: grid;
    place-content: center;
    min-height: 240px;
    padding: 24px;
    border: 1px solid #cbd5dc;
    background: #f4f7f8;
    color: #17202a;
    text-align: center;
}

.ciasteczka-iframe-placeholder iframe {
    display: none;
}

.ciasteczka-iframe-placeholder button {
    justify-self: center;
    min-height: 40px;
    padding: 8px 16px;
    border: 0;
    background: #0b6e69;
    color: #fff;
    cursor: pointer;
}