<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --cont: 1728;
    --cont-padding: 36px;
    --sb-width: 330px;

    /*--c-primary: rgb(40, 40, 40);*/
    --c-primary: #444143;
    --c-gray: rgb(236, 241, 239);
    --c-white: #fff;
    --c-red: #c0ac83;

    --c-red-light: #D6373719;
    --c-green-light: #46B384;

    --c-gray-border: #C6C6C6;

    --c-status-red: #c0ac83AD;
    --c-status-orange: #EF7D0073;
    --c-status-green: #46B38499;
    --c-tag-red: #c0ac83AD;
    --c-tag-purple: #E824E07F;
    --c-tag-green: #24E84F7F;
    --c-tag-yellow: rgba(230, 255, 39, 0.72);
}

#drag_map {
    background-color: #fff;
    border: 1px solid var(--c-gray-border);
    border-radius: 10px;
    font-family: Lato, Arial, sans-serif;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    /*overflow: auto;*/
    overflow: hidden;
    position: relative;
    /*height: 1530px;*/
    height: 700px;
    display: flex;
}

#map {
    cursor: grab;
}

#map,
.inner_map {
    box-sizing: unset;
}

.inner_map {
    pointer-events: none;
}

.inner_map [data-id] {
    pointer-events: visible;
}

.map_const {
    position: relative;
}

#drag_map [data-testid="map-v2"] {
    position: absolute;
    z-index: 1;
    /*--scale:1.1;*/
    box-sizing: unset;
}

[data-testid="line-selector"] {
    position: absolute;
    z-index: 2;
}

.small-pin[data-testid="station-pin"] {
    width: 12px !important;
    height: 12px !important;
}

[data-testid="station-pin"],
[data-testid="station-name"] {
    z-index: 2;
    cursor: pointer;
}

[data-testid="slice"] {
    position: relative;
    cursor: grab;
}

.disc {
    position: absolute;
    right: 20px;
    top: 50%;
    z-index: 4;
    transform: translateY(-50%);
}

.minus,
.plus {
    cursor: pointer;
    background-color: var(--c-tag-red);
    border-radius: 5px;
    transition: .3s;
}

.minus:hover,
.plus:hover {
    background-color: var(--c-red);
}

.minus {
    margin-top: 5px;
}

[data-testid="slice"]:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

[data-testid="station-pin"] {
    --c-pin: #000;
    position: absolute;
    z-index: 2;
    border-radius: 100%;
    background-color: #fff;
    transition: .1s;
    border: 2px solid var(--c-pin);
}

.active[data-testid="station-pin"] {
    border-width: 4px;
}

[data-testid="station-name"]:hover {
    background-color: var(--c-tag-red);
    color: #fff;
}

.active[data-testid="station-name"] {
    background-color: var(--c-red) !important;
    color: var(--c-white);
}

[data-testid="station-name"] {
    transition: .2s;
    position: absolute;
    background: hsla(0, 0%, 100%, .6);
    padding: 0 2px 2px;
    line-height: 1.3;
    /*width: min-content;*/
    border-radius: 4px;
    z-index: 3;
}

[data-testid="line-selector"] {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.line-selector-br100[data-testid="line-selector"] {
    border-radius: 100%;
}

.inner_map {
    transform: scale(0.6);
    padding: calc(-468px) calc(-296px);
}


@media screen and (min-width: 808px) {
    #map {
        top: -78%;
        left: -180px;
    }
}

@media screen and (min-width: 1032px) and (max-width: 1880px) {
    #map {
        left: -17%;
    }
}

@media screen and (max-width: 1032px) {
    #drag_map {
        height: 480px;
    }

    #drag_map [data-testid="map-v2"] {
        position: unset;
        width: 100%;
        height: 100%;
        overflow: auto;
    }
}

.scheme_show_all {
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
}
@media screen and (max-width: 808px) {
    #drag_map {
        /*height: 320px;*/
    }

    .inner_map {
        transform: scale(0.4);
        padding: calc(-702px) calc(-444px);
    }
}

.scheme {
    width: 100%;
}</pre></body></html>