/* sidebar.css */
.ods-mlogo {
    display: none !important;
}

.hamburger-icon {
    display: inline-block;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
}

.hamburger-icon span {
    display: block;
    width: 100%;
    height: 4px;
    background-color: #333;
    border-radius: 4px;
    position: absolute;
    left: 0;
    transition: all 0.3s ease-in-out;
}

.hamburger-icon span:nth-child(1) {
    top: 0;
}

.hamburger-icon span:nth-child(2) {
    top: 8px;
}

.hamburger-icon span:nth-child(3) {
    top: 16px;
}

.hamburger-icon.open span:nth-child(1) {
    transform: rotate(45deg);
    top: 8px;
}

.hamburger-icon.open span:nth-child(2) {
    opacity: 0;
}

.hamburger-icon.open span:nth-child(3) {
    transform: rotate(-45deg);
    top: 8px;
}

.ods-go-sidebar {
    z-index: 10;
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background-color: #121212c4;
    backdrop-filter: blur(3px);
    color: white;
    transition: left 0.3s ease;
}

.ods-go-sidebar.show {
    left: 0;
}

.odsgo-show-side {
    position: relative;
    z-index: 2;
    top: 30px;
    left: 20px;
    background-color: #333;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
}

.odsgo-show-side:hover {
    background-color: #444;
}

button#odsgo-inside {
    position: sticky;
    background: #252525;
    margin-bottom: 5px;
    margin-top: 20px;
}

button#odsgo-inside:hover {
    background: #2c2c2c;
}


ul.odsgo-sidebar-buttons {
    padding: 0;
    margin: 0;
}

.odsgo-sidebar-buttons li {
    color: #f4eae0;
    border-bottom: 1px solid white;
    padding: 10px;
    list-style: none;
    cursor: pointer;
}

.odsgo-sidebar-buttons li:hover {
    background: #0a0a0ac4;
}

.odsgo-act-ride {
    margin-top: 50%;
    display: flex;
    flex-direction: column;
}

button#odsgo-activate-rides {
    background-color: red;
    color: black;
    border: black;
    align-self: center;
    border-radius: 100%;
    aspect-ratio: 1 / 1;
}

button#odsgo-activate-rides:hover {
    color: black;
    border: black;
}

.place-card.place-card-large , button.gm-inset-map.gm-inset-light {
    display: none;
}