.fullscreen-body {
    overflow: hidden;
    width   : 100%;
    height  : 100%;
    margin  : 0;
    padding : 0;
}

#bike-card-menu {
    padding: 10px;
    display: grid;
    gap: 10px;
    justify-content: center;
    max-height: 400px;
    overflow-y: auto;
    /* align-items: stretch; */
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

#renderCanvas {
    width   : 100%;
    height  : 100%;
    touch-action: none;
}

#sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background-color: rgba(.1,.1,.1,.9);
}

#sidebar-content {
    position: absolute;
    top: 0px;
    display: flex;
    padding: 20px;
    height: inherit;
    width: 100%;
    flex-direction: column;
    overflow-y: scroll;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width:10px;
}

::-webkit-scrollbar-track {
    background: #050505;
}

::-webkit-scrollbar-thumb {
    border-radius: 2px;
    background: #e3730b;
}

::-webkit-scrollbar-thumb:hover {
    background: #e3730b;
}

h3 {
    color: white;
}

.bike-item {
    text-decoration: none;
    border-radius: 10px;
    color: #eeeeee;
    background-color: #202020;
    display: block;
    padding: 10px;
    width: 100%;
}

.bike-item:hover {
    text-decoration: none;
    color: #eeeeee;
    cursor: pointer;
}

.selected {
    background-color: #e3730b;
    color: #eeeeee;
    text-decoration: none;
}