.WF-Cookie-Banner {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  overflow-y: scroll;
  overflow-x: hidden;
  width: 100vw;
  z-index: 999999;
  background: rgba(0, 0, 0, 0.8);
  color: #00507b;
  padding: 15px;
  cursor: pointer;
}
.WF-Cookie-Banner p {
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 20px;
  font-weight: 400;
}
.WF-Cookie-Banner__main {
  background-color: #fff;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  padding: 30px;
  padding-bottom: 20px;
  position: relative;
  cursor: initial;
}
.WF-Cookie-Banner__headline {
  font-size: 28px;
  font-weight: bold;
  line-height: 38px;
  margin-bottom: 20px;
  color: #00507b;
}
.WF-Cookie-Banner__description {
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
}
.WF-Cookie-Banner__essential-list {
  padding-left: 20px;
  margin-bottom: 50px;
}
.WF-Cookie-Banner__essential-list__item {
  font-size: 15px;
  line-height: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
.WF-Cookie-Banner__settings--hidden {
  display: none;
}
.WF-Cookie-Banner__cookie-groups {
  padding-top: 30px;
}
.WF-Cookie-Banner__cookie-group {
  border: 1px solid #8c8c8c;
  border-radius: 0;
  padding: 25px 25px 19px 30px;
  margin-bottom: 25px;
}
.WF-Cookie-Banner__cookie-group__header {
  margin-bottom: 15px;
  display: flex;
  position: relative;
  justify-content: space-between;
  align-items: center;
}
.WF-Cookie-Banner__cookie-group__header__text {
  font-size: 20px;
  line-height: 20px;
  font-weight: bold;
  cursor: pointer;
  padding-left: 33px;
}
.WF-Cookie-Banner__cookie-group__header__text + .WF-Cookie-Banner__checkbox {
  transform: scale(0);
  opacity: 0;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.WF-Cookie-Banner__cookie-group__header__text.is-active + .WF-Cookie-Banner__checkbox {
  transform: scale(1);
  opacity: 1;
}
.WF-Cookie-Banner__cookie-group__description {
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 0;
  font-weight: 400;
  padding-left: 33px;
}
.WF-Cookie-Banner__cookie-group--expanded .WF-Cookie-Banner__cookie-sub-groups {
  display: block;
}
.WF-Cookie-Banner__header-icon {
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.WF-Cookie-Banner__header-icon--small {
  width: 12px;
  height: 12px;
  left: 14px;
}
.WF-Cookie-Banner__header-icon:before, .WF-Cookie-Banner__header-icon:after {
  content: "";
  display: block;
  height: 100%;
  background: #00507b;
  width: 2px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  transition: transform 0.3s ease;
}
.WF-Cookie-Banner__header-icon:after {
  transform: translateX(-50%) rotate(90deg);
}
.WF-Cookie-Banner__header-icon--active:before {
  transform: translateX(-50%) rotate(90deg);
}
.WF-Cookie-Banner__header-icon--active:after {
  transform: translateX(-50%) rotate(180deg);
}
.WF-Cookie-Banner__cookie-sub-groups {
  padding-top: 30px;
}
.WF-Cookie-Banner__cookie-sub-group {
  background-color: #fff;
  margin-left: 33px;
  border-radius: 5px;
  margin-bottom: 20px;
}
.WF-Cookie-Banner__cookie-sub-group__header {
  padding: 22px 10px 22px 0;
  background-color: #f4f4f4;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.WF-Cookie-Banner__cookie-sub-group__header__text {
  font-size: 16px;
  font-weight: bold;
  line-height: 20px;
  margin: 0;
  padding-left: 40px;
  cursor: pointer;
}
.WF-Cookie-Banner__cookies {
  padding: 30px 10px 30px 40px;
  list-style-type: none;
  margin: 0;
  border: 1px solid #f5f5f5;
}
.WF-Cookie-Banner__cookies--expanded {
  display: block;
}
.WF-Cookie-Banner__cookies__list-item {
  display: flex;
  justify-content: space-between;
  padding: 0;
  margin-bottom: 16px;
}
.WF-Cookie-Banner__cookies__list-item:last-of-type {
  margin-bottom: 0;
}
.WF-Cookie-Banner__cookie {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.WF-Cookie-Banner__cookie__title {
  font-size: 15px;
}
.WF-Cookie-Banner__cookie__description {
  display: inline-block;
  position: relative;
  width: 15px;
  height: 15px;
  line-height: 15px;
  background: #000;
  color: #fff;
  text-align: center;
  font-size: 10px;
  border-radius: 20px;
  vertical-align: middle;
  font-weight: 500;
  margin-left: 10px;
}
.WF-Cookie-Banner__cookie__description__text {
  position: absolute;
  padding: 15px;
  background-color: #000;
  color: #fff;
  width: 250px;
  bottom: calc(100% + 12px);
  left: -80px;
  border-radius: 6px;
  text-align: left;
  opacity: 0;
  transform-origin: 80px bottom;
  transform: scale(0);
  transition: transform 0.5s ease, opacity 0.5s ease;
  z-index: 110;
}
.WF-Cookie-Banner__cookie__description__arrow {
  width: 0;
  height: 0;
  content: "";
  border: 10px solid transparent;
  border-top-color: #000;
  position: absolute;
  bottom: 7px;
  left: -3px;
  opacity: 0;
  transform: scale(0);
  transition: transform 0.5s step-end, opacity 0.5s ease;
}
.WF-Cookie-Banner__cookie__description:hover > * {
  opacity: 1;
  transform: scale(1);
}
.WF-Cookie-Banner__cookie__description:hover > * + * {
  transition: transform 0.5s step-start, opacity 0.5s ease;
}
.WF-Cookie-Banner__cookie__details {
  flex-basis: 100%;
  list-style: none;
  padding: 0;
  margin-top: 20px;
}
.WF-Cookie-Banner__cookie__details__item {
  font-size: 13px;
  line-height: 20px;
  display: flex;
}
.WF-Cookie-Banner__cookie__details__property {
  min-width: 100px;
}
.WF-Cookie-Banner__checkbox {
  width: 56px;
  height: 32px;
  background: #777c8d;
  position: relative;
  border-radius: 50px;
  transition: 0.3s;
  flex-shrink: 0;
  display: inline-block;
}
.WF-Cookie-Banner__checkbox--small {
  width: 40px;
  height: 25px;
}
.WF-Cookie-Banner__checkbox--hidden {
  display: none;
}
.WF-Cookie-Banner__checkbox__input {
  visibility: hidden;
}
.WF-Cookie-Banner__checkbox__label {
  display: block;
  position: absolute;
  top: 2px;
  left: 0;
  cursor: pointer;
  border-radius: 50px;
  transform: translateX(2px);
  transition: all 0.4s ease;
  height: calc(100% - 4px);
  width: 50%;
  background-color: #fff;
  z-index: 102;
  box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.05), 0 3px 1px 0 rgba(0, 0, 0, 0.05), 0 2px 2px 0 rgba(0, 0, 0, 0.1), 0 3px 3px 0 rgba(0, 0, 0, 0.05);
}
.WF-Cookie-Banner__checkbox__checked-bg {
  width: 100%;
  height: 100%;
  background: #0082c9;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 40px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 101;
}
.WF-Cookie-Banner__checkbox__input:checked + .WF-Cookie-Banner__checkbox__label {
  transform: translateX(100%) translateX(-2px);
}
.WF-Cookie-Banner__checkbox__input:checked + .WF-Cookie-Banner__checkbox__label + .WF-Cookie-Banner__checkbox__checked-bg {
  opacity: 1;
}
.WF-Cookie-Banner__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.WF-Cookie-Banner__links {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}
.WF-Cookie-Banner__link {
  font-size: 14px;
  line-height: 19px;
  color: #777c8d;
  text-decoration: none;
  margin-right: 20px;
  margin-bottom: 10px;
}
.WF-Cookie-Banner__buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.WF-Cookie-Banner__button {
  padding: 8px 10px 10px;
  border-radius: 3px;
  font-size: 14px;
  line-height: 22px;
  font-weight: bold;
  margin-right: 10px;
  margin-bottom: 10px;
  min-width: 110px;
  cursor: pointer;
  text-align: center;
  border: 1px solid #777c8d;
  background-color: #777c8d;
  color: #fff;
}
.WF-Cookie-Banner__button--save, .WF-Cookie-Banner__button--save-all {
  background-color: #0082c9;
  border: 1px solid #0082c9;
  margin-right: 0;
}
.WF-Cookie-Banner__button--hidden {
  display: none;
}
.WF-Cookie-Banner__block--expandable {
  overflow: hidden;
  height: 0;
  opacity: 0;
  transition: height 0.3s ease, opacity 0.3s ease;
}
.WF-Cookie-Banner__block--expanded {
  height: auto;
  opacity: 1;
}

.WF-Cookie-Banner-log__entry {
  display: flex;
  padding: 20px 0;
}
.WF-Cookie-Banner-log__entry:not(:first-child) {
  border-top: 1px solid currentColor;
}
.WF-Cookie-Banner-log__entry__cookies {
  flex-grow: 1;
}
.WF-Cookie-Banner-log__entry__cookies li {
  margin-bottom: 4px;
}
.WF-Cookie-Banner-log__entry__date p {
  margin-bottom: 4px;
}
