
:root {

    --bs-blue: #0d6efd;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #198754;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-white: #fff;
    --bs-gray: #6c757d;
    --bs-gray-dark: #343a40;
    --bs-gray-100: #f8f9fa;
    --bs-gray-200: #e9ecef;
    --bs-gray-300: #dee2e6;
    --bs-gray-400: #ced4da;
    --bs-gray-500: #adb5bd;
    --bs-gray-600: #6c757d;
    --bs-gray-700: #495057;
    --bs-gray-800: #343a40;
    --bs-gray-900: #212529;
    --bs-primary: #0d6efd;
    --bs-secondary: #6c757d;
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #f8f9fa;
    --bs-dark: #212529;
    --bs-primary-rgb: 13, 110, 253;
    --bs-secondary-rgb: 108, 117, 125;
    --bs-success-rgb: 25, 135, 84;
    --bs-info-rgb: 13, 202, 240;
    --bs-warning-rgb: 255, 193, 7;
    --bs-danger-rgb: 220, 53, 69;
    --bs-light-rgb: 248, 249, 250;
    --bs-dark-rgb: 33, 37, 41;
    --bs-white-rgb: 255, 255, 255;
    --bs-black-rgb: 0, 0, 0;
    --bs-body-rgb: 33, 37, 41;
    --bs-font-sans-serif: "Rubik", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
    --bs-body-font-family: var(--bs-font-sans-serif);
    --bs-body-font-size: 1rem;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 1.5;
    --bs-body-color: #212529;
    --bs-body-bg: #fff;
}


.accordion-button:focus {
    border-color: unset;
    box-shadow: unset;
}

.accordion-button:not(.collapsed) {
    color: unset;
    background-color: unset;
    box-shadow: unset;
}

.border-bottom-left-0 {
    border-bottom-left-radius: 0 !important;
}

.border-bottom-right-0 {
    border-bottom-right-radius: 0 !important;
}

.border-top-left-0 {
    border-top-left-radius: 0 !important;
}

.border-top-right-0 {
    border-top-right-radius: 0 !important;
}

.card-img-top.card-img-auto {
    height: 0;
    overflow: hidden;
    padding: 0 0 200px 0;
    position: relative;
}

    .card-img-top.card-img-auto iframe,
    .card-img-top.card-img-auto img {
        top: 50%;
        left: 50%;
        max-height: 100%;
        max-width: 100%;
        width: auto;
        height: auto;
        position: absolute;
        transform: translateX(-50%) translateY(-50%);
    }

.carousel.pointer-event {
    touch-action: pan-y pinch-zoom;
}

.dropdown-no-arrow::before {
    display: none;
}

.dropdown-no-arrow::after {
    display: none;
}

.dropdown.dropdown-full-width {
    position: static;
}

.dropdown.dropdown-full-width .dropdown-menu {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-left-width: 0;
    border-right-width: 0;
    border-top-width: 0;
    min-width: auto;
    width: 100%;
    margin-top: 0;
    padding: 0;
}

.form-label {
    font-weight: 600;
}

.form-label.form-label-required:after {
    content: " *";
    color: red;
}

.flex-basis-auto {
    flex-basis: auto !important;
}

.offcanvas-footer {
    padding: 1rem;
}

/* Form control */

.form-control.disabled {
    background-color: #e9ecef;
    opacity: 1;
}

/* Nav pills */

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #ffffff !important;
    background-color: #212529 !important;
}

/* position*/

.position-absolute.bottom {
    bottom: 0;
}

.position-absolute.end {
    right: 0;
}

.position-absolute.start {
    left: 0;
}

.position-absolute.top {
    top: 0;
}

@media (min-width: 576px) {

    .position-sm-static {
        position: static !important;
    }

    .position-sm-relative {
        position: relative !important;
    }

    .position-sm-absolute {
        position: absolute !important;
    }

    .position-sm-fixed {
        position: fixed !important;
    }

    .position-sm-sticky {
        position: -webkit-sticky !important;
        position: sticky !important;
    }
}

@media (min-width: 768px) {

    .position-md-static {
        position: static !important;
    }

    .position-md-relative {
        position: relative !important;
    }

    .position-md-absolute {
        position: absolute !important;
    }

    .position-md-fixed {
        position: fixed !important;
    }

    .position-md-sticky {
        position: -webkit-sticky !important;
        position: sticky !important;
    }
}

@media (min-width: 992px) {

    .position-lg-static {
        position: static !important;
    }

    .position-lg-relative {
        position: relative !important;
    }

    .position-lg-absolute {
        position: absolute !important;
    }

    .position-lg-fixed {
        position: fixed !important;
    }

    .position-lg-sticky {
        position: -webkit-sticky !important;
        position: sticky !important;
    }
}

@media (min-width: 1200px) {

    .position-xl-static {
        position: static !important;
    }

    .position-xl-relative {
        position: relative !important;
    }

    .position-xl-absolute {
        position: absolute !important;
    }

    .position-xl-fixed {
        position: fixed !important;
    }

    .position-xl-sticky {
        position: -webkit-sticky !important;
        position: sticky !important;
    }
}

@media (min-width: 1400px) {

    .position-xxl-static {
        position: static !important;
    }

    .position-xxl-relative {
        position: relative !important;
    }

    .position-xxl-absolute {
        position: absolute !important;
    }

    .position-xxl-fixed {
        position: fixed !important;
    }

    .position-xxl-sticky {
        position: -webkit-sticky !important;
        position: sticky !important;
    }
}

/* table */

table.position-relative > thead > tr > td.position-sticky,
table.position-relative > thead > tr > th.position-sticky {
    background: white !important;
    top: 48px !important;
}



@media (min-width: 992px) {

    .offcanvas-lg .offcanvas-footer {
        display: none !important;
    }

}

.table-responsive > table.position-relative,
.table-responsive > table.position-relative > thead > tr > td.position-sticky,
.table-responsive > table.position-relative > thead > tr > th.position-sticky {
    position: static !important;
}



@media (max-width: 575.98px) {

    .table-responsive-sm > table.position-relative,
    .table-responsive-sm > table.position-relative > thead > tr > td.position-sticky,
    .table-responsive-sm > table.position-relative > thead > tr > th.position-sticky {
        position: static !important;
    }

}

@media (max-width: 767.98px) {

    .table-responsive-md > table.position-relative,
    .table-responsive-md > table.position-relative > thead > tr > td.position-sticky,
    .table-responsive-md > table.position-relative > thead > tr > th.position-sticky {
        position: static !important;
    }

}

@media (max-width: 991.98px) {

    .table-responsive-lg > table.position-relative,
    .table-responsive-lg > table.position-relative > thead > tr > td.position-sticky,
    .table-responsive-lg > table.position-relative > thead > tr > th.position-sticky {
        position: static !important;
    }

}

@media (max-width: 1199.98px) {

    .table-responsive-xl > table.position-relative,
    .table-responsive-xl > table.position-relative > thead > tr > td.position-sticky,
    .table-responsive-xl > table.position-relative > thead > tr > th.position-sticky {
        position: static !important;
    }

}

@media (max-width: 1399.98px) {

    .table-responsive-xxl > table.position-relative,
    .table-responsive-xxl > table.position-relative > thead > tr > td.position-sticky,
    .table-responsive-xxl > table.position-relative > thead > tr > th.position-sticky {
        position: static !important;
    }

}




/* all */

.overflow-x-auto {
    overflow-x: auto !important;
}

.overflow-x-hidden {
    overflow-x: hidden !important;
}

.overflow-x-scroll {
    overflow-x: scroll !important;
}

.overflow-x-visible {
    overflow-x: visible !important;
}

.overflow-y-auto {
    overflow-y: auto !important;
}

.overflow-y-hidden {
    overflow-y: hidden !important;
}

.overflow-y-scroll {
    overflow-y: scroll !important;
}

.overflow-y-visible {
    overflow-y: visible !important;
}

/* all */

.d-table-header {
    display: table-header-group !important;
}

.d-table-body {
    display: table-row-group !important;
}

.d-table-footer {
    display: table-footer-group !important;
}

/* sm */

@media (min-width: 576px) {

    .d-sm-table-header {
        display: table-header-group !important;
    }

    .d-sm-table-body {
        display: table-row-group !important;
    }

    .d-sm-table-footer {
        display: table-footer-group !important;
    }

    .fw-sm-light {
        font-weight: 300 !important;
    }

    .fw-sm-lighter {
        font-weight: lighter !important;
    }

    .fw-sm-normal {
        font-weight: 400 !important;
    }

    .fw-sm-bold {
        font-weight: 700 !important;
    }

    .fw-sm-semibold {
        font-weight: 600 !important;
    }

    .fw-sm-bolder {
        font-weight: bolder !important;
    }

    .overflow-sm-auto {
        overflow: auto !important;
    }

    .overflow-sm-hidden {
        overflow: hidden !important;
    }

    .overflow-sm-scroll {
        overflow: scroll !important;
    }

    .overflow-sm-visible {
        overflow: visible !important;
    }

    .overflow-x-sm-auto {
        overflow-x: auto !important;
    }

    .overflow-x-sm-hidden {
        overflow-x: hidden !important;
    }

    .overflow-x-sm-scroll {
        overflow-x: scroll !important;
    }

    .overflow-x-sm-visible {
        overflow-x: visible !important;
    }

    .overflow-y-sm-auto {
        overflow-y: auto !important;
    }

    .overflow-y-sm-hidden {
        overflow-y: hidden !important;
    }

    .overflow-y-sm-scroll {
        overflow-y: scroll !important;
    }

    .overflow-y-sm-visible {
        overflow-y: visible !important;
    }

}

/* md */

@media (min-width: 768px) {

    .d-md-table-header {
        display: table-header-group !important;
    }

    .d-md-table-body {
        display: table-row-group !important;
    }

    .d-md-table-footer {
        display: table-footer-group !important;
    }

    .fw-md-light {
        font-weight: 300 !important;
    }

    .fw-md-lighter {
        font-weight: lighter !important;
    }

    .fw-md-normal {
        font-weight: 400 !important;
    }

    .fw-md-bold {
        font-weight: 700 !important;
    }

    .fw-md-semibold {
        font-weight: 600 !important;
    }

    .fw-md-bolder {
        font-weight: bolder !important;
    }

    .overflow-md-auto {
        overflow: auto !important;
    }

    .overflow-md-hidden {
        overflow: hidden !important;
    }

    .overflow-md-scroll {
        overflow: scroll !important;
    }

    .overflow-md-visible {
        overflow: visible !important;
    }

    .overflow-x-md-auto {
        overflow-x: auto !important;
    }

    .overflow-x-md-hidden {
        overflow-x: hidden !important;
    }

    .overflow-x-md-scroll {
        overflow-x: scroll !important;
    }

    .overflow-x-md-visible {
        overflow-x: visible !important;
    }

    .overflow-y-md-auto {
        overflow-y: auto !important;
    }

    .overflow-y-md-hidden {
        overflow-y: hidden !important;
    }

    .overflow-y-md-scroll {
        overflow-y: scroll !important;
    }

    .overflow-y-md-visible {
        overflow-y: visible !important;
    }

}

/* lg */

@media (min-width: 992px) {

    .d-lg-table-header {
        display: table-header-group !important;
    }

    .d-lg-table-body {
        display: table-row-group !important;
    }

    .d-lg-table-footer {
        display: table-footer-group !important;
    }

    .fw-lg-light {
        font-weight: 300 !important;
    }

    .fw-lg-lighter {
        font-weight: lighter !important;
    }

    .fw-lg-normal {
        font-weight: 400 !important;
    }

    .fw-lg-bold {
        font-weight: 700 !important;
    }

    .fw-lg-semibold {
        font-weight: 600 !important;
    }

    .fw-lg-bolder {
        font-weight: bolder !important;
    }

    .overflow-lg-auto {
        overflow: auto !important;
    }

    .overflow-lg-hidden {
        overflow: hidden !important;
    }

    .overflow-lg-scroll {
        overflow: scroll !important;
    }

    .overflow-lg-visible {
        overflow: visible !important;
    }

    .overflow-x-lg-auto {
        overflow-x: auto !important;
    }

    .overflow-x-lg-hidden {
        overflow-x: hidden !important;
    }

    .overflow-x-lg-scroll {
        overflow-x: scroll !important;
    }

    .overflow-x-lg-visible {
        overflow-x: visible !important;
    }

    .overflow-y-lg-auto {
        overflow-y: auto !important;
    }

    .overflow-y-lg-hidden {
        overflow-y: hidden !important;
    }

    .overflow-y-lg-scroll {
        overflow-y: scroll !important;
    }

    .overflow-y-lg-visible {
        overflow-y: visible !important;
    }

}

/* xl */

@media (min-width: 1200px) {

    .d-xl-table-header {
        display: table-header-group !important;
    }

    .d-xl-table-body {
        display: table-row-group !important;
    }

    .d-xl-table-footer {
        display: table-footer-group !important;
    }

    .fw-xl-light {
        font-weight: 300 !important;
    }

    .fw-xl-lighter {
        font-weight: lighter !important;
    }

    .fw-xl-normal {
        font-weight: 400 !important;
    }

    .fw-xl-bold {
        font-weight: 700 !important;
    }

    .fw-xl-semibold {
        font-weight: 600 !important;
    }

    .fw-xl-bolder {
        font-weight: bolder !important;
    }

    .overflow-xl-auto {
        overflow: auto !important;
    }

    .overflow-xl-hidden {
        overflow: hidden !important;
    }

    .overflow-xl-scroll {
        overflow: scroll !important;
    }

    .overflow-xl-visible {
        overflow: visible !important;
    }

    .overflow-x-xl-auto {
        overflow-x: auto !important;
    }

    .overflow-x-xl-hidden {
        overflow-x: hidden !important;
    }

    .overflow-x-xl-scroll {
        overflow-x: scroll !important;
    }

    .overflow-x-xl-visible {
        overflow-x: visible !important;
    }

    .overflow-y-xl-auto {
        overflow-y: auto !important;
    }

    .overflow-y-xl-hidden {
        overflow-y: hidden !important;
    }

    .overflow-y-xl-scroll {
        overflow-y: scroll !important;
    }

    .overflow-y-xl-visible {
        overflow-y: visible !important;
    }

}

/* xxl */

@media (min-width: 1400px) {

    .d-xxl-table-header {
        display: table-header-group !important;
    }

    .d-xxl-table-body {
        display: table-row-group !important;
    }

    .d-xxl-table-footer {
        display: table-footer-group !important;
    }

    .fw-xxl-light {
        font-weight: 300 !important;
    }

    .fw-xxl-lighter {
        font-weight: lighter !important;
    }

    .fw-xxl-normal {
        font-weight: 400 !important;
    }

    .fw-xxl-bold {
        font-weight: 700 !important;
    }

    .fw-xxl-semibold {
        font-weight: 600 !important;
    }

    .fw-xxl-bolder {
        font-weight: bolder !important;
    }

    .overflow-xxl-auto {
        overflow: auto !important;
    }

    .overflow-xxl-hidden {
        overflow: hidden !important;
    }

    .overflow-xxl-scroll {
        overflow: scroll !important;
    }

    .overflow-xxl-visible {
        overflow: visible !important;
    }

    .overflow-x-xxl-auto {
        overflow-x: auto !important;
    }

    .overflow-x-xxl-hidden {
        overflow-x: hidden !important;
    }

    .overflow-x-xxl-scroll {
        overflow-x: scroll !important;
    }

    .overflow-x-xxl-visible {
        overflow-x: visible !important;
    }

    .overflow-y-xxl-auto {
        overflow-y: auto !important;
    }

    .overflow-y-xxl-hidden {
        overflow-y: hidden !important;
    }

    .overflow-y-xxl-scroll {
        overflow-y: scroll !important;
    }

    .overflow-y-xxl-visible {
        overflow-y: visible !important;
    }

}















@media print {

    .accordion {
        margin: 0 !important;
        padding: 0 !important;
    }

    .accordion-body {
        margin: 0 !important;
        padding: 1.25rem 0 !important;
    }

    .accordion-button {
        font-size: 1.25rem;
        font-weight: 500;
        line-height: 1.2;
        margin: 0 !important;
        padding: 0 !important;
    }

    .accordion-button::after {
        background: none !important;
    }

    .accordion-collapse {
        display: block !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .accordion-header {
        margin: 0 !important;
        padding: 0 !important;
    }

    .accordion-item {
        border: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .m-print-0 {
        margin: 0 !important;
    }

    .m-print-1 {
        margin: 0.25rem !important;
    }

    .m-print-2 {
        margin: 0.5rem !important;
    }

    .m-print-3 {
        margin: 1rem !important;
    }

    .m-print-4 {
        margin: 1.5rem !important;
    }

    .m-print-5 {
        margin: 3rem !important;
    }

    .m-print-auto {
        margin: auto !important;
    }

    .mx-print-0 {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .mx-print-1 {
        margin-right: 0.25rem !important;
        margin-left: 0.25rem !important;
    }

    .mx-print-2 {
        margin-right: 0.5rem !important;
        margin-left: 0.5rem !important;
    }

    .mx-print-3 {
        margin-right: 1rem !important;
        margin-left: 1rem !important;
    }

    .mx-print-4 {
        margin-right: 1.5rem !important;
        margin-left: 1.5rem !important;
    }

    .mx-print-5 {
        margin-right: 3rem !important;
        margin-left: 3rem !important;
    }

    .mx-print-auto {
        margin-right: auto !important;
        margin-left: auto !important;
    }

    .my-print-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .my-print-1 {
        margin-top: 0.25rem !important;
        margin-bottom: 0.25rem !important;
    }

    .my-print-2 {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    .my-print-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .my-print-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .my-print-5 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }

    .my-print-auto {
        margin-top: auto !important;
        margin-bottom: auto !important;
    }

    .mt-print-0 {
        margin-top: 0 !important;
    }

    .mt-print-1 {
        margin-top: 0.25rem !important;
    }

    .mt-print-2 {
        margin-top: 0.5rem !important;
    }

    .mt-print-3 {
        margin-top: 1rem !important;
    }

    .mt-print-4 {
        margin-top: 1.5rem !important;
    }

    .mt-print-5 {
        margin-top: 3rem !important;
    }

    .mt-print-auto {
        margin-top: auto !important;
    }

    .me-print-0 {
        margin-right: 0 !important;
    }

    .me-print-1 {
        margin-right: 0.25rem !important;
    }

    .me-print-2 {
        margin-right: 0.5rem !important;
    }

    .me-print-3 {
        margin-right: 1rem !important;
    }

    .me-print-4 {
        margin-right: 1.5rem !important;
    }

    .me-print-5 {
        margin-right: 3rem !important;
    }

    .me-print-auto {
        margin-right: auto !important;
    }

    .mb-print-0 {
        margin-bottom: 0 !important;
    }

    .mb-print-1 {
        margin-bottom: 0.25rem !important;
    }

    .mb-print-2 {
        margin-bottom: 0.5rem !important;
    }

    .mb-print-3 {
        margin-bottom: 1rem !important;
    }

    .mb-print-4 {
        margin-bottom: 1.5rem !important;
    }

    .mb-print-5 {
        margin-bottom: 3rem !important;
    }

    .mb-print-auto {
        margin-bottom: auto !important;
    }

    .ms-print-0 {
        margin-left: 0 !important;
    }

    .ms-print-1 {
        margin-left: 0.25rem !important;
    }

    .ms-print-2 {
        margin-left: 0.5rem !important;
    }

    .ms-print-3 {
        margin-left: 1rem !important;
    }

    .ms-print-4 {
        margin-left: 1.5rem !important;
    }

    .ms-print-5 {
        margin-left: 3rem !important;
    }

    .ms-print-auto {
        margin-left: auto !important;
    }

    .p-print-0 {
        padding: 0 !important;
    }

    .p-print-1 {
        padding: 0.25rem !important;
    }

    .p-print-2 {
        padding: 0.5rem !important;
    }

    .p-print-3 {
        padding: 1rem !important;
    }

    .p-print-4 {
        padding: 1.5rem !important;
    }

    .p-print-5 {
        padding: 3rem !important;
    }

    .px-print-0 {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    .px-print-1 {
        padding-right: 0.25rem !important;
        padding-left: 0.25rem !important;
    }

    .px-print-2 {
        padding-right: 0.5rem !important;
        padding-left: 0.5rem !important;
    }

    .px-print-3 {
        padding-right: 1rem !important;
        padding-left: 1rem !important;
    }

    .px-print-4 {
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important;
    }

    .px-print-5 {
        padding-right: 3rem !important;
        padding-left: 3rem !important;
    }

    .py-print-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .py-print-1 {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
    }

    .py-print-2 {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }

    .py-print-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .py-print-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .py-print-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .pt-print-0 {
        padding-top: 0 !important;
    }

    .pt-print-1 {
        padding-top: 0.25rem !important;
    }

    .pt-print-2 {
        padding-top: 0.5rem !important;
    }

    .pt-print-3 {
        padding-top: 1rem !important;
    }

    .pt-print-4 {
        padding-top: 1.5rem !important;
    }

    .pt-print-5 {
        padding-top: 3rem !important;
    }

    .pe-print-0 {
        padding-right: 0 !important;
    }

    .pe-print-1 {
        padding-right: 0.25rem !important;
    }

    .pe-print-2 {
        padding-right: 0.5rem !important;
    }

    .pe-print-3 {
        padding-right: 1rem !important;
    }

    .pe-print-4 {
        padding-right: 1.5rem !important;
    }

    .pe-print-5 {
        padding-right: 3rem !important;
    }

    .pb-print-0 {
        padding-bottom: 0 !important;
    }

    .pb-print-1 {
        padding-bottom: 0.25rem !important;
    }

    .pb-print-2 {
        padding-bottom: 0.5rem !important;
    }

    .pb-print-3 {
        padding-bottom: 1rem !important;
    }

    .pb-print-4 {
        padding-bottom: 1.5rem !important;
    }

    .pb-print-5 {
        padding-bottom: 3rem !important;
    }

    .ps-print-0 {
        padding-left: 0 !important;
    }

    .ps-print-1 {
        padding-left: 0.25rem !important;
    }

    .ps-print-2 {
        padding-left: 0.5rem !important;
    }

    .ps-print-3 {
        padding-left: 1rem !important;
    }

    .ps-print-4 {
        padding-left: 1.5rem !important;
    }

    .ps-print-5 {
        padding-left: 3rem !important;
    }

}

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

@media print {

    body {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact !important;
    }

}

html {
  position: relative;
  min-height: 100%;
}

article iframe {
    width: 100%;
}

[data-href]:not([data-href=""]) {
    cursor: pointer;
}

.hk-icon__color {
    color: #d1202f !important;
}

/* table */

.hk-table {
    color: rgb(33, 37, 41);
    display: block;
}

    .hk-table > .hk-table__body {
        display: block;
    }

        .hk-table > .hk-table__body > .hk-table__row {
            display: block;
        }

            .hk-table > .hk-table__body > .hk-table__row:nth-child(odd) > .hk-table__cell {
                background-color: rgba(0, 0, 0, 0.05);
            }

            .hk-table > .hk-table__body > .hk-table__row > .hk-table__cell {
                display: flex;
                flex-wrap: nowrap;
                justify-content: space-between;
                padding: .5rem;
            }

                .hk-table > .hk-table__body > .hk-table__row > .hk-table__cell > .hk-table__content {
                    flex: 0 0 auto;
                    width: auto;
                }

                    .hk-table > .hk-table__body > .hk-table__row > .hk-table__cell > .hk-table__content.hk-table__content--1 {
                        width: 8.33333333%;
                    }

                    .hk-table > .hk-table__body > .hk-table__row > .hk-table__cell > .hk-table__content.hk-table__content--2 {
                        width: 16.66666667%;
                    }

                    .hk-table > .hk-table__body > .hk-table__row > .hk-table__cell > .hk-table__content.hk-table__content--3 {
                        width: 25%;
                    }

                    .hk-table > .hk-table__body > .hk-table__row > .hk-table__cell > .hk-table__content.hk-table__content--4 {
                        width: 33.33333333%;
                    }

                    .hk-table > .hk-table__body > .hk-table__row > .hk-table__cell > .hk-table__content.hk-table__content--5 {
                        width: 41.66666667%;
                    }

                    .hk-table > .hk-table__body > .hk-table__row > .hk-table__cell > .hk-table__content.hk-table__content--6 {
                        width: 50%;
                    }

                    .hk-table > .hk-table__body > .hk-table__row > .hk-table__cell > .hk-table__content.hk-table__content--7 {
                        width: 58.33333333%;
                    }

                    .hk-table > .hk-table__body > .hk-table__row > .hk-table__cell > .hk-table__content.hk-table__content--8 {
                        width: 66.66666667%;
                    }

                    .hk-table > .hk-table__body > .hk-table__row > .hk-table__cell > .hk-table__content.hk-table__content--9 {
                        width: 75%;
                    }

                    .hk-table > .hk-table__body > .hk-table__row > .hk-table__cell > .hk-table__content.hk-table__content--10 {
                        width: 83.33333333%;
                    }

                    .hk-table > .hk-table__body > .hk-table__row > .hk-table__cell > .hk-table__content.hk-table__content--11 {
                        width: 91.66666667%;
                    }

                    .hk-table > .hk-table__body > .hk-table__row > .hk-table__cell > .hk-table__content.hk-table__content--12 {
                        width: 100%;
                    }

                .hk-table > .hk-table__body > .hk-table__row > .hk-table__cell > .hk-table__label {
                    flex: 0 0 auto;
                    font-weight: bold;
                    width: auto;
                }

                    .hk-table > .hk-table__body > .hk-table__row > .hk-table__cell > .hk-table__label.hk-table__label--1 {
                        width: 8.33333333%;
                    }

                    .hk-table > .hk-table__body > .hk-table__row > .hk-table__cell > .hk-table__label.hk-table__label--2 {
                        width: 16.66666667%;
                    }

                    .hk-table > .hk-table__body > .hk-table__row > .hk-table__cell > .hk-table__label.hk-table__label--3 {
                        width: 25%;
                    }

                    .hk-table > .hk-table__body > .hk-table__row > .hk-table__cell > .hk-table__label.hk-table__label--4 {
                        width: 33.33333333%;
                    }

                    .hk-table > .hk-table__body > .hk-table__row > .hk-table__cell > .hk-table__label.hk-table__label--5 {
                        width: 41.66666667%;
                    }

                    .hk-table > .hk-table__body > .hk-table__row > .hk-table__cell > .hk-table__label.hk-table__label--6 {
                        width: 50%;
                    }

                    .hk-table > .hk-table__body > .hk-table__row > .hk-table__cell > .hk-table__label.hk-table__label--7 {
                        width: 58.33333333%;
                    }

                    .hk-table > .hk-table__body > .hk-table__row > .hk-table__cell > .hk-table__label.hk-table__label--8 {
                        width: 66.66666667%;
                    }

                    .hk-table > .hk-table__body > .hk-table__row > .hk-table__cell > .hk-table__label.hk-table__label--9 {
                        width: 75%;
                    }

                    .hk-table > .hk-table__body > .hk-table__row > .hk-table__cell > .hk-table__label.hk-table__label--10 {
                        width: 83.33333333%;
                    }

                    .hk-table > .hk-table__body > .hk-table__row > .hk-table__cell > .hk-table__label.hk-table__label--11 {
                        width: 91.66666667%;
                    }

                    .hk-table > .hk-table__body > .hk-table__row > .hk-table__cell > .hk-table__label.hk-table__label--12 {
                        width: 100%;
                    }

    .hk-table > .hk-table__foot {
        display: block;
    }

        .hk-table > .hk-table__foot > .hk-table__row {
            display: block;
        }

            .hk-table > .hk-table__foot > .hk-table__row > .hk-table__cell {
                display: block;
                padding: .5rem;
            }

    .hk-table > .hk-table__head {
        display: none;
    }

        .hk-table > .hk-table__head > .hk-table__row {
            display: block;
        }

            .hk-table > .hk-table__head > .hk-table__row > .hk-table__cell {
                display: block;
                padding: .5rem;
            }

/* sm */
@media (min-width: 576px) {

    .hk-table.hk-table--sm {
        display: table !important;
        width: 100%;
    }

        .hk-table.hk-table--sm > .hk-table__body {
            display: table-row-group !important;
        }

            .hk-table.hk-table--sm > .hk-table__body > .hk-table__row {
                display: table-row !important;
            }

                .hk-table.hk-table--sm > .hk-table__body > .hk-table__row > .hk-table__cell {
                    display: table-cell;
                }

                    .hk-table.hk-table--sm > .hk-table__body > .hk-table__row > .hk-table__cell > .hk-table__label {
                        display: none !important;
                    }

        .hk-table.hk-table--sm > .hk-table__foot {
            display: table-footer-group !important;
        }

            .hk-table.hk-table--sm > .hk-table__foot > .hk-table__row {
                display: table-row !important;
            }

                .hk-table.hk-table--sm > .hk-table__foot > .hk-table__row > .hk-table__cell {
                    display: table-cell;
                }

        .hk-table.hk-table--sm > .hk-table__head {
            display: table-header-group !important;
        }

            .hk-table.hk-table--sm > .hk-table__head > .hk-table__row {
                display: table-row !important;
            }

                .hk-table.hk-table--sm > .hk-table__head > .hk-table__row > .hk-table__cell {
                    display: table-cell;
                    font-weight: bold;
                }

        .hk-table.hk-table--sm > .hk-table__row {
            display: table-row !important;
        }

            .hk-table.hk-table--sm > .hk-table__row > .hk-table__cell {
                display: table-cell !important;
            }

}

/* md */
@media (min-width: 768px) {

    .hk-table.hk-table--md {
        display: table !important;
        width: 100%;
    }

        .hk-table.hk-table--md > .hk-table__body {
            display: table-row-group !important;
        }

            .hk-table.hk-table--md > .hk-table__body > .hk-table__row {
                display: table-row !important;
            }

                .hk-table.hk-table--md > .hk-table__body > .hk-table__row > .hk-table__cell {
                    display: table-cell;
                }

                    .hk-table.hk-table--md > .hk-table__body > .hk-table__row > .hk-table__cell > .hk-table__label {
                        display: none !important;
                    }

        .hk-table.hk-table--md > .hk-table__foot {
            display: table-footer-group !important;
        }

            .hk-table.hk-table--md > .hk-table__foot > .hk-table__row {
                display: table-row !important;
            }

                .hk-table.hk-table--md > .hk-table__foot > .hk-table__row > .hk-table__cell {
                    display: table-cell;
                }

        .hk-table.hk-table--md > .hk-table__head {
            display: table-header-group !important;
        }

            .hk-table.hk-table--md > .hk-table__head > .hk-table__row {
                display: table-row !important;
            }

                .hk-table.hk-table--md > .hk-table__head > .hk-table__row > .hk-table__cell {
                    display: table-cell;
                    font-weight: bold;
                }

        .hk-table.hk-table--md > .hk-table__row {
            display: table-row !important;
        }

            .hk-table.hk-table--md > .hk-table__row > .hk-table__cell {
                display: table-cell !important;
            }

}

/* lg */
@media (min-width: 992px) {

    .hk-table.hk-table--lg {
        display: table !important;
        width: 100%;
    }

        .hk-table.hk-table--lg > .hk-table__body {
            display: table-row-group !important;
        }

            .hk-table.hk-table--lg > .hk-table__body > .hk-table__row {
                display: table-row !important;
            }

                .hk-table.hk-table--lg > .hk-table__body > .hk-table__row > .hk-table__cell {
                    display: table-cell;
                }

                    .hk-table.hk-table--lg > .hk-table__body > .hk-table__row > .hk-table__cell > .hk-table__label {
                        display: none !important;
                    }

        .hk-table.hk-table--lg > .hk-table__foot {
            display: table-footer-group !important;
        }

            .hk-table.hk-table--lg > .hk-table__foot > .hk-table__row {
                display: table-row !important;
            }

                .hk-table.hk-table--lg > .hk-table__foot > .hk-table__row > .hk-table__cell {
                    display: table-cell;
                }

        .hk-table.hk-table--lg > .hk-table__head {
            display: table-header-group !important;
        }

            .hk-table.hk-table--lg > .hk-table__head > .hk-table__row {
                display: table-row !important;
            }

                .hk-table.hk-table--lg > .hk-table__head > .hk-table__row > .hk-table__cell {
                    display: table-cell;
                    font-weight: bold;
                }

        .hk-table.hk-table--lg > .hk-table__row {
            display: table-row !important;
        }

            .hk-table.hk-table--lg > .hk-table__row > .hk-table__cell {
                display: table-cell !important;
            }

}

/* xl */
@media (min-width: 1200px) {

    .hk-table.hk-table--xl {
        display: table !important;
        width: 100%;
    }

        .hk-table.hk-table--xl > .hk-table__body {
            display: table-row-group !important;
        }

            .hk-table.hk-table--xl > .hk-table__body > .hk-table__row {
                display: table-row !important;
            }

                .hk-table.hk-table--xl > .hk-table__body > .hk-table__row > .hk-table__cell {
                    display: table-cell;
                }

                    .hk-table.hk-table--xl > .hk-table__body > .hk-table__row > .hk-table__cell > .hk-table__label {
                        display: none !important;
                    }

        .hk-table.hk-table--xl > .hk-table__foot {
            display: table-footer-group !important;
        }

            .hk-table.hk-table--xl > .hk-table__foot > .hk-table__row {
                display: table-row !important;
            }

                .hk-table.hk-table--xl > .hk-table__foot > .hk-table__row > .hk-table__cell {
                    display: table-cell;
                }

        .hk-table.hk-table--xl > .hk-table__head {
            display: table-header-group !important;
        }

            .hk-table.hk-table--xl > .hk-table__head > .hk-table__row {
                display: table-row !important;
            }

                .hk-table.hk-table--xl > .hk-table__head > .hk-table__row > .hk-table__cell {
                    display: table-cell;
                    font-weight: bold;
                }

        .hk-table.hk-table--xl > .hk-table__row {
            display: table-row !important;
        }

            .hk-table.hk-table--xl > .hk-table__row > .hk-table__cell {
                display: table-cell !important;
            }

}

/* xxl */
@media (min-width: 1400px) {

    .hk-table.hk-table--xxl {
        display: table !important;
    }

        .hk-table.hk-table--xxl > .hk-table__body {
            display: table-row-group !important;
        }

            .hk-table.hk-table--xxl > .hk-table__body > .hk-table__row {
                display: table-row !important;
            }

                .hk-table.hk-table--xxl > .hk-table__body > .hk-table__row > .hk-table__cell {
                    display: table-cell;
                }

                    .hk-table.hk-table--xxl > .hk-table__body > .hk-table__row > .hk-table__cell > .hk-table__label {
                        display: none !important;
                    }

        .hk-table.hk-table--xxl > .hk-table__foot {
            display: table-footer-group !important;
        }

            .hk-table.hk-table--xxl > .hk-table__foot > .hk-table__row {
                display: table-row !important;
            }

                .hk-table.hk-table--xxl > .hk-table__foot > .hk-table__row > .hk-table__cell {
                    display: table-cell;
                }

        .hk-table.hk-table--xxl > .hk-table__head {
            display: table-header-group !important;
        }

            .hk-table.hk-table--xxl > .hk-table__head > .hk-table__row {
                display: table-row !important;
            }

                .hk-table.hk-table--xxl > .hk-table__head > .hk-table__row > .hk-table__cell {
                    display: table-cell;
                    font-weight: bold;
                }

        .hk-table.hk-table--xxl > .hk-table__row {
            display: table-row !important;
        }

            .hk-table.hk-table--xxl > .hk-table__row > .hk-table__cell {
                display: table-cell !important;
            }

}




@media print {

    video {
        display: none !important;
    }

}

.validation-summary-valid {
    display: none !important;
}

.validation-summary-errors  ul {
    margin-bottom: 0 !important;
}





/* is-invalid */

.was-validated :invalid ~ .field-validation-error,
.was-validated :invalid ~ .invalid-tooltip,
.input-validation-error ~ .field-validation-error,
.input-validation-error ~ .invalid-tooltip {
    display: block;
}

.was-validated .form-control:invalid, .form-control.input-validation-error {
    border-color: #dc3545;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

    .was-validated .form-control:invalid:focus, .form-control.input-validation-error:focus {
        border-color: #dc3545;
        box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
    }

.was-validated textarea.form-control:invalid, textarea.form-control.input-validation-error {
    padding-right: calc(1.5em + 0.75rem);
    background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .form-select:invalid, .form-select.input-validation-error {
    border-color: #dc3545;
}

    .was-validated .form-select:invalid:not([multiple]):not([size]), .was-validated .form-select:invalid:not([multiple])[size="1"], .form-select.input-validation-error:not([multiple]):not([size]), .form-select.input-validation-error:not([multiple])[size="1"] {
        padding-right: 4.125rem;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
        background-position: right 0.75rem center, center right 2.25rem;
        background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
    }

    .was-validated .form-select:invalid:focus, .form-select.input-validation-error:focus {
        border-color: #dc3545;
        box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
    }

.was-validated .form-control-color:invalid, .form-control-color.input-validation-error {
    width: calc(3rem + calc(1.5em + 0.75rem));
}

.was-validated .form-check-input:invalid, .form-check-input.input-validation-error {
    border-color: #dc3545;
}

    .was-validated .form-check-input:invalid:checked, .form-check-input.input-validation-error:checked {
        background-color: #dc3545;
    }

    .was-validated .form-check-input:invalid:focus, .form-check-input.input-validation-error:focus {
        box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
    }

    .was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.input-validation-error ~ .form-check-label {
        color: #dc3545;
    }

.form-check-inline .form-check-input ~ .field-validation-error {
    margin-left: 0.5em;
}

.was-validated .input-group > .form-control:not(:focus):invalid, .input-group > .form-control:not(:focus).input-validation-error,
.was-validated .input-group > .form-select:not(:focus):invalid,
.input-group > .form-select:not(:focus).input-validation-error,
.was-validated .input-group > .form-floating:not(:focus-within):invalid,
.input-group > .form-floating:not(:focus-within).input-validation-error {
    z-index: 4;
}



/* invalid-feedback */

.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.field-validation-error) {
    margin-left: -1px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.field-validation-error {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: #dc3545;
}

.was-validated :invalid ~ .field-validation-error,
.was-validated :invalid ~ .invalid-tooltip,
.input-validation-error ~ .field-validation-error,
.input-validation-error ~ .invalid-tooltip {
    display: block;
}


/* FOO */

.validation-summary-errors {
    --bs-alert-bg: #f8d7da;
    --bs-alert-padding-x: 1rem;
    --bs-alert-padding-y: 1rem;
    --bs-alert-margin-bottom: 1rem;
    --bs-alert-color: #842029;
    --bs-alert-border-color: #f5c2c7;
    --bs-alert-border: 1px solid var(--bs-alert-border-color);
    --bs-alert-border-radius: 0.375rem;
    position: relative;
    padding: var(--bs-alert-padding-y) var(--bs-alert-padding-x);
    margin-bottom: var(--bs-alert-margin-bottom);
    color: var(--bs-alert-color);
    background-color: var(--bs-alert-bg);
    border: var(--bs-alert-border);
    border-radius: var(--bs-alert-border-radius);
}

/* xs */

.hkc-applicationFooter {
    background: rgb(33, 37, 41);
    color: rgb(248, 249, 250);
}

.hkc-applicationFooter a {
    color: rgb(248, 249, 250);
}

.hkc-applicationFooter__brands {
}


.hkc-applicationFooter__brands .col {
    flex: 0 0 auto !important;
    width: 100% !important;
}

.hkc-applicationFooter__brands a {
    border: 1px solid rgba(255, 255, 255, 0.25);
    height: 4rem;
    padding: 1rem;
    text-align: center;
}

.hkc-applicationFooter__brands img {
    max-height: 100%;
    max-width: 100%;
    height: inherit !important;
}

/* sm */
@media (min-width: 576px) {

    .hkc-applicationFooter__brands .col {
        width: 50% !important;
    }

}

/* md */
@media (min-width: 768px) {

    .hkc-applicationFooter__brands .col {
        width: 33.33333333333333% !important;
    }

}

/* lg */
@media (min-width: 992px) {

    .hkc-applicationFooter__brands .col {
        width: 25% !important;
    }

}

/* xl */
@media (min-width: 1200px) {

    .hkc-applicationFooter__brands .col {
        width: 20% !important;
    }

}

/* xxl */
@media (min-width: 1400px) {

    .hkc-applicationFooter__brands .col {
        width: 16.66666666666667% !important;
    }

}

.hkc-applicationHeader .nav-link {
    color: #ffffff;
}


/* Products dropdown */

.hkc-applicationHeader__productsDropDown .nav-link {
    transition: none;
}

.hkc-applicationHeader__productsDropDown .nav-link.show {
    background: rgb(237, 244, 251);
    color: #000000;
    position: relative;
}

    .hkc-applicationHeader__productsDropDown .nav-link.show::after {
        border-bottom: 0.5rem solid rgb(237, 244, 251);
        box-sizing: content-box;
        content: '';
        display: block;
        height: 100%;
        left: 0;
        position: absolute;
        top: 0;
        right: 0;
    }

.hkc-applicationHeader__productsDropDown .dropdown-menu {
    background: rgb(237, 244, 251);
    max-height: calc(100vh - 3.5rem);
    overflow-y: auto;
}

    .hkc-applicationHeader__productsDropDown .dropdown-menu .list-group-item {
        background-color: transparent;
        color: #000000;
    }

        .hkc-applicationHeader__productsDropDown .dropdown-menu .list-group-item:hover {
            background-color: rgba(0, 0, 0, 0.25);
        }

/* News dropdown */

.hkc-applicationHeader__newsDropDown .nav-link {
    transition: none;
}

.hkc-applicationHeader__newsDropDown .nav-link.show {
    background: #00a29b;
    color: #ffffff;
    position: relative;
}

    .hkc-applicationHeader__newsDropDown .nav-link.show::after {
        border-bottom: 0.5rem solid #00a29b;
        box-sizing: content-box;
        content: '';
        display: block;
        height: 100%;
        left: 0;
        position: absolute;
        top: 0;
        right: 0;
    }

.hkc-applicationHeader__newsDropDown .dropdown-menu {
    background: #00a29b;
    max-height: calc(100vh - 3.5rem);
    overflow-y: auto;
}

    .hkc-applicationHeader__newsDropDown .dropdown-menu .list-group-item {
        background-color: transparent;
        color: #ffffff;
    }

        .hkc-applicationHeader__newsDropDown .dropdown-menu .list-group-item:hover {
            background-color: rgba(255, 255, 255, 0.25);
        }

/* Outlet dropdown */

.hkc-applicationHeader__outletDropDown .nav-link {
    transition: none;
}

.hkc-applicationHeader__outletDropDown .nav-link.show {
    background: #ff7900;
    color: #ffffff;
    position: relative;
}

    .hkc-applicationHeader__outletDropDown .nav-link.show::after {
        border-bottom: 0.5rem solid #ff7900;
        box-sizing: content-box;
        content: '';
        display: block;
        height: 100%;
        left: 0;
        position: absolute;
        top: 0;
        right: 0;
    }

.hkc-applicationHeader__outletDropDown .dropdown-menu {
    background: #ff7900;
    max-height: calc(100vh - 3.5rem);
    overflow-y: auto;
}

    .hkc-applicationHeader__outletDropDown .dropdown-menu .list-group-item {
        background-color: transparent;
        color: #ffffff;
    }

        .hkc-applicationHeader__outletDropDown .dropdown-menu .list-group-item:hover {
            background-color: rgba(255, 255, 255, 0.25);
        }



/* Catalogs dropdown */

.hkc-applicationHeader__catalogsDropDown .nav-link {
    transition: none;
}

    .hkc-applicationHeader__catalogsDropDown .nav-link.show {
        background: rgb(237, 244, 251);
        color: #000000;
        position: relative;
    }

        .hkc-applicationHeader__catalogsDropDown .nav-link.show::after {
            border-bottom: 0.5rem solid rgb(237, 244, 251);
            box-sizing: content-box;
            content: '';
            display: block;
            height: 100%;
            left: 0;
            position: absolute;
            top: 0;
            right: 0;
        }

.hkc-applicationHeader__catalogsDropDown .dropdown-menu {
    background: rgb(237, 244, 251);
    max-height: calc(100vh - 3.5rem);
    overflow-y: auto;
}

    .hkc-applicationHeader__catalogsDropDown .dropdown-menu .list-group-item {
        background-color: transparent;
        color: #000000;
    }

        .hkc-applicationHeader__catalogsDropDown .dropdown-menu .list-group-item:hover {
            background-color: rgba(0, 0, 0, 0.25);
        }


.hkc-photomontage {
    margin: -0.5rem -0.5rem 0 -0.5rem;
}

.hkc-photomontage__cell {
    background-size: 100% 100%;
    border-radius: 1rem;
    padding: 0;
}

    .hkc-photomontage__cell[colspan="1"][rowspan="1"] .hkc-photomontage__spring {
        aspect-ratio: 1 / 1;
    }

    .hkc-photomontage__cell[colspan="1"][rowspan="2"] .hkc-photomontage__spring {
        aspect-ratio: 1 / 2;
    }

    .hkc-photomontage__cell[colspan="1"][rowspan="3"] .hkc-photomontage__spring {
        aspect-ratio: 1 / 3;
    }

    .hkc-photomontage__cell[colspan="1"][rowspan="4"] .hkc-photomontage__spring {
        aspect-ratio: 1 / 4;
    }

    .hkc-photomontage__cell[colspan="1"][rowspan="5"] .hkc-photomontage__spring {
        aspect-ratio: 1 / 5;
    }

    .hkc-photomontage__cell[colspan="1"][rowspan="6"] .hkc-photomontage__spring {
        aspect-ratio: 1 / 6;
    }

    .hkc-photomontage__cell[colspan="1"][rowspan="7"] .hkc-photomontage__spring {
        aspect-ratio: 1 / 7;
    }

    .hkc-photomontage__cell[colspan="1"][rowspan="8"] .hkc-photomontage__spring {
        aspect-ratio: 1 / 8;
    }

    .hkc-photomontage__cell[colspan="1"][rowspan="9"] .hkc-photomontage__spring {
        aspect-ratio: 1 / 9;
    }

    .hkc-photomontage__cell[colspan="1"][rowspan="10"] .hkc-photomontage__spring {
        aspect-ratio: 1 / 10;
    }

    .hkc-photomontage__cell[colspan="2"][rowspan="1"] .hkc-photomontage__spring {
        aspect-ratio: 2 / 1;
    }

    .hkc-photomontage__cell[colspan="2"][rowspan="2"] .hkc-photomontage__spring {
        aspect-ratio: 2 / 2;
    }

    .hkc-photomontage__cell[colspan="2"][rowspan="3"] .hkc-photomontage__spring {
        aspect-ratio: 2 / 3;
    }

    .hkc-photomontage__cell[colspan="2"][rowspan="4"] .hkc-photomontage__spring {
        aspect-ratio: 2 / 4;
    }

    .hkc-photomontage__cell[colspan="2"][rowspan="5"] .hkc-photomontage__spring {
        aspect-ratio: 2 / 5;
    }

    .hkc-photomontage__cell[colspan="2"][rowspan="6"] .hkc-photomontage__spring {
        aspect-ratio: 2 / 6;
    }

    .hkc-photomontage__cell[colspan="2"][rowspan="7"] .hkc-photomontage__spring {
        aspect-ratio: 2 / 7;
    }

    .hkc-photomontage__cell[colspan="2"][rowspan="8"] .hkc-photomontage__spring {
        aspect-ratio: 2 / 8;
    }

    .hkc-photomontage__cell[colspan="2"][rowspan="9"] .hkc-photomontage__spring {
        aspect-ratio: 2 / 9;
    }

    .hkc-photomontage__cell[colspan="2"][rowspan="10"] .hkc-photomontage__spring {
        aspect-ratio: 2 / 10;
    }

    .hkc-photomontage__cell[colspan="3"][rowspan="1"] .hkc-photomontage__spring {
        aspect-ratio: 3 / 1;
    }

    .hkc-photomontage__cell[colspan="3"][rowspan="2"] .hkc-photomontage__spring {
        aspect-ratio: 3 / 2;
    }

    .hkc-photomontage__cell[colspan="3"][rowspan="3"] .hkc-photomontage__spring {
        aspect-ratio: 3 / 3;
    }

    .hkc-photomontage__cell[colspan="3"][rowspan="4"] .hkc-photomontage__spring {
        aspect-ratio: 3 / 4;
    }

    .hkc-photomontage__cell[colspan="3"][rowspan="5"] .hkc-photomontage__spring {
        aspect-ratio: 3 / 5;
    }

    .hkc-photomontage__cell[colspan="3"][rowspan="6"] .hkc-photomontage__spring {
        aspect-ratio: 3 / 6;
    }

    .hkc-photomontage__cell[colspan="3"][rowspan="7"] .hkc-photomontage__spring {
        aspect-ratio: 3 / 7;
    }

    .hkc-photomontage__cell[colspan="3"][rowspan="8"] .hkc-photomontage__spring {
        aspect-ratio: 3 / 8;
    }

    .hkc-photomontage__cell[colspan="3"][rowspan="9"] .hkc-photomontage__spring {
        aspect-ratio: 3 / 9;
    }

    .hkc-photomontage__cell[colspan="3"][rowspan="10"] .hkc-photomontage__spring {
        aspect-ratio: 3 / 10;
    }

    .hkc-photomontage__cell[colspan="4"][rowspan="1"] .hkc-photomontage__spring {
        aspect-ratio: 4 / 1;
    }

    .hkc-photomontage__cell[colspan="4"][rowspan="2"] .hkc-photomontage__spring {
        aspect-ratio: 4 / 2;
    }

    .hkc-photomontage__cell[colspan="4"][rowspan="3"] .hkc-photomontage__spring {
        aspect-ratio: 4 / 3;
    }

    .hkc-photomontage__cell[colspan="4"][rowspan="4"] .hkc-photomontage__spring {
        aspect-ratio: 4 / 4;
    }

    .hkc-photomontage__cell[colspan="4"][rowspan="5"] .hkc-photomontage__spring {
        aspect-ratio: 4 / 5;
    }

    .hkc-photomontage__cell[colspan="4"][rowspan="6"] .hkc-photomontage__spring {
        aspect-ratio: 4 / 6;
    }

    .hkc-photomontage__cell[colspan="4"][rowspan="7"] .hkc-photomontage__spring {
        aspect-ratio: 4 / 7;
    }

    .hkc-photomontage__cell[colspan="4"][rowspan="8"] .hkc-photomontage__spring {
        aspect-ratio: 4 / 8;
    }

    .hkc-photomontage__cell[colspan="4"][rowspan="9"] .hkc-photomontage__spring {
        aspect-ratio: 4 / 9;
    }

    .hkc-photomontage__cell[colspan="4"][rowspan="10"] .hkc-photomontage__spring {
        aspect-ratio: 4 / 10;
    }

    .hkc-photomontage__cell[colspan="5"][rowspan="1"] .hkc-photomontage__spring {
        aspect-ratio: 5 / 1;
    }

    .hkc-photomontage__cell[colspan="5"][rowspan="2"] .hkc-photomontage__spring {
        aspect-ratio: 5 / 2;
    }

    .hkc-photomontage__cell[colspan="5"][rowspan="3"] .hkc-photomontage__spring {
        aspect-ratio: 5 / 3;
    }

    .hkc-photomontage__cell[colspan="5"][rowspan="4"] .hkc-photomontage__spring {
        aspect-ratio: 5 / 4;
    }

    .hkc-photomontage__cell[colspan="5"][rowspan="5"] .hkc-photomontage__spring {
        aspect-ratio: 5 / 5;
    }

    .hkc-photomontage__cell[colspan="5"][rowspan="6"] .hkc-photomontage__spring {
        aspect-ratio: 5 / 6;
    }

    .hkc-photomontage__cell[colspan="5"][rowspan="7"] .hkc-photomontage__spring {
        aspect-ratio: 5 / 7;
    }

    .hkc-photomontage__cell[colspan="5"][rowspan="8"] .hkc-photomontage__spring {
        aspect-ratio: 5 / 8;
    }

    .hkc-photomontage__cell[colspan="5"][rowspan="9"] .hkc-photomontage__spring {
        aspect-ratio: 5 / 9;
    }

    .hkc-photomontage__cell[colspan="5"][rowspan="10"] .hkc-photomontage__spring {
        aspect-ratio: 5 / 10;
    }

    .hkc-photomontage__cell[colspan="6"][rowspan="1"] .hkc-photomontage__spring {
        aspect-ratio: 6 / 1;
    }

    .hkc-photomontage__cell[colspan="6"][rowspan="2"] .hkc-photomontage__spring {
        aspect-ratio: 6 / 2;
    }

    .hkc-photomontage__cell[colspan="6"][rowspan="3"] .hkc-photomontage__spring {
        aspect-ratio: 6 / 3;
    }

    .hkc-photomontage__cell[colspan="6"][rowspan="4"] .hkc-photomontage__spring {
        aspect-ratio: 6 / 4;
    }

    .hkc-photomontage__cell[colspan="6"][rowspan="5"] .hkc-photomontage__spring {
        aspect-ratio: 6 / 5;
    }

    .hkc-photomontage__cell[colspan="6"][rowspan="6"] .hkc-photomontage__spring {
        aspect-ratio: 6 / 6;
    }

    .hkc-photomontage__cell[colspan="6"][rowspan="7"] .hkc-photomontage__spring {
        aspect-ratio: 6 / 7;
    }

    .hkc-photomontage__cell[colspan="6"][rowspan="8"] .hkc-photomontage__spring {
        aspect-ratio: 6 / 8;
    }

    .hkc-photomontage__cell[colspan="6"][rowspan="9"] .hkc-photomontage__spring {
        aspect-ratio: 6 / 9;
    }

    .hkc-photomontage__cell[colspan="6"][rowspan="10"] .hkc-photomontage__spring {
        aspect-ratio: 6 / 10;
    }

    .hkc-photomontage__cell[colspan="7"][rowspan="1"] .hkc-photomontage__spring {
        aspect-ratio: 7 / 1;
    }

    .hkc-photomontage__cell[colspan="7"][rowspan="2"] .hkc-photomontage__spring {
        aspect-ratio: 7 / 2;
    }

    .hkc-photomontage__cell[colspan="7"][rowspan="3"] .hkc-photomontage__spring {
        aspect-ratio: 7 / 3;
    }

    .hkc-photomontage__cell[colspan="7"][rowspan="4"] .hkc-photomontage__spring {
        aspect-ratio: 7 / 4;
    }

    .hkc-photomontage__cell[colspan="7"][rowspan="5"] .hkc-photomontage__spring {
        aspect-ratio: 7 / 5;
    }

    .hkc-photomontage__cell[colspan="7"][rowspan="6"] .hkc-photomontage__spring {
        aspect-ratio: 7 / 6;
    }

    .hkc-photomontage__cell[colspan="7"][rowspan="7"] .hkc-photomontage__spring {
        aspect-ratio: 7 / 7;
    }

    .hkc-photomontage__cell[colspan="7"][rowspan="8"] .hkc-photomontage__spring {
        aspect-ratio: 7 / 8;
    }

    .hkc-photomontage__cell[colspan="7"][rowspan="9"] .hkc-photomontage__spring {
        aspect-ratio: 7 / 9;
    }

    .hkc-photomontage__cell[colspan="7"][rowspan="10"] .hkc-photomontage__spring {
        aspect-ratio: 7 / 10;
    }

    .hkc-photomontage__cell[colspan="8"][rowspan="1"] .hkc-photomontage__spring {
        aspect-ratio: 8 / 1;
    }

    .hkc-photomontage__cell[colspan="8"][rowspan="2"] .hkc-photomontage__spring {
        aspect-ratio: 8 / 2;
    }

    .hkc-photomontage__cell[colspan="8"][rowspan="3"] .hkc-photomontage__spring {
        aspect-ratio: 8 / 3;
    }

    .hkc-photomontage__cell[colspan="8"][rowspan="4"] .hkc-photomontage__spring {
        aspect-ratio: 8 / 4;
    }

    .hkc-photomontage__cell[colspan="8"][rowspan="5"] .hkc-photomontage__spring {
        aspect-ratio: 8 / 5;
    }

    .hkc-photomontage__cell[colspan="8"][rowspan="6"] .hkc-photomontage__spring {
        aspect-ratio: 8 / 6;
    }

    .hkc-photomontage__cell[colspan="8"][rowspan="7"] .hkc-photomontage__spring {
        aspect-ratio: 8 / 7;
    }

    .hkc-photomontage__cell[colspan="8"][rowspan="8"] .hkc-photomontage__spring {
        aspect-ratio: 8 / 8;
    }

    .hkc-photomontage__cell[colspan="8"][rowspan="9"] .hkc-photomontage__spring {
        aspect-ratio: 8 / 9;
    }

    .hkc-photomontage__cell[colspan="8"][rowspan="10"] .hkc-photomontage__spring {
        aspect-ratio: 8 / 10;
    }

    .hkc-photomontage__cell[colspan="9"][rowspan="1"] .hkc-photomontage__spring {
        aspect-ratio: 9 / 1;
    }

    .hkc-photomontage__cell[colspan="9"][rowspan="2"] .hkc-photomontage__spring {
        aspect-ratio: 9 / 2;
    }

    .hkc-photomontage__cell[colspan="9"][rowspan="3"] .hkc-photomontage__spring {
        aspect-ratio: 9 / 3;
    }

    .hkc-photomontage__cell[colspan="9"][rowspan="4"] .hkc-photomontage__spring {
        aspect-ratio: 9 / 4;
    }

    .hkc-photomontage__cell[colspan="9"][rowspan="5"] .hkc-photomontage__spring {
        aspect-ratio: 9 / 5;
    }

    .hkc-photomontage__cell[colspan="9"][rowspan="6"] .hkc-photomontage__spring {
        aspect-ratio: 9 / 6;
    }

    .hkc-photomontage__cell[colspan="9"][rowspan="7"] .hkc-photomontage__spring {
        aspect-ratio: 9 / 7;
    }

    .hkc-photomontage__cell[colspan="9"][rowspan="8"] .hkc-photomontage__spring {
        aspect-ratio: 9 / 8;
    }

    .hkc-photomontage__cell[colspan="9"][rowspan="9"] .hkc-photomontage__spring {
        aspect-ratio: 9 / 9;
    }

    .hkc-photomontage__cell[colspan="9"][rowspan="10"] .hkc-photomontage__spring {
        aspect-ratio: 9 / 10;
    }

    .hkc-photomontage__cell[colspan="10"][rowspan="1"] .hkc-photomontage__spring {
        aspect-ratio: 10 / 1;
    }

    .hkc-photomontage__cell[colspan="10"][rowspan="2"] .hkc-photomontage__spring {
        aspect-ratio: 10 / 2;
    }

    .hkc-photomontage__cell[colspan="10"][rowspan="3"] .hkc-photomontage__spring {
        aspect-ratio: 10 / 3;
    }

    .hkc-photomontage__cell[colspan="10"][rowspan="4"] .hkc-photomontage__spring {
        aspect-ratio: 10 / 4;
    }

    .hkc-photomontage__cell[colspan="10"][rowspan="5"] .hkc-photomontage__spring {
        aspect-ratio: 10 / 5;
    }

    .hkc-photomontage__cell[colspan="10"][rowspan="6"] .hkc-photomontage__spring {
        aspect-ratio: 10 / 6;
    }

    .hkc-photomontage__cell[colspan="10"][rowspan="7"] .hkc-photomontage__spring {
        aspect-ratio: 10 / 7;
    }

    .hkc-photomontage__cell[colspan="10"][rowspan="8"] .hkc-photomontage__spring {
        aspect-ratio: 10 / 8;
    }

    .hkc-photomontage__cell[colspan="10"][rowspan="9"] .hkc-photomontage__spring {
        aspect-ratio: 10 / 9;
    }

    .hkc-photomontage__cell[colspan="10"][rowspan="10"] .hkc-photomontage__spring {
        aspect-ratio: 10 / 10;
    }

.hkc-photomontage__row {
}

.hkc-photomontage__spring {
    display: block;
    position: relative;
}

.hkc-photomontage__table {
    border-collapse: separate;
    border-spacing: 0.5rem;
    margin: 0;
    padding: 0;
    width: 100%;
}

.hkc-productDetailsOrderModal {
}

.hkc-productDetailsOrderModal__table > tbody > tr > td {
    vertical-align: middle !important;
}

.hkc-productDetailsOrderModal__counter {
    font-weight: normal !important;
    right: 50px;
}

    .hkc-productDetailsOrderModal__counter:empty {
        display: none;
    }

.hkc-productDetailsOrderModal__quantity {
    min-width: 4em;
}

.modal:not(.busy) .hkc-productDetailsOrderModal__modalBusy {
    display: none;
}

@media (max-width: 991px) {

    .hkc-productDetailsOrderModal__header {
        writing-mode: vertical-rl;
        transform: rotate(180deg);
    }
}


.hkc-productDetailsVariantModal {
}

.hkc-productDetailsVariantModal__table > tbody > tr > td {
    vertical-align: middle !important;
}

.hkc-productDetailsVariantModal__infoAlertBadge {

    border: 1px dashed rgba(0, 0, 0, .2);
    border-radius: 5px;
    margin-left: .5rem;
    padding: .5rem;
}

@media (max-width: 991px) {
    .hkc-productDetailsVariantModal__header {
        writing-mode: vertical-rl;
        transform: rotate(180deg);
    }
}


.hkc-productListFilter {

}

.hkc-productListFilter__counter {
    font-weight: normal !important;
    position:  absolute;
    right: 50px;
}

.hkc-productListFilter__counter:empty {
    display: none;
}

@media (max-width: 991.98px) {
}

@media (min-width: 992px) {

    .hkc-productListFilter .offcanvas-body {
        display: block !important;
    }

}

/* Index */

.hkp-adventCalendar__door {
    border: 1px solid rgba(0, 0, 0, 0.5);
    color: rgb(255, 255, 255);
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.75);
}


a.hkp-adventCalendar__doorLink,
a.hkp-adventCalendar__doorLink:active,
a.hkp-adventCalendar__doorLink:hover,
a.hkp-adventCalendar__doorLink:visited {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    text-decoration: none;
}

a.hkp-adventCalendar__doorLink:hover {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.hkp-adventCalendar__door.hkp-adventCalendar__door--passed a.hkp-adventCalendar__doorLink {
    color: rgb(0, 0, 0);
    text-shadow: 2px 2px 2px rgba(255, 255, 255, 0.75);
}

/* sm */
@media (min-width: 576px) {

    .hkp-adventCalendar__door {
        font-size: 3rem;
    }

}

/* md */
@media (min-width: 768px) {

    .hkp-adventCalendar__door {
        font-size: 4rem;
    }

}

/* lg */
@media (min-width: 992px) {

    .hkp-adventCalendar__door {
        font-size: 5rem;
    }

}

/* xl */
@media (min-width: 1200px) {

    .hkp-adventCalendar__door {
        font-size: 6rem;
    }

}

/* xxl */
@media (min-width: 1400px) {

    .hkp-adventCalendar__door {
        font-size: 7rem;
    }

}



/* About */

/*
.hkp-homeAbout__section:not(:nth-of-type(5)) {
    display: none;
}
*/

.hkp-homeAbout__bookmark {
    height: 56px;
    visibility: hidden;
}

.hkp-homeAbout__h2 {
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 3rem;
    font-size: 1rem;
    font-weight: bold;
}


.hkp-homeAbout__timeline {
    display: flex;
    flex-wrap: wrap;
}

.hkp-homeAbout__timelineItem {
    flex: 0 0 calc(100% / 2);
}

@media (min-width: 576px) {

    .hkp-homeAbout__timelineItem {
        flex: 0 0 calc(100% / 3);
    }
 
}

@media (min-width: 768px) {

    .hkp-homeAbout__timelineItem {
        flex: 0 0 calc(100% / 4);
    }
}

@media (min-width: 992px) {

    .hkp-homeAbout__timelineItem {
        flex: 0 0 calc(100% / 5);
    }
}

@media (min-width: 1200px) {

    .hkp-homeAbout__timelineItem {
        flex: 0 0 calc(100% / 6);
    }
}

@media (min-width: 1400px) {

    .hkp-homeAbout__timelineItem {
        flex: 0 0 calc(100% / 7);
    }
}




.hkp-sizeGuide__table td,
.hkp-sizeGuide__table th {
    text-align: center;
}

.hkp-sizeGuide__table > thead > tr:last-child > *:is(td, th) {
    border-bottom-width: 3px !important;
}


.hkp-sizeGuide__table > thead > tr:first-child > *:is(td, th) {
    background: rgb(207, 226, 255);
}

.hkp-sizeGuide__table > thead > tr:first-child > *:is(td, th):nth-child(even) {
    background: rgba(207, 226, 255, 0.5);
}

.hkp-sizeGuide__table > thead > tr > *:is(td, th):nth-child(even) {
    background: rgba(0, 0, 0, 0.05);
}

.hkp-sizeGuide__table > tbody > tr > *:is(td, th):nth-child(even) {
    background: rgba(0, 0, 0, 0.05);
}