:root {
  --color-a11y-button-text: #FFFFFF;
  --color-a11y-button-background: #1642BF;
  --color-a11y-button-border: #0F2A68;
  --color-a11y-button-hover-text: #000000;
  --color-a11y-button-hover-background: #FBA383;
  --color-a11y-button-hover-border: #1642BF;
  --color-a11y-button-active-border: #1642BF;
  --color-a11y-option-button-text: #000000;
  --color-a11y-option-button-background: #FFFFFF;
  --color-a11y-option-button-border: #333333;
  --color-a11y-option-button-hover-text: #000000;
  --color-a11y-option-button-hover-background: #FBA383;
  --color-a11y-option-button-hover-border: #000000;
  --color-a11y-option-button-active-border: #000000;
  --color-a11y-popup-background: #DDDDDD;
  --color-a11y-popup-text: #222222;
  --color-a11y-contrast-font: #000000;
  --color-a11y-contrast-background: #ffffff;
}

.ekloweb-ally-tools {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 9999999;
  display: flex;
  padding: 20px;
  transition: opacity 0.3s;
}
.ekloweb-ally-tools.hidden {
  opacity: 0;
  pointer-events: none;
}
.ekloweb-ally-tools-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-a11y-button-text);
  background-color: var(--color-a11y-button-background);
  border: 2px solid var(--color-a11y-button-border);
  font-size: 36px;
  width: 60px;
  height: 60px;
  margin: 0!important;
  padding: 0!important;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.15s ease-in;
}
.ekloweb-ally-tools-btn i {
  pointer-events: none;
  display: grid;
  place-items: center;
}
.ekloweb-ally-tools-btn i.ally-btn-active-icon {
  display: none;
}
.ekloweb-ally-tools-btn .ekloweb-ally-popup-option-btn-svg path {
  fill: var(--color-a11y-button-text);
  transition: fill 0.15s ease-in;
}
.ekloweb-ally-tools-btn.active i.ally-btn-default-icon {
  display: none;
}
.ekloweb-ally-tools-btn.active i.ally-btn-active-icon {
  display: flex;
}
.ekloweb-ally-tools-btn[aria-checked=true] {
  border-color: orange;
}
.ekloweb-ally-tools-btn:hover,
.ekloweb-ally-tools-btn:active,
.ekloweb-ally-tools-btn:focus {
  color: var(--color-a11y-button-hover-text);
  background-color: var(--color-a11y-button-hover-background);
  border-color: var(--color-a11y-button-hover-border);
  outline: 2px solid #FFFFFF;
  filter: drop-shadow(0 0 0.75rem var(--color-a11y-button-hover-border));
  text-decoration: none;
  transform: scale(1.1);
  transition: 0.2s all;
}
.ekloweb-ally-tools-btn:hover
.ekloweb-ally-popup-option-btn-svg path,
.ekloweb-ally-tools-btn:active .ekloweb-ally-popup-option-btn-svg path,
.ekloweb-ally-tools-btn:focus .ekloweb-ally-popup-option-btn-svg path {
  fill: var(--color-a11y-button-hover-text);
}

.ekloweb-ally-popup-container,
.ekloweb-ally-popup-container * {
  box-sizing: border-box;
}

.ekloweb-ally-popup {
  position: fixed;
  z-index: 9999990;
  bottom: 100px;
  right: 22px;
  display: none;
  max-height: calc(100% - 140px);
  overflow: auto;
  box-shadow: -8px 0px 15px -1px rgba(var(--color-a11y-popup-text), 0.22);
}
@media (max-width: 767.98px) {
  .ekloweb-ally-popup {
    width: 100%;
    right: 0;
    box-shadow: 0px 0px 15px -1px rgba(var(--color-a11y-popup-text), 0.22);
  }
}
.ekloweb-ally-popup.active {
  display: block;
}
.ekloweb-ally-popup .ekloweb-ally-popup-content {
  padding: 30px;
  width: fit-content;
  max-width: 560px;
  border-radius: 20px;
  background-color: var(--color-a11y-popup-background);
}
@media (max-width: 767.98px) {
  .ekloweb-ally-popup .ekloweb-ally-popup-content {
    padding: 15px;
    margin: 60px 15px 0 15px;
    width: auto;
    max-width: none;
  }
}
.ekloweb-ally-popup .ekloweb-ally-popup-content h1,
.ekloweb-ally-popup .ekloweb-ally-popup-content h2 {
  color: var(--color-a11y-popup-text);
  margin: 0;
}
.ekloweb-ally-popup .ekloweb-ally-popup-content h1:after,
.ekloweb-ally-popup .ekloweb-ally-popup-content h1:before,
.ekloweb-ally-popup .ekloweb-ally-popup-content h2:after,
.ekloweb-ally-popup .ekloweb-ally-popup-content h2:before {
  display: none;
}
.ekloweb-ally-popup .ekloweb-ally-popup-content h1 {
  font-size: 25px;
  margin-bottom: 25px;
}
.ekloweb-ally-popup .ekloweb-ally-popup-content h2 {
  font-size: 18px;
}
.ekloweb-ally-popup .ekloweb-ally-popup-content .link-accessibility {
  font-size: 18px;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  color: var(--color-a11y-button-text);
  background-color: var(--color-a11y-button-background);
  border: 2px solid var(--color-a11y-button-border);
  border-radius: 35px;
  text-decoration: none;
  transition: all 0.15s ease;
}
.ekloweb-ally-popup .ekloweb-ally-popup-content .link-accessibility:hover,
.ekloweb-ally-popup .ekloweb-ally-popup-content .link-accessibility:active,
.ekloweb-ally-popup .ekloweb-ally-popup-content .link-accessibility:focus {
  color: var(--color-a11y-button-hover-text);
  background-color: var(--color-a11y-button-hover-background);
  border-color: var(--color-a11y-button-hover-border);
  outline: none !important;
  text-decoration: none;
}
.ekloweb-ally-popup .ekloweb-ally-popup-content .ekloweb-ally-popup-options-list {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ekloweb-ally-popup .ekloweb-ally-popup-content .ekloweb-ally-popup-options-list .ekloweb-ally-popup-option {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  width: calc(50% - 10px);
  text-align: center;
}
.ekloweb-ally-popup .ekloweb-ally-popup-content .ekloweb-ally-popup-options-list .ekloweb-ally-popup-option-btn {
  position: relative;
  width: 100%;
  min-height: 100%;
  padding: 10px;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  -webkit-appearance: none;
  cursor: pointer;
  color: var(--color-a11y-option-button-text);
  background-color: var(--color-a11y-option-button-background);
  border: 2px solid var(--color-a11y-option-button-border);
  border-radius: 15px;
  transition: all 0.15s ease;
}
.ekloweb-ally-popup .ekloweb-ally-popup-content .ekloweb-ally-popup-options-list .ekloweb-ally-popup-option-btn:after {
  content: "";
  fill: var(--color-a11y-option-button-text);
  font-size: 20px;
  height: 20px;
  width: 20px;
  font-weight: 900;
  position: absolute;
  right: 10px;
  top: 10px;
  border-radius: 5px;
  display: none;
  justify-content: center;
  align-items: center;
}
.inverse-element.contrast-element .ekloweb-ally-popup .ekloweb-ally-popup-content .ekloweb-ally-popup-options-list .ekloweb-ally-popup-option-btn:after {
  color: var(--color-a11y-contrast-background) !important;
}
.ekloweb-ally-popup .ekloweb-ally-popup-content .ekloweb-ally-popup-options-list .ekloweb-ally-popup-option-btn-check {
  fill: var(--color-a11y-option-button-text);
  height: 20px;
  width: 20px;
  font-weight: 900;
  position: absolute;
  right: 10px;
  top: 10px;
  display: none;
  justify-content: center;
  align-items: center;
  transition: fill 0.15s ease-out;
}
.ekloweb-ally-popup .ekloweb-ally-popup-content .ekloweb-ally-popup-options-list .ekloweb-ally-popup-option-btn-label {
  display: block;
  margin-top: 10px;
  font-size: 16px;
  font-weight: bold;
  font-family: Arial, sans-serif;
}
.ekloweb-ally-popup .ekloweb-ally-popup-content .ekloweb-ally-popup-options-list .ekloweb-ally-popup-option-btn i {
  font-size: 36px;
  pointer-events: none;
}
.ekloweb-ally-popup .ekloweb-ally-popup-content .ekloweb-ally-popup-options-list .ekloweb-ally-popup-option-btn .ekloweb-ally-popup-option-btn-svg {
  transform: scale(1.25);
}
.ekloweb-ally-popup .ekloweb-ally-popup-content .ekloweb-ally-popup-options-list .ekloweb-ally-popup-option-btn .ekloweb-ally-popup-option-btn-svg path {
  fill: var(--color-a11y-option-button-text);
  transition: fill 0.15s ease-in;
}
.ekloweb-ally-popup .ekloweb-ally-popup-content .ekloweb-ally-popup-options-list .ekloweb-ally-popup-option-btn-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-top: 10px;
  height: 10px;
  width: 100%;
}
.ekloweb-ally-popup .ekloweb-ally-popup-content .ekloweb-ally-popup-options-list .ekloweb-ally-popup-option-btn-steps-item {
  display: block;
  flex-grow: 1;
  height: 100%;
  border-radius: 6px;
  border: solid 2px currentColor;
  transition: all 0.15s ease-out;
}
.ekloweb-ally-popup .ekloweb-ally-popup-content .ekloweb-ally-popup-options-list .ekloweb-ally-popup-option-btn-steps[data-selected-item="1"] > .ekloweb-ally-popup-option-btn-steps-item:nth-child(1) {
  background-color: currentColor;
}
html.contrast-element:not(.inverse-element) .ekloweb-ally-popup .ekloweb-ally-popup-content .ekloweb-ally-popup-options-list .ekloweb-ally-popup-option-btn-steps[data-selected-item="1"] > .ekloweb-ally-popup-option-btn-steps-item:nth-child(1) {
  background-color: var(--color-a11y-contrast-font) !important;
}
html.contrast-element.inverse-element .ekloweb-ally-popup .ekloweb-ally-popup-content .ekloweb-ally-popup-options-list .ekloweb-ally-popup-option-btn-steps[data-selected-item="1"] > .ekloweb-ally-popup-option-btn-steps-item:nth-child(1) {
  background-color: var(--color-a11y-contrast-background) !important;
}
.ekloweb-ally-popup .ekloweb-ally-popup-content .ekloweb-ally-popup-options-list .ekloweb-ally-popup-option-btn-steps[data-selected-item="2"] > .ekloweb-ally-popup-option-btn-steps-item:nth-child(1) {
  background-color: currentColor;
}
html.contrast-element:not(.inverse-element) .ekloweb-ally-popup .ekloweb-ally-popup-content .ekloweb-ally-popup-options-list .ekloweb-ally-popup-option-btn-steps[data-selected-item="2"] > .ekloweb-ally-popup-option-btn-steps-item:nth-child(1) {
  background-color: var(--color-a11y-contrast-font) !important;
}
html.contrast-element.inverse-element .ekloweb-ally-popup .ekloweb-ally-popup-content .ekloweb-ally-popup-options-list .ekloweb-ally-popup-option-btn-steps[data-selected-item="2"] > .ekloweb-ally-popup-option-btn-steps-item:nth-child(1) {
  background-color: var(--color-a11y-contrast-background) !important;
}
.ekloweb-ally-popup .ekloweb-ally-popup-content .ekloweb-ally-popup-options-list .ekloweb-ally-popup-option-btn-steps[data-selected-item="2"] > .ekloweb-ally-popup-option-btn-steps-item:nth-child(2) {
  background-color: currentColor;
}
html.contrast-element:not(.inverse-element) .ekloweb-ally-popup .ekloweb-ally-popup-content .ekloweb-ally-popup-options-list .ekloweb-ally-popup-option-btn-steps[data-selected-item="2"] > .ekloweb-ally-popup-option-btn-steps-item:nth-child(2) {
  background-color: var(--color-a11y-contrast-font) !important;
}
html.contrast-element.inverse-element .ekloweb-ally-popup .ekloweb-ally-popup-content .ekloweb-ally-popup-options-list .ekloweb-ally-popup-option-btn-steps[data-selected-item="2"] > .ekloweb-ally-popup-option-btn-steps-item:nth-child(2) {
  background-color: var(--color-a11y-contrast-background) !important;
}
.ekloweb-ally-popup .ekloweb-ally-popup-content .ekloweb-ally-popup-options-list .ekloweb-ally-popup-option-btn-steps[data-selected-item="3"] > .ekloweb-ally-popup-option-btn-steps-item:nth-child(1) {
  background-color: currentColor;
}
html.contrast-element:not(.inverse-element) .ekloweb-ally-popup .ekloweb-ally-popup-content .ekloweb-ally-popup-options-list .ekloweb-ally-popup-option-btn-steps[data-selected-item="3"] > .ekloweb-ally-popup-option-btn-steps-item:nth-child(1) {
  background-color: var(--color-a11y-contrast-font) !important;
}
html.contrast-element.inverse-element .ekloweb-ally-popup .ekloweb-ally-popup-content .ekloweb-ally-popup-options-list .ekloweb-ally-popup-option-btn-steps[data-selected-item="3"] > .ekloweb-ally-popup-option-btn-steps-item:nth-child(1) {
  background-color: var(--color-a11y-contrast-background) !important;
}
.ekloweb-ally-popup .ekloweb-ally-popup-content .ekloweb-ally-popup-options-list .ekloweb-ally-popup-option-btn-steps[data-selected-item="3"] > .ekloweb-ally-popup-option-btn-steps-item:nth-child(2) {
  background-color: currentColor;
}
html.contrast-element:not(.inverse-element) .ekloweb-ally-popup .ekloweb-ally-popup-content .ekloweb-ally-popup-options-list .ekloweb-ally-popup-option-btn-steps[data-selected-item="3"] > .ekloweb-ally-popup-option-btn-steps-item:nth-child(2) {
  background-color: var(--color-a11y-contrast-font) !important;
}
html.contrast-element.inverse-element .ekloweb-ally-popup .ekloweb-ally-popup-content .ekloweb-ally-popup-options-list .ekloweb-ally-popup-option-btn-steps[data-selected-item="3"] > .ekloweb-ally-popup-option-btn-steps-item:nth-child(2) {
  background-color: var(--color-a11y-contrast-background) !important;
}
.ekloweb-ally-popup .ekloweb-ally-popup-content .ekloweb-ally-popup-options-list .ekloweb-ally-popup-option-btn-steps[data-selected-item="3"] > .ekloweb-ally-popup-option-btn-steps-item:nth-child(3) {
  background-color: currentColor;
}
html.contrast-element:not(.inverse-element) .ekloweb-ally-popup .ekloweb-ally-popup-content .ekloweb-ally-popup-options-list .ekloweb-ally-popup-option-btn-steps[data-selected-item="3"] > .ekloweb-ally-popup-option-btn-steps-item:nth-child(3) {
  background-color: var(--color-a11y-contrast-font) !important;
}
html.contrast-element.inverse-element .ekloweb-ally-popup .ekloweb-ally-popup-content .ekloweb-ally-popup-options-list .ekloweb-ally-popup-option-btn-steps[data-selected-item="3"] > .ekloweb-ally-popup-option-btn-steps-item:nth-child(3) {
  background-color: var(--color-a11y-contrast-background) !important;
}
.ekloweb-ally-popup .ekloweb-ally-popup-content .ekloweb-ally-popup-options-list .ekloweb-ally-popup-option-btn[aria-checked=true] {
  border: 2px solid var(--color-a11y-option-button-hover-border);
}
.ekloweb-ally-popup .ekloweb-ally-popup-content .ekloweb-ally-popup-options-list .ekloweb-ally-popup-option-btn[aria-checked=true] .ekloweb-ally-popup-option-btn-check {
  display: grid;
}
.ekloweb-ally-popup .ekloweb-ally-popup-content .ekloweb-ally-popup-options-list .ekloweb-ally-popup-option-btn:hover, .ekloweb-ally-popup .ekloweb-ally-popup-content .ekloweb-ally-popup-options-list .ekloweb-ally-popup-option-btn:active, .ekloweb-ally-popup .ekloweb-ally-popup-content .ekloweb-ally-popup-options-list .ekloweb-ally-popup-option-btn:focus {
  cursor: pointer;
  color: var(--color-a11y-option-button-hover-text);
  background-color: var(--color-a11y-option-button-hover-background);
  border-color: var(--color-a11y-option-button-hover-border);
  outline: none !important;
  text-decoration: none;
}
.ekloweb-ally-popup .ekloweb-ally-popup-content .ekloweb-ally-popup-options-list .ekloweb-ally-popup-option-btn:hover .ekloweb-ally-popup-option-btn-check, .ekloweb-ally-popup .ekloweb-ally-popup-content .ekloweb-ally-popup-options-list .ekloweb-ally-popup-option-btn:active .ekloweb-ally-popup-option-btn-check, .ekloweb-ally-popup .ekloweb-ally-popup-content .ekloweb-ally-popup-options-list .ekloweb-ally-popup-option-btn:focus .ekloweb-ally-popup-option-btn-check {
  fill: var(--color-a11y-option-button-hover-text);
}
.ekloweb-ally-popup .ekloweb-ally-popup-content .ekloweb-ally-popup-options-list .ekloweb-ally-popup-option-btn:hover .ekloweb-ally-popup-option-btn-svg path, .ekloweb-ally-popup .ekloweb-ally-popup-content .ekloweb-ally-popup-options-list .ekloweb-ally-popup-option-btn:active .ekloweb-ally-popup-option-btn-svg path, .ekloweb-ally-popup .ekloweb-ally-popup-content .ekloweb-ally-popup-options-list .ekloweb-ally-popup-option-btn:focus .ekloweb-ally-popup-option-btn-svg path {
  fill: var(--color-a11y-option-button-hover-text);
}

.contrast-element:not(.inverse-element):not(.custom-contrast-color) img {
  filter: contrast(1) grayscale(1) brightness(1.1);
  opacity: 0.7 !important;
  background-color: var(--color-a11y-contrast-font) !important;
}
.contrast-element:not(.inverse-element):not(.custom-contrast-color) * {
  color: var(--color-a11y-contrast-font) !important;
  background-color: var(--color-a11y-contrast-background) !important;
  fill: var(--color-a11y-contrast-font) !important;
}

.contrast-element:not(.inverse-element) .ekloweb-ally-popup * {
  color: var(--color-a11y-contrast-font) !important;
  background-color: var(--color-a11y-contrast-background) !important;
  border-color: var(--color-a11y-contrast-font) !important;
  fill: var(--color-a11y-contrast-font) !important;
}
.contrast-element:not(.inverse-element) .ekloweb-ally-popup *::after {
  color: var(--color-a11y-contrast-font) !important;
}
.contrast-element:not(.inverse-element) .ekloweb-ally-tools-btn {
  color: var(--color-a11y-contrast-font) !important;
  background-color: var(--color-a11y-contrast-background) !important;
  border-color: var(--color-a11y-contrast-font) !important;
  filter: drop-shadow(0 0 0.75rem var(--color-a11y-contrast-font)) !important;
}
.contrast-element:not(.inverse-element) .ekloweb-ally-tools-btn .ekloweb-ally-popup-option-btn-check {
  fill: var(--color-a11y-contrast-font) !important;
}
.contrast-element:not(.inverse-element) .ekloweb-ally-tools-btn path {
  fill: var(--color-a11y-contrast-font) !important;
}

.contrast-element.inverse-element:not(.custom-contrast-color) img {
  filter: contrast(1) grayscale(1) brightness(1.1);
  opacity: 0.7 !important;
  background-color: var(--color-a11y-contrast-background) !important;
}
.contrast-element.inverse-element:not(.custom-contrast-color) * {
  color: var(--color-a11y-contrast-background) !important;
  background-color: var(--color-a11y-contrast-font) !important;
  fill: var(--color-a11y-contrast-background) !important;
}

.contrast-element.inverse-element .ekloweb-ally-popup * {
  border-color: var(--color-a11y-contrast-background) !important;
  color: var(--color-a11y-contrast-background) !important;
  background-color: var(--color-a11y-contrast-font) !important;
  fill: var(--color-a11y-contrast-background) !important;
}
.contrast-element.inverse-element .ekloweb-ally-popup *::after {
  color: var(--color-a11y-contrast-background) !important;
}
.contrast-element.inverse-element .ekloweb-ally-tools-btn {
  color: var(--color-a11y-contrast-background) !important;
  background-color: var(--color-a11y-contrast-font) !important;
  border-color: var(--color-a11y-contrast-background) !important;
  filter: drop-shadow(0 0 0.75rem var(--color-a11y-contrast-background));
}
.contrast-element.inverse-element .ekloweb-ally-tools-btn .ekloweb-ally-popup-option-btn-check {
  fill: var(--color-a11y-contrast-background) !important;
}
.contrast-element.inverse-element .ekloweb-ally-tools-btn path {
  fill: var(--color-a11y-contrast-background) !important;
}

html[class*=fontsize].fontsize-50 {
  font-size: 50%;
}
html[class*=fontsize].fontsize-100 {
  font-size: 100%;
}
html[class*=fontsize].fontsize-150 {
  font-size: 150%;
}
html[class*=fontsize].fontsize-200 {
  font-size: 200%;
}
html[class*=fontsize].fontsize-250 {
  font-size: 250%;
}
html[class*=fontsize].fontsize-300 {
  font-size: 300%;
}
html[class*=fontsize] .container {
  width: 100%;
  max-width: none;
}
html[class*=fontsize] [class*=col-] {
  float: none;
  flex: initial;
  width: 100%;
  max-width: none;
}
html[class*=fontsize] .col {
  flex: initial;
}
@media screen and (max-width: 1090px) {
  html[class*=fontsize] * {
    word-break: break-word !important;
  }
}
@media screen and (max-width: 800px) {
  html[class*=fontsize] * {
    word-break: break-all !important;
  }
}

/**
@todo find a way to easily disable all animation...
 */
html.animation-disabled *,
html.animation-disabled *::after,
html.animation-disabled *::before {
  transition: none !important;
  animation-duration: 0s !important;
  animation-delay: 0s !important;
}

.animation-disabled {
  /** {
    animation-play-state: paused !important;
    animation-fill-mode: forwards !important;
    transition: none!important;
  }
  .scroll-visible {
    animation: none!important;
  }*/
}

@media print {

  .ekloweb-ally-popup,
  .ekloweb-ally-tools {
    display: none !important;
  }
  .inverse-element {
    filter: none !important;
  }
}
