/*
 * Advieskeuze.nl - Restyle 2023
 */

/* Setup and variables */
:root {
    /* Colors */
    --white: #fff;
    --black: #000;

    --blue-50: #f1f8fe;
    --blue-100: #e1effd;
    --blue-200: #bddefa;
    --blue-300: #82c4f7;
    --blue-400: #4eadf1;
    --blue-500: #178be0;
    --blue-600: #0a6dbf;
    --blue-700: #0a579a;
    --blue-800: #0c4a80;
    --blue-900: #103f6a;
    --blue-950: #0b2846;

    --yellow-50: #fefee8;
    --yellow-100: #feffc2;
    --yellow-200: #fffe87;
    --yellow-300: #fff643;
    --yellow-400: #ffe70c;
    --yellow-500: #efce03;
    --yellow-600: #cea100;
    --yellow-700: #a47304;
    --yellow-800: #885a0b;
    --yellow-900: #734910;
    --yellow-950: #432605;

    --green-50: #f5fce9;
    --green-100: #e8f8cf;
    --green-200: #d2f1a5;
    --green-300: #b3e670;
    --green-400: #89d22e;
    --green-500: #77bc26;
    --green-600: #5b961a;
    --green-700: #467318;
    --green-800: #3a5b19;
    --green-900: #324e19;
    --green-950: #182a09;

    --orange-50: #fdf3e5;
    --orange-100: #fceed8;
    --orange-200: #f8d9b0;
    --orange-300: #f3bd7e;
    --orange-400: #ed984a;
    --orange-500: #e97b26;
    --orange-600: #da621c;
    --orange-700: #b54a19;
    --orange-800: #903c1c;
    --orange-900: #74331a;
    --orange-950: #3f170b;

    --red-50: #fef2f2;
    --red-100: #ffe1e1;
    --red-200: #ffc8c8;
    --red-300: #ffa2a2;
    --red-400: #fd6c6c;
    --red-500: #f53e3e;
    --red-600: #e53535;
    --red-700: #be1717;
    --red-800: #9d1717;
    --red-900: #821a1a;
    --red-950: #470808;

    --sand-50: #f7f7f5;
    --sand-100: #ecece8;
    --sand-200: #d7d6d1;
    --sand-300: #b7b6ab;
    --sand-400: #a3a194;
    --sand-500: #908d7f;
    --sand-600: #847f72;
    --sand-700: #6e6a60;
    --sand-800: #5b5751;
    --sand-900: #4b4843;
    --sand-950: #272623;

    --slate-50: #f5f6f8;
    --slate-100: #eceef2;
    --slate-200: #d6dae1;
    --slate-300: #b1bac8;
    --slate-400: #8796a9;
    --slate-500: #68798f;
    --slate-600: #536176;
    --slate-700: #444f60;
    --slate-800: #3b4351;
    --slate-900: #343a46;
    --slate-950: #23272e;

    --gray-50: #f5f5f6;
    --gray-100: #e6e6e7;
    --gray-200: #d0d0d1;
    --gray-300: #b0afb1;
    --gray-400: #888789;
    --gray-500: #706f71;
    --gray-600: #5e5c5e;
    --gray-700: #504e50;
    --gray-800: #454545;
    --gray-900: #3c3c3d;
    --gray-950: #262626;


    /* Fonts */
    --display-font: itc-avant-garde-gothic-pro, sans-serif;
    --body-font: "Roboto", roboto, sans-serif;
    --condensed-font: roboto-condensed, sans-serif;
    --mono-font: roboto-mono, monospace;
}

/*
 * Global styles & Resets
 */
html {
    font-size: 16px;
}

body {
    min-height: 100%;
    background-color: var(--slate-50);
    font-family: var(--body-font);
    color: var(--slate-950);
    font-size: 1rem;
    line-height: 1.5rem;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--display-font);
}

address {
    font-style: normal;
}

a {
    color: var(--blue-500);
    text-decoration: none;
}

a:hover {
    color: var(--blue-700);
}

hr {
    margin: 2.5rem 0;
    border: 0;
    border-top: .25rem solid var(--gray-50);
}

hr.soft-line {
    margin: 1.25rem 0;
    border-top: 1px solid var(--gray-50);
}

pre {
    font-family: var(--mono-font);
    margin-bottom: 1rem;
    border-radius: .5rem;
    overflow: auto;
    width: auto;
    padding: .5rem;
    background-color: var(--slate-50);
}

blockquote {
    margin: 1rem 0;
    color: var(--slate-500);
    padding-left: 2rem;
    font-size: 1.25rem;
    line-height: 1.6rem;
    font-style: italic;
    border-left: var(--slate-100) 2px solid;
}
@import url("globals.css");

/* Components */
@import url("components/header.css");
@import url("components/navigation.css");
@import url("components/footer.css");
@import url("components/button.css");
@import url("components/menu.css");
@import url("components/message.css");


/* Screens */
@import url("screens/layout.css");
@import url("screens/location.css");
@import url("screens/reviews.css");
@import url("screens/support.css");
@import url("screens/webshop.css");

/* Utilities */
@import url("utilities.css");
/*
 * Utility helper classes (Tailwind Lite)
 */

/* Fonts */
.font-display { font-family: var(--display-font) }
.font-body { font-family: var(--body-font) }
.font-condensed { font-family: var(--condensed-font) }
.font-mono { font-family: var(--mono-font) }

.font-black { font-weight: 800 }
.font-bold { font-weight: 700 }
.font-semibold { font-weight: 600 }
.font-medium { font-weight: 500 }
.font-regular { font-weight: 400 }
.font-light { font-weight: 300 }

.text-right { text-align: right; }
.text-center { text-align: center; }

@media (min-width: 978px) {
    .md\:text-left { text-align: left; }
    .md\:text-right { text-align: right; }
    .md\:text-center { text-align: center; }
}


/* Text sizing */
.text-xs { font-size: 0.75rem; line-height: 1rem }
.text-sm { font-size: 0.875rem; line-height: 1.25rem }
.text-base { font-size: 1rem; line-height: 1.5rem }
.text-lg { font-size: 1.125rem; line-height: 1.75rem }
.text-xl { font-size: 1.25rem; line-height: 1.75rem }
.text-2xl { font-size: 1.5rem; line-height: 2rem }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem }
.text-5xl { font-size: 3rem; line-height: 1 }
.text-6xl { font-size: 3.75rem; line-height: 1 }
.text-7xl { font-size: 4.5rem; line-height: 1 }
.text-8xl { font-size: 6rem; line-height: 1 }
.text-9xl { font-size: 8rem; line-height: 1 }

@media (min-width: 978px) {
  .md\:text-xs { font-size: 0.75rem; line-height: 1rem }
  .md\:text-sm { font-size: 0.875rem; line-height: 1.25rem }
  .md\:text-base { font-size: 1rem; line-height: 1.5rem }
  .md\:text-lg { font-size: 1.125rem; line-height: 1.75rem }
  .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem }
  .md\:text-2xl { font-size: 1.5rem; line-height: 2rem }
  .md\:text-3xl { font-size: 1.875rem; line-height: 2.25rem }
  .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem }
  .md\:text-5xl { font-size: 3rem; line-height: 1 }
  .md\:text-6xl { font-size: 3.75rem; line-height: 1 }
  .md\:text-7xl { font-size: 4.5rem; line-height: 1 }
  .md\:text-8xl { font-size: 6rem; line-height: 1 }
  .md\:text-9xl { font-size: 8rem; line-height: 1 }
}

.body-export .text-sm { font-size: 12px; line-height: 14px }
.body-export .text-lg { font-size: 14px; line-height: 16px }
.body-export .text-xl { font-size: 16px; line-height: 18px }
.body-export .text-2xl { font-size: 17px; line-height: 19px }
.body-export .text-3xl { font-size: 18px; line-height: 20px }
.body-export .text-sm { font-size: 12px; line-height: 14px }
.body-export .text-lg { font-size: 14px; line-height: 16px }
.body-export .text-xl { font-size: 16px; line-height: 18px }
.body-export .text-2xl { font-size: 17px; line-height: 19px }
.body-export .text-3xl { font-size: 18px; line-height: 20px }


/* Text colors */
.text-white { color: var(--white) }
.hover\:text-white { color: var(--white) }
.text-white\/75 { color: rgba(255, 255, 255, .75) }

.text-black { color: var(--black) }
.hover\:text-black { color: var(--black) }

.text-blue { color: var(--blue-500) }
.text-blue-50 { color: var(--blue-50) }
.text-blue-100 { color: var(--blue-100) }
.text-blue-200 { color: var(--blue-200) }
.text-blue-300 { color: var(--blue-400) }
.text-blue-400 { color: var(--blue-400) }
.text-blue-500 { color: var(--blue-500) }
.text-blue-600 { color: var(--blue-600) }
.text-blue-700 { color: var(--blue-700) }
.text-blue-800 { color: var(--blue-800) }
.text-blue-900 { color: var(--blue-900) }
.text-blue-950 { color: var(--blue-950) }

.hover\:text-blue:hover { color: var(--blue-500) }
.hover\:text-blue-50:hover { color: var(--blue-50) }
.hover\:text-blue-100:hover { color: var(--blue-100) }
.hover\:text-blue-200:hover { color: var(--blue-200) }
.hover\:text-blue-300:hover { color: var(--blue-400) }
.hover\:text-blue-400:hover { color: var(--blue-400) }
.hover\:text-blue-500:hover { color: var(--blue-500) }
.hover\:text-blue-600:hover { color: var(--blue-600) }
.hover\:text-blue-700:hover { color: var(--blue-700) }
.hover\:text-blue-800:hover { color: var(--blue-800) }
.hover\:text-blue-900:hover { color: var(--blue-900) }
.hover\:text-blue-950:hover { color: var(--blue-950) }

.text-orange { color: var(--orange-500) }
.text-orange-50 { color: var(--orange-50) }
.text-orange-100 { color: var(--orange-100) }
.text-orange-200 { color: var(--orange-200) }
.text-orange-300 { color: var(--orange-400) }
.text-orange-400 { color: var(--orange-400) }
.text-orange-500 { color: var(--orange-500) }
.text-orange-600 { color: var(--orange-600) }
.text-orange-700 { color: var(--orange-700) }
.text-orange-800 { color: var(--orange-800) }
.text-orange-900 { color: var(--orange-900) }
.text-orange-950 { color: var(--orange-950) }

.hover\:text-orange:hover { color: var(--orange-500) }
.hover\:text-orange-50:hover { color: var(--orange-50) }
.hover\:text-orange-100:hover { color: var(--orange-100) }
.hover\:text-orange-200:hover { color: var(--orange-200) }
.hover\:text-orange-300:hover { color: var(--orange-400) }
.hover\:text-orange-400:hover { color: var(--orange-400) }
.hover\:text-orange-500:hover { color: var(--orange-500) }
.hover\:text-orange-600:hover { color: var(--orange-600) }
.hover\:text-orange-700:hover { color: var(--orange-700) }
.hover\:text-orange-800:hover { color: var(--orange-800) }
.hover\:text-orange-900:hover { color: var(--orange-900) }
.hover\:text-orange-950:hover { color: var(--orange-950) }

.text-yellow { color: var(--yellow-500) }
.text-yellow-50 { color: var(--yellow-50) }
.text-yellow-100 { color: var(--yellow-100) }
.text-yellow-200 { color: var(--yellow-200) }
.text-yellow-300 { color: var(--yellow-400) }
.text-yellow-400 { color: var(--yellow-400) }
.text-yellow-500 { color: var(--yellow-500) }
.text-yellow-600 { color: var(--yellow-600) }
.text-yellow-700 { color: var(--yellow-700) }
.text-yellow-800 { color: var(--yellow-800) }
.text-yellow-900 { color: var(--yellow-900) }
.text-yellow-950 { color: var(--yellow-950) }

.hover\:text-yellow:hover { color: var(--yellow-500) }
.hover\:text-yellow-50:hover { color: var(--yellow-50) }
.hover\:text-yellow-100:hover { color: var(--yellow-100) }
.hover\:text-yellow-200:hover { color: var(--yellow-200) }
.hover\:text-yellow-300:hover { color: var(--yellow-400) }
.hover\:text-yellow-400:hover { color: var(--yellow-400) }
.hover\:text-yellow-500:hover { color: var(--yellow-500) }
.hover\:text-yellow-600:hover { color: var(--yellow-600) }
.hover\:text-yellow-700:hover { color: var(--yellow-700) }
.hover\:text-yellow-800:hover { color: var(--yellow-800) }
.hover\:text-yellow-900:hover { color: var(--yellow-900) }
.hover\:text-yellow-950:hover { color: var(--yellow-950) }

.text-red { color: var(--red-500) }
.text-red-50 { color: var(--red-50) }
.text-red-100 { color: var(--red-100) }
.text-red-200 { color: var(--red-200) }
.text-red-300 { color: var(--red-400) }
.text-red-400 { color: var(--red-400) }
.text-red-500 { color: var(--red-500) }
.text-red-600 { color: var(--red-600) }
.text-red-700 { color: var(--red-700) }
.text-red-800 { color: var(--red-800) }
.text-red-900 { color: var(--red-900) }
.text-red-950 { color: var(--red-950) }

.hover\:text-red:hover { color: var(--red-500) }
.hover\:text-red-50:hover { color: var(--red-50) }
.hover\:text-red-100:hover { color: var(--red-100) }
.hover\:text-red-200:hover { color: var(--red-200) }
.hover\:text-red-300:hover { color: var(--red-400) }
.hover\:text-red-400:hover { color: var(--red-400) }
.hover\:text-red-500:hover { color: var(--red-500) }
.hover\:text-red-600:hover { color: var(--red-600) }
.hover\:text-red-700:hover { color: var(--red-700) }
.hover\:text-red-800:hover { color: var(--red-800) }
.hover\:text-red-900:hover { color: var(--red-900) }
.hover\:text-red-950:hover { color: var(--red-950) }

.bg-green { background-color: var(--green-500) }
.bg-green-50 { background-color: var(--green-50) }
.bg-green-100 { background-color: var(--green-100) }
.bg-green-200 { background-color: var(--green-200) }
.bg-green-300 { background-color: var(--green-400) }
.bg-green-400 { background-color: var(--green-400) }
.bg-green-500 { background-color: var(--green-500) }
.bg-green-600 { background-color: var(--green-600) }
.bg-green-700 { background-color: var(--green-700) }
.bg-green-800 { background-color: var(--green-800) }
.bg-green-900 { background-color: var(--green-900) }
.bg-green-950 { background-color: var(--green-950) }

.text-green { color: var(--green-500) }
.text-green-50 { color: var(--green-50) }
.text-green-100 { color: var(--green-100) }
.text-green-200 { color: var(--green-200) }
.text-green-300 { color: var(--green-400) }
.text-green-400 { color: var(--green-400) }
.text-green-500 { color: var(--green-500) }
.text-green-600 { color: var(--green-600) }
.text-green-700 { color: var(--green-700) }
.text-green-800 { color: var(--green-800) }
.text-green-900 { color: var(--green-900) }
.text-green-950 { color: var(--green-950) }

.text-rating-1 { color: #ff3722 }
.text-rating-2 { color: #ff8622 }
.text-rating-3 { color: #ffce00 }
.text-rating-4 { color: #73cf11 }
.text-rating-5 { color: #00b67a }

.hover\:text-green:hover { color: var(--green-500) }
.hover\:text-green-50:hover { color: var(--green-50) }
.hover\:text-green-100:hover { color: var(--green-100) }
.hover\:text-green-200:hover { color: var(--green-200) }
.hover\:text-green-300:hover { color: var(--green-400) }
.hover\:text-green-400:hover { color: var(--green-400) }
.hover\:text-green-500:hover { color: var(--green-500) }
.hover\:text-green-600:hover { color: var(--green-600) }
.hover\:text-green-700:hover { color: var(--green-700) }
.hover\:text-green-800:hover { color: var(--green-800) }
.hover\:text-green-900:hover { color: var(--green-900) }
.hover\:text-green-950:hover { color: var(--green-950) }

.text-slate { color: var(--slate-500) }
.text-slate-50 { color: var(--slate-50) }
.text-slate-100 { color: var(--slate-100) }
.text-slate-200 { color: var(--slate-200) }
.text-slate-300 { color: var(--slate-300) }
.text-slate-300 { color: var(--slate-300) }
.text-slate-400 { color: var(--slate-400) }
.text-slate-500 { color: var(--slate-500) }
.text-slate-600 { color: var(--slate-600) }
.text-slate-700 { color: var(--slate-700) }
.text-slate-800 { color: var(--slate-800) }
.text-slate-900 { color: var(--slate-900) }
.text-slate-950 { color: var(--slate-950) }

.hover\:text-slate:hover { color: var(--slate-500) }
.hover\:text-slate-50:hover { color: var(--slate-50) }
.hover\:text-slate-100:hover { color: var(--slate-100) }
.hover\:text-slate-200:hover { color: var(--slate-200) }
.hover\:text-slate-300:hover { color: var(--slate-400) }
.hover\:text-slate-400:hover { color: var(--slate-400) }
.hover\:text-slate-500:hover { color: var(--slate-500) }
.hover\:text-slate-600:hover { color: var(--slate-600) }
.hover\:text-slate-700:hover { color: var(--slate-700) }
.hover\:text-slate-800:hover { color: var(--slate-800) }
.hover\:text-slate-900:hover { color: var(--slate-900) }
.hover\:text-slate-950:hover { color: var(--slate-950) }



/* Background colors */
.bg-blue { background-color: var(--blue-500) }
.bg-blue-50 { background-color: var(--blue-50) }
.bg-blue-100 { background-color: var(--blue-100) }
.bg-blue-200 { background-color: var(--blue-200) }
.bg-blue-300 { background-color: var(--blue-400) }
.bg-blue-400 { background-color: var(--blue-400) }
.bg-blue-500 { background-color: var(--blue-500) }
.bg-blue-600 { background-color: var(--blue-600) }
.bg-blue-700 { background-color: var(--blue-700) }
.bg-blue-800 { background-color: var(--blue-800) }
.bg-blue-900 { background-color: var(--blue-900) }
.bg-blue-950 { background-color: var(--blue-950) }

.hover\:bg-blue:hover { background-color: var(--blue-500) }
.hover\:bg-blue-50:hover { background-color: var(--blue-50) }
.hover\:bg-blue-100:hover { background-color: var(--blue-100) }
.hover\:bg-blue-200:hover { background-color: var(--blue-200) }
.hover\:bg-blue-300:hover { background-color: var(--blue-400) }
.hover\:bg-blue-400:hover { background-color: var(--blue-400) }
.hover\:bg-blue-500:hover { background-color: var(--blue-500) }
.hover\:bg-blue-600:hover { background-color: var(--blue-600) }
.hover\:bg-blue-700:hover { background-color: var(--blue-700) }
.hover\:bg-blue-800:hover { background-color: var(--blue-800) }
.hover\:bg-blue-900:hover { background-color: var(--blue-900) }
.hover\:bg-blue-950:hover { background-color: var(--blue-950) }

.bg-orange { background-color: var(--orange-500) }
.bg-orange-50 { background-color: var(--orange-50) }
.bg-orange-100 { background-color: var(--orange-100) }
.bg-orange-200 { background-color: var(--orange-200) }
.bg-orange-300 { background-color: var(--orange-400) }
.bg-orange-400 { background-color: var(--orange-400) }
.bg-orange-500 { background-color: var(--orange-500) }
.bg-orange-600 { background-color: var(--orange-600) }
.bg-orange-700 { background-color: var(--orange-700) }
.bg-orange-800 { background-color: var(--orange-800) }
.bg-orange-900 { background-color: var(--orange-900) }
.bg-orange-950 { background-color: var(--orange-950) }

.hover\:bg-orange:hover { background-color: var(--orange-500) }
.hover\:bg-orange-50:hover { background-color: var(--orange-50) }
.hover\:bg-orange-100:hover { background-color: var(--orange-100) }
.hover\:bg-orange-200:hover { background-color: var(--orange-200) }
.hover\:bg-orange-300:hover { background-color: var(--orange-400) }
.hover\:bg-orange-400:hover { background-color: var(--orange-400) }
.hover\:bg-orange-500:hover { background-color: var(--orange-500) }
.hover\:bg-orange-600:hover { background-color: var(--orange-600) }
.hover\:bg-orange-700:hover { background-color: var(--orange-700) }
.hover\:bg-orange-800:hover { background-color: var(--orange-800) }
.hover\:bg-orange-900:hover { background-color: var(--orange-900) }
.hover\:bg-orange-950:hover { background-color: var(--orange-950) }

.bg-red { background-color: var(--red-500) }
.bg-red-50 { background-color: var(--red-50) }
.bg-red-100 { background-color: var(--red-100) }
.bg-red-200 { background-color: var(--red-200) }
.bg-red-300 { background-color: var(--red-400) }
.bg-red-400 { background-color: var(--red-400) }
.bg-red-500 { background-color: var(--red-500) }
.bg-red-600 { background-color: var(--red-600) }
.bg-red-700 { background-color: var(--red-700) }
.bg-red-800 { background-color: var(--red-800) }
.bg-red-900 { background-color: var(--red-900) }
.bg-red-950 { background-color: var(--red-950) }

.hover\:bg-red:hover { background-color: var(--red-500) }
.hover\:bg-red-50:hover { background-color: var(--red-50) }
.hover\:bg-red-100:hover { background-color: var(--red-100) }
.hover\:bg-red-200:hover { background-color: var(--red-200) }
.hover\:bg-red-300:hover { background-color: var(--red-400) }
.hover\:bg-red-400:hover { background-color: var(--red-400) }
.hover\:bg-red-500:hover { background-color: var(--red-500) }
.hover\:bg-red-600:hover { background-color: var(--red-600) }
.hover\:bg-red-700:hover { background-color: var(--red-700) }
.hover\:bg-red-800:hover { background-color: var(--red-800) }
.hover\:bg-red-900:hover { background-color: var(--red-900) }
.hover\:bg-red-950:hover { background-color: var(--red-950) }

.bg-slate { background-color: var(--slate-500) }
.bg-slate-50 { background-color: var(--slate-50) }
.bg-slate-100 { background-color: var(--slate-100) }
.bg-slate-200 { background-color: var(--slate-200) }
.bg-slate-300 { background-color: var(--slate-400) }
.bg-slate-400 { background-color: var(--slate-400) }
.bg-slate-500 { background-color: var(--slate-500) }
.bg-slate-600 { background-color: var(--slate-600) }
.bg-slate-700 { background-color: var(--slate-700) }
.bg-slate-800 { background-color: var(--slate-800) }
.bg-slate-900 { background-color: var(--slate-900) }
.bg-slate-950 { background-color: var(--slate-950) }

.hover\:bg-slate:hover { background-color: var(--slate-500) }
.hover\:bg-slate-50:hover { background-color: var(--slate-50) }
.hover\:bg-slate-100:hover { background-color: var(--slate-100) }
.hover\:bg-slate-200:hover { background-color: var(--slate-200) }
.hover\:bg-slate-300:hover { background-color: var(--slate-400) }
.hover\:bg-slate-400:hover { background-color: var(--slate-400) }
.hover\:bg-slate-500:hover { background-color: var(--slate-500) }
.hover\:bg-slate-600:hover { background-color: var(--slate-600) }
.hover\:bg-slate-700:hover { background-color: var(--slate-700) }
.hover\:bg-slate-800:hover { background-color: var(--slate-800) }
.hover\:bg-slate-900:hover { background-color: var(--slate-900) }
.hover\:bg-slate-950:hover { background-color: var(--slate-950) }

.bg-gray { background-color: var(--gray-500) }
.bg-gray-50 { background-color: var(--gray-50) }
.bg-gray-100 { background-color: var(--gray-100) }
.bg-gray-200 { background-color: var(--gray-200) }
.bg-gray-300 { background-color: var(--gray-400) }
.bg-gray-400 { background-color: var(--gray-400) }
.bg-gray-500 { background-color: var(--gray-500) }
.bg-gray-600 { background-color: var(--gray-600) }
.bg-gray-700 { background-color: var(--gray-700) }
.bg-gray-800 { background-color: var(--gray-800) }
.bg-gray-900 { background-color: var(--gray-900) }
.bg-gray-950 { background-color: var(--gray-950) }

.hover\:bg-gray:hover { background-color: var(--gray-500) }
.hover\:bg-gray-50:hover { background-color: var(--gray-50) }
.hover\:bg-gray-100:hover { background-color: var(--gray-100) }
.hover\:bg-gray-200:hover { background-color: var(--gray-200) }
.hover\:bg-gray-300:hover { background-color: var(--gray-400) }
.hover\:bg-gray-400:hover { background-color: var(--gray-400) }
.hover\:bg-gray-500:hover { background-color: var(--gray-500) }
.hover\:bg-gray-600:hover { background-color: var(--gray-600) }
.hover\:bg-gray-700:hover { background-color: var(--gray-700) }
.hover\:bg-gray-800:hover { background-color: var(--gray-800) }
.hover\:bg-gray-900:hover { background-color: var(--gray-900) }
.hover\:bg-gray-950:hover { background-color: var(--gray-950) }

.bg-sand { background-color: var(--sand-500) }
.bg-sand-50 { background-color: var(--sand-50) }
.bg-sand-100 { background-color: var(--sand-100) }
.bg-sand-200 { background-color: var(--sand-200) }
.bg-sand-300 { background-color: var(--sand-400) }
.bg-sand-400 { background-color: var(--sand-400) }
.bg-sand-500 { background-color: var(--sand-500) }
.bg-sand-600 { background-color: var(--sand-600) }
.bg-sand-700 { background-color: var(--sand-700) }
.bg-sand-800 { background-color: var(--sand-800) }
.bg-sand-900 { background-color: var(--sand-900) }
.bg-sand-950 { background-color: var(--sand-950) }

.hover\:bg-sand:hover { background-color: var(--sand-500) }
.hover\:bg-sand-50:hover { background-color: var(--sand-50) }
.hover\:bg-sand-100:hover { background-color: var(--sand-100) }
.hover\:bg-sand-200:hover { background-color: var(--sand-200) }
.hover\:bg-sand-300:hover { background-color: var(--sand-400) }
.hover\:bg-sand-400:hover { background-color: var(--sand-400) }
.hover\:bg-sand-500:hover { background-color: var(--sand-500) }
.hover\:bg-sand-600:hover { background-color: var(--sand-600) }
.hover\:bg-sand-700:hover { background-color: var(--sand-700) }
.hover\:bg-sand-800:hover { background-color: var(--sand-800) }
.hover\:bg-sand-900:hover { background-color: var(--sand-900) }
.hover\:bg-sand-950:hover { background-color: var(--sand-950) }


/* Borders */
.border-0 { border: 0 !important; }
.border { border-width: 1px; border-style: solid }
.border-t { border-width: 0; border-top-width: 1px ;border-style: solid }
.border-l { border-width: 0; border-left-width: 1px; border-style: solid }
.border-b { border-width: 0; border-bottom-width: 1px; border-style: solid }
.border-r { border-width: 0; border-right-width: 1px; border-style: solid }
.border-x { border-width: 0; border-top-width: 1px; border-bottom-width: 1px; border-style: solid }
.border-y { border-width: 0; border-left-width: 1px; border-right-width: 1px; border-style: solid }

.border-2 { border-width: 2px; border-style: solid }
.border-t-2 { border-width: 0; border-top-width: 2px ;border-style: solid }
.border-l-2 { border-width: 0; border-left-width: 2px; border-style: solid }
.border-b-2 { border-width: 0; border-bottom-width: 2px; border-style: solid }
.border-r-2 { border-width: 0; border-right-width: 2px; border-style: solid }
.border-x-2 { border-width: 0; border-top-width: 2px; border-bottom-width: 2px; border-style: solid }
.border-y-2 { border-width: 0; border-left-width: 2px; border-right-width: 2px; border-style: solid }

.border-blue { border-color: var(--blue-500) }
.border-blue-50 { border-color: var(--blue-50) }
.border-blue-100 { border-color: var(--blue-100) }
.border-blue-200 { border-color: var(--blue-200) }
.border-blue-300 { border-color: var(--blue-300) }
.border-blue-400 { border-color: var(--blue-400) }
.border-blue-500 { border-color: var(--blue-500) }
.border-blue-600 { border-color: var(--blue-600) }
.border-blue-700 { border-color: var(--blue-700) }
.border-blue-800 { border-color: var(--blue-800) }
.border-blue-900 { border-color: var(--blue-900) }
.border-blue-950 { border-color: var(--blue-950) }

.border-orange { border-color: var(--orange-500) }
.border-orange-50 { border-color: var(--orange-50) }
.border-orange-100 { border-color: var(--orange-100) }
.border-orange-200 { border-color: var(--orange-200) }
.border-orange-300 { border-color: var(--orange-300) }
.border-orange-400 { border-color: var(--orange-400) }
.border-orange-500 { border-color: var(--orange-500) }
.border-orange-600 { border-color: var(--orange-600) }
.border-orange-700 { border-color: var(--orange-700) }
.border-orange-800 { border-color: var(--orange-800) }
.border-orange-900 { border-color: var(--orange-900) }
.border-orange-950 { border-color: var(--orange-950) }

.border-yellow { border-color: var(--yellow-500) }
.border-yellow-50 { border-color: var(--yellow-50) }
.border-yellow-100 { border-color: var(--yellow-100) }
.border-yellow-200 { border-color: var(--yellow-200) }
.border-yellow-300 { border-color: var(--yellow-300) }
.border-yellow-400 { border-color: var(--yellow-400) }
.border-yellow-500 { border-color: var(--yellow-500) }
.border-yellow-600 { border-color: var(--yellow-600) }
.border-yellow-700 { border-color: var(--yellow-700) }
.border-yellow-800 { border-color: var(--yellow-800) }
.border-yellow-900 { border-color: var(--yellow-900) }
.border-yellow-950 { border-color: var(--yellow-950) }

.border-slate { border-color: var(--slate-500) }
.border-slate-50 { border-color: var(--slate-50) }
.border-slate-100 { border-color: var(--slate-100) }
.border-slate-200 { border-color: var(--slate-200) }
.border-slate-300 { border-color: var(--slate-300) }
.border-slate-400 { border-color: var(--slate-400) }
.border-slate-500 { border-color: var(--slate-500) }
.border-slate-600 { border-color: var(--slate-600) }
.border-slate-700 { border-color: var(--slate-700) }
.border-slate-800 { border-color: var(--slate-800) }
.border-slate-900 { border-color: var(--slate-900) }
.border-slate-950 { border-color: var(--slate-950) }

/* Grid */
.grid, .d-grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.grid-cols-7 { grid-template-columns: repeat(7, minmax(0, 1fr)); }
.grid-cols-8 { grid-template-columns: repeat(8, minmax(0, 1fr)); }
.grid-cols-9 { grid-template-columns: repeat(9, minmax(0, 1fr)); }
.grid-cols-10 { grid-template-columns: repeat(10, minmax(0, 1fr)); }

@media (min-width: 978px) {
    .md\:grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .md\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
    .md\:grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
    .md\:grid-cols-7 { grid-template-columns: repeat(7, minmax(0, 1fr)); }
    .md\:grid-cols-8 { grid-template-columns: repeat(8, minmax(0, 1fr)); }
    .md\:grid-cols-9 { grid-template-columns: repeat(9, minmax(0, 1fr)); }
    .md\:grid-cols-10 { grid-template-columns: repeat(10, minmax(0, 1fr)); }
}

/* Flex */
.flex { display: flex; flex-wrap: wrap; }
.block { display: block }
.hidden { display: none }
.inline { display: inline }
.inline-block { display: inline-block }
.inline-flex { display: inline-flex }

.gap { gap: 1.125rem }
.gap-2 { gap: 2.25rem }
.gap-5 { gap: 5rem }
.body-export .gap { gap: 10px }

.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }

.justify-center { justify-content: center; }
.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }

.flex-column, .flex-col { flex-direction: column; }
.flex-col-reverse { flex-direction: column-reverse; }
.flex-row { flex-direction: row; }
.flex-row-reverse { flex-direction: row-reverse; }

.flex-nowrap { flex-wrap: nowrap; }

.flex-grow { flex-grow: 1; }

@media (min-width: 978px) {
    .md\:flex { display: flex; flex-wrap: wrap; }
    .md\:block { display: block }
    .md\:hidden { display: none }
    .md\:inline { display: inline }
    .md\:inline-block { display: inline-block }
    .md\:inline-flex { display: inline-flex }

    .md\:gap { gap: 1.125rem }

    .md\:items-center { align-items: center; }
    .md\:items-start { align-items: flex-start; }
    .md\:items-end { align-items: flex-end; }

    .md\:justify-center { justify-content: center; }
    .md\:justify-start { justify-content: flex-start; }
    .md\:justify-end { justify-content: flex-end; }
    .md\:justify-between { justify-content: space-between; }
    .md\:justify-around { justify-content: space-around; }

    .md\:flex-column, .md\:flex-col { flex-direction: column; }
    .md\:flex-col-reverse { flex-direction: column-reverse; }
    .md\:flex-row { flex-direction: row; }
    .md\:flex-row-reverse { flex-direction: row-reverse; }
}


/* Widths */

.w-1\/10 { width: 10% }
.w-1\/5, .w-2\/10 { width: 20% }
.w-1\/4 { width: 25% }
.w-3\/10 { width: 30% }
.w-1\/3 { width: 33.3333% }
.w-2\/5, .w-4\/10 { width: 40% }
.w-1\/2, .w-2\/4, .w-5\/10 { width: 50% }
.w-3\/5, .w-6\/10 { width: 60% }
.w-1\/6 { width: 16.66666% }
.w-2\/3 { width: 66.6666% }
.w-7\/10 { width: 70% }
.w-3\/4 { width: 75% }
.w-4\/5, .w-8\/10 { width: 80% }
.w-9\/10 { width: 90% }
.w-full { width: 100% }
.w-auto { width: auto }

.gap > .w-1\/10 { width: calc(10% - 1.125rem + (1.125rem / 10)) }
.gap > .w-1\/5 { width: calc(20% - 1.125rem + (1.125rem / 5)) }
.gap > .w-2\/10 { width: calc(20% - 1.125rem + (1.125rem / 5)) }
.gap > .w-1\/4 { width: calc(25% - 1.125rem + (1.125rem / 4)) }
.gap > .w-3\/10 { width: calc(30% - 1.125rem  + (1.125rem / 10)) }
.gap > .w-1\/3 { width: calc(33.3333% - 1.125rem + (1.125rem / 3)) }
.gap > .w-2\/5 { width: calc(40% - 1.125rem + (1.125rem / 5)) }
.gap > .w-1\/6 { width: calc(16.66666% - 1.125rem + (1.125rem / 6)) }
.gap > .w-4\/10 { width: calc(40% - 1.125rem + (1.125rem / 10)) }
.gap > .w-1\/2 { width: calc(50% - 1.125rem + (1.125rem / 2)) }
.gap > .w-2\/4 { width: calc(50% - 1.125rem + (1.125rem / 4)) }
.gap > .w-5\/10 { width: calc(50% - 1.125rem + (1.125rem / 10)) }
.gap > .w-3\/5 { width: calc(60% - 1.125rem + (1.125rem / 5)) }
.gap > .w-6\/10 { width: calc(60% - 1.125rem + (1.125rem / 10)) }
.gap > .w-2\/3 { width: calc(66.6666% - 1.125rem + (1.125rem / 3)) }
.gap > .w-7\/10 { width: calc(70% - 1.125rem + (1.125rem / 10)) }
.gap > .w-3\/4 { width: calc(75% - 1.125rem + (1.125rem / 4)) }
.gap > .w-4\/5 { width: calc(80% - 1.125rem + (1.125rem / 5)) }
.gap > .w-8\/10 { width: calc(80% - 1.125rem + (1.125rem / 10)) }
.gap > .w-9\/10 { width: calc(90% - 1.125rem + (1.125rem / 10)) }
.gap > .w-full { width: 100% }

@media (min-width: 978px) {
    .md\:w-1\/10 { width: 10% }
    .md\:w-1\/5, .md\:w-2\/10 { width: 20% }
    .md\:w-1\/4 { width: 25% }
    .md\:w-3\/10 { width: 30% }
    .md\:w-1\/3 { width: 33.3333% }
    .md\:w-2\/5, .md\:w-4\/10 { width: 40% }
    .md\:w-1\/2, .md\:w-2\/4, .md\:w-5\/10 { width: 50% }
    .md\:w-1\/6 { width: 16.66666% }
    .md\:w-3\/5, .md\:w-6\/10 { width: 60% }
    .md\:w-2\/3 { width: 66.6666% }
    .md\:w-7\/10 { width: 70% }
    .md\:w-3\/4 { width: 75% }
    .md\:w-4\/5, .md\:w-8\/10 { width: 80% }
    .md\:w-9\/10 { width: 90% }
    .md\:w-full { width: 100% }
    .md\:w-auto { width: auto }

    .md\:w-45 { width: 45% }

    .gap > .md\:w-1\/10 { width: calc(10% - 1.125rem + (1.125rem / 10)) }
    .gap > .md\:w-1\/5 { width: calc(20% - 1.125rem + (1.125rem / 5)) }
    .gap > .md\:w-2\/10 { width: calc(20% - 1.125rem + (1.125rem / 5)) }
    .gap > .md\:w-1\/4 { width: calc(25% - 1.125rem + (1.125rem / 4)) }
    .gap > .md\:w-3\/10 { width: calc(30% - 1.125rem  + (1.125rem / 10)) }
    .gap > .md\:w-1\/3 { width: calc(33.3333% - 1.125rem + (1.125rem / 3)) }
    .gap > .md\:w-2\/5 { width: calc(40% - 1.125rem + (1.125rem / 5)) }
    .gap > .md\:w-1\/6 { width: calc(16.66666% - 1.125rem + (1.125rem / 6)) }
    .gap > .md\:w-4\/10 { width: calc(40% - 1.125rem + (1.125rem / 10)) }
    .gap > .md\:w-1\/2 { width: calc(50% - 1.125rem + (1.125rem / 2)) }
    .gap > .md\:w-2\/4 { width: calc(50% - 1.125rem + (1.125rem / 4)) }
    .gap > .md\:w-5\/10 { width: calc(50% - 1.125rem + (1.125rem / 10)) }
    .gap > .md\:w-3\/5 { width: calc(60% - 1.125rem + (1.125rem / 5)) }
    .gap > .md\:w-6\/10 { width: calc(60% - 1.125rem + (1.125rem / 10)) }
    .gap > .md\:w-2\/3 { width: calc(66.6666% - 1.125rem + (1.125rem / 3)) }
    .gap > .md\:w-7\/10 { width: calc(70% - 1.125rem + (1.125rem / 10)) }
    .gap > .md\:w-3\/4 { width: calc(75% - 1.125rem + (1.125rem / 4)) }
    .gap > .md\:w-4\/5 { width: calc(80% - 1.125rem + (1.125rem / 5)) }
    .gap > .md\:w-8\/10 { width: calc(80% - 1.125rem + (1.125rem / 10)) }
    .gap > .md\:w-9\/10 { width: calc(90% - 1.125rem + (1.125rem / 10)) }
    .gap > .md\:w-full { width: 100% }

    .gap > .md\:w-45 { width: 45% }
}

.m-0 { margin: 0; }
.mt-0 { margin-top: 0; }
.mr-0 { margin-right: 0; }
.mb-0 { margin-bottom: 0; }
.ml-0 { margin-left: 0; }
.my-0 { margin-top: 0; margin-bottom: 0; }
.mx-0 { margin-left: 0; margin-right: 0; }

.\!m-0 { margin: 0 !important; }
.\!mt-0 { margin-top: 0 !important; }
.\!mr-0 { margin-right: 0 !important; }
.\!mb-0 { margin-bottom: 0 !important; }
.\!ml-0 { margin-left: 0 !important; }
.\!my-0 { margin-top: 0 !important; margin-bottom: 0 !important; }
.\!mx-0 { margin-left: 0 !important; margin-right: 0 !important; }

.m-0\.5 { margin: 0.5rem; }
.mt-0\.5 { margin-top: 0.5rem; }
.mr-0\.5 { margin-right: 0.5rem; }
.mb-0\.5 { margin-bottom: 0.5rem; }
.ml-0\.5 { margin-left: 0.5rem; }
.my-0\.5 { margin-top: 0.5rem; margin-bottom: 0.5rem; }
.mx-0\.5 { margin-left: 0.5rem; margin-right: 0.5rem; }

.m-1 { margin: 1rem; }
.mt-1 { margin-top: 1rem; }
.mr-1 { margin-right: 1rem; }
.mb-1 { margin-bottom: 1rem; }
.ml-1 { margin-left: 1rem; }
.my-1 { margin-top: 1rem; margin-bottom: 1rem; }
.mx-1 { margin-left: 1rem; margin-right: 1rem; }

.m-2 { margin: 2rem; }
.mt-2 { margin-top: 2rem; }
.mr-2 { margin-right: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.ml-2 { margin-left: 2rem; }
.my-2 { margin-top: 2rem; margin-bottom: 2rem; }
.mx-2 { margin-left: 2rem; margin-right: 2rem; }

.m-auto { margin: auto; }
.mt-auto { margin-top: auto; }
.mr-auto { margin-right: auto; }
.mb-auto { margin-bottom: auto; }
.ml-auto { margin-left: auto; }
.my-auto { margin-top: auto; margin-bottom: auto; }
.mx-auto { margin-left: auto; margin-right: auto; }

.p-0 { padding: 0; }
.pt-0 { padding-top: 0; }
.pr-0 { padding-right: 0; }
.pb-0 { padding-bottom: 0; }
.pl-0 { padding-left: 0; }
.py-0 { padding-top: 0; padding-bottom: 0; }
.px-0 { padding-left: 0; padding-right: 0; }

.\!p-3\/4 { padding: .75rem !important; }

.p-1 { padding: 1rem; }
.pt-1 { padding-top: 1rem; }
.pr-1 { padding-right: 1rem; }
.pb-1 { padding-bottom: 1rem; }
.pl-1 { padding-left: 1rem; }
.py-1 { padding-top: 1rem; padding-bottom: 1rem; }
.px-1 { padding-left: 1rem; padding-right: 1rem; }

.p-2 { padding: 2rem; }
.pt-2 { padding-top: 2rem; }
.pr-2 { padding-right: 2rem; }
.pb-2 { padding-bottom: 2rem; }
.pl-2 { padding-left: 2rem; }
.py-2 { padding-top: 2rem; padding-bottom: 2rem; }
.px-2 { padding-left: 2rem; padding-right: 2rem; }

@media (min-width: 978px) {
    .md\:m-0 { margin: 0; }
    .md\:mt-0 { margin-top: 0; }
    .md\:mr-0 { margin-right: 0; }
    .md\:mb-0 { margin-bottom: 0; }
    .md\:ml-0 { margin-left: 0; }
    .md\:my-0 { margin-top: 0; margin-bottom: 0; }
    .md\:mx-0 { margin-left: 0; margin-right: 0; }

    .md\:m-1 { margin: 1rem; }
    .md\:mt-1 { margin-top: 1rem; }
    .md\:mr-1 { margin-right: 1rem; }
    .md\:mb-1 { margin-bottom: 1rem; }
    .md\:ml-1 { margin-left: 1rem; }
    .md\:my-1 { margin-top: 1rem; margin-bottom: 1rem; }
    .md\:mx-1 { margin-left: 1rem; margin-right: 1rem; }

    .md\:m-auto { margin: auto; }
    .md\:mt-auto { margin-top: auto; }
    .md\:mr-auto { margin-right: auto; }
    .md\:mb-auto { margin-bottom: auto; }
    .md\:ml-auto { margin-left: auto; }
    .md\:my-auto { margin-top: auto; margin-bottom: auto; }
    .md\:mx-auto { margin-left: auto; margin-right: auto; }

    .md\:p-0 { padding: 0; }
    .md\:pt-0 { padding-top: 0; }
    .md\:pr-0 { padding-right: 0; }
    .md\:pb-0 { padding-bottom: 0; }
    .md\:pl-0 { padding-left: 0; }
    .md\:py-0 { padding-top: 0; padding-bottom: 0; }
    .md\:px-0 { padding-left: 0; padding-right: 0; }

    .md\:p-1 { padding: 1rem; }
    .md\:pt-1 { padding-top: 1rem; }
    .md\:pr-1 { padding-right: 1rem; }
    .md\:pb-1 { padding-bottom: 1rem; }
    .md\:pl-1 { padding-left: 1rem; }
    .md\:py-1 { padding-top: 1rem; padding-bottom: 1rem; }
    .md\:px-1 { padding-left: 1rem; padding-right: 1rem; }

    .md\:p-2 { padding: 2rem; }
    .md\:pt-2 { padding-top: 2rem; }
    .md\:pr-2 { padding-right: 2rem; }
    .md\:pb-2 { padding-bottom: 2rem; }
    .md\:pl-2 { padding-left: 2rem; }
    .md\:py-2 { padding-top: 2rem; padding-bottom: 2rem; }
    .md\:px-2 { padding-left: 2rem; padding-right: 2rem; }
}


/* Hide first hr within the license sections div */
div > hr:first-child {
    display: none;
}

.float-right { float: right }
.float-left { float: left }

.whitespace-nowrap {
    white-space: nowrap;
}

.h-auto {
    height: auto;
}

.h-full {
    height: 100%;
}

.h-12 {
    height: 3rem;
}

.w-12 {
    width: 3rem;
}

.h-36 {
  height: 9rem;
}

.w-36 {
  width: 9rem;
}

.rounded {
    border-radius: .5rem;
}

.rounded-full {
    border-radius: 9999999px;
}

.body-export .export-hidden {
    display: none !important;
}

.max-w-full {
  max-width: 100%;
}

.underline {
  text-decoration: underline;
}

/* iFrame bedding */
.responsive-embed {
  overflow: hidden;
  padding-top: 56.25%; /* 16:9 */
  position: relative;
}

.responsive-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  border: 0;
  width: 100%;
  height: 100%;
}

/* Position */
.relative { position: relative }
.absolute { position: absolute }
.sticky { position: sticky }
.fixed { position: fixed }

.bottom-0 { bottom: 0 }
.left-0 { left: 0 }
.right-0 { right: 0 }
.top-0 { top: 0 }

.license-section > hr:first-of-type {
    display: none;
}
/*
 * Screens > Layout
 */


#extranet-body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    transition: none !important;
}

.layout-base {
    width: 100%;
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin: 0 auto;
    max-width: 87.5rem;
    padding: 1.5rem 1rem 2.5rem;
}

.container {
  width: 100%;
  margin: 0 auto;
  max-width: 87.5rem;
  padding: 0 1rem;
}

.layout-content {
    max-width: 820px;
}

.body-export {
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    font-size: 12px !important;
}

.layout-export {
    width: 100%;
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin: 0 auto;
    max-width: 87.5rem;
    padding: 1.5rem 1rem 2.5rem;
}


/*
 * Breadcrumbs
 */

.breadcrumbs {
    margin: 0;
    padding: 0;
    display: none;
    align-items: center;
    gap: .5rem;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: 0;
}

.breadcrumbs li::before {
    content: none;
}

.breadcrumbs li:not(:last-of-type)::after {
    display: inline-block;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font: var(--fa-font-regular);
    content: "\f054";
    margin-right: .5rem;
    font-size: .875rem;
    color: var(--slate-300);
}

@media (min-width: 978px) {
    .breadcrumbs {
        display: flex;
    }
}



/*
 * Angled section
 */

.layout-angled-section {
    position: relative;
    padding-bottom: 12.5vw;
}

.layout-angled-section .inner {
    position: relative;
    z-index: 2;
}

.layout-angled-section .inner > .layout-base {
    transform: translateY(7.5vw);
}

.layout-angled-section .background-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.layout-angled-section .background {
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 6vw;
    height: 100%;
    transform: skewY(-6deg);
    overflow: hidden;
    background-color: var(--blue-200);
}

.layout-angled-section .background > .zoekvisualhome {
    position: absolute;
    top: 0;
    left: 0;
    bottom: -12.5vw;
    width: 100%;
    transform: skewY(6deg);
    background-size: cover;
}



/*
 * Panels
 */

.layout-panel {
    border-radius: .5rem;
    background: var(--white);
    padding: 1rem 1.125rem 1.125rem;
    box-shadow:
        0 .25rem .5rem 0 rgba(96, 97, 112, .15),
        0 0 .125rem 0 rgba(40, 41, 61, .05);
}

.layout-inner-panel {
  padding: 0 1.125rem;
}

.body-export .layout-panel {
    box-shadow: none;
    padding: 0;
    width: 100% !important;
}

.body-export .layout-panel .layout-panel {
    padding: 1rem 1.125rem 1.125rem;
    break-inside: avoid;
}

.layout-panel--ad {
    border: 3px solid var(--green-500);
    background: var(--green-50);
}

.layout-panel--blue {
  border-color: var(--blue-400) !important;
  background: var(--blue-50);
}

.layout-panel--login {
    background: linear-gradient(90deg, #168CE1, #1377BF);
}

.layout-panel--info {
    background: var(--slate-50);
    border-color: var(--blue-500) !important;
}

.layout-panel .layout-panel {
    box-shadow: none;
    border: 1px solid var(--slate-100);
}

.layout-panel .layout-panel.bg-blue-50 {
    border-color: var(--blue-100);
}

.layout-panel .layout-panel.layout-panel--ad {
    border-color: var(--green-300);
}

.layout-panel > .layout-panel + .layout-panel {
    margin-top: 1rem;
}

.panel-title {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.4;
    margin: 0 0 1.25rem;
}

.panel-title.font-semibold {
  font-weight: 600;
}

.panel-title.font-bold {
  font-weight: 700;
}

.panel-title.font-black {
  font-weight: 800;
}

.panel-title--large {
    font-size: 1.25rem;
    font-weight: 700;
    gap: 1rem;
}

.panel-title__container {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    align-items: center;
    margin-bottom: 1.25rem;
}

.panel-title__container .panel-title {
    margin: 0 auto 0 0;
}

.panel-header {
    margin: 0 -1.125rem 0;
    padding: .75rem 1.125rem;
    background: var(--slate-50);
}

.panel-footer {
    margin: 0 -1.125rem -1.125rem;
    padding: .75rem 1.125rem;
    border-radius: 0 0 .5rem .5rem;
    background: var(--slate-50);
    width: auto;
}

@media (min-width: 978px) {
    .layout-panel {
        padding: 2rem 2.5rem 2.5rem;
    }

    .layout-inner-panel {
      padding: 0 2.5rem;
    }

    .panel-title {
        font-size: 1.5rem;
        margin: 0 0 1.25rem;
    }

    .panel-title--large {
        font-size: 2.25rem;
        gap: 1.25rem;
    }

    .panel-title__container {
        flex-direction: row;
    }

    .panel-header {
        margin: 0 -2.5rem;
        padding: .75rem 2.5rem;
    }

    .panel-footer {
        margin: 0 -2.5rem -2.5rem;
        padding: .75rem 2.5rem;
    }
}



/*
 * Form elements
 */

.checkboxes-disabled {
    cursor: not-allowed;
    pointer-events: none;
}

.checkbox-list-wrapper,
.radio-list-wrapper,
.radio-list-wrapper > span {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.radio-list-wrapper--horizontal > span {
    flex-direction: row;
}

.checkbox-list-wrapper,
.radio-list-wrapper {
    margin-bottom: 2rem;
}

.form-control + .form-control {
    margin-top: 1rem;
}

.form-control > .label,
.form-control > label,
.form-control > .vraag > label {
    font-weight: 700;
    margin: 0 0 .5rem;
    display: block;
    cursor: pointer;
}

.checkbox-control,
.radio-control,
.radio-list-wrapper label {
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: .5rem;
    cursor: pointer;
}

.checkbox-control label,
.radio-control label {
    cursor: pointer;
}

.radio-list-wrapper label {
    display: inline-flex;
}

.form-control--white label {
    color: var(--white);
}

input[type="checkbox"],
input[type="radio"] {
    -webkit-appearance: none;
    appearance: none;
    background-color: var(--white);
    margin: 0;
    font: inherit;
    color: currentColor;
    width: 18px;
    height: 18px;
    border: 1px solid var(--slate-200);
    border-radius: .15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.checkboxes-disabled > input[type="checkbox"],
input[type="checkbox"]:disabled,
input[type="radio"]:disabled {
    background-color: var(--slate-50);
    border: .15rem solid var(--slate-100);
    cursor: not-allowed;
}

input[type="checkbox"]::before,
input[type="radio"]::before {
    content: "";
    width: 18px;
    height: 18px;
    border-radius: .15rem;
    display: none;
    position: absolute;
    top: -1px;
    left: -1px;
}

input[type="radio"],
input[type="radio"]::before {
    border-radius: 50%;
}

input[type="radio"]::before {
    width: 10px;
    height: 10px;
    top: 3px;
    left: 3px;
}

input[type="checkbox"]:checked::before,
input[type="radio"]:checked::before {
    display: flex;
    align-items: center;
    justify-content: center;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font: var(--fa-font-solid);
    content: "\f00c";
    font-size: .75rem;
    color: var(--white);
    background: linear-gradient(var(--blue-600), var(--blue-400));
}

input[type="radio"]:checked::before {
    content: "";
    background: linear-gradient(var(--blue-400), var(--blue-600));
}

.checkboxes-disabled > input[type="checkbox"]:checked::before {
    background: linear-gradient(var(--slate-500), var(--slate-300));
}

.checkbox-control .vraag > label {
    margin: 0;
}

.checkbox-control + .checkbox-control {
    margin-top: 1rem;
}

input[type="text"],
input[type="password"],
input[type="number"],
input[type="url"],
input[type="tel"],
input[type="email"],
input[type="date"],
input[type="datetime-local"],
input[type="search"],
input[type="time"],
input[type="week"],
textarea,
select {
    width: 100%;
    border: 1px solid var(--slate-200);
    border-radius: .5rem;
    padding: .75rem;
    background: var(--white);
    font-family: var(--body-font);
    color: var(--slate-600);
}

*:focus,
*:focus-visible {
    outline: none;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
input[type="date"]:focus,
input[type="datetime-local"]:focus,
input[type="search"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
textarea:focus,
select:focus {
    border-color: var(--blue-400);
}

.form-control--white input[type="text"],
.form-control--white input[type="password"],
.form-control--white input[type="number"],
.form-control--white input[type="url"],
.form-control--white input[type="tel"],
.form-control--white input[type="email"],
.form-control--white input[type="date"],
.form-control--white input[type="datetime-local"],
.form-control--white input[type="search"],
.form-control--white input[type="time"],
.form-control--white input[type="week"],
.form-control--white textarea,
.form-control--white select {
    background: rgba(255, 255, 255, .15);
    color: var(--white);
    border-color: transparent;
}

.form-control--white input[type="text"]:focus,
.form-control--white input[type="password"]:focus,
.form-control--white input[type="number"]:focus,
.form-control--white input[type="url"]:focus,
.form-control--white input[type="tel"]:focus,
.form-control--white input[type="email"]:focus,
.form-control--white input[type="date"]:focus,
.form-control--white input[type="datetime-local"]:focus,
.form-control--white input[type="search"]:focus,
.form-control--white input[type="time"]:focus,
.form-control--white input[type="week"]:focus,
.form-control--white textarea:focus,
.form-control--white select:focus {
    background: rgba(255, 255, 255, .15);
    color: var(--white);
    border-color: var(--white);
}

.form-control--white div ul li,
.form-control--white div ul li::before {
    color: var(--white);
    border-color: var(--white);
}

input[type="text"].input-validation-error,
input[type="password"].input-validation-error,
input[type="number"].input-validation-error,
input[type="url"].input-validation-error,
input[type="tel"].input-validation-error,
input[type="email"].input-validation-error,
input[type="date"].input-validation-error,
input[type="datetime-local"].input-validation-error,
input[type="search"].input-validation-error,
input[type="time"].input-validation-error,
input[type="week"].input-validation-error,
textarea.input-validation-error,
select.input-validation-error {
    border-color: var(--red-400);
}

.form-control--white input[type="text"].input-validation-error,
.form-control--white input[type="password"].input-validation-error,
.form-control--white input[type="number"].input-validation-error,
.form-control--white input[type="url"].input-validation-error,
.form-control--white input[type="tel"].input-validation-error,
.form-control--white input[type="email"].input-validation-error,
.form-control--white input[type="date"].input-validation-error,
.form-control--white input[type="datetime-local"].input-validation-error,
.form-control--white input[type="search"].input-validation-error,
.form-control--white input[type="time"].input-validation-error,
.form-control--white input[type="week"].input-validation-error,
.form-control--white textarea.input-validation-error,
.form-control--white select.input-validation-error {
    border-color: var(--red-600);
    border-width: 2px;
}

textarea {
    min-height: 9.5rem;
}

textarea.large {
    min-height: 18rem;
}

.field-validation-error,
.validation-summary-errors li {
    color: var(--red-400);
}

.form-control--white .field-validation-error,
.form-control--white .validation-summary-errors li {
    color: var(--red-600);
}

.signup-validation-summary .validation-summary-errors,
.layout-panel--login .form-control--white .validation-summary-errors {
  background: var(--red-400);
  border-radius: .25rem;
}

.signup-validation-summary .validation-summary-errors li,
.layout-panel--login .form-control--white .validation-summary-errors li {
  color: var(--white);
  padding-left: 0;
}

.signup-validation-summary .validation-summary-errors li::before,
.layout-panel--login .form-control--white .validation-summary-errors li::before {
  content: none;
}

.hidden-validation {
    display: none;
}



/*
 * Images
 */

.img-fluid {
    width: auto;
    max-width: 100%;
    height: auto;
}

img.is-styled {
    border-radius: .25rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .25);
}



/*
 * @todo cleanup
 */

.tabs {
    display: flex;
    border-bottom: 2px solid var(--slate-100);
    margin-bottom: 2rem;
}

.tab {
    margin-bottom: -2px;
    background-color: var(--white);
    padding: .75rem 1.25rem;
    border-style: solid;
    border-width: 2px 2px 0 2px;
    border-color: var(--slate-100);
    border-radius: .25rem .25rem 0 0;
    color: var(--blue-400);
    margin-left: .25rem;
    font-weight: 700;
}

.tab:hover {
    color: var(--blue-600);
}

.tab--active,
.tab--active:hover {
    color: var(--black);
}



/*
 * @todo cleanup
 */

.facebooklink.mb05,
.twitterlink.mb05,
.linkedinlink.mb05,
.instagramlink.mb05,
.youtubelink.mb05 {
    background: none;
    padding-left: 0;
    height: auto;
    margin-bottom: 0;
}

.facebooklink.mb05::before,
.twitterlink.mb05::before,
.linkedinlink.mb05::before,
.instagramlink.mb05::before,
.youtubelink.mb05::before {
    display: inline-flex;
    height: 2rem;
    width: 2rem;
    align-items: center;
    justify-content: center;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font: var(--fa-font-brands);
    margin-right: .5rem;
    background: var(--blue-500);
    color: var(--white);
    border-radius: 50%;
}


.facebooklink.mb05::before {
    content: "\f39e";
}

.twitterlink.mb05::before {
    content: "\e61b";
}

.linkedinlink.mb05::before {
    content: "\f0e1";
}

.instagramlink.mb05::before {
    content: "\f16d";
}

.youtubelink.mb05::before {
    content: "\f167";
}

/* Quickfix upload image component */
.image-uploader h2 {
    color: var(--blue-400);
    font-weight: 700;
}

.image-uploader img#preview {
    border-radius: .25rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .25);
}

.image-uploader .base-button.button-solid-blue {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 1.25rem;
    border-radius: .5rem;
    background-color: var(--slate-100);
    color: var(--black);
    border: 0;
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--body-font);
    cursor: pointer;
    box-shadow: none;
    opacity: 1;
}

.image-uploader .base-button.button-solid-blue:hover {
    background-color: var(--slate-200);
    color: var(--black);
    box-shadow: none;
    opacity: 1;
}

.custom-icon svg {
    display: inline-block;
    max-height: 64px;
}

/* Table scroll on mobile */
.table-scroll-container {
    overflow-x: auto;
}

.partner-logo,
.partner-logo-wrapper img {
    border-radius: 1.25rem;
    background: var(--white);
    box-shadow: 0 .25rem 1rem 0 rgba(0, 0, 0, .15);
    border: 13px solid var(--white);
    outline: 2px solid var(--white);
    outline-offset: -15px;
}

.partner-logo--clean {
    box-shadow: 0 .125rem .5rem 0 rgba(0, 0, 0, .15);
}

.company-logo,
.company-logo-wrapper img {
    border-radius: 1.25rem;
    background: var(--white);
    box-shadow: 0 .25rem 1rem 0 rgba(0, 0, 0, .15);
}




/* Draggable boxes */
.draggable-list {
    display: flex;
    flex-direction: column;
    gap: .875rem;
}

.draggable-box {
    border-radius: .5rem;
    border: 2px solid var(--blue-100);
}

.draggable-box:hover {
    background: var(--blue-50);
}


/* Inner panel */
.inner-panel {
    border: 2px solid var(--slate-50);
    padding: 2rem;
    height: 100%;
}


/* Blog elements */
.blog-image-selector > label {
    position: relative;
    height: 160px;
    width: 280px;
    margin-bottom: 1rem;
}

.blog-image-selector > label + label {
    margin-left: 1rem;
}

.blog-image-selector > label > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: .25rem;
}

.blog-image-selector > label > input:checked + img {
    border-color: var(--blue-400);
    border-width: 2px;
}

/* Rapport header */
.rapport-header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-bottom: 2rem;
}

@media (min-width: 978px) {
    .rapport-header {
        flex-direction: row;
        justify-content: space-between;
    }
}

.asset-img {
    background: var(--white);
    box-shadow: 0 .125rem .5rem 0 rgba(0, 0, 0, .15);
}

.asset-img.has-padding {
    padding: 1rem;
}


/* Image upload CSS hacks until I can access Shared Code */
.image-upload-wrapper form > h2 {
    font-weight: 700;
    margin-bottom: .5rem;
}

.image-upload-wrapper img#preview {
    border-radius: 1.25rem;
    background: var(--white);
    box-shadow: 0 .125rem .5rem 0 rgba(0, 0, 0, .15);
}

.image-upload-wrapper .base-button.button-solid-blue {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 1.25rem;
    border-radius: .5rem;
    background-color: var(--slate-100);
    color: var(--black);
    border: 0;
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--body-font);
    cursor: pointer;
    box-shadow: none;
}

.image-upload-wrapper .base-button.button-solid-blue:hover {
    background-color: var(--slate-200);
    color: var(--black);
}



/* Letter navigation buttons */
.letter-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .75rem .5rem;
    border: 1px solid var(--slate-200);
    color: var(--black) !important;
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--body-font);
    cursor: pointer;
    width: auto;
    flex-grow: 1;
}

.letter-button:not(.is-active):not(:last-child) {
    border-right: 0;
}

.letter-button:hover {
    background-color: var(--slate-50);
}

.letter-button.is-active {
    border-color: var(--blue-700);
    background-color: var(--blue-500);
    color: var(--white) !important;
}

.letter-button.is-active + .letter-button {
    border-left: 0;
}

.letter-button.is-active:hover {
    background-color: var(--blue-600);
    color: var(--white) !important;
}

.letter-button:first-child {
    border-radius: .25rem 0 0 .25rem;
}

.letter-button:last-child {
    border-radius: 0 .25rem .25rem 0;
}


/* Star rating form field */
.rating {
    margin-top: .5rem;
    display: flex;
    justify-content: flex-end;
    flex-direction: row-reverse;
    gap: .75rem;
}

.rating input {
    display: none;
}

.rating > input + label {
    color: var(--slate-200);
}

.rating > input:checked ~ label {
    color: var(--yellow-400);
}

.rating > input:checked ~ label i::before {
    font-weight: 900;
}

.rating:not(:checked) > label:hover,
.rating:not(:checked) > label:hover ~ label {
    color: var(--yellow-400);
}

.rating:not(:checked) > label:hover i::before,
.rating:not(:checked) > label:hover ~ label i::before {
    font-weight: 900;
}

.rating > input:checked + label:hover,
.rating > input:checked + label:hover ~ label,
.rating > input:checked ~ label:hover,
.rating > input:checked ~ label:hover ~ label,
.rating > label:hover ~ input:checked ~ label {
    color: var(--yellow-400);
}

.rating > input:checked + label:hover i::before,
.rating > input:checked + label:hover ~ label i::before,
.rating > input:checked ~ label:hover i::before,
.rating > input:checked ~ label:hover ~ label i::before,
.rating > label:hover ~ input:checked ~ label i::before {
    font-weight: 900;
}

.rating > label i {
    font-style: normal;
    font-size: 2rem;
}

.rating > label i::before {
    font-family: 'Font Awesome 6 Pro';
    font-weight: 300;
}


/* jQuery UI Datepicker styles */
#ui-datepicker-div {
    font-family: theme(--body-font);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 5px 10px;
    padding: 0.5rem;
    border-radius: 0.5rem;
}

#ui-datepicker-div .ui-datepicker-title {
    color: var(--blue-800);
}

#ui-datepicker-div.ui-datepicker .ui-datepicker-prev span,
#ui-datepicker-div.ui-datepicker .ui-datepicker-next span {
    background: transparent;
    color: var(--blue-700);
    text-indent: 0;
}

#ui-datepicker-div .ui-state-hover,
#ui-datepicker-div .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover,
#ui-datepicker-div .ui-state-focus,
#ui-datepicker-div .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus {
    border: 0;
    color: var(--white);
    background: var(--blue-500);
}

#ui-datepicker-div.ui-datepicker .ui-datepicker-prev span::before,
#ui-datepicker-div.ui-datepicker .ui-datepicker-next span::before {
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
    display: block;
    height: 1rem;
    width: 1rem;
    font-size: 14px;
    line-height: 1rem;
}

#ui-datepicker-div.ui-datepicker .ui-datepicker-prev span::before {
    content: '\f060';
}

#ui-datepicker-div.ui-datepicker .ui-datepicker-next span::before {
    content: '\f061';
}

#ui-datepicker-div .ui-state-default {
    border: 0;
    background: var(--slate-100);
    color: var(--blue-600);
    border-radius: 4px;
}

#ui-datepicker-div .ui-state-hover {
    background: var(--blue-200);
    color: var(--blue-600);
}

#ui-datepicker-div .ui-state-active {
    background: var(--blue-500);
    color: var(--white);
}

#ui-datepicker-div.ui-datepicker td {
    padding: 2px;
}

#ui-datepicker-div.ui-datepicker td span,
#ui-datepicker-div.ui-datepicker td a {
    text-align: center;
}



/*
 * Nieuws
 */

.news-posts {
    display: flex;
    flex-flow: row wrap;
    margin: 0 -10px;
}

.news-posts__item {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, .05);
    border: 1px solid var(--slate-100);
    flex: 1 0 calc(100% - 20px);
    max-width: calc(100% - 20px);
    margin: 0 10px 20px;
    padding: 2rem;
    border-radius: .5rem;
}

@media (min-width: 978px) {
    .news-posts__item {
        flex: 1 0 calc(33.3333% - 20px);
        max-width: calc(33.3333% - 20px);
    }
}

.article-wrapper {
    font-size: 115%;
    line-height: 1.75;
}

.article-wrapper span {
    font-size: 100% !important;
}

.article-wrapper h1,
.article-wrapper h2 {
    font-weight: bold;
    font-size: 30px;
    margin-bottom: 0.25rem;
}

.article-wrapper h3,
.article-wrapper h4 {
    font-weight: bold;
    font-size: 26px;
    margin-bottom: 0.25rem;
}

.article-wrapper h5,
.article-wrapper h6 {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 0.25rem;
}

.article-wrapper ul,
.article-wrapper ol {
    padding-left: 1rem;
}

.article-wrapper ol {
    counter-reset: ak-counter;
}

.article-wrapper ol li {
    counter-increment: ak-counter;
    padding-left: 0;
}

.article-wrapper ol li::before {
    height: unset;
    width: unset;
    transform: unset;
    border: unset;
    content: counter(ak-counter) ". ";
    color: var(--blue-600);
    font-weight: bold;
    top: unset;
    left: unset;
    position: static;
    padding-right: .25rem;
}


/*
 * Parner Logo Box
 */


.partner-logo-box {
    flex: 1 0 auto;
    aspect-ratio: 1;
    position: relative;
    display: grid;
    justify-items: center;
    align-items: center;
    border-radius: 1.25rem;
    background: var(--white);
    border: 1px solid var(--slate-100);
    box-shadow: 0 .25rem 1rem 0 rgba(0, 0, 0, .05);
    overflow: hidden;
}

a.partner-logo-box:hover {
    border-color: var(--slate-200);
    box-shadow: 0 .25rem 1rem 0 rgba(0, 0, 0, .15);
}

.partner-logo-box__image {
    position: absolute;
    top: 10%;
    left: 10%;
    height: 80%;
    width: 80%;
    object-fit: contain;
    outline: 2px solid white;
    outline-offset: -2px;
}


/*
 * Signup Backgrounds
 */

.banner-segment {
  position: relative;
  padding: 20vh 0 12vh;
}

.banner-segment.banner-segment--short {
  padding-bottom: 180px !important;
}

.banner-segment.page-content {
  padding: 12.5vh 0 !important;
}

@media (min-width: 978px) {
  .banner-segment {
    padding: 10vh 0 20vh;
  }
}

.banner-segment + .layout-base {
  position: relative;
  z-index: 20;
  margin-top: -12.5vh;
}

.layout-base + .banner-segment {
  margin-top: -7.5vh;
}

.banner-segment::after {
  transform: skewY(-2deg) translateY(50%);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10vh;
  content: '';
  display: block;
  background: var(--slate-50);
  z-index: 10;
}

.banner-segment__background-wrapper {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.banner-segment__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.banner-segment__background::before {
  display: block;
  position: absolute;
  top: 0;
  left: -5%;
  width: 110%;
  height: 100%;
  content: '';
  background: linear-gradient(108deg, rgba(16, 129, 211, 0.35) 16%, rgba(16, 129, 211, 0.60) 52%);
  z-index: 20;
}

.main-banner::after {
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 75%;
  z-index: 19;
  content: '';
  background: linear-gradient(180deg, rgba(17, 15, 18, 0.00) 0%, #110F12 15%, #110F12 96.5%);
}

.banner-segment--short .main-banner::after {
  content: none;
}

.main-banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40%;
  object-fit: cover;
  z-index: 10;
  pointer-events: none;
}

.banner-segment--short .main-banner-image {
  height: 100%;
}

.page-banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 10;
  pointer-events: none;
}

.main-banner-line-art {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  pointer-events: none;
}

.main-banner-line-art img {
  position: absolute;
  top: -12%;
  left: -25%;
  z-index: 11;
  height: 60%;
  width: 120%;
  opacity: 0.5;
}

.banner-segment--short .main-banner-line-art img {
  left: unset;
  right: -25%;
}

@media (min-width: 978px) {
  .main-banner::after {
    bottom: 0;
    right: -2%;
    width: 47%;
    height: 100%;
    background: linear-gradient(90deg, rgba(17, 15, 18, 0.00) 0%, #110F12 15%, #110F12 96.5%);
    transform: skewX(2deg);
  }

  .main-banner.main-banner--login::after {
    bottom: 0;
    right: -7.5%;
    width: 120%;
    height: 100%;
    background: linear-gradient(180deg, rgba(17, 15, 18, 0), rgba(17, 15, 18, 0.85));
    transform: skewX(-7.5deg);
  }

  .company-banner-shadow {
    background: linear-gradient(rgba(17, 15, 18, 0.00) 0%, #110F12 85%);
    z-index: 19;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 60%;
  }

  .main-banner-image {
    width: 70%;
    height: 100%;
  }

  .banner-segment--short .main-banner-image,
  .main-banner-image--login {
    width: 100%;
    height: 100%;
  }

  .main-banner-line-art img {
    top: -15%;
    left: -50%;
    height: 130%;
    width: auto;
  }

  .banner-segment--short .main-banner-line-art img {
    left: unset;
    right: -20%;
  }
}

.secondary-banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 10;
}

.banner-segment__content-wrapper {
  z-index: 2;
  position: relative;
  min-height: 20vh;
  display: flex;
  align-items: center;
}

.banner-segment--short .banner-segment__content-wrapper {
  min-height: 20vh;
}

.main-banner-content {
  margin-top: 6vh;
}

.banner-segment__content-wrapper.page-content {
  min-height: 40px !important;
  align-items: flex-end;
}

@media (min-width: 978px) {
  .banner-segment__content-wrapper {
    min-height: 40vh;
  }

  .banner-segment--short .banner-segment__content-wrapper {
    min-height: 24vh;
  }

  #inloggen.banner-segment .banner-segment__content-wrapper {
    min-height: 25vh;
  }

  .main-banner-heading {
    margin-top: 12vh;
  }

  .main-banner-content {
    margin-top: 0;
  }
}


/*
 * Signup Form
 */

.signup-form__container,
.login-form__container {
  background: var(--white);
  padding: 0;
  border-radius: 1.25rem;
  margin: 1rem 0 2rem;
  overflow: hidden;
}

.login-form__container input:-webkit-autofill,
.login-form__container input:-webkit-autofill:hover,
.login-form__container input:-webkit-autofill:focus,
.login-form__container input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}

.signup-form label,
.login-form label {
  padding: .75rem 1.5rem 0;
  color: var(--blue-500);
}

.signup-form label:has(+ .input-validation-error),
.login-form label:has(+ .input-validation-error) {
  color: var(--red-500);
}

.signup-form label:has(+ .valid) {
  color: var(--green-500);
}

.registration-form label:has(+ .valid)::after,
.registration-form label:has(+ .input-validation-error)::after,
.signup-form label:has(+ .valid)::after,
.signup-form label:has(+ .input-validation-error)::after,
.login-form label:has(+ .input-validation-error)::after {
  font-family: 'Font Awesome 6 Pro';
  font-weight: 900;
  position: absolute;
  bottom: 1rem;
  right: 1.5rem;
  font-size: 1.2rem;
  pointer-events: none;
}

.registration-form label:has(+ .valid)::after,
.registration-form label:has(+ .input-validation-error)::after,
.login-form label:has(+ .input-validation-error)::after {
  bottom: auto;
  top: 2.55rem;
  right: 1rem;
}

.registration-form label:has(+ .valid)::after,
.signup-form label:has(+ .valid)::after {
  content: '\f058';
  color: var(--green-500);
}

.registration-form label:has(+ .input-validation-error)::after,
.signup-form label:has(+ .input-validation-error)::after,
.login-form label:has(+ .input-validation-error)::after {
  content: '\f057';
  color: var(--red-500);
}

.signup-form input,
.login-form input {
  background: none;
  border: 0;
  border-radius: 0;
  padding: .25rem 1.5rem 1.25rem;
  margin: 0;
}

.registration-form .form-control,
.signup-form__container .form-control,
.login-form__container .form-control {
  position: relative;
  margin: 0;
}

.signup-form__container .form-control .field-validation-error,
.login-form__container .form-control .field-validation-error {
  position: absolute;
  top: .75rem;
  right: 1.5rem;
  color: var(--slate-300);
}

.signup-form__container .form-control:not(:last-child) input,
.login-form__container .form-control:not(:last-child) input {
  border-bottom: 1px solid var(--slate-100);
}

.signup-tile {
  min-height: 260px;
}


/*
 * Register account Form
 */

#criteria-list li::before {
  content: none;
}

#criteria-list li::marker {
  border: 0;
  left: unset;
  top: unset;
  position: relative;
  transform: none;
  content: '\f068';
  font-family: 'Font Awesome 6 Pro';
  font-weight: 400;
  color: var(--slate-300);
}

#criteria-list li.check-invalid::marker {
  content: '\f00d';
  color: var(--red-500);
}

#criteria-list li.check-valid::marker {
  content: '\f00c';
  color: var(--green-500);
}

.registration-form .form-control:not(:last-child) {
  margin-bottom: .75rem;
}

.sidebar-card {
  padding: 2rem 1.5rem;
  border-radius: 1.125rem;
}

.sidebar-card .form-control {
  position: relative;
}

.subtle-edit:not(:focus) {
  border: 0;
  padding: 0;
  background: none;
}

.sidebar-card label:has(+ .subtle-edit)::after {
  font-family: 'Font Awesome 6 Pro';
  font-weight: 300;
  position: absolute;
  top: 2rem;
  right: 1.5rem;
  font-size: .85rem;
  content: '\f044';
  color: var(--blue-500);
  pointer-events: none;
}

.sidebar-card label:has(+ .subtle-edit:focus)::after {
  top: 2.5rem;
}

.reviewportal-url {
    word-break: break-all;
}

.woonscan-content {
  max-height: 1400px;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.woonscan-content.collapsed {
  max-height: 0;
}

/*
 * Login Page
 */

.login__page-body {
  flex: 1;
}

.login__page-body,
.login__page-body .banner-segment::after {
  background: var(--blue-900);
}

.stats-icon {
  width: 4rem;
  height: 4rem;
  object-fit: contain;
}

.stats-text {
  max-width: 10rem;
}

/*
 * Waarom Advieskeuze
 */

.layout-panel__tab-bar {
  position: absolute;
  top: -50px;
  left: 30px;
}

.tab-bar {
  display: flex;
}

.tab-bar__tab {
  min-height: 50px;
  color: var(--slate-500);
  font-family: var(--display-font);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  position: relative;
  display: inline-flex;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 10px 10px 0 0;
  background: #F5F5F4;
  border: none;
}

.tab-bar__tab[aria-expanded="true"] {
  background: #fff;
  color: var(--blue-500);
  z-index: 3 !important;
}

.tab-bar__tab:nth-child(1) {
  z-index: 2;
}
.tab-bar__tab:nth-child(2) {
  z-index: 1;
  margin-left: -4px;
}

.tab-bar__tab:nth-child(1)[aria-expanded="false"] {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 77.55%, rgba(0, 0, 0, 0.10) 100%), linear-gradient(-90deg, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.00) 9.23%), #F5F5F4;
}
.tab-bar__tab:nth-child(2)[aria-expanded="false"] {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 77.55%, rgba(0, 0, 0, 0.10) 100%), linear-gradient(90deg, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.00) 9.23%), #F5F5F4;
}

.tab-bar__tab:hover {
  cursor: pointer;
  color: var(--blue-500);
}

.tab-contents {
  padding: 1rem;
}

.tab-content[aria-hidden="true"] {
  display: none;
}

/* AFM Tool Tables */

table.table--afm {
  border: 1px solid var(--slate-100);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

table.table--afm thead th,
table.table--afm thead td {
  background: var(--blue-400);
  color: var(--white);
  border-top: 1px solid var(--blue-500);
  border-bottom: 1px solid var(--blue-500);
  border-right: 1px solid var(--blue-500);
}

table.table--afm thead th:first-child,
table.table--afm thead td:first-child {
  border-left: 1px solid var(--blue-500);
}

table.table--afm tbody tr td {
  border-bottom: 1px solid var(--slate-100);
}

table.table--afm tbody tr:nth-child(even) td {
  background: #F4F7FA;
}

table.table--afm tbody tr td:not(:last-child) {
  border-right: 1px solid var(--slate-100);
}


/*
 * Stats card
 */

.stat-card {
  border: 1px solid var(--slate-100);
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 1px 4px rgb(0 0 0 / .08);
  background: var(--white);
}

.stat-card.stat-card--total {
  border: 1px solid var(--green-500);
  background: var(--green-50);
}

.stat-color--blue {
  color: #3b82f6;
}
.stat-color--purple {
  color: #a855f7;
}
.stat-color--green {
  color: #22c55e;
}
.stat-color--orange {
  color: #f97316;
}

.stat-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
}

.stat-card__title {
  font-size: 16px;
  font-family: var(--font-body);
  color: var(--slate-700);
}

.stat-card__data {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-card__stat {
  font-size: 32px;
  font-weight: bold;
  color: var(--black);
}

.stat-card__description {
  font-size: 14px;
  color: var(--slate-400);
}

.stat-card-table td {
  padding: 0 10px 10px 0;
}
/*
 * Screens > Location (Mijn Kantoor)
 */


/*
 * Profiel (Locaties > Home > Profiel)
 */

table.detailsGrid {
    margin-bottom: 1.5rem;
    width: 100%;
    border: 1px solid var(--slate-100);
}

table.detailsGrid tr:not(:last-child) {
    border-bottom: 1px solid var(--slate-100);
}

table.detailsGrid td {
    padding: .75rem;
}

table.detailsGrid .labelCell {
    font-weight: 700;
}

table.detailsGrid .valueCell {
    padding-left: 2rem;
    border-left: 1px solid var(--slate-100);
}

table.detailsGrid .valueCell > *:first-child {
    margin-top: 0 !important;
}

table.detailsGrid .valueCell > *:last-child {
    margin-bottom: 0 !important;
}


table.openingtimes {
    margin-bottom: 1.5rem;
    width: 100%;
}

table.openingtimes th,
table.openingtimes td {
    padding: .75rem;
}

table.openingtimes tr th:first-child,
table.openingtimes tr td:first-child {
    padding-left: 0;
    font-weight: 700;
}


/*
 * Openingstijden aanpassen
 */

table.openingtimes-edit {
    width: 100%;
}

table.openingtimes-edit thead th {
    padding: .75rem;
}

table.openingtimes-edit tbody td {
    border: 1px solid var(--slate-200);
}

table.openingtimes-edit input[type="text"],
table.openingtimes-edit select,
#newRow input[type="text"],
#newRow select {
    width: 100%;
    border-radius: 0;
    border: 0;
    height: 3.125rem;
    margin: 0;
}

table.openingtimes-edit input[type="text"]:focus,
table.openingtimes-edit select:focus,
#newRow input[type="text"]:focus,
#newRow select:focus {
    box-shadow:
        inset 1px 1px 0 var(--blue-400),
        inset -1px -1px 0 var(--blue-400);
}

table.openingtimes-edit .checkbox-control,
#newRow .checkbox-control {
    padding: 0 1rem;
    height: 3.125rem;
}

table.openingtimes-edit .button {
    height: 3.125rem;
}

table.openingtimes-edit .button,
table.openingtimes-edit .button:hover {
    border: 0;
    border-radius: 0;
}

#newRow .flex > .w-full {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}



/*
 * Bel me terug verzoeken check list
 */

.checklist {
    padding-left: 1.5rem;
}

.checklist li::before {
    content: none;
}



/*
 * Bel me terug tabel
 */

table.nice th,
table.nice td {
    padding: .75rem .75rem;
}

table.nice tr {
    border-bottom: 1px solid var(--slate-200);
}

table.nice.nice--light-border tr {
    border-color: var(--slate-100) !important;
}

table.nice tbody tr:last-of-type {
    border: 0;
}

table.nice a {
    color: var(--blue-400);
}

table.nice a:hover {
    color: var(--blue-600);
}

table.nice a.text-red {
    color: var(--red-400);
}

table.nice a.text-red:hover {
    color: var(--red-600);
}

table.nice a.text-green {
    color: var(--green-400);
}

table.nice a.text-green:hover {
    color: var(--green-600);
}

table.nice.nice--blue-borders tr {
    border-bottom: 1px solid var(--blue-200);
}

table.nice.nice--blue-borders tr td:first-child {
    padding-left: 0;
}

/*
* For rates table
*/

.rates-table {
    font-size: 16px;
    font-weight: bold;
}

.rates-table td {
    border: 1px solid var(--slate-200);
    color: var(--blue-500);
    font-weight: bolder;
}

.rates-table thead th {
    border: 1px solid var(--slate-200);
    border-bottom: 0;
}

rates-table thead th:first-child {
    border-top-left-radius: 5px;
}

.rates-table tbody tr {
    background-color: var(--blue-50);
}

.rates-table tbody tr.gridrow_alternate {
    background-color: var(--white);
}

.rates-table, .rates-table th {
    text-align: center;
}

.rates-table tr td:first-child{
    text-align: left;
    border-right: none;
    color: var(--black);
}

.mood-container {
    width: 1.15rem;
    display: flex;
    justify-content: center;
}

.mood1,
.mood2,
.mood3,
.mood4,
.mood5 {
    background: transparent;
    height: unset;
    width: unset;
}

.mood1::before,
.mood2::before,
.mood3::before,
.mood4::before,
.mood5::before {
    font-weight: 900;
    font-family: 'Font Awesome 6 Pro';
    font-size: 1.5rem;

}

.mood1::before {
    content: '\f119';
    color: #ff3722;
}

.mood2::before {
    content: '\e36d';
    color: #ff8622;
}

.mood3::before {
    content: '\f11a';
    color: #ffce00;
}

.mood4::before {
    content: '\f118';
    color: #73cf11;
}

.mood5::before {
    content: '\f580';
    color: #00b67a;
}



/*
 * Zoekresultaten
 */

.scopes-table thead {
    display: none;
}

.scopes-table h2 {
    margin-bottom: 1.25rem;
}

.scopes-table td:first-child {
    padding-left: 0;
}

.scopes-table td:last-child {
    padding-right: 0;
    text-align: right;
}

@media (min-width: 978px) {
    .scopes-table {
        padding-right: 1rem;
    }
}

.icon_red,
.icon_green {
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon_red::before,
.icon_green::before {
    display: inline-block;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font: var(--fa-font-solid);
    content: "\f111";
    font-size: 1rem;
}

.icon_green::before {
    color: var(--green-400);
}

.icon_red::before {
    color: var(--red-500);
}



/*
 * Zoekresultaten details
 */

table.stats-table {
    width: 100%;

}

table.stats-table + table.stats-table {
    margin-top: 2rem;
}

/* table.stats-table tr:not(:last-of-type) {
    border-bottom: 1px solid var(--slate-200);
} */

table.stats-table th,
table.stats-table td {
    padding: .5rem .75rem;
}

table.stats-table th:first-child,
table.stats-table td:first-child {
    padding-left: 0;
}

table.stats-table th:last-child,
table.stats-table td:last-child {
    padding-right: 0;
    text-align: right;
}



/*
 * Foto's, logo & video
 */

.office-images,
.office-banner {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.office-image {
    border: 2px solid var(--slate-200);
    border-radius: .5rem;
    position: absolute;
    height: 6rem;
    width: 6rem;
    top: 0;
    left: 0;
    object-fit: cover;
}

.office-image.office-image--logo {
    object-fit: contain;
}

.office-image.office-image--profile {
  border-color: var(--blue-400);
}

.office-image.office-image--banner {
  width: 24rem;
  max-width: none !important;
}

.office-image__container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.office-image__container > div {
    position: relative;
    height: 6rem;
    width: 6rem;
    border-radius: .5rem;
}

.office-image__container > span {
    display: inline-block;
    background: var(--blue-400);
    color: var(--white);
    padding: .25rem .5rem;
    border-radius: 0 0 .25rem .25rem;
}

.office-banner__container {
  width: 100%;
}

.office-banner__container > div {
  position: relative;
  height: 6rem;
  width: 12rem;
  border-radius: .5rem;
}

.fotos-draglist .office-image,
.fotos-draglist .office-image__container > div {
    height: 4rem;
    width: 4rem;
}

@media (min-width: 978px) {
    .office-image,
    .office-image__container > div {
        height: 10rem;
        width: 10rem;
    }

    .office-banner__container > div,
    .office-image.office-image--banner {
        height: 15rem;
        width: 40rem;
    }

    .fotos-draglist .office-image,
    .fotos-draglist .office-image__container > div {
        height: 6rem;
        width: 6rem;
    }
}

.fotos-draglist {
    display: flex;
    flex-direction: column;
    gap: .875rem;
}

.draggable-list > div > div {
  padding: 1rem;
  border-radius: .5rem;
}

.draggable-handle > div {
  cursor: move;
}

.is-profile-picture {
    border: 2px solid var(--blue-400);
}

.is-picture {
    border: 1px solid var(--slate-200);
}

.ui-sortable-helper .is-profile-picture,
.ui-sortable-helper .is-picture {
    background: var(--white);
    border: 4px solid var(--yellow-400);
    opacity: .6;
}

.fotos-upload-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    border: 2px dashed var(--slate-200);
    color: var(--blue-400);
    font-size: 1.125rem;
    padding: 1rem;
    border-radius: .5rem;
    margin-top: 0.875rem;
}

.fotos-upload-button:hover {
    background: var(--blue-50);
    border-color: var(--blue-500);
}

.ui-sortable-placeholder.ui-state-highlight {
    height: 2rem;
    border-radius: .5rem;
    background: var(--blue-100);
    border: 1px dotted var(--blue-500);
}

.delete-orb {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem;
    width: 2.5rem;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--slate-200);
    color: var(--red-400);
}

.delete-orb:hover {
    background: var(--red-500);
    border-color: var(--red-500);
    color: var(--white);
}

.current-profile-picture {
    background: var(--blue-400);
    color: var(--white);
    padding: .5rem .875rem;
    border-radius: .25rem;
}



/*
 * Social Media
 */

.social-panel {
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--slate-100);
    border-radius: .125rem;
}

.social-panel h2 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.social-panel .twitterlink,
.social-panel .facebooklink,
.social-panel .linkedinlink {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--blue-400);
    color: var(--white);
    height: 2.25rem;
    width: 2.25rem;
    border-radius: 50%;
    margin: 0 .25rem;
    padding: 0;
}

.social-panel .twitterlink:hover,
.social-panel .facebooklink:hover,
.social-panel .linkedinlink:hover {
    background: var(--blue-600);
    color: var(--white);
}

.social-panel .twitterlink::before,
.social-panel .facebooklink::before,
.social-panel .linkedinlink::before {
    display: inline-block;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font: var(--fa-font-brands);
    font-size: 1rem;
    color: inherit;
}

.social-panel .twitterlink::before {
    content: "\e61b";
}

.social-panel .facebooklink::before {
    content: "\f39e";
}

.social-panel .linkedinlink::before {
    content: "\f0e1";
}

@media (min-width: 978px) {
    .social-panel .twitterlink,
    .social-panel .facebooklink,
    .social-panel .linkedinlink {
        height: 4rem;
        width: 4rem;
    }

    .social-panel .twitterlink::before,
    .social-panel .facebooklink::before,
    .social-panel .linkedinlink::before {
        font-size: 2rem;
    }

    .social-panel h2 {
        font-size: 1.5rem;
    }
}



/*
 * Badges
 */

.badge {
    display: flex;
    width: calc(50% - 1.125rem);
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: .5rem;
    padding: 1.25rem 1rem;
    border-radius: .5rem;
}

a.badge:hover {
    background: var(--slate-50);
}

a.badge.badge--collected:hover {
    background: var(--blue-50);
}

.badge--large {
    width: 100%;
}

.badge__image {
    height: 4.5rem;
    width: 4.5rem;
    display: grid;
    place-items: center;
    opacity: .4;
    filter: grayscale(1);
    margin-bottom: .5rem;
}

.badge--collected .badge__image {
    opacity: 1;
    filter: none;
}

.badge__title {
    font-weight: 900;
    font-size: 1.1125rem;
    font-family: var(--display-font);
    color: var(--slate-200);
}

.badge__title i {
    display: none;
    margin-right: .25rem;
}

.badge--collected .badge__title {
    color: var(--blue-400);
}

.badge--collected .badge__title i {
    display: inline-block;
}

.badge__description {
    font-size: .875rem;
    color: var(--slate-300);
}

.badge--collected .badge__description {
    color: var(--slate-500);
}


@media (min-width: 978px) {
    .badge {
        width: calc(25% - 1.125rem);
    }

    .badge--large {
        width: 100%;
    }

    .badge__image {
        height: 8rem;
        width: 8rem;
    }

    .badge__title {
        font-size: 1.25rem;
    }

    .badge__description {
        font-size: 1rem;
    }
}



/*
 * Medewerkers
 */

.button-moodfeedback {
    width: 2rem;
    height: 3.25rem;
    display: inline-block;
    overflow: hidden;
    position: relative;
    border-radius: .25rem;
    box-shadow: 0 2px 2px rgba(0, 0, 0, .25);
    margin: 0 1px .5rem;
    transition: all 250ms ease-in-out;
}

.button-moodfeedback img {
    position: absolute;
    top: -5px;
    left: -1px;
}

.button-moodfeedback:hover {
    margin: .25rem 1px .25rem;
}


.employees-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin: 1.5rem 0;
}

.employee {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem 1rem;
    border-radius: .5rem;
    border: 1px solid var(--slate-100);
    width: 100%;
}

.employee > div {
    max-width: 290px;
    margin: 0 auto;
}

.employee > div:last-child {
    margin-top: auto;
}

.employee__image img {
    border-radius: .25rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .25);
}

.arrow-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 2.125rem;
    width: 2.125rem;
    border-radius: .625rem;
    color: var(--blue-400);
    background: var(--white);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .15);
}

.arrow-link:hover {
    color: var(--white);
    background-color: var(--blue-500);
}

.arrow-link.arrow-link--disabled {
    color: var(--slate-100);
    box-shadow: none;
}

@media (min-width: 978px) {
    .employee {
        padding: 2.5rem 1.5rem;
        width: calc(33.3333% - .833rem);
    }
}


.reviews-list {
    border: 1px solid var(--slate-100);
}

.reviews-list header,
.reviews-list footer {
    background-color: var(--slate-100);
}

.reviews-list header a:hover,
.reviews-list footer a:hover {
    color: var(--blue-700);
    text-decoration: none;
}

.reviews-list header .pagination,
.reviews-list footer .pagination {
    padding: .5rem 1rem;
    display: flex;
    justify-content: space-around;
    gap: 1rem;
}

.reviews-list table.nice {
    margin-bottom: 0;
}

.reviews-list .paginationLeft {
    margin-right: 0;
}

.reviews-list .paginationRight {
    color: var(--slate-500);
}

.reviews-list__search {
    margin-bottom: 1rem;
    position: relative;
}

.autocomplete-wrapper {
    position: relative;
}

.autocomplete-wrapper > i.fa-search {
    color: var(--slate-400);
    position: absolute;
    top: .75rem;
    left: 1rem;
    font-size: 1.25rem;
}

.autocomplete-wrapper > i.fa-spin {
    position: absolute;
    top: .5rem;
    right: 1rem;
    opacity: 0;
}

.autocomplete-wrapper.is-searching > i {
    opacity: 1;
}

.autocomplete-wrapper > input {
    padding-left: 3rem;
    padding-right: 3rem;
}

.autocomplete-list {
    border-radius: .25rem;
    padding: .75rem;
    background: var(--white);
}

.autocomplete-list > .autocomplete-list__item {
    padding: 0;
    background: none;
    list-style-type: none;
}

.autocomplete-list > .autocomplete-list__item:hover {
    background: none;
}

.autocomplete-list > .autocomplete-list__item > .autocomplete-list__link {
    display: flex;
    gap: 1rem;
    padding: .5rem 1rem;
    border-radius: .25rem;
    border: 0;
    font-size: 1rem;
}

.autocomplete-list > .autocomplete-list__item > .autocomplete-list__link.ui-state-hover,
.autocomplete-list > .autocomplete-list__item > .autocomplete-list__link.ui-state-active {
    background: var(--blue-50);
    border: 0;
    font-weight: 400;
    padding: .5rem 1rem;
    border-radius: .25rem;
    margin: 0;
}

.autocomplete-list > .autocomplete-list__item > .autocomplete-list__link.ui-state-hover .title,
.autocomplete-list > .autocomplete-list__item > .autocomplete-list__link.ui-state-active .title {
    color: var(--blue-500);
}

.review-card {
    border-radius: .5rem;
    border: 1px solid var(--slate-100);
    padding: .75rem 1rem 1rem;
}


.company-card {
    border-radius: .5rem;
    border: 2px solid var(--slate-50);
    padding: 1.25rem 1.75rem 2rem;
}



/*
 * Dashboard modules
 */

.dashboard-table {
    width: 100%;
    margin: 1rem 0;
}

.dashboard-table tbody tr:not(:last-child) {
    border-bottom: 1px solid var(--slate-100);
}

.dashboard-table td {
    padding: .5rem 0;
}

.dashboard-packages {
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    margin: 0 -1.5rem;
}

.dashboard-packages__item {
    border-radius: .5rem;
    padding: 1rem 1.5rem;
    background: var(--slate-50);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: .25rem;
}


/*
 * Vitec Figlo Banner
 */

.winactie-banner {
  background: var(--blue-100);
  border: 1px solid var(--blue-300);
  border-radius: .25rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.winactie-banner__image {
  max-width: 180px;
  margin: 0 auto;
}

.winactie-banner__content p:last-of-type {
  margin-bottom: 0;
}

.winactie-banner__title {
  font-weight: bold;
  font-family: var(--display-font);
  font-size: 1.125rem;
}

.winactie-banner__content {
  text-align: center;
}

.winactie-banner__button {
  min-width: 200px;
  justify-content: center;
}

@media (min-width: 978px) {
  .winactie-banner {
    flex-direction: row;
    align-content: center;
    align-items: center;
  }

  .winactie-banner__image {
    margin: 0;
  }

  .winactie-banner__content {
    border-left: 1px solid var(--blue-300);
    padding-left: 2rem;
    text-align: left;
  }

  .winactie-banner__title {
    font-size: 1.5rem;
  }
 }


.promo-banner.promo-banner--woonscan {
  padding: 2rem 2.5rem;
  border-radius: 0.5rem;
  background: var(--blue-50);
  border: 1px solid var(--blue-200);
}

.promo-banner .chip {
  position: absolute;
  top: -25px;
  left: calc(100% + 10px);
  background: var(--blue-500);
  color: var(--white);
  text-transform: uppercase;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: bold;
  padding: 0.65rem;
  border-radius: 0.5rem;
}

.promo-banner .chip::before {
  position: absolute;
  top: 100%;
  left: -12px;
  content: '';
  height: 10px;
  width: 20px;
  display: block;
  border-right: 1px solid var(--blue-500);
  border-bottom: 1px solid var(--blue-500);
  border-bottom-right-radius: 20px;
}

/*
 * Profiel (Locaties > Home)
 */
.toggle-container {
    display: inline-flex;
    gap: .5rem;
    justify-content: center;
    background: var(--slate-100);
    border-radius: 24px;
    padding: .25rem;
}

.toggle-container__option {
    padding: 8px 12px;
    border-radius: 24px;
    background: var(--slate-100);
    color: var(--black);
    cursor: pointer;
    border: none;
}

.toggle-container__option--active {
    background: var(--white);
    box-shadow: 0 1px 2px rgb(0 0 0 / .05);
    color: var(--blue-600);
    font-weight: bold;
    cursor: default;
}
/*
 * Screens > Support
 */


/*
 * Reviews Index
 */

.filter-star-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--slate-100);
    border-radius: .5rem;
    cursor: pointer;
}

.filter-star-box:hover {
    background: var(--slate-50);
}


.star-yellow {
    color: var(--yellow-400);
}

.star-gray {
    color: var(--slate-200);
}

/* Star swap script fallback */
img[src$="star1.png"],
img[src$="star0.png"] {
    filter: hue-rotate(320deg) contrast(2) drop-shadow(0 0 0 rgb(255, 231, 12));
}

.scoreLarge {
    border-radius: 35px;
    border-bottom: 5px solid var(--blue-600);
    background: linear-gradient(180deg, var(--blue-500) 0%, var(--blue-400) 100%);
    box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 160px;
}

.scoreLarge span {
    font-family: var(--display-font);
    text-shadow: 0 4px 2px var(--blue-600);
    font-size: 60px;
    font-weight: 700;
    margin-top: .85rem;
    line-height: 100%;
}

.scoreLarge span.has-large-number {
    font-size: 42px;
}

a.scoreLarge:hover {
    transition: all 250ms ease-in-out;
    transform: translateY(3px);
    border-radius: 35px;
    border-bottom: 2px solid var(--blue-700);
    background: linear-gradient(180deg, var(--blue-600) 0%, var(--blue-500) 100%);
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.25);
}

a.scoreLarge:hover span {
    color: var(--white);
}

.scoreLarge + .score {
    margin-top: 1rem;
}

.score {
    background: var(--slate-200);
}

.scoreGevuld {
    background-color: var(--yellow-400);
}

.panel-header .pagination,
.panel-footer .pagination {
    padding-top: 0;
    display: flex;
    justify-content: space-around;
}

.review-container {
    padding: 1.5rem;
    border: 2px solid var(--slate-100);
    margin-bottom: 2.5rem;
    border-radius: .5rem;
}

.review-response {
    background: var(--slate-50);
    padding: 1rem 1.5rem;
    border-radius: .25rem;
}

.date-badge {
    background: var(--slate-200);
    display: block;
    padding: 0 .5rem;
    border-radius: 2rem;
    color: var(--black);
    font-size: .875rem;
}

.layout-export .date-badge {
    font-size: 10px;
}


/*
 * Configure Review Link
 */

.copy-link__container {
    cursor: pointer;
    display: inline-flex;
    flex-wrap: wrap;
    margin-bottom: 1.75rem;
    align-items: center;
    gap: 1rem;
    border-radius: .5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .15);
    background: var(--white);
    padding: .5rem .5rem .5rem 1rem;
    max-width: 100%;
}

.copy-link {
    margin: 0;
    width: calc(100% - 124px);
    word-break: break-all;
}

i + .copy-link {
    width: calc(100% - 160px);
}

.copy-link__button {
    display: block;
    padding: .75rem;
    background: var(--blue-500);
    color: var(--white);
    border-radius: .5rem;
}

.copy-link__button.has-copied {
    background: var(--green-500) !important;
    color: var(--white);
}

.copy-link__container:hover .copy-link__button {
    background: var(--blue-600);
    color: var(--white);
}


/* Rapportage emailservice popup */
.ui-widget-overlay {
    z-index: 1040 !important;
    background: rgba(0, 0, 0, 0.45);
}

.ui-dialog {
    z-index: 1050 !important;
}

.ui-dialog.ui-widget-content {
    background-color: var(--white);
    border-color: var(--slate-100);
    border-radius: .5rem;
    box-shadow: 0 .5rem 2rem rgba(0, 0, 0, .25);
}

.ui-widget-header {
    border: 0;
    background: var(--blue-50);
    color: var(--blue-600);
    border-radius: .125rem;
}

.ui-widget-content {
    background: var(--white);
    border: 0;
}

.ui-button-icon-only {
    text-indent: -999999px;
}

.ui-dialog .ui-dialog-titlebar-close {
    background: var(--blue-600);
    border: 0;
    border-radius: .5rem;
}

.ui-dialog-buttonset .ui-button {
    background: var(--slate-200);
    color: var(--black);
    border: 0;
    border-radius: .5rem;
    padding: .75rem 1.125rem;
}

.ui-dialog-buttonset .ui-button:hover {
    background: var(--slate-300);
    color: var(--black);
}
/*
 * Screens > Support
 */



/*
 * FAQ lists
 */

.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-list .vraagantwoord {
    border: 1px solid var(--slate-100);
    padding: .75rem 1rem;
}

.bg-blue-50 .faq-list .vraagantwoord {
    border: 0;
    padding: .75rem 0;
}

.faq-list .vraagantwoord:not(:last-child) {
    border-bottom: 0;
}

.bg-blue-50 .faq-list .vraagantwoord:not(:last-child) {
    border-bottom: 1px solid var(--blue-100);
}

.vraagantwoord .vraag {
    color: var(--blue-400);
}

.bg-blue-50 .vraagantwoord .vraag {
    color: var(--blue-500);
    font-weight: bold;
}

.vraagantwoord .vraag:hover {
    color: var(--blue-600);
}

.vraagantwoord .vraag:hover h2 {
    color: var(--blue-600);
}

.vraagantwoord .vraag::before {
    display: inline-block;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font: var(--fa-font-solid);
    margin-right: .5rem;
    content: "\f078";
}

.bg-blue-50 .vraagantwoord .vraag::before {
    color: var(--black);
}

/* Doesn't work in Firefox yet.. */
.vraagantwoord .vraag:has(+ .antwoord[style="display: block;"])::before  {
    content: "\f077";
}

.faq-list .vraagantwoord .antwoord {
    padding: 1rem 1rem 1rem 1.5rem;
}


.faq-menu {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    gap: 0.75rem;
}

.faq-menu li {
    padding-left: 0;

    /* Reset styles */
    line-height: inherit;
}

.faq-menu li::before {
    content: none;
}

.faq-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .5rem 1rem;
    border-radius: .25rem;
}

.faq-menu a::after {
    display: inline-block;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font: var(--fa-font-regular);
    content: "\f054";
    margin-right: 0.5rem;
    font-size: 0.875rem;
}

.faq-menu a:hover {
    background: var(--slate-50);
}

.faq-menu .is-current a {
    background: var(--blue-50);
}



/*
 * Newsletters
 */

.hide-empty-elements *:empty {
    display: none !important;
}



/*
 * Package promotion
 */


.package-intro {
  display: grid;
}

.package-intro__middle {
  text-align: center;
}

@media (min-width: 978px) {
  .package-intro {
    grid-template-columns: 5fr 3fr 4fr;
    gap: 1.25rem;
    align-items: flex-end;
  }

  .package-intro__left,
  .package-intro__right {
    padding-bottom: 2rem;
  }
}

.package-toggle {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.package-toggle.package-toggle--companies {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.package-toggle__column {
  padding: 2.5rem 1rem;
  border: 1px solid var(--slate-100);
  background: var(--slate-50);
  color: var(--black);
  display: flex;
  flex-flow: column;
  gap: 1.5rem;
}

.package-toggle__column:first-child {
  border-radius: 12px 12px 0 0;
}

.package-toggle__column:last-child {
  border-radius: 0 0 12px 12px;
}

.package-toggle__column--highlight {
  border-color: var(--blue-800);
  background: var(--blue-800);
  color: var(--white);
}

@media (min-width: 978px) {
  .package-toggle {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .package-toggle.package-toggle--companies {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .package-toggle__column {
    padding: 2rem 3rem;
  }

  .package-toggle__column:first-child {
    border-right: 0;
    border-radius: 12px 0 0 12px;
  }

  .package-toggle__column:last-child {
    border-left: 0;
    border-radius: 0 12px 12px 0;
  }
}


.package-grid {
  display: flex;
  flex-flow: column;
  gap: 4rem;
}

.package-grid__row {
  display: flex;
  flex-flow: column;
  gap: 2rem;
  justify-content: space-between;
}

@media (min-width: 978px) {
  .package-grid__row {
    flex-flow: row wrap;
  }

 .package-grid__row:nth-child(even) {
    display: flex;
    flex-flow: row-reverse wrap;
  }

  .package-grid__cell-image,
  .package-grid__cell-content {
    max-width: calc(50% - 1rem);
    flex: 1 0 calc(50% - 1rem);
  }
}

.package-grid__cell-image {
  display: grid;
  place-items: center;
  background: var(--slate-50);
  border-radius: 12px;
  padding: 1rem;
}

.package-grid__cell-image img {
  text-align: center;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

.package-grid__cell-content {
  padding: 2rem 3rem;
}
/*
 * Screens > Webshop
 */

 html {
    scroll-behavior: smooth;
 }

 .layout-panel {
    scroll-margin-top: 100px;
 }


.webshop-cards-container {
    padding: 0;
}

.webshop-cards-container + .webshop-cards-container {
    margin-top: 3rem;
}

.webshop-cards-container > div {
    box-shadow:
        0 .25rem .5rem 0 rgba(96, 97, 112, .15),
        0 0 .125rem 0 rgba(40, 41, 61, .05);
    border-radius: 1rem;
}


/* Webshop Card */
.webshop-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    background: var(--white);
    border: 1px solid var(--slate-200);
}

.webshop-card:first-of-type {
    border-radius: 1rem 1rem 0 0;
}

.webshop-card.webshop-card--popular {
    background-color: var(--blue-50);
    border-color: var(--blue-200);
}

.webshop-card.webshop-card--popular + .webshop-card {
    border-left-width: 0;
}

.webshop-card__header {
    display: flex;
    flex-direction: column;
    padding: 1rem 1.125rem 1.5rem;
}

.webshop-card__header-stat {
    padding-top: .5rem;
    display: block;
}

.webshop-card__header-stat > i,
.webshop-card__header-stat > strong {
    width: 1.25rem;
    text-align: center;
    display: inline-block;
}

.webshop-card__body {
    flex: 1 0 auto;
    padding: 1.5rem 0;
    border-top: 2px solid var(--slate-100);
}

.webshop-card__footer {
    background: none;
}


@media (min-width: 978px) {
    .webshop-card:first-of-type {
        border-radius: 1rem 0 0 0;
    }

    .webshop-card:not(:last-of-type) {
        border-right-width: 0;
    }

    .webshop-card:last-of-type {
        border-radius: 0 1rem 0 0;
    }

    .webshop-card.webshop-card--popular {
        border-right-width: 1px;
    }

    .webshop-card.webshop-card--popular + .webshop-card {
        border-left-width: 0;
    }
}


.webshop-card__title {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
    color: var(--blue-700);
}

.text-center > .webshop-card__title {
    display: block;
}

.webshop-card__price {
    display: flex;
    align-items: center;
    gap: .25rem;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.text-center > .webshop-card__price {
    justify-content: center;
}

.webshop-card__price small {
    font-size: 60%;
    font-weight: 300;
}

.webshop-card__price-sub {
    font-size: 1rem;
    font-weight: 700;
    color: var(--slate-300);
}

.webshop-card__button {
    width: 100%;
    height: 4.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(var(--blue-500), var(--blue-600));
    color: var(--white);
    font-weight: 700;
    border-radius: .5rem;
}

.webshop-card__button:not(.is-disabled):not(.is-normal) {
    text-shadow: 0 1px 1px rgba(0, 0, 0, .6);
}

.webshop-card__button:not(.is-disabled):hover {
    background: var(--blue-700);
    color: var(--white);
    text-decoration: none;
}

.webshop-card__button.is-disabled {
    background: var(--slate-200);
    color: var(--white);
}

.webshop-card__button.is-normal {
    border: 1px solid var(--slate-100);
    background: var(--white);
    color: var(--black);
}


.webshop-card__badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    background: var(--blue-600);
    display: block;
    padding: .285rem 1rem;
    font-weight: 700;
    font-size: .75rem;
    text-transform: uppercase;
    border-radius: 0 0 .5rem .5rem;
}




.webshop-footer {
    border-radius: 0 0 1rem 1rem;
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 1.25rem 2rem;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-top: 0;
}

.webshop-footer__button {
    color: var(--black);
}

.webshop-footer__button:hover {
    color: var(--blue-500);
    text-decoration: none;
}

.list.list--checks,
.list.list--xmarks {
    padding: 0;
    margin: 1rem 0;
}

.list--checks + .list--checks,
.list--xmarks + .list--checks,
.list--checks + .list--xmarks {
    margin-top: 0 !important;
}

.list--checks:has(+ .list--checks),
.list--xmarks:has(+ .list--checks),
.list--checks:has(+ .list--xmarks) {
    margin-bottom: 0 !important;
}

.list.list--checks li,
.list.list--xmarks li {
    line-height: 1.5rem;
    padding: 0.5rem 0;
    margin-left: 1.25rem;
    padding-left: 0.5rem;
}

.list.list--checks li::before,
.list.list--xmarks li::before {
    position: absolute;
    height: unset;
    width: unset;
    top: 50%;
    left: -1rem;
    transform: translateY(-50%);
    border: 0;
    font-weight: 900;
    font-family: "Font Awesome 6 Pro";
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
}

.list.list--checks li::before {
    color: var(--green-500);
    content: "\f058";
}

.list.list--xmarks li::before {
    color: var(--red-500);
    content: "\f057";
}


/* Pricing Table */
.webshop-stats__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
}

.webshop-stats__grid--company {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
}

.webshop-stats__grid > div,
.webshop-stats__grid--company > div {
  padding: .5rem;
  box-shadow: 0 0 0 1px var(--slate-100);
}

.webshop-stats__grid > .span-2,
.webshop-stats__grid--company > .span-2 {
  grid-column: span 2 / span 2;
}

.webshop-stats__grid > .span-5,
.webshop-stats__grid--company > .span-5 {
  background: var(--slate-50);
  grid-column: span 5 / span 5;
}


.webshop-stats header {
    margin-bottom: 2rem;
}

.webshop-stats .border-0 {
    box-shadow: none !important;
}

.webshop-stats header .webshop-stats__grid > div:nth-child(2),
.webshop-stats header .webshop-stats__grid--company > div:nth-child(2) {
  border-radius: .5rem 0 0 .5rem;
}

.webshop-stats header .webshop-stats__grid > div:nth-child(2).is-highlighted,
.webshop-stats header .webshop-stats__grid--company > div:nth-child(2).is-highlighted {
  border-radius: .5rem 0 0 0;
}

.webshop-stats header .webshop-stats__grid > div:last-child,
.webshop-stats header .webshop-stats__grid--company > div:last-child {
  border-radius: 0 .5rem .5rem 0;
}

.webshop-stats header .webshop-stats__grid > div:last-child.is-highlighted,
.webshop-stats header .webshop-stats__grid--company > div:last-child.is-highlighted {
  border-radius: 0 .5rem 0 0;
}

.webshop-stats main .webshop-stats__grid,
.webshop-stats main .webshop-stats__grid--company {
  margin-bottom: 2rem;
}

.webshop-stats main .webshop-stats__grid > div:first-child,
.webshop-stats main .webshop-stats__grid--company > div:first-child {
  border-radius: .5rem 0 0 0;
}

.webshop-stats main .webshop-stats__grid > div:nth-child(4):not(.is-highlighted),
.webshop-stats main .webshop-stats__grid--company > div:nth-child(5):not(.is-highlighted) {
  border-radius: 0 .5rem 0 0;
}

.webshop-stats main .webshop-stats__grid > div:last-child:not(.is-highlighted),
.webshop-stats main .webshop-stats__grid--company > div:last-child:not(.is-highlighted) {
  border-radius: 0 0 .5rem 0;
}

.webshop-stats main .webshop-stats__grid > div:nth-last-child(4),
.webshop-stats main .webshop-stats__grid--company > div:nth-last-child(5) {
  border-radius: 0 0 0 .5rem;
}

.pricing-table__heading-cell,
.pricing-table__group-cell:not(.span-2),
.pricing-table__cell {
  text-align: center;
}

.pricing-table__heading-cell.is-highlighted {
  background: var(--blue-600);
  color: var(--white);
}

.pricing-table__heading-cell.is-highlighted * {
  color: var(--white);
}

.pricing-table__group-cell {
  background: var(--slate-50);
}

.pricing-table__group-cell.is-highlighted,
.pricing-table__group-cell.is-highlighted::before,
.pricing-table__cell.is-highlighted {
  border-left: 2px solid var(--blue-600);
  border-right: 2px solid var(--blue-600);
}

.pricing-table__group-cell.is-highlighted::before,
.pricing-table__cell.is-highlighted {
  border-bottom: 1px solid var(--slate-100);
}

.pricing-table__group-cell.is-highlighted {
  position: relative;
  background: var(--blue-200);
}

.pricing-table__group-cell.is-highlighted::before {
  position: relative;
  content: '';
  display: block;
  bottom: 100%;
  left: -2px;
  right: -2px;
  height: 2rem;
  position: absolute;
}

.pricing-table__cell.is-highlighted,
.pricing-table__group-cell.is-highlighted::before {
  background: var(--blue-50);
}

.pricing-table__cell.is-highlighted.is-last,
.webshop-stats__grid:last-child .pricing-table__cell.is-highlighted:nth-last-child(1),
.webshop-stats__grid:last-child .pricing-table__cell.is-highlighted:nth-last-child(2),
.webshop-stats__grid:last-child .pricing-table__cell.is-highlighted:nth-last-child(3),
.webshop-stats__grid--company:last-child .pricing-table__cell.is-highlighted:nth-last-child(1),
.webshop-stats__grid--company:last-child .pricing-table__cell.is-highlighted:nth-last-child(2),
.webshop-stats__grid--company:last-child .pricing-table__cell.is-highlighted:nth-last-child(3),
.webshop-stats__grid--company:last-child .pricing-table__cell.is-highlighted:nth-last-child(4) {
  border-bottom: 2px solid var(--blue-600);
}

.pricing-table__cell.is-highlighted.is-last:last-child {
  border-bottom-right-radius: .5rem;
}



/* Upgrade page */
.table.table--upgrade {
    width: 100%;
}

.table.table--upgrade td {
    padding: .5rem .5rem .5rem 0;
}


/* Cart page */
.table.table--cart {
    width: 100%;
}

.table.table--cart td {
    padding: .5rem .5rem .5rem 0;
}

.webshop-cart-container {
    margin: 1rem 0;
    min-height: 420px;
}

.payment-gateways-container {
    margin: 1rem 0 2rem;
}

.payment-gateways-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payment-gateway-item input[type="radio"] {
    display: none;
    visibility: hidden;
}

.payment-gateway-item label {
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: var(--white);
    border: 1px solid var(--slate-100);
    padding: 2rem;
    gap: 2rem;
}

.payment-gateway-item label > span {
    width: auto;
    flex: 1 0 auto;
}

.payment-gateway-item label::after {
    content: '';
    display: block;
    height: 1.5rem;
    width: 1.5rem;
    border-radius: 1.5rem;
    background-color: var(--white);
    outline: 1px solid var(--slate-300);
}

.payment-gateway-item label:hover {
    border-color: var(--slate-200);
}


.payment-gateway-item input[type="radio"]:checked + label {
    border-color: var(--blue-200);
    background-color: var(--blue-50);
}

.payment-gateway-item input[type="radio"]:checked + label::after {
    outline-color: var(--slate-300);
    border: .25rem solid var(--white);
    background-color: var(--blue-600);
}

.cart-price-table__col:last-child {
  padding-right: 70px;
}

.cart-price-table__col--small:last-child {
  padding-right: 50px;
}

.nice.nice--last-child\:text-right tr > th:last-child,
.nice.nice--last-child\:text-right tr > td:last-child {
  text-align: right;
}

.nice.nice--nth-child\[2\]\:text-right tr > th:nth-last-child(2),
.nice.nice--nth-child\[2\]\:text-right tr > td:nth-last-child(2) {
  text-align: right;
}

.package-logo {
  max-width: 180px;
  width: 100%;
  height: auto;
}

.package-logo--large {
    max-width: 240px;
}

.package-logo__link {
  transition: all .2s ease-in-out;
  will-change: transform;
  display: inline-block;
}

.package-logo__link:hover {
  transform: translateY(-5px);
}

/*
 * Popups
 */

.popups-panel {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99998;
  justify-content: center;
  align-items: center;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(31, 41, 51, .5);
}

.show-popups .popups-panel {
  display: flex;
}

.popups-panel .popup {
  max-width: 620px;
  z-index: 99999;
  background: var(--white);
  border: 1px solid var(--slate-100);
  border-radius: .5rem;
  padding: 2rem;
  box-shadow: 0 25px 100px rgba(31, 41, 51,.5);
}
/*
 * Component > Button
 */

.button {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .75rem 1.25rem;
    border-radius: .5rem;
    background-color: var(--yellow-400);
    color: var(--black) !important;
    border: 0;
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--body-font);
    cursor: pointer;
}

.button:hover {
    background-color: var(--yellow-500);
    color: var(--black) !important;
}

button.button:disabled,
.button.is-disabled {
    opacity: .5;
    cursor: not-allowed;
}



/*
 * Color states
 */

.button--blue {
    background-color: var(--blue-500);
    color: var(--white) !important;
}

.button--blue:hover {
    background-color: var(--blue-600);
    color: var(--white) !important;
}

.button--dark-blue {
  background-color: var(--blue-800);
  color: var(--white) !important;
}

.button--dark-blue:hover {
  background-color: var(--black);
  color: var(--white) !important;
}

.button--orange {
    background-color: var(--orange-500);
    color: var(--white) !important;
}

.button--orange:hover {
    background-color: var(--orange-600);
    color: var(--white) !important;
}

.button--red {
    background-color: var(--red-500);
    color: var(--white) !important;
}

.button--red:hover {
    background-color: var(--red-600);
    color: var(--white) !important;
}

.button--green {
    background-color: var(--green-500);
    color: var(--white) !important;
}

.button--green:hover {
    background-color: var(--green-600);
    color: var(--white) !important;
}

.button--slate {
    background-color: var(--slate-100);
    color: var(--black) !important;
}

.button--slate:hover {
    background-color: var(--slate-200);
    color: var(--black) !important;
}

.button--white {
    background-color: var(--white);
    color: var(--black) !important;
}

.button--white:hover {
    background-color: var(--black);
    color: var(--white) !important;
}



/*
 * Outline states
 */

.button--outline {
    border: 1px solid var(--yellow-400);
    background: transparent;
    color: var(--black) !important;
}

.button--outline:hover {
    border: 1px solid var(--yellow-400);
    background: var(--yellow-100);
    color: var(--black) !important;
}



/*
 * Outline Color states
 */

.button--outline.button--blue {
    border: 1px solid var(--blue-400);
    background: transparent;
    color: var(--black) !important;
}

.button--outline.button--blue:hover {
    border: 1px solid var(--blue-400);
    background: var(--blue-100);
    color: var(--black) !important;
}

.button--outline.button--orange {
    border: 1px solid var(--orange-400);
    background: transparent;
    color: var(--black) !important;
}

.button--outline.button--orange:hover {
    border: 1px solid var(--orange-400);
    background: var(--orange-100);
    color: var(--black) !important;
}

.button--outline.button--red {
    border: 1px solid var(--red-400);
    background: transparent;
    color: var(--black) !important;
}

.button--outline.button--red:hover {
    border: 1px solid var(--red-400);
    background: var(--red-100);
    color: var(--black) !important;
}

.button--outline.button--slate {
    border: 1px solid var(--slate-100);
    background: transparent;
    color: var(--black) !important;
}

.button--outline.button--slate:hover {
    border: 1px solid var(--slate-200);
    background: var(--slate-100);
    color: var(--black) !important;
}



/*
 * Has arrow quick class
 */

.has-arrow-left::before,
.has-arrow-right::after,
.has-xmark-left::before,
.has-xmark-right::after,
.has-plus-left::before,
.has-plus-right::after,
.has-check-left::before,
.has-check-right::after,
.has-upload-left::before,
.has-upload-right::after,
.has-download-left::before,
.has-download-right::after,
.has-edit-left::before,
.has-edit-right::after {
    display: inline-block;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font: var(--fa-font-regular);
    font-size: .875rem;
}

.has-arrow-left::before {
    content: "\f053";
    margin-right: .25rem;
}

.has-arrow-right::after {
    content: "\f054";
    margin-left: .25rem;
}

.has-xmark-left::before {
    content: "\f00d";
    margin-right: .25rem;
}

.has-xmark-right::after {
    content: "\f00d";
    margin-left: .25rem;
}

.has-plus-left::before {
    content: "\2b";
    margin-right: .25rem;
}

.has-plus-right::after {
    content: "\2b";
    margin-left: .25rem;
}

.has-check-left::before {
    content: "\f00c";
    margin-right: .25rem;
}

.has-check-right::after {
    content: "\f00c";
    margin-left: .25rem;
}

.has-upload-left::before {
    content: "\e09a";
    margin-right: .25rem;
}

.has-upload-right::after {
    content: "\e09a";
    margin-left: .25rem;
}

.has-download-left::before {
    content: "\f33d";
    margin-right: .25rem;
}

.has-download-right::after {
    content: "\f33d";
    margin-left: .25rem;
}

.has-edit-left::before {
    content: "\f044";
    margin-right: .25rem;
}

.has-edit-right::after {
    content: "\f044";
    margin-left: .25rem;
}

.button.icon--blue::after,
.button.icon--blue::before {
    color: var(--blue-400);
}

.button.icon--red::after,
.button.icon--red::before {
    color: var(--red-400);
}


/*
 * Size states
 */

.button--small {
    padding: .25rem .75rem;
    font-size: .85rem;
}

.button--large {
    padding: 1rem 2.5rem;
}

.button--full {
    width: 100%;
}

@media (min-width: 978px) {
    .md\:button--large {
        padding: 1.125rem 2.75rem;
    }

    .md\:button--full {
        width: 100%;
    }
}

@media (max-width: 978px) {
  .max-md\:button--small {
    padding: .25rem .75rem;
    font-size: .85rem;
  }
}



/*
 * Loose links
 */

.link.link--white {
    color: rgba(255, 255, 255, .75) !important;
    text-decoration: underline;
}

.link.link--white:hover {
    color: var(--white) !important;
    text-decoration: underline;
}


/*
 * Pagination buttons
 */

.pagination__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem;
    width: 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    background: var(--slate-100);
    border-radius: .25rem;
}

a.pagination__button {
    color: var(--blue-400);
}

a.pagination__button:hover {
    color: var(--blue-600);
}

.pagination__button.is-current {
    background: var(--blue-400);
    color: var(--white);
    font-weight: 900;
}
/*
 * Components > Footer
 */

.footer {
    flex: none;
    width: 100%;
    background: var(--slate-100);
}

.footer__inner {
    display: flex;
    flex-direction: column;
    max-width: 87.5rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer__top {
    padding: 3rem 0;
}

.footer__top a {
    color: var(--blue-950);
}

.footer__top a.is-current {
  color: var(--blue-500);
}

.footer__top a:hover {
    color: var(--blue-500);
    text-decoration: none;
}

.footer__bottom {
    padding: 1rem 0;
    background: var(--blue-950);
    color: var(--white);
}

.footer__bottom a {
    color: var(--white);
}

.footer__bottom a:hover {
    color: var(--blue-300);
    text-decoration: none;
}

.footer__bottom span {
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer__menu {
    width: 100%;
    margin-bottom: 3rem;
}

.footer__menu h3 {
    color: var(--slate-950);
    font-family: var(--display-font);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer__contact-details {
    width: 100%;
}

.footer__contact-details .logo {
    height: 2rem;
}

.footer__contact-details address {
    margin-top: 1.5rem;
}

.footer .social-link {
    font-size: 1.5rem;
}

.footer .social-link:not(:last-child) {
    margin-right: 0.5rem;
}


@media (min-width: 978px) {
    .footer__inner {
        flex-direction: row;
    }

    .footer__menu,
    .footer__contact-details {
        width: 25%;
    }

    .footer__menu {
        margin: 0;
        padding-right: 1.5rem;
    }

    .footer__bottom a {
        text-decoration: underline;
    }

    .footer__menu h3 {
        margin-bottom: 1.5rem;
    }

    .footer__contact-details {
        margin-left: auto;
    }

    .footer__bottom span {
        margin-bottom: 0;
        margin-right: 2.5rem;
    }
}


/* Reset needed to break old styles */
.footer .menu li::before {
    border-color: currentColor;
}
/*
 * Components > Header
 */


body {
    padding-top: 48px !important;
}

.header {
    flex: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 900;
    height: 48px;
    background: var(--white, #fff);
    box-shadow: 0 6px 10px 0 rgba(96, 97, 112, .1);
}

.header__inner {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 48px;
}

@media (min-width: 978px) {
    body {
        padding-top: 80px !important;
    }

    .header,
    .header__inner {
        height: 80px;
    }

    .header__inner {
        padding: 0 15px;
    }
}


/*
 * Menu Button
 */

.header__menu-button {
    background: var(--blue-200);
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    width: 60px;
    cursor: pointer;
    margin-right: 15px;
}

.menu-icon {
    position: relative;
}

.menu-icon .line {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--blue-950);
    transform-origin: center center;
    transition:
        transform .4s cubic-bezier(.23,1,.32,1),
        width .4s cubic-bezier(.23,1,.32,1),
        background .6s cubic-bezier(.23,1,.32,1);
}

.menu-icon .line + .line {
    margin-top: 4px;
}

.menu-icon .line:first-child {
    width: 22px;
}

.menu-icon .line:nth-child(3) {
    width: 15px;
}

/* State: Menu Open */
.is-menu-open .menu-icon .line {
    width: 23px;
}

.is-menu-open .menu-icon .line:first-child {
    transform: translateY(6px) rotate(45deg);
}

.is-menu-open .menu-icon .line:nth-child(2) {
    transform: scale(0);
}

.is-menu-open .menu-icon .line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

@media (min-width: 978px) {
    .header__menu-button {
        display: none;
        visibility: hidden;
    }
}


/*
 * Logo
 */

.header__logo {
    display: flex;
    align-items: center;
}

.logo {
    height: 28px;
}

@media (min-width: 978px) {
    .logo {
        height: 40px;
    }
}

.header-text {
  margin: .25rem 1rem .3rem;
}


/*
 * Account Button
 */

.user-menu {
    position: fixed !important;
    z-index: 1010;
    top: 0;
    right: 0;
}

.header__user,
.user-menu {
    height: 48px;
    display: flex;
    align-items: center;
    position: relative;
    margin-left: auto;
}

.header__user:hover,
.user-menu:hover {
    background-color: var(--blue-100);
}

.user-menu:hover::before {
    position: absolute;
    top: 49px;
    bottom: 0;
    right: 100%;
    width: 103px;
    content: '';
    display: block;
    transform: rotate(-65deg) translateX(25%) translateY(15%);
    transform-origin: center right;
    height: 56px;
}

.user-avatar {
    background: var(--blue-900);
    height: 48px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.user-avatar__image {
    position: relative;
}

.user-avatar__badge {
    position: absolute;
    top: 0;
    right: 0;
    height: 20px;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    background: var(--blue-500);
}

.user-avatar__badge.orange-bg {
    background: var(--orange-500);
}

.header__user .accountmenu,
.user-menu .accountmenu {
    position: absolute;
    margin: 0;
    z-index: 1000;
    right: 0;
    top: 100%;
}

.header__user:hover .accountmenu__inner,
.user-menu:hover .accountmenu__inner {
    display: block !important;
}

.accountmenu .dropOutOver {
    width: 100vw;
}

.accountmenu__inner {
    background: var(--blue-100);
}

.accountmenu__header,
.accountmenu__body {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    padding: 15px;
}

.accountmenu__header .title {
    font-weight: 700;
    font-size: 18px;
    color: var(--black);
}

.accountMenuLinks {
    margin: 0;
    padding: 0;
}

.accountMenuLinks dt, dd {
    padding: 5px 0;
    margin: 0;
}

.accountMenuLinks dt:not(:first-child) {
    margin-top: 10px;
    border-top: 1px solid var(--blue-200);
}

.accountMenuLinks dd::before {
    display: inline-block;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font: var(--fa-font-regular);
    content: "\f054";
    margin-right: 0.5rem;
    font-size: 0.875rem;
    color: var(--blue-500);
    position: relative;
    transform: unset;
    left: auto;
    top: auto;
    border: none;
    height: auto;
    width: auto;
}


@media (max-width: 977px) {
    .user-avatar__image.rounded {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        max-width: 100% !important;
        max-height: 100% !important;
        object-fit: cover;
    }
}


@media (min-width: 978px) {
    .accountmenu .dropOutOver {
        width: 950px;
    }

    .accountmenu .dropOutOver.is-narrow {
        width: 720px;
    }

    .header__user,
    .user-menu {
        height: 80px;
        padding: 0 10px;
    }

    .user-menu {
        right: 15px;
    }

    .user-avatar {
        height: 48px;
        width: 48px;
        border-radius: 20px;
    }

    .user-avatar__image.rounded {
        border-radius: 20px;
    }

    .user-avatar__badge {
        top: -12px;
        right: -12px;
        height: 26px;
        width: 26px;
        font-size: 14px;
    }
}

@media (min-width: 1400px) {
    .user-menu {
        right: calc(50vw - 685px);
    }
}
/*
 * Components > Menu
 */

 .menu {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    gap: 0.75rem;
}

.menu li {
    padding-left: 0;

    /* Reset styles */
    line-height: inherit;
}

.menu li::before {
    display: inline-block;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font: var(--fa-font-regular);
    content: "\f054";
    margin-right: 0.5rem;
    font-size: 0.875rem;

    /* Reset styles */
    position: relative;
    transform: unset;
    left: auto;
    top: auto;
    border: none;
    height: auto;
    width: auto;
}


.menu--vertical {
    flex-direction: row;
    gap: 2.5rem;
}

.menu--no-bullets li::before {
    content: none;
}


@media (min-width: 978px) {
    .md\:menu--vertical {
        flex-direction: row;
        gap: 2.5rem;
    }

    .md\:menu--no-bullets li::before {
        content: none;
    }
}
/*
 * Components > Message
 */

 .message {
    display: flex;
    align-items: center;
    border-radius: .5rem;
    padding: 1.25rem 1.5rem;
    gap: 1.25rem;
    border: 1px solid var(--slate-100);
    background: var(--slate-50);
    margin-bottom: 1.25rem;
}

a.message:hover {
    border: 1px solid var(--slate-200);
    background: var(--slate-100);
}

.message--blue {
    border: 1px solid var(--blue-200);
    background: var(--blue-50);
}

a.message.message--blue:hover {
    border: 1px solid var(--blue-300);
    background: var(--blue-100);
}

.message--orange {
    border: 1px solid var(--orange-200);
    background: var(--orange-50);
}

a.message.message--orange:hover {
    border: 1px solid var(--orange-300);
    background: var(--orange-100);
}

.message--green {
    border: 1px solid var(--green-300);
    background: var(--green-50);
}

a.message.message--green:hover {
    border: 1px solid var(--green-400);
    background: var(--green-100);
}

.message--red {
    border: 1px solid var(--red-300);
    background: var(--red-50);
}

a.message.message--red:hover {
    border: 1px solid var(--red-300);
    background: var(--red-100);
}

.message__body {
    color: var(--blue-950);
}
/*
 * Components > Navigation
 */

.navigation {
    position: fixed;
    z-index: 800;
    height: 100vh;
    width: 80vw;
    background: var(--blue-50);
    overflow: hidden;
        transform: translate3d(-100%, 0, 0);
        transition: transform .4s ease;overflow: hidden;
        transform: translate3d(-100%, 0, 0);
        transition: transform .4s ease;
    
}

.is-menu-open .navigation {
    transform: translate(0);
}

.navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    top: 0;
    bottom: auto;
    transform: translate(0);
    transition: transform .4s ease;
    will-change: transform, opacity;
}

.navigation li {
    padding: 0;
    margin: 0;
    position: static;
}

.navigation li::before {
    content: none;
}

.navigation a {
    display: block;
    font-family: var(--body-font);
    font-size: 14px;
    padding: 15px 20px 15px 40px;
    background: var(--blue-50);
    border-bottom: 1px solid var(--blue-200);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: 
        transform .4s ease,
        background-color .15s ease,
        color .15s ease;
}

/* .navigation .is-orange a {
    background: var(--orange-50);
    color: var(--orange-400);
    border-bottom: 1px solid var(--orange-200);
} */

.has-children > a {
    position: relative;
    z-index: 500;
}

.is-current > a {
    color: var(--blue-500) !important;
}

.dropdown-sign {
    display: none;
    visibility: hidden;
}

.next-link,
.previous-link {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--blue-200);
    position: absolute;
    top: 0;
    z-index: 500;
    bottom: auto;
    min-height: 46px;
    height: 100%;
    padding: 0;
}

/* .is-orange .next-link,
.is-orange .previous-link {
    background-color: var(--orange-200);
} */

.next-link {
    left: auto;
    right: 0;
    width: 45px;
}

.previous-link {
    left: 0;
    right: auto;
    width: 35px;
}

.go-back a {
    background: var(--blue-100);
    font-style: italic;
    padding-left: 40px;
    position: relative;
    z-index: 500;
}

/* .is-orange .go-back a {
    background: var(--orange-200);
} */

.active-level {
    font-weight: 700;
}

.navigation .is-aside > li > a {
    transform: translate3d(-100%, 0, 0) !important;
}


.navigation .navigation__list {
    display: flex;
    flex-direction: column;
}

.navigation .navigation__sub-list {
    width: 80vw;
}

.navigation .navigation__sub-list.is-hidden {
    right: -80vw !important;
    transform: translate3d(100%, 0, 0);
}

@media (min-width: 978px) {
    .navigation {
        top: 0;
        left: 85px;
        right: 85px;
        z-index: 1000;
        background: transparent;
        transition: all 0ms;
        width: auto;
        height: auto;
        overflow: visible;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        transform: translate(0);
    }

    .navigation ul {
        position: relative;
        width: auto;
        transform: translate(0);
    }

    .navigation .navigation__list {
        flex-direction: row;
    }

    .navigation .navigation__list > li {
        position: relative;
    }

    .navigation .navigation__list > li > a {
        background: none;
        border: 0;
        color: var(--black);
        font-weight: 700;
        font-size: 14px;
        padding: 10px 15px;
        height: 80px;
        line-height: 56px;
    }

    .navigation .navigation__list > li:hover a {
        background: var(--blue-50);
        color: var(--blue-400);
    }

    .navigation .navigation__sub-list {
        background: var(--blue-50);
        overflow: hidden;
        left: 0;
        right: auto !important;
        width: 240px;
        position: absolute;
        transform: translate(0);
        height: 0;
        opacity: 0;
        transition: 
            opacity .15s ease,
            height .15s ease;
        top: -99999px;
    }

    .navigation .has-children:hover .navigation__sub-list {
        height: auto;
        opacity: 1;
        top: 100%;
    }

    .navigation .navigation__sub-list.is-hidden {
        right: auto !important;
        transform: translate(0);
    }

    .navigation .navigation__sub-list > li > a {
        padding: 8px 15px;
        border: 0;
        color: var(--black) !important;
    }

    .navigation .navigation__sub-list > .is-current > a {
        color: var(--blue-500) !important;
    }

    .navigation .navigation__sub-list > li:hover > a {
        background: var(--blue-100);
        color: var(--blue-400) !important;
    }

    .next-link,
    .previous-link,
    .go-back {
        display: none;
        visibility: hidden;
    }

    .has-children > a {
        pointer-events: none;
    }

    .active-level a {
        font-weight: normal;
    }

    .dropdown-sign {
        display: inline-block;
        visibility: visible;
        color: var(--blue-200);
    }
}

@media (min-width: 1140px) {
    .navigation {
        left: 235px;
    }
}

@media (min-width: 1400px) {
    .navigation {
        left: calc(50vw - 465px);
        right: calc(50vw - 615px);
    }
}

.menu-list {
    padding: 0;
    margin: 0;
}

.menu-list li {
    padding: 5px 0;
}

.menu-list li:not(:last-child) {
    border-bottom: 1px solid var(--blue-200);
}

.menu-list li::before {
    content: none !important;
}
