@charset "utf-8";
/* CSS Document */


.user_button{
	height:2rem;
	width:2rem;
	background:url(/images/user_icon.webp) no-repeat center center;
	background-size: 1.5rem;
	border: solid 1px #fff;
	border-radius: 5px;
	margin-left: 0.5rem;
	cursor: pointer;
	}
.user_button:hover{
	background-color: #444;
	}

#user_wrap{
	position: relative;
	}
#user{
	transform: scale(0);
	transform-origin: top right;
	transition: all .4s ease;	
	position: absolute;
	top:2rem;
	right: 0;
	z-index: 1000;
	background-color: var(--light_gray_1);
	padding: 0.5rem;
	}

#user input[type=text], #user input[type=password]{
	border: none;
	width: 16rem;
	padding: 0.2rem;
	}

#user *{
	margin: 0.25rem 0;
	}

.thirdparty_login_googlem, .thirdparty_login_facebookm{
	margin: 5px 0;
	width:235px;
	text-align: center;
	}
.thirdparty_login_googlem a, .thirdparty_login_facebookm a{
	line-height: 20px; 
	display:block; 
	color:#fff !important;
	background-size:20px;
	background-repeat: no-repeat;
	background-position: 2px 2px;
	}
.thirdparty_login_googlem a{ 
	background-image:url(/images/google-logo.webp);
	padding: 2px;
	background-color: #b0cad6;
	}
.thirdparty_login_facebookm a{
	background-image:url(/images/facebook-logo.webp); 
	padding: 2px;
	background-color: #b0cad6;
	}