.ccc-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #222;
    color: #fff;
    padding: 16px;
    border-radius: 6px;
    z-index: 9999;
    max-width: calc(100% - 40px);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
        rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}
.ccc-banner.hidden {
    display: none;
}
.ccc-banner-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.ccc-banner .cookie-banner_text {
    flex: 1 1 auto;
    max-width: 500px;
}

.ccc-banner .cookie-banner_text a {
    color: #7a9cd5;
    font-weight: bold;
    text-decoration: underline;
}

.ccc-banner .cookie-banner_text a:hover {
    text-decoration: none;
}

.cookie-banner_button {
    appearance: none;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 18px;
    line-height: 1.5;
    padding: 10px;
    transition: all 0.2s ease;
}

.cookie-banner_button.cookie-banner_accept {
    background-color: #555cac;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.cookie-banner_button.cookie-banner_accept:hover {
    background-color: #484e93;
}

.cookie-banner_button.cookie-banner_dismiss {
    background-color: transparent;
    color: white;
    border-radius: 5px;
    font-size: 14px;
    font-weight: normal;
}

.cookie-banner_button.cookie-banner_dismiss:hover {
    text-decoration: underline;
}
