<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
/**
 * Copyright since 2002 Creabilis
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Academic Free License 3.0 (AFL-3.0)
 * that is bundled with this package in the file LICENSE.txt.
 * It is also available through the world-wide-web at this URL:
 * https://opensource.org/licenses/AFL-3.0
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to contact@creabilis.com so we can send you a copy immediately.
 *
 * @author    Creabilis &lt;contact@creabilis.com&gt;
 * @copyright Since 2002 Creabilis
 * @license   https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0)
 * International Registered Trademark &amp; Property of Creabilis
 */
  
/* Popup cookie */

.popup-ck {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 9999999999;
  display: flex;
  flex-direction: column;
  row-gap: .5rem;
  align-items: flex-end;
  width: 100%;
  max-height: 100%;
  padding-top: .5rem;
  font-size: .875rem;
  line-height: 1.5;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: transform .3s ease-in-out, opacity .3s ease-in-out;
  transform: translateY(100%);
}

.popup-ck.active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 576px) {
  .popup-ck {
    padding: 1.25rem;
  }

  .popup-ck--bottom-left {
    max-width: 28.75rem;
  }

  .popup-ck--center {
    bottom: 50%;
    left: 50%;
    max-width: 33.75rem;
    transform: translate(-50%, calc(50% + 50px));
  }

  .popup-ck--center.active {
    transform: translate(-50%, 50%);
  }

  .popup-ck-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 100%;
    pointer-events: none;
    visibility: hidden;
    background: rgba(0, 0, 0, .75);
    opacity: 0;
    transition: opacity .15s linear;
  }

  .popup-ck.active + .popup-ck-overlay {
    visibility: visible;
    opacity: 1;
  }
}

/* Popup cookie step */

.popup-ck-step {
  display: none;
  flex-direction: column;
  height: 100%;
  width: 100%;
  overflow: hidden;
  pointer-events: auto;
  background-color: var(--popup-ck-bg);
  box-shadow: 0 0 .625rem 0 rgba(0, 0, 0, .2);
}

@media (min-width: 576px) {
  .popup-ck-step {
    border-radius: .5rem;
  }
}

.popup-ck-step.active {
  display: flex;
}

.popup-ck-step__content {
  flex: 1 1 0%;
  padding: 3rem 1.25rem 2rem;
  overflow-y: auto;
  background-image: url("img/cookies.svg");
  background-repeat: no-repeat;
  background-attachment: local;
  background-position: top right;
  background-size: 5rem;
}

.popup-ck-step__title {
  padding-right: 3rem;
  margin-bottom: .625rem;
  font-size: 1.5rem;
  font-weight: 500;
}

.popup-ck-step__link,
.popup-ck-step__link:hover {
  color: inherit;
  text-decoration: underline;
}

.popup-ck-step__link:hover {
  opacity: .6;
}

.popup-ck-step__list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.popup-ck-step__item {
  display: flex;
  column-gap: .5rem;
  align-items: flex-start;
  padding-top: .625rem;
  padding-bottom: .625rem;
}

.popup-ck-step__item:not(:last-child) {
  border-bottom: 1px solid var(--popup-ck-border-color);
}

.popup-ck-step__item--all {
  font-weight: 500;
}

.popup-ck-step__input {
  position: relative;
  top: .1875rem;
}

.popup-ck-step__label {
  width: 100%;
  margin-bottom: 0;
}

.popup-ck-step__item-name {
  margin-bottom: 0;
}

.popup-ck-step__item-description {
  margin-bottom: 0;
  font-size: .875em;
  opacity: .6;
}

.popup-ck-step__footer {
  display: flex;
  border-top: 1px solid var(--popup-ck-border-color);
}

.popup-ck-step__footer-btn {
  flex: 1 1 0%;
  padding: .75rem;
  color: inherit;
  background-color: transparent;
  border-width: 0;
}

.popup-ck-step__footer-btn:not(:last-child) {
  border-right: 1px solid var(--popup-ck-border-color);
}

.popup-ck-step__footer-btn--primary {
  font-weight: 500;
  color: var(--popup-ck-btn-primary-color);
  background-color: var(--popup-ck-btn-primary-bg);
}

/* Popup cookie deny button */

.popup-ck&gt;.popup-ck-deny-btn {
  font-size: .8125rem;
  border-radius: 5rem;
  box-shadow: 0 0 .625rem 0 rgba(0, 0, 0, .2);
}
.popup-ck-deny-btn{
  padding: .25rem 1rem;
  border-width: 0;
  background-color: var(--popup-ck-bg);
  color: inherit;
  pointer-events: auto;

}

.popup-ck&gt;.popup-ck-deny-btn::after {
  margin-left: .375rem;
  content: "?";
}
/**
 * Copyright since 2002 Creabilis
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Academic Free License 3.0 (AFL-3.0)
 * that is bundled with this package in the file LICENSE.txt.
 * It is also available through the world-wide-web at this URL:
 * https://opensource.org/licenses/AFL-3.0
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to contact@creabilis.com so we can send you a copy immediately.
 *
 * @author    Creabilis &lt;contact@creabilis.com&gt;
 * @copyright Since 2002 Creabilis
 * @license   https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0)
 * International Registered Trademark &amp; Property of Creabilis
 */
:root {
  --primary: #9d232f;
  --bs-primary: #9d232f;
  --popup-ck-bg: #fff;
  --popup-ck-border-color: #d3d3d3;
  --popup-ck-btn-primary-bg: var(--bs-primary, var(--primary, #000));
  --popup-ck-btn-primary-color: #fff; }

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



</pre></body></html>