@import '_content/SplitterBlazor/SplitterBlazor.svjdkc2byk.bundle.scp.css';

/* /Components/Common/PwaInstall.razor.rz.scp.css */
.pwa-banner[b-m8zw0yeuwx] {
    position: fixed;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 500px;
    background: linear-gradient(135deg, #112F5D 0%, #2362C3 100%);
    color: white;
    border-radius: 12px;
    padding: 12px;
    z-index: 10000;
    animation: slideUpBanner-b-m8zw0yeuwx 0.5s ease-out;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pwa-banner.hidden[b-m8zw0yeuwx] {
    animation: slideDownBanner-b-m8zw0yeuwx 0.3s ease-in forwards;
}

.banner-wrapper[b-m8zw0yeuwx] {
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.banner-content[b-m8zw0yeuwx] {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.banner-actions[b-m8zw0yeuwx] {
    display: flex;
    flex-grow: 1;
    align-items: center;
    justify-content: center;
}

.banner-icon[b-m8zw0yeuwx] {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-text[b-m8zw0yeuwx] {
    flex: 1;
}

.banner-text h3[b-m8zw0yeuwx] {
    font-size: .875rem;
    font-weight: 600;
}

.install-banner-btn[b-m8zw0yeuwx] {
    flex-shrink: 0;
    padding: 8px 16px;
    background: white;
    color: #667eea;
    border: none;
    border-radius: 12px;
    font-size: .875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.install-banner-btn:hover[b-m8zw0yeuwx] {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.install-banner-btn:active[b-m8zw0yeuwx] {
    transform: translateY(0);
}

.install-banner-btn.installed[b-m8zw0yeuwx] {
    background: #34C759;
    color: white;
    cursor: default;
}

.install-banner-btn.installed:hover[b-m8zw0yeuwx] {
    transform: none;
    box-shadow: 0 4px 12px rgba(52, 199, 89, 0.3);
}

/* Анимации */
@keyframes slideUpBanner-b-m8zw0yeuwx {
    from {
        transform: translateX(-50%) translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

@keyframes slideDownBanner-b-m8zw0yeuwx {
    from {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    to {
        transform: translateX(-50%) translateY(100px);
        opacity: 0;
    }
}

/* Адаптивность */
@media (max-width: 768px) {
    .pwa-banner[b-m8zw0yeuwx] {
        width: 95%;
    }

    .banner-icon[b-m8zw0yeuwx] {
        width: 40px;
        height: 40px;
    }

    .banner-icon svg[b-m8zw0yeuwx] {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .banner-wrapper[b-m8zw0yeuwx] {
        flex-direction: column;
    }
}

/* iOS модальное окно */
.ios-modal[b-m8zw0yeuwx] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.ios-modal-overlay[b-m8zw0yeuwx] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    animation: fadeInOverlay-b-m8zw0yeuwx 0.3s ease;
}

.ios-modal-content[b-m8zw0yeuwx] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    background-color: var(--mud-palette-surface);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideInModal-b-m8zw0yeuwx 0.4s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.ios-modal-header[b-m8zw0yeuwx] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px 16px;
}

.ios-modal-header h3[b-m8zw0yeuwx] {
    font-size: 1.5rem;
    font-weight: 600;
}

.ios-close-modal[b-m8zw0yeuwx] {
    width: 36px;
    height: 36px;
    background: #f5f5f7;
    border: none;
    border-radius: 50%;
    color: #1d1d1f;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.ios-close-modal:hover[b-m8zw0yeuwx] {
    background: #e5e5e7;
    transform: scale(1.05);
}

.ios-modal-body[b-m8zw0yeuwx] {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.ios-modal-body p[b-m8zw0yeuwx] {
    font-size: 1.15rem;
}

.ios-modal-body .img-wrapper[b-m8zw0yeuwx] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.ios-modal-body .img-wrapper img[b-m8zw0yeuwx] {
    width: 100%;
    height: auto;
}

.ios-modal-footer[b-m8zw0yeuwx] {
    padding: 20px;
}

.ios-got-it-btn[b-m8zw0yeuwx] {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #112F5D 0%, #2362C3 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
}

.ios-got-it-btn:hover[b-m8zw0yeuwx] {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 122, 255, 0.4);
}

.ios-got-it-btn:active[b-m8zw0yeuwx] {
    transform: translateY(0);
}

/* Анимации */
@keyframes fadeInOverlay-b-m8zw0yeuwx {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInModal-b-m8zw0yeuwx {
    from {
        opacity: 0;
        transform: translate(-50%, -48%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.ios-modal.closing .ios-modal-overlay[b-m8zw0yeuwx] {
    animation: fadeOutOverlay-b-m8zw0yeuwx 0.3s ease forwards;
}

.ios-modal.closing .ios-modal-content[b-m8zw0yeuwx] {
    animation: slideOutModal-b-m8zw0yeuwx 0.3s ease forwards;
}

@keyframes fadeOutOverlay-b-m8zw0yeuwx {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes slideOutModal-b-m8zw0yeuwx {
    from {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
    to {
        opacity: 0;
        transform: translate(-50%, -48%);
    }
}

/* Адаптивность для iOS модального окна */
@media (max-width: 768px) {
    .ios-modal-content[b-m8zw0yeuwx] {
        width: 95%;
        max-height: 85vh;
        border-radius: 16px;
    }
}

/* /Components/Common/TrackProperties.razor.rz.scp.css */
[b-74a0rcr7qf] .track-color-picker .mud-picker-color-picker {
    width: 100%;
    height: 30px;
}

[b-74a0rcr7qf] .track-color-picker .mud-picker-color-controls {
    display: none;
}

[b-74a0rcr7qf] .track-color-picker .mud-picker-color-view {
    padding: 0;
}

    [b-74a0rcr7qf] .track-color-picker .mud-picker-color-view > .mud-picker-color-view-collection {
        gap: 4px;
        justify-content: end;
    }

        [b-74a0rcr7qf] .track-color-picker .mud-picker-color-view > .mud-picker-color-view-collection > .mud-picker-color-dot {
            margin: 0;
            height: 30px;
            width: 30px;
            min-width: 30px;
        }

            [b-74a0rcr7qf] .track-color-picker .mud-picker-color-view > .mud-picker-color-view-collection > .mud-picker-color-dot.selected {
                box-shadow: none;
            }


[b-74a0rcr7qf] .mud-slider .mud-slider-input::-webkit-slider-runnable-track {
    margin: 0;
    height: 4px;
    background-color: transparent;
}
/* /Components/Maps/ComponentMap.razor.rz.scp.css */
/*::deep .mud-overlay {
    pointer-events: auto;
}*/

[b-iei5ky72lm] .map-dark .leaflet-pane.leaflet-tile-pane > .leaflet-layer {
    filter: invert(100%) hue-rotate(180deg) brightness(95%) contrast(90%);
}

[b-iei5ky72lm] .map-controls-container {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    pointer-events: none;
}

    [b-iei5ky72lm] .map-controls-container .map-controls {
        z-index: 800;
        position: absolute;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

        [b-iei5ky72lm] .map-controls-container .map-controls [role="group"] {
            pointer-events: auto;
        }

        [b-iei5ky72lm] .map-controls-container .map-controls.map-controls-topleft {
            top: 12px;
            left: 12px;
        }

        [b-iei5ky72lm] .map-controls-container .map-controls.map-controls-topright {
            top: 12px;
            right: 12px;
        }

        [b-iei5ky72lm] .map-controls-container .map-controls.navigation-controls {
            top: 64px;
            bottom: 64px;
            right: 12px;
        }

            [b-iei5ky72lm] .map-controls-container .map-controls.navigation-controls .main-controls {
                display: flex;
                flex-direction: column;
                gap: 12px;
            }
/* /Pages/MonitoringPage.razor.rz.scp.css */

[b-j89fnq0xzx] .splitter-container > .splitter-bar {
    border-radius: var(--mud-default-borderradius);
}

[b-j89fnq0xzx] .leaflet-popup {
    cursor: default;
}

    [b-j89fnq0xzx] .leaflet-popup > .leaflet-popup-content-wrapper {
        color: var(--mud-palette-text-primary);
        background-color: var(--mud-palette-surface);
        border-radius: var(--mud-default-borderradius);
        word-break: break-all;
        box-shadow: 2px 4px 5px rgba(0, 0, 0, 0.13);
        padding: 0;
        overflow: hidden;
    }

        [b-j89fnq0xzx] .leaflet-popup > .leaflet-popup-content-wrapper > .leaflet-popup-content {
            margin: 0 !important;
            width: max-content !important;
        }

            [b-j89fnq0xzx] .leaflet-popup > .leaflet-popup-content-wrapper > .leaflet-popup-content p {
                margin: 0;
            }

    [b-j89fnq0xzx] .leaflet-popup > .leaflet-popup-tip-container > .leaflet-popup-tip {
        background-color: var(--mud-palette-surface);
    }

    [b-j89fnq0xzx] .leaflet-popup.popup-unit .leaflet-popup-content {
        max-width: 90vw;
        width: 520px !important;
    }

    [b-j89fnq0xzx] .leaflet-popup.popup-geofence .leaflet-popup-content {
        max-width: 90vw;
        width: 350px !important;
    }

    [b-j89fnq0xzx] .leaflet-popup.popup-data .leaflet-popup-content {
        max-width: 90vw;
        width: 420px !important;
    }


[b-j89fnq0xzx] .tooltip-information {
    min-width: 270px;
    max-width: 350px;
    overflow: hidden;
    padding: 0;
    white-space: initial;
    box-shadow: 2px 4px 5px rgba(0, 0, 0, 0.13);
    color: var(--mud-palette-text-primary);
    background-color: var(--mud-palette-surface);
    border-radius: var(--mud-default-borderradius);
}

    [b-j89fnq0xzx] .tooltip-information.leaflet-tooltip-top:before {
        border-top-color: var(--mud-palette-surface);
    }

    [b-j89fnq0xzx] .tooltip-information.leaflet-tooltip-right:before {
        border-right-color: var(--mud-palette-surface);
    }

    [b-j89fnq0xzx] .tooltip-information.leaflet-tooltip-bottom:before {
        border-bottom-color: var(--mud-palette-surface);
    }

    [b-j89fnq0xzx] .tooltip-information.leaflet-tooltip-left:before {
        border-left-color: var(--mud-palette-surface);
    }

[b-j89fnq0xzx] .tooltip-geofence {
    border: none;
    box-shadow: none;
    background-color: transparent;
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    width: 200px;
    text-shadow: 2px 0 0 #fff, -2px 0 0 #fff, 0 2px 0 #fff, 0 -2px 0 #fff, 1px 1px #fff, -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff;
}

    [b-j89fnq0xzx] .tooltip-geofence:before {
        display: none;
    }

[b-j89fnq0xzx] .marker-cluster {
    width: 30px !important;
    height: 30px !important;
    border-radius: 50% !important;
    background-color: white !important;
    box-shadow: 0px 0px 3px 3px rgba(20, 21, 33, 0.12);
}

    [b-j89fnq0xzx] .marker-cluster div {
        position: absolute;
        top: 50%;
        left: 50%;
        margin: 0 !important;
        width: 26px !important;
        height: 26px !important;
        border-radius: 50% !important;
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

    [b-j89fnq0xzx] .marker-cluster span {
        color: white;
        font-size: 1rem;
        font-weight: bold;
        line-height: 26px !important;
    }

[b-j89fnq0xzx] .marker-border {
    position: absolute;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 4px solid var(--mud-palette-primary);
    opacity: .35;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

[b-j89fnq0xzx] .marker-object {
    position: absolute;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid var(--mud-palette-white);
    background-color: var(--mud-palette-white);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

    [b-j89fnq0xzx] .marker-object .marker-icon svg {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

    [b-j89fnq0xzx] .marker-object .marker-name {
        position: absolute;
        left: 50%;
        bottom: calc(100% - 68px);
        padding: 4px 8px;
        font-weight: bold;
        font-size: var(--mud-typography-caption-size);
        line-height: var(--mud-typography-default-lineheight);
        white-space: nowrap;
        min-width: 32px;
        max-width: 15ch;
        overflow: hidden;
        text-overflow: ellipsis;
        background-color: var(--mud-palette-surface);
        border-radius: var(--mud-default-borderradius);
        -webkit-box-shadow: 0 -1px 4px rgba(0, 0, 0, .1), 0 4px 20px rgba(149, 152, 155, .2);
        -moz-box-shadow: 0 -1px 4px rgba(0, 0, 0, .1), 0 4px 20px rgba(149, 152, 155, .2);
        box-shadow: 0 -1px 4px rgba(0, 0, 0, .1), 0 4px 20px rgba(149, 152, 155, .2);
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    [b-j89fnq0xzx] .marker-object .cluster-name {
        position: absolute;
        left: 55%;
        top: -12px;
        font-weight: bold;
        white-space: nowrap;
        min-width: 26px;
        max-width: 5ch;
        text-align: center;
        overflow: hidden;
        text-overflow: ellipsis;
        color: var(--mud-palette-primary-text);
        background-color: var(--mud-palette-primary);
        border-radius: 24px;
        -webkit-box-shadow: 0 -1px 4px rgba(0, 0, 0, .1), 0 4px 20px rgba(149, 152, 155, .2);
        -moz-box-shadow: 0 -1px 4px rgba(0, 0, 0, .1), 0 4px 20px rgba(149, 152, 155, .2);
        box-shadow: 0 -1px 4px rgba(0, 0, 0, .1), 0 4px 20px rgba(149, 152, 155, .2);
    }

    [b-j89fnq0xzx] .marker-object .marker-arrow {
        width: 100%;
        height: 100%;
        -webkit-transition: transform;
        -moz-transition: transform;
        transition: transform;
        -webkit-transition-timing-function: ease;
        -moz-transition-timing-function: ease;
        transition-timing-function: ease;
        -webkit-transition-duration: .3s;
        -moz-transition-duration: .3s;
        transition-duration: .3s;
        will-change: transform;
    }

        [b-j89fnq0xzx] .marker-object .marker-arrow svg {
            position: absolute;
            bottom: calc(100% + 6px);
            left: 50%;
            z-index: -1;
            fill: var(--mud-palette-primary);
            vertical-align: top;
            -webkit-transform: translateX(-50%);
            -moz-transform: translateX(-50%);
            transform: translateX(-50%);
            -webkit-transition-property: fill;
            -moz-transition-property: fill;
            transition-property: fill;
            -webkit-transition-duration: .3s;
            -moz-transition-duration: .3s;
            transition-duration: .3s;
        }

[b-j89fnq0xzx] .marker-event {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 31px;
    height: 31px;
    margin: 0;
    padding: 0;
    background-color: gray;
    border-radius: 50% 50% 50% 0;
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    -moz-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
}

    [b-j89fnq0xzx] .marker-event .marker-icon {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 26px;
        height: 26px;
        background-color: #fff;
        border-radius: 50%;
        -webkit-transform: translate(-50%, -50%) rotate(45deg);
        -moz-transform: translate(-50%, -50%) rotate(45deg);
        transform: translate(-50%, -50%) rotate(45deg);
    }

        [b-j89fnq0xzx] .marker-event .marker-icon svg, i[b-j89fnq0xzx] {
            position: absolute;
            top: 50%;
            left: 50%;
            font-size: 18px;
            color: rgba(0, 0, 0, 0.54);
            fill: rgba(0, 0, 0, 0.54);
            -webkit-transform: translate(-50%, -50%);
            -moz-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
        }
/* /Pages/SignInPage.razor.rz.scp.css */

.login-container[b-6ogal4vvt7] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    width: 100%;
}

    .login-container > .form-wrapper[b-6ogal4vvt7] {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 32px;
    }

        .login-container > .form-wrapper > .logo[b-6ogal4vvt7] {
            background-position: 50%;
            background-repeat: no-repeat;
            vertical-align: middle;
            height: 55px;
            width: 100%;
        }

        .login-container > .form-wrapper > .form[b-6ogal4vvt7] {
            display: flex;
            flex-direction: column;
        }

            .login-container > .form-wrapper > .form h1[b-6ogal4vvt7] {
                font-size: 1.5rem;
                font-weight: 500;
                text-align: center;
            }
