body {
    margin: 0;
    background-color: #252631;
    padding: 0;
}
/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
    display: none;
}
/* Hide scrollbar for IE, Edge and Firefox */
body {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
/* Use min opacity 0.01 (not 0): WebKit/iOS often drops taps on fully transparent boxes. */
@-webkit-keyframes blinkingClickableArea {
    0% {
        opacity: 0.01;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 0.01;
    }
}
@keyframes blinkingClickableArea {
    0% {
        opacity: 0.01;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 0.01;
    }
}
@-webkit-keyframes pulseAudio {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.75;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
@keyframes pulseAudio {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.75;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
.vl-body.with-header #offcanvasTopNavigation,
.vl-body.with-header #offcanvasBottomNavigation {
    height: var(--bs-brand-navbar-height);
    border-bottom: 0;
}
.vl-body.with-header #offcanvasTopNavigation .offcanvas-body,
.vl-body.with-header #offcanvasBottomNavigation .offcanvas-body {
    padding: 0;
}
.vl-body.with-header.secondary-enabled #offcanvasTopNavigation {
    height: calc(var(--bs-brand-navbar-height) + var(--bs-brand-navbar-height-secondary));
    border-bottom: 0;
}
.vl-body .action-wraper {
    top: 2rem;
}
.vl-body.with-header .action-wraper.offcanvas-enabled {
    top: calc(var(--bs-brand-navbar-height) + 2rem);
}
.vl-body.with-header.secondary-enabled .action-wraper.offcanvas-enabled {
    top: calc(var(--bs-brand-navbar-height) + var(--bs-brand-navbar-height-secondary) + 2rem);
}
/* Zamjenjen height: -webkit-fill-available */
.virtual-location-container {
    width: 100%;
}
.virtual-location-container video {
    width: 100%;
    height: auto;
    pointer-events: none;
    /* object-fit: cover; */
}
.virtual-location-container img {
    width: 100%;
    height: -webkit-fill-available;
    pointer-events: none;
    /* object-fit: cover; */
    /* object-position: center; */
}
.virtual-location-container-backround,
.virtual-location-container-transition {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
.virtual-location-container-backround.active,
.virtual-location-container-transition.active {
    visibility: visible;
    opacity: 1;
    z-index: 3;
}
.virtual-location-container-backround.inactive,
.virtual-location-container-transition.inactive {
    visibility: hidden;
    opacity: 0;
    z-index: 0;
}
.action-wraper {
    display: flex;
    position: fixed;
    left: 50%;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, 0);
    transition: all 0.5s ease;
    visibility: visible;
    width: auto;
}
.action-wraper.p-center {
    z-index: 1028;
}
.action-wraper.p-right {
    right: 2rem;
    left: unset !important;
    z-index: 1056;
}
.action-inner-wraper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 19.375rem;
    height: 4rem;
    border-radius: var(--bs-border-radius-pill);
    background-color: var(--bs-white);
    padding-right: 0.5rem;
    padding-left: 0.5rem;
}
.navigation-indicator-t {
    position: absolute;
    top: 0;
    transition: all 0.2s ease-in-out;
    visibility: visible;
    opacity: 1;
    width: 3rem;
    border-top: 4px solid var(--bs-brand-dark);
    border-radius: var(--bs-border-radius);
}
.navigation-indicator-b {
    position: absolute;
    bottom: 0;
    transition: all 0.2s ease-in-out;
    visibility: hidden;
    opacity: 0;
    width: 3rem;
    border-bottom: 4px solid var(--bs-primary);
    border-radius: var(--bs-border-radius);
}
.action-wraper.offcanvas-enabled .navigation-indicator-t {
    transition: all 0.2s ease-in-out;
    visibility: hidden;
    opacity: 0;
}
.action-wraper.offcanvas-enabled .navigation-indicator-b {
    transition: all 0.2s ease-in-out;
    visibility: visible;
    opacity: 1;
}
.action-btn {
    display: inline-block;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
    width: 2rem;
    min-width: 2rem;
    max-width: 2rem;
    height: 2rem;
    min-height: 2rem;
    max-height: 2rem;
    border: unset;
    cursor: pointer;
    padding: 0.5rem 0;
    vertical-align: middle;
    text-align: center;
    line-height: 1;
    color: var(--bs-body-color);
    font-size: 1rem;
    font-weight: 400;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.action-btn,
.action-btn:hover,
.action-btn:focus,
.action-btn:active {
    background-color: transparent;
}
.action-btn.disabled {
    cursor: not-allowed;
    color: var(--bs-brand-gray);
    pointer-events: none;
}
.action-btn.navigation {
    width: 3rem;
    min-width: 3rem;
    max-width: 3rem;
    height: 3rem;
    min-height: 3rem;
    max-height: 3rem;
    border-radius: 50%;
    background-color: var(--bs-brand);
    color: var(--bs-white);
    font-size: 1.5rem;
}
.action-btn.navigation.disabled {
    background-color: var(--bs-brand-gray);
    color: var(--bs-white);
}
.action-btn-text {
    font-size: 14px;
    font-weight: 500;
}
.action-btn-dropdown {
    display: flex;
    align-items: center;
    justify-content: center;
}
.action-btn-dropdown i {
    font-size: 20px;
}
.action-btn-dropdown i.fa-up, .action-btn-dropdown.expanded i.fa-down {
    display: none;
}

.action-btn-dropdown i.fa-down, .action-btn-dropdown.expanded i.fa-up {
    display: inline-block;
}
#exit-full-screen {
    display: none;
}
#enter-full-screen {
    display: inline-block;
}
.overlay-clickable-areas {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /* Above background videos (z-index 2) and infopoints shell (z-index 2) */
    z-index: 5;
}
.overlay-clickable-areas .item {
    position: absolute;
    opacity: 0.01;
    z-index: 10;
    border-radius: 0.5rem;
    cursor: pointer;
    color: transparent;
    /* Stay targetable even if a parent briefly has pointer-events: none (transitions / overlays). */
    pointer-events: auto;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}
.overlay-clickable-areas .item:hover {
    transition: all 0.5s ease;
    opacity: 0.5 !important;
    border: 1px solid var(--bs-white);
    background-color: rgba(255 255 255 / 20%) !important;
}
.overlay-clickable-areas .item.animate {
    transform-origin: 50% 50%;
    -webkit-animation: blinkingClickableArea 0.8s 0.1s cubic-bezier(.5, .5, 0, 1);
    -moz-animation: blinkingClickableArea 0.8s 0.1s cubic-bezier(.5, .5, 0, 1);
    -o-animation: blinkingClickableArea 0.8s 0.1s cubic-bezier(.5, .5, 0, 1);
    animation: blinkingClickableArea 0.8s 0.1s cubic-bezier(.5, .5, 0, 1);
}
.overlay-clickable-areas .embed-link {
    position: absolute;
    opacity: 1;
    z-index: 10;
    border-radius: 0.5rem;
    background-color: rgb(255 255 255 / 50%);
    cursor: pointer;
    color: transparent;
    pointer-events: auto;
    touch-action: manipulation;
}
.overlay-clickable-areas .embed-link.no-iframe {
    background-color: var(--bs-yellow-100) !important;
    color: var(--bs-warning);
}
#clickable-area-modal.modal {
    height: 93%;
    padding: 0 !important;
}
#clickable-area-modal.modal .modal-dialog {
    margin: 5rem auto 0 auto;
    width: 80%;
    max-width: none;
    height: 80%;
}
#clickable-area-modal.modal .modal-content {
    height: 100%;
    border: 0;
    background-color: transparent;
    display: flex;
    flex-direction: column;
}
#clickable-area-modal.modal .modal-header {
    flex-shrink: 0;
    background-color: transparent;
}
#clickable-area-modal.modal .modal-header .btn-close {
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border-radius: 50%;
    background-color: rgb(255 255 255 / 50%);
    opacity: 1;
}
#clickable-area-modal.modal .modal-header .btn-close:hover {
    background-color: rgb(255 255 255 / 85%);
}
#clickable-area-modal.modal .modal-body {
    flex: 1 1 auto;
    min-height: 0;
    height: 100%;
    background-color: transparent;
    padding: 0;
    overflow-y: hidden;
}
/* On-load modal: dialog fits content; modal scrolls when content is taller than viewport. */
/* Darker backdrop when on-load modal is open. */
#vl-on-load-modal.show + .modal-backdrop,
.modal-backdrop:has(+ #vl-on-load-modal.show) {
    opacity: 0.9;
}
#vl-on-load-modal.modal {
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    height: 100%;
    padding: 0 !important;
    overflow-x: auto !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
}
#vl-on-load-modal .modal-dialog {
    margin: auto;
    width: max-content;
    max-width: 90vw;
    min-width: min(24rem, 90vw);
    height: max-content !important;
    max-height: none !important;
    min-height: 0 !important;
    flex-shrink: 0;
}
#vl-on-load-modal .modal-content {
    border: 0;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    max-height: none !important;
    height: auto !important;
    padding: 0;
    border-radius: 0.5rem;
    overflow: hidden;
}
#vl-on-load-modal .modal-header {
    background-color: #fff;
    padding: 0.5rem 0.75rem;
    flex-shrink: 0;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}
#vl-on-load-modal .modal-header + .modal-body .vl-on-load-modal-body-inner {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    clip-path: none;
}
#vl-on-load-modal .modal-body {
    flex: 0 0 auto;
    width: 1200px;
    box-sizing: border-box;
    background-color: #fff;
    padding: 1.5rem 1rem;
    margin-bottom: 0;
    overflow-y: visible !important;
    overflow-x: visible !important;
    height: 800px !important;
    max-height: none !important;
    border-radius: 0;
}
#vl-on-load-modal .vl-on-load-modal-body-inner,
#vl-on-load-modal .modal-body iframe {
    margin-bottom: 0;
    vertical-align: top;
}
#vl-on-load-modal .vl-on-load-modal-body-inner {
    width: 100%;
    box-sizing: border-box;
    background-color: #fff;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
    overflow: hidden;
    isolation: isolate;
    clip-path: inset(0 0 0 0 round 0.5rem 0.5rem 0 0);
}
#vl-on-load-modal .vl-on-load-modal-body-inner > *:first-child,
#vl-on-load-modal .vl-on-load-modal-body-inner iframe {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
    display: block;
    vertical-align: top;
}
#vl-on-load-modal .modal-footer {
    flex-shrink: 0;
    background-color: white;
    margin-top: 0;
    width: 100% ;
    padding: 1.5rem 1rem;
    box-sizing: border-box;
    border-top: 0;
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}
#vl-on-load-modal .modal-footer button {
    background-color: #e7292e;
}
#vl-on-load-modal .modal-body iframe {
    min-height: 70vh;
    display: block;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
    background-color: #fff;
}
/* Required field asterisk on the right (for inline modal body content, not iframe). */
#vl-on-load-modal .modal-body label:has(+ input[required]),
#vl-on-load-modal .modal-body label:has(+ select[required]) {
    padding-left: 0.65em;
    text-indent: -0.65em;
    overflow: hidden;
    display: inline-block;
}
#vl-on-load-modal .modal-body label:has(+ input[required])::after,
#vl-on-load-modal .modal-body label:has(+ select[required])::after {
    content: " *";
    padding-left: 0;
    text-indent: 0;
    color: inherit;
}
#vl-on-load-modal .modal-body label .required,
#vl-on-load-modal .modal-body .required {
    float: right;
    margin-left: 0.35em;
}
.preloader {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-color: var(--bs-white);
}
.preloader-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.preloader-message {
    margin-top: 1rem;
    margin-bottom: 0;
}
.field-label {
    margin-bottom: 1.25rem;
    color: var(--bs-brand);
    font-weight: 600;
}
.typing_label {
    font-weight: 500;
}
.typing_label ol,
.typing_label ul {
    max-height: 300px;
    overflow-y: auto;
}
.typing_label ol::-webkit-scrollbar-thumb,
.typing_label ul::-webkit-scrollbar-thumb {
    border: 3px var(--bs-border-style) transparent;
}
.form-text {
    color: var(--bs-body-color);
    font-size: 1rem;
}
.form-text.show-hide {
    display: flex;
    justify-content: space-between;
    margin-top: 0.25rem;
}
.form-control.textarea-plain.cntdwn {
    resize: vertical;
}
#form-modal {
    overflow-y: hidden;
}
#form-modal .modal-content {
    border: 0;
}
#offcanvasForm.offcanvas.offcanvas-bottom {
    height: 50vh;
}
#offcanvasForm.offcanvas.offcanvas-bottom .form-save,
#offcanvasForm.offcanvas.offcanvas-bottom .offcanvas-body {
    padding: 1rem;
}
#offcanvasForm .offcanvas-body {
    padding: 1.5rem;
    overflow-y: auto;
}
#offcanvasForm .offcanvas-body .form-group li {
    margin-bottom: 0.5rem;
}
#offcanvasForm form > fieldset > .row {
    margin-bottom: 7rem;
}
#offcanvasForm .offcanvas-body .form-save {
    position: absolute;
    right: 0;
    bottom: 0;
    box-shadow: 0 0 9px rgba(0,0,0,0.12);
    background-color: var(--bs-white);
    padding: 1.5rem;
}
#offcanvasForm .offcanvas-body .form-save > div {
    padding-right: 0.25rem;
}
#offcanvasForm .file-custom-label {
    text-overflow: ellipsis;
	overflow: hidden;
}
.audio-and-form-toggler-wraper {
    display: flex;
    position: fixed;
    bottom: 2rem;
    left: 50%;
    align-items: center;
    justify-content: center;
    transform: translateX(-50%);
    z-index: 3;
    gap: 1rem;
}
#toggleAudio,
#toggleBBBOffcanvas,
#toggleFormOffcanvas {
    z-index: 3;
    width: 3rem;
    height: 3rem;
    border:unset;
    border-radius: 50%;
    background:var(--bs-brand);
    color:white;
}
#toggleAudioHeader {
    display: none;
    width: 3rem;
    height: 3rem;
    border:unset;
    border-radius: 50%;
    background:var(--bs-brand);
    color:white;
}
#toggleAudio.muted,
#toggleAudioHeader.muted {
    animation: pulseAudio 1s infinite;
}
#toggleBBBOffcanvas {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
}
#user-list-menu {
    position:fixed;
    bottom:2rem;
    left:2rem;
}
.bbb-user-list.container {
    position: fixed;
    bottom: 0;
    left: 20px;
    z-index: 3;
    width: 480px;
    min-height: 480px;
    border-radius: 1rem 1rem 0 0;
    background:var(--bs-white);
    padding: 2rem;
}
.select2-container--bootstrap4 .select2-selection--single .select2-selection__rendered {
    padding-right: 0;
}
#confirmCloseFormModal,
#helperFormsModal {
    z-index: 1056;
}
.modal-backdrop.fade.show ~ .modal-backdrop.fade.show {
    z-index: 1055 !important;
}
.form-fields-inner-wraper {
    min-height: 400px;
    max-height: 400px;
    padding-top: 0.5rem;
    overflow: hidden auto;
    scrollbar-width: thin;
    scrollbar-color: var(--bs-brand-dark) var(--bs-white);
}
.form-fields-inner-wraper .field-label {
    color: var(--bs-body-color);
}
.form-fields-inner-wraper::-webkit-scrollbar {
    width: 0.25rem;
    height: 0.25rem;
}
.form-fields-inner-wraper::-webkit-scrollbar-track {
    background: var(--bs-white);
}
.form-fields-inner-wraper::-webkit-scrollbar-thumb {
    background: var(--bs-brand-gray);
}
.form-fields-inner-wraper::-webkit-scrollbar-thumb:hover {
    background: var(--bs-brand-graydark);
}
#previous-form-btn,
#next-form-btn,
#save-form-btn {
    min-width: 7rem;
    max-width: 7rem;
}
#helperBtn {
    opacity: 0.5;
    margin-right: 1.25rem;
    border: 0;
    box-shadow: none;
    background: transparent;
    padding: 0;
    text-decoration: none;
    line-height: normal;
    color: var(--bs-black);
}
#helperBtn:hover {
    opacity: 0.75;
}
#helperBtn:active,
#helperBtn:focus {
    opacity: 1;
}
@media all and (max-width: 575.98px) {
    .typing_label ol,
    .typing_label ul {
        max-height: unset;
        overflow-y: auto;
    }
    #offcanvasForm form > fieldset > .row {
        margin-bottom: 4rem;
    }
    .audio-and-form-toggler-wraper {
        bottom: 5rem;
    }
    #offcanvasTopNavigation {
        z-index: 9999 !important;
        width: 100vw;
    }
    #offcanvasTopNavigation .offcanvas.offcanvas-end {
        width: 100vw;
        border-left: 0;
    }
}
@media all and (max-width: 991.98px) {
    .vl-body .action-wraper {
        top: 1rem;
    }
    .vl-body.with-header #offcanvasTopNavigation,
    .vl-body.with-header #offcanvasBottomNavigation {
        height: var(--bs-brand-navbar-height-mobile);
        border-bottom: 0;
    }
    .vl-body.with-header #offcanvasTopNavigation .offcanvas-body,
    .vl-body.with-header #offcanvasBottomNavigation .offcanvas-body {
        padding: 0;
    }
    .vl-body.with-header.secondary-enabled #offcanvasTopNavigation,
    .vl-body.with-header.secondary-enabled #offcanvasBottomNavigation {
        height: var(--bs-brand-navbar-height-mobile);
        border-bottom: 0;
    }
    .vl-body.with-header .action-wraper.offcanvas-enabled {
        top: calc(var(--bs-brand-navbar-height-mobile) + 1rem);
    }
    .vl-body.with-header.secondary-enabled .action-wraper.offcanvas-enabled {
        top: calc(var(--bs-brand-navbar-height-mobile) + 1rem);
    }
    #form-modal {
        overflow-y: hidden;
    }
    #form-modal .horizontal-stepper .step-row .step-content {
        scrollbar-width: thin;
        scrollbar-color: var(--bs-brand-dark) var(--bs-white);

    }
    #form-modal .horizontal-stepper .step-row .step-content::-webkit-scrollbar {
        width: 0.25rem;
        height: 0.25rem;
    }
    #form-modal .horizontal-stepper .step-row .step-content::-webkit-scrollbar-track {
        background: var(--bs-white);
    }
    #form-modal .horizontal-stepper .step-row .step-content::-webkit-scrollbar-thumb {
        background: var(--bs-brand-gray);
    }
    #form-modal .horizontal-stepper .step-row .step-content::-webkit-scrollbar-thumb:hover {
        background: var(--bs-brand-graydark);
    }
    #form-modal .horizontal-stepper .step-row .step-content {
        justify-content: flex-start;
    }
    #form-modal .horizontal-stepper .step-row .step-content .step {
        display: flex;
        min-width: 9.375rem;
    }
    #form-modal .form-fields-inner-wraper {
        min-height: 380px;
        max-height: 380px;
        padding-right: 0;
        padding-left: 0;
        overflow-x: hidden;
        overflow-y: auto;
    }
    #form-modal .validation-wraper {
        overflow-x: hidden;
        overflow-y: auto;
    }
}
/* CSS that you want to apply or alter in the fullscreen mode */
@media all and (display-mode: fullscreen) {
    #exit-full-screen {
        display: inline-block;
    }
    #enter-full-screen {
        display: none;
    }
}

/* =============================================
   Vertical Toolbar — shared styles
   Used by .vl-toolbar-float on the frontend and
   #toolbar-preview in the CMS edit form.
   ============================================= */

/* Shared container look */
.vl-toolbar {
    font-size: var(--vl-toolbar-font-size, inherit);
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 8px 12px;
    max-width: 1200px;
    width: 64px;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.40);
    background: var(--vl-toolbar-bg-color, rgba(70, 71, 71, 0.30));
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.30), 0px 2px 6px 2px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    position: relative;
}

.vl-toolbar.vl-toolbar--no-border {
    border: none !important;
}
.vl-toolbar.vl-toolbar--no-shadow {
    box-shadow: none !important;
}
.vl-toolbar.position-top.vl-toolbar--no-border::before,
.vl-toolbar.position-bottom.vl-toolbar--no-border::before,
.vl-toolbar.position-top.vl-toolbar--no-border::after,
.vl-toolbar.position-bottom.vl-toolbar--no-border::after {
    content: none !important;
}

/* Tools wrapper:
   - Vertical: normal document flow (flex column).
   - Horizontal (position-top/bottom): absolute centered "frame" like the SVG. */
.vl-toolbar-tools {
    display: flex;
    flex-direction: column;
    gap: 0;
    row-gap: 0;
    width: 100%;
}
.vl-toolbar-tools.layout-row .vl-toolbar-item {
    flex-direction: row;
    justify-content: flex-start;
    gap: 6px;
    width: 100%;
    min-height: 40px;
    padding: 6px 8px;
}
.vl-toolbar-tools.layout-row .vl-toolbar-label {
    margin-top: 0;
    text-align: left;
}

/* Top/bottom toolbars are horizontal */
.vl-toolbar.position-top,
.vl-toolbar.position-bottom {
    display: block;
    flex-direction: row;
    width: min(var(--vl-toolbar-horizontal-width-desktop, var(--vl-toolbar-horizontal-width, 100%)), calc(100vw - 40px));
    height: var(--vl-toolbar-height-desktop, var(--vl-toolbar-height, 50px));
    border-radius: 34px;
    padding: 0;
    gap: 0;
    overflow: hidden;
    background: var(--vl-toolbar-bg-color, rgba(31, 35, 48, 0.58));
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.03) 36%, rgba(255, 255, 255, 0) 100%);
    background-blend-mode: luminosity;
    box-shadow: none;
    border: none;
    isolation: isolate;
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .vl-toolbar.position-top,
    .vl-toolbar.position-bottom {
        width: min(var(--vl-toolbar-horizontal-width-tablet, var(--vl-toolbar-horizontal-width-desktop, var(--vl-toolbar-horizontal-width, 100%))), calc(100vw - 40px));
        height: var(--vl-toolbar-height-tablet, var(--vl-toolbar-height-desktop, var(--vl-toolbar-height, 50px)));
    }
}

@media (max-width: 767.98px) {
    .vl-toolbar.position-top,
    .vl-toolbar.position-bottom {
        width: min(var(--vl-toolbar-horizontal-width-mobile, var(--vl-toolbar-horizontal-width-tablet, var(--vl-toolbar-horizontal-width-desktop, var(--vl-toolbar-horizontal-width, 100%)))), calc(100vw - 40px));
        height: var(--vl-toolbar-height-mobile, var(--vl-toolbar-height-tablet, var(--vl-toolbar-height-desktop, var(--vl-toolbar-height, 50px))));
    }
}

.vl-toolbar.position-top::before,
.vl-toolbar.position-bottom::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.58) 0%, rgba(255, 255, 255, 0.22) 22%, rgba(255, 255, 255, 0.08) 100%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.vl-toolbar.position-top::after,
.vl-toolbar.position-bottom::after {
    content: "";
    position: absolute;
    left: 26px;
    right: 26px;
    top: 1px;
    height: 1px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0));
    pointer-events: none;
}

/* Centered "tools frame" like tootlbar.svg (tabs row). */
.vl-toolbar.position-top .vl-toolbar-tools,
.vl-toolbar.position-bottom .vl-toolbar-tools {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 770px;
    max-width: calc(100% - 310px);
    height: 36px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    row-gap: 0;
}
.vl-toolbar.position-bottom .vl-toolbar-tools {
    gap: 36px;
    row-gap: 36px;
}
.vl-toolbar.position-top .vl-toolbar-tools.layout-row .vl-toolbar-item,
.vl-toolbar.position-bottom .vl-toolbar-tools.layout-row .vl-toolbar-item {
    width: auto;
    min-height: 36px;
    justify-content: center;
    padding: 6px 16px;
}

/* Frontend-only: fixed positioning */
.vl-toolbar-float.vl-toolbar {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1045;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    /* Reset properties that .action-btn might set */
    height: auto;
    min-height: unset;
    max-height: unset;
    min-width: unset;
    left: unset;
    right: unset;
    vertical-align: unset;
    text-align: unset;
    line-height: unset;
}
.vl-toolbar-float.vl-toolbar.position-left {
    left: 20px;
}
.vl-toolbar-float.vl-toolbar.position-right {
    right: 20px;
}
.vl-toolbar-float.vl-toolbar.position-top {
    z-index: 1000000;
    left: 50%;
    right: auto;
    top: 20px;
    bottom: auto;
    transform: translateX(-50%);
    /* Prevent container collapse (children are absolutely positioned). */
    height: var(--vl-toolbar-height-desktop, var(--vl-toolbar-height, 50px));
    min-height: var(--vl-toolbar-height-desktop, var(--vl-toolbar-height, 50px));
    overflow: hidden;
}
.vl-toolbar-float.vl-toolbar.position-bottom {
    z-index: 1000000;
    top: auto;
    bottom: 20px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    /* Prevent container collapse (children are absolutely positioned). */
    height: var(--vl-toolbar-height-desktop, var(--vl-toolbar-height, 50px));
    min-height: var(--vl-toolbar-height-desktop, var(--vl-toolbar-height, 50px));
    overflow: hidden;
}

/* Shared item styles */
.vl-toolbar-item,
.vl-toolbar-hamburger,
.vl-toolbar-cta,
.vl-toolbar-logo-link {
    -webkit-tap-highlight-color: transparent;
}
.vl-toolbar-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 52px;
    min-width: unset;
    max-width: unset;
    max-height: unset;
    border-radius: 16px;
    position: relative;
    cursor: pointer;
    color: var(--vl-toolbar-text-color, #fff);
    background: none;
    border: none;
    padding: 6px 4px;
    text-decoration: none;
    line-height: 1;
    transition: background-color 0.15s ease;
    vertical-align: unset;
    text-align: unset;
}
/* Only real hover devices: touch browsers keep :hover after tap ("sticky hover"), which looks like a second "active" tap. */
@media (hover: hover) and (pointer: fine) {
    .vl-toolbar-item:not(.vl-toolbar-cta):not(.vl-toolbar-logo-link):hover {
        background: none;
        color: var(--vl-toolbar-text-hover-color, var(--vl-toolbar-text-color, #fff));
    }
    .vl-toolbar-item:not(.vl-toolbar-cta):not(.vl-toolbar-logo-link):hover .vl-toolbar-label {
        color: var(--vl-toolbar-text-hover-color, var(--vl-toolbar-text-color, #fff));
    }
    .vl-toolbar-item:not(.vl-toolbar-cta):not(.vl-toolbar-logo-link):hover i {
        color: var(--vl-toolbar-text-hover-color, var(--vl-toolbar-text-color, #fff));
    }
}
.vl-toolbar-item i {
    font-size: 20px;
    line-height: 1;
}
.vl-toolbar-label {
    margin-top: 10px;
    line-height: 1.2;
    color: inherit;
    max-width: 100%;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.vl-toolbar-logo-link {
    padding: 6px;
}
.vl-toolbar-logo-static {
    padding: 6px;
    cursor: default;
    pointer-events: none;
}
.vl-toolbar-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 6px;
}
.vl-toolbar-cta {
    background: var(--vl-toolbar-cta-color, #FF884D);
    border-radius: 14px;
    min-height: 40px;
    width: 100%;
    padding: 8px 10px;
}
@media (hover: hover) and (pointer: fine) {
    .vl-toolbar-cta:hover {
        background: var(--vl-toolbar-cta-hover-color, var(--vl-toolbar-cta-color, #FF884D));
        filter: brightness(1.05);
        color: var(--vl-toolbar-cta-text-hover-color, var(--vl-toolbar-cta-text-color, #fff));
    }
    .vl-toolbar-cta:hover .vl-toolbar-cta-text {
        color: var(--vl-toolbar-cta-text-hover-color, var(--vl-toolbar-cta-text-color, #fff));
    }
}
.vl-toolbar-cta-text {
    color: var(--vl-toolbar-cta-text-color, #fff);
    font-size: 0.786em;
    font-weight: 600;
    line-height: 1.1;
    text-align: center;
    display: inline-block;
}
.vl-toolbar.position-top .vl-toolbar-tools.layout-row .vl-toolbar-item,
.vl-toolbar.position-bottom .vl-toolbar-tools.layout-row .vl-toolbar-item {
    flex-direction: row;
    width: auto;
    min-height: 36px;
    height: 36px;
    border-radius: 100px;
    gap: 10px;
    padding: 6px 16px;
    background: none;
}
.vl-toolbar.position-top .vl-toolbar-tools.layout-row .vl-toolbar-label,
.vl-toolbar.position-bottom .vl-toolbar-tools.layout-row .vl-toolbar-label {
    margin-top: 0;
    max-width: 100%;
    text-align: left;
    line-height: 24px;
    color: var(--vl-toolbar-text-color, rgba(255, 255, 255, 0.96));
}
.vl-toolbar.position-top .vl-toolbar-logo-link,
.vl-toolbar.position-bottom .vl-toolbar-logo-link,
.vl-toolbar.position-top .vl-toolbar-logo-static,
.vl-toolbar.position-bottom .vl-toolbar-logo-static {
    position: absolute;
    left: 24px;
    top: 8px;
    padding: 0;
    margin: 0;
    width: 124px;
    height: 34px;
    min-width: unset;
    min-height: unset;
    border-radius: 0;
}
.vl-toolbar.position-top .vl-toolbar-cta,
.vl-toolbar.position-bottom .vl-toolbar-cta {
    position: absolute;
    right: 18px;
    top: 7px;
    width: 144px;
    min-height: 36px;
    height: 36px;
    padding: 0 20px;
    border-radius: 999px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Horizontal overrides: icon sizing inside the tools frame. */
.vl-toolbar.position-top .vl-toolbar-tools.layout-row .vl-toolbar-item i,
.vl-toolbar.position-bottom .vl-toolbar-tools.layout-row .vl-toolbar-item i {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 1;
}

.vl-toolbar.position-top .vl-toolbar-logo,
.vl-toolbar.position-bottom .vl-toolbar-logo {
    width: 124px;
    height: 34px;
    padding: 0;
    background: none;
    border-radius: 0;
}

.vl-toolbar-cta-symbol {
    display: none;
}
.vl-toolbar.position-top .vl-toolbar-cta-symbol,
.vl-toolbar.position-bottom .vl-toolbar-cta-symbol {
    display: inline-flex;
    width: 12px;
    height: 24px;
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
    align-items: center;
    justify-content: center;
    color: var(--vl-toolbar-cta-text-color, #FFFFFF);
}

.vl-toolbar.position-top .vl-toolbar-cta-symbol i,
.vl-toolbar.position-bottom .vl-toolbar-cta-symbol i {
    font-size: 15px;
    font-weight: 400;
    opacity: 0.9;
}

.vl-toolbar.position-top .vl-toolbar-cta-text,
.vl-toolbar.position-bottom .vl-toolbar-cta-text {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    text-align: right;
    color: var(--vl-toolbar-cta-text-color, rgba(255, 255, 255, 0.96));
}

@media (hover: hover) and (pointer: fine) {
    .vl-toolbar.position-top .vl-toolbar-cta:hover .vl-toolbar-cta-text,
    .vl-toolbar.position-bottom .vl-toolbar-cta:hover .vl-toolbar-cta-text {
        color: var(--vl-toolbar-cta-text-hover-color, var(--vl-toolbar-cta-text-color, rgba(255, 255, 255, 0.96)));
    }

    .vl-toolbar.position-top .vl-toolbar-cta:hover .vl-toolbar-cta-symbol,
    .vl-toolbar.position-bottom .vl-toolbar-cta:hover .vl-toolbar-cta-symbol {
        color: var(--vl-toolbar-cta-text-hover-color, var(--vl-toolbar-cta-text-color, #FFFFFF));
    }
}

/* Active state for toolbar items (applies to <button> and <a>) */
.vl-toolbar-item.is-active {
    color: var(--vl-toolbar-text-hover-color, var(--bs-body-color));
}
.vl-toolbar-item.is-active .vl-toolbar-label {
    color: var(--vl-toolbar-text-hover-color, var(--bs-body-color));
}
.vl-toolbar-item.is-active i {
    color: inherit;
}
/* Ensure active color overrides the horizontal label rule specificity */
.vl-toolbar.position-top .vl-toolbar-item.is-active .vl-toolbar-label,
.vl-toolbar.position-bottom .vl-toolbar-item.is-active .vl-toolbar-label {
    color: var(--vl-toolbar-text-hover-color, var(--bs-body-color));
}
/* In horizontal mode keep active readable on glass. */
.vl-toolbar.position-top .vl-toolbar-item.is-active,
.vl-toolbar.position-bottom .vl-toolbar-item.is-active {
    color: var(--vl-toolbar-text-hover-color, #fff);
}
.vl-toolbar.position-top .vl-toolbar-item.is-active .vl-toolbar-label,
.vl-toolbar.position-bottom .vl-toolbar-item.is-active .vl-toolbar-label {
    color: var(--vl-toolbar-text-hover-color, #fff);
}


@media (hover: hover) and (pointer: fine) {
    .vl-toolbar-float.vl-toolbar.position-top .vl-toolbar-tools.layout-row .vl-toolbar-item:not(.vl-toolbar-cta):not(.vl-toolbar-logo-link):hover,
    .vl-toolbar-float.vl-toolbar.position-bottom .vl-toolbar-tools.layout-row .vl-toolbar-item:not(.vl-toolbar-cta):not(.vl-toolbar-logo-link):hover {
        background: none;
    }
    .vl-toolbar-float.vl-toolbar.position-top .vl-toolbar-tools.layout-row .vl-toolbar-item:hover .vl-toolbar-label,
    .vl-toolbar-float.vl-toolbar.position-bottom .vl-toolbar-tools.layout-row .vl-toolbar-item:hover .vl-toolbar-label {
        color: var(--vl-toolbar-text-hover-color, var(--vl-toolbar-text-color, rgba(255, 255, 255, 0.96)));
    }
    .vl-toolbar-float.vl-toolbar.position-top .vl-toolbar-logo-link:hover,
    .vl-toolbar-float.vl-toolbar.position-bottom .vl-toolbar-logo-link:hover {
        background: transparent;
    }
}

/* Badge isn't part of the SVG horizontal layout. */
.vl-toolbar.position-top .vl-toolbar-badge,
.vl-toolbar.position-bottom .vl-toolbar-badge {
    display: none;
}
.vl-toolbar-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 10px;
    height: 10px;
    background: rgb(179, 38, 30);
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    z-index: 2;
}

/* Offcanvas "tools menu" layout */
.vl-toolbar-offcanvas .vl-toolbar--menu {
    width: auto;
    max-width: 360px;
    margin: 0;
    padding: 0 !important;
    color: var(--vl-toolbar-offcanvas-text-color, #fff);
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}
.vl-toolbar-offcanvas {
    background: var(--vl-toolbar-offcanvas-bg-color, #0636A2);
    color: var(--vl-toolbar-offcanvas-text-color, #fff);
    z-index: 1000002 !important;
    border: 0 !important;
}
.offcanvas-backdrop.show {
    z-index: 1000001 !important;
}
.vl-toolbar-offcanvas .offcanvas-header {
    border-bottom: 0;
    padding: 10px 36px;
    align-items: center;
    justify-content: space-between;
}
.vl-toolbar-offcanvas .offcanvas-body {
    padding: 0 36px 24px;
    display: block;
}
.vl-toolbar-offcanvas .offcanvas-title,
.vl-toolbar-offcanvas .btn-close,
.vl-toolbar-offcanvas .vl-toolbar-item,
.vl-toolbar-offcanvas .vl-toolbar-label {
    color: var(--vl-toolbar-offcanvas-text-color, #fff);
}
.vl-toolbar-offcanvas .offcanvas-title {
    margin: 0;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    text-align: left;
}
.vl-toolbar-offcanvas .btn-close {
    filter: invert(1);
    opacity: 0.9;
    margin: 0;
    padding: 0;
    flex: 0 0 auto;
}
.vl-toolbar-offcanvas .offcanvas-title .vl-toolbar-logo-link,
.vl-toolbar-offcanvas .offcanvas-title .vl-toolbar-logo-static {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
    padding: 0;
    min-height: unset;
    min-width: unset;
    width: 35%;
    border-radius: 0;
    background: transparent;
}
.vl-toolbar-offcanvas .offcanvas-title .vl-toolbar-logo {
    width: 100%;
    height: auto;
    max-height: 52px;
    object-fit: contain;
    background: none;
    border-radius: 0;
    padding: 0;
}
.vl-toolbar-offcanvas .vl-toolbar-separator {
    width: 100%;
    height: 1px;
    background: var(--vl-toolbar-offcanvas-separator-color, rgba(255, 255, 255, 0.3));
    margin: 2px 0 8px;
}
.vl-toolbar-offcanvas .vl-toolbar-tools {
    width: 100%;
    gap: 0;
    row-gap: 0;
}
.vl-toolbar-offcanvas .vl-toolbar-item {
    width: 100%;
    min-width: 0;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-radius: 12px;
}
@media (hover: hover) and (pointer: fine) {
    .vl-toolbar-offcanvas .vl-toolbar-item:not(.vl-toolbar-cta):not(.vl-toolbar-logo-link):hover {
        background: none;
    }
}
.vl-toolbar-offcanvas .vl-toolbar-item i {
    margin-right: 0;
}
.vl-toolbar-offcanvas .vl-toolbar-label {
    margin-top: 0;
    text-align: left;
}
.vl-toolbar-offcanvas .vl-toolbar-cta {
    width: 100%;
}

.vl-toolbar-hamburger {
    font-size:24px;
}

/* Tablet/mobile (lg-): ensure CTA/logo are in flow so hamburger order works */
@media all and (max-width: 991.98px) {
    .vl-toolbar {
        padding: 8px 12px !important;
    }
    .vl-toolbar-item {
        padding: 0 !important;
    }
    .vl-toolbar-cta {
        padding: 8px 12px !important;
    }
    .vl-toolbar-float.vl-toolbar.position-top,
    .vl-toolbar-float.vl-toolbar.position-bottom {
        height: auto;
        min-height: 52px;
        overflow: visible;
    }

    .vl-toolbar.position-top .vl-toolbar-tools,
    .vl-toolbar.position-bottom .vl-toolbar-tools {
        position: static;
        left: auto;
        top: auto;
        transform: none;
        width: auto;
        max-width: none;
        height: auto;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .vl-toolbar.position-top .vl-toolbar-logo-link,
    .vl-toolbar.position-bottom .vl-toolbar-logo-link,
    .vl-toolbar.position-top .vl-toolbar-logo-static,
    .vl-toolbar.position-bottom .vl-toolbar-logo-static {
        position: static;
        left: auto;
        top: auto;
        right: auto;
        padding: 6px;
        margin: 0;
    }

    .vl-toolbar.position-top .vl-toolbar-cta,
    .vl-toolbar.position-bottom .vl-toolbar-cta {
        position: static;
        right: auto;
        top: auto;
        width: auto;
        min-height: unset;
        height: auto;
        padding: 8px 12px;
        border-radius: 999px;
        display: inline-flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }
}