@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');

@font-face {
    font-family: 'Ubuntu';
    src: url('../fonts/Ubuntu-Regular.woff');
}

@font-face {
    font-family: 'Ubuntu Light';
    src: url('../fonts/Ubuntu-Light.woff');
}

.p {
    font-family: 'Ubuntu Light';
}

:root {
    --hako-blue: #17428c;
    --hako-green: #4e9f2d;
    --hako-petrol: #20777c;
    --hako-gray: #9da9b1;
    --hako-gold: #d4a95e;
    --hako-white: #ffffff;
    --hako-black: #111111;
    --hako-surface: #f7f9fb;
    --hako-border: rgba(23, 66, 140, 0.16);
    --hako-shadow: 0 1rem 2.5rem rgba(23, 66, 140, 0.12);
    --font-size-xs: 0.923rem;
    --font-size-sm: 1rem;
    --font-size-md: 1.077rem;
    --font-size-body: 1rem;
    --font-size-lg: 1.308rem;
    --font-size-xl: 1.538rem;
    --font-size-2xl: 1.846rem;
    --font-size-3xl: 2.462rem;
    --font-size-4xl: 3.385rem;
    --line-height-tight: 1.15;
    --line-height-base: 1.5;
    --line-height-relaxed: 1.65;
    --backend-form-height: 42px;
    --backend-form-radius: 0.7rem;
    --backend-form-border: #d6deea;
    --backend-form-border-hover: #bcc8d9;
    --backend-form-border-focus: #1f4d8f;
    --backend-form-bg: #ffffff;
    --backend-form-bg-muted: #f4f7fb;
    --backend-form-text: #24364b;
    --backend-form-label: #526377;
}

html, body {
    font-family: Ubuntu, 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 13px;
    color: #223044;
}

body {
    font-size: var(--font-size-body);
    line-height: var(--line-height-base);
}

h1, .h1 {
    font-size: var(--font-size-3xl);
    line-height: var(--line-height-tight);
}

h2, .h2 {
    font-size: var(--font-size-2xl);
    line-height: var(--line-height-tight);
}

h3, .h3 {
    font-size: var(--font-size-xl);
    line-height: 1.2;
}

h4, .h4 {
    font-size: var(--font-size-lg);
    line-height: 1.25;
}

h5, .h5 {
    font-size: var(--font-size-md);
    line-height: 1.3;
}

small,
.small {
    font-size: var(--font-size-xs);
}
h1:focus {
    outline: none;
}

a, .btn-link {
    color: var(--hako-blue);
}

.skip-link {
    position: fixed;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 10000;
    transform: translateY(-180%);
    border-radius: 6px;
    background: var(--hako-blue);
    color: #fff !important;
    font-weight: 700;
    padding: 0.75rem 1rem;
    text-decoration: none;
    transition: transform 0.16s ease;
}

.skip-link:focus,
.skip-link:focus-visible {
    transform: translateY(0);
    outline: 3px solid var(--hako-green);
    outline-offset: 3px;
}

.skip-target:focus {
    outline: none;
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible,
[role="button"]:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--hako-green);
    outline-offset: 3px;
}

.btn-primary {
    color: #fff;
    background-color: var(--hako-blue);
    border-color: var(--hako-blue);
}
.btn-success {
    color: #fff;
    background-color: green!Important;
    border-color: green;
}
.btn,
button,
input,
select,
textarea {
    font: inherit;
}

.btn,
button.btn,
a.btn,
.k-button,
.k-toolbar .k-button,
.k-grid .k-button {
    font-size: var(--font-size-sm);
    line-height: 1.2;
}

.btn .k-button-text,
.k-button .k-button-text,
span.k-button-text {
    font-size: inherit;
    line-height: inherit;
}

.form-label,
label.form-label,
.form-group > label,
label:not(.form-check-label):not(.custom-file-label) {
    font-size: var(--font-size-sm);
    line-height: 1.35;
}

.form-detail,
.form-text,
small,
.small,
.text-muted {
    line-height: var(--line-height-base);
}

.form-detail,
.form-text {
    font-size: var(--font-size-xs);
}

.form-control,
.form-select,
.k-input,
.k-input-inner,
.k-picker,
.k-textbox,
.k-textarea {
    font-size: var(--font-size-sm);
    line-height: var(--line-height-base);
}

.form-control,
.form-select,
.input-field-sm,
.backend-form-field {
    min-height: var(--backend-form-height);
    border: 1px solid var(--backend-form-border);
    border-radius: var(--backend-form-radius);
    background: var(--backend-form-bg);
    color: var(--backend-form-text) !important;
    padding: 0.7rem 0.95rem;
    box-shadow: none;
    box-sizing: border-box;
    transition: border-color 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease;
}

.form-control:hover,
.form-select:hover,
.input-field-sm:hover,
.backend-form-field:hover {
    border-color: var(--backend-form-border-hover);
}

.form-control:focus,
.form-select:focus,
.input-field-sm:focus,
.backend-form-field:focus {
    border-color: var(--backend-form-border-focus);
    box-shadow: 0 0 0 0.2rem rgba(31, 77, 143, 0.12);
    outline: 0;
}

.form-control[readonly],
.form-control:disabled,
.form-select:disabled,
.input-field-sm[readonly],
.input-field-sm:disabled,
.backend-form-field[readonly],
.backend-form-field:disabled {
    background: var(--backend-form-bg-muted);
    color: #5b6c80 !important;
    opacity: 1;
}

.content {
    padding-top: 1.1rem;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

    .blazor-error-boundary::after {
        content: "An error has occurred."
    }


#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

.app-load {
    margin: 100px auto;
    width: 50px;
    height: 40px;
    text-align: center;
    font-size: 10px;
}

.app-load > div {
    background-color: #333;
    height: 100%;
    width: 6px;
    display: inline-block;
    -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
    animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.app-load .rect2 {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}

.app-load .rect3 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

.app-load .rect4 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

.app-load .rect5 {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}

@-webkit-keyframes sk-stretchdelay {
    0%, 40%, 100% {
        -webkit-transform: scaleY(0.4);
    }

    20% {
        -webkit-transform: scaleY(1.0);
    }
}

@keyframes sk-stretchdelay {
    0%, 40%, 100% {
        transform: scaleY(0.4);
        -webkit-transform: scaleY(0.4);
    }

    20% {
        transform: scaleY(1.0);
        -webkit-transform: scaleY(1.0);
    }
}


.main-sidebar {
    background-color: #1e4e5e;
    border-radius: 0px 5px 5px 0px;
    background: linear-gradient(0deg, hsla(0, 0%, 100%, 1) 0%, hsla(0, 0%, 96%, 1) 75%, hsla(0, 0%, 98%, 1) 100%);
}

.main-header {
    position: fixed;
    width: 100%;
    max-height: 100px;
    z-index: 1030;
    background-color: var(--hako-petrol);
    border-bottom: 0px solid #dee2e6;
    box-shadow: 0px 0px 10px rgb(171 171 171 / 25%), 0 1px 0px rgb(255 255 255 / 22%) !important
}

.navbar {
    background-color: white;
}



.brand-link {
    background-color: transparent !Important;
    border-bottom: 1px solid transparent !Important;
    min-height: 58px;
}

.navbar-light .navbar-nav .nav-link {
    color: #e6e5e5;
    color: var(--greenDarker);
    border: 3px solid transparent;
}

.sidebar a {
    color: #e6e5e5;
}

.navbar-nav .nav-link:hover {

    color: var(--greenDarker);
}


.nav-sidebar .nav-item > .nav-link {
    position: relative;
    color: #e6e5e5;
    font-size: 14px;
}

.searchGlobal {
    border-style: solid;
    border-width: 3px;
    border-color: transparent;
    height: 38px;
    margin-top: 2px;
    padding-left: 40px;
    padding-right: 20px;
    background-color: #cedddf7a;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 5px;
    color: var(--greenDarker);
}

input.form-control.form-control-navbar.app-search {
    background: transparent;
    color: var(--greenDarker);
}

button.btn.btn-navbar {
    background: transparent!important;
}

.navbar-light .form-control-navbar:focus, .navbar-light .form-control-navbar:focus + .input-group-append .btn-navbar {
    background: transparent !important;
}

i.fas.fa-search {
    color: #e6e5e5;
}

.layout-navbar-fixed .wrapper .main-header {
    width: auto;
}

.pagecontent {
    background-color: transparent;
    height: 100%;
/*    padding-left: 5px;
    padding-right: 5px;*/
/*    padding-top: 65px;*/
    min-height: 250px;
    margin-right: auto;
    margin-left: auto;
}

.k-pdf-viewer {
    border-color: transparent;
}

.brand-image {
    max-height: 38px;

}

.app-search::placeholder {
    color: red;
    
}

i.right.fas.fa-angle-left {
    display: none;
}

.os-content {
    padding: 0px !important;
}

.width-25 {
    width: 25%;
}

.width-50 {
    width: 50%;
}

.width-75 {
    width: 75%;
}

.width-100 {
    width: 100%;
}

.underline {
    text-decoration: underline;
}

.form-label {
    margin-bottom: 0px;
}

.form-detail {
    font-size: 12px;
}

.form-group-container {
    display: flex;
    gap: 10px;
}

.form-group-container-left {
    justify-content: left;
}

.form-group-container-right {
    justify-content: right;
    margin-left: auto;
    margin-right: 0;
}

.form-group-multicolumn {
    display: flex;
    flex: 1;
    gap: 10px;
    justify-content: space-between;
    flex-wrap: wrap;
}


.element-separator {
    height: 25px;
}

.large-element-separator {
    height: 50px;
}

.small-element-separator {
    height: 14px;
}

.extra-small-element-separator {
    height: 10px;
}

.vertical-element-separator {
    margin-right: 10px;
}

.small-vertical-element-separator {
    margin-right: 5px;
}

.flex-container {
    display: flex;
}

.flex-right {
    justify-content: right;
    margin-left: auto;
    margin-right: 0;
}

.flex-left {
    justify-content: left;
}

.flex-full {
    flex: 1;
}

.flex-half {
    flex: 0.5;
}

.form-group {
    text-align: left;
}

.flex-center {
    justify-content: center;
}

a {
    cursor: pointer;
}

.full-width {
    width: 100%;
}

.form-group-small {
    width: 100%;
    max-width: 60rem;
}

.group-flex {
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.group-left {
    width: 100%;
}

.group-right {
    width: 100%;
}

.form-label {
    width: 100%;
    display: block;
    margin: 0 0 0.45rem;
    color: var(--backend-form-label);
    font-size: var(--font-size-xs);
    font-weight: 600 !important;
    letter-spacing: 0.01em;
}

.backend-form .form-group,
.backend-form .form-group-small {
    width: 100%;
    max-width: 60rem;
}

.backend-form .form-label {
    margin-top: 0;
}

.backend-form .form-control,
.backend-form .form-select,
.backend-form .input-field-sm {
    width: 100%;
}

.backend-form .form-password {
    width: 100%;
    align-items: stretch;
    gap: 0.65rem;
}

.backend-form .form-password .form-control,
.backend-form .form-password .k-input,
.backend-form .form-password .k-textbox {
    flex: 1 1 auto;
}

.segment-spacer {
    height: 20px;
}

.form-relative {
    position: relative;
}

.form-tab {
    min-height: 450px;
    overflow: auto;
}

.field-container {
    width: 100%;
}

.navbar-expand .navbar-nav {
    position: sticky;
    right: 10px;
}

.frontend-user-container .user-arrow {
    font-size: 24px;
}
.k-wizard-step {
}

.k-wizard-step {
    padding: 0px !important;
    margin-top: 10px !important;
}

/*Wizard colors*/

.k-wizard .k-step-current .k-step-indicator {
    background-color: var(--hako-blue);
    border-color: var(--hako-blue);
    color: white;
}

.k-wizard .k-step-done .k-step-indicator {
    background-color: white;
    border-color: #cccccc;
    color: #808080;
}

.k-wizard .k-stepper .k-step-indicator {
    height: 40px;
    width: 40px;
    color: #808080;
}

.k-wizard .k-step-current .k-step-indicator:hover {
    background-color: var(--hako-petrol);
    border-color: var(--hako-blue);
    color: white !important;
}

.k-wizard .k-step-done:hover .k-step-indicator {
    background-color: #ebebeb !important;
}

.k-wizard .k-stepper > .k-progressbar .k-state-selected {
    background: #ebebeb !important;
}

.k-wizard .k-step-label {
    color: black !important;
}

.k-wizard .k-step-current:hover .k-step-indicator {
    background-color: var(--hako-blue);
    color: white !important;
}




.col-xs-6 {
    width: 50%;
}


@media (min-width: 1200px) {
    .col-lg-3 { width: 25%; }
}

.col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 {
    float: left;
}

.col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9 {
    float: left;
}

@media (min-width: 1200px) {
    .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9 { float: left; }
}


.col-lg-3 {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
  float: left;
}

.small-box > .inner {
    padding: 10px;
    text-align: center;
/*    box-shadow: 0 5px 15px rgba(0,0,0,0.1);*/
}

.h1, h1 {
    font-size: 2.0rem;
    font-weight: 700;
    margin-left: 10px;
    margin-bottom: 20px;
    margin-top: 10px;
}

.input-field-sm {
    border-radius: 3px;
    border: 0px #e6e9f0 solid;
    color: #183b68 !important;
    background: white;
    padding: 7px;
    max-width: 100%;
    min-height: 42px;
}

.form-group {
    margin-bottom: 0.6rem;
}

.doc-label {
    font-weight: normal;
    color: #183b68;
}

label {
    font-weight: normal!important;
    margin-top: 8px;
    width: 100%;
    border-bottom: #F2F2F7;
    border-bottom-style: solid;
    border-bottom-width: 0px;
}

div.main-title {
    font-weight: 700;
    font-size: 30px;
    margin-left: 10px;
    margin-bottom: 10px;
}

h1 {
    font-weight: 700;
    font-size: 2rem;
    margin-left: 10px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.k-input-md .k-input-inner, .k-picker-md .k-input-inner {
    min-height: 37px;
}

.k-icon-button.k-button-md > .k-button-icon {
    min-width: 40px;
}

.list .k-icon-button.k-button-md > .k-button-icon {
    min-width: 0px;
    color: var(--hako-petrol);
}



.h2, h2 {
    font-weight: 600;
    font-size: 3rem;
}


.h3, h3 {
    font-weight: 500;
    font-size: 2.0rem;
    font-family: 'Ubuntu Light';
    text-transform: initial !important;
}



.list .k-grid-header {
    background-color: #dde3e6 !important;
}

    .list .k-grid-header div {
        background-color: #dde3e6 !important;
        color: var(--hako-petrol) !important;
    }

.list .k-grid-header th {
    font-size: 110% !important;
    text-transform: uppercase;
}

button.telerik-blazor.k-button.k-button-flat.k-rounded-md.k-button-rectangle.k-button-md.k-button-flat-base {
    color: white !important;
}

.btn-newproduct {
    background: var(--hako-petrol);
    color: white;
    height: 37px;
    border-color: #ddd;
    border-width: 0px;
    border-radius: 3px;
}



button.telerik-blazor.k-button.k-button-solid.k-rounded-md.k-button-rectangle.k-button-md.k-button-solid-base {
    border-color: #ddd;
    border-width: 1px;
    border-radius: 3px;
    box-shadow: rgb(0 0 0 / 5%) 0px 1px 1px 0px;
}


.triple-point-menu {
    width: 15px;
    position: relative;
}

.triple-point-menu-popup .row {
    margin: 0px;
    padding: 5px;
}

.triple-point-menu-popup {
    position: fixed;
    right: 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    
    background-color: white;
    z-index: 4000;
    box-shadow: rgb(0 0 0 / 35%) 0px 5px 15px;
}

    .triple-point-menu-popup :hover {
        background-color: #eef1f6;
        border-radius: 5px;
    }


.twd-designer {
    position: relative!important;
    height: 1500px!important;
}


.nav-treeview > .nav-item > .nav-link.active {
    background-color: var(--hako-petrol) !important;
 /*   background: linear-gradient(90deg, rgba(6,108,123,1) 0%, rgba(113,171,180,1) 49%, rgba(6,108,123,1) 100%);*/
    color: #fff !important;
    border-left-color: var(--hako-petrol);
}

.sidebar-dark-primary .nav-sidebar > .nav-item > .nav-link.active {
    background-color: var(--hako-petrol);
    color: #fff;
}



.btn-secondary :hover {
        color: #fff!important;
}

.MainPageTabStrip {
    padding: 0px;
}

.k-tabstrip-top > .k-content, .k-tabstrip-top > .k-tabstrip-content {
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    border-top-color: transparent !important;
}

.k-tabstrip-content, .k-tabstrip > .k-content {
    border-color: transparent;
    color: #424242;
    background-color: #ffffff;

}

.k-tabstrip > .k-content:focus {
    outline-width: 1px;
    outline-style: dotted;
    outline-offset: -1px;
    outline-color: transparent;
}




.MainPageTabStrip > .k-content {
    padding: 0px 0px;
}

.k-tabstrip-items-wrapper .k-item:focus, .k-tabstrip-items-wrapper .k-item.k-state-focused, .k-tabstrip-items-wrapper .k-item.k-focus {
    box-shadow: none;
}

.k-tabstrip-top > .k-tabstrip-items-wrapper .k-item.k-active {
    border-top-left-radius: 3px !Important;
    border-top-right-radius: 3px !Important;

    transition: border-top-color 0.5s;
    transition: border-bottom-color 0.5s;
}


.brand-link .brand-image {
    max-height: 60px;
    min-height: 60px;
}

.brand-link .brand-image-xl {
    max-height: 60px !important;
}
.brand-link .brand-image-xs {
    max-height: 59px !important;
}
.logo-xs.brand-image-xs {
    left: 3px;
    top: 15px;
}

.logo-switch{
    padding: 0;
}

.tabstrip-fullscreen {
}

    .tabstrip-fullscreen > .k-tabstrip-items-wrapper {
        border-color: transparent;
        min-height: 50px;
        background: white;
    }

.tabstrip-fullscreen > .k-tabstrip-top > .k-tabstrip-items-wrapper > .k-tabstrip-items {
    background: white;

}

.tabstrip-fullscreen > k-tabstrip-items-wrapper {
    background: white !important;
}



div.k-tabstrip.telerik-blazor.k-tabstrip-top.tabstrip-fullscreen > div.k-tabstrip-items-wrapper.k-hstack > ul > li.k-tabstrip-item.k-item.k-active.k-tab-on-top {
    /*    border-bottom-left-radius: 0px !Important;
    border-bottom-right-radius: 0px !Important;
    border-top: 0px solid !Important;
    border-left: 0px solid;
    border-right: 0px solid;
    border-bottom: 5px solid var(--hako-petrol);*/
    transition: border-bottom-color 0.5s;
    transition: border-top-color 0.5s;
}


div.k-tabstrip.telerik-blazor.k-tabstrip-top.tabstrip-fullscreen > div.k-tabstrip-items-wrapper.k-hstack > ul > li.k-tabstrip-item.k-item.k-state-default > span {
    min-width: 140px;
}

div.k-tabstrip.telerik-blazor.k-tabstrip-top.tabstrip-fullscreen > div.k-tabstrip-items-wrapper.k-hstack > ul > li.k-tabstrip-item.k-item.k-tab-on-top > span {
    min-width: 140px;
}

.k-tabstrip.telerik-blazor.k-tabstrip-top.tabstrip-fullscreen > div.k-tabstrip-content.k-content.k-active {
    background: white;
}

div.k-tabstrip.telerik-blazor.k-tabstrip-top.tabstrip-fullscreen > div.k-tabstrip-items-wrapper.k-hstack > ul {
    background: #f0f0f0;
}

body > div.content-wrapper > div > div.k-tabstrip.telerik-blazor.k-tabstrip-top.tabstrip-fullscreen > div.k-tabstrip-content.k-content.k-active {
    border-color: transparent;
}



div.k-tabstrip-items-wrapper.k-hstack > ul > li.k-tabstrip-item.k-item.k-state-default > span {
    align-content: center;
    horiz-align: center;
    justify-content: center;
    min-width: 140px;
    transition: border-bottom-color 0.5s;
}

div.k-tabstrip-items-wrapper.k-hstack > ul > li.k-tabstrip-item.k-item.k-tab-on-top > span {
    align-content: center;
    horiz-align: center;
    justify-content: center;
    min-width: 140px;
    transition: border-bottom-color 0.5s;
}

.k-pager-wrap {
    background-color: #dde3e6;
    border-radius: 0px 0px 5px 5px;
    color: var(--hako-petrol);
}

.page-padding {
    padding: 16px 16px;
}


.toolbarbutton {
    height: 50px;
    min-width: 100px;
    /*aaa*/
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    align-content: stretch;
    font-size: 1rem;
    gap: 2px;
    text-transform: uppercase;
}

.button.telerik-blazor.k-button.k-button-flat.k-rounded-md.k-button-rectangle.k-button-md.k-button-flat-base {
    font-size: 1rem;
    text-transform: uppercase;
}

div.k-tabstrip.telerik-blazor.k-tabstrip-top.tabstrip-fullscreen > div.k-tabstrip-items-wrapper.k-hstack > ul > li.k-tabstrip-item.k-item.k-active.k-tab-on-top {
    text-transform: uppercase;
}

span.k-button-text {
    font-size: 1.1rem;
    text-transform: uppercase;
}

.k-tabstrip-top > .k-tabstrip-items-wrapper .k-item + .k-item {
    text-transform: uppercase;
}

.btn-spacer {
    display: inline-block;
    min-width: 130px;
}

.btn-default {
    background: var(--hako-petrol);
    color: white;
    min-width: 130px;
}

.btn-default:hover {
    color: white;
    background-color: var(--greenDarker);
    border-color: var(--greenDarker);
}



.e-schedule .e-vertical-view .e-time-cells-wrap table td, .e-schedule .e-vertical-view .e-work-cells {

    height: 25px;
}

li.nav-item {
    padding-top: 3px;
    padding-bottom: 3px;
}

.e-schedule .e-vertical-view .e-content-wrap .e-appointment .e-appointment-details {
    padding: 0;
    height: 100%;
}

.nav-childitem {
    padding-left: 0.7rem !important;
}

.box-header > .box-tools {
    position: absolute;
    right: 10px;
    top: 5px;
}

.pull-right {
    float: right !important;
}

.ipointer {
    cursor: pointer;
    color: var(--greenDarker);
}

.fileInput-ID {
    display: none;
}


.file-input-label {
    display: none !important;
}


.role-Box {
    background: white;
    padding: 1%;
}

.controlbox {
  
    background: #e8f0f1;
}

.k-switch-md {
    opacity: 1;
}

.floating-menu-button {
    background-color: var(--hako-petrol);

}

.floating-menu-button:hover {
    background-color: var(--hako-petrol) !important;
}


.floating-sub-menu-button {

    background-color: var(--hako-petrol);

}


button.telerik-blazor.k-button.k-button-solid.k-rounded-md.k-button-rectangle.k-button-md.k-button-solid-base {
    border-width: 0px;
    color: black;
}

.k-grid-header, .k-header, th.k-header, .k-grid-header-wrap, .k-grouping-header, .k-grouping-header .k-group-indicator, .k-grid td, .k-grid-footer, .k-grid-footer-wrap, .k-grid-content-locked, .k-grid-footer-locked, .k-grid-header-locked, .k-filter-row > td, .k-filter-row > th {
    border-color: transparent;
    min-height: 40px;

}


.elevation-sidebar {
  
}


.authority-tag {
    border: 0px solid #dae7e7 !important;
}

.card-container:hover {
    border-color: var(--hako-blue);
}

.k-tabstrip-items-wrapper .k-item.k-active::after {
    border-color: transparent;
    border-bottom-width: 0px;
}

.k-button-group {
    box-shadow: none;
}



.upload-file-list-container {

    border: 1px dashed var(--hako-blue);
}

.upload-file-empty {
    color: var(--hako-blue);

}

.dropzone-drag {
    border: 1px solid var(--hako-blue);
    background-color: #dfdfdf;
}

.drop-zone {
    border: 1px dashed var(--hako-blue);
}

.k-button.k-button-solid-Primary {
    background: #3c4043;
}



.fbar {
    background-color: var(--hako-gray);
    color: white;
    margin-left: 0px !important;
    height: 35px;
    padding-top: 5px;
}

nav a {
    color: rgb(72 92 130) !important;
}

nav-link :hover {
    background-color: red !important;
}

.btnClr {
    color: white !important;
    background-color: var(--hako-gray) !important;
}



.carousel-inner .carousel-item.active,
.carousel-inner .carousel-item-next,
.carousel-inner .carousel-item-prev {
    display: flex;
    min-height: 90vh;
    background: var(--hako-gold);
}

/* display 3 */
@media (min-width: 768px) {

    .carousel-inner .carousel-item-right.active,
    .carousel-inner .carousel-item-next {
        transform: translateX(33.333%);
    }

    .carousel-inner .carousel-item-left.active,
    .carousel-inner .carousel-item-prev {
        transform: translateX(-33.333%);
    }
}

.carousel-inner .carousel-item-right,
.carousel-inner .carousel-item-left {
    transform: translateX(0);
}

.carousel-indicators li {
    width: 10px !important;
    height: 10px !important;
    border-radius: 100%;
    margin-left: 3px !important;
}

.crd {
    padding: 0rem !important;
    border-radius: 30px !important;
    background-color: var(--hako-gray) !important;
    color: white;
}

.cImg {
    border-radius: 20px 20px 0px 0px !important;
    clip-path: polygon(0 0, 100% 0%, 100% 83%, 0% 100%);
}

.sectionGr {
    background-color: var(--hako-green) !important;
    color: white !important;
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 95%);
}

.sectionOrange {
    background-color: var(--hako-gold) !important;
    color: white !important;
    text-decoration: none !important;
}

.sectionRed {
    background-color: var(--hako-petrol) !important;
    color: white !important;
}

.sectiongrbtn {
    background-color: var(--hako-green) !important;
    color: white !important;
    border: 1px solid white !important;
    border-radius: 34px !important;
    min-width: 165px;
}

    .sectiongrbtn:hover {
        box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
    }

.btn-primary.disabled, .btn-primary:disabled {
    background-color: var(--hako-gray);
    border-color: var(--hako-gray);
}

.sectionWhite {
    background-color: white !important;
    border: 1px solid black !important;
    color: black;
    border-radius: 34px !important;
}

.carousalMount {
    margin-top: -25px !important;
    background-color: var(--hako-gold);
    clip-path: polygon(0 1%, 100% 0, 100% 30%, 0% 100%);
    text-align: center;
    width: 100%;
}

.fontIcon {
    margin-top: 40px !important;
    font-size: 70px !important;
    color: white !important;
}

.ml-60 {
    margin-left: 0px !important;
}

.ml-68 {
    margin-left: 0px !important;
}

.mb-30 {
    margin-bottom: -95px !important;
}

.sizedA {
    margin-bottom: 15% !important;
}

.sized {
    margin-bottom: 20% !important;
}

.backImg {
    z-index: 9;
    position: relative;
}

.frontImg {
    width: 100%;
    z-index: 10;
    position: absolute;
    bottom: -8%
}

@media only screen and (max-width: 480px) and (min-width:320px ) {
    .sized {
        margin-bottom: 0% !important;
    }

    .sizedA {
        margin-bottom: 0% !important;
    }
}

@media only screen and (max-width: 768px) and (min-width: 480px) {
    .sized {
        margin-bottom: 0% !important;
    }

    .sizedA {
        margin-bottom: 0% !important;
    }
}

@media only screen and (max-width: 1024px) and (min-width: 769px) {
    .sized {
        margin-bottom: 5% !important;
    }

    .sizedA {
        margin-bottom: 5% !important;
    }
}

body {
    font-family: Ubuntu, sans-serif, Roboto, Arial !important;
}



nav-link{
    border: 3px solid transparent;
}

.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
    background: #f7f8ff !Important;
    color: rgb(94 105 110) !important;
    transition: all 0.4s ease;
}


.btn-secondary {
    border-style: 0px;
    border-color: none;
}

a.btn.btn-secondary.ml-4.btnClr.btn-circle {
    border-style: none;
}

.card {
    border: 0px solid rgba(0,0,0,.125) !important;
    box-shadow: none;
}

a.btn.btn-secondary.text-center {
    min-width: 100px;
}

div#myNavbar {
    flex-direction: column !Important;
}

.navbar-light .navbar-toggler {
    border-color: transparent !Important;
}

@media only screen and (max-width: 480px) and (min-width:320px ) {
    div#myNavbar {
        Min-height: 100vh;
    }
}

.mb-175 {
    margin-bottom: -175px !important;
    min-height: 125px;
}

.padding30 {
    padding: 30px;
}

.padding20 {
    padding: 20px;
}

.TitlePublic {
    font-size: 3em;
    text-transform: upperCase;
    font-weight: 700;
}

.TitlePublic {
    display: inline-block;
    padding-bottom: 5px;
    position: relative;

}


.text-gray {
    color: var(--hako-gray) !important
}

.news-main-article .card-title {
    width: 100%;
}


.hsk-front-page {
    width: min(1280px, calc(100% - 2rem));
    margin-left: auto;
    margin-right: auto;
    padding-top: 30px;
    padding-left: 0;
    padding-right: 0;
}

.public-gallery-page,
.generic-news-bar,
.generic-center-component,
.public-product-page .tm-detail-header,
.public-product-page .tm-appointment-wrapper,
.public-product-page .center-headline-container,
.public-product-page .header-title,
.public-product-page .tm-header-info {
    width: min(1280px, calc(100% - 2rem)) !important;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.hsk-front-page-head {
    padding-top: 100px;
    padding-left: 30px;
    padding-right: 30px;
}



.imagelayer {
    position: relative;
    width: 44%;
    top: -200px;
    left: 45%;
}


.site-header {
    position: relative;
    z-index: 1035;
}

#sticky-wrapper.sticky-wrapper {
    position: sticky;
    top: 0;
    z-index: 1030;
    width: 100%;
}

#sticky-wrapper.sticky-wrapper .navbar {
    margin-bottom: 0;
}
.navbar-brand {
    min-height: 90px;
    padding-top: 20px;
}

.k-icon-button-small {
    padding: 0px !important;
}

.k-icon-button-small {
    padding: 0px !important;
}

.k-icon-button-small:hover {
    background-color: var(--hako-blue) !important;
    border-color: transparent !important;
    color: var(--hako-blue);
}


.k-icon-button-small {
    background-color: transparent !important;
    border-color: transparent !important;
    color: transparent;
    box-shadow: none;
    min-width: 5px;
    max-width: 22px;
    font-size: 6px;
}

.collapsible-container {
    padding-bottom: 15px;
}


.k-tabstrip {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .carousel-inner .carousel-item > div {
        display: none;
    }

    .carousel-inner .carousel-item > div:first-child {
        display: block;
    }

    h1 {
        font-size: 24px;
    }

    .TitlePublic {
        font-size: 2em;
    }

    .h3, h3 {
        font-size: 2rem;
    }

    .h2, h2 {
        font-weight: 600;
        font-size: 2rem;
    }

    .h5, h5 {
        font-size: 1.2rem;
    }

    .featured-block {
        font-size: 0.8rem;
    }
}


@media (max-width: 568px) {
  
    .featured-block {
        font-size: 1.3rem;
    }
}


#pg-7-0.panel-has-style > .panel-row-style, #pg-7-0.panel-no-style, #pg-7-1.panel-has-style > .panel-row-style, #pg-7-1.panel-no-style, #pg-7-2.panel-has-style > .panel-row-style, #pg-7-2.panel-no-style, #pg-7-3.panel-has-style > .panel-row-style, #pg-7-3.panel-no-style, #pg-7-4.panel-has-style > .panel-row-style, #pg-7-4.panel-no-style, #pg-7-5.panel-has-style > .panel-row-style, #pg-7-5.panel-no-style {
    -webkit-align-items: flex-start;
    align-items: flex-start;
}

@media (max-width: 780px) {
    #pg-7-0 > .panel-grid-cell, #pg-7-0 > .panel-row-style > .panel-grid-cell, #pg-7-1 > .panel-grid-cell, #pg-7-1 > .panel-row-style > .panel-grid-cell, #pg-7-2 > .panel-grid-cell, #pg-7-2 > .panel-row-style > .panel-grid-cell, #pg-7-3 > .panel-grid-cell, #pg-7-3 > .panel-row-style > .panel-grid-cell, #pg-7-4 > .panel-grid-cell, #pg-7-4 > .panel-row-style > .panel-grid-cell, #pg-7-5 > .panel-grid-cell, #pg-7-5 > .panel-row-style > .panel-grid-cell {
        width: 100%;
        margin-right: 0;
    }

    #pgc-7-0-0, #pgc-7-1-0, #pgc-7-1-1 { margin-bottom: 30px; }

    #pgc-7-1-0, #pgc-7-1-1, #pgc-7-1-2 {
        width: 100%
    }
    .site-header {
        padding-top: 0px!important;
        padding-bottom: 0px!important;
    }

    .carousalMount {
        clip-path: polygon(0 1%, 100% 0, 100% 60%, 0% 100%);
    }

    .frontImg {
        bottom: -5%;
    }

    .sectionGr {
        clip-path: polygon(0px 0px, 100% 0%, 100% 100%, 0px 95%) !important;
    }


    .carousel-inner .carousel-item.active,
    .carousel-inner .carousel-item-next,
    .carousel-inner .carousel-item-prev {
        min-height: 60vh;

    }

    .carousel-caption {
        bottom: 15vh!important;

    }

    .mobile-hide {
        display: none!important;
    }

    .mobile-show {
        display: block !important;
    }


}

.mobile-show {
    display: none;
}

@media (min-width: 2000px) {

    .carousel-inner .carousel-item.active,
    .carousel-inner .carousel-item-next,
    .carousel-inner .carousel-item-prev {
        min-height: 95vh;
    }

}

.borderimage {
    margin-left: 10px;
    min-width: 280px;
}

strong {
    color: var(--hako-blue);
}

.news-main-article .card-title {
    color: var(--hako-blue)!important;
}

.cmp-navscroll .accordion-header .accordion-button {
    color: var(--hako-blue) !important;
    font-size: .875rem;
    font-weight: 600;
    line-height: 1.6;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 0;
    text-transform: uppercase !important;
    width: 100%;
    text-align: left;
    border: 0px;
    background-color: rgba(0,0,0,0);
    box-shadow: none;
    padding: 14px 24px;
    cursor: pointer;
}

.progress {
    height: 5px;
    box-shadow: none;
    --bs-progress-height: 16px;
    --bs-progress-font-size: 0.75rem;
    --bs-progress-bg: hsl(0deg, 0%, 90%);
    --bs-progress-border-radius: 0;
    --bs-progress-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
    --bs-progress-bar-color: hsl(0deg, 0%, 100%);
    --bs-progress-bar-bg: hsl(210deg, 100%, 40%);
    --bs-progress-bar-transition: width 0.6s ease;
}


@media (min-width: 992px) {
    .border-col {
        border-right: 1px solid #e5e5e5;
        padding-right: 0;
    }
}


@media (min-width: 992px) {
    .navbar.it-navscroll-wrapper .link-list-wrapper ul li a.active {
        border-left: 2px solid var(--hako-blue) !important;
    }
}

.anchor-title-container {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    word-break: break-word;
}

.card .card-body .category-top {
    font-size: .7777777778rem;
    text-transform: uppercase;
    color: #1a1a1a;
    margin-bottom: 16px;
    text-align: left;
}

.icon.icon-sm {
    width: 24px;
    height: 24px;
}

.cell {
    padding-left: 8px;
    padding-right: 8px;
}

.wp-image-422 {
    overflow: hidden;
    position: absolute;
}


@media (max-width: 780px) {
    #pg-7-0 > .panel-grid-cell, #pg-7-0 > .panel-row-style > .panel-grid-cell, #pg-7-1 > .panel-grid-cell, #pg-7-1 > .panel-row-style > .panel-grid-cell, #pg-7-2 > .panel-grid-cell, #pg-7-2 > .panel-row-style > .panel-grid-cell, #pg-7-3 > .panel-grid-cell, #pg-7-3 > .panel-row-style > .panel-grid-cell, #pg-7-4 > .panel-grid-cell, #pg-7-4 > .panel-row-style > .panel-grid-cell, #pg-7-5 > .panel-grid-cell, #pg-7-5 > .panel-row-style > .panel-grid-cell {
        width: 100%;
        margin-right: 0;
    }
}

@media (max-width: 780px) {
    #pg-7-0.panel-no-style, #pg-7-0.panel-has-style > .panel-row-style, #pg-7-0, #pg-7-1.panel-no-style, #pg-7-1.panel-has-style > .panel-row-style, #pg-7-1, #pg-7-2.panel-no-style, #pg-7-2.panel-has-style > .panel-row-style, #pg-7-2, #pg-7-3.panel-no-style, #pg-7-3.panel-has-style > .panel-row-style, #pg-7-3, #pg-7-4.panel-no-style, #pg-7-4.panel-has-style > .panel-row-style, #pg-7-4, #pg-7-5.panel-no-style, #pg-7-5.panel-has-style > .panel-row-style, #pg-7-5 {
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}


.nav-link {
    padding: 0.4rem 1rem;
}

@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1400px;
    }
}


.gridxxl {
    width: 100%;
}

.info-box-center {
    box-shadow: 0 0 1px rgba(0,0,0,.125), 0 1px 3px rgba(0,0,0,.2);
    border-radius: 0.25rem;
    background: #fff;
    display: -ms-flexbox;
    margin-bottom: 1rem;
    min-height: 80px;
    padding: 0.5rem;
    position: relative;
    width: 100%;
    align-content: center;
    margin: 10px;
    background-color: var(--hako-green) !important;
    color: white !important;
    padding: 30px;
}

.nav-item {
    cursor: pointer;
}


.rowIsNotActive {
    background: grey !important;
}

.k-splitter {
    border-width: 0px;
}


.k-window-content, .k-prompt-container {
    min-height: 120px;
}

.box.box-primary {
    box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
}

.list {
/*    box-shadow: 0px 4px 15px rgba(0,0,0,0.1);*/
}

.right-item-container {
    border-bottom: 1px dotted;
}


.background-carousal-pan1 {
    background-image: url(/images/carousal/pan1.webp);
    background-position:  center;
    background-repeat: no-repeat;
    width: 100vw;
    height: 100%;
    overflow: hidden;
    position: absolute;
    min-height: 800px;
}

.background-carousal-pan2 {
    background-image: url(/images/carousal/pan2.webp);
    background-position: center;
    background-repeat: no-repeat;
    width: 100vw;
    height: 100%;
    overflow: hidden;
    position: absolute;
    min-height: 800px;
}


.background-carousal-pan3 {
    background-image: url(/images/carousal/pan3.webp);
    background-position: center;
    background-repeat: no-repeat;
    width: 100vw;
    height: 100%;
    overflow: hidden;
    position: absolute;
    min-height: 800px;
}

.background-carousal-pan4 {
    background-image: url(/images/carousal/pan4.webp);
    background-position: center;
    background-repeat: no-repeat;
    width: 100vw;
    height: 100%;
    overflow: hidden;
    position: absolute;
    min-height: 800px;
}


.background-carousal-pan5 {
    background-image: url(/images/carousal/pan5.webp);
    background-position: center;
    background-repeat: no-repeat;
    width: 100vw;
    height: 100%;
    overflow: hidden;
    position: absolute;
    min-height: 800px;
    min-width:
}




#components-reconnect-modal h5 {
    margin-top: 50px !important;
    padding: .75rem 1.25rem;
    width: 300px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1050;
    color: #003494;
    background-color: #BDCBFF;
    box-shadow: 0px 10px 10px 0px hsl(0deg 0% 0% / 20%);
}

#components-reconnect-modal div {
    border-color: rgb(0 52 148) rgb(89 127 222) rgb(161 180 235) !important;
    margin: auto;
    z-index: 1050;
}

#components-reconnect-modal h5 a {
    color: #092464 !important;
}

#components-reconnect-modal button {
    color: #515151;
    padding: 4px 8px;
    font-size: .875rem;
    min-width: 64px;
    box-sizing: border-box;
    transition: background-color 250ms cubic-bezier(.4,0,.2,1) 0ms,box-shadow 250ms cubic-bezier(.4,0,.2,1) 0ms,border 250ms cubic-bezier(.4,0,.2,1) 0ms;
    font-weight: 500;
    line-height: 1;
    letter-spacing: .02857em;
    text-transform: uppercase;
    margin: auto !important;
    background: rgb(46 121 232 / 28%);
    z-index: 1500;
    border: 0;
}



.components-reconnect-hide > div {
    display: none;
}

.components-reconnect-show > div {
    display: none;
}

.components-reconnect-show > .show {
    display: block;
}

.components-reconnect-failed > div {
    display: none;
}

.components-reconnect-failed > .failed {
    display: block;
}

.components-reconnect-refused > div {
    display: none;
}

.components-reconnect-refused > .refused {
    display: block;
}

.connection-lost-panel {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background-color: #ffffffEE;
    z-index: 9998;
}

@media(max-width: 800px) {
    .connection-lost-panel {
        background-color: #0F7173 !important;
    }

    .connection-lost-container {
        color: white !important;
    }

    .connection-lost-icon {
        color: white !important;
    }

    .mobile-icon {
        display: block !important;
    }

    .desktop-icon {
        display: none !important;
    }

    .connection-lost-container {
        top: calc(30vh - 75px) !important;
        top: -moz-calc(30vh - 75px) !important;
        top: -webkit-calc(30vh - 75px) !important;
        top: -o-calc(30vh - 75px) !important;
    }

    .connection-lost-icon img {
        height: 120px !important;
        width: 120px !important;
    }
}

.connection-lost-container {
    position: fixed;
    width: 300px;
    height: 100px;
    background-color: transparent;
    z-index: 9999;
    top: calc(30vh - 250px);
    top: -moz-calc(30vh - 250px);
    top: -webkit-calc(30vh - 250px);
    top: -o-calc(30vh - 250px);
    left: calc(50% - 150px) !important;
    left: -moz-calc(50% - 150px) !important;
    left: -webkit-calc(50% - 150px) !important;
    left: -o-calc(50% - 150px) !important;
    border-radius: 5px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    cursor: pointer;
    color: #0F7173;
}

.connection-lost-icon {
    margin-left: auto;
    margin-right: auto;
    font-size: 100px;
    color: #0F7173;
    text-align: center;
}

    .connection-lost-icon img {
        height: 200px;
        width: 200px;
    }

#connection-lost-text {
    text-align: center;
}

.reconnect-container {
    display: flex;
    gap: 10px;
    margin-left: auto;
    margin-right: auto;
}

.reconnect-icon {
    justify-self: flex-end;
}

.mobile-icon {
    display: none;
}

.k-form-md .k-form-buttons {
    margin-top: 65px;
}


.PdfScrolbox {
    max-width: 100vw;
}

.YearColor1 {
    background-color: #9be79b !important;
    padding: 4px !Important;
}

.YearColor2 {
    background-color: #cbfacb !important;
    padding: 4px !Important;
}

.YearColor3 {
    background-color: #e6f8e6 !important;
    padding: 4px !Important;
}


.YearColorInactive1 {
    background-color: #d1d1e0 !important;
    padding: 4px !Important;
}

.YearColorInactive2 {
    background-color: #e0e0eb !important;
    padding: 4px !Important;
}

.YearColorInactive3 {
    background-color: #f0f0f5 !important;
    padding: 4px !Important;
}


.AK {
    color: white;
    background-color: green;
}


.SU {
    background: red;
    color: white;

}

.DOCSTATUS_TO_REVIEW {
    background: violet;

}

.AG {
    color: white;
    background-color: orange;

}

.VS {
    color: #242b2c;
    background-color: lightgrey;
}


::-webkit-scrollbar {
    width: 0.8em;
    height: 0.8em;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 4px rgba(0,0,0,0.3);
}

::-webkit-scrollbar-thumb {
    background-color: #777777;
    outline: 1px solid #333333;
    border-radius: 8px;
}

.dropdown-menu {
     min-width: 1rem;
}


.schedule-overview .overview-scheduler {
    padding: 0px;
}


.hsksocial-icon {
    width: 30px;
    filter: invert(1);
}


.segment-title {
    display: inline-block;
}

section#FORM_DETAIL_DESCRIPTION {
    display: inline-block;
}

.it-page-section {
    display: inline-block;
}


.components-reconnect-modal {
    display: none !important;
}




.DOCSTATUS_SUBMITTED {
    background: #a6eba6;
    min-width: 100px;
}


.DOCSTATUS_TO_PAY {
    color: #242b2c;
    background-color: yellowgreen;
    min-width: 100px;
}

.DOCSTATUS_DECLINED {
    background: #af3232;
    color: white;
    min-width: 100px;
}

.DOCSTATUS_SIGNED {
    color: white;
    background-color: green;
    min-width: 100px;
}

.DOCSTATUS_ACCEPTED {
    color: white;
    background-color: green;
    min-width: 100px;
}

.DOCSTATUS_COMPLETED {
    color: white;
    background-color: green;
    min-width: 100px;
}

.DOCSTATUS_WAITING {
    color: #242b2c;
    background-color: yellow;
    min-width: 100px;
}

.DOCSTATUS_TO_SIGN {
    color: #242b2c;
    background-color: yellow;
    min-width: 100px;
}

.DOCSTATUS_ERROR {
    background: red;
    color: white;
    min-width: 100px;
}

.DOCSTATUS_TO_REVIEW {
    background: violet;
    min-width: 100px;
}

.DOCSTATUS_ARCHIVED {
    background: lightgreen;
    min-width: 100px;
}

.DOCSTATUS_EDITING {
    color: #242b2c;
    background-color: #dde3e6;
    min-width: 100px;
}

.DOCSTATUS_PAYMENT_COMPLETE {
    color: white;
    background-color: green;
    min-width: 100px;
}

.DOCSTATUS_DRAFT {
    color: white;
    background-color: orange;
    min-width: 100px;
}

.DOCSTATUS_DELETED {
    color: #242b2c;
    background-color: lightgrey;
    min-width: 100px;
}

.small-box p {
    text-align: center;
}


/* Der äußere Container nimmt den gesamten Viewport ein */
.chat-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Der Chat selbst füllt den Container vollständig */
.k-chat {
    flex: 1;
    width: 100% !important;
    height: 85% !important;
    max-width: unset !Important;
    border: none;
    border-radius: 0;
}

.ai-chat {
    flex: 1;
    width: 100%;
    height: 100%;
}




/* Hintergrund + Abstand */
.ws-page {
    padding: 22px 16px 40px;
}

/* Das ist der "Container", der ALLES zentriert */
.ws-shell {
    max-width: 1100px;
    margin: 0 auto; /* <-- DAS ist das Entscheidende */
}

/* Suche zentriert */
.ws-topbar {
    display: flex;
    justify-content: center;
    margin: 10px 0 34px;
}

.ws-search {
    position: relative;
    width: min(720px, 92vw);
    height: 48px;
    border-radius: 14px;
    background: #f6f7f9;
    border: 1px solid #e3e6ea;
    box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}

.ws-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    opacity: .65;
}

.ws-search-input {
    width: 100%;
    height: 100%;
    padding: 0 78px 0 42px;
    border: none;
    outline: none;
    background: transparent;
    font-size: 15px;
}

.ws-search-hint {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    opacity: .7;
    border: 1px solid #e3e6ea;
    background: #fff;
    padding: 4px 8px;
    border-radius: 10px;
}

/* Grid: mittig, sauber, responsive */
.ws-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
    justify-items: center; /* <-- Tiles sitzen schön im Grid */
}

@media (max-width: 1200px) {
    .ws-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 992px) {
    .ws-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .ws-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 520px) {
    .ws-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tile */
.ws-tile {
    width: 100%;
    max-width: 170px; /* <-- sorgt für "ERPNext-Größe" */
    border: 1px solid #e3e6ea;
    background: #fff;
    border-radius: 16px;
    padding: 16px 12px;
    cursor: pointer;
    text-align: center;
    transition: transform 140ms ease, box-shadow 140ms ease;
    box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}

    .ws-tile:hover {
        transform: translateY(-3px);
        box-shadow: 0 14px 34px rgba(0,0,0,0.10);
    }

.ws-tile-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    margin: 0 auto 10px;
    display: grid;
    place-items: center;
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.18);
}

    .ws-tile-icon i {
        font-size: 22px;
    }

.ws-tile-title {
    font-size: 14px;
    font-weight: 650;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ws-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 28px 10px;
    opacity: .8;
    border: 1px dashed #d5dbe3;
    border-radius: 16px;
}

.ws-empty-title {
    font-weight: 700;
    margin-bottom: 6px;
}

.ws-empty-sub {
    font-size: 13px;
    opacity: .8;
}

.row {
    justify-content: center;
}

.col-3 {
    display: flex;
    justify-content: center;
}

.ws-tile {
    min-width: 200px;
}

.card {
    min-width: 160px;
}
.public-reveal-root {
    isolation: isolate;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translate3d(0, 54px, 0) scale(0.975);
    transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1), transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

.reveal-on-scroll.is-revealed {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

.reveal-on-scroll.reveal-soft {
    transform: translate3d(0, 32px, 0) scale(0.988);
    transition-duration: 0.72s;
}

.reveal-on-scroll.reveal-strong {
    transform: translate3d(0, 68px, 0) scale(0.968);
    transition-duration: 0.98s;
}

.reveal-on-scroll.reveal-subtle {
    transform: translate3d(0, 20px, 0) scale(0.994);
    transition-duration: 0.62s;
}

@media (max-width: 768px) {
    .reveal-on-scroll,
    .reveal-on-scroll.reveal-soft,
    .reveal-on-scroll.reveal-strong,
    .reveal-on-scroll.reveal-subtle {
        transition-duration: 0.48s;
        transform: translate3d(0, 18px, 0) scale(0.995);
    }

    .reveal-on-scroll.reveal-strong {
        transition-duration: 0.56s;
        transform: translate3d(0, 24px, 0) scale(0.99);
    }
}
@media (prefers-reduced-motion: reduce) {
    .reveal-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
.public-mobile-list {
    display: grid;
    gap: 1rem;
}

.public-mobile-card {
    background: #fff;
    border: 1px solid rgba(21, 61, 138, 0.08);
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.07);
    padding: 1rem;
}

.public-mobile-card-header {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 0.85rem;
}

.public-mobile-card-title {
    color: var(--hako-blue);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.3;
}

.public-mobile-card-kicker {
    color: #5f6d76;
    font-size: 0.88rem;
    text-transform: uppercase;
}

.public-mobile-meta-grid {
    display: grid;
    gap: 0.55rem;
}

.public-mobile-meta-grid strong {
    color: var(--hako-blue);
}

.public-mobile-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 1rem;
}

.public-mobile-action {
    min-width: unset;
}

.public-mobile-details {
    margin-top: 0.9rem;
}

.public-mobile-details summary {
    color: var(--hako-blue);
    cursor: pointer;
    font-weight: 700;
}

.public-mobile-badge-row {
    margin-top: 0.85rem;
}

.public-mobile-progress-group {
    display: grid;
    gap: 0.75rem;
    margin-top: 1rem;
}

.public-mobile-progress-label {
    color: #5f6d76;
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.mobile-detail-grid {
    margin-top: 0.85rem;
}

.compact-mobile-card {
    padding: 0.85rem;
}

.public-file-preview-image {
    display: block;
    height: auto;
    margin: 0 auto;
    max-width: 100%;
}

@media (max-width: 768px) {
    div.k-tabstrip.telerik-blazor.k-tabstrip-top.tabstrip-fullscreen > div.k-tabstrip-items-wrapper.k-hstack > ul > li.k-tabstrip-item.k-item.k-state-default > span,
    div.k-tabstrip.telerik-blazor.k-tabstrip-top.tabstrip-fullscreen > div.k-tabstrip-items-wrapper.k-hstack > ul > li.k-tabstrip-item.k-item.k-tab-on-top > span,
    div.k-tabstrip-items-wrapper.k-hstack > ul > li.k-tabstrip-item.k-item.k-state-default > span,
    div.k-tabstrip-items-wrapper.k-hstack > ul > li.k-tabstrip-item.k-item.k-tab-on-top > span {
        min-width: 0;
        white-space: normal;
    }

    div.k-tabstrip.telerik-blazor.k-tabstrip-top.tabstrip-fullscreen > div.k-tabstrip-items-wrapper.k-hstack > ul,
    div.k-tabstrip-items-wrapper.k-hstack > ul {
        overflow-x: auto;
        scrollbar-width: thin;
    }

    .navbar-expand-lg {
        flex-wrap: wrap;
    }

    .mobile-language-switcher {
        width: 100%;
    }

    .mobile-language-switcher .nav-link {
        padding-left: 0;
        padding-right: 0;
    }

    .frontend-language-container {
        gap: 12px;
        justify-content: flex-start;
        width: auto;
    }

    .frontend-language-button {
        width: auto !important;
    }

    .filelist-window .k-window-content {
        max-height: 80vh;
        overflow: auto;
    }
}

@media (max-width: 960px) {
    .subpageHeaderImg {
        min-height: 110px;
        top: 110px;
    }

    .carousel-caption {
        left: 8%;
        right: 8%;
        bottom: 12%;
    }
}

@media (max-width: 768px) {
    .public-downloads-page,
    .public-gallery-page,
    .hsk-front-page {
        width: min(100% - 1.5rem, 1280px);
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .generic-news-bar,
    .generic-center-component,
    .public-product-page .tm-detail-header,
    .public-product-page .tm-appointment-wrapper,
    .public-product-page .center-headline-container,
    .public-product-page .header-title,
    .public-product-page .tm-header-info {
        width: min(100% - 1.5rem, 1280px) !important;
    }

    .public-downloads-page .inside,
    .public-gallery-page .row,
    .hsk-front-page .inside {
        padding-left: 0;
        padding-right: 0;
    }

    .public-downloads-page .large-element-separator {
        height: 24px;
    }

    .site-header .social-icon {
        text-align: left;
    }

    .navbar-brand {
        min-height: 72px;
        padding-top: 12px;
    }

    .navbar-brand img:last-child {
        max-width: 120px;
        width: auto !important;
    }
}

@media (max-width: 430px) {
    .public-downloads-page,
    .public-gallery-page,
    .hsk-front-page,
    .container{
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }


   
    .container-fluid {
        padding-left: 0rem;
        padding-right: 0rem;
    }


    .btn.sectiongrbtn,
    .btn.btn-secondary,
    .btnClr {
        width: 100%;
    }

    .public-mobile-card,
    .gallery-shell,
    .card {
        border-radius: 14px;
    }

    .mobile-language-switcher .nav-link {
        font-size: 0.95rem;
    }
}

@media (max-width: 991px) {
    .public-home-section {
        margin-bottom: 1.5rem;
    }

    .public-home-products,
    .public-home-news,
    .public-home-contact {
        padding-left: 0.25rem;
        padding-right: 0.25rem;
    }

    .sectionGr.padding30 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .info-box-center {
        margin: 0.5rem 0;
        padding: 1rem;
    }
}

@media (max-width: 430px) {
    .public-home-products h2,
    .public-home-contact h2,
    .sectionGr h2,
    .sectionGr h3 {
        word-break: break-word;
    }

    .public-home-contact .card-body,
    .public-home-news .card-body {
        padding: 1rem;
    }
}

/* Backend Telerik mobile baseline */
@media (max-width: 960px) {
    .k-grid {
        font-size: 0.94rem;
    }

    .k-grid .k-toolbar,
    .k-grid-toolbar,
    .k-grid .k-grid-toolbar {
        align-items: stretch;
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        padding: 0.75rem;
    }

    .k-grid .k-grid-search,
    .k-grid .k-searchbox,
    .k-grid .k-textbox,
    .k-grid .k-input,
    .k-grid .k-picker,
    .k-grid .k-dropdownlist,
    .k-grid .k-combobox {
        max-width: 100%;
        width: 100%;
    }

    .k-grid .k-grid-header-wrap,
    .k-grid .k-grid-content,
    .k-grid .k-grid-content-locked,
    .k-grid .k-grid-header-locked,
    .k-grid .k-grid-footer-wrap,
    .k-grid .k-table-wrap {
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }

    .k-grid table {
        min-width: 720px;
    }

    .k-grid th,
    .k-grid td {
        padding: 0.55rem 0.65rem;
        vertical-align: top;
    }

    .k-grid .k-command-cell,
    .k-grid .k-actions-cell,
    .k-grid .k-hierarchy-cell,
    .k-grid .k-grid-content td:last-child {
        white-space: nowrap;
    }

    .k-grid .k-button,
    .k-grid .k-grid-toolbar .k-button {
        min-width: unset;
    }

    .k-grid .k-button .k-button-text,
    .k-grid .k-grid-toolbar .k-button .k-button-text {
        font-size: 0.92rem;
        text-transform: none;
    }

    .k-grid .k-grid-md .k-table-th,
    .k-grid .k-grid-md .k-table-td,
    .k-grid.k-grid-md .k-table-th,
    .k-grid.k-grid-md .k-table-td {
        padding-block: 0.55rem;
        padding-inline: 0.65rem;
    }

    .k-grid .k-grid-header .k-table-th,
    .k-grid .k-table-thead .k-table-th,
    .k-grid .k-table-td,
    .k-grid th.k-header,
    .k-grid td {
        border-color: var(--telerik-line, #d9dee7);
    }

    .k-grid .k-grid-header .k-table-th:not(:last-child),
    .k-grid .k-table-thead .k-table-th:not(:last-child),
    .k-grid th.k-header:not(:last-child),
    .k-grid .k-table-td:not(:last-child),
    .k-grid td:not(:last-child) {
        border-right: 1px solid var(--telerik-line, #d9dee7) !important;
    }

    .k-pager-wrap,
    .k-grid .k-pager-wrap {
        display: flex;
        flex-wrap: wrap;
        gap: 0.45rem;
        justify-content: center;
        padding: 0.75rem;
    }

    .k-pager-wrap .k-pager-sizes,
    .k-pager-wrap .k-pager-info,
    .k-pager-wrap .k-pager-numbers-wrap,
    .k-pager-wrap .k-pager-nav,
    .k-pager-wrap .k-label,
    .k-pager-wrap .k-dropdownlist {
        max-width: 100%;
    }

    .k-grid .k-grouping-header {
        overflow-x: auto;
        white-space: nowrap;
    }

    .k-grid .k-detail-cell {
        padding: 0.75rem;
    }
}

@media (max-width: 430px) {
    .k-grid {
        font-size: 0.9rem;
    }

    .k-grid table {
        min-width: 640px;
    }

    .k-grid .k-toolbar,
    .k-grid-toolbar,
    .k-grid .k-grid-toolbar,
    .k-pager-wrap,
    .k-grid .k-pager-wrap {
        padding-left: 0.6rem;
        padding-right: 0.6rem;
    }
}

/* Stabilize public/contact registration forms against Bootstrap Italia label/input overrides */
.registration-container .form-group,
.registration-container .form-group-multicolumn,
.registration-container .flex-full {
    position: static;
}

.registration-container .form-label,
.registration-container label.form-label {
    display: block;
    position: static;
    transform: none;
    inset: auto;
    float: none;
    width: auto;
    height: auto;
    margin: 0 0 0.65rem;
    padding: 0;
    color: #1f2d3d;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.35;
    pointer-events: auto;
    background: transparent;
}

.registration-container .form-control,
.registration-container input.form-control,
.registration-container textarea.form-control,
.registration-container .custom-phone-container,
.registration-container .iti,
.registration-container .iti input,
.registration-container .iti input[type=text],
.registration-container .iti input[type=tel] {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.registration-container .form-control,
.registration-container input.form-control {
    min-height: 3.5rem;
    padding: 0.875rem 1rem;
    line-height: 1.4;
}

.registration-container textarea.form-control {
    min-height: 5.5rem;
    padding: 0.875rem 1rem;
    line-height: 1.5;
}

.registration-container .form-group-multicolumn {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.registration-container .flex-full {
    flex: 1 1 0;
    min-width: 0;
}

.registration-container .row {
    align-items: flex-start;
}

.registration-container .col-1,
.registration-container .col-11 {
    display: flex;
    align-items: flex-start;
}

.registration-container .col-11 {
    flex-direction: column;
    gap: 0.2rem;
}

.registration-container .list-item-switch {
    margin-top: 0.1rem;
}

.registration-container .k-input-inner,
.registration-container .k-input,
.registration-container .k-picker,
.registration-container .k-textbox,
.registration-container .k-textarea {
    min-height: 3.5rem;
}

@media (max-width: 900px) {
    .registration-container .form-group-multicolumn {
        flex-direction: column;
        gap: 0.75rem;
    }
}

.registration-container .registration-consent-group {
    margin-top: 0.25rem;
}

.registration-container .registration-consent-row,
.registration-container .registration-consent-inline {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.registration-container .registration-consent-switch {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
}

.registration-container .registration-consent-text {
    flex: 1 1 auto;
    min-width: 0;
}

.registration-container .registration-consent-text label,
.registration-container .registration-consent-inline label {
    display: block;
    margin: 0;
    font-weight: 400;
    line-height: 1.6;
}

.registration-container .registration-consent-inline .list-item-switch,
.registration-container .registration-consent-row .list-item-switch {
    flex: 0 0 auto;
    margin-top: 0.1rem;
}

@media (max-width: 680px) {
    .registration-container .registration-consent-row,
    .registration-container .registration-consent-inline {
        gap: 0.75rem;
    }
}

/* Fine-tune larger registration screens with row/column label layouts */
.registration-container .form-group.row {
    margin-left: 0;
    margin-right: 0;
    align-items: flex-start;
}

.registration-container .form-group.row > [class*="col-"] {
    padding-left: 0;
    padding-right: 0;
}

.registration-container .form-group.row > .col-md-2 {
/*    flex: 0 0 14rem;*/
    max-width: 14rem;
    padding-right: 1rem;
}

.registration-container .form-group.row > .col-md-10 {
    flex: 1 1 auto;
    max-width: none;
    min-width: 0;
}

.registration-container .form-label-value {
    display: block;
    min-height: 3.5rem;
    padding: 0.875rem 0;
    line-height: 1.4;
    color: #4b5d73;
}

.registration-container .address-search-box,
.registration-container .k-combobox,
.registration-container .k-datepicker,
.registration-container .k-picker-wrap,
.registration-container .k-dropdownlist,
.registration-container .k-multiselect {
    width: 100%;
    max-width: 100%;
}

@media (max-width: 991.98px) {
    .registration-container .form-group.row {
        display: block;
    }

    .registration-container .form-group.row > .col-md-2,
    .registration-container .form-group.row > .col-md-10 {
        flex: 0 0 100%;
        max-width: 100%;
        padding-right: 0;
    }

    .registration-container .form-group.row > .col-md-2 {
        margin-bottom: 0.5rem;
    }

    .registration-container .form-label-value {
        min-height: auto;
        padding: 0.25rem 0 0;
    }
    .hsk-front-page-head {
        padding-top: 0px;
    
    }

    .subpageHeaderImg {
        min-height: 100px!important;
    }
}


.it-header-slim-wrapper {
    background: transparent !important;

}


.small-box {
    /* margin: 7px;*/
    border-radius: 18px;
}

.box-body {
    overflow:hidden;
}

.it-header-slim-right-zone {
    min-width: 228px;
}

.row {
    --bs-gutter-x: 20px;
}

.k-pager { 
    background-color: #ffffff;
}

.list .k-grid-header {
    background-color: white !important;
}


.input[type=date], input[type=datetime-local], input[type=email], input[type=number], input[type=password], input[type=search], input[type=tel], input[type=text], input[type=time], input[type=url], textarea {

    border-bottom: none;
}


.form-group {
    display: flex;
    flex-direction: column;
}


.k-grid-column-menu k-grid-header-menu {
    display:none !important;
}

/*.k-grid .k-cell-inner .k-grid-filter, .k-grid .k-cell-inner .k-header-column-menu, .k-grid .k-cell-inner .k-grid-header-menu {
    display: none !important;

}*/

/* HAKO public theme layer */
body.public-layout,
body:has(.site-header) {
    background: #fff;
    color: #24364b;
}

.TitlePublic,
.public-home-section h2,
.public-news-detail-page h1,
.public-product-page h1,
.public-weather-page h1,
.tm-detail-header h1,
.inside h1 {
    color: var(--hako-blue) !important;
    font-weight: 700;
    letter-spacing: 0;
}

.TitlePublic::after,
.public-home-section h2::after,
.inside h1::after,
.tm-detail-header h1::after {
    content: "";
    display: block;
    width: 4.5rem;
    height: 0.22rem;
    margin: 0.7rem auto 0;
    border-radius: 0;
    background: var(--hako-green);
}

.inside h1::after,
.tm-detail-header h1::after {
    margin-left: 0;
}

.sectionGr,
.sectionOrange {
    background: var(--hako-blue) !important;
    color: #fff !important;
}

.sectionGr h1,
.sectionGr h2,
.sectionGr h3,
.sectionGr p,
.sectionOrange h1,
.sectionOrange h2,
.sectionOrange h3,
.sectionOrange p {
    color: #fff !important;
}

.sectiongrbtn,
a.sectiongrbtn,
.btn.sectiongrbtn {
    border: 0 !important;
    border-radius: 6px;
    background: var(--hako-blue) !important;
    color: #fff !important;
    font-weight: 700;
    padding: 0.78rem 1.25rem;
    box-shadow: none;
}

.sectionGr .sectiongrbtn,
.sectionOrange .sectiongrbtn {
    background: #fff !important;
    color: var(--hako-blue) !important;
}

.sectiongrbtn:hover,
a.sectiongrbtn:hover,
.btn.sectiongrbtn:hover {
    background: var(--hako-petrol) !important;
    color: #fff !important;
}

.news-main-article .card,
.public-news-detail-page .card,
.public-product-page .card,
.public-weather-page .card,
.tm-form-wrapper,
.tm-register-wrapper,
.info-box-center {
    border: 0 !important;
    border-radius: 8px !important;
    background: #fff !important;
    box-shadow: none !important;
}

.news-main-article .card-title,
.title-xlarge,
.public-news-detail-page h2,
.public-product-page h2,
.public-weather-page h2 {
    color: var(--hako-blue) !important;
    letter-spacing: 0;
}

.public-news-image {
    border-radius: 8px;
    box-shadow: none;
}

.tm-category-list,
.public-home-products .tm-category-list {
    border-left: 0;
    background: #fff;
}

.tm-contactdetails,
.tm-fineprint {
    color: rgba(255, 255, 255, 0.9);
}

.tm-fineprint li,
.tm-impressum li {
    color: rgba(255, 255, 255, 0.9);
}

.tm-fineprint li:hover,
.tm-impressum li:hover {
    color: var(--hako-gold) !important;
}

.public-file-list a,
.public-product-page a,
.public-news-detail-page a,
.public-weather-page a {
    color: var(--hako-blue);
}

.public-file-list a:hover,
.public-product-page a:hover,
.public-news-detail-page a:hover,
.public-weather-page a:hover {
    color: var(--hako-petrol);
}

.form-control:focus,
.k-input:focus,
.k-picker:focus-within,
.k-textbox:focus-within,
.k-dropdownlist:focus-within,
.k-combobox:focus-within {
    border-color: rgba(33, 72, 155, 0.42) !important;
    box-shadow: 0 0 0 0.22rem rgba(33, 72, 155, 0.12) !important;
}

body:has(.site-header) .registration-container {
    color: #24364b;
}

body:has(.site-header) .registration-container .registration-data-container {
    display: grid;
    gap: 1rem;
}

body:has(.site-header) .registration-container .small-element-separator,
body:has(.site-header) .registration-container .extra-small-element-separator,
body:has(.site-header) .registration-container .element-separator {
    display: none;
}

body:has(.site-header) .registration-container .form-group-multicolumn {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

body:has(.site-header) .registration-container .form-group {
    gap: 0.42rem;
    margin: 0;
}

body:has(.site-header) .registration-container .form-label {
    margin: 0;
    color: var(--hako-blue);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0;
}

body:has(.site-header) .registration-container .form-control,
body:has(.site-header) .registration-container input.form-control,
body:has(.site-header) .registration-container textarea.form-control,
body:has(.site-header) .registration-container .iti,
body:has(.site-header) .registration-container .iti input,
body:has(.site-header) .registration-container .iti input[type=text],
body:has(.site-header) .registration-container .iti input[type=tel] {
    min-height: 3.15rem !important;
    border: 1px solid rgba(33, 72, 155, 0.16) !important;
    border-radius: 8px !important;
    background: #fff !important;
    color: #24364b !important;
    font-size: 1rem;
    box-shadow: none !important;
}

body:has(.site-header) .registration-container .form-control,
body:has(.site-header) .registration-container input.form-control,
body:has(.site-header) .registration-container textarea.form-control {
    padding: 0.78rem 0.95rem;
}

body:has(.site-header) .registration-container textarea.form-control {
    min-height: 9rem !important;
    resize: vertical;
}

body:has(.site-header) .registration-container .form-control:hover,
body:has(.site-header) .registration-container input.form-control:hover,
body:has(.site-header) .registration-container textarea.form-control:hover,
body:has(.site-header) .registration-container .iti:hover {
    border-color: rgba(33, 72, 155, 0.28) !important;
}

body:has(.site-header) .registration-container .form-control:focus,
body:has(.site-header) .registration-container input.form-control:focus,
body:has(.site-header) .registration-container textarea.form-control:focus,
body:has(.site-header) .registration-container .iti:focus-within,
body:has(.site-header) .registration-container .iti input:focus,
body:has(.site-header) .registration-container .iti input[type=text]:focus,
body:has(.site-header) .registration-container .iti input[type=tel]:focus {
    border-color: var(--hako-blue) !important;
    box-shadow: 0 0 0 0.22rem rgba(33, 72, 155, 0.1) !important;
    outline: none !important;
}

body:has(.site-header) .registration-container .iti__flag-container {
    height: 100% !important;
}

body:has(.site-header) .registration-container .iti__selected-flag {
    border-radius: 8px 0 0 8px;
    background: rgba(33, 72, 155, 0.05);
}

body:has(.site-header) .registration-container .registration-consent-inline {
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 8px;
    background: #f7f9f6;
}

body:has(.site-header) .registration-container .registration-consent-text {
    color: #526177;
    font-size: 0.92rem;
}

body:has(.site-header) .registration-container .validation-message,
body:has(.site-header) .registration-container .validation-errors {
    color: #9b2c2c;
    font-size: 0.88rem;
}

body:has(.site-header) .registration-container .registration-footer {
    margin-top: 1.2rem;
}

body:has(.site-header) .registration-container .form-group-container {
    display: flex;
    justify-content: flex-end;
}

body:has(.site-header) .registration-container .btn-primary {
    min-height: 3rem;
    border: 0 !important;
    border-radius: 6px;
    background: var(--hako-blue) !important;
    color: #fff !important;
    font-weight: 700;
    padding: 0 1.35rem;
    box-shadow: none !important;
    transition: background-color 0.22s ease, transform 0.22s ease;
}

body:has(.site-header) .registration-container .btn-primary:hover,
body:has(.site-header) .registration-container .btn-primary:focus-visible {
    background: var(--hako-petrol) !important;
    transform: translateY(-1px);
}

body:has(.site-header) .registration-container .btn-primary:disabled {
    background: #d6dde5 !important;
    color: #7a8796 !important;
    transform: none;
}

@media (max-width: 720px) {
    body:has(.site-header) .registration-container .form-group-multicolumn {
        grid-template-columns: 1fr;
    }

    body:has(.site-header) .registration-container .registration-consent-inline {
        padding: 0.9rem;
    }
}

@media (max-width: 640px) {
    .TitlePublic::after,
    .public-home-section h2::after {
        margin-left: auto;
        margin-right: auto;
    }
}

/* HAKO clean public experience */
.hako-clean-hero {
    position: relative;
    min-height: clamp(520px, 72vh, 760px);
    overflow: hidden;
    background: #f7f9f6;
}

.hako-clean-hero__image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 1;
    filter: saturate(0.92);
}

.hako-clean-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.92) 38%, rgba(255, 255, 255, 0.68) 68%, rgba(255, 255, 255, 0.2) 100%);
}

.hako-clean-hero__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    min-height: inherit;
    width: min(1280px, calc(100% - 2rem));
    margin: 0 auto;
}

.hako-clean-hero__content {
    max-width: 46rem;
}

.hako-clean-hero__kicker {
    margin: 0 0 0.9rem;
    color: var(--hako-petrol);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hako-clean-hero__title {
    margin: 0;
    color: var(--hako-blue);
    font-size: clamp(2.7rem, 6vw, 5.8rem);
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: 0;
}

.hako-clean-hero__text {
    max-width: 39rem;
    margin: 1.4rem 0 0;
    color: #526177;
    font-size: clamp(1.05rem, 1.5vw, 1.24rem);
    line-height: 1.65;
}

.hako-clean-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    align-items: center;
    margin-top: 2rem;
}

.hako-clean-hero__button,
.hako-clean-hero__link {
    display: inline-flex;
    align-items: center;
    min-height: 3rem;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
}

.hako-clean-hero__button {
    padding: 0 1.2rem;
    background: var(--hako-blue);
    color: #fff;
}

.hako-clean-hero__button:hover {
    background: var(--hako-petrol);
    color: #fff;
}

.hako-clean-hero__link {
    color: var(--hako-blue);
}

.hako-clean-hero__link:hover {
    color: var(--hako-petrol);
}

.hako-metrics {
    background: #fff;
}

.hako-metrics__inner {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    width: min(1280px, calc(100% - 2rem));
    margin: 0 auto;
}

.hako-metric {
    display: grid;
    gap: 0.35rem;
    padding: clamp(1.25rem, 3vw, 2rem) 1rem;
    justify-items: center;
    text-align: center;
}

.hako-metric + .hako-metric {
    border-left: 0;
}

.hako-metric__value {
    color: var(--hako-blue);
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    font-weight: 700;
    line-height: 1;
}

.hako-metric__label {
    color: #617087;
    font-size: 0.95rem;
    line-height: 1.35;
    text-transform: none;
}

@media (max-width: 820px) {
    .hako-clean-hero {
        min-height: 620px;
    }

    .hako-clean-hero::after {
        background: rgba(255, 255, 255, 0.86);
    }

    .hako-metrics__inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hako-metric:nth-child(odd) {
        border-left: 0;
    }

    .hako-metric:nth-child(n + 3) {
        border-top: 0;
    }
}

@media (max-width: 520px) {
    .hako-clean-hero__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hako-clean-hero__button,
    .hako-clean-hero__link {
        justify-content: center;
        width: 100%;
    }
}

