.bwscookie {
    background: var(--bwscookie-c-background, #000);
    color: var(--bwscookie-c-text, #fff);
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 98765;
    padding: 10px;
    font-family: inherit;
    line-height: 1.2;
    align-items: center;
    letter-spacing: 0.1px;
    display: none;
    opacity: 0;
    flex-direction: column;
    font-weight: 400;
    font-size: 14px;
}

.bwscookie .custom-control-label {
    padding-top: 0.3em;
}

.bwscookie,
.bwscookie *,
.bwscookie *:before,
.bwscookie *:after {
    box-sizing: border-box;
}

.bwscookie_visible {
    opacity: 1;
    transition: opacity .3s .3s ease;
}

.bwscookie-text a {
    text-decoration: underline;
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    font-family: inherit;
}

.bwscookie-text a:hover {
    text-decoration: none;
    opacity: 0.8;
}

.bwscookie-btns {
    width: 100%;
}

.bwscookie-btn {
    background: var(--bwscookie-c-primary, #f1d600);
    color: inherit;
    font-weight: 700;
    text-align: center;
    padding: 6px 10px;
    line-height: 1;
    cursor: pointer;
    white-space: nowrap;
    display: block;
    width: 100%;
    border-radius: 17px;
    flex: 1 0 0;
}

.bwscookie-btn:hover {
    transform: translateY(-2px);
}

.bwscookie-btn.bwscookie-btn_secondary {
    background: var(--bwscookie-c-text, #e2e2e3);
    color: var(--bwscookie-c-background, #000000);
    font-weight: 400;
}

.bwscookie-close {
    position: absolute;
    bottom: 100%;
    right: 0;
    font-family: Arial, sans-serif;
    font-weight: 700;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    background: var(--bwscookie-c-background, #000);
    cursor: pointer;
    font-size: 14px;
    /*display:block;*/
    display: none;
}

.bwscookie-close:before {
    content: 'X';
}

@media (min-width: 420px) {
    .bwscookie {
        max-width: 400px;
        margin: 10px;
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
        border-radius: 3px;
    }
}