:root {
  --primary-color: #6bb4f7;
  --dark-blue: #143665;
  --dark-blue-translucent: rgba(20, 54, 101, 0.66);
  --accent-cyan: rgba(52, 197, 241, 0.5);

  --font-roboto: "Roboto", "Helvetica Neue", Arial, sans-serif;
  --font-inter: "Inter", sans-serif;
  
  --text-dark: rgba(0, 0, 0, 0.9);
  --text-muted: rgba(0, 0, 0, 0.75);
  --bg-glass: rgba(0, 0, 0, 0.015);
  --bg-glass-heavy: rgba(0, 0, 0, 0.03);
  --bg-glass-light: rgba(255, 255, 255, 0.45);

  --shadow-subtle: 0 4px 6px rgba(0, 0, 0, 0.05);

  --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
#rollsys_logo {
  position: fixed;
  left:5%;
  top: 2%;
  width: 210px;
  height: 210px;
  background-image: url('https://cdn.rollsys.com/comm/upimage/w-210607-09817.svg');
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 3;
}

.footer-content
{
	position: fixed;
	font-family:Arial, Helvetica, sans-serif;
	text-align: center;
	font-size: 14px;
	left: 0%;
	right: 0%;
	bottom: 0%;
	color: #333;
	z-index: 99;
}

#backgroundImage
{
	position: absolute;
	left: 0%;
	top:0%;
	width: 100%;
	height: 100%;
	background-color: #fff;
	z-index: -2;
}

#backdrop
{
	position: absolute;
	left: 50%;
	top:52.5%;
	width: 90%;
	height: 85%;
	background: var(--bg-glass-heavy);
	border-radius: .5rem;
	border: 1px solid rgba(0, 0, 0, 0.1);
	z-index: -1;
	transform: translate(-50%, -50%);
	display: none;
	pointer-events: none;
}

#frozenGlassPanel
{
	position: absolute;
	left: 50%;
	top:52.5%;
	width: 90%;
	height: 85%;
	background: var(--bg-glass-heavy);
	border-radius: .5rem;
	border: 1px solid rgba(0, 0, 0, 0.1);
	z-index: -1;
	transform: translate(-50%, -50%);
	display: flex;
	justify-content: center;
	align-items: center;
}
			

#threeContainer
{
	position: absolute;
	width: 100%;
	height: 100%;
}

#SelectedAccessoryController
{
	box-sizing: border-box;
	position: absolute;
	top: 60%;
	left: 36%;
	width: 50px;
	height: 50px;
	transform: translate(-50%, -50%);
	border: none;
	z-index: 9;
}

.MoveBtn
{
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	opacity: 0.9;
	border: 1px solid rgba(0, 0, 0, 1);
	user-select: none;
}

#DeleteBtn
{
	position: absolute;
	right: -125%;
	top: -125%;
}

#ConfirmBtn
{
	position: absolute;
}

#MoveUpBtn
{
	position: absolute;
	top: -125%;
}

#MoveDownBtn
{
	position: absolute;
	bottom: -125%;
	
}

#TurnRightBtn
{
	position: absolute;
	right: -125%;
}

#TurnLeftBtn
{	
	position: absolute;
	left: -125%;
}

#labelContainer
{
	position: absolute;
	width: 100%;
	height: 100%;
	pointer-events: none;
	overflow: hidden;
}

#casterToggleContainer
{
	position: absolute;
	width: 100%;
	height: 100%;
	pointer-events: none;
	overflow: hidden;
	display: none;
}

#main_title
{
	position: absolute;
	left: 7.5%;
	top:15%;
	font-size: 1.8rem;
	font-family:Arial, Helvetica, sans-serif;
	font-weight:lighter;
	transform: translateX(0%);
	pointer-events: none;
}

#sub_title
{
	position: absolute;
	left: 7.5%;
	top:22%;
	width: 22%;
	text-align: left;
  	font-family: var(--font-roboto);
  	font-weight: 300;
  	font-size: 0.8rem;

	letter-spacing: 1px;
  	color: var(--text-muted);
	pointer-events: none;
}

.mainBottom_panel
{
	position: absolute;
	right: 8.5%;
	top:15%;
    width: 24%;
    height: 6%;
    display: grid;
    grid-template-columns: repeat(6,1fr);
	grid-column-gap: 6px;
    z-index: 6;

	background: var(--bg-glass);
  	border-radius: .45rem;
  	box-shadow: inset 1.5px 1.5px 3px #cacaca,
              inset -1.5px -1.5px 3px #f6f6f6;
}

.mainBottom_panel[type="configurator_b"]
{
	top:21%;
}

.mainBottom_panel[type="pole_type_filter"]
{
	top:15%;
	height: 4.2%;
	width: 24%;
    grid-template-columns: repeat(2,1fr);
	grid-column-gap: 6px;
}

.main_btn
{
    position: relative;
	background-color: rgba(255, 255, 255, 0);
	display: flex;
	justify-content: center;
	align-items: center;
	border-width: 0px;
	pointer-events: auto;
	border-radius: .45rem;
	cursor: pointer;

	transition: var(--transition-fast);
}


.select_effect
{
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.5);
	border-radius: .45rem;
	display: none;

	/* 多重陰影：內陰影(高光) + 外陰影(立體) */
  	box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), /* 頂部高光 */
              0 4px 6px rgba(0,0,0,0.15); /* 底部陰影 */
}

.btn_text
{
	all: unset;
	text-align: center;
	font-family: var(--font-roboto);
    font-size: 12px;
	font-weight: 300;
    color: rgba(0, 0, 0, 0.9);
	z-index: 3;
}

.btn_icon
{
	left: 0%;
	width: 100%;
	height: 100%;
	background-image: url('/images/Icon_FW_0002_Rollsys_caster.png');
	background-size: 60% 60%; 
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0.6;
}

.btn_text[type="filter"]
{
	right: 0px;
    left: 0px;
	font-size: 0.8rem;
	text-align: center;
	vertical-align: top;
}

.btn_text[type="hud"]
{
	position: absolute;
	left: 3.3rem;
	font-size: 0.95rem;
	text-align: center;
}

/* .btn_text[type="navbar"] removed — nav_btn is now an <a> with direct text */

.btn_text[type="controller"]
{
	all: unset;
	text-align: center;
	font-size:1.2rem;
	color: rgba(0, 0, 0, 0.5);
	font-weight: 600;
}
		
i{
	color: rgba(255, 255, 255, 0);
	display: none;
}

j
{
	align-self: center;
	color: rgba(10, 151, 207,0.5);
}


#grid_table 
{
	position: absolute;	
	top:39%;
	left: 7.5%;
	padding: 5px 10px 5px 0px;
 	display: grid;
 	grid-template-columns: 0.25fr 1fr 2fr;
 	gap: 0px;
 	width: 21%;
	min-width: 300px;

 	background-color: var(--bg-glass);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	border-radius: .5rem;
	/* 多重陰影：內陰影(高光) + 外陰影(立體) */
  	box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), /* 頂部高光 */
              0 2px 3px rgba(0,0,0,0.15); /* 底部陰影 */
			  
	z-index: 9;
}

.cell {
  padding: 6px;
  text-align: left;
  font-family: var(--font-roboto);
  font-weight: 300;
  font-size: 0.84rem;
  line-height:150%;
  color: rgba(0, 0, 0, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
  white-space: pre-line;
}

.cell[type="number"]
{
	text-align: center;
	display: flex;
	justify-content: center;
	flex-direction: column;		
}

.cell[type="title"]
{
	padding-left: 15%;
	display: flex;
	justify-content: center;
	flex-direction: column;		
}

.label 
{
	position: absolute;
	width: 30px;
	height: 30px;
	color: #000000;
	font-family: sans-serif;
	padding: 2px;
	background: rgba(255, 255, 255, 0.45);
	border-radius: 50% / 50%;
	border-style: solid;
	border-width: 1px;
	text-align: center;
	display: flex;
	justify-content: center;
	flex-direction: column;
	pointer-events: auto;
	opacity: 1;
	user-select: none;
	cursor: pointer;
}

.label_info
{
	position: absolute;
	left: 35px;
	padding: 8px 15px;
	white-space: nowrap;
	opacity: 0;
	transform: translateX(-10px);
	transition: all 0.3s ease;
	pointer-events: none;
	font-family: sans-serif;
	font-size: 0.8rem;
	background: var(--bg-glass-heavy);
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.label:hover
{
	background: var(--bg-glass-heavy);
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.label:hover .label_info 
{
	opacity: 1;
	transform: translateX(0);
}

.accessory_tag
{
	position: absolute;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: radial-gradient(circle, #ffc107,transparent);
	border: solid;
	border-color:#ffc107;
	border-width: 1px;
	user-select: none;
	transition: width .24s,height .24s;
	transform-origin: center center;
}

.accessory_spec
{
	font-family: var(--font-roboto);
  	font-weight: 300;
  	font-size: 14px;
	margin-left: 30px;
	white-space: nowrap;
	color: rgba(0, 0, 0, 0);
	pointer-events: none;
	display: inline;
}

#manu_bar
{
	position: fixed;
	right: clamp(1rem, 5vw, 9rem);
	top: 2.1rem;
	width: auto;
	height: auto;
	display: flex;
	gap: 8px;
	z-index: 99;
}

.nav_btn
{
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 1.2rem;
	height: 1.8rem;
	border: none;
	border-radius: 0.15rem;
	background-color: var(--dark-blue);
	color: #ffffff;
	font-family: var(--font-roboto);
	font-size: 0.95rem;
	font-weight: 300;
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
	transition: opacity 0.2s ease, background-color 0.2s ease;
}

.nav_btn[aria-current="page"]
{
	background-color: #d1ecf1;;
	color: #0c5460;
	border-color: #bee5eb;
	opacity: 1;
}
			
#hud_btn_panel
{
	position: absolute;
	left: 50%;
	bottom: 2.1%;
	width: 480px;
	display: flex;
	justify-content:center;
	gap: 10px;
	transform: translate(-50%,0%);
	z-index: 6;
}

.hud_btn
{
	position: relative;
	width: 31%;
	height: 45px;
	border-radius: .45rem;
	background-color: rgba(0, 0, 0, 0.15);
	display: flex;
	justify-content: center;
	flex-direction: column;
	cursor: pointer;
	transition: all 0.2s ease;
}

.hud_btn[type="label"]
{
	display: none;
}

.hud_btn.active
{
	background-color:rgba(52, 197, 241, 0.5);
}

#default_filter_btn
{
	display: none;
}

#base_bumper_guard_check
{
	display: none;
}

#gel_bottle_holder_check
{
	display: none;
}

.material-symbols-outlined 
{
	font-variation-settings:
  'FILL' 1,
  'wght' 900 ,
  'GRAD' 0,
  'opsz' 20;
   color: rgb(120, 120, 120);
   font-size: 27px !important;
   display: inline-block;
   font-weight: 600 !important;
   padding-left: 12px;
}

.material-symbols-outlined[type="close_btn"]
{
	color: rgba(255, 255, 255,0.7);
}

.material-symbols-outlined[type="controller"]
{
	font-size: 30px !important;
   	padding-left: 0px;
}

.material-symbols-outlined[type="tableManu"]
{
	font-size: 36px !important;
   	padding-left: 0px;
}

.material-symbols-outlined[type="extraAccessoryManu"]
{
	font-size: 45px !important;
	margin-top: 15px;
	align-self: center;
}

.material-symbols-outlined[type="extra_accessory"]
{
	position: absolute;
	font-size: 39px !important;
	right: 0%;
	top: 0%;
	color: #13dd13;
}

.material-symbols-outlined[type="help"]
{
	position: absolute;
	font-size: 36px !important;
	right: 0%;
	top: 0%;
	color: var(--dark-blue);
}

#help_btn
{
	all: unset;
	position: absolute;
	width: 30px;
	height: 30px;
	pointer-events: auto;
	user-select: none;
	cursor: pointer;
	display: none;
}

#default_camera_btn
{
	position: absolute;
	top: 15%;
	left: 30%;
}

#show_spec_btn
{
	position: absolute;
	top: 15%;
	right: 30%;	
	display: none;
}

#hide_spec_btn
{
	position: absolute;
	top: 15%;
	right: 30%;	
	display: none;
	z-index: 10;
	opacity: 0;
}

#item_container
{
	position: absolute;	
	top:24%;
	right: 7.5%;
	width: 24%;
	height: 60%;
	gap: 4.5rem 1.2rem;
 	display: flex;
	flex-wrap:  wrap;
	align-content:flex-start;
	overflow-y: auto;
	pointer-events: fill;
	user-select: none;
	z-index: 3;
	padding: 10px;
}

#item_container[type="configurator_b"]
{
	top:30%;
}

.item
{
	position: relative;
	width: 20%;
	aspect-ratio: 1 / 1;
	border-radius: 6% 6%;
	background-color: rgba(0, 0, 0, 0.1);
	background-image: url('/images/NoImage_001_white.png');
	background-size: auto 100%; 
	background-position: center;
	background-repeat: no-repeat;
	overflow: visible;
	border-style: solid;
	border-width: 1.5px;
	border-color: rgba(255, 255, 255, 1);
	cursor: pointer;

	animation-name: fadeIn_animation;
  	animation-duration: 0.5s;
	animation-iteration-count:1;
	animation-fill-mode:both;
	animation-timing-function:linear;

	transition: var(--transition-fast);
}

.item_title
{
	position: absolute;
	top:105%;
	font-family: var(--font-roboto);
	font-size: 10px;
	font-weight: 300;
	color: rgba(0, 0, 0, 0.9);
	text-align: left;
}

.item[type="base_bumper_guard"],
.item[type="gel_bottle_holder"],
.item[type="rail_clamp_humidifier_mounting_bracket"],
.item[type="clamp"],
.item[type="exraAccessory"]
{
	width: 100%;
	aspect-ratio: 1/1;
}

.item[type="base_bumper_guard"]
{
	background-image: url('/images/FW_0002_Rollsys_Base-Bumper-Guard.png');
}

.item[type="gel_bottle_holder"]
{
	background-image: url('/images/FW_0002_Rollsys_New-Gel-Bottle-Holder.png');
}

.item[type="rail_clamp_humidifier_mounting_bracket"]
{
	background-image: url('/images/FW_0002_Rollsys_Rail-Clamp-and-Humidifier-Mounting-Bracket.png');
}

.item[type="clamp"]
{
	background-image: url('/images/FW_0002_Rollsys_Base-Bumper-Guard.png');
	margin-bottom: 36px;
}

.item[type="exraAccessory"]
{
	background-image: none;
	background-color: rgba(0, 0, 0, 0);
	margin-bottom: 36px;
}

.tabletop_item
{
	position: relative;
	width: 60px;
	height: 60px;
	border-radius: 6% 6%;
	background-color: rgba(0, 0, 0, 0.1);
	background-image: url('/images/NoImage_001_white.png');
	background-size: auto 100%; 
	background-position: center;
	background-repeat: no-repeat;
	overflow: visible;
	border-style: solid;
	border-width: 1.5px;
	border-color: rgba(255, 255, 255, 1);
	cursor: pointer;
	margin-right: 6px;

	animation-name: fadeIn_animation;
  	animation-duration: 0.5s;
	animation-iteration-count:1;
	animation-fill-mode:both;
	animation-timing-function:linear;
}

#tabletop_item_manu
{
	position: absolute;
	top: 15%;
	left: 50%;
	height: 120px;
	width: 360px;
	transform: translate(-50%,-50%);
	justify-content:start;
	flex-direction: column;
	align-items: center;
	overflow-x: auto;
	overflow-y: hidden;
	pointer-events: fill;
	user-select: none;
	flex-wrap:  wrap;
	display: none;
	z-index: 99;
}

#base_bumper_guard_toggle
{
	position: absolute;
	right: 35%;
	top: 72%;
	width: 75px;
	height: 75px;
	background-color: rgba(0, 0, 0, 0.1);
	border-radius: 0.3rem 0.3rem;
	display: none;
	z-index: 3;
}

#gel_bottle_holder_toggle
{
	position: absolute;
	right: 35%;
	top: 40%;
	width: 75px;
	height: 75px;
	background-color: rgba(0, 0, 0, 0.1);
	border-radius: 0.3rem 0.3rem;
	display: none;
}

#rail_clamp_humidifier_mounting_bracket_toggle
{
	position: absolute;
	right: 35%;
	top: 40%;
	width: 75px;
	height: 75px;
	background-color: rgba(0, 0, 0, 0.1);
	border-radius: 0.3rem 0.3rem;
	display: none;
}

#clamp_manu
{
	position: absolute;
	right: 35%;
	top: 20%;
	width: 75px;
	height: 75px;
	display: flex;
	flex-direction: column;
}

#extraAccessory_manu
{
	position: absolute;
	right: 35%;
	top: 30%;
	width: 75px;
	height: 75px;
	display: flex;
	flex-direction: column;
}



#SelectedItemController
{
	position: absolute;
	width: 18%;
	aspect-ratio: 1 / 1;
	cursor: move;
	display: block;
	z-index: 9;
	pointer-events: fill;
	/*transform: translate(-50%,-50%);*/
}

#SelectedItemWindow
{
	position: relative;
	left: 50%;
	top: 50%;
	width: 100%;
	height: 100%;
	border-radius: 50% / 50%;	
	transform: translate(-50%,-50%);
	border-bottom: solid 2px var(--primary-color);
	border-top: solid 2px var(--primary-color);
	touch-action: none;
}

.window_border
{
	border-style: groove;
	border-width: 2px;
	border-color: rgba(10, 151, 207,0.5)
}

#loading_canvas{
	position: absolute;
	left: 0%;
	top: 0%;
	width: 100vw;
	height: 100vh;
	display: flex;
	justify-content: center;
	flex-direction: column;
	pointer-events: fill;
	background-color: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(1.5px);
	-webkit-backdrop-filter: blur(1.5px);
	z-index: 10;
}

.loadingUI
{
	align-self: center;
	width: 180px;
	height:180px;
	background-image: url(/images/FW_0002_Rollsys_loading.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 45% 45%; 
}

/* Toggle */
.switch {
  position: absolute;
  display: inline-block;
  width: 36px;       /* 縮小後 */
  height: 18.75px;   /* 縮小後 */
  pointer-events: fill;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16.5px;    /* 縮小後 */
  width: 16.5px;     /* 縮小後 */
  left: 1px;         /* 微調位置 */
  bottom: 1.1px;     /* 微調位置 */
  background-color: white;
  transition: .4s;
}

input:checked + .slider {
  background-color: var(--primary-color);
}

input:focus + .slider {
  box-shadow: 0 0 1px var(--primary-color);
}

input:checked + .slider:before {
  /* 位移距離也需要縮小 */
  transform: translateX(19.5px); 
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

#instrucion_info
{
	position: absolute;
	top:25%;
	left: 31%;
	color: rgba(0, 0, 0, 0.9);
  	font-family: var(--font-roboto);
	font-size: 0.72rem;
	font-weight: 300;
	pointer-events: none;
	z-index: 6;
}

.info_container {
  list-style: none; /* 隱藏預設的小圓點或數字 */
  counter-reset: custom-counter; /* 初始化計數器 */
  padding-left: 0;
}

.info_num {
  counter-increment: custom-counter; /* 每一個 li 計數器加 1 */
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.info_num::before {
  content: counter(custom-counter); /* 顯示計數器數值 */
  
  /* 圓形外框的核心設定 */
  display: inline-flex;
  justify-content: center;
  align-items: center;
  
  width: 21px;  /* 圓形寬度 */
  height: 21px; /* 圓形高度 */
  border: 1px solid rgba(0, 0, 0, 0.75); /* 外框顏色 */
  border-radius: 50%; /* 關鍵：變成圓形 */
  margin-right: 12px; /* 數字與文字的間距 */
}

.toggle_title
{
  position: absolute;
  left: -45px;
  top: 0px;
  font-size: 15px;
  text-align: center;
  color: var(--primary-color);
	font-family: var(--font-roboto);
	white-space:nowrap;
}

.toggle_title_02
{
  position: absolute;
  left: 0px;
  top: -30px;
  font-size: 15px;
  text-align: center;
  color: var(--primary-color);
  font-family: var(--font-roboto);
  white-space:nowrap;
}

.toggle_title[type="label"]
{
  left: -90px;
  color: #000000;
}

#label_toggle
{
	left: 50%;
	top: -10%;
}

.logo
{
	position:fixed;
	top:3%;
	left: 3%;
	height: 30px;
	aspect-ratio: 80/13.75;
	background-image: url(/images/fimawork_logo_C_white.png);
	background-size: 100% 100%;
	opacity: 1;
	z-index: 9;
	cursor: pointer;
}

h3
{
	margin-top: 30px;
	margin-right: -3px;
	font-family:"Inter", sans-serif;
    font-size: 15px;
    color: #ffffff;
	font-weight: 300;
	text-align: right;
	letter-spacing: 9px;
}

.logo:hover
{
	opacity: 0.5;
}

@keyframes UI_rotate
{
	0% {transform: rotate(0);}
	8.33% {transform: rotate(30deg);}
	16.66% {transform: rotate(60deg);}
	24.99% {transform: rotate(90deg);}
	33.32%	{transform: rotate(120deg);}
	41.65%	{transform: rotate(150deg);}
	49.98%	{transform: rotate(180deg);}
	58.31%	{transform: rotate(210deg);}
	66.64%	{transform: rotate(240deg);}
	74.97%	{transform: rotate(270deg);}
	83.3%	{transform: rotate(300deg);}
	91.63%	{transform: rotate(330deg);}
	100% {transform: rotate(360deg);}
}

.rotate_anim{
	animation: UI_rotate;
	animation-duration: 1.5s;
	animation-timing-function: step-end;
	animation-iteration-count: infinite;
}

						
@keyframes blinking_animation 
{
	0% {border-color: rgba(10, 151, 207,0.75);}
	20% {border-color: rgba(10, 207, 174, 0.75);}
	40%{border-color: rgba(107, 231, 134, 0.75);}
	60% {border-color: #aedf2677;}
	80% {border-color: rgba(10, 207, 92, 0.75);}
	100%{border-color: rgba(10, 151, 207,0.75);}
}

.window_blinking_anim
{
	animation: blinking_animation; 
	animation-duration: 1s;
	animation-iteration-count: infinite;
	animation-timing-function:ease-in-out;
}


@keyframes fadeIn_animation 
{
	0% {opacity: 0;}
	100%{opacity: 1;}
}

.label_fadeIn_anim
{
	animation: fadeIn_animation;
	animation-duration: 0.5s;
	animation-delay: 0.2s;
	animation-iteration-count:1;
	animation-fill-mode:both;
	animation-timing-function:linear;
}

@keyframes fadeOut_animation 
{
	0% {opacity: 1;}
	100%{opacity: 0;}
}

.label_fadeOut_anim
{
	animation: fadeOut_animation;
	animation-duration: 1.0s;
	animation-delay: 1.0s;
	animation-iteration-count:1;
	animation-fill-mode:both;
	animation-timing-function:linear;
}

#system_info
{
	position: fixed;
	top: 12%;
	left: 50%;
	transform: translateX(-50%);
	width: calc(100% - 32px);
	max-width: 420px;
	height: auto;
	display: none;
	flex-direction: row;
	align-items: flex-start;
	gap: 10px;
	padding: 14px 14px 14px 16px;
	box-sizing: border-box;
	font-family: var(--font-roboto);
	font-weight: 300;
	font-size: 13px;
	line-height: 150%;
	letter-spacing: 0.4px;
	color: rgba(255, 255, 255, 1);
	white-space: pre-line;
	background-color: rgba(5, 5, 5, 0.55);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 8px;
	z-index: 99;
	animation-name: fadeIn_animation;
	animation-duration: 0.4s;
	animation-iteration-count: 1;
	animation-fill-mode: both;
	animation-timing-function: ease-out;
}

.alert-icon
{
	flex-shrink: 0;
	font-size: 22px;
	color: rgba(255, 200, 90, 1);
	margin-top: 1px;
}

#system_info_content
{
	flex: 1;
	padding: 0;
}

#system_info_closeBtn
{
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
	border: none;
	padding: 2px;
	cursor: pointer;
	color: rgba(255, 255, 255, 0.7);
	transition: color 0.2s ease;
	margin-top: 1px;
}

.version
{
	position: absolute;
	left: 1.5%;
	bottom: 1.5%;
	font-family: var(--font-roboto);
  	font-weight: 300;
  	font-size: 15px;
	z-index: 100;

	animation-name: fadeOut_animation;
	animation-delay: 3.0s;
	animation-duration: 0.5s;
	animation-iteration-count:1;
	animation-fill-mode:both;
	animation-timing-function:linear;	
}

@media screen and (max-width:1400px)/*平板*/
{
	#rollsys_logo {
	  position: fixed;
	  left:2%;
	  top: 1.5%;
	  height: 5%;
	  aspect-ratio: 1/1;
	  background-image: url('https://cdn.rollsys.com/comm/upimage/w-210607-09817.svg');
	  background-size: contain;
	  background-repeat: no-repeat;
	}

	#main_title
	{
		top: 12%;
		left: 5%;
		font-size: 1.2rem;
	}

	#sub_title
	{
		top: 18%;
		left: 5%;
		font-size: 0.6rem;
	}

	#grid_table 
	{
		position: absolute;	
		top:8%;
		left: 61.5%;
	 	width: 36%;
		height: 89%;
	 	background-color: rgb(219, 219, 219);
		display: none;
		transform: translate(0%,0%);
	}

	.cell 
	{
	  display: flex;
	  flex-direction: column;
	  justify-content: center;
    }

	#hide_spec_btn
	{
		position: absolute;
		top: 1%;
		right: 1%;	
		display: none;
		opacity: 1;
	}

	#frozenGlassPanel
	{
		position: absolute;
		left: 50%;
		top:53%;
		width: 96%;
		height: 90%;
		background: var(--bg-glass-heavy);
		border-radius: .5rem;
		border: 1px solid rgba(0, 0, 0, 0.1);
		z-index: -1;
		transform: translate(-50%, -50%);
		display: flex;
		justify-content: center;
		align-items: center;
	}

	#threeContainer
	{
		position: absolute;
		width: 60%;
		height: 100%;
		left: 5%;
	}

	#manu_bar
	{
		right: 1.5rem;
	}

	.nav_btn
	{
		font-size: 0.75rem;
	}

	.mainBottom_panel
	{
		right: 4.5%;
	    width: 32.5%;
	    display: grid;
	}

	#item_container
	{
		top: 24%;
		right: 4.5%;
		width: 32.5%;
	}

	#hud_btn_panel
	{
		width: 420px;
		left: 35%;
	}

	.hud_btn
	{
		position: relative;
		width: 30%;
		height: 39px;
		border-radius: .45rem;
		display: flex;
		justify-content: center;
		flex-direction: column;
		cursor: pointer;
	}

	.btn_text[type="hud"]
	{
		position: absolute;
		left: 3.0rem;
		font-size: 0.85rem;
		text-align: center;
	}

	#tabletop_item_manu
	{
		left: 42%;
	}

	#gel_bottle_holder_toggle
	{
		top: 30%;
		right: 42%;
		width: 75px;
		height: 75px;
	}

	#rail_clamp_humidifier_mounting_bracket_toggle
	{
		top: 30%;
		right: 42%;
		width: 75px;
		height: 75px;
	}

	#base_bumper_guard_toggle
	{
		top: 75%;
		right: 42%;
		width: 75px;
		height: 75px;
	}

	#clamp_manu
	{
		top: 20%;
		right: 42%;
		width: 75px;
		height: 75px;
	}

	#extraAccessory_manu
	{
		top: 30%;
		right: 42%;
		width: 75px;
		height: 75px;
	}

	

	.footer-content
	{
		display: none;
	}

	#instrucion_info
	{
		top:69%;
		left: 5%;
		font-size: 0.69rem;
	}

	/* #system_info is now fixed-position with responsive max-width — no override needed */

	#SelectedAccessoryController
	{
		position: absolute;
		top: 50%;
		left: 12%;
		width: 50px;
		height: 50px;
		transform: translate(-50%, -50%);
	}

	#help_btn
	{
		display: none;
	}

}



@media screen and (max-width:768px)/*手機*/
{
	#rollsys_logo 
	{
		top: 3%;
	  	left: 6%;
	}

	#frozenGlassPanel
	{	
		top: 50%;
		left: 50%;
		height: 96%;
		width: 90%;
		display: flex;
		justify-content: center;
		align-items: start;
	}

	#manu_bar
	{
		display: none;
	}

	#threeContainer
	{
		height: 80%;
		width: 100%;
	}
							
	#main_title
	{
		display: none;
	}

	#sub_title
	{
		display: none;
	}

	.mainBottom_panel
	{
		width: 100%;
		left: 50%;
		top:80%;
		transform: translate(-50%,-50%);
		display: none;
    }

	.main_btn
	{
		width: 100%;
		height: 100%;
		margin-left: 0%;
		margin-right: 0%;
		border-radius: 50% / 50%;
    }

	.mainBottom_panel[type="pole_type_filter"]
	{
		position: absolute;
		right: 0%;
		top:71.5%;
    	width:84%;
    	height: 3.9%;
    	display: grid;
    	grid-template-columns: repeat(2,1fr);
		grid-column-gap: 0px;
		transform: translate(-50%,-50%);
	}

	.btn_text[type="filter"]
	{
		display: block;
	}

	#SelectedAccessoryController
	{
		position: absolute;
		top: 100%;
		left: 50%;
		width: 100%;
		height: 18%;
		transform: translate(-50%, -100%);
		border: 2px solid rgba(0, 0, 0, 1);
		display: block;

		animation-name: controller_fadeIn_animation;
  		animation-duration: 0.5s;
		animation-iteration-count:1;
		animation-fill-mode:both;
		animation-timing-function:linear;
	}

	@keyframes controller_fadeIn_animation
	{
		0% {top: 120%;}
		100%{top: 100%;}
	}

	.MoveBtn
	{
		width: 25%;
		height: 100%;
		border:none;
		background: #636363;
		opacity: 1;
	}

	#DeleteBtn
	{
		position: absolute;
		right: 0%;
		width: 50%;
		top: 0%;
		height: 40%;
	}

	#ConfirmBtn
	{
		position: absolute;
		left: 0%;
		width: 50%;
		top: 0%;
		height: 40%;
	}

	#MoveUpBtn
	{
		position: absolute;
		height: 60%;
		width: 25%;
		left: 25%;
		top: 40%;
	}

	#MoveDownBtn
	{
		position: absolute;
		height: 60%;
		width: 25%;
		left: 50%;
		top: 40%;	
	}

	#TurnRightBtn
	{
		position: absolute;
		height: 60%;
		width: 25%;
		left: 75%;
		top: 40%;
	}

	#TurnLeftBtn
	{	
		position: absolute;
		height: 60%;
		width: 25%;
		left: 0%;
		top: 40%;	
	}

	.btn_text[type="controller"]
	{
		all: unset;
		text-align: center;
		font-size:1.2rem;
		color: rgba(255, 255, 255, 1);
		font-weight: 300;
	}

	.material-symbols-outlined[type="controller"]
	{
		color: #ffffff;
		font-size: 1rem;
		font-weight: 100 !important;
	}
				
	.main_btn:active
	{
		background-color: var(--bg-glass-light);
	}

	.hud_btn:active
	{
		color: rgba(0, 0, 0, 0.3);
	}

	.label:active
	{
		background-color: rgba(0, 0, 0, 0.05);
	}

	.btn_text
	{
		display: none;
	}

	i{
		color: rgba(0, 0, 0, 0.6);
		display: block;
	}

	#grid_table 
	{
		position:absolute;
		top:50%;
		left: 50%;
     	width: 90%;
		height: 96%;
		background-color: rgba(0, 0, 0, 0.1);
		display: none;
		transform: translate(-50%,-50%);
    }

	.cell 
	{
      background-color: rgb(215, 215, 215);
	  display: flex;
	  flex-direction: column;
	  justify-content: center;
	  font-size: 1rem;
    }

	#hud_btn_panel
	{
		top: 7.5rem;
		width: 45px;
		left: 10%;
		gap: 0.3rem;
		display: flex;
		flex-direction: column;
		justify-content:start;
	}

	.hud_btn
	{
		width: 45px;
		height: 45px;
	}

	.hud_btn[type="label"]
	{
		display: flex;
	}

	.material-symbols-outlined 
	{
	  padding-left: 10px;
	}

	#tabletop_item_manu
	{
		position: absolute;
		top: 15%;
		left: 50%;
		width: 80%;
	}

	.tabletop_item
	{
		width: 60px;
		height: 60px;
	}
	

	#default_filter_btn
	{
		position: absolute;
		top: 81%;
		left: 50%;
		width: 95%;
		height: 39px;
		border-radius: .45rem;
		background-color: rgba(0, 0, 0, 0.45);
		display: flex;
		flex-direction: column;
		justify-content: center;
		text-align: center;
		transform: translate(-50%,-100%);

		font-family: var(--font-roboto);
  		font-weight: 300;
  		font-size: 1rem;
		line-height:150%;
		letter-spacing: 1px;
  		color: rgba(255, 255, 255, 1);
		z-index: 6;
		pointer-events: fill;
	}

	#item_container
	{
		position: absolute;	
		top:99%;
		left: 50%;
		width: 80%;
		height: 18%;
		transform: translate(-50%,-100%);
		overflow-x:auto;
		overflow-y:hidden;
		flex-direction: column;/*必須使用才會有scrollbar出現*/
	}

	#item_container[type="configurator_b"]
	{
		position: absolute;	
		top:99%;
		left: 50%;
		width: 80%;
		height: 18%;
		transform: translate(-50%,-100%);
		overflow-x:auto;
		overflow-y:hidden;
		flex-direction: column;/*必須使用才會有scrollbar出現*/
	}

	.item
	{
		overflow: visible;
	}

	.item_title
	{
		position: absolute;
		top: 105%;
		font-size: 10px;
		color: var(--text-muted);
	}

	.item_image
	{
		display: none;
	}

	.accessory_tag
	{
		top: -5%;/*誤差修正*/
	}

	#default_camera_btn
	{
		top: 10%;
		left: 5%;
	}

	#show_spec_btn
	{
		top: 10%;
		left: 5%;	
		display: block;
	}

	#hide_spec_btn
	{
		position: absolute;
		top: 1%;
		right: 3%;	
		display: none;
		opacity: 1;
	}

	.footer-content
	{
		display: none;
	}

	#gel_bottle_holder_toggle
	{
		position: absolute;
		right: 6%;
		top: 15%;
		width: 60px;
		height: 60px;
		background-color: rgba(0, 0, 0, 0.1);
		border-radius: 0.3rem 0.3rem;
		display: none;
	}

	#rail_clamp_humidifier_mounting_bracket_toggle
	{
		position: absolute;
		right: 6%;
		top: 15%;
		width: 60px;
		height: 60px;
		background-color: rgba(0, 0, 0, 0.1);
		border-radius: 0.3rem 0.3rem;
		display: none;
	}

	#base_bumper_guard_toggle
	{
		position: absolute;
		left:9%;
		top: 57%;
		width: 60px;
		height: 60px;
		background-color: rgba(0, 0, 0, 0.1);
		border-radius: 0.3rem 0.3rem;
	}

	#clamp_manu
	{
		right: 6%;
		top: 15%;
		width: 60px;
		height: 60px;
	}

	#extraAccessory_manu
	{
		right: 6%;
		top: 15%;
		width: 60px;
		height: 60px;
	}
	

	#instrucion_info
	{
		top:9%;
		left:39%;
		font-size: 0.75rem;
		display: none;
		padding-left: 0.5rem;
		padding-right: 0.5rem;
		background-color: var(--dark-blue-translucent);
		border-radius: 0.3rem 0.3rem;
	}

	/* #system_info is now fixed-position with responsive max-width — no override needed */

	#help_btn
	{
		right: 9%;
		top: 3%;
		display: block;
	}

	.info_num
	{
  		margin-bottom: 6px;
		color: #fff;
	}

	.info_num::before
	{
		border: 1px solid rgba(255, 255, 255, 1);
	}

	#label_toggle
	{
		display: none;
	}
}

@media (hover: hover) 
{
	.main_btn:hover
	{
		transform: translateY(-2px);
		background-color: var(--bg-glass-light);
		box-shadow: var(--shadow-subtle);
	}

	.accessory_tag:hover
	{
		border-width: 3px;
		width: 30px;
		height: 30px;
	}

	.hud_btn:hover
	{
		background-color: rgba(0, 0, 0, 0.05);
		transform: translateY(-5px); 
		box-shadow: 0 6px 12px rgba(0,0,0,0.15);
	}

	.item:hover
	{
		border-color: var(--primary-color);
		transform: scale(1.05);
  		box-shadow: 0 8px 16px rgba(107, 180, 247, 0.2);
	}

	.tabletop_item:hover
	{
		border-color: var(--primary-color);
	}

	#system_info_closeBtn:hover
	{
		color: rgba(255, 255, 255, 1);
	}

	.nav_btn:not([aria-current="page"]):hover
	{
		opacity: 0.75;
	}

	.MoveBtn:hover
	{
		background-color: var(--primary-color);
		opacity: 0.3;
	}

	.material-symbols-outlined[type="controller"]:hover
	{
		color: #ffffff;
	}

	.btn_text[type="controller"]:hover
	{
		color: #ffffff;
	}

}
