#jazz-cookie-bar.is-hidden {
    display: none !important;
}

#jazz-cookie-bar.jazz-cookie-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 60px;
    background: rgba(50, 50, 50, 0.88);
    color: #ffffff;
    box-sizing: border-box;
}

#jazz-cookie-bar .jazz-cookie-bar__text {
    flex: 1 1 auto;
    padding: 18px 20px;
    font-size: 16px;
    line-height: 1.35;
    color: #ffffff;
}

#jazz-cookie-bar .jazz-cookie-bar__button {
    flex: 0 0 auto;
    min-width: 215px;
    height: 60px;
    border: 0;
    border-radius: 0;
    background: #f1008c;
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

#jazz-cookie-bar .jazz-cookie-bar__button:hover {
    opacity: 0.92;
}

@media (max-width: 767px) {
    #jazz-cookie-bar.jazz-cookie-bar {
        flex-direction: column;
        align-items: stretch;
        min-height: auto;
    }

    #jazz-cookie-bar .jazz-cookie-bar__text {
        padding: 14px 16px;
        font-size: 14px;
    }

    #jazz-cookie-bar .jazz-cookie-bar__button {
        width: 100%;
        min-width: 0;
        height: 56px;
        font-size: 18px;
    }
}