@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;
	box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

html {
    height: 100%;
}

body {
	height:100%;
	background: #f5f6f7;
	line-height: 1;
	font-size:16px;
	color:#777;
	word-break:keep-all;
	word-break:break-hangul;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
}

html,body{font-family:'Verdana','Apple SD Gothic Neo', Sans-serif; scroll-behavior: smooth; height: 100%; margin: 0; padding: 0;}

ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	/*border-collapse: separate;*/
	border-spacing: 0;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}
input, button, textarea, select {
  font: inherit;
}
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
  line-height:1.4;
}
#root, #__next {
  isolation: isolate;
}
a{text-decoration:none;color:#777;}
fieldset legend{display:none} 

/*float clear*/
.clearfix {
  overflow: auto;
}
.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

/* Styling input*/
form legend{display:none} 
fieldset { margin: 0; padding: 0; border: none; }

/*input*/
input[type=text],
input[type=password],
input[type=email],
input[type=number]{width:100%;height:48px;line-height:1.2em;font-size:17px;font-weight:300;border:1px solid #d9d9d9;box-sizing:border-box;}

input[type="radio"] {padding:3px 1px}

#content .box.disabl{background:#efefef;}

/*#skipNav*/
#skipNav{position:relative;z-index:9999;}
#skipNav a{position: absolute; top: -200px; left:0; width: 100%; line-height: 30px; border: 1px solid #dedede; background-color: #333;}
#skipNav a:focus, 
#skipNav a:active{top: 0;}


/* Styling checkboxes */
input[type="checkbox"] {
-webkit-appearance: none;
position: relative;
width: 17px;
height: 17px;
cursor: pointer;
outline: none !important;
border: 1px solid #d9d9d9;
border-radius: 2px;
background: #fbfbfb;
vertical-align: middle;
margin: -1px 3px 0 0;
}

input[type="checkbox"]::before {
content: "\2713";
position: absolute;
top: 50%;
left: 50%;
overflow: hidden;
transform: scale(0) translate(-50%, -50%);
line-height: 1;
}

input[type="checkbox"]:checked {
background-color: #ff8955;
border-color: rgba(255, 255, 255, 0.3);
color: white;
}

input[type="checkbox"]:checked::before {
border-radius: 2px;
transform: scale(1) translate(-50%, -50%);
}

button:active, button:focus, button:hover{opacity: .7;}