/* Common to desktop and mobile views */
.side__menu a {
	all: unset;
}
input[type=radio] {
	display: none;
}

/* Desktop or laptop view */
@media only screen and (min-width: 1024px) {
	.header .top__nav {
		width: calc(100% - 4.01vw);
		background: transparent linear-gradient(90deg, #4A3BF1 0%, #9FB6E7 100%, #00EAB04D 100%) 0% 0% no-repeat padding-box;
		position: fixed;
		top: 0;
		min-height: 6.5vh;
		display: flex;
		flex-direction: row;
		align-items: center;
		z-index: 10;
		padding-left: 2.6vw;
		padding-right: 1.41vw;
		padding-top: 1.39vh;
		padding-bottom: 1.39vh;
	}
	.nav__logo {
		cursor: pointer;
		height: 5.8vh;
	}
	.nav__menu {
		display: flex;
		justify-content: center;
		flex-grow: 1;
		gap: 3.5vw;
	}
	.nav__menu a {
		all: unset;
	}
	.menu__button {
		display: none;
	}
	input[type=radio] + label {
		font-family: 'BT Beau Sans Light';
		font-size: 1.04vw;
		color: #FFFFFF;
		height: 3.06vh;
		display: flex;
		align-items: center;
		letter-spacing: 0.8px;
	}
	input[type=radio]:checked + label > div:first-child {
		border: 0.13vw solid var(--green-secondary);
		background-color: var(--green-secondary);
		border-radius: 3px;
		height: 100%;
		margin-right: 0.52vw;
		width: 0.13vw;
	}
	input[type=radio]:checked + label > div:last-child {
		font-family: 'BT Beau Sans Bold';
		font-size: 1.04vw;
		text-transform: uppercase;
	}
	.side__menu div {
		/* display: none; */
		background-color: var(--green-secondary);
	}
}

/* Mobile view */
@media only screen and (max-width: 1023px) and (orientation: portrait) {
	.nav__menu, .top__nav > button {
		display: none;
	}
	.header .top__nav {
		background: transparent linear-gradient(91deg, var(---4a3bf1) 0%, #9FB6E7 100%, #00EAB04D 100%) 0% 0% no-repeat padding-box;
		background: transparent linear-gradient(91deg, #4A3BF1 0%, #9FB6E7 100%, #00EAB04D 100%) 0% 0% no-repeat padding-box;
		box-shadow: 0px 3px 6px #00000029;
		opacity: 1;
		backdrop-filter: blur(25px);
		-webkit-backdrop-filter: blur(25px);
		position: fixed;
		top: 0;
		min-height: 7.11vh;
		width: 100%;
		display: flex;
		flex-direction: row;
		align-items: center;
		z-index: 10;
	}
	.nav__logo {
		cursor: pointer;
		height: 3.819vh;
	}
	.menu__button {
		display: inline;
		height: 2.96vh;
		text-decoration: none;
		margin-left: 25px;
		margin-right: 25px;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		cursor: pointer;
	}
	.menu__button div {
		/* width: 28px; */
		width: 6.4vw;
		/* height: 0.36vh; */
		height: 0.36vh;
		background-color: #FFFFFF;
	}
	.side__menu {
		background: transparent linear-gradient(159deg, #4A3BF1 0%, #9FB6E7 75%, #00EAB04D 100%) 0% 0% no-repeat padding-box;
		position: fixed;
		top: 7.11vh;
		bottom: 0px;
		width: 0px;
		z-index: 10;
		box-shadow: 0px 3px 6px #00000029;
		opacity: 1;
		backdrop-filter: blur(25px);
		-webkit-backdrop-filter: blur(25px);
		display: flex;
		flex-direction: column;
		align-items: center;
		transition: 200ms;
		overflow-x: hidden;
	}
	.side__menu > .nav__menu {
		display: flex;
		justify-content: center;
		align-items: flex-start;
		flex-grow: 1;
		gap: 33px;
		flex-direction: column;
	}
	.side__menu button {
		margin-bottom: 17.77vh;
	}
	.nav__menu_item {
		width: 177px;
	}
	input[type=radio] + label {
		font-family: 'BT Beau Sans Light';
		font-size: 16px;
		color: #FFFFFF;
		height: 33px;
		display: flex;
		align-items: center;
		letter-spacing: 0.8px;
		gap: 10px;
	}
	input[type=radio]:checked + label > div:first-child {
		border: 1px solid var(--green-secondary);
		background-color: var(--green-secondary);
		border-radius: 3px;
		height: 100%;
		width: 4px;
	}
	input[type=radio]:checked + label > div:last-child {
		font-family: 'BT Beau Sans Bold';
		font-size: 16px;
		text-transform: uppercase;
		width: 100%;
	}
	.menu__overlay {
		display: none;
		position: absolute;
		top: 0;
		right: 0;
		left: 0;
		z-index: 1;
		height: 100vh;
	}
}
