.new-menu {
    height: 100%;
    display: flex;
    justify-content: flex-end;
    gap: 3rem;
    align-items: center;
    width: 100%;
    font-size: 20px;
}
.new-menu option {
    font-size: 16px;
    font-family: "Source Sans Pro";
}

.menu-dropdown {
    position: relative;
}
.menu-dropdown:hover .menu-dropdown-list {
    display: flex;
}
.menu-dropdown-list {
    flex-flow: column;

    transition: 0.25s all ease;
    display: none;
    top: 27px;
    background: #fff;
    position: absolute;
    z-index: 9;
    width: 150px;
    box-shadow: 3px 3px 3px #333333a1;
}
.menu-dropdown-list-item {
    /*color: #661421;*/
    color: #333333;
    font-family: 'Source Sans Pro', Sans-serif;
    padding: 0.5rem 2rem;
    display: flex;
    justify-content: space-between;

}
/*.menu-dropdown-list-item:nth-of-type(even) {*/
/*    background: #e7e7e7;*/
/*}*/
/*.menu-dropdown-list-item::after {*/
/*    content: "›";*/
/*    display: block;*/
/*}*/
.menu-dropdown-list-item:hover {
    background: #671926;
    color: #fff;
    text-decoration: none;
}
.new-menu .btn-online {
    background: #707070;
    color: #fff;
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    box-shadow: 3px 3px 3px #333333a1;
    text-decoration: none;
}

.menu-dropdown-wrapper {
    display: flex;
    flex-flow: column;
}

@media (max-width: 1480px) {
    .new-menu {
        display: none;
    }
}

div#current-location::before {
    content: url("https://mitteldeutsches-institut.de/wp-content/uploads/2023/06/image-4.png");
    font-size: 12px;
    display: block;
    margin-right: 1rem;
    line-height: 12px;
    display: flex;
    align-items: center;
}
#current-location {
    display: flex;
    align-items: center;
}