* {
	margin: 0;
	padding: 0;
}

html {
	width: 600px;
	margin: 0 auto;
	font-family: 'Noto Sans KR', sans-serif;
	background-color: #FAFAFA;
	font-size: 16px;
}

body {
	background-color: #fff;
	height:100vh;
	overflow: auto;
}

header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 50px;
	font-size: 1.2rem;
	margin-bottom: 5px;
	padding:5px 20px;
	position: relative;
}


#goBack {
	width : 11px;
	cursor: pointer;
}
#goMain{
	width : 15px;
	cursor: pointer;
}

#back {
	z-index: 8;
	background: rgba(20, 20, 20, 0.5);
	width: 100%;
	height: 110vh;
	position: fixed;
	top: 0;
	left: 0;
	display: none;
}

.container {
    padding: 0px 30px;
    display: flex;
    flex-direction: column;
    height: calc(100vh - 180px);
    overflow: auto;
    overflow-x: hidden;
}

.container_NoBtn {
	padding: 0px 30px 0px;
    display: flex;
    flex-direction: column;
    height: calc(100vh - 90px);
    overflow: auto;
    overflow-x: hidden;
}

.title {
	font-weight: bold;
	font-size: 1.1em;
	margin: 20px 0 10px;
}

#btnDiv {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 27%;
    margin: 0 auto;
    margin-bottom:30px;
    cursor: pointer;
}

#btnDiv > div
 {
	background: linear-gradient(to right, #107EEE, #107EEE);
    border-radius: 10px;
    color: white;
    height: 60px;
    font-weight: bold;
    /* text-align: center; */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    letter-spacing : 1px;
}

.textInput {
    border: 1px solid #C6c6c6;
    border-radius: 5px;
    padding: 8px 20px;
    margin-bottom: 10px;
    background-color: white;
    height: 60px;
    display: flex;
    align-items: center;
    font-size: 18px;
    box-sizing: border-box;
}
.disable{
	display: flex;
	justify-content: space-between;
	align-items: center;
	border : 1px solid #C6c6c6;
	border-radius: 5px;
	padding: 8px 20px;
	margin-bottom:10px;
	height: 60px;
	background-color: #F2F2F2;
	box-sizing: border-box;
	font-size: 1.1em;
}
input:not([type=checkbox]) {
	font-size: 0.9em;
}

input:focus {
	outline: none;
}

input[type="checkbox"]:checked {
	background-color: #107EEE;
}

.fs-20 {
	font-size: 20px;
}

/* The container */
.smallCheckBoxContainer {
	display: flex;
	cursor: pointer;
	justify-content: center;
	align-items: center;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	margin-bottom: 0px;
	font-weight: 500;
}

/* Hide the browser's default checkbox */
.smallCheckBoxContainer input {
	display: none;
}

/* Create a custom checkbox */
.smallCheckBoxContainer .checkmark {
	display: inline-block;
	position: relative;
	border-radius: 3px;
	margin: 0 8px 0 3px;
	height: 22px;
	width: 22px;
	border: 1px solid #CCCCCC;
	background-color: #CCCCCC;
}

/* When the checkbox is checked, add a blue background */
.smallCheckBoxContainer input:checked ~ .checkmark {
	background-color: #107EEE;
	border: 1px solid #107EEE;
}

/* Create the checkmark/indicator (hidden when not checked) */
.smallCheckBoxContainer .checkmark:after {
	content: "";
	position: absolute;
}

/* Show the checkmark when checked */
.smallCheckBoxContainer input:checked ~ .checkmark:after {
	display: block;
}

/* Style the checkmark/indicator */
.smallCheckBoxContainer .checkmark:after {
	border: solid white;
	border-width: 0 2px 2px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	width: 8px;
	height: 10px;
	top:2px;
	left:6.3px;
}
.orange{
	color:#FE8A3B;
}
#alertOk{
    background-color: #107EEE;
}
/* ------------ 아이패드pro 버전 ------------- */
@media ( max-width : 1024px) {
	html {
		width: 100%;
		font-size: 14px;
		-webkit-text-size-adjust:none;
	}
	#btnDiv{
    	width: 90%;
    	margin-bottom: 16px;
	}
	#btnDiv > div {
		font-size: 18px;
	}
	
	.smallCheckBoxContainer .checkmark{
		height: 16px;
		width: 16px;
	}
	.smallCheckBoxContainer .checkmark:after{
		width: 6px;
		height: 8px;
		top:1px;
		left:4.3px;
	}
}

/* -- 모바일 버전 -- */
@media ( max-width : 767px ) {
	.container {
		padding: 10px 15px;
		height: calc(100vh - 150px);
	}
	
	.disable {
	    font-size: 17px;
	}
	
	input:not([type=checkbox]) {
	 	font-size: 17px;
	}
}

@media ( max-width : 576px ) {
	html {
		width: 100%;
		font-size: 12px;
	}
}