.menu {
    background-color: #1C1C1E;
    height: 100%;
    margin: 0;
    border-radius: 10px 0 0 10px;
    line-height: 1.4;
}

.menu main {
    height: 100%;
}

.menu main .flex-container {
    position: absolute;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: inherit;
    box-sizing: border-box;
    overflow-x: hidden;
    padding-left: 35px;
    padding-right: 35px;
}

.menu .flex-container .section {
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    /* for Firefox */
    min-height: 0;
}

.menu .flex-container .wrapper {
    display: flex;
    justify-content: space-between;
    margin: 1rem 0 1rem;
}

.menu .wrapper .close-icon-screenspace {
    z-index: 3004;
    opacity: 1;
    cursor: pointer;
    position: fixed;
    right: 30px;
    content: url(../krpano/Assets/Images/Icons/Close_white.svg);
    width: 30px;
    height: 30px;
}

.menu .flex-container .wrapper .close-icon-screenspace, h1 {
    align-self: center;
}

.menu .flex-container .scrollable-content {
    flex-grow: 1;
    overflow: auto;
    /* for Firefox */
    min-height: 0;
    text-align: left;
    color: #ffffff;
    font-size: 28px;
    font-weight: 400;
    margin-top: 1.5rem;
}

.menu h1 {
    color: #ffffff;
    text-align: left;
    font-size: 37px;
    font-weight: 700;
    margin: 0;
}

.menu .header-line {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    border-bottom: 1px solid #232323;
}

.menu p {
    text-align: left;
    color: #9A999E;
    font-size: 23px;
    font-weight: 400;
}

.menu ul {
    list-style: none;
    margin-top: 0;
    padding-left: 0;
}

.menu li {
    color: #9A999E;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    border-bottom: 1px #232323 inset;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.menu li:last-child {
    border-bottom: none;
}

.menu li a {
    color: #9A999E;
    text-decoration: none;
}

.menu li a:hover {
    border-bottom-width: 1px;
    border-bottom-style: solid;
    padding-bottom: 1px;
}

.menu li a:active {
    border-bottom-width: 1px;
    border-bottom-style: solid;
    padding-bottom: 1px;
}