@charset "utf-8";

button,
.btn {
	position: relative;
	margin: 5px;
	padding: 10px 15px;
	text-align: center;
	color: #fff;
	background-color: #3566d6;
	font-family: "Noto Sans KR", "맑은 고딕", "Malgun Gothic", sans-serif;
	font-size: 14px;
	cursor: pointer;
	letter-spacing: -1px;
	border: none;
	border-radius: 3px;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
}

button:hover, 
.btn:hover {
	background-color: #0640a5;
	background-size: 200%;
}

button:active, 
.btn:active {
	background-color: #3566d6;
}

button:first-child,
.btn:first-child {
	margin-left: 0;
}

.wrap {
	width: 100%;
	padding: 20px;
}

.box-group {
	display: flex;
	flex-flow: row wrap;
	margin-bottom: 10px;
	padding: 10px;
	width: 100%;
	border-radius: 12px;
	border: 1px solid #f0f2f6;
	box-shadow: 5px 5px 15px rgba(177, 180, 201, 0.1);
}

.box-tit {
	display: inline-block;
	margin-bottom: 20px;
	width: 100%;
	color: #3e50c5;
	font-size: 150%;
	font-weight: 700;
}

.box-line {
	flex: 1;
	margin-right: 10px;
}

.box-line > *:nth-child(1) {
	flex: 1;
}

.box-line > *:nth-child(2) {
	flex: 2;
}

.box-group > .box-line:last-child {
	margin-right: 0;
}

.box-inner {
	display: flex;
	flex-flow: column;
	padding: 10px;
	width: 50%;
	border-radius: 12px;
	border: 1px solid #f0f2f6;
	box-shadow: 5px 5px 15px rgba(177, 180, 201, 0.1);
}

.box {
	display: flex;
	flex-flow: column wrap;
	width: 100%;
}

.box > p {
	word-break: break-all;
}

.qr-area {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	border: 1px solid #f0f2f6;
}

.qr-area > * {
	margin: auto;
}

#vpArea {
	display: none;
	width: 100%;
}

@media screen and (max-width: 820px) {
	.wrap {
		padding: 10px;
	}

	.box-group {
		justify-content: center;
	}
	
	.box-inner {
		width: 100%;
	}
	
	.box-tit {
		font-size: 120%;
	}
	
	.box-line {
		flex: auto;
		margin: 0;
		width: 100%;
	}
}
