body {
	margin: 0;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Firefox */

input[type='number'] {
	-moz-appearance: textfield;
}

.input_txt_kr {
	-webkit-ime-mode: active;
	-moz-ime-mode: active;
	-ms-ime-mode: active;
	ime-mode: active;
}

ul {
	list-style-type: none;
	padding-inline-start: 0;
}

ul li,
ol li {
	/*
      padding: 5px 0px 5px 5px;
      margin-bottom: 5px;
      border-bottom: 1px solid #efefef;
  */
	font-size: 11px;
	font-weight: bold;
}

button {
	background-color: #008cba;
	color: white;
	border: 2px solid #008cba;
}

button:hover {
	background-color: white;
	color: black;
}

.imgBtn {
	cursor: pointer;
	width: 100%;
	/* max-width: 380px; */
}

.subTitle {
	padding-bottom: 1rem;
	padding-top: 1rem;
	border-top: 0.01rem solid #999;
	border-bottom: 0.01rem solid #999;
}

.syntaxHighlight {
	background-color: black;
	margin: 10px;
	width: 380px;
	max-height: 300px;
	overflow: auto;
	color: white;
}

.bright {
	background-color: #eee;
	color: #222;
	width: 100%;
	max-height: none;
	overflow-x: auto;
	overflow-y: visible;
}

.popupSize {
	width: 280px;
	max-height: 300px;
}

.debug_win {
	background-color: white;
	width: 300px;
	position: absolute;
	margin: 10px;
	outline: 1px solid black;
	z-index: 1;
}

.closeBtn {
	text-align: right;
	padding: 10px;
	background-color: black;
	color: white;
}

.string {
	color: green;
}

.number {
	color: darkorange;
}

.boolean {
	color: steelblue;
}

.null {
	color: magenta;
}

.key {
	color: red;
}

.fullscreen {
	position: absolute;
	width: 100%;
	height: 100%;
	border: none;
}

.customerUI {
	overflow-x: visible;
	overflow-y: auto;
}

.switch {
	position: relative;
	display: inline-block;
	width: 60px;
	height: 34px;
}

.switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.slider:before {
	position: absolute;
	content: '';
	height: 26px;
	width: 26px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

input:checked + .slider {
	background-color: #2196f3;
}

input:focus + .slider {
	box-shadow: 0 0 1px #2196f3;
}

input:checked + .slider:before {
	-webkit-transform: translateX(26px);
	-ms-transform: translateX(26px);
	transform: translateX(26px);
}

/* Rounded sliders */

.slider.round {
	border-radius: 34px;
}

.slider.round:before {
	border-radius: 50%;
}

.custom--header {
	background: url('../img/header.svg');
	/* background: no-repeat url("../../media/examples/lizard.png"); */
	/* width: 100%; */
	font-family: Nunito;
	font-style: normal;
	font-weight: 300;
	font-size: 2rem;
	line-height: 48px;
	padding: 24px 0px;
	background-color: #373eff;
	/* identical to box height, or 150% */
	text-align: center;
	/* White */
	color: #ffffff;
}

.custom--section {
	width: 90%;
	margin: 0 auto;
	max-width: 380px;
}

.custom--headline {
	font-family: Nunito;
	font-style: normal;
	font-weight: bold;
	font-size: 1.25rem;
	line-height: 1.5rem;
	text-align: center;
	color: #5f65ff;
	margin-top: 45px;
	margin-bottom: 45px;
}

.custom--select-box {
	border: 1px solid #ced1d2;
	box-sizing: border-box;
	border-radius: 8px;
	height: 72px;
	display: flex;
	align-items: center;
	padding: 14px 20px;
}

.custom--select-input {
	margin-right: 1rem;
}

.custom--select-check {
	width: 16px;
	height: 16px;
	/* background: #f7f7f7; */
	border: 1.2px solid #ced1d2;
	box-sizing: border-box;
	border-radius: 2px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.custom--select-check.checked {
	background-color: #373eff;
	border: none;
}

.custom--radio-box {
	border: 1px solid #ced1d2;
	box-sizing: border-box;
	border-radius: 8px;
	height: 72px;
	display: flex;
	align-items: center;
	padding: 14px 20px;
}

.custom--radio-check {
	width: 16px;
	height: 16px;
	/* background: #f7f7f7; */
	border: 1.2px solid #ced1d2;
	box-sizing: border-box;
	border-radius: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.custom--radio-check.checked {
	background-color: #373eff;
	border: none;
}

.custom--title {
	font-family: Noto Sans KR;
	font-style: normal;
	font-weight: 500;
	font-size: 1rem;
	line-height: 1.5rem;
	color: #363636;
}

.custom--label {
	font-family: Noto Sans KR;
	font-style: normal;
	font-weight: normal;
	font-size: 0.75rem;
	line-height: 0.75rem;
	color: #868686;
}

.custom--division {
	width: 100%;
	height: 1px;
	background-color: #ced1d2;
	margin: 50px 0px;
}

.custom--input {
	width: 100%;
	height: 64px;
	font-size: 1.25rem;
	font-size: 1rem;
	padding: 16px 24px;
	border: 1px solid #cccccc;
	box-sizing: border-box;
	border-radius: 8px;
}

.custom--btn {
	width: 100%;
	height: 64px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: 15px 16px;
	background: #373eff;
	border-radius: 8px;
	/* text */
	/* KR/Button 3 - 16 */
	font-family: Noto Sans KR;
	font-style: normal;
	font-weight: 500;
	font-size: 1rem;
	line-height: 23px;
	color: #ffffff;
}

.imgBtn {
	margin-bottom: 1rem;
}

li:last-child .imgBtn {
	margin-bottom: 0px;
}

.flex {
	display: flex;
}

.flex-col {
	flex-direction: column;
}

.text-start {
	text-align: start;
}

.gap20 {
	gap: 20px;
}

.align-center {
	align-items: center;
}

.justify-center {
	justify-content: center;
}

@media (max-width: 414px) {
	.custom--title {
		font-size: 0.875rem;
		/* line-height: 1.5rem; */
	}
}

.inner-html {
	border: 1px solid #e4e6e7;
	font-size: 14px;
	margin-bottom: 32px;
	max-height: 150px;
	overflow: auto;
	padding: 16px;
	width: 100%;
}

.term-title {
	align-items: center;
	display: flex;
	font-size: 16px;
	font-weight: 500;
	justify-content: normal;
	margin-bottom: 8px;
	margin-top: 20px;
}
