.rbkc_cb-transparency-5 {
  opacity: 0.95;
}

.rbkc_cb-transparency-10 {
  opacity: 0.9;
}

.rbkc_cb-transparency-15 {
  opacity: 0.85;
}

.rbkc_cb-transparency-20 {
  opacity: 0.8;
}

.rbkc_cb-transparency-25 {
  opacity: 0.75;
}

.rbkc_cb-container {
  background-color: white;
  position: unset;
  margin: 1em 1em 0 1em;
  width: -webkit-fill-available;
  opacity: 0;
  background-color: rgb(246, 246, 246);
  border-color: rgb(85, 85, 85);
  color: rgb(0, 0, 0);
  border-style: solid;
  border-width: 0;
  box-sizing: border-box;
  display: flex;
  flex-wrap: nowrap;
  font-family: inherit;
  font-size: 16px;
  line-height: 1.5em;
  /* overflow: hidden; */
  -webkit-transition: opacity 1s ease;
  -moz-transition: opacity 1s ease;
  -ms-transition: opacity 1s ease;
  -o-transition: opacity 1s ease;
  transition: opacity 1s ease;
}

.rbkc_cb-container.active {
  -webkit-animation: cookieFadeIn 1s ease;
  -moz-animation: cookieFadeIn 1s ease;
  -ms-animation: cookieFadeIn 1s ease;
  -o-animation: cookieFadeIn 1s ease;
  animation: cookieFadeIn 1s ease;
  opacity: 1;
}

@keyframes cookieFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Firefox < 16 */
@-moz-keyframes cookieFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes cookieFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Internet Explorer */
@-ms-keyframes cookieFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media print {
  .rbkc_cb-container {
    display: none;
  }
}

.rbkc_cb-pushdown-wrap {
  max-height: 0;
  overflow: hidden;
}

.rbkc_cb-pushdown {
  margin: 0 !important;
  position: static;
}

.rbkc_cb-invisible {
  opacity: 0;
}

.rbkc_cb-fontsize-tiny {
  font-size: 12px;
}

.rbkc_cb-fontsize-small {
  font-size: 14px;
}

.rbkc_cb-fontsize-large {
  font-size: 18px;
}

.rbkc_cb-border-thin {
  border-width: 1px;
}

.rbkc_cb-border-normal {
  border-width: 3px;
}

.rbkc_cb-border-thick {
  border-width: 5px;
}

.rbkc_cb-float {
  flex-direction: column;
  /* max-width: 22em; */
  padding: 1.5em;
}

.rbkc_cb-float.rbkc_cb-padding-small {
  padding: 1em;
}

.rbkc_cb-float.rbkc_cb-padding-large {
  padding: 2em;
}

.rbkc_cb-banner {
  flex-direction: row;
  margin: 1em;
  padding: 1em;
}

.rbkc_cb-banner.rbkc_cb-padding-small {
  padding: 0.5em 0.5em 0.5em 1em;
}

.rbkc_cb-banner.rbkc_cb-padding-large {
  padding: 1.5em;
}

.rbkc_cb-banner.rbkc_cb-margin-none {
  margin: 0;
}

.rbkc_cb-banner.rbkc_cb-margin-small {
  margin: 0.5em;
}

.rbkc_cb-banner.rbkc_cb-margin-large {
  margin: 1.5em;
}

.rbkc_cb-padding-none {
  padding: 0;
}

.rbkc_cb-padding-none.rbkc_cb-float .rbkc_cb-message {
  margin: 1em;
}

.rbkc_cb-padding-none.rbkc_cb-banner .rbkc_cb-message {
  margin: 0.8em 1em;
}

.rbkc_cb-padding-none.rbkc_cb-banner .rbkc_cb-btn {
  height: 100%;
  padding: 0.9em 1.5em;
  width: auto;
}

.rbkc_cb-btn,
.rbkc_cb-privacy {
  cursor: pointer;
}

button.rbkc_cb-btn:hover {
  background-color: #fff !important;
  color: #000 !important;
  border-style: solid;
  border-color: #000;
  border-width: thin;
}

.rbkc_cb-privacy {
  display: inline-block;
  opacity: 0.85;
  text-decoration: underline;
}

a.rbkc_cb-privacy,
.rbkc_cb-message a.rbkc_cb-privacy,
a.rbkc_cb-privacy:visited,
.rbkc_cb-message a.rbkc_cb-privacy {
  text-decoration: underline;
}

.rbkc_cb-privacy:hover {
  opacity: 1;
}

.rbkc_cb-privacy:active,
.rbkc_cb-privacy:visited {
  color: initial;
}

button.rbkc_cb-btn {
  width: fit-content;
  padding: 0.5em;

  color: rgb(255, 255, 255);
  background-color: rgb(85, 85, 85);
  border: 0;
  display: block;
  font-size: 0.9em;
  font-weight: 700;
  outline: 0;
  text-align: center;  
  white-space: nowrap;
  -webkit-transition: background-color 0.2s ease;
  -moz-transition: background-color 0.2s ease;
  -ms-transition: background-color 0.2s ease;
  -o-transition: background-color 0.2s ease;
}

.rbkc_cb-btn:hover {
  text-decoration: none;
}

.rbkc_cb-btn:focus,
.rbkc_cb-btn:hover {
  background-color: rgb(65, 65, 65);
}

.rbkc_cb-color-custom--943834009 .rbkc_cb-privacy,
.rbkc_cb-color-custom--943834009 .rbkc_cb-privacy:active,
.rbkc_cb-color-custom--943834009 .rbkc_cb-privacy:visited {
  color: rgb(0, 0, 0);
}

.rbkc_cb-top {
  top: 1em;
}

.rbkc_cb-top.rbkc_cb-margin-none {
  top: 0;
}

.rbkc_cb-top.rbkc_cb-margin-small {
  top: 0.5em;
}

.rbkc_cb-top.rbkc_cb-margin-large {
  top: 1.5em;
}

.rbkc_cb-left {
  left: 1em;
}

.rbkc_cb-left.rbkc_cb-margin-none {
  left: 0;
}

.rbkc_cb-left.rbkc_cb-margin-small {
  left: 0.5em;
}

.rbkc_cb-left.rbkc_cb-margin-large {
  left: 1.5em;
}

.rbkc_cb-right {
  right: 1em;
}

.rbkc_cb-right.rbkc_cb-margin-none {
  right: 0;
}

.rbkc_cb-right.rbkc_cb-margin-small {
  right: 0.5em;
}

.rbkc_cb-right.rbkc_cb-margin-large {
  right: 1.5em;
}

.rbkc_cb-bottom {
  bottom: 1em;
}

.rbkc_cb-bottom.rbkc_cb-margin-none {
  bottom: 0;
}

.rbkc_cb-bottom.rbkc_cb-margin-small {
  bottom: 0.5em;
}

.rbkc_cb-bottom.rbkc_cb-margin-large {
  bottom: 1.5em;
}

.rbkc_cb-float .rbkc_cb-message {
  display: block;
  margin-bottom: 1em;
}

.rbkc_cb-banner {
  align-items: center;
}

.rbkc_cb-banner.rbkc_cb-top {
  left: 0;
  right: 0;
  top: 0;
}

.rbkc_cb-banner.rbkc_cb-bottom {
  left: 0;
  right: 0;
  bottom: 0;
}

.rbkc_cb-banner .rbkc_cb-message {
  display: block;
  flex: 1 1 auto;
  margin-right: 1em;
  max-width: 100%;
}

.rbkc_cb-float .rbkc_cb-compliance {
  flex: 1 0 auto;
}

.rbkc_cb-corners-small {
  border-radius: 5px;
}

.rbkc_cb-corners-normal {
  border-radius: 7px;
}

.rbkc_cb-corners-large {
  border-radius: 10px;
}

.rbkc_cb-corners-round .rbkc_cb-btn {
  border-radius: 4px;
}

.rbkc_cb-corners-round.rbkc_cb-margin-none,
.rbkc_cb-corners-round.rbkc_cb-padding-none .rbkc_cb-btn {
  border-radius: 0;
}

.rbkc_cb-corners-round.rbkc_cb-margin-none {
  border-radius: 0;
}

@media screen and (max-width: 414px) and (orientation: portrait),
screen and (max-width: 736px) and (orientation: landscape) {
  .rbkc_cb-top {
    top: 0 !important;
  }

  .rbkc_cb-bottom {
    bottom: 0 !important;
  }

  .rbkc_cb-banner,
  .rbkc_cb-float,
  .rbkc_cb-left,
  .rbkc_cb-right {
    left: 0 !important;
    margin: 0 !important;
    right: 0 !important;
  }

  .rbkc_cb-banner {
    align-items: unset;
    flex-direction: column;
  }

  .rbkc_cb-corners-round {
    border-radius: 0 !important;
  }

  .rbkc_cb-float {
    max-width: none;
  }

  .rbkc_cb-message {
    margin-bottom: 1em;
  }

  .rbkc_cb-banner.rbkc_cb-padding-small {
    padding: 0.5em;
  }

  .rbkc_cb-padding-small .rbkc_cb-message {
    margin-bottom: 0.5em;
  }
}