:root {
  --xm-transparent-grey: rgba(245, 245, 245, 0.5);
  --xm-body-bg: #f3f3f3;
  --xm-body-txt: #000;
  --xm-link: #000;
  --xm-link-hover: #333;
  --xm-border: #e1e1e1;
  --xm-font-weight: 400;
  --xm-font-weight-bold: 700;
  --xm-font-family1: "Courier New", Courier, monospace;
  --xm-font-family2: "Saol Display", serif;
  --xm-font-family3: "DINCondensed-Regular", sans-serif;
  --xm-red: #db0249;
  --xm-bluegrey: #33495f;
  --xm-yellow: #fc0;
  --xm-color1: var(--xm-bluegrey);
  --xm-color1-hover: var(--xm-red);
  --xm-color2: var(--xm-red);
  --xm-color2-hover: var(--xm-bluegrey);
  --xm-color-link: #000;
  --xm-color-link-hover: var(--xm-bluegrey);
}
.hidden {
  display: none;
}
.xm-lazyload {
  visibility: hidden;
  opacity: 0;
  transition: all ease-in-out 0.2s;
  min-height: 50px;
}
img.xm-lazyload {
  width: auto;
  height: auto;
}
.xm-loaded {
  visibility: visible;
  opacity: 1;
  min-height: auto;
}
.open-overlay {
  cursor: pointer;
}
.overlay-full {
  position: fixed;
  z-index: 9999992;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: rgba(0, 0, 0, 0.85);
  opacity: 0;
  display: none;
}
.overlay-full > .box {
  background: #FFF;
  box-sizing: border-box;
  padding: 50px;
  margin-top: 50px;
  margin-bottom: 50px;
  position: relative;
}
@media all and (max-width: 480px) {
  .overlay-full > .box {
    padding: 50px 20px 20px 20px;
  }
}
.overlay-full > .box img.hero {
  max-width: 100%;
  height: auto;
}
.overlay-full > .box ul {
  list-style-type: circle;
}
.overlay-full .close-overlay {
  position: absolute;
  top: 0px;
  right: 0px;
  padding: 20px;
  border: 0;
  transition: ease-in-out all 0.3s;
}
.overlay-full .close-overlay:before {
  content: "";
  display: block;
  height: 20px;
  width: 20px;
  mask-size: cover;
  mask-position: 50% 50%;
  mask-repeat: no-repeat;
  background-color: #000;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><path d="M324.5 411.1c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6L214.6 256 347.1 123.5c6.2-6.2 6.2-16.4 0-22.6s-16.4-6.2-22.6 0L192 233.4 59.5 100.9c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6L169.4 256 36.9 388.5c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0L192 278.6 324.5 411.1z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><path d="M324.5 411.1c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6L214.6 256 347.1 123.5c6.2-6.2 6.2-16.4 0-22.6s-16.4-6.2-22.6 0L192 233.4 59.5 100.9c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6L169.4 256 36.9 388.5c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0L192 278.6 324.5 411.1z"/></svg>');
}
.overlay-full .close-overlay:hover {
  background: #000;
}
.overlay-full .close-overlay:hover:before {
  background: #FFF;
}
