.ks-mobilmeny {
    position: relative;
    width: 100%;
    padding: 0;
    margin: 0;

    font-family: 'RelatoSans Regular';
    font-weight: normal;
    font-size: 1rem;
    line-height: 1.6;

    color: #fff;
}

.ks-mobilmeny__top {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;

    background-color: #b3210f;
}

.ks-mobilmeny__top__logo {
    padding: 0;
    margin: 0.5em 1.25em;
    height: 3.6rem;
}

.ks-mobilmeny__top__logo img {
    height: 100%;
    vertical-align: middle;
}

.ks-mobilmeny__top__links {
    display: flex;
    align-items: center;

    margin-left: auto;
    margin-right: 1.25em;
}

.ks-mobilmeny__top__link {
    text-decoration: none;
    display: flex;
    align-items: center;

    color: #fff;
    font-size: 1.25rem;

    padding: 0;
    margin: 0 1em;

    transition: color 0.3s ease;
}

.ks-mobilmeny__top__link:focus,
.ks-mobilmeny__top__link:hover {
    outline: none;
    cursor: pointer;
    color: #e3d7b0;
}

.ks-mobilmeny__top__toggle-container {
    width: 3rem;
    text-align: right;
}

.ks-mobilmeny__top__toggle {
    flex: none;
    padding: 0;
    margin: 0;

    border: none;
    background-color: transparent;
    color: inherit;

    transition: color 0.3s ease;
}

.ks-mobilmeny__top__toggle:focus,
.ks-mobilmeny__top__toggle:hover {
    outline: none;
    cursor: pointer;
    color: #e3d7b0;
}

.ks-mobilmeny__top__toggle::after {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 2.5rem;
    content: '\f0c9';
}

.ks-mobilmeny__top__toggle[aria-expanded='true']::after {
    content: '\f00d';
}

.ks-mobilmeny__sub {
    font-family: 'RelatoSans Bold';
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.6;

    padding: 0;
    margin: 0;

    border: 1px solid #efcbc7;

    word-wrap: break-word;
    overflow-wrap: break-word;
}

.ks-mobilmeny__sub--hidden {
    display: none;
}

.ks-mobilmeny__sub__list {
    position: relative;
    display: block;
    list-style: none;
    padding: 0;
    margin: 0;
}

.ks-mobilmeny__sub__list--level-1 {
    font-family: 'RelatoSans Bold';
    font-size: 1.6rem;
}

.ks-mobilmeny__sub__list--level-1 .ks-mobilmeny__sub__link-container {
    color: #fff;
    background-color: #790402;
}

.ks-mobilmeny__sub__list--level-1 .ks-mobilmeny__sub__link:focus,
.ks-mobilmeny__sub__list--level-1 .ks-mobilmeny__sub__link:hover,
.ks-mobilmeny__sub__list--level-1 .ks-mobilmeny__sub__toggle:focus,
.ks-mobilmeny__sub__list--level-1 .ks-mobilmeny__sub__toggle:hover {
    outline: none;
    background-color: #b3210f;
}

.ks-mobilmeny__sub__list--level-2 {
    font-family: 'RelatoSans Bold';
    font-size: 1.25rem;
}

.ks-mobilmeny__sub__list--level-2 .ks-mobilmeny__sub__link-container {
    color: #fff;
    background-color: #0e7489;
}

.ks-mobilmeny__sub__list--level-2 .ks-mobilmeny__sub__link:focus,
.ks-mobilmeny__sub__list--level-2 .ks-mobilmeny__sub__link:hover,
.ks-mobilmeny__sub__list--level-2 .ks-mobilmeny__sub__toggle:focus,
.ks-mobilmeny__sub__list--level-2 .ks-mobilmeny__sub__toggle:hover {
    outline: none;
    background-color: #0b5f70;
}

.ks-mobilmeny__sub__list--level-3 .ks-mobilmeny__sub__link-container {
    color: #b3210f;
    background-color: #fff;
}

.ks-mobilmeny__sub__list--level-3 .ks-mobilmeny__sub__link:focus,
.ks-mobilmeny__sub__list--level-3 .ks-mobilmeny__sub__link:hover,
.ks-mobilmeny__sub__list--level-3 .ks-mobilmeny__sub__toggle:focus,
.ks-mobilmeny__sub__list--level-3 .ks-mobilmeny__sub__toggle:hover {
    outline: none;
    background-color: #f5ebe9;
}

.ks-mobilmeny__sub__list--level-4 {
    font-family: 'RelatoSans Regular';
}

.ks-mobilmeny__sub__list--level-4 .ks-mobilmeny__sub__link {
    padding-left: 2.5rem;
}

.ks-mobilmeny__sub__list--hidden {
    display: none;
}

.ks-mobilmeny__sub__item {
    position: relative;
    border-top: 1px solid #efcbc7;
    margin: 0;
}

.ks-mobilmeny__sub__link-container {
    position: relative;
    display: flex;
}

.ks-mobilmeny__sub__icon {
    width: 1.5em;
    margin-right: 0.25em;
}

.ks-mobilmeny__sub__link {
    flex: 1 1 auto;

    color: inherit;
    text-decoration: none;

    display: block;
    margin: 0;
    padding: 1rem 1.25rem;

    transition: background-color 0.3s ease;

    /* fix overflow-wrap */
    min-width: 0%;
}

.ks-mobilmeny__sub__toggle {
    flex: none;

    padding: 0 1.25rem;
    margin: 0;
    line-height: 1;

    border: none;
    background-color: transparent;
    color: inherit;

    transition: background-color 0.3s ease;
}

.ks-mobilmeny__sub__toggle:hover {
    outline: none;
    background: #f5ebe9;
    cursor: pointer;
}

.ks-mobilmeny__sub__toggle::after {
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
    font-size: 2rem;
    content: '\f0fe';
}

.ks-mobilmeny__sub__toggle[aria-expanded='true']::after {
    content: '\f146';
}
