
.mobile_menu {
    
    float: left;
    margin-top: 20px;
    position: relative;
}



.burger {
    margin: 0 auto;
    width: 300px;
    position: relative;
}

.burger h2 {
    font-size: 25px;
    text-align: left;
    margin: 0;
    font-style: normal;
}

.burger .Beschriftung img {
    width: 50px;
    height: 50px;
}


.burger .content {
    height: 0;
    visibility: hidden;
    opacity: 0;
    background-color: #fa8057;
    border-radius: 20px;
    color: #fff;
    margin-top: 20px;
}

.burger .content ol {
list-style: none;
    margin-bottom: 25px;
}

.burger .content li:hover {
   list-style: disclosure-closed;
}

.burger .content ol a {
   text-decoration: none;
    color: white;
    font-weight: 900;
}

.burger .content ol .externer_link {
   text-decoration: none;
    color: #A01805;
    font-weight: 900;
    background: white;
    padding: 10px;
    border: solid 2px white;
    border-radius: 10px;
}

.burger .content .externer_link:hover {
    border: solid 2px white;
    color: white;
    background: none;
}


.burger .content ol a:hover {
    border-top: solid white 3px;
    padding-top: 10px;
    cursor: pointer;
}

.burger .content li {
    margin-top: 20px;
    margin-left: 20px;
}

.burger .content li a:hover {
    border: none;
}

.burger .boxstop[type="checkbox"] {
    display: none;
}

.burger .boxstop[type="checkbox"]:checked + .content {
    height: auto;
    visibility: visible;
    opacity: 1;
    padding: 1.5em;
    transition: all ease 500ms;
    border-bottom: solid 5px white;
}

