@import url("/css/style.css");
@import url("/css/components/map.css");

/* Сайдбар на карте и его появление */
.maps-sidebar {
    width: 320px;
    min-width: 320px;
    height: 100%;
    position: fixed;
    top: 0;
    bottom: 0;
    margin: 0;
    left: -320px;
    padding: 75px 20px;
    transition: left 0.3s;
    background: #d8d8d8;
    z-index: 2000;
}

.sidebar-toggle {
    position: absolute;
    left: 0px;
    top: 1em;
    padding: 0.5em;
    margin-left: 12px;
    border: 1px black solid;
    background: inherit;
    color: black;
    cursor: pointer;
    font-size: 1.2em;
    line-height: 1;
    z-index: 2001;
    transition: color .25s ease-in-out, left 0.3s;
}
 
.sidebar-toggle:after {
    content: '\2630';
    text-decoration: none;
}

#sidebar-toggle {
    position: absolute;
    display: none;
}

#sidebar-toggle:checked ~ .sidebar-toggle {
    left: 250px;
    border: none
}

#sidebar-toggle:checked ~ .maps-sidebar {
    left: 0;
    overflow-y: auto;
}