<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* .pluginFixed {
  overflow: hidden;
} */

.cookiesDisclaimer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
}
.cookiesDisclaimer .content {
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  background: #2b2e33;
}

.cookiesDisclaimer .content .title {
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  margin-top: 0;
}
.cookiesDisclaimer .content p {
  font-weight: 400;
  font-size: 14px;
  color: #ccc;
  margin-bottom: 20px;
}
.cookiesDisclaimer .content .buttons {
  display: flex;
  justify-content: space-between;
  row-gap: 10px;
}
/* .cookiesDisclaimer .content .buttons a {
  display: block;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  height: 45px;
  min-width: 178px;
  max-width: 200px;
  background-color: #ddb603;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 14px;
  text-align: center;
  border: 1px solid transparent;
  transition: 0.3s linear;
  box-sizing: border-box;
  padding: 15px;
  margin-right: 20px;
} */

.cookiesDisclaimer .content .buttons a.acceptAll {
  display: inline-block;
  float: right;
  margin: 0;
  margin-left: 10px;
  background: #ddb603;
  position: relative;
  border: none !important;
  color: #fff !important;
  border-radius: 0;
  font-weight: 700;
  font-size: 12px;
  padding: 12px 15px;
  line-height: 20px;
  text-align: center;
}

.cookiesDisclaimer .content .buttons a.acceptAll:before {
  color: #fff;
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 5px;
}

.cookiesDisclaimer .content .buttons a.more {
  display: inline-block;
  background: grey !important;
  border-radius: 0 !important;
  color: #fff !important;
  font-weight: 700;
  font-size: 12px;
  padding: 10px 15px;
  border: 2px solid grey !important;
  width: 100%;
  line-height: 20px;
  text-align: center;
}

.cookiesDisclaimer .content .buttons a.more:after {
  color: #fff;
  content: "\f30b";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 5px;
}

.cookiesDisclaimer .content .buttons a.openBICookiesSettings {
  display: inline-block;
  border-radius: 0 !important;
  background-color: transparent !important;
  border: 2px solid #b3b3b3;
  border-radius: 0;
  color: #b2b2b2;
  font-weight: 700;
  font-size: 12px;
  padding: 10px 15px;
  margin-right: 10px;
  line-height: 20px;
  text-align: center;
}

.cookiesDisclaimer .content .buttons a.openBICookiesSettings:after {
  color: #b2b2b2;
  content: "\f013";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 5px;
}

.cookiesDisclaimer .content .buttons a:hover {
  opacity: 0.8;
}
.cookiesDisclaimer .content.hide {
  transform: translateY(100%);
}
.cookiesDisclaimer.optional {
  pointer-events: none;
}
.cookiesDisclaimer.optional .content {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: white;
  padding: 20px;
  pointer-events: all;
}
.cookiesDisclaimer.optional .content .close {
  display: block;
  position: absolute;
  top: 20px;
  right: 20px;
  width: 20px;
  height: 20px;
  color: inherit;
  background-image: url(../images/close.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  text-align: center;
  filter: invert(63%) sepia(98%) saturate(585%) hue-rotate(7deg) brightness(96%)
    contrast(98%);
}
.cookiesDisclaimer.optional .content .close:hover {
  opacity: 0.5;
}
.cookiesDisclaimer.optional .content.popup {
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  bottom: auto;
  transform: translate(-50%, -50%);
  min-width: 300px;
  max-width: 95vw;
  min-height: 200px;
  max-height: 95vh;
  padding: 40px;
}
.cookiesDisclaimer.optional .content.popup .container {
  text-align: center;
}
.cookiesDisclaimer.optional .content.popup .container .buttons {
  justify-content: center;
}
.cookiesDisclaimer.required {
  background-color: rgba(0, 0, 0, 0.5);
}
.cookiesDisclaimer.required .content {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: #262626;
  padding: 20px;
}
.cookiesDisclaimer.required .content.popup {
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  bottom: auto;
  transform: translate(-50%, -50%);
  min-width: 300px;
  max-width: 95vw;
  min-height: 200px;
  max-height: 95vh;
  padding: 40px;
}
.cookiesDisclaimer.required .content.popup .container {
  text-align: center;
}
.cookiesDisclaimer.required .content.popup .container .buttons {
  justify-content: center;
}

.cookiesSettings {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 99999;
}
.cookiesSettings .content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  bottom: auto;
  transform: translate(-50%, -50%);
  min-width: 300px;
  max-width: 95vw;
  min-height: 95vh;
  max-height: 95vh;
  padding: 40px;
  background-color: white;
  overflow: scroll;
}
.cookiesSettings .content::-webkit-scrollbar {
  border-radius: 10px;
  width: 4px;
}
.cookiesSettings .content::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.2);
}
.cookiesSettings .content .closeBtn {
  display: block;
  position: absolute;
  top: 20px;
  right: 20px;
  width: 20px;
  height: 20px;
  color: inherit;
  background-image: url(../images/close.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  text-align: center;
  filter: invert(63%) sepia(98%) saturate(585%) hue-rotate(7deg) brightness(96%)
    contrast(98%);
}
.cookiesSettings .content .closeBtn:hover {
  opacity: 0.5;
}
.cookiesSettings .content .title {
  color: #000000;
  font-weight: 300;
  letter-spacing: 0;
  padding-bottom: 20px;
  padding-top: 0;
  font-size: 40px;
  text-align: center;
}
.cookiesSettings .content p {
  color: #000000;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 28px;
  margin-bottom: 40px;
  text-align: center;
}
.cookiesSettings .content p a {
  color: #ddb603;
  transition: all 0.3s ease-in-out;
}
.cookiesSettings .content p a:hover {
  color: #000000;
}
.cookiesSettings .content .securityLevel .securitySlider {
  position: relative;
  margin-bottom: 40px;
}
.cookiesSettings .content .securityLevel .securitySlider .row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 -15px;
  position: relative;
  padding: 10px 0;
}
.cookiesSettings .content .securityLevel .securitySlider .row .col-md-3 {
  float: none;
  padding: 0 15px;
  flex: 0 0 25%;
  max-width: 25%;
}
.cookiesSettings .content .securityLevel .securitySlider .level {
  text-align: center;
  position: relative;
  padding-bottom: 30px;
  cursor: pointer;
}
.cookiesSettings
  .content
  .securityLevel
  .securitySlider
  .level.noRadioButton::before,
.cookiesSettings
  .content
  .securityLevel
  .securitySlider
  .level.noRadioButton::after {
  display: none;
}
.cookiesSettings
  .content
  .securityLevel
  .securitySlider
  .level.moveRadioButton::before {
  left: -15px;
  transform: translateX(-50%);
}
.cookiesSettings
  .content
  .securityLevel
  .securitySlider
  .level.moveRadioButton::after {
  left: -15px;
  transform: translateX(-50%);
}
.cookiesSettings .content .securityLevel .securitySlider .level::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 20px;
  height: 20px;
  border: 1px solid #ddb603;
  border-radius: 50%;
  transform: translateX(-50%);
}
.cookiesSettings .content .securityLevel .securitySlider .level::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 5px;
  left: 50%;
  width: 10px;
  height: 10px;
  background-color: #ddb603;
  border-radius: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.cookiesSettings
  .content
  .securityLevel
  .securitySlider
  .level.selected::after {
  opacity: 1;
}
.cookiesSettings
  .content
  .securityLevel
  .securitySlider
  .level.selected:hover::after {
  opacity: 1;
  background-color: #ddb603;
}
.cookiesSettings
  .content
  .securityLevel
  .securitySlider
  .level.selected
  .icon
  img {
  filter: invert(63%) sepia(98%) saturate(585%) hue-rotate(7deg) brightness(96%)
    contrast(98%);
  opacity: 1;
}
.cookiesSettings .content .securityLevel .securitySlider .level .icon {
  width: 80px;
  height: 80px;
  position: relative;
  margin: 0 auto;
  margin-bottom: 30px;
  border-radius: 50%;
  background-color: #fafafa;
}
.cookiesSettings .content .securityLevel .securitySlider .level .icon img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  transform: translate(-50%, -50%);
  opacity: 0.3;
}
.cookiesSettings .content .securityLevel .securitySlider .level .title {
  margin-bottom: 0;
  font-size: 14px;
}
.cookiesSettings .content .securityLevel .securitySlider .level:hover::after {
  opacity: 0.2;
  background-color: #ddb603;
}
.cookiesSettings .content .securityLevel .securitySlider .level .plusSign {
  position: absolute;
  top: 20px;
  height: 40px;
  width: 40px;
  right: -37px;
  background-image: url(../images/plus.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.cookiesSettings .content .securityLevel .securitySlider .level .plusSign.show {
  opacity: 0.1;
}
.cookiesSettings .content .securityLevel .securitySlider .sliderBorder {
  border: 3px solid #ddb603;
  border-radius: 1000px;
  position: absolute;
  width: calc(25% + 15px);
  height: 100px;
  top: 0;
  left: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
}
.cookiesSettings .content .securityLevel .securityDescription h4 {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 10px;
}
.cookiesSettings .content .securityLevel .securityDescription ul li {
  position: relative;
  padding-left: 20px;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 5px;
}
.cookiesSettings .content .securityLevel .securityDescription ul li:last-child {
  margin-bottom: 0;
}
.cookiesSettings .content .securityLevel .securityDescription ul li::before {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  width: 10px;
  height: 10px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  left: 0;
}
.cookiesSettings
  .content
  .securityLevel
  .securityDescription
  .allowed
  ul
  li::before {
  background-image: url(../images/check.svg);
}
.cookiesSettings
  .content
  .securityLevel
  .securityDescription
  .prohibited
  ul
  li::before {
  background-image: url(../images/forbidden.svg);
}

.cookiesToggle {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  z-index: 9999;
  background-color: #ddb603;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cookiesToggle:hover {
  background-color: #000000;
}
.cookiesToggle svg {
  width: 24px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in-out;
  fill: white;
}

.d-flex {
  display: flex;
  justify-content: space-between;
}

@media all and (min-width: 1200px) {
  .cookiesSettings .container {
    width: 970px;
  }
}

@media all and (min-width: 992px) {
  .cookiesSettings .container {
    width: 768px;
  }
}

@media all and (min-width: 768px) {
  .cookiesSettings .container {
    width: 100%;
  }

  .cookiesSettings .content {
    width: 95vw;
    padding: 40px 20px;
  }

  .securityDescription .allowed {
    margin-bottom: 20px;
  }

  .cookiesSettings .content .securityLevel .securitySlider .row {
    margin: 0;
  }
}

@media all and (max-width: 768px) {
  .cookiesSettings .container {
    width: 100%;
    margin: 0;
  }

  .cookiesSettings .content {
    width: 95vw;
    padding: 40px 20px;
  }

  .cookiesSettings .content .title {
    padding-bottom: 0;
    font-size: 30px;
    margin-bottom: 20px;
  }

  .cookiesSettings .content p {
    font-size: 14px;
    line-height: 20px;
  }

  .cookiesSettings .content .securityLevel .securitySlider .row {
    margin: 0;
    padding-top: 7px;
  }

  .cookiesSettings .content .securityLevel .securitySlider .sliderBorder {
    height: 45px;
  }

  .cookiesSettings .content .securityLevel .securitySlider .level::before {
    width: 15px;
    height: 15px;
  }

  .cookiesSettings .content .securityLevel .securitySlider .level::after {
    bottom: 4px;
    width: 7px;
    height: 7px;
  }

  .cookiesSettings .content .securityLevel .securitySlider .level .plusSign {
    top: 5px;
    height: 20px;
    width: 20px;
    right: -20px;
  }

  .cookiesSettings .content .securityLevel .securitySlider .level .icon {
    width: 30px;
    height: 30px;
    margin-bottom: 15px;
  }

  .cookiesSettings .content .securityLevel .securitySlider .level .title {
    font-size: 10px;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .cookiesSettings .content .securityLevel .securityDescription ul li {
    font-size: 14px;
  }

  .cookiesSettings .content .securityLevel .securityDescription .prohibited {
    padding-top: 20px;
  }

  .cookiesDisclaimer .content .buttons {
    flex-direction: column-reverse;
  }

  .cookiesDisclaimer .content .buttons .d-flex {
    flex-wrap: wrap;
    row-gap: 10px;
  }

  .cookiesDisclaimer .content .buttons .d-flex a {
    max-width: unset;

    flex: 0 0 100%;
    min-width: 0;
    margin: 0;
  }

  .cookiesDisclaimer .content .buttons .openBICookiesSettings {
    flex: 0 0 100%;
    max-width: 100%;
  }
  /* .cookiesDisclaimer .content .container {
    margin: 0 20px;
    width: auto !important;
  } */
  .cookiesDisclaimer .buttons .d-flex {
    flex-direction: column-reverse;
  }
}

/*# sourceMappingURL=styles.css.map */
</pre></body></html>