@charset "utf-8";
/* CSS Document */
@font-face {
  font-family: 'Roboto-Bold';
  src: url("../fonts/Roboto-Bold.ttf") format('truetype');
}
@font-face {
  font-family: 'Roboto-Regular';
  src: url("../fonts/Roboto-Regular.ttf") format('truetype');
}
.robold {
	font-family: 'Roboto-Bold';
}
.roreg{
	font-family: 'Roboto-Regular';
}
body{
	font-family: 'Roboto-Regular';
	font-size: 14px;
	overflow-y:hidden;
	overflow-x:hidden;
}
#body-wrap{
	position: absolute;
	top: 0px;
	left: 0px;
	width: CALC(100% - 2px);
	height: CALC(100vh - 10px);
	border: 1px solid black;
	overflow-x:hidden;
	overflow-y:hidden;
}
#nav-wrap{
	position: inherit;
	top: 0px;
	border: 1px solid black;
	width: 100%;
	height: 100px;
}
#extra-nav{
	position: inherit;
	top: 100px;
	border: 1px solid black;
	width: 100%;
	height: 30px;
	line-height: 30px;
	padding-left: 5px;
}
#search-div{
	position: inherit;
	top: 130px;
	border: 1px solid black;
	width: 100%;
	height: 100px;
	display: none;
}
#main-dis{
	position: inherit;
	top: 132px;
	border: 1px solid black;
	width: 100%;
	height: CALC(100vh - 144px);
	overflow-x:scroll;
	overflow-y:scroll;
}

.robot-div{
	margin: 10px;
	margin-left:none;
	width: 200px;
	border: 1px solid black;
	border-radius: 5px;
	padding: 2px;
	background-color: #F2E8FF;
}
.robot-div span{
	cursor: pointer;
}
#FormLog input:not([type=checkbox]):not([type=radio]) {
	border: 1px solid #8ED8F3;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	padding: 4px;
}
#FormLog input:not([type=checkbox]):not([type=radio]):focus {
    outline: none !important;
    border:1px solid #8ED8F3;
    box-shadow: 0 0 10px #719ECE;
	background: #D8EBF1;
}
#errMes{
	border: 1px solid #F80000;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	padding: 4px;
	background-color: #F7D0D1;
	display:none;
}

#backFade1{
	position:absolute;
	top:0px;
	left:0px;
	z-index:102;
	width: 100%;
	height: calc(100vh - 15px);
	background: transparent;
    background-color: #ccc;
	/* Fallback for web browsers that doesn't support RGBa */
	/* background: rgb(0, 0, 0); */
	/* RGBa with 0.6 opacity */
	background: rgba(0, 0, 0, 0.2);
	display: none;
}
#popwrap1{
	position: relative;
	margin: auto;
    top: 25%;
	width: 50%;
	height: auto;
	max-height: 90vh;
	vertical-align: top;
	border:1px solid #000;
	border-radius: 5px;
	background-color: white;
}
#pop-head1{
	position: relative;
	width: calc(100% - 22px);
	height: 20px;
	line-height: 20px;
	border: 1px solid  #CCCCCC;
	border-radius: 5px;
	margin: 5px;
	padding: 5px;
	font-weight: bolder;
	background-color: #e9e9e9;
	box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.2);
}
#pop-content1{
	position: relative;
	border: 1px solid  #CCCCCC;
	border-radius: 5px;
	width: calc(100%-40px);
	height: auto;
	max-height: 100vh;
	margin: 5px;
	padding: 5px;
	overflow-y:scroll !important;
}
#pop-content1::-webkit-scrollbar-thumb {
  background-color: #CCCCCC;
  border: 4px solid transparent;
  border-radius: 8px;
  background-clip: padding-box;  
}

#pop-content1::-webkit-scrollbar {
  width: 19px;
}

#pop-close1{
	position: absolute;
	top: -10px;
	right: -10px;
	width: 20px;
	height: 20px;
	line-height: 20px;
	background-color: #e9e9e9;
	text-align: center;
	border-radius: 50%;
	border: 1px solid  black;
	cursor: pointer;
	font-size: 12px;
}
#pop-close1:hover{
	color: white;
	background-color: red;
	font-weight: bolder;
	border: 1px solid  white;
}
