@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");



@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,600,400italic,600italic");

@font-face {font-family: 'Noto Sans KR';font-style: normal;font-weight: 400;src: url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Regular.woff2) format('woff2'),url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Regular.woff) format('woff'),url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Regular.otf) format('opentype');}



@font-face {
  font-family: 'NanumGothic';
  font-style: normal;
  font-weight: 400;
  src: url(//themes.googleusercontent.com/static/fonts/earlyaccess/nanumgothic/v3/NanumGothic-Regular.eot);
  src: url(//themes.googleusercontent.com/static/fonts/earlyaccess/nanumgothic/v3/NanumGothic-Regular.eot?#iefix) format('embedded-opentype'),
       url(//themes.googleusercontent.com/static/fonts/earlyaccess/nanumgothic/v3/NanumGothic-Regular.woff2) format('x-woff2'),
       url(//themes.googleusercontent.com/static/fonts/earlyaccess/nanumgothic/v3/NanumGothic-Regular.woff) format('woff'),
       url(//themes.googleusercontent.com/static/fonts/earlyaccess/nanumgothic/v3/NanumGothic-Regular.ttf) format('truetype');
}

* {
  font-family: "Open Sans",  'NanumGothic', sans-serif;
} 
body { 
    font-family:"Open Sans", "NanumGothic", sans-serif;
}

 * .kdcloader {
 	border: 16px solid #f3f3f3;
 	border-radius: 50%;
 	border-top: 16px solid #3498db;
 	width: 60px;
 	height: 60px;
 	-webkit-animation: spin 2s linear infinite;
 	/* Safari */
 	animation: spin 2s linear infinite;
 	position: fixed;
 	top: 30%;
 	left: 50%;
 	transform: translate(-50%, -50%);
 	transform: -webkit-translate(-50%, -50%);
 	transform: -moz-translate(-50%, -50%);
 	transform: -ms-translate(-50%, -50%);
 	color: darkred;
 }
 
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


 .white-popup {
  position: relative;
 
  padding: 30px;
  width:auto;
  max-width: 800px;
  margin: 20px auto;
  background-color:white;
 /* background-image: linear-gradient(90deg, #33b7e2, #5e62b0, #dc307c);*/
}
 
 
 
/**google crome autofill css **/
input:-webkit-autofill,input:-webkit-autofill:hover,input:-webkit-autofill:focus,
input:-webkit-autofill:active {transition: background-color 5000s; -webkit-text-fill-color: dark !important;}

 
 

/* desktop mode............/// */

.x-navbar input[type="checkbox"],
.x-navbar .hamburger-lines {
  display: none;
}

.x-navbar {
  box-shadow: 0px 1px 3px 0px #aaa;
  position: fixed;
  width: 100%;
  background: #fff;
  color: #000;
  opacity: 1;
  height: 50px;
  z-index: 12;
}

.x-navbar-container {
  display: flex;
  justify-content: space-between;
  height: 64px;
  align-items: center;
}

.x-menu-items {
  margin-top:7px;
  order: 2;
  display: flex;
}

.x-menu-items li {
  list-style: none;
  margin-left: 1rem;
  margin-bottom: 0.5rem;
  font-size: 1em;
}

.x-menu-items a {
  text-decoration: none;
  color: #444;
  font-weight: 500;
  transition: color 0.3s ease-in-out;
}

.x-menu-items a:hover {
  color: rgb(0, 128, 255);
  transition: color 0.3s ease-in-out;
}

.logo {
  order: 1;
  font-size: 2.1rem;
  margin-bottom: 0.7rem;
  cursor: pointer;
}


/* menu  */

.x-dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  z-index: 1;
  padding: 2px;
}

.x-dropdown-content a {
  float: none;
  color: black;
  padding: 7px 12px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.x-dropdown:hover .x-dropdown-content {
  display: block;
}




/* ......../ media query /.......... */

@media (max-width: 768px) {
  .x-navbar {
    opacity: 1;
    height: 60px;
  }

  .x-navbar-container input[type="checkbox"],
  .x-navbar-container .hamburger-lines {
    display: block;
  }

  .x-navbar-container {
    display: block;
    position: relative;
    height: 60px;
  }

  .x-navbar-container input[type="checkbox"] {
    position: absolute;
    display: block;
    height: 32px;
    width: 30px;
    top: 20px;
    left: 20px;
    z-index: 1005;
    opacity: 0;
  }

  .x-navbar-container .hamburger-lines {
    display: block;
    height: 23px;
    width: 35px;
    position: absolute;
    top: 17px;
    left: 20px;
    z-index: 1002;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .x-navbar-container .hamburger-lines .line {
    display: block;
    height: 4px;
    width: 100%;
    border-radius: 10px;
    background: #333;
  }

  .x-navbar-container .hamburger-lines .line1 {
    transform-origin: 0% 0%;
    transition: transform 0.4s ease-in-out;
  }

  .x-navbar-container .hamburger-lines .line2 {
    transition: transform 0.2s ease-in-out;
  }

  .x-navbar-container .hamburger-lines .line3 {
    transform-origin: 0% 100%;
    transition: transform 0.4s ease-in-out;
  }

  .x-navbar .x-menu-items {
    padding-top: 100px;
    background: #fff;
    height: 100vh;
    width: 115%;
    transform: translate(-150%);
    display: flex;
    flex-direction: column;
    margin-left: -43px;
    padding-right: 10px;
    transition: transform 0.5s ease-in-out;
    box-shadow: 0px 0px 4px 0px #aaa;
    z-index: 1000;
    position: relative;
    overflow: auto;
    margin-top:0px;
  }


  .x-navbar .x-menu-items li {
    margin-bottom: 1.0rem;
    font-size: 1em;
    font-weight: 500;
  }

  .logo {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2rem;
   
  }

  .x-navbar-container input[type="checkbox"]:checked ~ .x-menu-items {
    transform: translateX(0);
  }

  .x-navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
    transform: rotate(35deg);
  }

  .x-navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
    transform: scaleY(0);
  }

  .x-navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
    transform: rotate(-35deg);
  }
  
  
	
	
	
	.x-dropdown-content {
	  display: none;
	  padding-left: 2px;
	  position: inherit;
	 
	}
	
	.x-dropdown:hover .x-dropdown-content {
	  display: none;
	}
	
	.x_search_display {
	  display:none;
	}
  
	
}
	


/* ============ desktop view ============ */
@media all and (min-width: 992px) {

	.x_search_display_btn {
		  display:none;
	 }	
	
}	
/* ============ desktop view .end// ============ */


.ko_header nav{
  font-size: 1rem;
}




.ko_main {
  font-size: 1rem;
}

a{
	text-decoration: none;
	cursor:pointer;
	color: #161617;
}



.nav-tabs > li > a , .nav-tabs > li > button{
   color: gray;
}
.nav-tabs > li > .nav-link.active {
   color: black;
   font-weight:bold;
    border-color: #f51a9b #dee2e6 #fff;
}


.form-control:required , .form-select:required{
    border-color: #d6338469;
}

.x_link{
 cursor: pointer;
}

.x_link_under{
 cursor: pointer;
 text-decoration: #4a90e2 underline;
 color: #4a90e2;
}



.x_small_font {
  font-size: 0.8em;
}
.x_mid_font {
  font-size: 0.9em;
}

.x_mid2_font {
  font-size: 0.95em;
}

/*scroll */
.ko_main div::-webkit-scrollbar {
  width: 3px;
  height: 8px;
  background-color: #aaa; /* 또는 트랙에 추가한다 */
}

.ko_main div::-webkit-scrollbar-thumb {
  background: #525252;
}

.ko_main .dataTables_wrapper i{
  cursor: pointer;
}


body::-webkit-scrollbar {
    width: 0.6em;
}


 
body::-webkit-scrollbar-track {
    -webkit-box-shadow: #dcdcdc;
}
 
body::-webkit-scrollbar-thumb {
  background-color: #dcdcdc;
}


/*** table */

.x_table_body>table {
  border: 1px solid #ccc;
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  /*table-layout: fixed;*/
}

.x_table_body>table caption {
  font-size: 1em;
  margin: .5em 0 .75em;
}

.x_table_body>table tr {
  background-color: #f8f8f8;
  border: 1px solid #ddd;
 /* padding: .25em;*/
}

.x_table_body>table th,
.x_table_body>table td {
  font-size: 0.82em;
}

.x_table_body>table th {
  font-size: .85em;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.x_table_body .xalign-center{
	text-align: center;
}
.x_table_body .xalign-end{
	text-align: end;
}

.x_table_body a {
 cursor: pointer;
 text-decoration: #4a90e2 underline;
 color: #4a90e2;
}


@media screen and (max-width: 600px) {
  .x_table_body>table {
    border: 0;
  }

  .x_table_body>table caption {
    font-size: 1.3em;
  }
  
  .x_table_body>table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  
  .x_table_body>table tr {
    border-bottom: 3px solid #ddd;
    display: block;
    margin-bottom: .625em;
  }
  
  .x_table_body>table td {
    border-bottom: 1px solid #ddd;
    display: block;
    font-size: .8em;
    text-align: right;
  }
  
  .x_table_body>table td::before {
    /*
    * aria-label has no advantage, it won't be read inside a .x_table_body>table
    content: attr(aria-label);
    */
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
  }
  
  .x_table_body>table td:last-child {
    border-bottom: 0;
  }
  
  .x_table_body .xalign-center{
	 text-align: end;
   }
   
  .x_table_body .xalign-end{
	 text-align: end;
   }

}



/**add x_display_div_collapse */
.x_display_div_collapse  { 
  text-align: center;
  cursor: pointer;
}
.x_display_div_collapse:before {
  height: 1em;
  width: 1em;
  margin-top: 0px;
  display: inline-block;
  color: white;
  border: 0.15em solid white;
  border-radius: 1em;
  box-shadow: 0 0 0.2em #444;
  box-sizing: content-box;
  text-align: center;
  text-indent: 0 !important;
  font-family: "Courier New", Courier, monospace;
  line-height: 1em;
  content: "+";
  background-color: #6c757d;
}

div.x_display_div_collapse[aria-expanded="true"]:before{
  content: "-";
  background-color: #6c757d;
}




.x-bage-100, .x-bage-10,  .x-bage-S{
    color: #fff !important;
    background-color: #ffc107;
}
.x-bage-200, .x-bage-20,  .x-bage-A  {
    color: #fff !important;
    background-color: #0dcaf0;
}
.x-bage-300,  .x-bage-B {
    color: #fff !important;
    background-color: #dc3545;
}
.x-bage-400, .x-bage-30{
    color: #fff !important;
    background-color: #212529;
}
.x-bage-500,  .x-bage-C    {
    color: #fff !important;
    background-color: #6c757d;
}