.mobile-menu-trigger {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    color: white;
    font-family: 'Roboto', sans-serif;
    padding: 10px;
	position: absolute;
    top: 20px;
    right: 10px;
}

.mobile-menu-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 21px;
    width: 25px;
    margin-bottom: 5px;
}

.mobile-menu-icon .bar {
    display: block;
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 2px;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100vw;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 1);
    z-index: 9999;
    transition: right 0.3s ease;
    overflow-y: auto;
    padding: 20px;
    box-sizing: border-box;
	touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
}

.mobile-menu-overlay.visible {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 30px;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
}

.mobile-menu-items {
    margin-top: 60px;
	margin-bottom:200px
}

.mobile-menu-item {
    color: white;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    margin-top: 10px;
    cursor: pointer;
}

.mobile-menu-content {
    color: white;
    font-family: 'Roboto', sans-serif;
    padding: 20px 0;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.mobile-menu-loading {
    color: white;
    font-family: 'Roboto', sans-serif;
    text-align: center;
    padding: 50px;
}