menu-bar{
	position: fixed;
	display: flex;
	align-items: center;
	column-gap: 10px;
	top: 10px;
	z-index: 700;
	width: 50%;
	transform: translate(50%, 0px);
	right: 50%;
}

menu-bar #menu_container{
	display: flex;
	align-items: center;
	column-gap: 10px;
	justify-content: space-between;
	background: white;
	padding: 5px;
	border-radius: 8px;
	width: 100%;
	box-shadow: var(--theme-box-shadow-min);
}
menu-bar .site-identity-container{
	display: flex;
	align-items: center;
	column-gap: 5px;
}
menu-bar .site-identity-container .site-title{
	display: flex;
	column-gap: 3px;
	flex-direction: column;
}
menu-bar .site-identity-container .property{
	font-size: 0.8rem;
}
menu-bar .menu-btns-container{
	display: flex;
	column-gap: 8px;
}
menu-bar .menu-btns-container .menu_btns{
	background: white;
	box-shadow: var(--theme-box-shadow-3d-harsh-min);
	border-radius: 50px;
	padding: 5px;
	cursor: pointer;
	display: flex;
	padding: 0;  
}
menu-bar .menu-btns-container .menu_btns:hover{
    background: var(--theme-blue);
}
menu-bar .menu-btns-container .menu_btns:hover svg path{
       stroke: var(--theme-white);
}
menu-bar .menu-btns-container .profile_opener_btn svg{
      padding: 2px;
}
menu-bar .menu-btns-container .menu_opener_btn .line {
  fill: none;
  stroke: black;
  stroke-width: 6;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
menu-bar .menu-btns-container  .menu_opener_btn[aria-expanded="true"] {
	background: var(--theme-red);
}
menu-bar .menu-btns-container  .menu_opener_btn[aria-expanded="true"] svg path{
	stroke: var(--theme-white);
}

menu-bar .menu-btns-container .menu_opener_btn .line1 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}
menu-bar .menu-btns-container .menu_opener_btn .line2 {
  stroke-dasharray: 60 60;
  stroke-width: 6;
}
menu-bar .menu-btns-container .menu_opener_btn .line3 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}
menu-bar .menu-btns-container .menu_opener_btn.opened .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}
menu-bar .menu-btns-container .menu_opener_btn.opened .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 6;
}
menu-bar .menu-btns-container .menu_opener_btn.opened .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}


menu{
	background: #979797;
	height: 100vh;
	width: 100vw;
	display: flex;
	position: fixed;
	top: 0;
	right: 0;
	margin:0px;
	z-index: 600;
	transform: translate(100%, 0%);
	transition: transform 500ms cubic-bezier(0.21, 0.61, 0.22, 0.96) 0.3s;
}
menu.open{
  transform: translate(0%, 0%);
}




#profile_modal{
	display: flex;
	flex-direction: column;
	  width: 80%;
	max-width: 350px;
	min-height: 350px;
	position: fixed;
	background: var(--theme-white);
	top: 50%;
	left: 50%;
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	transition: all 0.3s;
	padding: 10px;
	box-shadow: var(--theme-box-shadow-max);
	border-radius: 4px;
	transform: translate(-50%, -50%);
	z-index: 700;
	box-shadow: rgb(0 0 0 / 40%) 0px 22px 70px 0vh;
}
#profile_modal.open{
	pointer-events: auto;
	visibility: visible;
	opacity: 1;  
	transform: translate(-50%, -70%);
	box-shadow: rgb(0 0 0 / 40%) 0px 22px 70px 100vh;
}
#profile_modal closebtn{
	justify-content: flex-end;
	width: fit-content;
}
#profile_modal .profile_modal_tab{
	display: flex;
	column-gap: 10px;
	margin: 8px;
}
#profile_modal .tab_content_container{
	flex: 1;
	display: flex;
	flex-direction: column;
	box-shadow: var(--theme-box-shadow-max);
}
#profile_modal .tab_content_container .signup,
#profile_modal .tab_content_container .signin
{
	display: flex;
	flex-direction: column;
	flex: 1;
}
#profile_modal .profile_modal_tablinks {
	background: var(--theme-blue);
	border:1px solid var(--theme-white)!important;
	padding: 4px 8px;
	color: white;
	border-radius: 4px;
	cursor: pointer;
	width: 50%;
	text-align: center;
	box-shadow: var(--theme-box-shadow-3d-harsh-min);
}
#profile_modal .profile_modal_tablinks.active,
#profile_modal .profile_modal_tablinks:hover {
	background: var(--theme-white);
	border:1px solid var(--theme-blue)!important;
	color:var(--theme-selected-darkblue-color);
	box-shadow: var(--theme-box-shadow-inset);
}
#profile_modal form{
	display: flex;
	flex: 1;
	flex-direction: column;
	row-gap: 35px;
	padding: 10px;
}

#profile_modal form .action_tagline{
	font-weight: 100;
	line-height: 0.6em;
}

#profile_modal form .input_wrapper{
	display: flex;
	flex: 1;
	flex-direction: column;
	row-gap: 15px;
}

#profile_modal form .signUpSuccess,
#profile_modal form .signInSuccess{
	margin: auto;
}
#profile_modal form input{
	border-bottom: 1px solid var(--theme-black)!important;
	padding: 5px;
	width:100%;
}
#profile_modal form .profile_modal_form_submit_btn{
	padding: 5px;
	text-align: center;
	box-shadow: var(--theme-box-shadow-max);
	border-radius: 8px;
	width: 50%;
	margin: auto auto 10px;
	cursor: pointer;
}
#profile_modal form .profile_modal_form_submit_btn:hover{
	background: var(--theme-blue);
	color: var(--theme-white);
}





menu-bar .tagline{
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
}
menu-bar .taglineWrapper{
	display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-left: -5px;
	    height: 100%;
}
menu-bar .taglineWrapper .part1{
transform: rotate(-90deg);
    font-size: 1.1rem;
    font-weight: 700;
    border-bottom: 3px solid black!important;
    line-height: 1.2rem;
    height: 1.6rem;
}
menu-bar .taglineWrapper .part2 *{
	line-height: 0.8rem;
}















