
#mobilemenu { /* Hide mobile menu by default on all screens */
	display: none;
}

@media screen and (max-width: 650px) { /* Small screens */
	#topbarright {
		display: none;
	}
	
	#loginmenu {
		display: none;
	}
	
	#mobilemenuicon {
		position: fixed;
		z-index: 2;
		background-color: rgba(0,111,0,1);
		color: #feffed;
		width: 49px;
		height: 48px;
		right: 30px;
		top: 12px;
		border-radius: 10px;
		border: 2px solid;
	}
	
	#mobilemenuicon .fa {
		font-size: 44px;
		margin: 2px 6px;
	}
	
	#mobilemenu {
		position: fixed;
		width: 97%;
		top: 80px;
		z-index: 3;
		background-color: rgb(41 185 41);
		border-radius: 5px;
		max-width: 574px;
		font-size: 20px;
	}
	
	.mobilemenuelement {
		margin: 5px;
		text-align: center;
	}
	
	.regformtextfield {
		width: 100px;
	}
}

@media screen and (min-width: 650px) { /* Large screens */
	#mobilemenuicon { /* Hide mobile menu icon on large screens */
		display: none;
	}
}