#topbar {
    display: flex;
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    width: 100%;
    height: auto;
    padding:15px min(5%, 40px);
    box-sizing: border-box;
    text-align: center;
    flex-direction: row;
    transition: all 0.3s;
    align-items: center;
    justify-content: center;
    background-color: rgba(39,39,39,0.00);
	/* background-image: linear-gradient(0deg, var(--color01) 0%, var(--color05) 99%); */
    z-index: 6789;
}

#topbar #top{
	display: flex;
	width:100%;
	height:60px;
	margin:0px 0px;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

#topbar #top a{
	display: inherit;
	width:inherit;
	height:inherit;
}

#topbar #top a img{
	width:auto;
	height:30px;
    margin: auto 0px;
}


#topbar #menu{ display:none; }

#topbar #menuwrap {
    display:flex;
}

#topbar #menuwrap ul{
	display: flex;
	width:100%;
	height:auto;
	align-items: center;
	justify-content: flex-end;
	list-style: none;
	white-space: nowrap;
	overflow-x: auto;
	overflow-y: hidden;
	margin: 0px 0px;
	padding: 5px 0px;
}

#topbar #menuwrap ul li {
	display:inline-block;
	width: auto;
	height:42px;
	line-height: 42px;
	font-size: 18px;
	font-weight: 500;
	border-radius: 20px;
	letter-spacing: 0.2px;
	color: rgba(255,255,255,0.9);
	padding: 0px 25px;
	border:0;
    box-shadow: inset 0px -10px 10px rgba(235,235,235,0.7);
	margin:0px 3px;
    transition: all 0.5s;
    cursor: pointer;
}

#topbar #menuwrap ul li:hover {
    box-shadow: inset 0px -35px 15px rgba(235,235,235,0.2);
    transform: scale(1.05);
}

#topbar #menuwrap ul li a {
	color:inherit;
	cursor: pointer;
	text-decoration: none;
}


@media screen and (max-width:800px){
	#topbar {
		padding: 10px min(15px, 5%);
		flex-direction:column;
	}

    #topbar #top a img {
        height:22px;
    }
    
	#topbar #menuwrap ul{
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
		justify-content: flex-end;
        gap:10px 5px;
	}
	
#topbar #menuwrap {
    display:none;
}      

#topbar #menu:checked + #menuwrap {
    display:flex;
    width:100%;
    height: auto;
    flex-direction: column;
}

#topbar #lb_menu{
    position: fixed;
    top:20px;
    right:20px;
    display:flex;
    width:45px;
    height:45px;
    transition: all 0.2s;
    flex-direction: column;
    gap:10px 0px;
    transform: scale(0.8);
    align-content: center;
    justify-content: space-evenly;
}

#topbar #lb_menu div{
    width:100%;
    height:6px;
    transition: all 0.2s;
    background-color:white;
    border-radius: 10px;
}

#topbar #menu:checked ~ #lb_menu { transform: rotate(45deg) scale(0.8); }
#topbar #menu:checked ~ #lb_menu div:nth-of-type(1) { transform: rotate(90deg) translateX(18px); transform-origin: center; }
#topbar #menu:checked ~ #lb_menu div:nth-of-type(2) { opacity:0;}
#topbar #menu:checked ~ #lb_menu div:nth-of-type(3) { transform: rotate(0deg) translateY(-17px); transform-origin: center; }

    
}

#account_wrap{
    position: fixed;
    display: none;
    top:0px;
    left:0px;
    width:100%;
    height:100%;
    height: 100dvh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color:rgba(61,61,61,0.5);
    backdrop-filter:blur(5px);
    z-index: 9400;
}

#account_wrap #loo { 
    display:flex;
    align-items: center;
    justify-content: center;
    width:50px;
    height:50px;
    border-radius: 100px;
    translate: 0px -20px;
    background-color:rgba(230,230,230,0.80);
}
#account_wrap #loo img{ width:42px; height:42px; }

#logw:checked + #account_wrap { display:flex; }

#account_wrap #account_wrap_center{
    display: flex;
    flex-direction: column;
    gap:10px 0px;
    background-color:rgba(50,47,47,1.00);
    padding:20px 5%;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

#account_wrap #account_wrap_center .ac_view{
    display: none;
    width: 95%;
    height: auto;
    min-width: 270px;
    max-width: 400px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}


#account_wrap #account_wrap_center input[name='logview']:checked + .ac_view{
    display: flex;
}


#account_wrap #account_wrap_center .ac_view h3{
    font-size:25px;
    font-weight: 800;
    margin:30px auto 15px auto;
    color:rgba(241,234,205,1.00);
}
#account_wrap #account_wrap_center .ac_view p{
    color:white;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 1px;
    margin:5px 0px 25px 0px;
    text-align: center;
    line-height: 28px;
}

#account_wrap #account_wrap_center .ac_view .inp_row{
    display:flex;
    position: relative;
    flex-direction: column;
    width: 100%;
    margin: 10px 0px;
    height: auto;
}

#account_wrap #account_wrap_center .ac_view .inp_row input{
    display: flex;
    width:100%;
    height:55px;
    line-height: 55px;
    border:0;
    outline:none;
    -webkit-appearance:none;
    font-size:16px;
    font-weight: 500;    
    background-color:rgba(222,222,222,0.2);
    color:rgba(231,231,212,1.00);
    padding: 0px 25px;
    box-sizing: border-box;
    border-radius: 10px;
    z-index: 1000;
}

#account_wrap #account_wrap_center .ac_view .inp_row input::placeholder{
    color:transparent;
}

#account_wrap #account_wrap_center .ac_view .inp_row label{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top:0px;
    left:0px;
    bottom:0px;
    padding:0px 25px;
    box-sizing: border-box;
    width: auto;
    height: 30px;
    line-height: 30px;
    margin: auto 0px;
    font-size: 15px;
    font-weight: 500;
    color:rgba(236,236,197,1.00);
    z-index: 1001;
}

#account_wrap #account_wrap_center .ac_view .inp_row input:focus + label{
    translate: 0px -30px;
}

#account_wrap #account_wrap_center .ac_view .inp_row input:not(:placeholder-shown) + label{
    translate: 0px -30px;
}

#account_wrap #account_wrap_center .ac_view .btt {
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap:5px 0px;
    padding:10px 0px;
    margin:20px 0px;
}

#account_wrap #account_wrap_center .ac_view .btt label{
    color:white;
    letter-spacing: 0.4px;
    font-size:13px;
    font-weight: 300;
    cursor: pointer;
    transition:all 0.2s;
}

#account_wrap #account_wrap_center .ac_view .btt label:hover{
    transform:scale(1.02);
}
    
    
