@charset "utf-8";

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
	font-family: 'Pretendard' !important;
	font-weight: 400;
	cursor: default;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
button {
    border: none;
    background: none;
	padding: 0;
	cursor: pointer; 
}
input { outline: none; }
input::placeholder { color: #aaa; }
input[type="submit"] { cursor: pointer; }

/* ------------------------------------- */

a {
	text-decoration: none;
	color: inherit;
}
a:visited {
	/* color: #6bacce; */
}
.hidden {
	display: none;
}

/* µå·¡±× »ö»ó */
::selection {  color: #196fec;  background-color: #ddd;}

/* ½ºÅ©·Ñ¹Ù */
.scrollbar { 
  width: 7px;
  height: 100%;
  overflow-y: scroll;
}

/* ½ºÅ©·Ñ¹ÙÀÇ Æø ³Êºñ */
.scrollbar::-webkit-scrollbar {
    width: 7px;  
}

.scrollbar::-webkit-scrollbar-thumb {
    background: rgba(25, 111, 236); /* ½ºÅ©·Ñ¹Ù »ö»ó */
    border-radius: 20px; /* ½ºÅ©·Ñ¹Ù µÕ±Ù Å×µÎ¸® */
}

.scrollbar::-webkit-scrollbar-track {
    background: rgba(204, 204, 204);  /*½ºÅ©·Ñ¹Ù µÞ ¹è°æ »ö»ó*/
	border-radius: 20px;
	height: 95%; 
}

/* Ã¼Å©¹Ú½º */
.checkbox input {
	display: none;
}
.checkbox_icon {
	display: inline-block;
	width: 14px;
	height: 14px;
	background-color: transparent;
	border: 1px solid #ddd;
	position: relative;
	cursor: pointer;
	align-items: center;
}
.checkbox_icon::before, .checkbox_icon::after {
	content: ''; 
	display: inline-block;
	width: 2px;
	height: 0;
	background-color: #196fec;
	position: absolute;
	transform-origin: left top;
}
.checkbox_icon::before {
	top: 6px;
	left: -1px;
	transform: rotate(-45deg);
}
.checkbox_icon::after {
	top: 12px;
	left: 7px;
	transform: rotate(-135deg);
}
.checkbox input:checked + .checkbox_icon {
	border-color: #333;
}
.checkbox input:checked + .checkbox_icon::before {
	height: 10px;
	transition: all 0.15s ease; 
}
.checkbox input:checked + .checkbox_icon::after {
	height: 20px; 
	transition: all 0.15s ease 0.15s;
}