<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
/*----------------------*/
/*----Page Preloader----*/ 
/*----------------------*/


#preloader {
	position:fixed;
	z-index:2500;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background-color:#FFF; 
	z-index:99999999; 
}

#status {
	position:fixed;
	z-index:99999999;
	width:250px;
	height:280px;
	position:absolute;
	left:50%; 
	top:50%; 
    padding-bottom:40px;
	background-image:url(/templates/basic/img/page-loader.gif); 
	background-size:64px 64px;
	background-repeat:no-repeat;
	background-position:center bottom;
	margin:-125px 0 0 -125px; 
}

.preloader-logo{
    background-image:url(/templates/basic/img/preload-logo.png);
    background-size:75px 75px;
    height:75px;
    width:75px;
    display:block;
    margin-left:auto;
    margin-right:auto;
    margin-bottom:40px;
}

#preloader h3{
    margin-bottom:5px;
}


#status em{
	font-size:10px!important;
	display:block;
	font-style:normal;
}

.center-text { 
    text-align:center; 
	display:block;
}

.smaller-text {
    font-size:13px;
}

.wait_moment {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 20px;
	

}	


/* -------------------------------- 

Primary style

-------------------------------- */
html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html, body {
  /* you need to set this to assign to the main element a min height of 100% */
  height: 100%;
      width: 100%;
}

body {
  font-size: 100%;
  font-family: "Titillium Web", sans-serif;
  color: #4e6361;
  background-color: #f5f4e9;
}

a {
  color: #6cac70;
  text-decoration: none;
}

/* -------------------------------- 

Modules - reusable parts of our design

-------------------------------- */
.cd-img-replace {
  /* replace text with a background-image */
  display: inline-block;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}

.overflow-hidden {
  overflow: hidden;
}

/* -------------------------------- 

Main components 

-------------------------------- */
.cd-main-content {
  /* set a min-height and a z-index to be sure that the main element completely covers the lateral menu */
  min-height: 100%;
  position: relative;
  background-color: #efefef;
  z-index: 2;
  /*padding-top: 50px;*/
      padding: 55px 5px 5px 5px;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
.cd-main-content.lateral-menu-is-open {
  /* translate to show the lateral menu - all content needs to be put in the .cd-main-content to translate*/
 /* -webkit-transform: translateX(300px);
  -moz-transform: translateX(300px);
  -ms-transform: translateX(300px);
  -o-transform: translateX(300px);
  transform: translateX(300px);*/
   -webkit-transform: translateX(0px);
  -moz-transform: translateX(0px);
  -ms-transform: translateX(0px);
  -o-transform: translateX(0px);
  transform: translateX(0px);

}
@media only screen and (min-width: 768px) {
  .cd-main-content {
    /*padding-top: 70px;*/
	   padding: 75px 5px 5px 5px;
  }
}

header {
  position: absolute;
  top: 0;
  left: 0;
  height: 50px;
  width: 100%;
  background: #5f5f5f;
  z-index: 3;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
header.lateral-menu-is-open {
  /* translate to show the lateral menu */
/*  -webkit-transform: translateX(300px);
  -moz-transform: translateX(300px);
  -ms-transform: translateX(300px);
  -o-transform: translateX(300px);
  transform: translateX(300px);*/
  -webkit-transform: translateX(0px);
  -moz-transform: translateX(0px);
  -ms-transform: translateX(0px);
  -o-transform: translateX(0px);
  transform: translateX(0px);
  
}
header.is-fixed {
  position: fixed;
}
@media only screen and (min-width: 768px) {
  header {
    height: 70px;
  }
}

#cd-logo {
  display: block;
  float: left;
  margin: 12px 0 0 20px;
}
#cd-logo img {
  display: block;
}
@media only screen and (min-width: 768px) {
  #cd-logo {
    margin: 22px 0 0 30px;
  }
}

#cd-top-nav {
  position: absolute;
  top: 0;
  right: 120px;
  height: 100%;
  display: none;
}
#cd-top-nav ul {
  height: 100%;
  padding-top: 18px;
}
#cd-top-nav li {
  display: inline-block;
  margin-right: 1em;
}
#cd-top-nav a {
  display: inline-block;
  padding: .5em;
  color: #FFF;
  text-transform: uppercase;
  font-weight: 600;
}
#cd-top-nav a.current {
  background-color: #242e30;
}
.no-touch #cd-top-nav a:hover {
  color: rgba(255, 255, 255, 0.7);
}
@media only screen and (min-width: 768px) {
  #cd-top-nav {
    display: block;
  }
}

#cd-menu-trigger {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 50px;
  background-color: #5f5f5f;
}
#cd-menu-x{
     width: 50px; 
position: absolute;
    left: 0;
    top: 0;
    height: 100%;
}
#cd-menu-trigger .cd-menu-text {
  height: 100%;
  text-transform: uppercase;
  color: #FFF;
  font-weight: 600;
  display: none;
}
#cd-menu-trigger .cd-menu-icon {
  /* this span is the central line in the menu menu */
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 16px;
  height: 2px;
  background-color: #fff;
  /* these are the upper and lower lines in the menu menu */
}
.cd-menu-iconx {
  /* this span is the central line in the menu menu */
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 16px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0);
  /* these are the upper and lower lines in the menu menu */
}
#cd-menu-trigger .cd-menu-icon::before, #cd-menu-trigger .cd-menu-icon:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #fff;
  left: 0;
}
.cd-menu-iconx::before, .cd-menu-iconx:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: #fff;
    left: 0;
}
#cd-menu-trigger .cd-menu-icon::before {
  bottom: 5px;
}
#cd-menu-trigger .cd-menu-icon::after {
  top: 5px;
}
#cd-menu-trigger.is-clicked .cd-menu-icon {
  background-color: rgba(255, 255, 255, 0);
}
#cd-menu-trigger.is-clicked .cd-menu-icon::before, #cd-menu-trigger.is-clicked .cd-menu-icon::after {
  background-color: #fff;
}
#cd-menu-trigger.is-clicked .cd-menu-icon::before {
  bottom: 0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cd-menu-iconx::before {
    bottom: 0;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
#cd-menu-trigger.is-clicked .cd-menu-icon::after {
  top: 0;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cd-menu-iconx::after {
  top: 0;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
 
}
#header_title{
font-size: 18px;
    color: #fff;
    position: absolute;
    top: 15px;
    left: 60px;
}

/*ê²€ìƒ‰ í•„ë“œ*/
.search_field{
padding: 20px 10px;
color: #000;
}
.search_field_icon{
	right: 15px;
    position: absolute;
}
.search_field_layer{
	display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    background:  rgba(0, 0, 0, 0.5);;
    z-index: 9999;
}
.price_field_layer{
	display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    background:  rgba(0, 0, 0, 0.5);;
    z-index: 9999;
}
.search_field_layer_sub{
	padding:20px;
	min-height: 200px;
    width: 80%;
    margin: auto;
    color: #000;
    position: relative;
    top: 25%;
    background: #fff;
    border: 1px solid #eee;
}
.search_input{
width: 100%; margin: 20px 0px;
}
.search_input_text{
    width: 92%;
    padding: 10px;
    border: 1px solid #eee;
    margin: 10px 10px 0px 10px;
}
.search_save{
position: absolute; bottom: 20px; right: 20px;
}
.search_save_left{
padding: 0px 15px 0px 10px;
}
.search_save_right{
padding: 0px 10px 0px 15px;
}

@media only screen and (min-width: 768px) {
 .search_field{
height:50px; 
    margin-top: 20px;
 }
  #cd-menu-trigger {
    width: 70px;
    padding-left: 1.25em;
  }
  #cd-menu-x{
         width: 70px;
    padding-left: 1.25em;
}
  #header_title{
    top: 25px;
    left: 80px;
  }
  #cd-menu-trigger .cd-menu-text {
    display: inline-block;
    line-height: 70px;
  }
  #cd-menu-trigger .cd-menu-icon {
    left: auto;
    right: 1.25em;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
   .cd-menu-iconx {
    left: auto;
    right: 1.25em;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}

#cd-lateral-nav {
  position: fixed;
  height: 100%;
  left: 0;
  top: 0;
  visibility: hidden;
  /* the secondary navigation is covered by the main element */
  z-index: 9999;
  width: 300px;
  /*border-right: 1px solid #eee;*/
  background-color: #fff;
  overflow-y: auto;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform .4s 0s, visibility 0s .4s;
  -moz-transition: -moz-transform .4s 0s, visibility 0s .4s;
  transition: transform .4s 0s, visibility 0s .4s;
  /* this creates the subtle slide in animation of the navigation */
  -webkit-transform: translateX(-300px);
  -moz-transform: translateX(-300px);
  -ms-transform: translateX(-300px);
  -o-transform: translateX(-300px);
  transform: translateX(-300px);
}
#cd-lateral-nav .cd-navigation {
  margin: 10px 0 16px;
}
#cd-lateral-nav .sub-menu {
  padding: 0 10px 20px 65px;
  display: none;
}
#cd-lateral-nav a {
  display: block;
  line-height: 2em;
  padding: 10px 20px 10px 20px;
  color: #232323;
}
#cd-lateral-nav a.current {
  background-color: #3a4a4d;
  color: #FFF;
}
.no-touch #cd-lateral-nav a:hover {
  color: #eee;
}
@media only screen and (min-width: 768px) {
  #cd-lateral-nav .cd-navigation {
    margin: 0px 0px 0px 0px;
	
  }
}
#cd-lateral-nav.lateral-menu-is-open {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  visibility: visible;
  -webkit-transition: -webkit-transform .5s 0s, visibility 0s 0s;
  -moz-transition: -moz-transform .5s 0s, visibility 0s 0s;
  transition: transform .5s 0s, visibility 0s 0s;
  /* smooth the scrolling on touch devices - webkit browsers */
  -webkit-overflow-scrolling: touch;
  z-index: 9999;
}

/* style menu items which have a submenu  */
#cd-lateral-nav .item-has &gt; a {
  position: relative;
 /* text-transform: uppercase;*/
  font-weight: 600;
  /* this is the right arrow to show that the item has a submenu  */
}
#cd-lateral-nav .item-has-children &gt; a {
  position: relative;
  text-transform: uppercase;
  font-weight: 600;
  /* this is the right arrow to show that the item has a submenu  */
}
#cd-lateral-nav .item-has-children &gt; a::after {
  content: '';
  display: block;
  height: 11px;
  width: 8px;
  position: absolute;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 1em;
  background: url("../img/cd-arrow.svg") no-repeat center center;
  background-size: 8px 11px;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  transition-duration: 0.2s;
}
#cd-lateral-nav .item-has-children &gt; a.submenu-open::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
  -moz-transform: translateY(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) rotate(90deg);
  -o-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}

#cd-lateral-nav .socials {
  padding: 0 32px;
}
#cd-lateral-nav .socials:after {
  content: "";
  display: table;
  clear: both;
}
#cd-lateral-nav .socials a {
  height: 32px;
  width: 32px;
  float: left;
  padding: 0;
  background-image: url("../img/cd-socials.svg");
  background-repeat: no-repeat;
  background-size: 128px 64px;
  background-color: #FFF;
  margin-right: .5em;
  border-radius: 0.25em;
}
#cd-lateral-nav .socials a.cd-twitter {
  background-position: 0 0;
}
#cd-lateral-nav .socials a.cd-github {
  background-position: -32px 0;
}
#cd-lateral-nav .socials a.cd-facebook {
  background-position: -64px 0;
}
#cd-lateral-nav .socials a.cd-google {
  background-position: -96px 0;
}
.no-touch #cd-lateral-nav .socials a:hover {
  background-color: #4e6361;
}
.no-touch #cd-lateral-nav .socials a:hover.cd-twitter {
  background-position: 0 -32px;
}
.no-touch #cd-lateral-nav .socials a:hover.cd-github {
  background-position: -32px -32px;
}
.no-touch #cd-lateral-nav .socials a:hover.cd-facebook {
  background-position: -64px -32px;
}
.no-touch #cd-lateral-nav .socials a:hover.cd-google {
  background-position: -96px -32px;
}


/*login*/
#wrapper {
    right: 0px;
    margin: 0px auto;
    margin-top: 5%;
    max-width: 350px;
    position: relative;
}
.login_content {
    margin: 0 auto;
    padding: 25px 20px 0;
    position: relative;
    text-align: center;
    text-shadow: 0 1px 0 #fff;
    min-width: 280px;
}
#login {
    z-index: 22;
}
custom.css:5687
#register, #login {
    position: absolute;
    top: 0px;
    width: 100%;
}
custom.css:5722
.animate {
    -webkit-animation-duration: 0.5s;
    -webkit-animation-timing-function: ease;
    -webkit-animation-fill-mode: both;
    -moz-animation-duration: 0.5s;
    -moz-animation-timing-function: ease;
    -moz-animation-fill-mode: both;
    -o-animation-duration: 0.5s;
    -o-animation-timing-function: ease;
    -o-animation-fill-mode: both;
    -ms-animation-duration: 0.5s;
    -ms-animation-timing-function: ease;
    -ms-animation-fill-mode: both;
    animation-duration: 0.5s;
    animation-timing-function: ease;
    animation-fill-mode: both;
}
.login_content form {
    margin: 20px 0;
    position: relative;
}
.separator {
    border-top: 1px solid #D8D8D8;
    margin-top: 10px;
    padding-top: 10px;
}
.login_content form input[type="text"], .login_content form input[type="email"], .login_content form input[type="password"] {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0 1px 0 #fff, 0 -2px 5px rgba(0,0,0,0.08) inset;
    -moz-box-shadow: 0 1px 0 #fff, 0 -2px 5px rgba(0,0,0,0.08) inset;
    -ms-box-shadow: 0 1px 0 #fff, 0 -2px 5px rgba(0,0,0,0.08) inset;
    -o-box-shadow: 0 1px 0 #fff, 0 -2px 5px rgba(0,0,0,0.08) inset;
    box-shadow: 0 1px 0 #fff, 0 -2px 5px rgba(0,0,0,0.08) inset;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    border: 1px solid #c8c8c8;
    color: #777;
    margin: 0 0 20px;
    width: 100%;
}

.form-control {
    border-radius: 0;
    line-height: 30px;
    width: 100%;
}

.form-control {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    background-color: #fff;
    background-image: none;
    border: 1px solid #DDE2E8;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
button, html input[type="button"], input[type="reset"], input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
}

.to_register {
    border: 1px solid #0074a2;
    box-shadow: inset 0 1px 0 #43bde9;
    background-color: #2ea2cc;
    padding: 0px 20px 0px 20px;
    font-size: 20px;
    font-weight: 400;
    border-radius: 3px;
    cursor: pointer;
    box-sizing: border-box;
    margin: 5px;
    color: #eee;
}
.login_text_c{
	color: #73879C;
    
    font-family: "Helvetica Neue", Roboto, Arial, "Droid Sans", sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.471;
	}

	.sub_contants{
width: 100%; overflow: auto; box-shadow: 0px 0px 4px 0px #bbb; border:1px solid #fff; background: #fff;
	}

#fa_style{
    font-size: 20px;
    margin-right: 30px;
	color: #696969;
}
/*ë©”ì¸ ì´ ë§¤ìž…ë§¤ì¶œìˆ˜ê¸ˆì§€ê¸‰ í‘œ*/
.main_all_table{
font-size: 40px; white-space: nowrap;
}
.main_all_div{
width: 100%;margin: 10px; padding:10px 0px 10px 10px; border-right:1px solid #eee;
}
.main_all_div_sub1{
font-size:14px
}
.main_all_div_sub2{
margin-top:5px;
}

/*ì—¬ë°±*/
.clean_m10{
margin:10px 0;
}
.clean_m5{
margin:5px 0;
}



/*ê¸°ë³¸ ë¦¬ìŠ¤íŠ¸*/
.b_title{
width:100%; padding: 25px 20px; float: left; 
/*height: 60px;*/
}
.b_list{
width:100%; padding: 10px 20px;  border-top: 1px solid #d6d6d6; float: left;
}
.b_list_padding1{
padding: 15px 20px !important
}
.b_div1{
width: 50%; float:left;
}
.b_div2{
width: 50%; float:left;    text-align: right;
}
.b_price{
color: green;
}
.b_font{
font-size:14px; color:#000;
}
.b_font_padding{
padding-bottom: 5px;
}
.b_more{
    right: 30px;
    position: absolute;
}

.b_more &gt;a{
	color:#000;
}

.c_more{
    right: 20px;
    position: absolute;
}

.c_more &gt;a{
	color:#000;
}

.bg_white {
	background-color: white;
}

.text_c {
	text-align:center;
}

.graph_b_t {
	border-top: 2px solid #f2f2f2;
}

.graph_b_b {
	border-bottom: 2px solid #f2f2f2;
}




/* ------------------------- new css */

:root {
  --primary-color: #eee;
  --border-color: #e0e0e0;
}

.header-row {
  background: var(--primary-color);
  color: black;
  height: auto;
  padding: 12px 0;
  height: 40px;
}

.data-row {
  height: auto;
  border-bottom: 1px solid var(--border-color);
}

.center {
  text-align: center;
}

form {
  margin: 16px 0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

input[type="text"] {
  padding: 8px 12px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 14px;
}
.mem_list_row2{
  background: white;
}
.popup_row{
  height: 50px;
}
.header-row th, .popup_row td{
  text-align: left;
  vertical-align: middle;
  min-width:120px;        
  border-bottom: 1px solid #dcdcdc;
  padding:5px;
  color:black;
}
#div_scroll{
  font-size:13px;
}
/* ìƒˆë¡œìš´ ë¡œë”© ì¸ë””ì¼€ì´í„° */
.loading-indicator {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  /* margin: 10px 0; */
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  animation: loading-appear 0.3s ease-out;
}

.loading-spinner {
  position: relative;
  width: 24px;
  height: 24px;
  margin-right: 22px;
}

.loading-spinner::before {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 2px solid transparent;
}

.loading-spinner::before {
  width: 100%;
  height: 100%;
  border-top-color: var(--primary-color);
  border-right-color: var(--primary-color);
  animation: spinner-rotate 1s linear infinite;
}

@keyframes spinner-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes loading-appear {
  from { 
      opacity: 0; 
      transform: translateY(20px) scale(0.95);
  }
  to { 
      opacity: 1; 
      transform: translateY(0) scale(1);
  }
}

.loading-text {
  color: #666;
  font-size: 14px;
  font-weight: 500;
}

/* íŽ„ìŠ¤ íš¨ê³¼ */
.pulse-dots {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
}

.pulse-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--primary-color);
  margin: 0 1px;
  animation: pulse-dot 1.4s infinite ease-in-out;
}

.pulse-dot:nth-child(1) { animation-delay: -0.32s; }
.pulse-dot:nth-child(2) { animation-delay: -0.16s; }
.pulse-dot:nth-child(3) { animation-delay: 0s; }

@keyframes pulse-dot {
  0%, 80%, 100% { 
      transform: scale(0.8);
      opacity: 0.5;
  }
  40% { 
      transform: scale(1.2);
      opacity: 1;
  }
}

/* ìŠ¤í¬ë¡¤ ë¡œë”© ìƒíƒœ í‘œì‹œ */
.scroll-loading-indicator {
  /* position: sticky; */
  /* bottom: 0; */
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.9) 20%, rgba(255, 255, 255, 0.95) 100%);
  padding: 10px;
  text-align: center;
  backdrop-filter: blur(5px);
  border-top: 1px solid rgba(224, 224, 224, 0.5);
  position: fixed;
  width: 100%;
  bottom: 60px;
  z-index: 2;
}

/* ë¡œë”© ì™„ë£Œ ë©”ì‹œì§€ */
.loading-complete {
  text-align: center;
  padding: 20px;
  color: #666;
  font-size: 14px;
  border-top: 1px solid var(--border-color);
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  /* position: relative;
  bottom: 100px; */
}

.loading-complete::before {
  content: 'âœ“';
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #28a745;
  color: white;
  font-size: 12px;
  line-height: 20px;
  margin-right: 8px;
  animation: check-bounce 0.5s ease-out;
}</pre></body></html>