/* ------------------ Colors ------------------ */
:root {
  --white: rgba(255, 255, 255, 1);
  --white-trans-5: rgba(255, 255, 255, .05);
  --black: rgba(0, 0, 0, 1);
  --gray-900: rgba(50, 56, 60, 1);
  --gray-800: rgba(67, 77, 83, 1);
  --gray-700: rgba(80, 91, 98, 1);
  --gray-500: rgba(127, 140, 148, 1);
  --gray-300: rgba(184, 193, 198, 1);
  --gray-200: rgba(209, 217, 221, 1);
  --gray-50: rgba(246, 247, 247, 1);
  --gray-trans-70: rgba(26, 26, 26, .7);
  --blue: rgba(10, 165, 250, 1);
  --green: rgba(74, 214, 163, 1);
}

/* ------------------ Helper classes ------------------ */
.-hide,
.hide {
  display: none !important;
}

.-stop-interaction,
.stop-interaction {
  opacity: 0.6 !important;
  pointer-events: none !important;
}

/* ------------------ Main ------------------ */
.bn-cookie-panel {
  position: fixed;
  z-index: 11000;
  top: 64px;
  left: 50%;
  transform: translate(-50%, 0);
  max-width: 800px;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
}
@media screen and (max-width: 800px) {
  .bn-cookie-panel {
    top: 16px;
    right: 16px;
    left: 16px;
    transform: unset;
    height: max-content;
    width: unset;
  }
}
.bn-cookie-panel p,
.bn-cookie-panel span,
.bn-cookie-panel a {
  color: var(--gray-900);
  display: inline-block;
}
.bn-cookie-panel a:any-link {
  color: inherit;
}
.bn-cookie-panel .privacy-header {
  position: unset;
  width: 100%;
  max-width: 100%;
  left: unset;
  height: unset;
  padding: 40px;
  background: var(--white);
}
@media screen and (max-width: 800px) {
  .bn-cookie-panel .privacy-header {
    padding: 28px;
  }
}
.bn-cookie-panel .privacy-header .headline {
  font-weight: 800;
  font-size: 24px;
  line-height: 24px;
  margin: 0 0 12px 0;
}
.bn-cookie-panel .privacy-header p {
  font-size: 15px;
  font-weight: 400;
  line-height: 21px;
  margin-bottom: 0;
}
.bn-cookie-panel .privacy-header p:last-of-type {
  margin: 0;
}
@media screen and (max-width: 800px) {
  .bn-cookie-panel .privacy-header p {
    font-size: 14px;
    line-height: 18px;
  }
}
.bn-cookie-panel .privacy-header p a {
  font-size: inherit;
  font-weight: 700;
  line-height: inherit;
}
.bn-cookie-panel .privacy-header p a:hover {
  cursor: pointer;
  text-decoration: none;
}
.bn-cookie-panel .privacy-content {
  padding: 0 40px;
  display: none;
  background: var(--white);
}
.bn-cookie-panel .privacy-content.active {
  display: block;
}
@media screen and (max-width: 800px) {
  .bn-cookie-panel .privacy-content {
    padding: 0 28px;
  }
}
.bn-cookie-panel .privacy-content .subheadline {
  font-size: 16px;
  line-height: 18px;
  font-weight: 700;
}
.bn-cookie-panel .privacy-content p a {
  font-weight: 700;
}
.bn-cookie-panel .privacy-content p a:hover {
  cursor: pointer;
  text-decoration: none;
}
.bn-cookie-panel .privacy-content .bn-cookie-options .bn-cookie-option {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
  position: relative;
}
.bn-cookie-panel .privacy-content .bn-cookie-options .bn-cookie-option:last-of-type {
  margin: 0;
  padding: 0;
  border: 0 none;
}
@media screen and (max-width: 800px) {
  .bn-cookie-panel .privacy-content .bn-cookie-options .bn-cookie-option {
    margin-bottom: 12px;
  }
}
.bn-cookie-panel .privacy-content .bn-cookie-options .bn-cookie-option .control-switch {
  position: relative;
  display: block;
  width: 40px;
  min-width: 40px;
  height: 23px;
  background: transparent;
  border-radius: 100px;
  border: 2px solid var(--black);
  transition: all 0.35s;
}
.bn-cookie-panel .privacy-content .bn-cookie-options .bn-cookie-option .control-switch:hover {
  cursor: pointer;
  background: rgba(246, 247, 247, 0.8);
  transition: all 0.35s;
}
.bn-cookie-panel .privacy-content .bn-cookie-options .bn-cookie-option .control-switch.active {
  transition: all 0.35s;
  background: var(--green);
  border-color: var(--green);
}
.bn-cookie-panel .privacy-content .bn-cookie-options .bn-cookie-option .control-switch.active .control-switch-btn {
  opacity: 1;
  left: 20px;
  background: var(--white);
  transition: all 0.35s;
}
.bn-cookie-panel .privacy-content .bn-cookie-options .bn-cookie-option .control-switch .control-switch-btn {
  position: absolute;
  top: 4px;
  left: 3px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: rgb(0, 0, 0);
  background: var(--black);
  transition: all 0.35s;
}
.bn-cookie-panel .privacy-content .bn-cookie-option-l {
  width: 100%;
  position: relative;
  padding-right: 48px;
}
@media screen and (max-width: 800px) {
  .bn-cookie-panel .privacy-content .bn-cookie-option-l {
    padding-right: 0;
  }
}
.bn-cookie-panel .privacy-content .bn-cookie-option-l .subheadline {
  display: block;
  padding-left: 48px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 800px) {
  .bn-cookie-panel .privacy-content .bn-cookie-option-l .subheadline {
    font-size: 14px;
    line-height: 16px;
    padding-left: 24px;
    align-items: start;
  }
}
.bn-cookie-panel .privacy-content .bn-cookie-option-l .bn-cookie-option-l-text {
  display: flex;
  align-items: center;
  margin: 0 0 8px 0;
  min-height: 30px;
}
@media screen and (max-width: 800px) {
  .bn-cookie-panel .privacy-content .bn-cookie-option-l .bn-cookie-option-l-text {
    align-items: start;
  }
}
@media screen and (max-width: 800px) {
  .bn-cookie-panel .privacy-content .bn-cookie-option-l .bn-cookie-option-l-text .subheadline {
    padding-right: 44px;
  }
}
.bn-cookie-panel .privacy-content .bn-cookie-option-l .cookie-count {
  display: block;
  padding: 4px 9px;
  margin-left: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 12px;
  font-weight: 600;
  border-radius: 50px;
  height: 20px;
  background: var(--gray-200);
  color: var(--white);
}
@media screen and (max-width: 800px) {
  .bn-cookie-panel .privacy-content .bn-cookie-option-l .cookie-count {
    display: none;
  }
}
.bn-cookie-panel .privacy-content .bn-cookie-option-l .show-cookie-text {
  cursor: pointer;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 30px;
  width: 30px;
  pointer: cursor;
  transform: rotate(0deg);
  transition: all 0.35s;
}
@media screen and (max-width: 800px) {
  .bn-cookie-panel .privacy-content .bn-cookie-option-l .show-cookie-text {
    left: -5px;
    top: -7px;
  }
}
.bn-cookie-panel .privacy-content .bn-cookie-option-l .show-cookie-text.-active {
  transform: rotate(90deg);
  transition: all 0.35s;
}
.bn-cookie-panel .privacy-content .bn-cookie-option-l .show-cookie-text::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  height: 3px;
  width: 12px;
  transform: rotate(45deg);
  border-radius: 3px;
  background: var(--gray-900);
}
@media screen and (max-width: 800px) {
  .bn-cookie-panel .privacy-content .bn-cookie-option-l .show-cookie-text::before {
    width: 8px;
    top: 12px;
  }
}
.bn-cookie-panel .privacy-content .bn-cookie-option-l .show-cookie-text::after {
  content: "";
  position: absolute;
  top: 17px;
  left: 10px;
  height: 3px;
  width: 12px;
  transform: rotate(-45deg);
  border-radius: 3px;
  background: var(--gray-900);
}
@media screen and (max-width: 800px) {
  .bn-cookie-panel .privacy-content .bn-cookie-option-l .show-cookie-text::after {
    width: 8px;
    top: 16px;
  }
}
.bn-cookie-panel .privacy-content .bn-cookie-option-l .cookie-text {
  padding-left: 48px;
  height: max-content;
  transition: all 0.35s;
}
@media screen and (max-width: 800px) {
  .bn-cookie-panel .privacy-content .bn-cookie-option-l .cookie-text {
    padding-left: 32px;
  }
}
.bn-cookie-panel .privacy-content .bn-cookie-option-l .cookie-text.-active {
  margin: 20px 0 0 0;
  padding-left: 48px;
  height: max-content;
  transition: all 0.35s;
}
.bn-cookie-panel .privacy-content .bn-cookie-option-l .cookie-text p {
  margin: 0;
}
@media screen and (max-width: 800px) {
  .bn-cookie-panel .privacy-content .bn-cookie-option-l .cookie-text p {
    font-size: 14px;
    line-height: 18px;
  }
}
.bn-cookie-panel .privacy-content .bn-cookie-option-l .cookie-text .items {
  display: flex;
  flex-direction: column;
  margin-top: 24px;
}
@media screen and (max-width: 800px) {
  .bn-cookie-panel .privacy-content .bn-cookie-option-l .cookie-text .items {
    margin: 14px 0 12px 0;
  }
}
.bn-cookie-panel .privacy-content .bn-cookie-option-l .cookie-text .items .item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  border-radius: 8px;
  padding: 16px;
  position: relative;
  background-color: var(--gray-50);
}
.bn-cookie-panel .privacy-content .bn-cookie-option-l .cookie-text .items .item:last-of-type {
  margin-bottom: 0;
}
.bn-cookie-panel .privacy-content .bn-cookie-option-l .cookie-text .items .item .itemControl {
  position: absolute;
  top: 15px;
  right: 16px;
}
.bn-cookie-panel .privacy-content .bn-cookie-option-l .cookie-text .items .item .itemContent {
  width: 100%;
}
.bn-cookie-panel .privacy-content .bn-cookie-option-l .cookie-text .items .item .itemContent .subheadline {
  font-size: 16px;
  line-height: 21px;
  font-weight: 600;
  padding: 0;
  margin: 0;
}
.bn-cookie-panel .privacy-content .bn-cookie-option-l .cookie-text .items .item .itemContent p {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  margin: 10px 0 0 0;
}
@media screen and (max-width: 800px) {
  .bn-cookie-panel .privacy-content .bn-cookie-option-l .cookie-text .items .item .itemContent p {
    line-height: 18px;
  }
}
.bn-cookie-panel .privacy-content .bn-cookie-option-l .cookie-text .items .item .itemContent p:empty {
  display: none;
}
.bn-cookie-panel .privacy-content .bn-cookie-option-l .cookie-text .items .item .itemContent .detail {
  margin-top: 20px;
}
.bn-cookie-panel .privacy-content .bn-cookie-option-l .cookie-text .items .item .itemContent .detail .show-detail-content {
  position: relative;
  cursor: pointer;
  width: max-content;
  max-width: 100%;
  padding-left: 18px;
}
.bn-cookie-panel .privacy-content .bn-cookie-option-l .cookie-text .items .item .itemContent .detail .show-detail-content.-active .show-detail-content__arrow {
  transform: rotate(90deg);
  transition: all 0.35s;
}
.bn-cookie-panel .privacy-content .bn-cookie-option-l .cookie-text .items .item .itemContent .detail .show-detail-content .show-detail-content__text {
  font-size: 12px;
  line-height: 18px;
  font-weight: 700;
}
.bn-cookie-panel .privacy-content .bn-cookie-option-l .cookie-text .items .item .itemContent .detail .show-detail-content .show-detail-content__arrow {
  position: absolute;
  top: 3px;
  left: -2px;
  height: 14px;
  width: 14px;
  transition: all 0.35s;
  transform: rotate(0deg);
}
.bn-cookie-panel .privacy-content .bn-cookie-option-l .cookie-text .items .item .itemContent .detail .show-detail-content .show-detail-content__arrow::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  height: 2px;
  width: 6px;
  transform: rotate(45deg);
  border-radius: 3px;
  background: var(--gray-900);
}
.bn-cookie-panel .privacy-content .bn-cookie-option-l .cookie-text .items .item .itemContent .detail .show-detail-content .show-detail-content__arrow::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 4px;
  height: 2px;
  width: 6px;
  transform: rotate(-45deg);
  background: var(--gray-900);
  border-radius: 3px;
}
.bn-cookie-panel .privacy-content .bn-cookie-option-l .cookie-text .items .item .itemContent .detail .detail-content {
  margin: 15px 0 0 19px;
}
.bn-cookie-panel .privacy-content .bn-cookie-option-l .cookie-text .items .item .itemContent .detail .detail-content .subheadline {
  font-size: 12px;
  line-height: 18px;
  margin-top: 30px;
}
.bn-cookie-panel .privacy-content .bn-cookie-option-l .cookie-text .items .item .itemContent .detail .detail-content .subheadline:first-of-type {
  margin-top: 0;
}
.bn-cookie-panel .privacy-content .bn-cookie-option-l .cookie-text .items .item .itemContent .detail .detail-content p {
  font-size: 12px;
  line-height: 16px;
  margin: 3px 0 0 0;
}
.bn-cookie-panel .privacy-content .bn-cookie-option-l .cookie-text .items .item .itemContent .detail .detail-content .pill-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
}
.bn-cookie-panel .privacy-content .bn-cookie-option-l .cookie-text .items .item .itemContent .detail .detail-content .pill-wrapper .pill {
  padding: 4px 8px;
  border: 1px solid rgb(50, 56, 60);
  border-radius: 15px;
  font-size: 12px;
  line-height: 16px;
  margin-right: 5px;
}
.bn-cookie-panel .privacy-content .bn-cookie-option-l .cookie-text .items .item .itemContent .detail .detail-content .cookie-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 10px;
}
.bn-cookie-panel .privacy-content .bn-cookie-option-l .cookie-text .items .item .itemContent .detail .detail-content .cookie-list .title {
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
}
.bn-cookie-panel .privacy-content .bn-cookie-option-l .cookie-text .items .item .itemContent .detail .detail-content .cookie-list p {
  font-size: 12px;
  line-height: 16px;
}
.bn-cookie-panel .privacy-content .bn-cookie-option-l .cookie-text .items .item .itemContent .detail .detail-content .cookie-list table {
  margin-top: 10px;
}
.bn-cookie-panel .privacy-content .bn-cookie-option-l .cookie-text .items .item .itemContent .detail .detail-content .cookie-list table tbody tr td {
  font-size: 12px;
  line-height: 16px;
  color: var(--gray-900);
}
.bn-cookie-panel .privacy-content .bn-cookie-option-l .cookie-text .items .item .itemContent .detail .detail-content .cookie-list .cookie-list__item {
  display: flex;
  flex-direction: column;
  width: calc(50% - 5px);
  border: 1px solid var(--gray-900);
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 8px;
}
@media screen and (max-width: 800px) {
  .bn-cookie-panel .privacy-content .bn-cookie-option-l .cookie-text .items .item .itemContent .detail .detail-content .cookie-list .cookie-list__item {
    width: 100%;
  }
  .bn-cookie-panel .privacy-content .bn-cookie-option-l .cookie-text .items .item .itemContent .detail .detail-content .cookie-list .cookie-list__item:last-of-type {
    margin-bottom: 0;
  }
}
.bn-cookie-panel .privacy-content .bn-cookie-option-r {
  display: flex;
  justify-content: flex-end;
  width: 80px;
  min-width: 80px;
  margin-top: 4px;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 800px) {
  .bn-cookie-panel .privacy-content .bn-cookie-option-r {
    margin-top: 0;
  }
}
.bn-cookie-panel .privacy-footer {
  padding: 40px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 800px) {
  .bn-cookie-panel .privacy-footer {
    padding: 28px;
  }
}
.bn-cookie-panel .privacy-footer .footer-top {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}
.bn-cookie-panel .privacy-footer .footer-top .bn-cookie-accept,
.bn-cookie-panel .privacy-footer .footer-top .bn-cookie-accept-simple {
  border-radius: 4px;
  padding: 14px 12px;
  height: 52px;
  max-width: 220px;
  width: 100%;
  margin-right: 16px;
  font-size: 16px;
  line-height: 24px;
  cursor: pointer;
  text-align: center;
  filter: brightness(100%);
  transition: all 0.35s;
  background: var(--blue);
  color: var(--white);
  text-decoration: none;
}
@media screen and (max-width: 800px) {
  .bn-cookie-panel .privacy-footer .footer-top .bn-cookie-accept,
  .bn-cookie-panel .privacy-footer .footer-top .bn-cookie-accept-simple {
    font-size: 13px;
  }
}
.bn-cookie-panel .privacy-footer .footer-top .bn-cookie-accept:hover,
.bn-cookie-panel .privacy-footer .footer-top .bn-cookie-accept-simple:hover {
  filter: brightness(95%);
  transition: all 0.35s;
}
.bn-cookie-panel .privacy-footer .footer-top .bn-cookie-accept:last-child, .bn-cookie-panel .privacy-footer .footer-top .bn-cookie-accept:only-child,
.bn-cookie-panel .privacy-footer .footer-top .bn-cookie-accept-simple:last-child,
.bn-cookie-panel .privacy-footer .footer-top .bn-cookie-accept-simple:only-child {
  margin-right: 0;
}
.bn-cookie-panel .privacy-footer .footer-top .bn-cookie-accept.-black,
.bn-cookie-panel .privacy-footer .footer-top .bn-cookie-accept-simple.-black {
  background: transparent;
  color: rgb(50, 56, 60);
  border: 2px solid rgb(50, 56, 60);
  line-height: 20px;
  transition: all 0.35s;
}
.bn-cookie-panel .privacy-footer .footer-top .bn-cookie-accept.-black:hover,
.bn-cookie-panel .privacy-footer .footer-top .bn-cookie-accept-simple.-black:hover {
  background: rgb(50, 56, 60);
  color: var(--white);
  transition: all 0.35s;
}
.bn-cookie-panel .privacy-footer .footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
}
.bn-cookie-panel .privacy-footer .footer-bottom a {
  color: var(--gray-500);
  font-weight: 500;
  font-size: 13px;
  line-height: 13px;
  margin-right: 16px;
  cursor: pointer;
  transition: all 0.35s;
  text-decoration: none;
}
.bn-cookie-panel .privacy-footer .footer-bottom a:hover {
  color: var(--gray-900);
  transition: all 0.35s;
}
.bn-cookie-panel .privacy-footer .footer-bottom a:last-child, .bn-cookie-panel .privacy-footer .footer-bottom a:only-child {
  margin-right: 0;
}
.bn-cookie-panel.-dark {
  background: var(--gray-900);
}
.bn-cookie-panel.-dark p,
.bn-cookie-panel.-dark span,
.bn-cookie-panel.-dark a {
  color: var(--gray-300);
}
.bn-cookie-panel.-dark .privacy-content .bn-cookie-options .bn-cookie-option .control-switch {
  border-color: var(--gray-500);
}
.bn-cookie-panel.-dark .privacy-content .bn-cookie-options .bn-cookie-option .control-switch:hover {
  background: var(--white-trans-5);
}
.bn-cookie-panel.-dark .privacy-content .bn-cookie-options .bn-cookie-option .control-switch.active {
  background: var(--green);
  border-color: var(--green);
}
.bn-cookie-panel.-dark .privacy-content .bn-cookie-options .bn-cookie-option .control-switch.active .control-switch-btn {
  background: var(--white);
}
.bn-cookie-panel.-dark .privacy-content .bn-cookie-options .bn-cookie-option .control-switch-btn {
  background: var(--gray-500);
}
.bn-cookie-panel.-dark .privacy-content .bn-cookie-option-l .cookie-count {
  background: var(--gray-700);
  color: var(--gray-300);
}
.bn-cookie-panel.-dark .privacy-content .bn-cookie-option-l .show-cookie-text::before {
  background: var(--gray-700);
}
.bn-cookie-panel.-dark .privacy-content .bn-cookie-option-l .show-cookie-text::after {
  background: var(--gray-700);
}
.bn-cookie-panel.-dark .privacy-content .cookie-text .items .item {
  background-color: var(--gray-800);
}
.bn-cookie-panel.-dark .privacy-content .cookie-text .items .item .itemContent .detail .show-detail-content .show-detail-content__arrow::before {
  background: var(--gray-300);
}
.bn-cookie-panel.-dark .privacy-content .cookie-text .items .item .itemContent .detail .show-detail-content .show-detail-content__arrow::after {
  background: var(--gray-300);
}
.bn-cookie-panel.-dark .privacy-content .cookie-text .items .item .itemContent .detail .detail-content .pill-wrapper .pill {
  border-color: var(--gray-300);
}
.bn-cookie-panel.-dark .privacy-content .cookie-text .items .item .itemContent .detail .detail-content .cookie-list table tbody tr td {
  color: var(--gray-300);
}
.bn-cookie-panel.-dark .privacy-content .cookie-text .items .item .itemContent .detail .detail-content .cookie-list .cookie-list__item {
  border-color: var(--gray-300);
}
.bn-cookie-panel.-dark .privacy-footer {
  background: var(--white);
}
.bn-cookie-panel.-dark .privacy-footer .footer-top .bn-cookie-accept.-black {
  color: var(--gray-300);
  border: 2px solid var(--gray-300);
}
.bn-cookie-panel.-dark .privacy-footer .footer-top .bn-cookie-accept.-black:hover {
  background: var(--white);
  border-color: var(--white);
  color: rgb(50, 56, 60);
}
.bn-cookie-panel.-dark .privacy-footer .footer-bottom a {
  color: var(--gray-300);
}
.bn-cookie-panel.-dark .privacy-footer .footer-bottom a:hover {
  color: var(--white);
}

/* ------------------ Overlay ------------------ */
.privacy-overlay {
  background-color: var(--gray-trans-70);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s 50ms;
}
.privacy-overlay.active {
  opacity: 1;
  visibility: visible;
  transition: 0.35s 50ms;
}

/* ------------------ Other ------------------ */
.bn-cookie-settings {
  position: absolute;
  right: 30px;
  cursor: pointer;
  font-size: 24px;
}

.open-cookie-panel {
  cursor: pointer;
}

.dcs-layer {
  width: 100%;
  color: #000;
  background-color: #EEEEEE;
  margin: 15px 0px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.dcs-layer-contentwrapper {
  display: flex;
  justify-content: center;
  height: 300px;
}

.dcs-layer-content {
  cursor: pointer;
  margin: auto 0px;
  color: #000;
  font-weight: 400;
  text-align: center;
}

.dcs-layer-content p {
  font-size: 20px;
}

.dcs-layer-content-controls {
  display: flex;
  justify-content: space-evenly;
}

.dcs-layer-content-controls a {
  color: #000;
  font-size: 16px;
  padding: 5px;
}

/*# sourceMappingURL=app.css.map */
