nav {
    padding: 60px 70px;
    display: flex;
    position: relative;
}

.uk-navbar-nav {
    gap: 32px
}

.uk-navbar-nav li a {
    font-weight: 500;
    min-height: 45px;
    transition: var(--hover-transition);
}

.uk-navbar-nav li a:hover {
    opacity: 0.6;
    transition: var(--hover-transition);
}

.logo {
    transition: var(--hover-transition);
    z-index: 99999;
}

.logo:hover {
    opacity: 0.6;
    transition: var(--hover-transition);
}

.logo svg {
    width: 160px;
	width: 155px;
	width: 158px;
}

.vaktmeister-logo-fill {
    fill: #fff;
}

.noscroll {
    overflow-y: hidden;
    height: 100%;
    width: 100%;
    position: fixed;
}

.navbar-button {
    z-index: 999999;
    cursor: pointer;
    background: 0 0;
    border: 0;
    padding: 0;
    touch-action: manipulation;
    padding: 25px;
    padding-bottom: 35px;
    position: absolute;
    margin-left: -70px;
	margin-top: 12px;
}

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.mobile-nav-icon-container {
    position: relative;
    display: initial;
    height: 50px;
    width: 50px;
    cursor: pointer;
    transform: rotate(0deg);
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.mobile-nav-icon-container #mobile-nav-icon {
    width: 36px;
    height: 15px;
    position: relative;
    transform: scale(1.3);
}

.mobile-nav-icon-container #mobile-nav-icon .mobile-bar {
    width: 100%;
    height: 1px;
    display: block;
    position: relative;
    background: #fff;
    transition: all .6s ease;
    transition-delay: 0s;
}

.mobile-nav-icon-container #mobile-nav-icon .mobile-bar.topBar {
    transform: translateY(0px) rotate(0deg);
}

.mobile-nav-icon-container #mobile-nav-icon .mobile-bar.bottomBar {
    transform: translateY(10px) rotate(0deg);
}

.menu-active .topBar {
    transform: translateY(5px) rotate(45deg) !important;
}

.menu-active .bottomBar {
    transform: translateY(4px) rotate(-45deg) !important;
}

.menu-active .mobile-nav-icon-container #mobile-nav-icon .mobile-bar {
    background: #fff;
}

@keyframes menubackground-fadeout {
    0% {
        background: rgb(0 0 0 / 100%);
    }
    100% {
        background: rgb(0 0 0 / 0%);
    }
}

@keyframes menubackground-fadein {
    0% {
        background: rgb(0 0 0 / 0%);
    }
    100% {
        background: rgb(0 0 0 / 100%);
    }
}

.fullheight-navigation {
    position: fixed;
    top: 0px;
    height: calc(100%);
    left: 0;
    right: 0;
    z-index: 999;
    height: 100vh;
    opacity: 0;
    visibility: hidden;
}

.menu-inactive .fullheight-navigation {
    z-index: 999;
    opacity: 1;
    visibility: visible;
    animation: menubackground-fadeout 0.4s forwards;
}

.menu-active .fullheight-navigation {
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    animation: menubackground-fadein 0.4s forwards;
}

.fullheight-navigation-container {
    margin-top: 10px;
}

.menu-active .logo-green {
    fill: #008261 !important;
}

.menu-active .logo-text {
    fill: #1D1D1B !important;
}

.menu-active .logo-stroke {
    stroke: #008261 !important;
}

.fullheight-navigation-links {

}

@keyframes linkfadeIn {
    100% {
        opacity: 1;
        transform: translate(0px, -15px);
        padding-left: 0px;
    }
}

@keyframes linkfadeOut {
    0% {
        opacity: 1;
        transform: translate(0px, -15px);
        padding-left: 0px;
    }
    100% {
        opacity: 0;
    }
}

.menu-inactive .fullheight-navigation-links ul li {
    transform: translate(-0px, -15px);
    animation: linkfadeOut 0.3s forwards;
}

.menu-active .fullheight-navigation-links ul li {
    animation: linkfadeIn 1s forwards;
    opacity: 0;
}

.menu-active .fullheight-navigation-links ul li:nth-child(1) {
    animation-delay: 0.1s;
}

.menu-active .fullheight-navigation-links ul li:nth-child(2) {
    animation-delay: 0.2s;
}

.menu-active .fullheight-navigation-links ul li:nth-child(3) {
    animation-delay: 0.3s;
}

.menu-active .fullheight-navigation-links ul li:nth-child(4) {
    animation-delay: 0.4s;
}


.fullheight-navigation-links ul {
    list-style: none;
    padding-left: 0px;
    text-align: center;
    margin-bottom: 0px;
}

.fullheight-navigation-links ul li {

}

.fullheight-navigation-links ul li a {
    font-weight: 600;
    padding: 10px 20px;
    margin-bottom: 6px;
    display: block;
    font-size: 1.35rem;
}



@media screen and (min-width: 881px) {
	
	.fullheight-navigation-links ul {
		margin-top: 30px;
	}
	
	.fullheight-navigation-links ul li a {
		font-size: 1.7rem;
	}
	
}


@media screen and (max-width: 880px) {

    nav {
        padding: 50px 24px;
    }

    .logo svg {
        width: 135px;
		width: 140px;
    }
	
	.navbar-button {
		margin-top: 12px;
	}

}