.navigation.closed {
    left: -100%;
}

.navigation {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: var(--navigation-bg);
    z-index: 99;
    transition: left .3s;
}

.navigation .items::-webkit-scrollbar {
    display: none;
}

.navigation .items {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-height: 80vh;
    overflow-y: scroll;
    scrollbar-width: none;
}

.navigation .items>a {
    display: block;
    margin: 2rem;
    text-align: center;
    text-decoration: none;
    font-size: 2rem;
    color: var(--navigation-color);
    transition: color .1s;
}

.navigation a:hover {
    color: var(--navigation-color-hover);
}

.navigation .close {
    position: absolute;
    right: 16px;
    top: 16px;
    border: none;
    border-radius: 50%;
    padding: 0;
    height: 24px;
    width: 24px;
    background-color: #f00;
    cursor: pointer;
}

.navigation .close::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateZ(45deg);
    width: 80%;
    height: 10%;
    background-color: var(--header-color);
}

.navigation .close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateZ(-45deg);
    width: 80%;
    height: 10%;
    background-color: var(--header-color);
}

.navigation .special {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.navigation .special img,
.navigation .special svg {
    cursor: pointer;
}

.navigation .special svg path,
.navigation .special svg g {
    fill: var(--navigation-color);
    transition: fill .1s;
}

.navigation .special svg:hover path,
.navigation .special svg:hover g {
    fill: var(--navigation-color-hover);
}

.navigation .colorSchemeButton.selected {
    display: none;
}