* {
	font-family: "Pretendard", sans-serif;
	box-sizing: border-box;
	background-repeat: no-repeat;
	background-position: center center;
}

html {
	width: 100%;
	height: 100%;
	overflow: hidden;
}

div {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

body {
	width: 100%;
	height: 100%;
	background: #fff;
}

button {
	outline: 0;
	border: 0;
	background-color: transparent;
	cursor: pointer;
	color: #111;
}

button:active {
	transform: translateY(0.5px);
}

select {
	appearance: none;
	background: #fff url('/img/arr-down1.png') no-repeat right 10px center;
	font-size: 15px;
	padding-right: 20px;
	border: 1px solid #CCCCCC;
	border-radius: 5px;
	color: #111111;
	height: 35px;
	outline: 0;
	width: 100%;
	font-weight: 400;
	padding-left: 10px;
}

select:focus {
	outline: none;
	border-color: #FFCE2D;
	box-shadow: 0 0 10px #FFCE2D;
}

input:focus {
	outline: none;
	border-color: #FFCE2D;
	box-shadow: 0 0 10px #FFCE2D;
}

input[type="checkbox"] {
	accent-color: #FFCE2D;
}

input[type="radio"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: 2px solid #ccc;
	border-radius: 50%;
	outline: none;
	cursor: pointer;
	accent-color: #FFCE2D;
	width: 20px;
	height: 20px;
	margin-right: 5px;
}

input[type='radio']:checked {
	background-color: #FFCE2D;
	border: 3px solid white;
	box-shadow: 0 0 0 1.6px #FFCE2D;
}

textarea {
	padding: 5px;
	border: 1px solid #CCCCCC;
}

textarea:focus {
	outline: none;
	border-color: #FFCE2D;
	box-shadow: 0 0 10px #FFCE2D;
}

/*
input[type="checkbox"] {
	display: none;
}

input[type="checkbox"] + label {
	display: inline-block;
	width: 30px;
	height: 30px;
	border: 3px solid #707070;
	position: relative;
}

input[id="check1"]:checked + label::after {
	content: '✔';
	font-size: 25px;
	width: 30px;
	height: 30px;
	text-align: center;
	position: absolute;
	left: 0;
	top: 0;
}
*/


#mainContainer {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}

#contentArea {
	height: calc(100% - 60px);
	width: 100%;
	justify-content: flex-start;
}

div#tabArea {
	display: flex;
	width: 100%;
	height: 60px;
	border-top: 1px solid #ccc;
	flex-direction: row;
	justify-content: space-around;
	background-color: #fff;
}

div#contentBody {
	width: 100%;
	padding: 10px;
	max-height: 100%;
	text-align: left;
	overflow-y: auto;
	justify-content: flex-start;
}

div#topTitleArea {
	display: flex;
	width: 100%;
	height: 50px;
	flex-direction: row;
	justify-content: space-between;
	padding-left: 15px;
	padding-right: 15px;
	background-color: #fff;
	align-items: center;
	box-shadow: 1px 3px 3px rgba(0,0,0,0.1);
}

div#topTitleText {
	display: flex;
	flex: 1;
	justify-content: flex-start;
	align-items: center;
	flex-direction: row;
	font-size: 20px;
	font-weight: bold;
	height: 50px;
}

div#topRightArea {
	display: flex;
	width: 50%;
	height: 34px;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
}

button#btnLoginPage {
	width: 70px;
	height: 32px;
	line-height: 32px;
	background-color: #eee;
	border-radius: 5px;
	font-weight: bold;
	color: #111;
	font-size: 14px;
	margin-left: 10px;
}

button#btnLogout {
	width: 70px;
	height: 32px;
	line-height: 32px;
	background-color: #eee;
	border-radius: 5px;
	font-weight: bold;
	color: #111;
	font-size: 14px;
	margin-left: 5px;
}

div#searchArea {
	display: flex;
	width: 100%;
	height: 60px;
	flex-direction: row;
	justify-content: space-between;
	background-color: #F5F6F9;
	padding: 10px 20px 10px 20px;
	box-shadow: 1px 3px 3px rgba(0,0,0,0.1);
}

div.searchItem {
	width: 80%;
	height: 100%;
	border-radius: 6px;
	flex-direction: row;
	background-color: #fff;
	justify-content: flex-start;
	padding-left: 20px;
}

label.search {
	font-size: 14px;
	color: #636B72;
	margin-right: 20px;
}

#tabArea button {
	width: 60px;
	height: 60px;
	background-repeat: no-repeat;
	background-position-x: center;
	background-position-y: 8px;
	padding-top: 30px;
	font-size: 12px;
	color: #7A8285;
}

button#btnBack {
	width: 24px;
	height: 24px;
	background-image: url('/img/ic-head-prev.png');
	margin-right: 10px;
}

div.scrollBottom {
	height: 20px;
	border-top: 1px solid #ccc;
}


button.mainButton {
	width: 100%;
	height: 100px;
	border-radius: 14px;
	background-color: #3E4147;
	font-size: 22px;
	color: #FFDC2D;
	margin-bottom: 15px;
	font-weight: bold;
}

button.subButton {
	width: 100%;
	height: 60px;
	border-radius: 8px;
	background-color: #3E4147;
	font-size: 18px;
	color: #FFDC2D;
	margin-bottom: 15px;
	font-weight: bold;
}
