@media screen and (min-width: 200px){

	*{
		margin: 0;
		padding: 0;
		text-decoration: none;
	}

	html{
		font-size: 10px;
		font-family: arial;
	}


	main{
		margin-bottom: 100px;
	}


	ul{
		list-style-type: none;
	}


	p, h1, h2, h3, h4, li, a, b, span, i{
		-webkit-touch-callout: none; /* iOS Safari */
	    -webkit-user-select: none; /* Safari */
	    -moz-user-select: none; /* Firefox */
	    -ms-user-select: none; /* Internet Explorer/Edge */
	    user-select: none;
	}


	
	p, li{
		font-family: 'Varela Round', sans-serif;
	}





	.body_overlay{
		bottom: 0; top: 0; left: 0; right: 0;	
		z-index: 3;
		width: 100%;
		opacity: 0;
		display: none;
		background-color: black;
		position: fixed;
	}


	.menu_icon{
		font-size: 2.5rem;
	} 


	footer .menu_icon{
		text-align: center;
		margin-top: 10px;
		font-size: 2.5rem;
	} 





	
	h1, h2, h3, h4{
		font-family: 'Montserrat', sans-serif;
	}





	
 	.menu_wrapper{
	position: fixed;
	top: 0;
	right: 0;
	height: 100%;
	width: 0;
	background: linear-gradient(180deg, #071021 0%, #0f172a 100%);
	overflow: hidden;
	z-index: 5;
	box-shadow: -10px 0 35px rgba(0,0,0,0.35);
	border-left: 1px solid rgba(255,255,255,0.08);
}

.open_menu{
	display: block;
	overflow-y: auto;
	animation-name: open_menu;
	animation-duration: 220ms;
	animation-timing-function: ease-out;
	animation-fill-mode: forwards;
}

@keyframes open_menu{
	0%{
		opacity: 0;
		transform: translateX(100%);
	}
	100%{
		opacity: 1;
		transform: translateX(0);
		width: 82%;
	}
}

.close_menu{
	animation-name: close_menu;
	animation-duration: 200ms;
	animation-timing-function: ease-in;
	animation-fill-mode: forwards;
}

@keyframes close_menu{
	0%{
		opacity: 1;
		transform: translateX(0);
		width: 82%;
	}
	100%{
		opacity: 0;
		transform: translateX(100%);
		width: 0;
	}
}

.menu_head{
	width: 90%;
	margin: 15px;
	padding: 24px 18px 18px;
	background: linear-gradient(135deg, #0a7575, #143782);
	border-radius: 28px;
	box-shadow: 0 12px 25px rgba(0,0,0,0.25);
}

.profile_name{
	color: white;
	font-size: 1.3rem;
	font-weight: 700;
	line-height: 1.5;
}

.profile_name > span{
	display: block;
	margin-top: 6px;
	font-size: 1.1rem;
	font-weight: 500;
	color: rgba(255,255,255,0.85) !important;
}


.profile_name > span strong{
	margin-top: 7px;
	border: 1px solid rgb(156, 172, 190);
	border-radius: 10px;
	background-color: #16223e;
	padding: 7px 10px;
}


.profile_name > span strong > span{
	font-weight: 800;
	color: white;
}

.verify{
	display: inline-flex !important;
	align-items: center;
	gap: 6px;
	margin-top: 10px !important;
	width: fit-content;
	padding: 5px 10px;
	border-radius: 999px;
	background: rgba(255,255,255,0.18);
	color: white !important;
	font-size: 1rem !important;
}

.menu_wrapper nav{
	padding: 18px 12px 30px;
}

.menu_wrapper ul{
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.menu_wrapper li{
	border-radius: 14px;
	overflow: hidden;
	background: rgba(255,255,255,0.045);
	border: 1px solid rgba(255,255,255,0.06);
	transition: 180ms ease;
}

.menu_wrapper li:active{
	transform: scale(0.98);
	background: rgba(14,165,164,0.18);
}

.menu_wrapper li a{
	display: flex;
	align-items: center;
	gap: 13px;
	padding: 15px 14px;
	color: #e5eef5;
	font-size: 1.35rem;
	font-weight: 600;
	letter-spacing: 0.2px;
}

.menu_wrapper li a i{
	width: 34px;
	height: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	background: rgba(14,165,164,0.14);
	color: #2dd4bf;
	font-size: 1.35rem;
}

.menu_wrapper li a span,
.menu_wrapper li a b{
	color: inherit;
}

.logout{
	color: #fecaca !important;
}

.logout i{
	background: rgba(239,68,68,0.16) !important;
	color: #f87171 !important;
}

.body_overlay{
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
	z-index: 3;
	width: 100%;
	opacity: 0;
	display: none;
	background: rgba(0,0,0,0.62);
	backdrop-filter: blur(3px);
	position: fixed;
}

.zIndex_for_menu{
	z-index: 10;
}

@media screen and (min-width: 700px){
	@keyframes open_menu{
		0%{
			opacity: 0;
			transform: translateX(100%);
		}
		100%{
			opacity: 1;
			transform: translateX(0);
			width: 380px;
		}
	}

	@keyframes close_menu{
		0%{
			opacity: 1;
			transform: translateX(0);
			width: 380px;
		}
		100%{
			opacity: 0;
			transform: translateX(100%);
			width: 0;
		}
	}
}


	h1{
		color: rgb(230, 230, 230);
		font-size: 1.8rem;
	}


	.vomit_image{
		position: absolute;
		width: 60px;
		height: 60px;
		display: block;
		margin: 5px 10px 0 auto;
		right: 0;
		top: 5px;
	}



	

	



	.alert_wrapper{
		color: rgb(50, 50, 50);
		width: 85%;
		max-width: 400px;
		z-index: 6;
		padding: 30px;
		box-sizing: border-box;
		background-color: white;
		position: absolute;
		top: 30%;
		left: 7.5%;
	}


	.alert_wrapper i{
		width: 100%;
		font-size: 4rem;
		text-align: center;
		display: block;
	}
	.fa-circle-exclamation{	
		color: red;
	}
	.fa-circle-check{
		color: rgb(0, 130, 80);
	}


	.alert_wrapper p{
		margin-top: 20px;
		text-align: center;
		font-size: 1.3rem;
		line-height: 1.7;
	}


	.alert_wrapper button{
		display: block;
		margin: 20px auto 0 auto;
		background-color: rgb(0, 50, 100);
		border: none;
		width: 80px;
		padding: 10px 8px;
		color: white;
	}



	footer{
		position: fixed;
		bottom: 0px;
		width: 100%;
		background-color: rgb(0, 0, 20);
		box-shadow: 0 0 7px 3.5px rgb(20, 20, 60);
	}



	footer ul{
		padding: 18px 0;
		display: grid;
		grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
	}


	footer ul *{
		display: block;
		text-align: center;
	}


	footer i{
		font-size: 1.2rem;
		color: rgb(100, 100, 130);
	}

	footer a{
		font-size: 0.7rem;
		margin-top: 7px;
		color: rgb(200, 210, 240);
	}

	
}
























@media screen and (min-width: 300px){


	html{ 
		font-size: 12px;
	}
}


















@media screen and (min-width: 350px){


	html{
		font-size: 13.5px;
	}
}









@media screen and (min-width: 400px){


	@keyframes open_menu{

		0%{
			opacity: 0%;
			width: 0%
		}

		100%{
			opacity: 100%;
			width: 320px

		}
	}
}




@media screen and (min-width: 500px){



	@keyframes open_menu{

		0%{
			opacity: 0%;
			width: 0%
		}

		100%{
			opacity: 100%;
			width: 350px

		}
	}
}












/* Desktop: 1000px and above */
@media screen and (min-width: 1000px) {
    .menu_wrapper {
		margin: 0 0 0 0;
        width: 350px;
    }


	 header, main, footer{
		width: calc(100% - 400px);
	}


	footer{
        width: calc(100% - 400px);
    }


	.menu_icon{
		display: none;
	}
}
