span.bottomMenuOption svg {
    width: 16px !important;
}

div#bottomMenu {
    position: fixed;
    bottom: 70px;
    width: 120px;
    display: flex;
    gap: 5px;
    left: calc(50% - 65px);
    z-index: 9998;
    background-color: white;
    border-radius: 10px;
    justify-content: space-between;
    padding: 3px 15px;
}

span.bottomMenuOption {
    width: 33%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px;
    transition-duration: 0.4s;
    cursor: pointer;
}

span.bottomMenuOption:hover {
    background-color: #b1b1b1;
    border-radius: 8px;
}

span.bottomMenuOption.selected {
    background-color: #022c4f;
    border-radius: 8px;
}

span.bottomMenuOption.selected:hover {
    background-color: #022c4f;
    border-radius: 8px;
}

span.bottomMenuOption.selected svg {
    fill: white !important;
}

span.bottomMenuOption.selected path {
    fill: white !important;
}