.cookiebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  z-index: 11111111111111;
}
.cookiebar .cookiebar-wrapper {
  max-width: 95%;
  position: relative;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 2rem;
}
.cookiebar .cookiebar-wrapper .cookiebar-intro h3, .cookiebar .cookiebar-wrapper .cookiebar-settings h3 {
  text-align: center;
  font-size: 1.5rem;
  margin: 0 0 2rem 0;
  font-family: "Roboto Slab", serif;
}
.cookiebar .cookiebar-wrapper .cookiebar-intro p, .cookiebar .cookiebar-wrapper .cookiebar-settings p {
  margin: 0 0 1rem 0;
}
.cookiebar .cookiebar-wrapper .cookiebar-intro p a {
  color: #ec4747 !important;
  cursor: pointer;
}
.cookiebar .cookiebar-wrapper .cookiebar-intro.hidden, .cookiebar .cookiebar-wrapper .cookiebar-settings.hidden {
  display: none;
}
.cookiebar .cookiebar-wrapper .cookiebar-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 542px;
}
.cookiebar .cookiebar-wrapper .cookiebar-intro button {
  background: #ec4747;
  color: #fff;
  text-decoration: none;
  padding: 0.75rem;
  border: 0;
  cursor: pointer;
  box-shadow: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  font-size: 1rem;
  margin: 0 auto 1rem auto;
}
.cookiebar .cookiebar-wrapper .cookiebar-intro button:hover {
  background: #d64040;
}
.cookiebar .cookiebar-wrapper .cookiebar-intro a {
  cursor: pointer;
  text-decoration: underline;
  text-align: center;
}
.cookiebar .cookiebar-wrapper .cookiebar-settings {
  max-width: 700px;
}
.cookiebar .cookiebar-wrapper .cookiebar-settings h3 {
  text-align: left;
}
.cookiebar .cookiebar-wrapper .cookiebar-settings .cookiebar-settings-content {
  max-height: 340px;
  overflow-y: scroll;
}
.cookiebar .cookiebar-wrapper .cookiebar-settings .cookiebar-settings-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cookiebar .cookiebar-wrapper .cookiebar-settings .cookiebar-settings-content ul li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 1rem;
}
.cookiebar .cookiebar-wrapper .cookiebar-settings .cookiebar-settings-content ul li:not(:first-child) {
  padding-top: 1rem;
}
.cookiebar .cookiebar-wrapper .cookiebar-settings .cookiebar-settings-content ul li:not(:last-child) {
  border-bottom: 1px solid #ccc;
}
.cookiebar .cookiebar-wrapper .cookiebar-settings .cookiebar-settings-content ul li .cookie-wrapper {
  max-width: 70%;
}
.cookiebar .cookiebar-wrapper .cookiebar-settings .cookiebar-settings-content ul li .cookie-wrapper h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}
.cookiebar .cookiebar-wrapper .cookiebar-settings .cookiebar-settings-content ul li .cookie-wrapper p {
  margin: 0;
}
.cookiebar .cookiebar-wrapper .cookiebar-settings .cookiebar-settings-content ul li input[type="checkbox"]:checked {
  background: green;
}
.cookiebar .cookiebar-wrapper .cookiebar-settings .cookie-operators {
  margin-top: 2rem;
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}
.cookiebar .cookiebar-wrapper .cookiebar-settings .cookie-operators button {
  background: #ec4747;
  color: #fff;
  text-decoration: none;
  padding: 0.75rem;
  border: 0;
  cursor: pointer;
  box-shadow: none;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
}
.cookiebar .cookiebar-wrapper .cookiebar-settings .cookie-operators button.outlined {
  background: #fff;
  border: 1px solid #ccc;
  color: #000;
}
.cookiebar .cookiebar-wrapper .cookiebar-settings .cookie-operators button.outlined:hover {
  background: #ededed;
}
.cookiebar .cookiebar-wrapper .cookiebar-settings .cookie-operators button.filled:hover {
  background: #d64040;
}
