:root {
    --color-primary: #266553;
    --color-primary-light: #4AA189;
    --color-primary-variant: #266553dd;
    --color-primary-variant-2: #266553cc;
    --color-on-primary: #FFFFFF;
    --color-secondary: #252525;
    --color-surface: #FFFFFF;
    --color-background: #F5E6D1;
    --color-text: #0F1816;
    --color-faded: #B6B6B6;
    --color-slighty-faded: #323232;
    --color-input-bg: #FEFCFB;
    --color-input-stroke: #E4E4E4;
    --color-divider: #000000;
    --spacer-x1: 1rem;
    --spacer-x025: calc(var(--spacer-x1) * .25);
    --spacer-x05: calc(var(--spacer-x1) * .5);
    --spacer-x075: calc(var(--spacer-x1) * .75);
    --spacer-x105: calc(var(--spacer-x1) * 1.5);
    --spacer-x3: calc(var(--spacer-x1) * 3);
    --spacer-x2: calc(var(--spacer-x1) * 2);
    --spacer-x4: calc(var(--spacer-x1) * 4);
    --spacer-x6: calc(var(--spacer-x1) * 6);
    --spacer-x8: calc(var(--spacer-x1) * 8);
    --color-white-75: rgba(255, 255, 255, .75);
    --color-white-85: rgba(255, 255, 255, .85);
    --border-radius-btn: 9px;
    --border-radius-m: 23px;
    --section-margin: var(--spacer-x8);
    --section-margin-btm-s: var(--spacer-x4);
    --font-family: 'Montserrat', sans-serif;
    --header-height: 10vh;
    --input-min-width: 10rem;
}

* {
    box-sizing: border-box;
}

html {
    font-size: 14px;
}

body {
    font-family: var(--font-family);
    margin: 0;
    padding: 0;
    background-color: var(--color-background);
    color: var(--color-text);
    line-height: 1.4;
}

a,
a:hover,
a:active,
a:visited {
    color: var(--color-text);
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

    p:not(:last-child) {
        margin-bottom: var(--spacer-x05);
    }

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
    font-weight: 600;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-top: var(--spacer-x2);
    margin-bottom: var(--spacer-x1);
}

h3 {
    font-size: 1.9rem;
    font-weight: 600;
    margin-top: var(--spacer-x2);
    margin-bottom: var(--spacer-x1);
}

h4 {
    margin-top: var(--spacer-x2);
    margin-bottom: var(--spacer-x1);
}

@media (max-width: 1023px) {
    :root {
        /*--spacer-x1: 3vw;*/
    }

    html {
        font-size: 1.6vw;
    }

    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2.3rem;
    }

    h3 {
        font-size: 1.7rem;
    }
}

@media (max-width: 769px) {
    html {
        font-size: 2.1vw;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2.1rem;
    }

    h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 650px) {
    html {
        font-size: 2.6vw;
    }
}

@media (max-width: 500px) {
    :root {
        --section-margin: var(--spacer-x6);
    }

    html {
        font-size: 3.3vw;
    }

    h1 {
        font-size: 2.3rem;
    }

    h2 {
        font-size: 1.9rem;
    }

    h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 420px) {
    html {
        font-size: 3.9vw;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 350px) {
    html {
        font-size: 4.7vw;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.1rem;
    }
}

/* #region sitewidth and margin */
.site-width {
    margin: 0 auto;
    max-width: 1200px;
}

.site-margins {
    margin: 0 var(--spacer-x4);
}

@media (max-width: 769px) {
    .site-margins {
        margin: 0 var(--spacer-x2);
    }
}
/* #endregion*/

/* #region standard styling classes */
.flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.space-between-horizontal {
    justify-content: space-between;
}

.align-items-center {
    align-items: center;
}

.align-items-end {
    align-items: end;
}

.justify-content-center {
    justify-content: center;
}

.direction-column {
    flex-direction: column;
}

.row-reverse {
    flex-direction: row-reverse;
}

.text-align-center {
    text-align: center;
}

.text-align-end {
    text-align: end;
}

.transform-uppercase {
    text-transform: uppercase;
}

.inline-block {
    display: inline-block;
}

.full-width {
    width: 100%;
}

.section-margin-btm {
    margin-bottom: var(--section-margin);
}

.section-margin-btm-s {
    margin-bottom: var(--section-margin-btm-s);
}

.section-margin-top {
    margin-top: var(--section-margin);
}

.image-container > img {
    display: block;
    width: 100%;
}

.text-faded {
    color: var(--color-faded);
    font-size: .8rem;
}

.divider-horizontal {
    width: 100%;
    border: 1px solid var(--color-text);
}
/* #endregion */

/* spacing classes */
.gap-x1 {
    gap: var(--spacer-x1);
}

.gap-x2 {
    gap: var(--spacer-x2);
}

.gap-x3 {
    gap: var(--spacer-x3);
}

.gap-x4 {
    gap: var(--spacer-x4);
}

.gap-x8 {
    gap: var(--spacer-x8);
}

/* #region - Hero container */
.hero-container {
    position: relative;
}

    .hero-container > img,
    .hero-container > video {
        display: block;
        width: 100%;
        /* height: calc(100vh - var(--header-height)); */
        height: 70vh;
        object-fit: cover;
    }

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-on-primary);
    text-align: center;
    width: 100%;
}

.hero-text-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacer-x1);
}

    .hero-text-content > * {
        max-width: 80%;
        margin: 0 auto;
    }

    .hero-text-content > div:last-of-type {
        font-size: 3.5rem;
        color: var(--color-white-85);
    }

    .hero-text-content > div {
        font-weight: 600;
    }

    .hero-text-content .btn {
        margin-top: var(--spacer-x2);
        font-weight: 400;
        width: fit-content;
        margin: 0 auto;
    }

.hero-intro {
    background-color: var(--color-primary);
    color: var(--color-on-primary);
}

.hero-intro-text {
    padding: var(--spacer-x4) 0;
    columns: 3;
    column-gap: var(--spacer-x4);
}

@media (max-width: 1100px) {
    .hero-intro-text {
        columns: 2;
    }
}

@media (max-width: 1023px) {
    .hero-text-content > * {
        max-width: 100%;
    }

    .hero-text .hero-text-content > div:last-of-type {
        font-size: 3.3rem;
    }

    .hero-intro-text {
        columns: 1;
    }
}

@media (max-width: 769px) {
    .hero-text .hero-text-content > div:last-of-type {
        font-size: 3rem;
    }
}

@media (max-width: 650px) {
    .hero-text .hero-text-content > div:last-of-type {
        font-size: 2.7rem;
    }
}

@media (max-width: 500px) {
    .hero-text .hero-text-content > div:last-of-type {
        font-size: 2.5rem;
    }
}

@media (max-width: 420px) {
    .hero-text .hero-text-content > div:last-of-type {
        font-size: 2.3rem;
    }
}

@media (max-width: 350px) {
    .hero-text .hero-text-content > div:last-of-type {
        font-size: 2.1rem;
    }
}
/*
    @media (max-width: 600px){
        .hero-text .hero-text-content > div:first-of-type {
            font-size: 2.5vw;
        }
        .hero-text .hero-text-content > div:last-of-type {
            font-size: 8vw;
        }
    }
    @media (max-width: 400px){
        .hero-text .hero-text-content > div:first-of-type {
            font-size: 3.5vw;
        }
        .hero-text .hero-text-content > div:last-of-type {
            font-size: 10vw;
        }
    }*/

/* @media (max-width: 769px){
        .hero-text .hero-text-content > div:last-of-type {
            font-size: 10vw;
        }
    } */
/* #endregion */

/* #region - Button */
button,
.btn {
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    border: 1px solid var(--color-primary);
    padding: var(--spacer-x05) var(--spacer-x1);
    font-size: .9rem;
    background-color: var(--color-primary);
    border-radius: var(--border-radius-btn);
    color: var(--color-on-primary);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: relative;
    display: inline-block;
    /*white-space: nowrap;*/
    text-decoration: none;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 1.5rem;
    transition: all .1s ease-in-out;
    min-width: 10rem;
    text-align: center;
}

    button:hover,
    .btn:hover {
        color: var(--color-on-primary);
        background-color: var(--color-primary-light);
        border: 1px solid var(--color-primary-light);
    }

    .btn:active,
    .btn:visited {
        color: var(--color-on-primary);
    }

.btn-hollow {
    background-color: transparent;
    border: 1px solid var(--color-on-primary);
}

.btn.flex {
    display: flex;
}
/* #endregion */

/* #region - Inputs */
select,
input {
    padding: .5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: .9rem;
    border: 1px solid var(--color-input-stroke);
    background-color: var(--color-input-bg);
    border-radius: var(--border-radius-btn);
    margin: 0;
    border: 1px solid var(--color-input-bg);
}

select {
    border-right: .5rem solid var(--color-input-bg);
}

    input:focus,
    select:focus,
    textarea:focus {
        box-shadow: 0 0 1px 1px black;
        outline: none;
    }

input[type="text"] {
    min-width: var(--input-min-width);
}
/* #endregion */

/* #region overlay */
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .3);
}
/* #endregion */

/* #region - Responsive header */
header:not(.frontpage) {
    background-color: var(--color-primary);
}

header.frontpage {
    position: absolute;
    width: 100%;
    z-index: 1;
}

header nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacer-x1);
    height: 100%;
    padding: var(--spacer-x1) 0;
}

header .nav-links-container {
    display: none;
}

header #menu-link {
    position: relative;
}

header ul {
    display: flex;
    padding: 0;
    gap: var(--spacer-x1);
    padding: 1rem 1rem;
    margin: 0;
}

header li {
    list-style-type: none;
}

header nav li a {
    padding: 0.25rem 0.5rem;
    min-width: fit-content;
    white-space: nowrap;
    display: block;
}

    header a {
        text-decoration: none;
        color: inherit;
    }

header .current {
    font-weight: 800;
}

.logo {
    display: flex;
    width: 10rem;
}

#profile-link {
    display: flex;
    text-align: end;
    margin: .5rem 0 .5rem .5rem;
}

#menu-link {
    display: flex;
    padding: .5rem 0 .5rem .5rem;
    cursor: pointer;
}

#menu-icon {
    width: 1.7rem;
}

#profile-icon {
    width: 1rem;
}

/* responsive */
header.responsive .nav-links-container {
    display: block;
    position: absolute;
    right: 0;
    top: 2.2rem;
    z-index: 2;
    background-color: var(--color-surface);
    border-top-left-radius: var(--border-radius-m);
    border-bottom-left-radius: var(--border-radius-m);
    border-bottom-right-radius: var(--border-radius-m);
}

    header.responsive .nav-links-container > ul {
        flex-direction: column;
    }
/* #menu-link:hover .nav-links-container {
        display: block;
        position: absolute;
        right: 0;
        top: 2rem;
        z-index: 2;
        background-color: var(--color-white-75);
        border-top-left-radius: var(--border-radius-m);
        border-bottom-left-radius: var(--border-radius-m);
        border-bottom-right-radius: var(--border-radius-m);
    }

    #menu-link:hover .nav-links-container > ul {
        flex-direction: column;
    } */
/* #endregion*/

/* #region - calculation and tools navbar */
.page-nav-bar {
    background-color: var(--color-primary-variant);
    padding: var(--spacer-x05) 0;
}

.page-nav-bar  + .page-nav-bar{
    background-color: var(--color-primary-variant-2);
}

    .page-nav-bar nav ul {
        padding: 0;
        margin: var(--spacer-x05) 0;
        display: flex;
        justify-content: left;
        gap: var(--spacer-x1);
    }

    .page-nav-bar nav li {
        list-style-type: none;
        font-size: .9rem;
    }

    .page-nav-bar nav a {
        text-decoration: none;
        color: var(--color-on-primary);
        padding: var(--spacer-x05) var(--spacer-x1);
        display: block;
    }

    .page-nav-bar nav li.active {
        background: var(--color-surface);
        border-radius: var(--border-radius-m);
    }

        .page-nav-bar nav li.active a {
            color: var(--color-primary);
        }

    .page-nav-bar nav li:hover {
        background: rgba(255, 255, 255, 0.3);
        border-radius: var(--border-radius-m);
    }

        .page-nav-bar nav li:hover a {
            color: var(--color-on-primary);
        }

@media (max-width: 1023px) {
    .page-nav-bar nav ul {
        margin: var(--spacer-x05) 0;
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .res-btns {
        flex-direction: column;
    }
}
/* #endregion */

/* #region - Certified partners */
.certified-partners {
    display: flex;
    flex-direction: column;
    gap: var(--spacer-x2)
}

    .certified-partners > h3 {
        color: var(--color-primary);
        text-align: center;
    }

    .certified-partners > div {
        display: flex;
        justify-content: center;
        gap: var(--spacer-x2);
        max-width: 90%;
        margin: 0 auto;
    }

@media (max-width: 769px) {
    .certified-partners > div {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}
/* #endregion */

/* #region - Content next to image container */
.content-image-container {
    display: flex;
    gap: var(--spacer-x4);
    align-items: center;
}

    .content-image-container > div:first-child {
        display: flex;
        flex-direction: column;
        gap: var(--spacer-x1);
    }

    .content-image-container > div {
        flex: 1;
    }

@media (max-width: 1023px) {
    .content-image-container {
        gap: var(--spacer-x2);
    }
}

@media (max-width: 769px) {
    .content-image-container {
        flex-direction: column;
        gap: var(--spacer-x3);
        align-items: unset;
    }
}


/* #endregion */

/* #region calculation and tools */
.icon {
    width: 1rem;
}

.btn.max-width {
    max-width: 28rem;
}

.content-image-container.align-items-start {
    align-items: start;
}

.tool-data-container {
    display: flex;
    flex-direction: column;
    gap: var(--spacer-x8);
}

.tool-data-container {
    margin-bottom: var(--spacer-x8);
}

@media (max-width: 1024px) {
    .tool-data-container {
        gap: var(--spacer-x4);
    }
}
/* #endregion */

/* #region certified companies */

.section-certified-companies {
    margin-top: var(--spacer-x2);
}

.certified-companies > p {
    max-width: 95ch;
    margin: 0 auto;
}

.dataTable {
    width: 100%;
    background-color: var(--color-surface);
}

.dataTables_wrapper .bottom {
    display: flex;
    justify-content: space-between;
    gap: var(--spacer-x1);
    align-items: center;
    background-color: var(--color-surface);
    color: #6B6B6B;
}

#compTable_wrapper .dataTables_info {
    padding: 0;
}

#compTable_wrapper .dataTables_paginate .paginate_button.current {
    border: none;
    background: none;
    color: var(--color-primary) !important;
    font-weight: 600;
}
/*
    .dataTable thead {
        background-color: var(--color-primary);
        color: var(--color-on-primary);
    }*/
@media (max-width: 480px) {
    .certified-companies h1 {
        text-align: start;
    }
}
/* #endregion */

/* #region - Green statement box */
.statement-box {
    background-color: var(--color-primary);
    color: var(--color-background);
    padding: var(--spacer-x8) 0;
}

.statement-box-content {
    display: flex;
    gap: var(--spacer-x2);
    align-items: center;
}

    .statement-box-content > div:last-child {
        flex-wrap: wrap;
    }

    .statement-box-content > div:first-child {
        min-width: 12rem;
    }

        /* “ symbol */
        .statement-box-content > div:first-child > div:first-child {
            font-size: 5rem;
            font-weight: bold;
        }

    /* statement heading */
    .statement-box-content > div:last-child > div:first-child {
        color: var(--color-on-primary);
        font-size: 2.5rem;
        font-weight: 600;
        line-height: 1.2;
    }

    /* statement paragraph */
    .statement-box-content > div:last-child > div:nth-child(2) {
        font-size: 1.2rem;
    }

.statement-box img {
    border-radius: 100%;
}

.statement-image {
    flex: 1;
}

.statement-text {
    flex: 2;
}

@media (max-width: 1023px) {
    .statement-box-content > div:last-child > div:first-child {
        font-size: 2.3rem;
    }

    /* “ symbol */
    .statement-box-content > div:first-child > div:first-child {
        font-size: 5vw;
        font-weight: bold;
    }
}

@media (max-width: 769px) {
    .statement-box-content {
        flex-direction: column;
    }

        .statement-box-content > div:last-child > div:first-child {
            font-size: 2.1rem;
        }

        .statement-box-content > div:first-child {
            max-width: 70%;
        }

            /* “ symbol */
            .statement-box-content > div:first-child > div:first-child {
                font-size: 10vw;
            }
}

@media (max-width: 500px) {
    .statement-box-content > div:last-child > div:first-child {
        font-size: 1.9rem;
    }

    .statement-box-content > div:last-child > div:nth-child(2) {
        font-size: 1rem;
    }
}

@media (max-width: 420px) {
    .statement-box-content > div:last-child > div:first-child {
        font-size: 1.7rem;
    }
    /* “ symbol */
    .statement-box-content > div:first-child > div:first-child {
        font-size: 14vw;
    }
}

@media (max-width: 350px) {
    .statement-box-content > div:last-child > div:first-child {
        font-size: 1.5rem;
    }
}
/* #endregion */

/* #region - Footer */
footer {
    background-color: var(--color-secondary);
    color: var(--color-on-primary);
    padding: var(--spacer-x4) 0;
    font-size: .9rem;
}

.footer-content {
    display: flex;
    gap: var(--spacer-x4);
    justify-content: space-between;
}

    .footer-content > div {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

        .footer-content > div:first-child {
            min-width: 45%;
        }

    .footer-content .icon {
        display: block;
        width: 1rem;
    }

    .footer-content > div:first-child a {
        color: var(--color-on-primary);
        text-decoration: none;
    }

    .footer-content > div:first-child > div:first-child {
        font-size: 2rem;
        font-weight: 500;
    }

    .footer-content > div:first-child > div:last-child > div {
        font-weight: 500;
    }

    .footer-content > div:last-child > div:first-child > div:first-child {
        font-size: 1.9rem;
        font-weight: 600;
    }

footer .copyright {
    text-align: end;
    margin-top: auto;
    white-space: nowrap;
}

@media (max-width: 1023px) {
    .footer-content > div:first-child > div:first-child {
        font-size: 1.8rem;
    }
}

@media (max-width: 769px) {
    .footer-content {
        flex-direction: column;
    }

        .footer-content > div:first-child {
            gap: var(--spacer-x4);
        }

        .footer-content > div:last-child {
            gap: var(--spacer-x4);
        }

        .footer-content > div:first-child > div:first-child {
            font-size: 1.6rem;
        }

    footer .copyright {
        text-align: start;
    }
}

@media (max-width: 500px) {
    .footer-content > div:first-child > div:first-child {
        font-size: 1.4rem;
    }
}

@media (max-width: 420px) {
    .footer-content > div:first-child > div:first-child {
        font-size: 1.2rem;
    }
}

@media (max-width: 350px) {
    .footer-content > div:first-child > div:first-child {
        font-size: 1.1rem;
    }
}
/* #endregion */

/* form */

.form-group {
    padding: var(--spacer-x2);
    border: 1px solid black;
    max-width: 40rem;
    margin: 0 auto var(--spacer-x2) auto;
    position: relative;
    border-radius: var(--border-radius-btn);
}

.form-group-label {
    position: absolute;
    background-color: var(--color-background);
    display: inline-block;
    padding: 5px;
    top: -1rem;
    left: calc(var(--spacer-x1) - 5px);
}

.form-row {
    max-width: 40rem;
    margin: 0 auto var(--spacer-x1) auto;
}

    .form-row.form-row-submit {
        margin-top: var(--spacer-x4);
    }

    .form-row label {
        display: block;
        margin-bottom: var(--spacer-x05);
        user-select: none;
    }

    .form-row input {
        display: block;
        width: 100%
    }

.form-row-checkbox label {
    display: inline-block;
    cursor: pointer;
}

.form-row-checkbox input {
    display: inline-block;
    width: auto;
}

input[type="checkbox"] {
    width: 1.2rem;
    height: 1.2rem;
    display: inline-block;
    cursor: pointer;
}

.form-row input[type="checkbox"] {
    position: relative;
    top: .2rem;
    margin-left: var(--spacer-x1);
}

#compTable_wrapper {
    border-radius: var(--border-radius-m);
}

    #compTable_wrapper .top {
        background-color: var(--color-primary);
        padding: var(--spacer-x1);
        border-radius: var(--border-radius-btn) var(--border-radius-btn) 0 0;
    }

        #compTable_wrapper .top #compTable_filter {
            display: flex;
            gap: var(--spacer-x1);
            flex-direction: row-reverse;
        }

#compTable_filter {
    float: none;
}

#compTable_wrapper .top #compTable_filter label {
    margin-left: auto;
    color: var(--color-surface);
}

#compTable_wrapper .top #compTable_filter input[type="search"] {
    padding: .5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: .9rem;
    border: 1px solid var(--color-input-stroke);
    background-color: var(--color-input-bg);
    border-radius: var(--border-radius-btn);
    margin-left: var(--spacer-x1);
    border: 1px solid var(--color-input-bg);
}

#languageFilter {
    /*margin: var(--spacer-x1) var(--spacer-x1);*/
    display: none;
}

.dataTables_wrapper .bottom {
    padding: var(--spacer-x1);
}

.dataTables_wrapper .dataTables_length select {
    padding: .5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: .9rem;
    border: 1px solid var(--color-input-stroke);
    background-color: var(--color-input-bg);
    border-radius: var(--border-radius-btn);
    margin: 0;
    border: 1px solid var(--color-input-bg);
    border-right: .5rem solid var(--color-input-bg);
    box-shadow: 0 0 1px 1px rgba(0,0,0,.1);
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    padding: .5rem;
    border: 1px solid transparent;
    border-radius: var(--border-radius-btn);
    background-image: none;
}

    .dataTables_wrapper .dataTables_paginate .paginate_button.current {
        border: 1px solid var(--color-input-stroke);
        background-image: none;
    }

    .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
        border: 1px solid var(--color-input-stroke);
        background-color: var(--color-input-bg);
        box-shadow: 0 0 1px 1px rgba(0,0,0,.1);
        background-image: none;
        color: #6B6B6B !important;
    }

/* #region slider */
/* Slideshow container */
.slideshow-container {
    /*max-width: 1000px;*/
    position: relative;
    margin: auto;
}

/* Hide the images by default */
.mySlides {
    display: none;
}

    .mySlides img {
        width: 100%;
        max-height: 70vh;
        min-height: 25rem;
        object-fit: cover;
        display: block;
    }

/* The dots/bullets/indicators */
.dots-container {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
}

.dot {
    cursor: pointer;
    height: 1rem;
    width: 1rem;
    margin: 0 var(--spacer-x025);
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

    .active, .dot:hover {
        background-color: var(--color-primary);
    }

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .7
    }

    to {
        opacity: 1
    }
}
/* #endregion */

.text-page {
    display: flex;
    gap: var(--spacer-x4);
}

    .text-page img {
        max-width: 100%;
        height: auto;
    }

.text-page-intro {
    margin-top: var(--spacer-x2);
}

.text-page-left-col {
    flex: 2;
}

.text-page-right-col {
    flex: 3;
}

.text-page table {
    border-collapse: collapse;
    border: none;
}

    .text-page table td {
        padding: var(--spacer-x025) var(--spacer-x05);
        border: none;
        background-color: var(--color-surface);
    }

    .text-page table tbody tr:first-child td {
        background-color: var(--color-primary);
        color: var(--color-surface);
        font-weight: 600;
    }

    .text-page table td:first-child {
        font-weight: 600;
    }

.text-page-quicklinks {
    top: var(--spacer-x2);
    position: sticky;
    margin: var(--spacer-x2) 0;
    background-color: var(--color-primary);
    padding: var(--spacer-x2);
    border-top-right-radius: var(--border-radius-btn);
    border-bottom-left-radius: var(--border-radius-btn);
}

    .text-page-quicklinks {
        display: flex;
        flex-direction: column;
        gap: var(--spacer-x2);
    }

    .text-page-quicklinks .header {
        color: var(--color-on-primary);
        font-weight: 800;
    }

    .text-page-quicklinks .list {
    }

        .text-page-quicklinks .list a {
            color: var(--color-on-primary);
            display: block;
            padding: var(--spacer-x025) var(--spacer-x1);
        }

@media (max-width: 1023px) {
    .text-page {
        flex-direction: column;
        gap: var(--spacer-x4);
    }

    .text-page-left-col {
        flex: 2;
    }

    .text-page-right-col {
        flex: 3;
    }
}


ul.breadcrumb {
    margin: 0;
    padding: 0;
}

    ul.breadcrumb li {
        margin: 0;
        padding: 0;
        list-style-type: none;
        display: inline-block;
        background-color: transparent;
    }

    ul.breadcrumb li a {
display: inline-block;
        padding: var(--spacer-x1) 0;
    }

.nav-language {
    background-color: #26655344;
    border-bottom-left-radius: var(--border-radius-m);
    border-bottom-right-radius: var(--border-radius-m);
}

.nav-language ul {
    display: flex;
    flex-direction: column;
    gap: 0;
}

    .nav-language li a {
        padding: 0.4rem 0.5rem;
        font-size: .85rem;
        min-width: fit-content;
        white-space: nowrap;
        display: block;
    }

.nav-language-container {
    color: var(--color-on-primary);
    /*font-size: 1.2em;*/
}

.nav-language-container a {
    color: var(--color-on-primary);
    padding: 0.35em;
    border: 1px solid #00000000; /*transparent - just to keep it from jumping when hovering over*/
}

.nav-language-container a:active {
    color: var(--color-on-primary);
}

.nav-language-container a:hover {
    color: var(--color-on-primary);
    background-color: var(--color-primary-light);
    border: 1px solid var(--color-primary-light);
    border-radius: var(--border-radius-btn);
}

.nav-language-container a:visited {
    color: var(--color-on-primary);
}

#signup-form-container input.error,
#signup-form-container select.error {
    border: 1px solid red;
}

#signup-form-container label.error {
    color: red;
}