
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}


body {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	background: url('../img/background.jpg') no-repeat;
	background-size: cover;
	background-position: center;
	z-index: -10;
}

header {
	position: absolute;
	width: 100%;
		top: 0;
	left: 0;
	min-height: 66px;
	background: #43a5f6;
	padding: 0 100px;
	display: flex;
	justify-content: space-between;
	align-items: center;

/*	position: fixed; 
	top: 0;
	left: 0;
	width: 100%;
	padding: 20px 100px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 99;
*/
}


.imgTitleLogo {
	width: 40px;
	height: 40px;
	max-width: 100px;
	max-height: 40px;
}



header .logo {
	font-size: 1.75em;
	color: #fff;
	font-weight: 600;
	text-decoration: none;
}

header ul {
	position: relative;
	z-index:100;
}

header ul li {
	position: relative;
	list-style: none;
	float: left;
	z-index:100;
}

header ul li a {
	color: #fff;
	font-size: 1.1em;
	padding: 20px 25px;
	text-decoration: none;
	display: flex;
	justify-content: space-between;
}

header ul li a:hover {
	background: #2b93e3;
}

header ul li ul {
	position: absolute;
	left: 0;
	width: 200px;
	background: #445964;
	display: none;
}

header ul li:hover > ul {
	display: block;
}

header ul li ul li {
	position: relative;
	width: 100%;
	border: 1px solid rgba(0,0,0,0.2);
}

header ul li ul li ul {
	top: 0;
	left: 200px;
}


header  .btnLogin-popup{
	width: 100px;
	height: 40px;
	position: relative;
	top: 10px;
	background: transparent;
	border: 2px solid #fff;

	border-radius: 6px;
	cursor: pointer;
	font-size: 1.1em;
	color: #fff;
	font-weight: 500;
	margin-left: 40px;
	transition: .5s;
	align-items:center; 
}

header  .btnLogin-popup:hover {
	background: #fff;
	color: #162938;
}

header  .btnLogin-popup.active {
	display: none;
}



header  .btnLogout-popup{
	width: 100px;
	height: 40px;
	position: relative;
	top: 10px;
	background: transparent;
	border: 2px solid #fff;

	border-radius: 6px;
	cursor: pointer;
	font-size: 1.1em;
	color: #fff;
	font-weight: 500;
	margin-left: 40px;
	transition: .5s;
	align-items:center;
}

/* responsive */

@media(max-width: 600px)
{
	header 
	{
		padding: 10px 20px;
	}
	header nav {
		position: absolute;
		width: 100%;
		top: 66px;
		left: 0;
		background: #445964;
		display: none;
		z-index:100;
	}

	header.active nav {
		display: initial;
		z-index:100;
	}

	header nav ul li {
		width: 100%;
		z-index:100;
	}
	header nav ul li ul {
		position: relative;
		width: 100%;
		left: 0;
		z-index:100;
	}
	header ul li ul li ul
	{
		top: 0;
		left: 0;
		z-index:100;
	}
	header ul li:hover ul li
	{
		background: #546e7b;
		z-index:100;
	}

	.menuToggle {
		position: relative;
		width: 40px;
		height: 50px;
		cursor: pointer;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.menuToggle::before {
		content: '';
		position: absolute;
		width: 100%;
		height: 3px;
		background: #fff;
		transform: translateY(-12px);
		box-shadow: 0 12px #fff;
	}
	.menuToggle::after {
		content: '';
		position: absolute;
		width: 100%;
		height: 3px;
		background: #fff;
		transform: translateY(12px);
	}
	header.active .menuToggle::before {
		transform: rotate(45deg);
		box-shadow: 0 0 #fff;
		
	}
	header.active .menuToggle::after {
		transform: rotate(315deg);
	}

}

#mask {
	position:absolute;
	left:0;
	top:0;
	z-index:100;
	background-color:#000;
	display:none;

}

#loadingImg {
	position:absolute;
	left:45%;
	top:50%;
	z-index:10;
}

.wrapper {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -200px; /* width의 50% */
	margin-top: -220px; /* height의 50% */

	width: 400px;
	height: 440px;
	background: transparent;
	border: 2px solid rgba(255,255,255,.5);
	border-radius: 20px;
	-webkit-backdrop-filter: blur(20px);
	backdrop-filter: blur(20px);
	box-shadow: 0 0 30px rgba(0, 0, 0, .5);
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	transform: scale(0);
	transition: transform .5s ease, height .2s ease;
	z-index:100;
}

.wrapper.active-popup {
	transform: scale(1);
}

.wrapper.activeReg {
	height: 520px;
}

.wrapper.activeReset {
	height: 340px;
}

.wrapper .form-box {
	width: 100%;
	padding: 40px;
}

.wrapper .form-box.login {
	/*
	display: none;
	*/
	transition: transform .18s ease;
	transform: translateX(0);
}

.wrapper.activeReg .form-box.login {
	transition: none;
	transform: translateX(-400px);
}

.wrapper.activeReset .form-box.login {
	transition: none;
	transform: translateX(400px);
}

.wrapper .form-box.register {
	position: absolute;
	transition: none;
	transform: translateX(400px);
}

.wrapper .form-box.resetPassword {
	position: absolute;
	transition: none;
	transform: translateX(600px);
}


.wrapper.activeReg .form-box.register {
	transition: transform .18s ease;
	transform: translateX(0);
}

.wrapper.activeReset .form-box.register {
	transition: none;
	transform: translateX(800px);
}

.wrapper .form-box.resetPassowrd {
	position: absolute;
	transition: none;
	transform: translateX(-400px);
}

.wrapper.activeReg .form-box.resetPassowrd {
	transition: transform .18s ease;
	transform: translateX(-800px);
}

.wrapper.activeReset .form-box.resetPassowrd {
	transition: transform .18s ease;
	transform: translateX(0);
}


.wrapper .icon-close {
	position: absolute;
	top: 0;
	right: 0;
	width: 45px;
	height: 45px;
	background: #162938;
	font-size: 2em;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	border-bottom-left-radius: 20px;
	cursor: pointer;
	z-index: 10;
}

.wrapper .GlobalErrMsg {
	position: absolute;
	top: 73px;
	width: 380px;
	height: 45px;
	font-size: 1em;
	color: #f6ed1c;
	display: flex;
	justify-content: center;
	align-items: center;
	border-bottom-left-radius: 20px;
	cursor: pointer;
	z-index: 1;
}


.form-box h2 {
	font-size: 2em;
	color: #162938;
	text-align: center;
}

.input-box {
	position: relative;
	width: 100%;
	height: 50px;
	border-bottom: 2px solid #162938;
	margin: 30px 0;
}

.input-box label {
	position: absolute;
	top: 50%;
	left: 5px;
	transform: translateY(-50%);
	font-size: 1em;
	color: #162938;
	font-weight: 500;
	pointer-events: none;
	transition: .5s;
}

.input-box input:focus~label,
.input-box input:valid~label {
	top: -5px;
}

.input-box input {
	width: 100%;
	height: 100%;
	background: transparent;
	border: none;
	outline: none;
	font-size: 1em;
	color: #162938;
	font-weight: 600;
	padding: 0 35px 0 5px;
}

.input-box .icon {
	position: absolute;
	right: 8px;	
	top: 15px;
	font-size: 1.2em;
	color: #162938;
	line-height: 57px;
}

.remember-forgot {
	font-size: .9em;
	color: #162938;
	font-weight: 500;
	margin: -15px 0 15px;
	display: flex;
	justify-content: space-between;
}

.remember-forgot label input {
	accent-color: #162938;
	margin-right: 3px;
	
}

.remember-forgot a {
	color: #162938;
	text-decoration: none;
}

.remreber-forgot a:hover {
	text-decoration: underline;
}

.btn {
	width: 100%;
	height: 45px;
	background: #162938;
	border: none;
	outline: none;
	border-radius: 6px;
	cursor: pointer;
	font-size: 1em;
	color: #fff;
	font-weight: 500;
}

.login-register {
	font-size: .9em;
	color: #162938;
	text-align: center;
	font-weight: 500;
	margin: 25px 0 10px;
}

.login-register p a {
	color: #162938;
	text-decoration: none;
	font-weight: 600;
}

.login-register p a:hover {
	text-decoration: underline;
}

/*selection {*/
/*	display: flex;*/
/*	justify-content: center;*/
/*	align-items: center;*/
/*	min-height: 100vh;*/
/*	padding: 20px;*/
/*	width: 100%;*/
/*	z-index: 10;*/
/*}*/

/*
selection::before {
	content: '';
	position: absolute;
	width: 400px;
	height: 400px;
	background: linear-gradient(#ffeb3b, #e91e63);
	border-radius: 50%;
	transform: translate(-420px, -180px);
}

selection::after {
	content: '';
	position: absolute;
	width: 350px;
	height: 350px;
	background: linear-gradient(#2196f3, #83d8ff);
	border-radius: 50%;
	transform: translate(400px, 180px);
}
*/

/*

<selection>
<div class="container">
<h2>추가</h2>
<span class="icon-close"><ion-icon name="close-outline"></ion-icon></span>
*/
/*
 close button
 */
selection .icon-close-x {
	position: absolute;
	top: 0;
	right: 0;
	width: 45px;
	height: 45px;
	background: #162938;
	font-size: 2em;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	border-bottom-left-radius: 20px;
	cursor: pointer;
	z-index: 10;
}

.selection.hidden {
	display: none;
}

/*
display: none;
*/


.container {
	position: relative;

	width: 100%;
	max-width: 1000px;
	padding: 50px;
	background: rgba(255,255,255,0.1);
	box-shadow: 0 25px 45px rgba(0,0,0,0.1);
	border: 1px solid rgba(255,255,255,0.25);
	border-right: 1px solid rgba(255,255,255,0.1);
	border-bottom: 1px solid rgba(255,255,255,0.1);
	overflow: hidden;
	backdrop-filter: blur(25px);

	z-index: 1;
}

.container::before {
	content: '';
	position: absolute;
	top: 0;
	left: -40%;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.05);
	pointer-events: none;
	transform: skewX(-15deg);
}

.container h2 {
	width: 100%;
	text-align: center;
	color: #234421;
	fint-size: 36px;
	margin-bottom: 0px;
	margin-top: -30px;
}

.container .row100 {
	position: relative;
	width: 100%;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.container .row100 .col {
	position: relative;
	width: 100%;
	padding: 0 10px;
	margin:30px 0 20px;
}

.container .row100 .col .inputBox {
	position: relative;
	width: 100%;
	height: 60px;
	color: #1414f1;
}


.container .row100 .col .inputBox input {
	position: absolute;
	top: 10px;
	width: 100%;
	height: 100%;
	background: transparent;
	box-shadow: none;
	border: none;
	outline: none;
	font-size: 15px;
	padding: 0 10px;
	z-index: 1;
}

.container .row100 .col .inputBox select {
	position: absolute;
	top: 10px;
	width: 100%;
	height: 100%;
	background: transparent;
	box-shadow: none;
	border: none;
	outline: none;
	font-size: 15px;
	padding: 0 10px;
	z-index: 1;
}



.container .row100 .col .inputBox textarea {
	position: absolute;
	top: 30px;
	width: 100%;
	height: 100%;
	background: transparent;
	resize: none;
	box-shadow: none;
	border: none;
	outline: none;
	font-size: 15px;
	padding: 0 10px;
	z-index: 1;
}

/*
.container .row100 .col .inputBox textarea {
	position: absolute;
	top: 30px;
	width: 100%;
	height: 100%;
	background: transparent;
	box-shadow: none;
	border: none;
	outline: none;
	font-size: 15px;
	padding: 0 10px;
	z-index: 1;
}

.container .row100 .col .inputBox textarea {
	position: relative;
	width: 100%;
	height: 100%;
	padding: 10px 0;

}
*/

.container .row100 .col .inputBox .line  {
	position: absolute;
	top: 60px;
	display: block;
	width: 100%;
	height: 2px;
	background: #fff;
	transition: 0.5s;
	border-radius: 2px;
	pointer-events: none;
}

.container .row100 .col .inputBox.textarea .line {
	position: absolute;
	top: 90px;
	display: block;
	width: 100%;
	height: 2px;
	background: #fff;
	transition: 0.5s;
	border-radius: 2px;
	pointer-events: none;
}

.container .row100 .col .col_button {
	position: relative;
	width: 100%;
	justify-content: center;
	align-items: center;
	text-align: center;
	display :inline-block;
}

.container .row100 .col .col_button input[type="button"] {
	border: none;
	padding: 10px 40px;
	cursor: pointer;
	outline: none;
	background: #fff;
	color: #000;
	font-weight: 600;
	font-size: 18px;
	border-radius: 2px;
}


 .col_button {
	position: relative;
	width: 100%;
	justify-content: center;
	align-items: center;
	text-align: center;
	display :inline-block;
}



/*.base {*/
/*	position: absolute;*/
/*	top: 50%;*/
/*	left: 50%;*/

/*	width: 400px;*/
/*	height: 440px;*/
/*	background: transparent;*/
/*	border: 2px solid rgba(255,255,255,.5);*/
/*	border-radius: 20px;*/
/*	backdrop-filter: blur(20px);*/
/*	box-shadow: 0 0 30px rgba(0, 0, 0, .5);*/
/*	display: flex;*/
/*	justify-content: center;*/
/*	align-items: center;*/
/*	overflow: auto;*/
/*	z-index:1;*/
/*}*/

/*.baseBox {*/
/*	position: relative;*/

/*	width: 100%;*/
/*	max-width: 1000px;*/
/*	padding: 50px;*/
/*	background: rgba(255,255,255,0.1);*/
/*	box-shadow: 0 25px 45px rgba(0,0,0,0.1);*/
/*	border: 1px solid rgba(255,255,255,0.25);*/
/*	border-right: 1px solid rgba(255,255,255,0.1);*/
/*	border-bottom: 1px solid rgba(255,255,255,0.1);*/
/*	overflow: hidden;*/
/*	backdrop-filter: blur(25px);*/

/*	z-index: 1;*/
/*}*/
