:root {
    --primary-font: 'Open Sans', sans-serif;
    --primary-color: #83C934;
    --primary-darker-color: #6FA533;
    --primary-transparent-color: rgba(131, 201, 52, 0.2);
    --secondary-color: #FFA500;
    --accent-color: #5A5AEC;
    --black-color: #231F21;
    --dark-grey-color: #444444;
    --medium-grey-color: #484848;
    --light-grey-color: #BEBEBE;
    --accordion-grey-color: #787878;
    --accordion-border-color: #D4D4D4;
    --white-color: #FFFFFF;
    --alert-color: #EE4444;
    --image-border: #F3F3F4;
    --input-border-color: #E8E8E8;
    --flip-cards-bg: #F5F5FF;
    --spacer-x1: 1rem;
    --spacer-x05: calc(var(--spacer-x1) * .5);
    --spacer-x105: calc(var(--spacer-x1) * 1.5);
    --spacer-x2: calc(var(--spacer-x1) * 2);
    --spacer-x3: calc(var(--spacer-x1) * 3);
    --spacer-x4: calc(var(--spacer-x1) * 4);
    --spacer-x6: calc(var(--spacer-x1) * 6);
    --spacer-x8: calc(var(--spacer-x1) * 8);
    --spacer-x9: calc(var(--spacer-x1) * 9);
    --border-radius-xs: 9px;
    --border-radius-s: 12px;
    --border-radius-m: 20px;
    --section-spacing-xs: var(--spacer-x1);
    --section-spacing-s: var(--spacer-x4);
    --section-spacing: var(--spacer-x8);
    --input-width: 15rem;
}

* {
    box-sizing: border-box;
}

html {
    font-size: 14px;
    font-family: var(--primary-font);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

@media (max-width: 1024px) {
    html {
        font-size: 1.6vw;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 2vw;
    }
}

@media (max-width: 610px) {
    html {
        font-size: 2.5vw;
    }
}

@media (max-width: 490px) {
    html {
        font-size: 3vw;
    }
}

@media (max-width: 410px) {
    html {
        font-size: 3.5vw;
    }
}

@media (max-width: 350px) {
    html {
        font-size: 4vw;
    }
}

body {
    color: var(--black-color);
    font-family: var(--primary-font);
    margin: 0;
    padding: 0;
    font-size: 1rem;
    overflow-x: hidden;
}

.site-width {
    margin: 0 auto;
    max-width: 1660px;
}

.site-margins {
    margin: 0 var(--spacer-x4);
}

.section-spacing {
    margin-bottom: var(--section-spacing);
}

.section-spacing-s {
    margin-bottom: var(--section-spacing-s);
}

.section-spacing-xs {
    margin-bottom: var(--section-spacing-xs);
}

#section2 {
    padding-top: var(--spacer-x2);
}

.tb-spacing {
    margin: var(--spacer-x3) 0;
}

@media (max-width: 768px) {
    .site-margins {
        margin: 0 var(--spacer-x2);
    }
}

@media (max-width: 480px) {
    .site-margins {
        margin: 0 var(--spacer-x1);
    }

    .section-spacing {
        margin-bottom: var(--spacer-x6);
    }
}

.logo > img {
    max-width: 14rem;
}

/* Flex */
.flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

.flex-row {
    flex-direction: row;
}


@media (max-width: 480px) {
    .flex {
        flex-direction: column;
    }

    .text-first {
        flex-direction: column-reverse;
    }

    .image-first {
        flex-direction: column;
    }

    .flex-row {
        flex-direction: row;
    }
}

.justify-center {
    justify-content: center;
}

.space-between {
    justify-content: space-between;
}

.align-items-center {
    align-items: center;
}

.align-items-start {
    align-items: start;
}

.gap-2rem {
    gap: 2rem;
}

.relative {
    position: relative;
}

.margin-center {
    margin: 0 auto;
}

.width-fit-content {
    width: fit-content;
}

.image-shadow {
    filter: drop-shadow(0px 0px 91.5913px rgba(0, 0, 0, 0.1));
}

.bold {
    font-weight: bold;
}

.italic {
    font-style: italic;
}

.nowrap {
    white-space: nowrap;
}

/* Text */
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

h1 {
    font-size: 3.1rem;
    line-height: 4.6rem;
}

h2,
.stats-block div h3 {
    font-size: 2.6rem;
    line-height: 3.5rem;
}

h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.5rem;
}

p,
.demo-text{
    line-height: 2rem;
    /*width: fit-content;*/
    /*font-size: 1.2rem;*/
}

a {
    text-decoration: none;
}

section a,
section a:hover,
section a:active,
section a:visited {
    color: var(--secondary-color);
}

li {
    line-height: 2rem;
}

.email {
    color: var(--primary-color);
    text-decoration: underline;
}

.secondary-color {
    color: var(--secondary-color);
}

.highlighted-text {
    color: var(--secondary-color);
    gap: 15px;
    margin: 18px;
    width: fit-content;
}

.license-price {
    font-weight: bold;
    font-size: 7rem;
    line-height: initial;
}

@media (min-width: 1400px) {
    html {
        font-size: 16px;
    }
}

@media (min-width: 1550px) {
    html {
        font-size: 18px;
    }
}

@media (max-width: 1024px) {
    h1 {
        font-size: 5vw;
    }

    h2, .stats-block div h3 {
        font-size: 3vw;
    }

    .license-price {
        font-size: 9vw;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 5.5vw;
        width: fit-content;
        line-height: 3.4rem;
    }

    h2 {
        font-size: 4.5vw;
        line-height: 2.5rem;
    }

    .stats-block div h3 {
        font-size: 4.5vw;
    }

    .license-price {
        font-size: 9.5vw;
    }

    .highlighted-text {
        flex-direction: row;
        margin: 0.5rem 1.3rem;
    }
}

@media (max-width: 610px) {
    h1 {
        font-size: 6vw;
    }

    .license-price {
        font-size: 14vw;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 6.9vw;
        line-height: 3rem;
    }

    h2,
    .stats-block div h3 {
        font-size: 6vw;
    }

    h3 {
        font-size: 1.6rem;
    }
}

/* Buttons */
.btn {
    display: block;
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: var(--border-radius-s);
    padding: .75rem var(--spacer-x2);
    font-family: var(--primary-font);
    text-decoration: none;
    color: var(--white-color);
    font-size: 1.15rem;
    margin: .5rem 0;
    width: fit-content;
    height: fit-content;
    white-space: nowrap;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all .2s ease-out;
    transform: scale(1);
}

.btn:hover,
.btn:active,
.btn:visited {
    color: var(--white-color);
}

.btn:not([disabled]):hover {
    background-color: var(--primary-darker-color);
    border: 1px solid var(--primary-darker-color);
    color: var(--white-color);
}

.btn-hollow {
    background-color: transparent;
    color: var(--primary-color);
    font-weight: bold;
}
.btn-hollow:hover,
.btn-hollow:active,
.btn-hollow:visited {
    color: var(--primary-color);
}

.btn-hollow:not([disabled]):hover {
    border: 1px solid var(--primary-transparent-color);
    background-color: var(--white-color);
    color: var(--primary-color);
}

.btn-secondary {
    border: 1px solid var(--input-border-color);
    background-color: var(--white-color);
    color: var(--black-color);
}

.btn-secondary:not([disabled]):hover {
    background-color: var(--white-color);
    color: var(--black-color);
    border: 1px solid var(--black-color);
}

.btn[disabled] {
    cursor: not-allowed;
    opacity: .4;
    transform: scale(.9);
}

.btn:active {
    transform: scale(.9);
}

.btn-wide {
    padding: .75rem var(--spacer-x9);
}

/* input */
input, select, textarea, .language-selector {
    margin: 0;
    font-family: var(--primary-font);
    border: 1px solid var(--input-border-color);
    border-radius: var(--border-radius-s);
    padding: .75rem var(--spacer-x1);
    font-size: 1.2rem;
    line-height: 1.15;
}

textarea {
    resize: none;
    width: 100%;
    height: 14rem;
    line-height: 1.4;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

input::placeholder,
textarea::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #B5B5B5;
    opacity: 1; /* Firefox */
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #B5B5B5;
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder { /* Microsoft Edge */
    color: #B5B5B5;
}

.input-asterix {
    position: relative;
    width: 100%;
}

.input-asterix.auto {
    width: auto;
}

.input-asterix > input {
    width: 100%;
}

.input-asterix::after {
    content: '*';
    position: absolute;
    top: 55%;
    right: 1rem;
    color: #B5B5B5;
    transform: translateY(-45%);
}

.input-asterix > input {
    padding-right: 2rem;
}

input:focus,
select:focus,
textarea:focus {
    border: 1px solid var(--primary-color);
    border-radius: var(--border-radius-xs);
    outline: transparent;
}

input[type="text"] {
    min-width: var(--input-width);
}

input[type="email"] {
    min-width: var(--input-width);
}

input[type="search"] {
    min-width: var(--input-width);
}

input[type="password"] {
    min-width: var(--input-width);
}

input[type="number"] {
    min-width: var(--input-width);
}

input[type="tel"] {
    min-width: var(--input-width);
}

input[type="checkbox"] {
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    width: 1.4rem;
    height: 1.4rem;
    border: 1px solid var(--input-border-color);
    background-image: url('/images/checkbox.svg');
    background-position: center;
    background-size: 1.4rem;
    background-repeat: no-repeat;
    border-radius: 34%;
    flex-shrink: 0;
}

input[type="checkbox"]:hover {
    border: 1px solid var(--primary-color);
}

input[type="checkbox"]:checked {
    background-image: url('/images/checkbox-checked.svg');
    border: 1px solid var(--primary-color);
}

.submitted input:invalid {
    border-color: var(--alert-color);
}

/* Select */
select,
label,
a,
.language-selector {
    cursor: pointer;
}

select,
.language-selector {
    border: 1px solid #D0D0D0;
    border-radius: var(--border-radius-s);
    background-color: var(--white-color);
    padding-right: 2rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-position: calc(100% - .5rem) center;
    background-repeat: no-repeat;
    background-size: .75rem;
    background-image: url(/images/icon-down.svg);
}

select > option {
    font-size: 1.15rem;
}

header select > option {
    font-size: .9rem;
}

/* Images */
.image > img {
    width: 100%;
    display: block;
}

.image.frontpage > img {
    max-width: 60%;
    margin: 0 auto;
}

.image.border-radius > img {
    border-radius: var(--border-radius-s);
}

.image.border {
    border: 1px solid var(--image-border);
    border-radius: var(--border-radius-s);
}

header {
    box-shadow: inset 0px -1px 0px #F3F3F4;
    /*height: 14rem;*/
}

header nav,
#nav-main,
.logo-close-header {
    display: flex;
    align-items: center;
    gap: var(--spacer-x2);
    padding: var(--spacer-x1) 0;
    font-size: .9rem;
}

#nav-main {
    justify-content: space-between;
    width: 100%;
    padding: 0;
}

#nav-main > ul {
    display: flex;
    padding: 0;
    margin: 0;
}

#nav-main > ul {
    gap: var(--spacer-x2);
}

#nav-main ul li {
    list-style-type: none;
}

header nav ul li a {
    white-space: nowrap;
    text-decoration: none;
    color: var(--black-color);
    user-select: none;
}

#nav-main > .header-buttons {
    display: flex;
    gap: var(--spacer-x2);
    margin-left: auto;
}

#nav-main .header-buttons > div:first-child {
    display: flex;
    gap: var(--spacer-x1);
}

#menu-link {
    display: none;
}

#close-link {
    display: none;
}

.logo-white {
    display: none;
}

header .btn {
    font-size: .9rem;
}

li.dropdown {
    position: relative;
}

li.dropdown > ul {
    display: none;
}

li.dropdown.active > ul {
    display: flex;
}

li.dropdown > ul {
    flex-direction: column;
    position: absolute;
    background-color: var(--primary-color);
    padding: 0.2rem 0.4rem;
    border-radius: 15px;
}

li.dropdown > ul > li ul {
    top: 0;
    left: 100%;
}

li.dropdown > ul li {
    padding: .2rem 0;
}

li.dropdown > ul a {
    color: var(--white-color);
    padding: .5rem 5rem .5rem 1rem;
    white-space: nowrap;
    display: block;
}

li.dropdown > ul a:hover {
    background-color: var(--primary-darker-color);
    border-radius: var(--border-radius-xs);
}

.language-selector {
    display: flex;
    flex-direction: column;
    position: relative;
    user-select: none;
}

.languages-dropdown {
    display: none;
    flex-direction: column;
    position: absolute;
    background-color: var(--white-color);
    width: 100%;
    left: 0;
    top: 100%;
    border: 1px solid #D0D0D0;
    border-radius: var(--border-radius-s);
}

.language-selector.open .languages-dropdown {
    display: flex;
}

.current-language {
    display: flex;
}

.languages-dropdown > a {
    display: flex;
    padding: .5rem var(--spacer-x1);
}

.languages-dropdown > .selected {
    background-color: var(--input-border-color);
    border-radius: var(--border-radius-xs);
}

.languages-dropdown > a:hover {
    background-color: var(--input-border-color);
    border-radius: var(--border-radius-xs);
}

@media (max-width: 1050px) {
    .dropdown-arrow {
        transform: rotate(-90deg);
        color: var(--white-color);
        width: 0.7rem;
        margin: 1rem 0;
    }

    nav {
        justify-content: space-between;
        padding-top: var(--spacer-x2) !important;
        margin-bottom: var(--section-spacing);
    }


    .logo-close-header {
        padding-top: var(--spacer-x2);
    }

    #nav-main {
        position: fixed;
        height: 100%;
        width: 100%;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 4;
        transform: translateX(100%);
        transition: transform .2s ease-in-out;
        background-color: var(--primary-color);
        color: var(--white-color);
        overflow-y: auto;
        flex-direction: column;
        justify-content: start;
    }

    #nav-main.show {
        transform: translateX(0);
    }

    #nav-main > ul {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        margin-top: var(--spacer-x4);
        width: 75%;
        margin-bottom: var(--spacer-x6);
    }

    #nav-main > ul li {
        font-size: 1.4rem;
    }

    #menu-link.show {
        visibility: visible;
    }

    #menu-link {
        display: flex;
        visibility: hidden;
        z-index: 1;
    }

    #close-link.show {
        display: flex;
        top: .5rem;
        z-index: 4;
        width: 3rem;
        justify-content: end;
    }

    #menu-icon, #close-icon {
        display: inline-block;
        height: 1.5rem;
    }

    .logo-close-header {
        width: calc(100% - (var(--spacer-x2) * 2));
    }

    header .logo {
        z-index: 5;
    }

    #nav-main .header-buttons > div:first-child {
        flex-direction: column;
        align-items: center;
    }

    #nav-main > .header-buttons {
        margin: 0;
    }

    #nav-main > ul li a {
        color: var(--white-color);
        padding: 0.5rem 1rem;
        display: block;
        margin: 0.5rem 0;
    }

    .header-buttons > div .btn {
        background-color: var(--white-color);
        color: var(--primary-color);
        border-color: var(--white-color);
        font-size: 1.2rem;
    }

    .header-buttons > div .btn-hollow {
        background-color: var(--primary-color);
        color: var(--white-color);
        border-color: var(--white-color);
    }

    .menu-fixed .logo-white {
        display: block;
        width: 14rem;
    }

    .menu-fixed .logo-black {
        display: none;
    }

    li.dropdown.active {
        padding-bottom: 1rem;
        border-bottom: 1px solid var(--white-color);
    }

    li.dropdown > ul {
        position: static;
    }

    li.dropdown > a::after {
        content: "\00a0";
        display: inline-block;
        background-image: url(../images/dropdown-arrow.svg);
        background-repeat: no-repeat;
        background-size: 1rem;
        width: 1rem;
        background-position: center;
        margin-left: 1rem;
    }

    li.dropdown.active > a::after {
        transform: rotate(180deg);
    }

    li.dropdown > ul a {
        padding: 0;
    }

    li.dropdown.active > a {
        border-bottom: 1px solid var(--white-color);
        padding-bottom: 1.5rem;
        display: block;
        margin-bottom: 1rem;
    }

    li.dropdown > ul > li:last-child > a {
        margin-bottom: 0;
    }

    .menu-fixed {
        position: fixed;
        z-index: 5;
    }

    .menu-fixed #nav-main .header-buttons {
        margin-bottom: 5rem;
        flex-direction: column;
    }

    .image.frontpage > img {
        max-width: 90%;
    }
}

@media (min-width: 769px) {
    li.dropdown:hover > ul {
        display: flex;
    }
}

@media (max-width: 480px) {

    header nav.site-margins {
        margin: 0 var(--spacer-x2);
    }
}
/* Intro block */

.intro-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacer-x2);
}

.intro-block h1 {
    width: 65%;
    text-align: center;
}

.intro-text {
    text-align: center;
    width: 50%;
}

.intro-text.font-medium {
    font-size: 1.4rem;
}

.icon {
    width: 1.5rem;
}
.animation-icon {
    width: 4rem;
}
.animation-icon.clock {
    width: 3.2rem;
}

.accent,
.accent:hover,
.accent:active,
.accent:visited {
    color: var(--accent-color);
}

.highlighted-text .accent:active {
    background-color: var(--accent-color);
    color: var(--white-color);
}

@media (max-width: 1024px) {
    /* Intro block */
    .intro-block h1 {
        width: 85%;
    }

    .intro-text {
        width: 65%;
    }
}

@media (max-width: 768px) {
    /* Intro block */
    .intro-text {
        text-align: center;
        width: 90%;
    }

    .tablet-flex-column {
        flex-direction: column;
    }
}

/* Logo block */

.logo-block {
    gap: 35px;
    align-items: center;
    justify-content: center;
}

@media only screen and (max-width: 1024px) {
    .logo-block {
        gap: 20px;
    }
}

@media only screen and (max-width: 768px) {
    .logo-block {
        flex-wrap: wrap;
    }

    .logo-block .image {
        flex-basis: calc(25% - 7px);
        margin: 0 auto;
    }
}

@media only screen and (max-width: 480px) {
    .logo-block {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .logo-block .image {
        flex-basis: calc(40% - 7px);
        margin: 0 auto;
    }
}

/* Stats block */
.stats-block {
    flex-direction: column;
    text-align: center;
}

.stats-block h2 {
    margin: 0 auto 40px auto;
    width: 60%;
}

.stats-div {
    gap: 2.8rem;
}

.stats-div div {
    flex-direction: column;
    text-align: center;
    width: fit-content;
    justify-content: center;
    align-items: center;
    flex: 1;
    gap: var(--spacer-x1);
}

.stats-div div p {
    margin: 0;
    line-height: 1.4;
}

.stats-block div h3 {
    font-weight: 500;
    margin: 0;
    color: var(--secondary-color);
}

@media only screen and (max-width: 1024px) {
    /* Stats block */
    .stats-block h2 {
        width: 75%;
    }
}

@media only screen and (max-width: 768px) {
    .stats-block h2 {
        width: auto;
    }

    .stats-div {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
}

@media only screen and (max-width: 480px) {
    /* Stats block */
    .stats-block {
        padding: 50px 0;
    }
}

/* Two column +  .wide-img */
.wide-img {
    margin-right: -4rem;
}

@media only screen and (max-width: 768px) {
    .wide-img {
        margin-right: -2rem;
    }
}

@media only screen and (max-width: 480px) {
    .wide-img {
        margin-right: -1rem;
    }
}

.text-column-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--spacer-x1);
}

.text-column-wrapper > .accent {
    margin: 0;
}

.text-column-border.text-column-border {
    gap: 0;
}

.text-column-border .text-column-wrapper {
    border: 1px solid var(--primary-color);
    border-left: none;
    padding: var(--spacer-x3);
    border-start-end-radius: var(--border-radius-m);
    border-end-end-radius: var(--border-radius-m);
}

.two-column {
    display: flex;
    gap: var(--spacer-x4);
    align-items: center;
}

.two-equal-column > div {
    flex: 1;
}

.three-four {
    flex-wrap: wrap;
}

.three-four > div:first-child {
    flex: 3;
}

.three-four > div:last-child {
    flex: 4;
}

.four-three {
    flex-wrap: wrap;
}

.four-three > div:first-child {
    flex: 4;
}

.four-three > div:last-child {
    flex: 3;
}

@media (max-width: 768px) {
    .two-column {
        flex-direction: column;
        gap: var(--spacer-x2);
        justify-items: center;
    }

    .two-column > div.image {
        order: 1;
    }

    .two-column > div:not(.image) {
        order: 2;
    }
}

/* #region - TESTIMONIAL */
.border-surface {
    padding: var(--spacer-x4);
    border: 1px solid var(--primary-color);
    border-radius: var(--border-radius-m);
}

.one-third-columns-wrapper {
    display: flex;
    gap: var(--spacer-x4);
    align-items: center;
}

.one-third-columns-wrapper > div:first-child {
    flex: 1;
}

.one-third-columns-wrapper > div:last-child {
    flex: 2;
}

.quote-symbol {
    position: absolute;
    top: 50%;
    left: -8%;
    transform: translateY(-50%);
}

.image-circle {
    border-radius: 100%;
}

@media (max-width: 768px) {
    .one-third-columns-wrapper {
        flex-direction: column;
    }

    .quote-symbol {
        left: -5%;
    }

    .one-third-columns-wrapper .relative {
        max-width: 70%;
    }
}

@media (max-width: 600px) {
    .border-surface {
        padding: var(--spacer-x2);
    }

    .one-third-columns-wrapper {
        gap: var(--spacer-x2);
    }
}

@media (max-width: 480px) {
    .one-third-columns-wrapper .relative {
        max-width: 85%;
    }
}
/* #endregion */

/* #region license box */
.section-overflow {
    padding: 4rem 0;
    /*overflow-x: hidden;*/
}

.license-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: fit-content;
    margin: 0 auto;
}

.license-box > div {
    flex-direction: column;
}

.license-box .highlighted-text {
    margin: .5rem;
}

.license-box + .image {
    position: absolute;
    right: -28%;
    bottom: -3%;
    width: 15vw;
}

.license-box .btn {
    margin: 0 auto;
}

.full-license-box {
    margin: initial;
    overflow-x: hidden;
}

.image-border-container .wide-img-overflow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    max-width: calc(50% - var(--spacer-x2));
}

.wide-image-container .wide-img-overflow {
    top: 47%;
}

.image-border-container .wide-img-overflow.no-margin {
    right: -4rem;
}

.image-border-container .wide-img-overflow.no-margin.license {
    max-width: calc(60% - var(--spacer-x2));
}

.image-border-container.image-first .text-column-wrapper {
    margin-left: auto;
}

.image-border-container.image-first .wide-img-overflow {
    right: unset;
}

.price-overview-column > div:first-child {
    flex: 1.5;
}

.price-overview-column > div:last-child {
    flex: 1;
}

.license-box .bigger-p {
    font-size: 1.3rem;
}

.image-border-container {
    padding: var(--spacer-x4) 0;
}

.image-border-container.celebration-card {
    padding: var(--spacer-x6) 0;
}


.image-border-container .text-column-wrapper {
    max-width: calc(50% - var(--spacer-x2));
}

.image-border-container .wide-img-overflow.no-margin {
    max-width: calc(50% - var(--spacer-x2));
    /*right: 0;*/
}

.image-border-container.text-first .wide-img-overflow:not(.no-margin) {
    right: 0;
}

.image-border-container .wide-img-overflow.handshake {
    max-width: calc(43% - var(--spacer-x2));
    top: 50%;
}

.image-border-container.celebration-card .wide-img-overflow {
    top: 50%;
    max-width: calc(40% - var(--spacer-x2));
}


.wide-image-container {
    padding: var(--spacer-x8) 0;
}


.image.invoicing {
    display: flex;
    justify-content: center;
}

.image.invoicing > img {
    max-width: 50%;
}

@media (max-width: 1600px) {
    .image-border-container .wide-img-overflow.no-margin {
        max-width: calc(55% - var(--spacer-x2));
    }

    .image-border-container.celebration-card .wide-img-overflow {
        max-width: calc(45% - var(--spacer-x2));
    }
    .image-border-container.celebration-card {
        padding: var(--spacer-x8) 0;
    }

}

@media (max-width: 1550px) {
    .wide-image-container {
        padding: var(--spacer-x8) 0;
    }
    .image-border-container.celebration-card {
        padding: 10rem 0;
    }
}

@media (max-width: 1450px) {
    .wide-image-container {
        padding: var(--spacer-x6) 0;
    }
    .image-border-container.celebration-card {
        padding: 8rem 0;
    }
}

@media (max-width: 1400px) {
    .image-border-container .wide-img-overflow.no-margin {
        max-width: calc(60% - var(--spacer-x2));
    }
    /*      .image-border-container.celebration-card .wide-img-overflow {
            max-width: calc(50% - var(--spacer-x2));
        }*/
    .wide-image-container {
        padding: 12rem 0;
    }
    .image-border-container.celebration-card {
        padding: 11rem 0;
    }

}

@media (max-width: 1300px) {
    .wide-image-container {
        padding: var(--spacer-x6) 0;
    }

    .image-border-container.celebration-card {
        padding: 9rem 0;
    }
}

@media (max-width: 1200px) {
    .image-border-container .wide-img-overflow.no-margin.license {
        max-width: calc(65% - var(--spacer-x2));
    }

    .image-border-container.celebration-card {
        padding: 6rem 0;
    }
}

@media (max-width: 1100px) {
    .image-border-container .wide-img-overflow.no-margin.license {
        max-width: calc(70% - var(--spacer-x2));
    }

    .wide-image-container {
        padding: 0;
    }

    .image-border-container .wide-img-overflow.handshake {
        max-width: calc(50% - var(--spacer-x2));
    }

    .image-border-container.celebration-card {
        padding: 3rem 0;
    }
}

@media (max-width: 1024px) {
    .image-border-container {
        padding: 0;
    }

    .celebration-card {
        padding: 1rem 0;
    }

    .image.invoicing > img {
        max-width: 60%;
    }

    .image-border-container .wide-img-overflow.no-margin.license {
        max-width: calc(60% - var(--spacer-x2));
    }

    .license-box + .image {
        width: 20vw;
    }

    .border-surface {
        padding: var(--spacer-x6) var(--spacer-x2);
    }

    .image-border-container.image-first .wide-img-overflow {
        left: 2rem;
    }

    .image-border-container.text-first .wide-img-overflow:not(.no-margin) {
        right: 2rem;
    }

    .image-border-container .text-column-wrapper {
        max-width: calc(50% - var(--spacer-x2));
    }

    .image-border-container .wide-img-overflow,
    .image-border-container .wide-img-overflow.handshake,
    .image-border-container.celebration-card .wide-img-overflow {
        max-width: calc(50% - var(--spacer-x2) - var(--spacer-x2));
    }

    .image-border-container.celebration-card .wide-img-overflow {
        right: var(--spacer-x2);
    }
}

@media (max-width: 768px) {
    .license-box + .image {
        right: -22%;
    }

    .image-border-container .wide-img-overflow {
        position: static;
        transform: translateY(0);
        margin: 0 auto;
        max-width: 70%;
    }

    .image-border-container .image.tablet-small-image,
    .image.tablet-small-image {
        max-width: 70%;
    }

    .border-surface {
        display: flex;
        justify-content: center;
    }

    .image-border-container {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    /*    .intro-section {
            margin-bottom: 2rem;
        }*/
    .image-border-container.text-first {
        flex-direction: column-reverse;
    }

    .image-border-container.image-first {
        flex-direction: column;
    }

    .image-border-container .text-column-wrapper {
        max-width: unset;
    }

    .image-border-container .wide-img-overflow.no-margin {
        transform: translateY(0);
    }

    .image-border-container .wide-img-overflow.no-margin {
        max-width: 80%;
        margin-right: -2rem;
    }

    .image.invoicing > img {
        max-width: 50%;
    }

    .image-border-container .wide-img-overflow.no-margin.license {
        max-width: calc(80% - var(--spacer-x2));
    }
}

@media (max-width: 610px) {
    .license-box + .image {
        right: -17%;
    }
}

@media (max-width: 480px) {
    .border-surface {
        padding: var(--spacer-x2);
    }

    .license-box + .image {
        right: -8%;
    }

    .image-border-container .wide-img-overflow.no-margin,
    .image-border-container .wide-img-overflow {
        max-width: 100%;
    }

    .image-border-container .image.tablet-small-image,
    .image.tablet-small-image {
        max-width: 100%;
    }

    .image.invoicing > img {
        max-width: 60%;
    }

    .image-border-container .wide-img-overflow.no-margin.license {
        max-width: calc(100% - var(--spacer-x2));
    }
}
/* #endregion */

.image.shadow-22px > img {
    filter: drop-shadow(0px 0px 22px rgba(0, 0, 0, 0.05));
}

.image.shadow-79px > img {
    filter: drop-shadow(0px 0px 79.3327px rgba(0, 0, 0, 0.1));
}

.image.notification,
.image.product-image {
    display: flex;
    justify-content: center;
}

.image.notification > img {
    max-width: 45%;
}

.image.product-image > img {
    max-width: 75%;
}

.image.shadow-4px > img {
    filter: drop-shadow(0px 4.74124px 80px rgba(0, 0, 0, 0.05));
}
.image.shadow-4px-01 > img {
    filter: drop-shadow(0px 4px 80px rgba(0, 0, 0, 0.1));
}
.image.shadow-4px-4px > img {
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

@media (max-width: 1024px) {
    .image.notification > img {
        max-width: 65%;
    }

    .image.product-image > img {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .image.notification > img {
        max-width: 40%;
        margin-top: var(--spacer-x2);
    }
}

@media (max-width: 480px) {
    .image.notification > img {
        max-width: 55%;
    }
}



/* #region - CARDS */
.flip-card-bg {
    background-color: var(--flip-cards-bg);
}

.flip-card-container.two-column {
    align-items: start;
    padding: var(--spacer-x8) 0;
}

.flip-card-container > div:first-child {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: var(--spacer-x1);
}

.flip-cards-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: var(--spacer-x2);
}

.flip-card-panel {
    width: 90%;
    height: 20rem;
    position: relative;
    font-size: .8em;
    -webkit-perspective: 600px;
    perspective: 600px;
}

.flip-card-panel .front {
    float: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 900;
    width: inherit;
    height: inherit;
    -webkit-transform: rotateX(0) rotateY(0);
    transform: rotateX(0) rotateY(0);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    font-size: 1.8rem;
    background-color: var(--white-color);
    border: 1px solid var(--primary-color);
    border-radius: var(--border-radius-s);
}

.flip-card-panel.flip .front {
    z-index: 900;
    -webkit-transform: rotateY(179deg);
    transform: rotateY(179deg);
}

.flip-card-panel .back {
    float: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 800;
    width: inherit;
    height: inherit;
    -webkit-transform: rotateY(-179deg);
    transform: rotateY(-179deg);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    color: var(--font-secondary-color);
    padding: var(--spacer-x2);
    background-color: var(--white-color);
    border: 1px solid var(--primary-color);
    border-radius: var(--border-radius-s);
    overflow-y: auto;
}

.flip-card-panel .back p {
    font-size: .9rem;
}

.flip-card-panel.flip .back {
    z-index: 1000;
    -webkit-transform: rotateX(0) rotateY(0);
    transform: rotateX(0) rotateY(0);
}

.back-card-tab {
    background-color: var(--accent-color);
    width: 33%;
    height: 9%;
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 0 var(--border-radius) 0 var(--border-radius);
}

.solution {
    width: 100%;
    color: var(--font-secondary-color);
    padding: var(--spacer-x2);
    display: flex;
    flex-direction: column;
    gap: var(--spacer-x2);
    height: 100%;
    justify-content: center;
}

.solution .icon {
    width: 3rem;
}

@media (max-width: 1024px) {
    .flip-card-panel {
        width: 100%;
    }

    .two-equal-column .flip-cards-wrapper {
        flex: 1.5;
    }

    .flip-cards-wrapper {
        width: 100%;
    }

    .flip-card-panel .front {
        font-size: 2.5vw;
    }
}

@media (max-width: 768px) {
    .flip-card-container.two-column {
        padding: var(--spacer-x6) var(--spacer-x4);
        gap: var(--spacer-x4);
    }

    .flip-card-panel .front {
        font-size: 3vw;
    }
}

@media (max-width: 610px) {
    .flip-card-container.two-column {
        padding: var(--spacer-x6) 0;
    }

    .solution,
    .flip-card-panel .back {
        padding: var(--spacer-x2);
    }

    .flip-card-panel .front {
        font-size: 3.7vw;
    }
}

@media (max-width: 480px) {
    .flip-card-container.two-column {
        /*padding: var(--spacer-x8) 0;*/
    }

    .flip-card-panel .front {
        font-size: 4.5vw;
    }
}

@media (max-width: 350px) {
    .solution,
    .flip-card-panel .back {
        padding: var(--spacer-x1);
    }
}

/* #endregion */
/* #region - NEWSLETTER */
.newsletter-form {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    gap: var(--spacer-x105);
}

.newsletter-form label > div {
    font-size: .9rem;
    color: #999999;
}

.newsletter-form.intro-text {
    text-align: start;
}

    .agreement-check {
        display: flex;
        gap: var(--spacer-x1);
    }

    .agreement-check input[type="checkbox"] {
        position: relative;
        top: var(--spacer-x05);
    }

    .agreement-check a {
        color: inherit;
        cursor: pointer;
        text-decoration: underline;
    }

    .agreement-check div,
    .agreement-check p {
        cursor: initial;
        user-select: none;
    }

    .newsletter-form input:not(input[type="checkbox"], input[type="submit"]) {
        width: 100%;
    }

.newsletter-form input[type=submit] {
    margin: 0 auto;
}
/* #endregion */

/* #region - BOOKING */
.border-box-shadow-container {
    gap: var(--spacer-x4);
    padding: var(--spacer-x4);
    border: 1px solid #D9D9D9;
    border-radius: 26px;
    box-shadow: 0px 4px 53px rgba(0, 0, 0, 0.05);
}

.booking-container {
    display: flex;
}

.booking-container > div:first-child {
    flex: 1;
    display: flex;
    flex-direction: column;
    font-weight: 600;
    font-size: 1rem;
}

.booking-container > div:last-child {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: var(--spacer-x2);
}

.booking-container > div:first-child > div.image {
    max-width: 80%;
    align-self: center;
}

.booking-form {
    display: flex;
    flex-direction: column;
}

.booking-form .form-buttons > * {
    width: 100%;
}

.booking-form > div {
    display: flex;
    gap: var(--spacer-x1);
}

.form-date label {
    display: block;
}

.form-date-label {
    white-space: nowrap;
    font-size: 1.2rem;
    color: var(--light-grey-color);
    padding: 0.75rem var(--spacer-x1);
}

@media (min-width: 768.1px) and (max-width: 1024px) {
    .form-date-label,input, select, textarea, .language-selector {
        font-size: 1rem;
    }
}

.icon-text-wrapper {
    display: flex;
    gap: var(--spacer-x1);
}

.booking-container > div:first-child .large-text {
    font-size: 2rem;
}

.booking-container > div:last-child .large-text {
    font-size: 1.8rem;
    font-weight: 600;
}

.booking-container .icon-text-wrapper.align-items-start > img {
    margin-top: .2rem;
}

.change-month p,
.time-picker p {
    color: var(--medium-grey-color);
    font-size: 1.3rem;
}

#arrow-right {
    transform: rotate(180deg);
}

.calendar-container {
    flex-wrap: wrap;
}

.calendar-grid {
    flex-basis: calc(80% - 1rem);
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-auto-rows: 4rem;
    justify-items: center;
    align-items: center;
    gap: 0.2rem;
}

.calendar-grid > .weekday {
    font-weight: 700;
    height: fit-content;
    border-bottom: 2px solid #F7F7F7;
}

.date {
    width: 4rem;
    height: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.date p {
    line-height: 1;
}

.date-active {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.date-inactive {
    color: var(--light-grey-color);
}

.date-available {
    background-color: var(--primary-transparent-color);
}

.time-picker {
    flex-basis: calc(20% - 1rem);
    gap: 0.5rem;
}

.time-picker button {
    color: var(--black-color);
}

.place-center {
    margin: 0 auto;
}

.grid-center {
    display: grid;
    place-content: center;
}

.scroll {
    display: flex;
    flex-direction: column;
    margin-top: 0.5rem;
    overflow-y: scroll;
    max-height: 25rem;
    background-color: #fff;
    margin: 0 0 10px 0;
}

.scroll::-webkit-scrollbar {
    width: 0.67rem;
}

.scroll::-webkit-scrollbar-track {
    border-radius: var(--border-radius-xs);
}

.scroll::-webkit-scrollbar-thumb {
    border-radius: var(--border-radius-m);
    background-color: #f7f7f7;
    height: 220px;
}


@media (max-width: 1024px) {
    .booking-container > div:first-child .large-text {
        font-size: 3vw;
    }

    .booking-container > div:last-child .large-text {
        font-size: 2.5vw;
    }

    .booking-form > div:first-child {
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .booking-container {
        flex-direction: column;
    }

    .booking-container > div:first-child .large-text {
        font-size: 4vw;
    }

    .booking-container > div:last-child .large-text {
        font-size: 3vw;
    }

    .booking-container > div:first-child > div.image {
        max-width: 70%;
    }

    .calendar-grid {
        flex-basis: calc(75% - 1rem);
        grid-auto-rows: 3.8rem;
    }

    .date {
        width: 3.8rem;
        height: 3.8rem;
    }

    .time-picker {
        flex-basis: calc(25% - 1rem);
    }
}

@media (max-width: 610px) {
    .booking-container {
        padding: var(--spacer-x2);
    }

    .booking-container > div:first-child .large-text {
        font-size: 6vw;
    }

    .booking-container > div:last-child .large-text {
        font-size: 4.5vw;
    }

    .time-picker {
        flex-basis: 100%;
    }

    .scroll {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .time-picker-btn {
        flex-basis: calc(33% - 1rem);
    }
}

@media (max-width: 490px) {
    .calendar-grid {
        grid-auto-rows: 3rem;
    }

    .date {
        width: 3rem;
        height: 3rem;
    }
}


@media (max-width: 480px) {
    .booking-form .form-buttons {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .booking-container > div:first-child .large-text {
        font-size: 6.5vw;
    }

    .booking-container > div:last-child .large-text {
        font-size: 5vw;
    }

    .booking-container > div:first-child > div.image {
        max-width: 85%;
    }

    .btn-wide {
        padding: 0.75rem var(--spacer-x4);
    }

    .border-box-shadow-container {
        padding: var(--spacer-x2);
    }
}

@media (max-width: 350px) {
    .border-box-shadow-container {
        padding: var(--spacer-x1);
    }

    .calendar-grid {
        grid-auto-rows: 2.8rem;
    }

    .date {
        width: 2.8rem;
        height: 2.8rem;
    }
}
/* #endregion */

/* #region - DEMO BOX */
.demo-box {
    padding: var(--spacer-x2) 0;
    position: relative;
}

.half-bg-color {
    position: absolute;
    background-color: var(--primary-color);
    height: 50%;
    width: 100%;
    bottom: 0;
    z-index: 0;
}

.demo-box .demo-text {
    background-color: var(--white-color);
    padding: var(--spacer-x4) var(--spacer-x8);
    text-align: center;
    max-width: 80%;
    border-radius: var(--border-radius-m);
    align-items: center;
    margin: 0 auto;
    box-shadow: 0px 4px 85px rgba(0, 0, 0, 0.1);
    position: relative;
}

@media (max-width: 768px) {
    .demo-box .demo-text {
        padding: var(--spacer-x4);
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .demo-box .demo-text {
        padding: var(--spacer-x2);
    }
}
/* #endregion */

/* #region - TEXT BLOCK */
.text-block {
    max-width: 700px;
    margin: 0 auto;
}

.text-block > p,
.panel > p {
    margin-bottom: var(--spacer-x2);
}

@media (max-width: 1400px) {
    .text-block {
        width: 45%;
    }
}

@media (max-width: 1200px) {
    .text-block {
        width: 55%;
    }
}

@media (max-width: 1024px) {
    .text-block {
        width: 75%;
    }
}

@media (max-width: 610px) {
    .text-block {
        width: 80%;
    }
}

@media (max-width: 480px) {
    .text-block {
        width: calc(100% - var(--spacer-x2));
    }
}

.text-page h3 {
    margin-top: var(--spacer-x4);
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
}

.accordion {
    width: 100%;
    text-align: left;
    font-weight: bold;
    font-size: 1.2rem;
    transition: 0.4s;
    padding: 2rem 0;
    border-bottom: 1px solid var(--accordion-border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--black-color);
}

@media (max-width: 490px) {
    .accordion {
        font-size: 1.4rem;
    }
}

@media (max-width: 410px) {
    .accordion {
        font-size: 1.3rem;
    }
}

.accordion:after {
    font-size: 1.2rem;
    color: var(--accordion-grey-color);
    content: "+";
}

.accordion-active:after {
    font-size: 1.2rem;
    color: var(--accordion-grey-color);
    content: "-";
}

.panel {
    margin: var(--spacer-x2) 0;
    display: none;
    overflow: hidden;
}

/* #endregion */

/* #region - FOOTER */
footer > div {
    display: flex;
    gap: var(--spacer-x2);
    justify-content: space-between;
    padding: var(--spacer-x4) 0;
    font-size: .95rem;
}

footer > div > div:last-child {
    text-align: end;
}

footer > div > div:last-child ul {
    padding: 0;
    margin: 0;
}

footer > div > div:last-child li {
    list-style-type: none;
}

footer > div > div:last-child a {
    text-decoration: none;
    color: var(--black-color);
}

a[href^="tel"],
a[href^="mailto"],
.footer-link {
    color: inherit;
    text-decoration: none;
    line-height: 2rem;
}

ul.footer-links.text-column-wrapper {
    gap: var(--spacer-x05);
}

ul.footer-links.text-column-wrapper li {
    line-height: initial;
}

ul.footer-links.text-column-wrapper a {
    display: block;
}

footer p {
    line-height: 1.4;
}

    @media (max-width: 768px) {
        footer > div {
            display: grid;
            grid-template-columns: auto auto;
            grid-template-rows: auto;
        }

    footer > div > div:first-child {
        grid-row: 2;
    }

    footer > div > div.image {
        grid-column: 1/3;
        margin: 0 auto;
    }

    footer > div > div:last-child {
        grid-row: 2;
    }
}

@media (max-width: 480px) {
    footer > div {
        grid-template-columns: auto;
        gap: var(--spacer-x3);
    }

    footer > div > div.image {
        grid-column: 1;
    }

    footer > div > div:last-child {
        grid-row: 3;
        text-align: left;
    }

    footer > div.site-margins {
        margin: 0 var(--spacer-x2);
    }
}
/* #endregion */


/* mailchimp */

#mce-responses {
    text-align: center;
}

/* #region svg animation */
.checkmark-animation.active .checkmark-circle {
    stroke-dasharray: 3000;
    stroke-dashoffset: 0;
    pointer-events: none;
    animation: drawCircle 1.5s linear forwards;
    stroke: var(--secondary-color);
    animation-delay: .1s;
    visibility: hidden;
}

.checkmark-animation.active.spin {
    animation: spin 1s linear forwards;
    animation-delay: .1s;
    visibility: hidden;
}

.checkmark-animation.active .checkmark-tick {
    visibility: hidden;
    stroke-dasharray: 2000;
    stroke-dashoffset: 0;
    pointer-events: none;
    animation: drawTick 1s linear forwards;
    animation-delay: 1.1s;
    stroke: var(--secondary-color);
}

.clock.active .hour-hand {
    animation: counterClockWise 10s infinite linear;
    animation-delay: .1s;
    visibility: hidden;
}

.clock.active .minute-hand {
    animation: counterClockWise 1.5s infinite linear;
    animation-delay: .1s;
    visibility: hidden;
}

@keyframes drawCircle {
    0% {
        visibility: visible;
        stroke-dasharray: 0, 4000;
    }

    100% {
        visibility: visible;
        stroke-dasharray: 4000,0;
    }
}

@keyframes drawTick {
    0% {
        visibility: visible;
        stroke-dasharray: 0, 2000;
    }

    100% {
        visibility: visible;
        stroke-dasharray: 2000,0;
    }
}

@keyframes spin {
    0% {
        visibility: visible;
        transform: rotateY(0deg);
    }

    33% {
        visibility: visible;
        transform: rotateY(360deg);
    }

    66% {
        visibility: visible;
        transform: rotateY(0deg);
    }

    100% {
        visibility: visible;
        transform: rotateY(360deg);
    }
}

@keyframes counterClockWise {
    0% {
        visibility: visible;
        transform: rotate(0deg);
        transform-origin: 50% 50%;
    }

    100% {
        visibility: visible;
        transform: rotate(-360deg);
        transform-origin: 50% 50%;
    }
}
/* #endregion */

/* #region - forms */
.custom-form .umbraco-forms-fieldset {
    padding: 0;
}
.custom-form .umbraco-forms-field {
    padding: .5rem 0;
}
.custom-form input[type=text],
.custom-form input[type=email],
.custom-form input[type=tel] {
    width: 100%;
}
.custom-form .mandatory .umbraco-forms-field-wrapper {
    display: flex;
    /*gap: var(--spacer-x1);*/
}
.custom-form .dataconsent .umbraco-forms-field-wrapper {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--spacer-x1);
}
.custom-form fieldset {
    border: none;
}
.custom-form .row-fluid:has(.col-md-6) {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacer-x1);

}
.custom-form .umbraco-forms-navigation {
    margin-top: var(--spacer-x2);
}
.custom-form .umbraco-forms-navigation input[type=submit] {
    width: 100%;
}
.custom-form .dataconsent .umbraco-forms-field-wrapper {
    line-height: 2rem;
}
.custom-form .dataconsent a {
    color: inherit;
    text-decoration: underline;
}
.custom-form .dataconsent input[type=checkbox] {
    margin: .3rem 0;
}
.custom-form .field-validation-error {
    grid-column: 2;
    color: red;
}
.custom-form .email {
    text-decoration: none;
}
.custom-form .field-validation-valid:empty {
    display: none;
}
.custom-form .mandatory:not(.dataconsent) .umbraco-forms-field-wrapper {
    position: relative;
}
.custom-form .mandatory:not(.dataconsent) input {
    padding-right: var(--spacer-x2);
}
.custom-form .mandatory:not(.dataconsent) .umbraco-forms-field-wrapper::after {
    content: "*";
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    height: 1em;
    color: #B5B5B5;
}
@media (max-width: 1024px) {
    .custom-form .row-fluid:has(.col-md-6) {
        grid-template-columns: 1fr;
        gap: 0;
    }
}
/* #endregion - forms */