/** Variables **/
:root {
  --neutral-0: hsla(226, 100%, 99%, 1);
  --neutral-5: hsla(226, 32%, 93%, 1);
  --neutral-10: hsla(226, 32%, 93%, 1);
  --neutral-20: hsla(226, 9%, 78%, 1);
  --neutral-30: hsla(226, 6%, 68%, 1);
  --neutral-40: hsla(226, 4%, 59%, 1);
  --neutral-50: hsla(226, 3%, 49%, 1);
  --neutral-60: hsla(226, 3%, 39%, 1);
  --neutral-70: hsla(226, 3%, 29%, 1);
  --neutral-80: hsla(226, 3%, 20%, 1);
  --neutral-90: hsla(226, 3%, 10%, 1);
  --neutral-100: hsla(240, 3%, 5%, 1);
}

:root {
  --success: hsla(73, 78%, 25%, 1);
  --success-bg: hsla(74, 65%, 83%, 1);
  --warning: hsla(36, 100%, 23%, 1);
  --warning-bg: hsla(46, 100%, 85%, 1);
  --error: hsla(10, 87%, 36%, 1);
  --error-bg: hsla(10, 89%, 86%, 1);
}

:root {
  --wtt-cyan: hsla(206, 73%, 47%, 1);
  --wtt-gras: hsla(72, 79%, 43%, 1);
  --wtt-green: hsla(105, 55%, 43%, 1);
  --wtt-lime: hsla(60, 81%, 46%, 1);
  --wtt-violet: hsla(257, 46%, 37%, 1);
  --wtt-darkblue: hsla(226, 63%, 34%, 1);
  --wtt-magenta: hsla(327, 63%, 51%, 1);
  --wtt-orange: hsla(36, 100%, 50%, 1);
  --wtt-brown: hsla(0, 32%, 32%, 1);
}

:root {
  --wtt-brandgradient: linear-gradient(96deg, var(--wtt-magenta) 0%, var(--wtt-violet) 100%);
  --wtt-brandgradient-muted: radial-gradient(38.49% 34.58% at 47.7% 55.78%, rgba(77, 52, 139, 0.20) 0%, rgba(255, 255, 255, 0.00) 100%), rgba(77, 52, 139, 0.10);
  --wtt-cyan-gradient: linear-gradient(135deg, #28A3FF 0%, #2186D1 50%, #2596EB 100%);
  --wtt-gras-gradient: linear-gradient(135deg, #CCFA1D 0%, #A3C717 50%, #B8E01A 100%);
  --wtt-green-gradient: linear-gradient(135deg, #68DE41 0%, #50AB32 50%, #5CC439 100%);
  --wtt-lime-gradient: linear-gradient(135deg, #FFFF1A 0%, #D6D616 49%, #F0F019 100%);
  --wtt-violet-gradient: linear-gradient(135deg, #6A48BF 0%, #4E348C 50%, #5C3EA6 100%);
  --wtt-darkblue-gradient: linear-gradient(135deg, #2C4FC2 0%, #203A8F 50%, #2645A8 100%);
  --wtt-magenta-gradient: linear-gradient(135deg, #FF3EA8 0%, #D1338A 50%, #EB399B 100%);
  --wtt-orange-gradient: linear-gradient(135deg, #FFC300 0%, #F90 49%, #FFAE00 100%);
  --wtt-brown-gradient: linear-gradient(135deg, #D46D6D 0%, #A15353 49.5%, #BA6060 100%);
}

:root {
  --fontscale-xxxl: 3rem;
  --fontscale-xxl: 2rem;
  --fontscale-xl: 1.5rem;
  --fontscale-lg: 1.25rem;
  --fontscale-md: 1.125rem;
  --fontscale-df: 1rem;
  --fontscale-sm: .875rem;
  --fontscale-xs: .75rem ;
}

:root {
  --fontfamily-base: "Poppins", sans-serif;
  --fontfamily-display: "Titillium Web", sans-serif;
}

:root {
  --spaceunit: 4px;
  --space-4: calc(4px * 1);
  --space-8: calc(4px * 2);
  --space-12: calc(4px * 3);
  --space-16: calc(4px * 4);
  --space-20: calc(4px * 5);
  --space-24: calc(4px * 6);
  --space-28: calc(4px * 7);
  --space-32: calc(4px * 8);
  --space-36: calc(4px * 9);
  --space-40: calc(4px * 10);
  --space-44: calc(4px * 11);
  --space-48: calc(4px * 12);
  --space-52: calc(4px * 13);
  --space-56: calc(4px * 14);
  --space-60: calc(4px * 15);
  --space-64: calc(4px * 16);
  --space-68: calc(4px * 17);
  --space-72: calc(4px * 18);
  --space-76: calc(4px * 19);
  --space-80: calc(4px * 20);
}

.p-space--4 {
  padding: var(--space-4);
}

.px-space--4 {
  padding-left: var(--space-4);
  padding-right: var(--space-4);
}

.py-space--4 {
  padding-top: var(--space-4);
  padding-bottom: var(--space-4);
}

.p-space--8 {
  padding: var(--space-8);
}

.px-space--8 {
  padding-left: var(--space-8);
  padding-right: var(--space-8);
}

.py-space--8 {
  padding-top: var(--space-8);
  padding-bottom: var(--space-8);
}

.p-space--12 {
  padding: var(--space-12);
}

.px-space--12 {
  padding-left: var(--space-12);
  padding-right: var(--space-12);
}

.py-space--12 {
  padding-top: var(--space-12);
  padding-bottom: var(--space-12);
}

.p-space--16 {
  padding: var(--space-16);
}

.px-space--16 {
  padding-left: var(--space-16);
  padding-right: var(--space-16);
}

.py-space--16 {
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}

.p-space--20 {
  padding: var(--space-20);
}

.px-space--20 {
  padding-left: var(--space-20);
  padding-right: var(--space-20);
}

.py-space--20 {
  padding-top: var(--space-20);
  padding-bottom: var(--space-20);
}

.p-space--24 {
  padding: var(--space-24);
}

.px-space--24 {
  padding-left: var(--space-24);
  padding-right: var(--space-24);
}

.py-space--24 {
  padding-top: var(--space-24);
  padding-bottom: var(--space-24);
}

.p-space--28 {
  padding: var(--space-28);
}

.px-space--28 {
  padding-left: var(--space-28);
  padding-right: var(--space-28);
}

.py-space--28 {
  padding-top: var(--space-28);
  padding-bottom: var(--space-28);
}

.p-space--32 {
  padding: var(--space-32);
}

.px-space--32 {
  padding-left: var(--space-32);
  padding-right: var(--space-32);
}

.py-space--32 {
  padding-top: var(--space-32);
  padding-bottom: var(--space-32);
}

.p-space--36 {
  padding: var(--space-36);
}

.px-space--36 {
  padding-left: var(--space-36);
  padding-right: var(--space-36);
}

.py-space--36 {
  padding-top: var(--space-36);
  padding-bottom: var(--space-36);
}

.p-space--40 {
  padding: var(--space-40);
}

.px-space--40 {
  padding-left: var(--space-40);
  padding-right: var(--space-40);
}

.py-space--40 {
  padding-top: var(--space-40);
  padding-bottom: var(--space-40);
}

.p-space--44 {
  padding: var(--space-44);
}

.px-space--44 {
  padding-left: var(--space-44);
  padding-right: var(--space-44);
}

.py-space--44 {
  padding-top: var(--space-44);
  padding-bottom: var(--space-44);
}

.p-space--48 {
  padding: var(--space-48);
}

.px-space--48 {
  padding-left: var(--space-48);
  padding-right: var(--space-48);
}

.py-space--48 {
  padding-top: var(--space-48);
  padding-bottom: var(--space-48);
}

.p-space--52 {
  padding: var(--space-52);
}

.px-space--52 {
  padding-left: var(--space-52);
  padding-right: var(--space-52);
}

.py-space--52 {
  padding-top: var(--space-52);
  padding-bottom: var(--space-52);
}

.p-space--56 {
  padding: var(--space-56);
}

.px-space--56 {
  padding-left: var(--space-56);
  padding-right: var(--space-56);
}

.py-space--56 {
  padding-top: var(--space-56);
  padding-bottom: var(--space-56);
}

.p-space--60 {
  padding: var(--space-60);
}

.px-space--60 {
  padding-left: var(--space-60);
  padding-right: var(--space-60);
}

.py-space--60 {
  padding-top: var(--space-60);
  padding-bottom: var(--space-60);
}

.p-space--64 {
  padding: var(--space-64);
}

.px-space--64 {
  padding-left: var(--space-64);
  padding-right: var(--space-64);
}

.py-space--64 {
  padding-top: var(--space-64);
  padding-bottom: var(--space-64);
}

.p-space--68 {
  padding: var(--space-68);
}

.px-space--68 {
  padding-left: var(--space-68);
  padding-right: var(--space-68);
}

.py-space--68 {
  padding-top: var(--space-68);
  padding-bottom: var(--space-68);
}

.p-space--72 {
  padding: var(--space-72);
}

.px-space--72 {
  padding-left: var(--space-72);
  padding-right: var(--space-72);
}

.py-space--72 {
  padding-top: var(--space-72);
  padding-bottom: var(--space-72);
}

.p-space--76 {
  padding: var(--space-76);
}

.px-space--76 {
  padding-left: var(--space-76);
  padding-right: var(--space-76);
}

.py-space--76 {
  padding-top: var(--space-76);
  padding-bottom: var(--space-76);
}

.p-space--80 {
  padding: var(--space-80);
}

.px-space--80 {
  padding-left: var(--space-80);
  padding-right: var(--space-80);
}

.py-space--80 {
  padding-top: var(--space-80);
  padding-bottom: var(--space-80);
}

:root {
  --maxcontentwidth: 1320px;
  --gutter: var(--space-16);
}
@media screen and (min-width: 992px) {
  :root {
    --gutter: var(--space-24);
  }
}

:root {
  --radius: var(--space-12);
}

:root {
  --shadow: -10px -10px 30px 0px rgba(255, 255, 255, 0.25), 0px 24px 24px 0px rgba(47, 77, 93, 0.05), 0px 9.244px 7.644px 0px rgba(47, 77, 93, 0.03), 0px 1.956px 1.956px 0px rgba(47, 77, 93, 0.02);
}

:root {
  --headerbarheight: 56px;
  --toolbarheight: 50px;
}
@media screen and (min-width: 1240px) {
  :root {
    --headerbarheight: 80px;
  }
}

/** Utility **/
/**
 * Address styling not present in IE 7/8/9, Safari 5, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
 */
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address styling not present in Safari 5 and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address styling not present in IE 6/7/8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
* Correct font family set oddly in IE 6, Safari 4/5, and Chrome.
*/
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  _font-family: "courier new", monospace;
  font-size: 1em;
}

/**
 * Improve readability of pre-formatted text in all browsers.
 */
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

/**
 * Address CSS quotes not supported in IE 6/7.
 */
q {
  quotes: none;
}

/**
 * Address `quotes` property not supported in Safari 4.
 */
q:before,
q:after {
  content: "";
  content: none;
}

/**
* Prevent `sub` and `sup` affecting `line-height` in all browsers.
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* ==========================================================================
   Embedded content
   ========================================================================== */
/**
 * 1. Remove border when inside `a` element in IE 6/7/8/9 and Firefox 3.
 * 2. Improve image quality when scaled in IE 7.
 */
img {
  border: 0; /* 1 */
  -ms-interpolation-mode: bicubic; /* 2 */
}

/**
 * Correct overflow displayed oddly in IE 9.
 */
svg:not(:root) {
  overflow: hidden;
}

/* ==========================================================================
   Figures
   ========================================================================== */
/**
 * Address margin not present in IE 6/7/8/9, Safari 5, and Opera 11.
 */
figure {
  margin: 0;
}

/* ==========================================================================
   Forms
   ========================================================================== */
/**
 * Correct margin displayed oddly in IE 6/7.
 */
form {
  margin: 0;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

/**
 * 1. Correct color not being inherited in IE 6/7/8/9.
 * 2. Correct text not wrapping in Firefox 3.
 * 3. Correct alignment displayed oddly in IE 6/7.
 */
legend {
  border: 0; /* 1 */
  padding: 0;
  white-space: normal; /* 2 */
  *margin-left: -7px; /* 3 */
}

/**
 * 1. Correct font size not being inherited in all browsers.
 * 2. Address margins set differently in IE 6/7, Firefox 3+, Safari 5,
 *    and Chrome.
 * 3. Improve appearance and consistency in all browsers.
 */
button,
input,
select,
textarea {
  font-size: 100%; /* 1 */
  margin: 0; /* 2 */
  vertical-align: baseline; /* 3 */
  *vertical-align: middle; /* 3 */
}

/**
 * Address Firefox 3+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
  line-height: normal;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 6+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. Remove inner spacing in IE 7 without affecting normal text inputs.
 *    Known issue: inner spacing remains in IE 6.
 */
button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button; /* 2 */
  cursor: pointer; /* 3 */
  *overflow: visible; /* 4 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * 1. Address box sizing set to content-box in IE 8/9.
 * 2. Remove excess padding in IE 8/9.
 * 3. Remove excess padding in IE 7.
 *    Known issue: excess padding remains in IE 6.
 */
input[type=checkbox],
input[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
  *height: 13px; /* 3 */
  *width: 13px; /* 3 */
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type=search] {
  -webkit-appearance: textfield; /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box; /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Remove inner padding and border in Firefox 3+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * 1. Remove default vertical scrollbar in IE 6/7/8/9.
 * 2. Improve readability and alignment in all browsers.
 */
textarea {
  overflow: auto; /* 1 */
  vertical-align: top; /* 2 */
}

/* ==========================================================================
   Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/** Base Styles **/
/* poppins-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  src: url("../font/poppins-v21-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  src: url("../font/poppins-v21-latin-500.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  src: url("../font/poppins-v21-latin-600.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  src: url("../font/poppins-v21-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* titillium-web-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Titillium Web";
  font-style: normal;
  font-weight: 400;
  src: url("../font/titillium-web-v17-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* titillium-web-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Titillium Web";
  font-style: normal;
  font-weight: 700;
  src: url("../font/titillium-web-v17-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
.icon-angle-left,
.icon-angle-right,
.icon-angle-double-left,
.icon-angle-double-right {
  width: 0.8rem;
  height: 0.8rem;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.icon-angle-left {
  background-image: url("../../assets/img/icon/icon-angle-left.svg");
}

.icon-angle-double-left {
  background-image: url("../../assets/img/icon/icon-angle-left-double.svg");
}

.icon-angle-right {
  background-image: url("../../assets/img/icon/icon-angle-right.svg");
}

.icon-angle-double-right {
  background-image: url("../../assets/img/icon/icon-angle-right-double.svg");
}

mark,
.awesomplete mark {
  background: var(--wtt-brandgradient) !important;
  color: #fff !important;
}

*:focus:not(:focus-visible), a:focus:not(:focus-visible) {
  outline: none;
}

*:focus-visible, a:focus-visible {
  outline: 3px dashed var(--wtt-violet);
  outline-offset: 2px;
}

/** Standalone Components **/
.counter {
  display: block;
  position: relative;
  z-index: 2;
  margin: var(--space-12) 0;
  text-align: center;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: var(--space-3) 0;
  gap: var(--space-8);
  position: relative;
  z-index: 2;
}
.pagination a {
  color: var(--neutral-70);
}
@media screen and (min-width: 768px) {
  .pagination {
    margin: var(--space-5) 0;
  }
}
.pagination_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination .page-item::marker {
  content: none;
}
.pagination .page-item > a, .pagination .page-item > span {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: var(--radius);
  transition: 0.15s ease-in-out;
}
.pagination .page-item > a:hover {
  background: var(--neutral-5);
}
.pagination .page-item.active > a, .pagination .page-item.active > span {
  background: #fff;
  box-shadow: var(--shadow);
  color: var(--wtt-violet);
}
.pagination .page-item.disabled > a, .pagination .page-item.disabled > span {
  opacity: 0.35;
}
.pagination .page-item + .page-item {
  margin-left: var(--space-1);
}

.stepper {
  display: flex;
  flex-direction: column;
  gap: var(--space-24);
  margin: var(--space-40) 0;
}
@media screen and (min-width: 768px) {
  .stepper.stepper-horizontal {
    flex-direction: initial;
    align-items: start;
    justify-content: center;
  }
}
.stepper__item {
  display: flex;
  align-items: start;
  gap: var(--space-16);
  font-size: var(--fontscale-sm);
  position: relative;
}
@media screen and (min-width: 768px) {
  .stepper-horizontal .stepper__item {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-wrap: balance;
  }
}
.stepper__item:not(:last-child):before {
  display: block;
  width: 2px;
  height: calc(100% + var(--space-24));
  background: var(--wtt-brandgradient);
  content: " ";
  position: absolute;
  top: 0;
  left: 20px;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .stepper-horizontal .stepper__item:before {
    display: block;
    width: calc(100% + var(--space-24));
    height: 2px;
    background: var(--wtt-brandgradient);
    content: " ";
    position: absolute;
    top: 20px;
    left: -12px;
    z-index: 1;
    box-shadow: 0px 0px 24px 0px #9B3DD0, 0px 0px 24px 0px #9B3DD0;
  }
  .stepper-horizontal .stepper__item:first-child:before {
    left: 50%;
  }
  .stepper-horizontal .stepper__item:last-child:before {
    left: unset;
    right: 50%;
  }
}
.stepper__item-bullet {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--wtt-brandgradient);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.stepper__item-content-title {
  background: var(--wtt-brandgradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  font-size: var(--fontscale-df);
  margin-top: 0;
  margin-bottom: var(--space-8);
}
.stepper__item-content-intro > *:first-child {
  margin-top: 0;
}
.stepper__item-content-intro > *:last-child {
  margin-bottom: 0;
}

.checklist li:before {
  background-image: url("../../assets/img/icon/icon_checklist.svg");
}
.bg-wtt-brandgradient .checklist li:before {
  background-image: url("../../assets/img/icon/icon_checklist_inverted.svg");
}

.tns-nav {
  display: flex;
  justify-content: start;
  gap: 6px;
  padding: var(--space-16) 0;
}
@media screen and (min-width: 768px) {
  .tns-nav {
    justify-content: center;
  }
}
.tns-nav button {
  width: 10px;
  height: 10px;
  appearance: none;
  background: var(--neutral-20);
  border: 0px;
  border-radius: 100vw;
  padding: 0;
}
.tns-nav button.tns-nav-active {
  background: var(--wtt-brandgradient);
}

.tns-controls {
  display: flex;
  justify-content: end;
  gap: 6px;
  margin-top: -48px;
}
.tns-controls button {
  width: 48px;
  height: 48px;
  appearance: none;
  border: 0px;
  background: #fff;
  background-image: url("../img/icon/icon-arrow-right-brand.svg");
  background-position: center;
  background-size: 16px;
  background-repeat: no-repeat;
  transition: 0.25s ease-in-out;
  transform-origin: center;
  text-indent: -999999px;
  padding: 0;
  filter: saturate(0);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  cursor: pointer;
}
.tns-controls button:hover {
  filter: initial;
  background-color: var(--wtt-brandgradient-muted);
}
.tns-controls button[data-controls=prev] {
  background-image: url("../img/icon/icon-arrow-left-brand.svg");
}

@media screen and (min-width: 768px) {
  .tnsnavcenter {
    position: relative;
  }
  .tnsnavcenter .tns-controls {
    justify-content: space-between;
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
  }
  .tnsnavcenter .tns-controls button {
    pointer-events: initial;
  }
}

.trainingpage__introarea .pagenavigation .btn-secondary {
  background-image: url("../img/icon/icon-arrow-right-brand.svg");
}
.trainingpage__introarea .pagenavigation .btn-secondary.previous {
  background-image: url("../img/icon/icon-arrow-left-brand.svg");
}

.pinnedcontentsection__contents {
  height: 100%;
  overflow-y: auto;
  position: relative;
  display: grid;
}
.pinnedcontentsection__contents-item {
  grid-column: 1/2;
  grid-row: 1/2;
  opacity: 0;
}
.pinnedcontentsection__contents-item:first-child {
  opacity: 1;
}
.pinnedcontentsection__contents-item-content {
  display: flex;
  gap: var(--space-16);
  align-items: start;
}
.pinnedcontentsection__contents-item-content img {
  width: 40px;
  height: auto;
  display: block;
  flex-shrink: 0;
}
@media screen and (min-width: 992px) {
  .pinnedcontentsection__contents-item-content img {
    width: 64px;
  }
}
.pinnedcontentsection__contents-item-image {
  display: none;
}
@media screen and (min-width: 768px) {
  .pinnedcontentsection__contents-item-image {
    display: block;
  }
}

.featuretable thead th {
  background: var(--wtt-brandgradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.featuretable tbody img {
  height: 1.75rem;
  width: auto;
}
.featuretable tbody td {
  min-width: 150px;
}
.featuretable td:not(:last-child), .featuretable th:not(:last-child) {
  border-right: 2px dotted var(--wtt-violet);
}

.slidesetcontainer {
  display: inline-flex;
  align-items: stretch;
  padding-bottom: var(--space-48);
  margin-bottom: var(--space-24);
}
.slidesetcontainer__item > div, .slidesetcontainer__item > a {
  height: 100%;
}
.slidesetcontainer__item > div .card, .slidesetcontainer__item > a .card {
  height: 100%;
  margin-bottom: 0;
}

.filtermagic-field-filter legend:after {
  background-image: url("../img/icon/icon-angle-right.svg");
}

.kununulogos {
  display: flex;
  gap: var(--space-8);
  width: 100%;
}
.kununulogos--space-top {
  margin: var(--space-48) 0 0 0;
}
.kununulogos img {
  width: 50%;
  max-width: 150px;
  display: block;
}

@media screen and (min-width: 768px) {
  .imageslidercontainer {
    padding: 0 8.3333333333%;
  }
}
.imageslidercontainer .tns-controls {
  margin-top: 0;
}
.imageslidercontainer--fullwidth {
  width: 100vw;
  margin-left: calc(var(--gutter) * -1);
  padding: 0;
}
@media screen and (min-width: 1320px) {
  .imageslidercontainer--fullwidth {
    margin-left: calc((100vw - var(--maxcontentwidth)) / -2 - var(--gutter));
  }
}
.imageslidercontainer--fullwidth .tns-controls {
  margin-right: calc(var(--gutter) * 1);
}

/** Form **/
fieldset > * + * {
  margin-top: var(--space-2);
}

legend {
  color: var(--neutral-90);
  font-weight: 600;
  margin-bottom: var(--space-8);
}

label {
  font-weight: 500;
  color: var(--neutral-90);
  margin-bottom: var(--space-8);
  font-size: var(--fontscale-sm);
  display: inline-block;
}

select,
body .formResponsive select {
  background-image: url("../../assets/img/icon/icon-angle-select.svg");
  background-position: calc(100% - var(--space-16)) center;
  background-repeat: no-repeat;
  background-size: 0.875em;
}

/** Footer **/
.footer {
  background: var(--wtt-brandgradient);
  color: #fff;
}
.footer__main {
  display: grid;
  grid-gap: var(--gutter);
  padding: var(--space-40) 0;
  margin-top: var(--space-40);
}
@media screen and (min-width: 768px) {
  .footer__main {
    grid-template-columns: 1fr 3fr;
  }
}
@media screen and (min-width: 992px) {
  .footer__main {
    grid-template-columns: 1fr 5fr;
    padding: var(--space-64) 0;
  }
}
.footer__main-logo-link {
  display: flex;
  justify-content: center;
}
.footer__main-logo-link-image {
  width: 100%;
  height: auto;
  display: block;
  max-width: 180px;
}
.footer__bottombar {
  display: grid;
  grid-gap: var(--gutter);
  padding-bottom: var(--space-40);
}
@media screen and (min-width: 768px) {
  .footer__bottombar {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
  }
}
@media screen and (min-width: 992px) {
  .footer__bottombar {
    padding-bottom: var(--space-64);
  }
}

.footer__main-navigation {
  font-size: var(--fontscale-sm);
}
.footer__main-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__main-navigation a {
  text-decoration: none;
  transition: 0.25s ease-in-out;
}
.footer__main-navigation > ul {
  display: grid;
  grid-gap: var(--gutter);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
}
.footer__main-navigation > ul > li {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}
.footer__main-navigation > ul > li > a,
.footer__main-navigation > ul > li > span {
  font-weight: 600;
  color: #fff;
  display: block;
  opacity: 0.9;
}
.footer__main-navigation > ul > li > ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.footer__main-navigation > ul > li > ul a, .footer__main-navigation > ul > li > ul span {
  transition: 0.25s ease-in-out;
  color: #fff;
  opacity: 0.6;
}
.footer__main-navigation > ul > li > ul a:hover, .footer__main-navigation > ul > li > ul a:focus-visible, .footer__main-navigation > ul > li > ul span:hover, .footer__main-navigation > ul > li > ul span:focus-visible {
  opacity: 0.9;
}

.footer__bottombar ul.nav {
  list-style: none;
  font-size: var(--fontscale-sm);
  gap: var(--space-16);
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 0;
}
.footer__bottombar ul.nav a {
  text-decoration: none;
  transition: 0.25s ease-in-out;
  color: #fff;
  opacity: 0.6;
}
.footer__bottombar ul.nav a:hover, .footer__bottombar ul.nav a:focus-visible {
  opacity: 0.9;
}
@media screen and (min-width: 768px) {
  .footer__bottombar ul.nav {
    justify-content: start;
  }
}

/** Headerbar **/
@media screen and (max-width: 992px) {
  .headerbar__nav li.parent {
    cursor: pointer;
  }
  .headerbar__nav li.parent > a:after,
  .headerbar__nav li.parent > span:after {
    content: " ";
    width: 1em;
    height: 1em;
    display: block;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transition: 0.25s ease-in-out;
    background-image: url("../../assets/img/icon/icon-angle-right-primary.svg");
    filter: saturate(0);
  }
  .headerbar__nav li.parent.active > a:after,
  .headerbar__nav li.parent.active > span:after, .headerbar__nav li.parent.opened > a:after,
  .headerbar__nav li.parent.opened > span:after {
    transform: rotate(90deg);
    filter: saturate(100%);
  }
}
/** Views **/