 /* Style the navigation menu */

/*.topnav-box a.topnav-button*/
.nav-button {
	/*background-color: var( --main-theme-color );
	padding: 5px 5px;*/
	display: none;
	/*border: thin solid red;*/
}

.nav-list-desktop {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-right: 200px;
	/*background: #ffffff;*/
    /*flex: 1 1 80%;*/
	/*align-content: space-between;*/
	/*align-items: stretch;*/
	/*position: relative;*/
	/*border: thin solid grey;*/
}

.nav-list-mobile {
	display: none;
	/*background: #ffffff;*/
    /*flex: 1 1 80%;*/
	/*position: relative;*/
	/*border: thin solid grey;*/
}

.nav-list-mobile-wrapper {
	display: none;
}

/* Hide the links inside the navigation menu (except for logo/home) */
.nav-items {
	display: flex;
	flex-direction: row;
    font-size: 16px;
	
	/*border-bottom: thin dotted #1b1b1b;*/
	/*border: thin solid red;*/
}

/* Style navigation menu links */
.nav-items a {
	flex: auto;
	text-align: center;
	/*color: black;*/
	padding: 10px 20px;
	text-decoration: none;
	font-weight: normal;
	font-size: 16px;
	display: block;
	/*block-size: 80%;*/
	/*border-top: thin dotted #1b1b1b;*/
	/*border: thin solid green;*/
}

/* Add a grey background color on mouse-over */
.nav-items a:hover, .nav-items a:hover {
	background-color: var( --main-theme-color );
	/*color: black;*/
}

@media (max-width: 1000px) {

	/* Style navigation menu links */
	/*.nav-items a {
		flex: auto;
		text-align: center;
		padding: 10px 20px;
		text-decoration: none;
		font-weight: normal;
		font-size: 18px;
		display: block;
	}*/
	.nav-list-desktop {
		display: flex;
		flex-direction: column;
		align-items: center;
		padding-right: 0px;
	}
}

@media (max-width: 800px) {

	/*.topnav-box a*/.nav-button {
		background: #ffffff;/*var( --main-theme-color );*/
		padding: 5px 5px;
		display: block;
		/*border: thin solid red;*/
	}

	.nav-list-desktop {
		display: none;
	}

	.nav-list-mobile {
		display: none;
		align-items: center;
		align-content: center;
		/*block-size: 300px;*/
		inline-size: 100%;
		background: #ffffff;
		/*width: 100%;*/
		/*flex: 1 1 80%;*/
		/*position: relative;*/
		/*border: thick solid grey;*/
	}

	.nav-list-mobile-wrapper {
		display: flex;
		/*flex: 1 1 80%;*/
		flex-direction: row;
		align-content: center;
		width: 100%;
		/*border: thick solid yellow;*/
	}

	.nav-items {
		flex: 1 1 auto;
		display: block;
		/*margin-bottom: 10px;*/
		font-size: 14px;
		/*align-items: start;
		align-content: start;*/
		/*position: relative;*/
		border-bottom: thin dotted #1b1b1b;
		/*border: thin solid red;*/
	}

	.nav-items a {
		padding: 10px 10px;
		text-decoration: none;
		text-align: start;
		font-size: 20px;
		display: block;
		border-top: thin dotted #1b1b1b;
	}
}
