body {
    padding: 0;
    margin: 0;
}

html,
body {
    height: 100%;
    overflow: hidden;
}

#wrapper {
    display: flex;
    height: 100%;
    width: 100%;
}

.popup-fixed {
    position: fixed;
    top: 130px;
    height: fit-content;
    left: 11px !important;
    transform: none !important;
    margin: 0;
    border-radius: 0;
}

.leaflet-container {
    cursor: default !important;
}

.leaflet-tooltip {
    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 4px;
    padding-right: 4px;
    font-size: 15px;
    font-weight: bold;
}

.leaflet-popup-tip {
    width: 0px;
    height: 0px;
}

/* Change cursor when mousing over clickable layer */
.leaflet-clickable {
    cursor: pointer !important;
}

.leaflet-right {
    right: 36px;
}


#map {
    /* compatability for old browsers */
    height: 100%;
    width: 100%;
}


#sidebar {
    flex-grow: 1;
    height: 100%;
    width: 40vw;
    z-index: 1000;
    top: 0px;
    right: 0px;

    /* overflow: hidden; */
    position: absolute;
}

#collapseButton {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 0px 6px;
    color: white;
    backdrop-filter: blur(3px);
    height: 100vh;
    z-index: 800;
    position: absolute;
    left: -36px;
    top: 0;
    cursor: pointer;
}

#bike-logo {
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
    transform: scaleX(-1);
    position: relative;
    top: 50%;
}

/* Tooltip container */
.tooltip {
    position: relative;
    display: inline;
    border-bottom: 1px dotted black;
    /* If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltip .tooltiptext {
    visibility: hidden;
    background-color: black;
    width: 300px;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;

    white-space: normal;

    /* Position the tooltip text - see examples below! */
    position: absolute;
    z-index: 1;

    /* Right */
    top: -5px;
    left: 105%;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
    visibility: visible;
}