
.CookieNotice {
    margin-bottom: 20px;
    border-radius: var(--border-radius-big);
    background: var(--neutral-color-light);
}

.CookieNotice div.options {
    border: unset;
}
.CookieNotice div.options .item p, .CookieNotice div.options .item details {
    display: none;
}
.CookieNotice div.options .item input {
    width: 3.5em;
    height: 1em;
}
.CookieNotice div.options .item input:before {
    width: 1em;
    height: 1em;
}
.CookieNotice .contentBody {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.CookieNotice .title h1 {
     font-size: 20px;
}
.CookieNotice .contentBody p {
    margin: unset;
    font-size: 18px;
}
.CookieNotice .contentBody .controlblock {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
}

.CookieNotice .contentBody .controls {
    text-align: center;
    flex-grow: 1;
}
.CookieNotice .contentBody .controls:last-child {
    flex-basis: 100%;
}

.CookieNotice .contentBody .options {
    width: 100%;
    display: flex;
    margin: unset;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.CookieNotice .contentBody .options .item:first-child {
    display: none !important;
}

.CookieNotice .controls.settings {
    display: none;
}

.CookieNotice button, .CookieNotice a, .CookieNotice label.settings ,.CookieNotice .contentBody .controls {
    background: unset;
    font-size: 16px;
    color: var(--font-color-dark);
    border:  1px solid var(--neutral-color-dark);
    border-radius: var(--border-radius-small);

}

.CookieNotice .controls:hover {
  background-color: var(--button-bg-color);
  color: var(--link-color);
}

@media (max-width: 800px) {
  .CookieNotice div.options .item {
    flex-wrap: nowrap;
  }
}