.cookieBar {
    position: fixed;
    left: 0;
    top: 0;
    padding: 10px;
    width: 100%;
    background: #fff;
    color: #000;
    font-size: 14px;
    z-index: 99;
    border: solid #000;
    border-width: 1px 0 0 0;
}

@media print {
    .cookieBar {
        display: none;
    }
}

.cookieBar a {
    color: #000;
}

.cookieBar a:hover,
.cookieBar a:focus {
    color: #000;
}

.cookieBar p {
    margin: 0 0 15px;
}

.cookieBar p:last-child {
    margin-bottom: 0;
}

@media screen and (min-width: 571px) {
    .cookieBar {
        left: 50%;
        width: 500px;
        margin-left: -250px;
        padding: 20px;
        border-width: 0 1px 1px 1px;
    }
}

.cookieBar:not(.is-active) {
    display: none;
}

.cookieBar__title {
    margin: 0;
    font-size: 20px;
    line-height: 1.2;
    color: #2b3789;
    font-family: "Bariol", Futura, "Gill Sans", Calibri, "Dejavu Sans", "Lucida Sans", sans-serif;
}

.cookieBar__text {
    margin-top: 10px;
}

.cookieBar__buttons {
    margin-top: 10px;
    display: flex;
}

.cookieBar__button {
    background: transparent;
    border: 0;
    font-size: 14px;
    line-height: 1;
    white-space: nowrap;
    margin: 0.25rem;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: 500;
    text-decoration: none;
}

.cookieBar__button--agree {
    background: #2b3789;
    color: #fff;
}

.cookieBar__button--agree:hover,
.cookieBar__button--agree:focus-visible {
    background: #252f76;
}

.cookieBar__button--setup {
    text-decoration: underline;
}

.cookieBar__button--setup:hover,
.cookieBar__button--setup:focus-visible {
    text-decoration: none;
}

.cookieBar__button--setup.is-active span:first-child {
    display: none;
}

.cookieBar__button--setup:not(.is-active) span:last-child {
    display: none;
}

.cookieBar__button--deny {
    background: #2b3789;
    color: #fff;
}

.cookieBar__button--deny:hover,
.cookieBar__button--deny:focus-visible {
    background: #252f76;
}

.cookieBar__details {
    margin: 20px 0;
}

.cookieBar__details:not(.is-active) {
    display: none;
}

.cookieBar__detail {
    margin-top: 5px;
}

.cookieBar__detail summary {
    font-size: 16px;
    line-height: 1.2;
    list-style: none;
    font-weight: 700;
    display: flex;
    gap: 10px;
    align-items: center;
    cursor: pointer;
}

.cookieBar__detail summary input {
    margin: 0;
}

.cookieBar__detail[open] summary img {
    transform: rotate(180deg);
}

.cookieBar__detail > div {
    padding-top: 5px;
}

.cookieBarInfo__change {
    font-weight: 400;
    border: none;
    text-decoration: underline;
}

.cookieBarInfo__change:hover, .cookieBarInfo__change:active {
    text-decoration: none;
    border: none;
}