* { padding: 0; margin: 0; box-sizing: inherit; }
html { font-size: 15px; box-sizing: border-box; scroll-behavior: smooth; scroll-padding-top: 7rem; }
body { color: var(--main-color); font-family: var(--primary-font); font-size: var(--font-size-body); line-height: var(--line-height-regular); background: var(--background-color);  font-weight: var(--font-weight-body); overflow-y: scroll; }


/* --------------- HEADERS --------------- */
h1,.h1 ,h2,.h2 ,h3,.h3, h4,.h4, h5, .h5, h6, .h6 { font-weight: var(--font-weight-header); font-family: var(--header-font); line-height: var(--line-height-small); margin-bottom: 0.5em; }
h1, .h1 { font-size: var(--font-size-h1); margin: 0.4rem 0 1.5rem; font-family: var(--h1-font);}
h2, .h2 { font-size: var(--font-size-h2); margin: 3rem 0 0.5em; }
h3, .h3 { font-size: var(--font-size-h3); margin: 2rem 0 0.25rem; }
h4, .h4 { font-size: var(--font-size-h4); }
h5, .h5 { font-size: var(--font-size-h5); }
h6, .h6 { font-size: var(--font-size-h6); }

h1.small {font-size: 2rem;}

h1 + h2 { margin-top: 1.2rem; position: relative; bottom: 2rem; margin-bottom: 0;}
h1 + h3 { margin-top: 0; }
section.bg-image h2 {
    font-size: var(--font-size-h1);
    margin-bottom: 1.75rem;
}
@media only screen and (max-width: 40rem) {
    .desktop { display: none; }
}

/* --------------- GENERAL --------------- */
a { color: var(--primary-color); text-decoration: none; }
p a, a[href^="mailto:"] { text-decoration: underline; color: var(--primary-color); text-underline-offset: .15em; }
h2  + .columns { margin-top: 2rem; }
h3 + ul { margin-top: 0.5rem; }
p.error { color: var(--error-color); }
img { max-width: 100%; height: auto; border-radius: .5rem; width: 100%;}
.anchor { position: absolute; height: 9rem; width: 1px; transform: translateY(-100%); opacity: 0; pointer-events: none; }
hr {height: 1px; border: 0; background: var(--overlay-light);}
.hidden {display: none!important;}
sub { display: block; }


@media only screen and (max-width: 950px) {
    .anchor { height: 2rem; }
}

/* LAYOUTING */
.columns { display: grid; grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr)); grid-gap: 0.6rem 3rem; }
.columns.two { grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr)); }
.container { max-width: 78rem; margin: 0 auto; padding: 0 1rem; position: relative;   }
.container .container { padding: 0; }
.container .hassubnav .container { padding: 0 1rem; }
.notification { background: var(--main-color); display: block; color: var(--background-color); top: 0; margin-top: -0.2rem; font-size: 0.7rem; width: 1rem; height: 1rem; line-height: 1rem; border-radius: 100%; text-align: center; position: absolute; right: 0; margin-right: -0.2rem; }
.notification.alert { background: var(--error-color); }
.single.textcolumn { max-width: 56rem; margin: 0 auto 3rem; }
.single.textcolumn .pretitle {position: relative;  top: 3rem; text-align: left; padding-top: 1rem;}
.single.textcolumn .pretitle + h1 {text-align: left; padding-bottom: 1rem;}

.container.narrow { max-width: 58rem; margin: 0 auto; }
.double.textcolumn { display: flex; flex-wrap: wrap; gap: 4rem; }
.double.textcolumn > div { flex-grow: 1; width: 25rem; }
.textcolumn h1 { line-height: 1; padding: 3rem 0 0; font-family: var(--h1-font); font-weight: 300; font-size: 3rem; }
.textcolumn h1 span { display: block; opacity: 0.4; padding: 0.25rem 0 0; }
main > .container > ul { margin-left: 1rem; }



/* TEXT FLOW */
p,
.textcolumn ol,
.textcolumn ul,
.textcolumn p { margin-bottom: 1.4rem; }
.textcolumn ol { margin-left: 2rem; }
.textcolumn ul { margin-left: 1.4rem; }
.smallcolumn { max-width: 25rem; margin: 0 auto; }
p.small { margin-bottom: 1rem; }

/* SELECTION */
*::selection { background: var(--main-color); color: var(--background-color); }

/* NO VISIBLE SCROLLBAR */
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; } .no-scrollbar::-webkit-scrollbar { display: none; }

/* BUTTONS */
button { all: unset; box-sizing: border-box; margin: 0; padding: 0; border: 0; touch-action: manipulation; text-align: center; }
button,label { cursor: pointer; user-select: none; }
.button { padding: var(--btn-padding); height: auto; line-height: unset; border-radius: var(--btn-border-radius);  }
.button.inline { width: auto; display: inline-block; }
.button.outline { border: 1px solid var(--primary-color); background: transparent; color: var(--primary-color); transition: color 250ms, background 250ms; text-transform: uppercase; font-weight: 500;}

.button { border: 0; cursor: pointer; background: var(--btn-background-color); color: var(--btn-text-color); text-align: center; text-decoration: none; width: 100%; display: block; font-weight: 600; border: 0; border-top: var(--btn-border-top); border-right: var(--btn-border-right); border-bottom: var(--btn-border-bottom); border-left: var(--btn-border-left);; }
.button img { height: 1.4rem; width: 1.4rem; vertical-align: middle; position: relative; bottom: 0.15rem; object-fit: contain; margin-right: 0.15rem; }
.button.primary { background: var(--primary-color); color: var(--background-color);  border-bottom: 3px solid var(--btn-border-color); text-transform: uppercase; font-weight: 400; font-size: 1rem;}
.button.primary img { height: 1.75rem; width: 1.75rem; bottom: 0.2rem; }
.button.disabled, .button[disabled] { background: var(--gray-light); pointer-events: none; border-color: var(--gray-dark); }


/* --------------- HOME OVERRIDES --------------- */
body.home #breadcrumbs { display: none; }

/* --------------- SECTIONS --------------- */
/* =========================================================== */
/* ========================= LANDING ========================= */
/* =========================================================== */
/* landing */
section.landing { height: auto; width: 100%; top: 0; position: relative; overflow: hidden; padding: 0!important; }
section.landing > div { background: var(--overlay-dark); width: 100%; height: 100%; position: relative; display: flex; background-attachment: fixed; backdrop-filter: blur(1px); padding: 13rem 0; }
section.landing > div > div { margin: auto; color: var(--background-color); text-align: center; font-size: 105%; position: relative; }
section.landing > div div.prose { max-width: 42rem; margin: 2rem auto 0; font-size: 1rem; padding-inline: 1rem;}
section.landing > div > div::before { content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 100%; background: var(--overlay-dark); filter: blur(2rem); border-radius: 100%; animation: appearfrombottom 3s both; animation-delay: 0.5s; z-index: -1; }
section.landing > div > div h1 { font-weight: 300; font-size: 2.9rem; line-height: 1.1; display: 23flex; justify-content: center; flex-wrap: wrap;}
section.landing > div > div h1 span:first-child { background-image: linear-gradient(to bottom, transparent calc(100% - 0.8rem), var(--primary-color) calc(100% - 0.8rem), var(--primary-color) 100%); }
section.landing > div > div h1 span { margin-inline: 0.45rem; white-space: nowrap; }
section.landing > div > div ul { display: flex; justify-content: center; gap: 1.5rem 3.75rem; padding: 4rem 2rem 0; flex-wrap: wrap; }
section.landing > div > div ul li { list-style: none; text-align: center; }
section.landing > div > div ul li img {height: 7rem; width: 6rem; object-fit: contain;}
section.landing > div > div ul li a > * { display: inline-block; color: var(--background-color); font-weight: 900; font-size: 85%; line-height: 1.7; }
section.landing > div > div ul li a { display: block; width: 7rem; }
section.landing > div > div ul li a img { transition: all 0.3s ease-in-out; display: inline-block; margin-bottom: 0.1rem; }
section.landing > div > div ul li a:hover img { transform: translateY(-0.6rem); }
section.landing > div > div ul li a span:last-child { opacity: 0.5; font-weight: 600; font-size: 70%; margin: 0.5rem -0.5rem; line-height: 1.45; }


/* =========================================================== */
/* ===================== DEFAULT SECTION ===================== */
/* =========================================================== */
section,
section .container { position: relative; }
section .container { display: flex; flex-direction: column; overflow: hidden;}
section .container .text { width: 50%;}
section:not(.bg-image) .container .text {padding: 3rem 0; }
section .container .text ul,
section .container .text p { margin-bottom: 1rem; }
section .container .text p:empty { display: none; }
section .container .text ul li { padding-left: 1.25rem; list-style: none;  margin-bottom: .25rem;}
section .container .text ul li::before { content: "✓"; position: absolute; margin-left: -1.25rem; color: var(--success-color); }
section .container .text > h2:first-child,
section .container .text > div > h2:first-child { margin-top: 0; }
section .container .text  p:empty:first-child + h2 { margin-top: 0; }
section .container .text h2:has(+h3) { font-size: var(--font-size-h5); text-transform: uppercase;  margin-bottom: 0; color: var(--primary-color);}
section .container .text h2 + h3 { font-size: var(--font-size-h2);  margin-top: .5em;  margin-bottom: .5em;}
section .container:not(:has(.image)) > .text { margin: 0 auto; max-width: 100%; width: 100%; }
section .container:not(:has(.image)) > .text:has(h1 + .products) h1, .pretitle {text-align: center; letter-spacing: 0.35em; text-transform: uppercase; font-size: 1rem; font-weight: 400; margin-bottom: 0.75rem;}
.pretitle + h1 {text-align: center;}
section .container:has(.image) > .image { width: 50%; }
section .container:has(.image) > .image > img { height: 20rem; min-height: 100%; max-height: 100%; display: block; max-width: none; width: auto; }
section.third .container > .text { width: 33%; }
section.third .container > img { width: 66%; }
section:is(.white, .secondary) + section:is(.white, .secondary) .container::before { content: ""; position: absolute; top: 0; width: 100%; height: 2px; background: linear-gradient(to right, transparent 0%, var(--overlay-light) 25%, var(--overlay-light) 75%, transparent 100%); }
/* section:first-child .container > .text p a {
    background-color: var(--success-color);
    color: var(--background-color);
    padding: var(--btn-padding);
    height: auto;
    line-height: unset;
    border-radius: var(--btn-border-radius);
    font-weight: 600;
    border-radius: 0.3rem;
    display: inline-block;
    margin-top: 0.25rem;
    text-decoration: none;
    border-bottom: 3px solid var(--success-color-dark);
} */
section .container + .container, section.white + section.white .container + .container { flex-direction: row; }
section .container + .container { min-height: 0; }
section .container ul.buttons { display: grid; grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr)); grid-gap: 1rem; width: 100%; margin-bottom: 2rem; }
section .container ul.buttons li { list-style: none; position: relative; display: flex; align-items: stretch; flex-grow: 1; }
section .container ul.buttons li a { display: block; background: var(--overlay-subtle); padding: 1rem 1rem 1.3rem; width: 100%; text-align: center; display: flex; align-items: center; justify-content: center; font-weight: 600; }
section .container ul.buttons li a:hover { background: var(--primary-color); color: var(--background-color); }
section .container ul.buttons li a span { display: block; }

section.white + section.white .container + .container::before { content: none; }
section.blue { background: var(--primary-color); color: var(--background-color); }
section.blue:last-child { margin-bottom: -6rem; border-bottom: 1px solid var(--overlay-white); }
section.blue .button { background: var(--background-color); color: var(--primary-color);}
section.centered {text-align: center; }

section h1 + .shortcode-youtube { margin: 1rem auto; }

/* =========================================================== */
/* ========================== INTRO ========================== */
/* =========================================================== */
section.intro {overflow: auto; background-position: center center; position: relative; padding-block: 4rem !important; color: white; background-size: cover;}
section.intro .button {background: var(--success-color); color: var(--background-color);  border-bottom: 3px solid var(--success-color-dark);}
section.intro .container { padding: 0 1rem;}
section.intro .container > .text  {max-width: 40rem; text-align: center;}
section.intro { background: var(--bg-image, url("")) var(--primary-color) center center / cover; isolation: isolate; color: var(--background-color); text-align: center;}
section.intro h1 {margin-top: 0;}


/* =========================================================== */
/* ======================== WORLDWIDE ======================== */
/* =========================================================== */
section.worldwide {padding: 1rem 0!important;}
section.worldwide {padding: 1rem 0!important;}
section.worldwide .container { display: flex; justify-content: center; flex-direction: row; gap: 5rem; padding-top: 2rem; padding-bottom: 2rem; }
section.worldwide .container > div { padding: 1rem 0; }
section.worldwide .container > div:nth-child(1) { text-align: center; }
section.worldwide .container > div:nth-child(2) { min-width: 11rem; }
section.worldwide .container > div h2 { margin-top: 0; padding-top: 0; font-size: 1.5rem; font-weight: 300; }
section.worldwide .container > div p { margin-bottom: 1.4em; }
section.worldwide .container > div ul li { list-style: none; }
section.worldwide .container > div a.button { color: var(--background-color); display: block; width: auto; min-width: 11rem; border: 1px solid var(--overlay-white); background: none; margin-bottom: 0.5rem; text-transform: uppercase; font-weight: 400;}

@media only screen and (max-width: 600px) {
    section.worldwide .container { display: block; }
}

/* =========================================================== */
/* ========================= SYSTEMS ========================= */
/* =========================================================== */
section.systems .container { padding-top: 3rem; padding-bottom: 2rem; display: block; }
section.systems .container > h2 { margin: 0 auto 2rem; text-align: center; max-width: 30rem; }
section.systems .container > div.flex { display: flex; flex-wrap: wrap; gap: 4rem 2rem; text-align: center; justify-content: center; }
section.systems .container > div.flex > div { max-width: 20rem; min-width: 20rem; flex: 1; }
section.systems .container > div.flex > div > * { max-width: 20rem; margin: 0 auto; }
section.systems .container > div.flex > div h2 { font-weight: 400; margin-bottom: .5em; }
section.systems .container > div.flex > div p { margin-bottom: 1.4em; }
section.systems .container > div.flex > div p:last-child { margin-bottom: 0; }
section.systems .container > div.flex > div img { height: 10rem; }


/* =========================================================== */
/* ========================== TABLE ========================== */
/* =========================================================== */
table { border-spacing: 0; border: 1px solid var(--gray-light); border-bottom: 0; border-right: 0; font-size: 80%; margin: 2rem 0 0.5rem 0; }
table tr th, table tr td { padding: 0.25rem 0.5rem; border-bottom: 1px solid var(--gray-light); border-right: 1px solid var(--gray-light); }
table tr th { border-bottom: 1px solid var(--gray-light); text-align: left; vertical-align: bottom; }
table tr td { vertical-align: top; }
table tr td:first-child { font-weight: bold; }
table tr th.CookieDeclarationTableHeader, table tr td.CookieDeclarationTableCell { border-right: 0; }
table tr:last-child td.CookieDeclarationTableCell { border-bottom: 0; }


/* =========================================================== */
/* ========================== POPUP ========================== */
/* =========================================================== */
#popup { background: var(--overlay-dark); display: flex; position: fixed; left: 0; top: 0; width: 100%; height: 100vh; z-index: 99; opacity: 1; transition: all 0.3s ease-in-out; }
#popup.hide { opacity: 0; pointer-events: none; }
#popup > div { margin: auto; background: var(--background-color); max-width: 40rem; padding: 1.5rem 1.75rem; text-align: center; position: relative; box-shadow: 0px 0px 10px 1px var(--gray-dark); border-radius: 0.5rem; font-size: 1.05rem; }
#popup > div.green { background: var(--success-color); color: var(--background-color); }
#popup > div.green a { color: var(--background-color)!important; text-decoration: underline; }
#popup > div.blue { background: var(--primary-color); color: var(--background-color); }
#popup > div > h2 { margin: 1rem 0 2rem; }
#popup > div > *:first-child:not(img) { margin-top: 1.5rem; }
#popup > div.green > h2,
#popup > div.blue > h2 { color: var(--gray-dark); }
#popup > div #close { position: absolute; right: 0.5rem; top: 0.5rem; overflow: hidden; width: 0; height: 0; padding: 2rem 0 0 2rem; background: rgba(255,255,255,0); cursor: pointer; }
#popup > div #close::after,
#popup > div #close::before { content: ""; position: absolute; width: 70%; left: 15%; top: 50%; height: 3px; background: var(--main-color); transform: translateY(-50%) rotate(45deg); }
#popup > div #close::before { transform: translateY(-50%) rotate(-45deg); }
#popup > div.green #close::after,
#popup > div.green #close::before,
#popup > div.blue #close::after,
#popup > div.blue #close::before { background: var(--background-color); }

svg g path[stroke-dasharray] { stroke: var(--gray-medium); }
svg g a:hover path { stroke: var(--primary-color); stroke-dasharray: 1.0,3.0; }



/* =========================================================== */
/* ========================= PATCHED ========================= */
/* =========================================================== */
main.patched > section { padding-bottom: 5rem; padding-top: 0.1rem; }
main.patched > section .text {padding-bottom: 0;}
main.patched > section + section { padding-top: 5rem; }
main.patched > section.secondary:not(.bg-image) { background: var(--secondary-color); }

main.patched section .container::before  { display: none; }
main.patched section:not(:first-of-type,.bg-image) .container .text { padding-block: 0;}

@media (max-width: 40rem) {
    main.patched > div:first-child { text-align: left; }
}

#megagen-klantenservice { text-align: center; }


/* =========================================================== */
/* ========================= EVENTS ========================== */
/* =========================================================== */
.events { display: grid; grid-template-columns: 1fr 1fr; grid-gap: 1rem; }
.events :is(h2,h3) { grid-column: -1/1; }

a.event { display: flex; flex-direction: column; align-items: flex-start; margin: 2rem auto 4rem; padding-bottom: 2rem; border-bottom: 1px solid var(--gray-light); }
a.event:hover h2 { color: var(--main-color); }
a.event time { color: var(--gray-medium); }
a.event h2 { margin: .5em 0 1em; transition: color 250ms; }
a.event p { color: var(--main-color); }
a.event div { display: grid; grid-template-columns: 1fr auto; grid-gap: 0 4rem; }
a.event ul.tags { display: flex; flex-wrap: wrap; gap: .5rem; list-style: none; padding: 0; margin: 0 0 1em; }
a.event ul.tags li { color: var(--background-color); background: var(--gray-medium); padding: .25em .75em; border-radius: 100vmin; }

@media only screen and (max-width: 40rem) {
    a.event div { grid-template-columns: 1fr; margin-bottom: 1.5rem; }
}


/* =========================================================== */
/* ========================= GALLERY ========================= */
/* =========================================================== */
.single.textcolumn:has(.image_gallery:only-child) { max-width: 75rem; }
.image_gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr)); grid-gap: .75rem; margin: 1.5rem auto; }
.image_gallery img { height: 100%; object-fit: cover; }

/* =========================================================== */
/* ======================= EVENT ICONS ======================= */
/* =========================================================== */
ul.details { display: grid; grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr)); list-style: none; grid-gap: 1rem; margin: 0; }
ul.details li { display: flex; flex-direction: column; align-items: center; padding: 1.5rem 0.5rem 1rem; border-radius: .5rem; background: var(--secondary-color); text-align: center; max-width: calc(58rem / 2); color: var(--primary-color); }
ul.details li strong { font-size: 1.1rem; display: block; margin: .5em 0 .5em; }
ul.details li svg { display: block; width: 80%; max-width: 2rem; height: auto; }


/* =========================================================== */
/* ========================== CARDS ========================== */
/* =========================================================== */
section:has(ul.cards) .container { max-width: 78rem;}
section:has(ul.cards:not(.left)) > * { text-align: center;}
section:has(ul.cards) .text > :is(h2,p) { max-width: 40rem; margin-inline: auto;}

ul.cards.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr)); list-style: none; grid-gap: 2rem; margin: 2rem 0 0; align-items: stretch;}
ul.cards > li { display: flex; flex-direction: column; padding-left: 0!important;}
ul.cards > li::before {content:none!important;}
ul.cards > li img { border-radius: .5rem; }
ul.cards > li p:has(> img:only-child) {display: flex;  position: relative; margin: -2rem -2rem 0;}
ul.cards > li > div { background: var(--secondary-color); padding: 2rem; border-radius: .5rem; height: 100%; display: flex; flex-direction: column;}
ul.cards > li > div > h2,
ul.cards > li > div > h3 { margin: 0 0 1rem;}
ul.cards > li > div > h2 {font-size: var(--font-size-h3);}
ul.cards > li > div > h3 + p {flex-grow: 1;}
ul.cards > li .shortcode-youtube { margin-bottom: 1rem; }

ul.cards.icons { grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr)); grid-gap: 1rem; margin-top: 3rem;}
ul.cards.icons img { height: 8rem; width: auto; margin-bottom: 0.5rem;}
ul.cards.icons li > div  {  text-align: center; padding-inline: 1rem;}
ul.cards.icons li img { width: 4rem; height: auto;  margin: 0 auto .5rem;  }

section.secondary ul.cards > li > div { background: var(--background-color);}

@media only screen and (max-width: 768px) {
    ul.cards {  display: flex; flex-direction: column; }
}

p:has(img.floatright) { float: right; margin: 0.35rem 0 1rem 1rem;}
p:has(img.floatright) img {max-width: 10rem;}
p:has(img.floatright.large) img {max-width: 20rem;}

p:has(img.floatleft) { float: left; margin: 0.35rem 2rem 1rem 0;}

/* =========================================================== */
/* ===================== CALL TO ACTION ====================== */
/* =========================================================== */
.cta { padding: 2rem; background: var(--secondary-color); border-radius: .5rem; margin: 2rem auto;  }
.cta h2:first-child { margin-top: 0; }
.cta .button { background: var(--primary-color); color: var(--background-color); font-weight: 700;  border-bottom: 3px solid var(--primary-color); }
.cta > *:last-child { margin-bottom: 0; }
.cta p:empty  > *:last-child { margin-bottom: 0; }

.cta:has(img) { padding: 0; background: none; }
.cta p:has(img) { margin: 0; }
.cta img { float: left; max-width: 20rem; margin-right: 5rem;}
.cta + * { clear: both; }

/* =========================================================== */
/* ========================== SHARE ========================== */
/* =========================================================== */
section.share.share { clear: both; padding-block: 0; }


/* =========================================================== */
/* ======================= EVENT PAGE ======================== */
/* =========================================================== */
.container.event img.top { border-radius: .5rem; margin: 0 0 1rem; display: flex; }
.container.event p a:not(.button) { color: var(--primary-color); }
.container.event form.form { background: var(--secondary-color); border-radius: 1rem; padding: 2rem; }
.container.event form.form > div:first-child > * { margin-top: 0; }
.container.event form.form input[type=submit] { background: var(--primary-color); color: var(--background-color); font-weight: 700; }

/* =========================================================== */
/* ======================== ACCORDION ======================== */
/* =========================================================== */
div.accordion {  --section-background: white; --accordion-background: var(--secondary-color); --accordion-text-color: var(--primary-color);  background: var(--accordion-background);}
div.accordion button { color: inherit; background: inherit; border: inherit; font-size: inherit; display: block; line-height: inherit; width: 100%; text-align: left; font-weight: 500; }
div.accordion h3 { font-size: 1.25rem; }
div.accordion > div { border-bottom: 3px solid var(--section-background); list-style: none;}
div.accordion > div > *:first-child { margin: 0.5rem 0; }
div.accordion > div:first-of-type { border-top: 3px solid var(--section-background); list-style: none; }
div.accordion > div button { padding: 1rem 0 1rem; display: flex; align-items: center; cursor: pointer; transition: padding 333ms, color 333ms; font-family: inherit; font-weight: 600; padding-left: 3rem; position: relative; --own-color: var(--accordion-text-color); color: var(--own-color);}
div.accordion > div button::before,
div.accordion > div button::after { background: var(--own-color); content: ""; position: absolute; width: .9rem; height: 2px; border-radius: 1rem; background: currentColor; transform: rotate(var(--r, 0deg)); transition: transform 333ms, color 333ms; left: 1.1rem; }
div.accordion > div button::before { --r: -90deg; }

div.accordion > div > div { transition: padding 333ms, max-height 333ms; overflow: hidden; width: calc(100% - 3rem); padding-left: 3rem; display: flex; flex-direction: column;}
div.accordion > div > div[aria-hidden=true] { max-height: 0px; }
div.accordion > div > div > div > :last-child { margin-bottom: 3rem !important; }

/* Opened */
div.accordion > div > div[aria-hidden=false] { max-height: var(--height, unset);}
div.accordion > div button[aria-expanded=true]::before { --r: 0deg; }

/* Secondary Background */
section.secondary div.accordion { --section-background: var(--secondary-color);  --accordion-background: white; --accordion-text-color: var(--primary-color);  }



/* =========================================================== */
/* ========================== FORM =========================== */
/* =========================================================== */
form.form > div { display: flex; margin-bottom: 1rem; position: relative; }
form.form > div label { line-height: 2.4rem; min-width: 8rem; white-space: nowrap; text-overflow: ellipsis; }
form.form div.checkbox label { white-space: wrap!important; line-height: 1.2; display: flex; gap: 0.3rem; }
form.form div.checkbox input { min-width: 1rem; }
form.form > div input:not([type="submit"],[type="checkbox"]), form.form > div textarea, div.disabledinput { height: 2.4rem; line-height: 2.4rem; border: 1px solid var(--overlay-light); flex-grow: 1; padding: 0 0.5rem; }
form.form > div textarea { height: 25rem; line-height: 1.4; padding: 0.5rem; }
form.form > div input[disabled], div.disabledinput { color: var(--overlay-light); background: var(--overlay-subtle); }
form.form > div input[type="checkbox"], form.form > div input[type="radio"] { height: 1rem; }

form.form > div.form-group { display: grid; grid-template-columns: 10rem auto; }
form.form > div.form-group .help-block { display: none; }
div.form-group.has-error .help-block { display: block; margin-top: 1rem; grid-column-start: 1; grid-column-end: 3; color: var(--error-color); }


input[type="checkbox"], input[type="checkbox"] + *::before { width: 0.95rem; height: 100%; overflow: hidden; left: 0; opacity: 0; display: inline-block; vertical-align: top; border: 0; padding: 0; margin: 0 0.35rem 0 0; }
input[type="checkbox"] + *::before { content: ""; position: absolute; background: url('/img/square-light.svg') center center / contain no-repeat; opacity: 1; cursor: pointer; }
input[type="checkbox"]:checked + *::before { background: url('/img/fontawesome-solid/check-square.svg') center center / contain no-repeat; }

input[type="radio"], input[type="radio"] + *::before { width: 1rem; height: 100%; overflow: hidden; left: 0; opacity: 0; display: inline-block; vertical-align: top; border: 0; padding: 0; margin: 0 0.35rem 0 0; }
input[type="radio"] + *::before { content: ""; position: absolute; background: url('/img/circle-light.svg') center center / contain no-repeat; opacity: 1; cursor: pointer; }
input[type="radio"]:checked + *::before { background: url('/img/fontawesome-solid/dot-circle.svg') center center / contain no-repeat; }

.form-group.checkbox > div { flex-grow: 1; }
.form-group.checkbox > div > div { position: relative; display: flex; }
.form-group.checkbox > div > div > label { display: flex; margin-left: 0.3rem; }
.form-group.checkbox > div > div > a { line-height: 2.4rem; cursor: pointer; }

form div[style*="flex-direction: column"] input { flex-grow: unset; }
form .error input, form .error :not(label) { color: var(--error-color); }
form .error input { border: 1px solid var(--error-color)!important; }

.fakeselect a { display: block; height: 2.4rem; line-height: 2.4rem; border: 1px solid var(--overlay-light); width: 100%; border-radius: 0.3rem; padding: 0 0.5rem; color: var(--main-color); }
.fakeselect + * { margin-top: 0.5rem; }

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration { -webkit-appearance: none; appearance: none; }
dl { position: relative; display: flex; flex-wrap: wrap; }
dl dt { clear: left; width: 40%; max-width: 200px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
dl dd { width: 60%; }

select, input[type="date"] { height: 2.4rem; line-height: 2.4rem; width: 4.5rem; border: 1px solid var(--overlay-light); padding: 0 0.5rem; font-family: 'Manrope', sans-serif; font-size: 1rem; font-weight: 500; border-radius: 0.3rem; background: transparent; width: 100%; color: var(--main-color); }
input, textarea, form .disabledinput { font-family: 'Manrope', sans-serif; font-size: 1rem; font-weight: 500; border-radius: 0.3rem; color: var(--main-color); background: var(--background-color); border: 1px solid var(--overlay-subtle); text-decoration: none!important; }
.disabledinput { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
button, .button { cursor: pointer; }
input[type='checkbox'], input[type='radio'] { position: relative; top: 0.1rem; margin-right: 0.2rem; }

/* =========================================================== */
/* ======================== IMAGEMAP ========================= */
/* =========================================================== */
.imagemap { position: relative; }
.imagemap img { display: block; }
.imagemap .area { display: block; position: absolute; transition: box-shadow 0.15s ease-in-out; }
.imagemap .area.disabled { background: var(--overlay-white); pointer-events: none; }
.imagemap .area:hover { background: transparent; box-shadow: 0px 0px 0.5rem var(--overlay-dark); }


/* =========================================================== */
/* ====================== RELATED ITEMS ====================== */
/* =========================================================== */
section.related { padding: 3rem 0;  margin: 3rem auto 0; background: var(--secondary-color);  }
section.related h2 { text-align: center; margin-bottom: 1.5em;}
section.related ul { list-style: none; display: grid; grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));  grid-gap: 1.5rem;}
section.related ul li h3 { margin: 0.5rem 0;}
section.related ul li a { display: block; }
section.related ul li a img { background: var(--background-color); }
section.related ul li a h3 ~ * { color: var(--main-color);}


/* =========================================================== */
/* ==================== articlelist ========================== */
/* =========================================================== */
.container:has(p) + section.articlelist {margin-top: 3rem;}
section.articlelist ul { list-style: none; }
li.article:not(:last-of-type) { margin-bottom: 3rem; padding-bottom: 3rem;  position: relative; }
li.article:not(:last-of-type)::before { content: ""; position: absolute; bottom: 0; width: 100%; height: 2px; background: linear-gradient(to right, transparent 0%, var(--overlay-light) 25%, var(--overlay-light) 75%, transparent 100%); }
li.article > a { display: flex;  gap: 2rem;  align-items: center; }
li.article > a .h2 { margin-top: 0; }
li.article > a p { color: var(--main-color);}
li.article > a img { max-width: 25rem; width: 50%; flex-shrink: 0;}
li.article > a .button { max-width: max-content;}
li.article .date {margin-bottom: 0.25rem;}


@media only screen and (max-width: 600px) {
    section.articlelist h1 { text-align: center;}
    li.article > a { flex-direction: column;  max-width: 25rem; }
    li.article > a img { width: 100%; }
}


/* =========================================================== */
/* =========================== DNA =========================== */
/* =========================================================== */
ul.dna {  display: flex; justify-content: center; flex-wrap: wrap; gap: 2rem;}
ul.dna li { max-width: calc((58rem - 6rem) / 3); width: 80%;  padding: 0 !important;  display: flex; flex-direction: column-reverse; align-items: center;  margin: 0 !important; }
ul.dna li h3 { text-align: center; max-width: 11em; margin: 0;  }
ul.dna li::before { display: none; }


/* =========================================================== */
/* ======================== PRODUCTS ========================= */
/* =========================================================== */
.products ul { list-style: none; display: flex; gap: 4rem 1rem; align-items: stretch; flex-wrap: wrap-reverse;  justify-content: center; }
.products :is(h2,h3) {text-align: center;}
.products h2 { margin: 0 0 4rem; }

.products ul li.product.product { padding: 0; width: 100%; max-width: calc(76rem / 3 - 2rem / 3); flex-shrink: 0; }
.products ul li.product > div { padding: 1em; display: flex;  flex-direction: column;  border-radius: var(--btn-border-radius); color: var(--main-color); height: 100%; display: flex; flex-direction: column; text-align: center;}
.products ul li.product > div > p {flex-grow: 1;}
.products ul li.product > div .h3 { margin-top: 0.5rem;}
.products ul li.product > div .button { max-width: max-content; display: block; margin-inline: auto;}
.products ul li.product::before { display: none; }
.products ul li.product img { mix-blend-mode: darken; object-fit: contain; height: 15rem; max-width: 100%; padding: .5rem;  margin-bottom: .5rem;  }


/* =========================================================== */
/* ===================== TEXT AND IMAGE ====================== */
/* =========================================================== */
section.text-image .text { display: grid; grid-template-columns: 1fr 1fr; grid-gap: 2rem 6rem; align-items: center; margin: 2rem auto; }
section.text-image .has-text:has(p:only-of-type:empty) { display: none; }
section.text-image .has-text { padding: 1rem 0 0; }
section.text-image .has-text > *:first-child { margin-top: 0;}
section.text-image .has-image { display: flex; }
section.text-image.flip .has-image { order: -1;}

@media (max-width: 40rem) {
    section.text-image {display: block;}
}

/* =========================================================== */
/* ========================= REVIEWS ========================= */
/* =========================================================== */
section:is(.has-reviews,.has-reviews-hygienists) .container { max-width: 100%; overflow: visible; padding: 0; }
section:is(.has-reviews,.has-reviews-hygienists) p > .button:only-child { margin-inline: auto; display: block;  max-width: max-content;}
.review-list ~ * { max-width: 78rem; margin-inline: auto; padding-inline: 1rem; }
.review-list h2 { max-width: 22em; display: block; margin-inline: auto; text-align: center; }
.reviewcard { flex-shrink: 0; max-width: 24rem; width: 100%;  padding: 2rem !important; background: var(--secondary-color); scroll-snap-align: center; display: grid; grid-template-columns: auto 1fr; grid-template-rows: 1fr auto; gap: 1rem; align-items: center;  position: relative; }
.reviewcard > svg { position: absolute; top: 0.5rem; left: 0.5rem; width: 4rem; height: auto; opacity: 0.05;}
.reviewcard img { border-radius: 50%; max-width: 6rem;}
.reviewcard > p { font-style: italic;   font-size: var(--font-size-h5); grid-column: -1/1; margin-bottom: auto !important; padding-block: 1rem; height: 100%; margin-top: 1.25rem;}
.reviewcard > div > p { display: flex; flex-direction: column;  } 
.reviewcard::before { display: none; }
.reviewcard svg {margin: 1.25rem 1rem!important; display: block;}

div.has-controls .overflower-parent { position: relative;  }

div.has-controls .overflower {  overflow: auto; scroll-snap-type: x mandatory;  padding-block: 2rem; margin-block: -1rem; scroll-behavior: smooth; } 
div.has-controls .overflower > ul { display: flex; gap: 1rem; margin: 0 auto;  max-width: 78rem; padding-inline: 1rem; }
div.has-controls .overflower > ul::after { width: 2rem; content: ""; flex-shrink: 0; }

div.has-controls .ctrl-btns { display: flex; align-items: center; justify-content: space-between;  position: absolute; max-width: 78rem; left: 0;right: 0; margin: 0 auto; top: 50%; transform: translateY(-50%); pointer-events: none; z-index: 2; } 
div.has-controls .ctrl-btns button:first-of-type { transform: scaleX(-1);}

div.has-controls .overflower[data-left=true] + .ctrl-btns button:first-of-type,
div.has-controls .overflower[data-right=true] + .ctrl-btns button:last-of-type { opacity: 0; pointer-events: none;}

.circle-arrow { padding: 0rem; width: 3rem; height: 3rem; background: var(--background-color); border-radius: 50%; display: grid; place-items: center; transition: opacity 250ms, transform 250ms;  pointer-events: all; border: 1px solid rgba(0,0,0,0.1);}
.circle-arrow svg { transform: translateX(.05em); transition: transform 250ms ease; width: 1.2rem; height: auto; }
.circle-arrow:hover svg { transform: translateX(.2em); }

body.touch div.has-controls .ctrl-btns { display: none; }

/* COLOR ADJUSTMENTS */
section.secondary .reviewcard { background: var(--background-color);}

@media only screen and (min-width: 88rem) {
    div.has-controls .overflower > ul::after { width: 10rem; }
}

@media only screen and (max-width: 768px) {
    .reviewcard { max-width: 20rem;}
}

/* =========================================================== */
/* ====================== DOCUMENTATION ====================== */
/* =========================================================== */
section.has-publications .container,
section.has-cases .container,
section.has-podcasts .container,
section.has-webinars .container,
section.has-videos .container { max-width: 78rem;}


/* =========================================================== */
/* ============ BACKGROUND IMAGE / COLOR SECTION ============= */
/* =========================================================== */
/* IMAGES */
main section.bg-image .container { padding: 4rem 1rem;}
main section.bg-image { background: var(--bg-image) var(--primary-color) center center / cover; isolation: isolate; color: var(--background-color); text-align: center;}
main section.bg-image::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%;  background: #081d33; opacity: .7; z-index: -1; }

/* COLORS */
main section.bg-grey-light { background: #3d4c53!important; }
main section.bg-blue { background: var(--primary-color)!important; }
main section.bg-grey { background: var(--tertiary-color)!important; }
main section.bg-gradient-blue-black { background: linear-gradient(var(--primary-color), var(--main-color-darker))!important; }
main section.bg-image:is(.bg-grey-light,.bg-blue,.bg-grey,.bg-gradient-blue-black)::before { display: none; }

/* --------------- END SECTIONS --------------- */



/* --------------- MEDIA QUERIES --------------- */
@media only screen and (max-width: 975px) {
    html {scroll-padding-top: 0;}
    .imagemap .area:hover {box-shadow: 0px 0px 1.5vw var(--overlay-dark);}
}



/* --------------- ANIMATIONS --------------- */
@keyframes appearfrombottom {
    0% { transform: translateY(1rem); opacity: 0; }
    100% { transform: translateY(0rem); opacity: 1; }
}
.staggered_animation { animation: appearfrombottom 0.75s both; animation-delay: calc(var(--n) * 200ms + 500ms); }



/* --------------- embedpdfshortcode --------------- */
.embedpdfshortcode {
    margin-right: auto;
    max-width: 56rem; 
    width: 100%;
    margin-block: 2rem;
    position: relative;
}
.embedpdfshortcode > .btns {display: flex; justify-content: space-between;}
.embedpdfshortcode > .btns:first-child,
.embedpdfshortcode > .btns:has(.disabled + .disabled) {display: none;}
.embedpdfshortcode > .canvas {
    border: 1px solid var(--gray-light);
    margin-block: 0.5rem; 
    background: rgba(0,0,0,.05);
}
.embedpdfshortcode > .canvas > canvas {
    width: 100%; 
    max-width: 100%;
    margin-inline: auto;
    display: block;
    cursor: pointer;
}
.embedpdfshortcode > .btns .disabled {opacity: 0.5; pointer-events: none;}
@media only screen and (max-width: 30rem) {
    #zoom {display: none!important;}
}


/* --------------- YOUTUBE SHORTCODE --------------- */

.shortcode-youtube {
    position: relative; display: inline-block;
}
.shortcode-youtube::before, .shortcode-youtube::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    z-index: 1;
} 
.shortcode-youtube::before {
    background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+CjxzdmcKICAgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIgogICB4bWxuczpjYz0iaHR0cDovL2NyZWF0aXZlY29tbW9ucy5vcmcvbnMjIgogICB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiCiAgIHhtbG5zOnN2Zz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciCiAgIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIKICAgeG1sbnM6c29kaXBvZGk9Imh0dHA6Ly9zb2RpcG9kaS5zb3VyY2Vmb3JnZS5uZXQvRFREL3NvZGlwb2RpLTAuZHRkIgogICB4bWxuczppbmtzY2FwZT0iaHR0cDovL3d3dy5pbmtzY2FwZS5vcmcvbmFtZXNwYWNlcy9pbmtzY2FwZSIKICAgaGVpZ2h0PSIxMDAlIgogICB2ZXJzaW9uPSIxLjEiCiAgIHZpZXdCb3g9IjAgMCA2OCA0OCIKICAgd2lkdGg9IjEwMCUiCiAgIGlkPSJzdmc2IgogICBzb2RpcG9kaTpkb2NuYW1lPSJ5b3V0dWJlX2J1dHRvbl9ob3Zlci5zdmciCiAgIGlua3NjYXBlOnZlcnNpb249IjAuOTIuNSAoMjA2MGVjMWY5ZiwgMjAyMC0wNC0wOCkiPgogIDxtZXRhZGF0YQogICAgIGlkPSJtZXRhZGF0YTEyIj4KICAgIDxyZGY6UkRGPgogICAgICA8Y2M6V29yawogICAgICAgICByZGY6YWJvdXQ9IiI+CiAgICAgICAgPGRjOmZvcm1hdD5pbWFnZS9zdmcreG1sPC9kYzpmb3JtYXQ+CiAgICAgICAgPGRjOnR5cGUKICAgICAgICAgICByZGY6cmVzb3VyY2U9Imh0dHA6Ly9wdXJsLm9yZy9kYy9kY21pdHlwZS9TdGlsbEltYWdlIiAvPgogICAgICAgIDxkYzp0aXRsZT48L2RjOnRpdGxlPgogICAgICA8L2NjOldvcms+CiAgICA8L3JkZjpSREY+CiAgPC9tZXRhZGF0YT4KICA8ZGVmcwogICAgIGlkPSJkZWZzMTAiIC8+CiAgPHNvZGlwb2RpOm5hbWVkdmlldwogICAgIHBhZ2Vjb2xvcj0iI2ZmZmZmZiIKICAgICBib3JkZXJjb2xvcj0iIzY2NjY2NiIKICAgICBib3JkZXJvcGFjaXR5PSIxIgogICAgIG9iamVjdHRvbGVyYW5jZT0iMTAiCiAgICAgZ3JpZHRvbGVyYW5jZT0iMTAiCiAgICAgZ3VpZGV0b2xlcmFuY2U9IjEwIgogICAgIGlua3NjYXBlOnBhZ2VvcGFjaXR5PSIwIgogICAgIGlua3NjYXBlOnBhZ2VzaGFkb3c9IjIiCiAgICAgaW5rc2NhcGU6d2luZG93LXdpZHRoPSI3MzgiCiAgICAgaW5rc2NhcGU6d2luZG93LWhlaWdodD0iNDgwIgogICAgIGlkPSJuYW1lZHZpZXc4IgogICAgIHNob3dncmlkPSJmYWxzZSIKICAgICBpbmtzY2FwZTp6b29tPSI1LjE3MTY0NTIiCiAgICAgaW5rc2NhcGU6Y3g9IjExLjc2MzM2MyIKICAgICBpbmtzY2FwZTpjeT0iMjQiCiAgICAgaW5rc2NhcGU6d2luZG93LXg9IjAiCiAgICAgaW5rc2NhcGU6d2luZG93LXk9IjAiCiAgICAgaW5rc2NhcGU6d2luZG93LW1heGltaXplZD0iMCIKICAgICBpbmtzY2FwZTpjdXJyZW50LWxheWVyPSJzdmc2IiAvPgogIDxwYXRoCiAgICAgY2xhc3M9Inl0cC1sYXJnZS1wbGF5LWJ1dHRvbi1iZyIKICAgICBkPSJNNjYuNTIsNy43NGMtMC43OC0yLjkzLTIuNDktNS40MS01LjQyLTYuMTlDNTUuNzksLjEzLDM0LDAsMzQsMFMxMi4yMSwuMTMsNi45LDEuNTUgQzMuOTcsMi4zMywyLjI3LDQuODEsMS40OCw3Ljc0QzAuMDYsMTMuMDUsMCwyNCwwLDI0czAuMDYsMTAuOTUsMS40OCwxNi4yNmMwLjc4LDIuOTMsMi40OSw1LjQxLDUuNDIsNi4xOSBDMTIuMjEsNDcuODcsMzQsNDgsMzQsNDhzMjEuNzktMC4xMywyNy4xLTEuNTVjMi45My0wLjc4LDQuNjQtMy4yNiw1LjQyLTYuMTlDNjcuOTQsMzQuOTUsNjgsMjQsNjgsMjRTNjcuOTQsMTMuMDUsNjYuNTIsNy43NHoiCiAgICAgZmlsbD0iI2ZmMDAwMCIKICAgICBpZD0icGF0aDIiIC8+CiAgPHBhdGgKICAgICBkPSJNIDQ1LDI0IDI3LDE0IDI3LDM0IgogICAgIGZpbGw9IiNmZmYiCiAgICAgaWQ9InBhdGg0IiAvPgo8L3N2Zz4K') center center / auto 4rem no-repeat;
}
/*.shortcode-youtube:hover::before {
    background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+CjxzdmcKICAgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIgogICB4bWxuczpjYz0iaHR0cDovL2NyZWF0aXZlY29tbW9ucy5vcmcvbnMjIgogICB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiCiAgIHhtbG5zOnN2Zz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciCiAgIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIKICAgeG1sbnM6c29kaXBvZGk9Imh0dHA6Ly9zb2RpcG9kaS5zb3VyY2Vmb3JnZS5uZXQvRFREL3NvZGlwb2RpLTAuZHRkIgogICB4bWxuczppbmtzY2FwZT0iaHR0cDovL3d3dy5pbmtzY2FwZS5vcmcvbmFtZXNwYWNlcy9pbmtzY2FwZSIKICAgaGVpZ2h0PSIxMDAlIgogICB2ZXJzaW9uPSIxLjEiCiAgIHZpZXdCb3g9IjAgMCA2OCA0OCIKICAgd2lkdGg9IjEwMCUiCiAgIGlkPSJzdmc2IgogICBzb2RpcG9kaTpkb2NuYW1lPSJ5b3V0dWJlX2J1dHRvbi5zdmciCiAgIGlua3NjYXBlOnZlcnNpb249IjAuOTIuNSAoMjA2MGVjMWY5ZiwgMjAyMC0wNC0wOCkiPgogIDxtZXRhZGF0YQogICAgIGlkPSJtZXRhZGF0YTEyIj4KICAgIDxyZGY6UkRGPgogICAgICA8Y2M6V29yawogICAgICAgICByZGY6YWJvdXQ9IiI+CiAgICAgICAgPGRjOmZvcm1hdD5pbWFnZS9zdmcreG1sPC9kYzpmb3JtYXQ+CiAgICAgICAgPGRjOnR5cGUKICAgICAgICAgICByZGY6cmVzb3VyY2U9Imh0dHA6Ly9wdXJsLm9yZy9kYy9kY21pdHlwZS9TdGlsbEltYWdlIiAvPgogICAgICAgIDxkYzp0aXRsZT48L2RjOnRpdGxlPgogICAgICA8L2NjOldvcms+CiAgICA8L3JkZjpSREY+CiAgPC9tZXRhZGF0YT4KICA8ZGVmcwogICAgIGlkPSJkZWZzMTAiIC8+CiAgPHNvZGlwb2RpOm5hbWVkdmlldwogICAgIHBhZ2Vjb2xvcj0iI2ZmZmZmZiIKICAgICBib3JkZXJjb2xvcj0iIzY2NjY2NiIKICAgICBib3JkZXJvcGFjaXR5PSIxIgogICAgIG9iamVjdHRvbGVyYW5jZT0iMTAiCiAgICAgZ3JpZHRvbGVyYW5jZT0iMTAiCiAgICAgZ3VpZGV0b2xlcmFuY2U9IjEwIgogICAgIGlua3NjYXBlOnBhZ2VvcGFjaXR5PSIwIgogICAgIGlua3NjYXBlOnBhZ2VzaGFkb3c9IjIiCiAgICAgaW5rc2NhcGU6d2luZG93LXdpZHRoPSI3MzgiCiAgICAgaW5rc2NhcGU6d2luZG93LWhlaWdodD0iNDgwIgogICAgIGlkPSJuYW1lZHZpZXc4IgogICAgIHNob3dncmlkPSJmYWxzZSIKICAgICBpbmtzY2FwZTp6b29tPSI0LjE3NjQ3MDYiCiAgICAgaW5rc2NhcGU6Y3g9IjM0IgogICAgIGlua3NjYXBlOmN5PSIyNCIKICAgICBpbmtzY2FwZTp3aW5kb3cteD0iMCIKICAgICBpbmtzY2FwZTp3aW5kb3cteT0iMCIKICAgICBpbmtzY2FwZTp3aW5kb3ctbWF4aW1pemVkPSIwIgogICAgIGlua3NjYXBlOmN1cnJlbnQtbGF5ZXI9InN2ZzYiIC8+CiAgPHBhdGgKICAgICBjbGFzcz0ieXRwLWxhcmdlLXBsYXktYnV0dG9uLWJnIgogICAgIGQ9Ik02Ni41Miw3Ljc0Yy0wLjc4LTIuOTMtMi40OS01LjQxLTUuNDItNi4xOUM1NS43OSwuMTMsMzQsMCwzNCwwUzEyLjIxLC4xMyw2LjksMS41NSBDMy45NywyLjMzLDIuMjcsNC44MSwxLjQ4LDcuNzRDMC4wNiwxMy4wNSwwLDI0LDAsMjRzMC4wNiwxMC45NSwxLjQ4LDE2LjI2YzAuNzgsMi45MywyLjQ5LDUuNDEsNS40Miw2LjE5IEMxMi4yMSw0Ny44NywzNCw0OCwzNCw0OHMyMS43OS0wLjEzLDI3LjEtMS41NWMyLjkzLTAuNzgsNC42NC0zLjI2LDUuNDItNi4xOUM2Ny45NCwzNC45NSw2OCwyNCw2OCwyNFM2Ny45NCwxMy4wNSw2Ni41Miw3Ljc0eiIKICAgICBmaWxsPSIjMjEyMTIxIgogICAgIGZpbGwtb3BhY2l0eT0iMC44IgogICAgIGlkPSJwYXRoMiIgLz4KICA8cGF0aAogICAgIGQ9Ik0gNDUsMjQgMjcsMTQgMjcsMzQiCiAgICAgZmlsbD0iI2ZmZiIKICAgICBpZD0icGF0aDQiIC8+Cjwvc3ZnPgo=');
}*/
.shortcode-youtube::after {
    background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+CjxzdmcKICAgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIgogICB4bWxuczpjYz0iaHR0cDovL2NyZWF0aXZlY29tbW9ucy5vcmcvbnMjIgogICB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiCiAgIHhtbG5zOnN2Zz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciCiAgIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIKICAgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiCiAgIHhtbG5zOnNvZGlwb2RpPSJodHRwOi8vc29kaXBvZGkuc291cmNlZm9yZ2UubmV0L0RURC9zb2RpcG9kaS0wLmR0ZCIKICAgeG1sbnM6aW5rc2NhcGU9Imh0dHA6Ly93d3cuaW5rc2NhcGUub3JnL25hbWVzcGFjZXMvaW5rc2NhcGUiCiAgIHZpZXdCb3g9IjAgMCAzMTcuMTAwMDEgOTguMDk5OTk4IgogICB2ZXJzaW9uPSIxLjEiCiAgIGlkPSJzdmcxNSIKICAgc29kaXBvZGk6ZG9jbmFtZT0ieW91dHViZS5zdmciCiAgIHdpZHRoPSIzMTcuMTAwMDEiCiAgIGhlaWdodD0iOTguMDk5OTk4IgogICBpbmtzY2FwZTp2ZXJzaW9uPSIwLjkyLjUgKDIwNjBlYzFmOWYsIDIwMjAtMDQtMDgpIj4KICA8bWV0YWRhdGEKICAgICBpZD0ibWV0YWRhdGEyMSI+CiAgICA8cmRmOlJERj4KICAgICAgPGNjOldvcmsKICAgICAgICAgcmRmOmFib3V0PSIiPgogICAgICAgIDxkYzpmb3JtYXQ+aW1hZ2Uvc3ZnK3htbDwvZGM6Zm9ybWF0PgogICAgICAgIDxkYzp0eXBlCiAgICAgICAgICAgcmRmOnJlc291cmNlPSJodHRwOi8vcHVybC5vcmcvZGMvZGNtaXR5cGUvU3RpbGxJbWFnZSIgLz4KICAgICAgICA8ZGM6dGl0bGU+PC9kYzp0aXRsZT4KICAgICAgPC9jYzpXb3JrPgogICAgPC9yZGY6UkRGPgogIDwvbWV0YWRhdGE+CiAgPGRlZnMKICAgICBpZD0iZGVmczE5IiAvPgogIDxzb2RpcG9kaTpuYW1lZHZpZXcKICAgICBwYWdlY29sb3I9IiNmZmZmZmYiCiAgICAgYm9yZGVyY29sb3I9IiM2NjY2NjYiCiAgICAgYm9yZGVyb3BhY2l0eT0iMSIKICAgICBvYmplY3R0b2xlcmFuY2U9IjEwIgogICAgIGdyaWR0b2xlcmFuY2U9IjEwIgogICAgIGd1aWRldG9sZXJhbmNlPSIxMCIKICAgICBpbmtzY2FwZTpwYWdlb3BhY2l0eT0iMCIKICAgICBpbmtzY2FwZTpwYWdlc2hhZG93PSIyIgogICAgIGlua3NjYXBlOndpbmRvdy13aWR0aD0iMjU2MCIKICAgICBpbmtzY2FwZTp3aW5kb3ctaGVpZ2h0PSIxMzkxIgogICAgIGlkPSJuYW1lZHZpZXcxNyIKICAgICBzaG93Z3JpZD0iZmFsc2UiCiAgICAgZml0LW1hcmdpbi10b3A9IjAiCiAgICAgZml0LW1hcmdpbi1sZWZ0PSIwIgogICAgIGZpdC1tYXJnaW4tcmlnaHQ9IjAiCiAgICAgZml0LW1hcmdpbi1ib3R0b209IjAiCiAgICAgaW5rc2NhcGU6em9vbT0iMi43Njg5Mjc4IgogICAgIGlua3NjYXBlOmN4PSI3My43MjIzMDEiCiAgICAgaW5rc2NhcGU6Y3k9IjQ3LjgiCiAgICAgaW5rc2NhcGU6d2luZG93LXg9IjAiCiAgICAgaW5rc2NhcGU6d2luZG93LXk9IjAiCiAgICAgaW5rc2NhcGU6d2luZG93LW1heGltaXplZD0iMSIKICAgICBpbmtzY2FwZTpjdXJyZW50LWxheWVyPSJzdmcxNSIgLz4KICA8ZwogICAgIGlkPSJnMTEiCiAgICAgc3R5bGU9ImZpbGw6I2ZmZmZmZiIKICAgICB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTczLC00LjcpIj4KICAgIDxwYXRoCiAgICAgICBkPSJtIDIyNy45LDk5LjcgYyAtMy4xLC0yLjEgLTUuMywtNS4zIC02LjYsLTkuNyAtMS4zLC00LjQgLTEuOSwtMTAuMiAtMS45LC0xNy41IHYgLTkuOSBjIDAsLTcuMyAwLjcsLTEzLjMgMi4yLC0xNy43IDEuNSwtNC41IDMuOCwtNy43IDcsLTkuNyAzLjIsLTIgNy4zLC0zLjEgMTIuNCwtMy4xIDUsMCA5LjEsMSAxMi4xLDMuMSAzLDIuMSA1LjMsNS4zIDYuNyw5LjcgMS40LDQuNCAyLjEsMTAuMyAyLjEsMTcuNiB2IDkuOSBjIDAsNy4zIC0wLjcsMTMuMSAtMi4xLDE3LjUgLTEuNCw0LjQgLTMuNiw3LjYgLTYuNyw5LjcgLTMuMSwyIC03LjMsMy4xIC0xMi41LDMuMSAtNS40LDAuMSAtOS42LC0xIC0xMi43LC0zIHogTSAyNDUuMiw4OSBjIDAuOSwtMi4yIDEuMywtNS45IDEuMywtMTAuOSBWIDU2LjggYyAwLC00LjkgLTAuNCwtOC41IC0xLjMsLTEwLjcgLTAuOSwtMi4zIC0yLjQsLTMuNCAtNC41LC0zLjQgLTIuMSwwIC0zLjUsMS4xIC00LjQsMy40IC0wLjksMi4zIC0xLjMsNS44IC0xLjMsMTAuNyB2IDIxLjMgYyAwLDUgMC40LDguNyAxLjIsMTAuOSAwLjgsMi4yIDIuMywzLjMgNC41LDMuMyAyLjEsMCAzLjYsLTEuMSA0LjUsLTMuMyB6IE0gNDY0LjQsNzIuNyB2IDMuNSBsIDAuNCw5LjkgYyAwLjMsMi4yIDAuOCwzLjggMS42LDQuOCAwLjgsMSAyLjEsMS41IDMuOCwxLjUgMi4zLDAgMy45LC0wLjkgNC43LC0yLjcgMC45LC0xLjggMS4zLC00LjggMS40LC04LjkgbCAxMy4zLDAuOCBjIDAuMSwwLjYgMC4xLDEuNCAwLjEsMi40IDAsNi4zIC0xLjcsMTEgLTUuMiwxNC4xIC0zLjUsMy4xIC04LjMsNC43IC0xNC42LDQuNyAtNy42LDAgLTEyLjksLTIuNCAtMTUuOSwtNy4xIC0zLC00LjcgLTQuNiwtMTIuMSAtNC42LC0yMiBWIDYxLjYgYyAwLjM0LC0xNyAzLjMzLC0yOS40NSAyMC45LC0yOS41IDUuMywwIDkuMywxIDEyLjEsMi45IDIuOCwxLjkgNC44LDQuOSA2LDkgMS4yLDQuMSAxLjcsOS43IDEuNywxNi45IHYgMTEuNyBoIC0yNS43IHogbSAyLC0yOC44IGMgLTAuOCwxIC0xLjMsMi41IC0xLjYsNC43IC0wLjMsMi4yIC0wLjQsMTAgLTAuNCwxMCB2IDQuOSBoIDExLjIgdiAtNC45IGMgMCw0LjkgLTAuMSwtNy43IC0wLjQsLTEwIC0wLjMsLTIuMyAtMC44LC0zLjkgLTEuNiwtNC44IC0wLjgsLTAuOSAtMiwtMS40IC0zLjYsLTEuNCAtMS43LDAuMSAtMi45LDAuNiAtMy42LDEuNSB6IE0gMTkwLjUsNzEuNCAxNzMsOC4yIGggMTUuMyBjIDAsMCA3LjE1LDMxLjcgOS42LDQ2LjYgaCAwLjQgYyAyLjc4LC0xNS44MiA5LjgsLTQ2LjYgOS44LC00Ni42IGggMTUuMyBsIC0xNy43LDYzLjEgdiAzMC4zIEggMTkwLjYgViA3MS40IFoiCiAgICAgICBpZD0icGF0aDYiCiAgICAgICBpbmtzY2FwZTpjb25uZWN0b3ItY3VydmF0dXJlPSIwIgogICAgICAgc3R5bGU9ImZpbGw6I2ZmZmZmZiIgLz4KICAgIDxwYXRoCiAgICAgICBpZD0iQSIKICAgICAgIGQ9Im0gMzExLjUsMzMuNCB2IDY4LjMgaCAtMTIgbCAtMS4zLC04LjQgaCAtMC4zIGMgLTMuMyw2LjMgLTguMiw5LjUgLTE0LjcsOS41IC0xMS43NywtMC4wMyAtMTMuMDgsLTEwIC0xMy4yLC0xOC40IHYgLTUxIGggMTUuNCB2IDUwLjEgYyAwLDMgMC4zLDUuMiAxLDYuNSAxLjQyLDIuNzggNS4xLDIuMDcgNy4xLDAuNyBhIDgsOCAwIDAgMCAyLjcsLTMuMSBWIDMzLjQgWiIKICAgICAgIGlua3NjYXBlOmNvbm5lY3Rvci1jdXJ2YXR1cmU9IjAiCiAgICAgICBzdHlsZT0iZmlsbDojZmZmZmZmIiAvPgogICAgPHBhdGgKICAgICAgIGQ9Ik0gMzUzLjMsMjAuNiBIIDMzOCB2IDgxLjEgSCAzMjMgViAyMC42IEggMzA3LjcgViA4LjIgaCA0NS41IHYgMTIuNCB6IG0gODcuOSwyMy43IEMgNDQwLjMsNDAgNDM4LjgsMzYuOSA0MzYuNywzNC45IDQzNC42LDMzIDQzMS44LDMyIDQyOC4xLDMyIGEgMTQuMSwxNC4xIDAgMCAwIC03LjksMi40IGMgLTIuNSwxLjYgLTQuMywzLjcgLTUuNyw2LjMgaCAtMC4xIHYgLTM2IGggLTE0LjggdiA5Ni45IGggMTIuNyBsIDEuNiwtNi41IGggMC4zIGEgMTQsMTQgMCAwIDAgNS4zLDUuNSBjIDIuNCwxLjMgNSwyIDcuOSwyIDUuMiwwIDksLTIuNCAxMS41LC03LjIgMi40LC00LjggMy43LC0xMi4zIDMuNywtMjIuNCBWIDYyLjIgYyAwLC03LjYgLTAuNSwtMTMuNiAtMS40LC0xNy45IHogbSAtMTQuMSwyNy45IGMgMCw1IC0wLjIsOC45IC0wLjYsMTEuNyAtMC40LDIuOCAtMS4xLDQuOCAtMi4xLDYgLTEsMS4yIC0yLjMsMS44IC0zLjksMS44IC0zLjEsLTAuMSAtNC44NiwtMS41IC02LjEsLTMuNiBWIDQ5LjMgYyAwLjUsLTEuOSAxLjQsLTMuNCAyLjcsLTQuNiAyLjIsLTIuNDcgNS45NiwtMi41IDcuNywwIDAuOSwxLjIgMS40LDMuMyAxLjgsNi4yIDAuMywyLjkgMC41LDcgMC41LDEyLjQgeiIKICAgICAgIGlkPSJwYXRoOSIKICAgICAgIGlua3NjYXBlOmNvbm5lY3Rvci1jdXJ2YXR1cmU9IjAiCiAgICAgICBzdHlsZT0iZmlsbDojZmZmZmZmIiAvPgogIDwvZz4KICA8dXNlCiAgICAgeGxpbms6aHJlZj0iI0EiCiAgICAgeD0iNzguOTAwMDAyIgogICAgIGlkPSJ1c2UxMyIKICAgICB5PSIwIgogICAgIHdpZHRoPSIxMDAlIgogICAgIGhlaWdodD0iMTAwJSIKICAgICB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTczLC00LjcpIgogICAgIHN0eWxlPSJmaWxsOiNmZmZmZmYiIC8+Cjwvc3ZnPgo=') calc(100% - 1rem) calc(100% - 1rem) / auto 2rem no-repeat;
}
.shortcode-youtube img {
    display: block;
}
@media (max-width: 45rem) {
    .shortcode-youtube::before {background-size: auto 12vw;}
    .shortcode-youtube::after {background-position: calc(100% - 3vw) calc(100% - 3vw); background-size: auto 6vw;}
}
.blueoverlay {
    position: relative;
    overflow: hidden;
}
.blueoverlay > img {display: block;}
.blueoverlay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #081d33;
    opacity: .7;
    z-index: 0;
    border-radius: .5rem;
}
ul.video-list {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    list-style: none;
    margin: 0;
}
ul.video-list.webinars {
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
}
ul.video-list li {padding: 0!important;}
ul.video-list li::before {content: none!important;}
ul.video-list li a {display: block; position: relative; margin-bottom: 0.5rem;}
ul.video-list li a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4rem;
    height: 4rem;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}
/* create a play icon using CSS */
ul.video-list li a::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-left: 1.5rem solid #fff;
    border-top: 1rem solid transparent;
    border-bottom: 1rem solid transparent;
    transform: translate(calc(-50% + 0.25rem), -50%);
    z-index: 2;
}
ul.video-list li .title {
    line-height: 1.2;
    margin-block: 0.25rem 0.75rem;
}
ul.tag-list {
    margin: 0 0 2rem;
    user-select: none;
}
ul.tag-list li {padding: 0.1rem 0.5rem!important;}
ul.tag-list li::before {content: none!important;}

.tag {
    background: rgba(0,0,0,0.1);
    font-size: 0.9rem;
    display: inline-block;
    padding: 0.1rem 0.5rem;
    border-radius: 0.3rem;
    cursor: pointer;
    margin: 0 0.2em 0.4em 0!important;
    user-select: none;
}
.tag.active {
    background: var(--primary-color);
    color: #fff;
}

ul.podcast-list {list-style: none; margin: 0;}
ul.podcast-list li {
    display: flex;
    flex-direction: row-reverse;
    gap: 5rem;
    margin-bottom: 1.5rem;
    align-items: center;
    padding-left: 0!important;
    padding-block: 4rem!important;
}   
ul.podcast-list li > * {flex: 1;}
ul.podcast-list li h2 {
    font-size: 1.75rem;
    margin: 1rem 0 1.5rem;
}
ul.podcast-list .pretitle {
    text-align: left;
    color: var(--primary-color);
    font-weight: 600;
    border-bottom: 1px solid var(--primary-color);
    max-width: 15rem;
    padding-bottom: 0.5rem;
}
ul.podcast-list .button {margin-top: 1rem;}

@media (max-width: 65rem) {
    ul.podcast-list li {
        flex-direction: column;
        gap: 1.5rem;
        align-items: stretch;
        padding-block: 1rem 5rem!important;
    }
    ul.podcast-list li > * {flex: none;}
}



div.podcastplayer {
    border-radius: 12px;
    color: white;
    padding: 2rem;
    position: relative;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}
div.podcastplayer img {
    aspect-ratio: 1;
    object-fit: cover;
    background: black;
    box-shadow: 0 9px 9px 0 rgba(0,0,0,.1),0 0 29px 0 rgba(0,0,0,.1);
    max-width: 13rem;
    position: relative;
    min-width: 13rem;
}
div.podcastplayer > div {flex-grow: 1;}
div.podcastplayer .player {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: space-between;
    margin-block: 0.5rem -0.5rem;
}
div.podcastplayer .player .progress {
    height: 2px;
    width: 100%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    position: relative;
}
div.podcastplayer .player .progress::before {
    content: '';
    position: absolute;
    inset: -0.5rem 0;
}
div.podcastplayer .title {
    line-height: 1.2;
    margin-bottom: 0.5rem;
}
div.podcastplayer .showdate {
    opacity: 0.5;
    font-size: 0.9rem;
    line-height: 1.2;
}
div.podcastplayer .playbutton {
    width: 3rem;
    min-width: 3rem;
    height: 3rem;
    background: white;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
}
/* create a play icon using CSS */
div.podcastplayer .playbutton > span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-left: 1.25rem solid var(--primary-color);
    border-top: 0.75rem solid transparent!important;
    border-bottom: 0.75rem solid transparent!important;
    transform: translate(calc(-50% + 0.15rem), -50%);
}
div.podcastplayer.playing .playbutton > span {
    width: 0.85rem;
    height: 1rem;
    border: none!important;
    border-left: 0.3rem solid var(--bg-color, var(--primary-color))!important;
    border-right: 0.3rem solid var(--bg-color, var(--primary-color))!important;
    transform: translate(-50%, -50%);
}

@media (max-width: 35rem) {
    div.podcastplayer {
        flex-direction: column;
        align-items: stretch;
    }
    div.podcastplayer img {
        left: 50%;
        transform: translateX(-50%);
    }
}

ul.cases-list {
    list-style: none;
    margin: 0!important;
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
}
ul.cases-list li {
    position: relative;
    padding: 0!important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
ul.cases-list li::before {content: none!important;}
ul.cases-list li a img {
    position: absolute;
    aspect-ratio: 1.75;
    object-fit: cover;
    display: block;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;;
}
ul.cases-list li a {margin-bottom: 0.5rem; display: block;}
ul.cases-list li a > div {
    aspect-ratio: 1.75;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
ul.cases-list li a > div::before {
    z-index: 1!important;
}
ul.cases-list li a > div > span {
    position: relative;
    z-index: 2;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
    font-size: 1.25rem;
    padding: 1rem;
    color: white;
}