.top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 53px;
    margin: 0 auto 5px auto;
    padding-right: 15px;
    border-bottom: 1px solid #707070;
    box-sizing: border-box;
    background-color: white;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
}

.top-bar .needle-burger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 78px;
}

.top-bar .burger-menu {
    padding-top: 94.5px;
    width: 300px;
    padding-left: 34px;
    background-color: transparent;
    background-image: url('../images/bm-background.svg');
    background-size: 100% auto;
    background-repeat: no-repeat;
    box-sizing: border-box;
    position: absolute;
    top: 53px;
    right: -328.5px;
    z-index: 500;
    filter: drop-shadow(1px 0px 4px rgb(100, 100, 108, 0.4));
}

.top-bar .burger-menu .burger-menu-inner {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    width: 185px;
}

.top-bar .burger-menu .burger-menu-inner a {
    font-family: 'oxygen-regular';
    font-size: 16pt;
    color: black;
    text-decoration: none;
    text-transform: uppercase;
}

.top-bar .burger-menu.shift-in {
    animation: bm-in 300ms linear;
    right: -8.5px;
}

.top-bar .burger-menu.shift-out {
    animation: bm-out 300ms linear;
    /* right: -308.5px; */
}

.top-bar .burger-menu .burger-menu-inner .separator {
    width: 100%;
    height: 2px;
    background-color: #8b8b8b;
}

.top-bar .stationskarte {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(100% / 0.98);
    min-height: 100vh;
    background-color: rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50000000;
}

.top-bar .stationskarte .stationskarte-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 500px;
    padding: 10px;
    position: relative;
    background-color: white;
    border: 1px solid black;
    border-radius: 7px;
    box-sizing: border-box;
}

.top-bar .stationskarte .stationskarte-inner img {
    width: 100%;
    height: auto;
}

.top-bar .stationskarte .stationskarte-inner .close-map {
    position: absolute;
    top: 5%;
    right: 5%;
    min-width: 3%;
    width: 5%;
}

.top-bar .stationskarte .stationskarte-inner .close-map img {
    width: 100%;
    height: auto;
}

.disNone {
    display: none !important;
}

@media only screen and (min-width: 320px) {
    .top-bar .burger-menu {
        height: calc(100vh - 53px);
    }
}

@media only screen and (min-width: 768px) {
    .top-bar .burger-menu {
        height: 386.5px;
        background-size: 100%;
    }
}

@keyframes bm-in {
  0% {
    right: -328.5px;
  }

  100% {
    right: -8.5px;
  }
}

@keyframes bm-out {
  0% {
    right: -8.5px;
  }

  100% {
    right: -328.5px;
  }
}