/* Vertical Industry Solutions */
.subtab-pane {
  display: none;
}

.subtab-pane.active {
  display: block;
}

/* 按鈕外層容器：水平排列並置中 */
.subtab-button-group {
  display: flex;
  justify-content: center;
  gap: 30px; /* 按鈕間距 */
  margin-top: 100px;  
  margin-bottom: 20px;
  flex-wrap: wrap;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* 通用按鈕樣式 */
.subtab-button {
  flex: 1;
  text-align: center;
  padding: 10px 0;
  border: 2px solid #64be00;
  background-color: transparent;
  color: #64be00;
  border-radius: 5px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  min-width: 120px;
}

/* 被選取按鈕樣式 */
.subtab-button.active {
  background-color: #64be00;
  color: #fff;
  font-weight: bold;
}

.nebula-avs-intro {
    width: 70%;
    text-align: center;
    margin: 0 auto;
}

@media screen and (max-width: 1601px) {
.nebula-avs-intro {
    width: 65%;
}
}

@media screen and (max-width: 1025px) {
.nebula-avs-intro {
    width: 85%;
}
}

.nebula-advanced-solutions-section .frame .avs-content h6 {
    font-weight: bold;
}

/* 重置容器內的默認樣式 */
.avs-section * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 主容器 */
.avs-section {
    position: relative;
    width: 100%;
	height: calc(var(--vh, 1vh) * 100);  /* 避免使用硬編碼的 100vh */
    overflow: hidden;
}

/* 背景圖 */
.avs-lobby-background {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('/sites/zyxel/files/library/assets/products/ncc/avs-hotel-lobby-bg.jpg');
    background-size: cover;
    background-position: center;
}

.avs-conference-background {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('/sites/zyxel/files/library/assets/products/ncc/avs-hotel-conference-bg.jpg');
    background-size: cover;
    background-position: center;
}

.avs-room-background {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('/sites/zyxel/files/library/assets/products/ncc/avs-hotel-room-bg.jpg');
    background-size: cover;
    background-position: center;
}

.avs-network1-background {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('/sites/zyxel/files/library/assets/products/ncc/avs-hotel-network-bg.jpg');
    background-size: cover;
    background-position: center;
}

.avs-classroom-background {
    position: absolute;
    width: 100%;
    height: 100%;    	
	background-image: url('/sites/zyxel/files/library/assets/products/ncc/avs-school-classroom-bg.jpg');
    background-size: cover;
    background-position: center;
}

.avs-campus-background {
    position: absolute;
    width: 100%;
    height: 100%;
	background-image: url('/sites/zyxel/files/library/assets/products/ncc/avs-school-campus-bg.jpg');
    background-size: cover;
    background-position: center;
}

.avs-network2-background {
    position: absolute;
    width: 100%;
    height: 100%;
	background-image: url('/sites/zyxel/files/library/assets/products/ncc/avs-school-network-bg.jpg');
    background-size: cover;
    background-position: center;
}

.avs-storefront-background {
    position: absolute;
    width: 100%;
    height: 100%;
	background-image: url('/sites/zyxel/files/library/assets/products/ncc/avs-chain-storefront-bg.jpg');
    background-size: cover;
    background-position: center;
}

.avs-headquarters-background {
    position: absolute;
    width: 100%;
    height: 100%;
	background-image: url('/sites/zyxel/files/library/assets/products/ncc/avs-chain-headquarters-bg.jpg');
    background-size: cover;
    background-position: center;
}

.avs-kitchen-background {
    position: absolute;
    width: 100%;
    height: 100%;
	background-image: url('/sites/zyxel/files/library/assets/products/ncc/avs-chain-kitchen-bg.jpg');
    background-size: cover;
    background-position: center;
}

.avs-network3-background {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('/sites/zyxel/files/library/assets/products/ncc/avs-chain-network-bg.jpg');
    background-size: cover;
    background-position: center;
}

/* 圖標通用樣式 */
.avs-icon {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.avs-icon img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

/* 圖標懸停發光效果 */
.avs-icon {
    animation: avs-glow 1.5s infinite alternate;
}

@keyframes avs-glow {
    0% {
        box-shadow: 0 0 10px 3px rgba(20, 116, 0, 0.5);
    }
    100% {
        box-shadow: 0 0 20px 10px rgba(20, 116, 0, 0.8);
    }
}

.avs-icon:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
    animation-duration: 0.5s;
}

.avs-alert {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.avs-alert img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

/* 圖標懸停發光效果 */
.avs-alert {
    animation: avs-alert-glow 1.5s infinite alternate;
}

@keyframes avs-alert-glow {
    0% {
        box-shadow: 0 0 10px 3px rgba(255, 40, 55, 0.5);
    }
    100% {
        box-shadow: 0 0 20px 10px rgba(255, 40, 55, 0.8);
    }
}

.avs-alert:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
    animation-duration: 0.5s;
}

.avs-model {
    position: absolute;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    z-index: 10;
}

.avs-model img {
    width: 100%;
    height: 100%;
}

.avs-device {
    position: absolute;
    width: 100px;
    height: 100px;
    z-index: 10;
}

.avs-device img {
    width: 100%;
    height: 100%;
}

/* AP*/
.ap-wrapper {
  position: relative; /* 很關鍵：讓 glow-circles 以它為定位參考 */
  display: inline-block; /* 保持包住圖片的大小 */  
}

.ap-wrapper img {
  width: 130px;
  height: auto;
}

.ap-photo {
  position: relative;
  z-index: 2;
}

.avs-glow-circles {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.avs-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: avs-circle-glow 3s infinite;
}

.avs-circle1 {
  width: 150px;
  height: 150px;
  margin-left: -75px;
  margin-top: -75px;
  background-color: rgba(255, 120, 0, 0.3); /* 亮橘，幾乎不透明 */ 
  animation-delay: 0s;
}

.avs-circle2 {
  width: 300px;
  height: 300px;
  margin-left: -150px;
  margin-top: -150px;
  background-color: rgba(255, 165, 0, 0.2); /* 橘色，中度透明 */
  animation-delay: 1s;
}

.avs-circle3 {
  width: 500px;
  height: 500px;
  margin-left: -250px;
  margin-top: -250px;
  background-color: rgba(255, 200, 100, 0.2); /* 淡橘，較透明 */
  animation-delay: 2s;
}

@keyframes avs-circle-glow {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  30% {
    opacity: 1;
    transform: scale(1);
  }
  60% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}

/* 文字框通用樣式 */
.avs-text-box {
    position: absolute;
    width: 540px;
    padding: 15px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 20;
}

.avs-text-box.show {
  opacity: 1;
  visibility: visible;
  transform: scale(1);  
}

.avs-text-box p {
    color: #333;
    font-size: 14.5px;
}

.avs-text-box p a {
    color: #333;
	text-decoration: underline;
    transition: inherit;	
}

.avs-text-box p.title {
    color: #64be00;
    font-size: 16px;
    margin-bottom: 6px;	
}

.avs-text-box p.view {
    margin-top: 3px;
    text-align: right;
    padding-right: 6px;
}

/* 圖標位置 */
#avs-lobby-icon1 {
    top: 20%;
    left: 35%;
}

#avs-lobby-icon2 {
    top: 45%;
    left: 32%;
}

#avs-lobby-icon3 {
    top: 50%;
    left: 45%;
}

#avs-lobby-icon4 {
    top: 17%;
    left: 54%;
}

#avs-lobby-icon5 {
    top: 65%;
    left: 60%;
}

#avs-conference-icon1 {
    top: 14%;
    left: 52%;
}

#avs-conference-icon2 {
    top: 45%;
    left: 30%;
}

#avs-conference-model1 {
    top: 20%;
    left: 15%;
}

#avs-conference-model2 {
    top: 37%;
    left: 62%;
}

#avs-room-icon1 {
    top: 27%;
    left: 38%;
}

#avs-room-icon2 {
    top: 56%;
    left: 61%;
}

#avs-room-model1 {
    top: 68%;
    left: 34%;
}

#avs-room-model2 {
    top: 53%;
    left: 48%;
}

#avs-room-model3 {
    top: 37%;
    left: 64%;
}

#avs-room-model4 {
    top: 20%;
    left: 80%;
}

#avs-room-device1 {
    top: 56%;
    left: 22%;
}

#avs-room-device2 {
    top: 40%;
    left: 37%;
}

#avs-room-device3 {
    top: 26%;
    left: 52%;
}

#avs-room-device4 {
    top: 10%;
    left: 67%;
}

#avs-network1-icon1 {
    top: 13%;
    left: 61%;
}

#avs-network1-alert1 {
    top: 38%;
    left: 45%;
}

#avs-classroom-icon1 {
    top: 10%;
    left: 30%;
}

#avs-classroom-icon2 {
    top: 56%;
    left: 23%;
}

#avs-classroom-icon3 {
    top: 23%;
    left: 67%;
}

#avs-classroom-icon4 {
    top: 68%;
    left: 51%;
}

#avs-classroom-model1 {
    top: 27%;
    left: 36%;
}

#avs-classroom-model2 {
    top: 27%;
    left: 89%;
}

#avs-campus-icon1 {
    top: 33%;
    left: 27%;
}

#avs-campus-icon2 {
    top: 25%;
    left: 51%;
}

#avs-campus-ap1 {
    top: 39%;
    left: 37%;
}

#avs-campus-ap2 {
    top: 33%;
    left: 52%;
}

#avs-network2-icon1 {
    top: 21%;
    left: 38%;
}

#avs-network2-icon2 {
    top: 35%;
    left: 49%;
}

#avs-network2-icon3 {
    top: 50%;
    left: 38%;
}

#avs-network2-alert1 {
    top: 15%;
    left: 68%;
}

#avs-storefront-icon1 {
    top: 12%;
    left: 28%;
}

#avs-storefront-icon2 {
    top: 58%;
    left: 70%;
}

#avs-headquarters-icon1 {
    top: 12%;
    left: 28%;
}

#avs-headquarters-icon2 {
    top: 30%;
    left: 48.5%;
}

#avs-kitchen-icon1 {
    top: 14%;
    left: 60%;
}

#avs-kitchen-ap1 {
    top: 45%;
    left: 21%;
}

#avs-kitchen-ap2 {
    top: 30%;
    left: 35%;
}

#avs-kitchen-ap3 {
    top: 45%;
    left: 53%;
}

#avs-network3-icon1 {
    top: 21%;
    left: 38%;
}

#avs-network3-icon2 {
    top: 50%;
    left: 33%;
}

#avs-network3-alert1 {
    top: 7%;
    left: 66%;
}

/* 文字框位置 */
#avs-lobby-icon-text1 {
    top: 1%;
    left: 1%;
}

#avs-lobby-icon-text2 {
    top: 20%;
    left: 10%;
}

#avs-lobby-icon-text3 {
    top: 30%;
    left: 45%;
}

#avs-lobby-icon-text4 {
    top: 30%;
    left: 55%;
}

#avs-lobby-icon-text5 {
    top: 40%;
    left: 55%;
}

#avs-conference-icon-text1 {
    top: 30%;
    left: 30%;
}

#avs-conference-icon-text2 {
    top: 20%;
    left: 10%;
}

#avs-room-icon-text1 {
    top: 18%;
    left: 48%;
}

#avs-room-icon-text2 {
    top: 49%;
    left: 15%;
}

#avs-network1-icon-text1 {
    top: 7%;
    left: 17%;
}

#avs-network1-alert-text1 {
    top: 32%;
    left: 54%;
}

#avs-classroom-icon-text1 {
    top: 3%;
    left: 39%;
}

#avs-classroom-icon-text2 {
    top: 49%;
    left: 32%;
}

#avs-classroom-icon-text3 {
    top: 18%;
    left: 23%;
}

#avs-classroom-icon-text4 {
    top: 40%;
    left: 31%;
}

#avs-classroom-model-text1 {
    top: 40%;
    left: 44%;
}

#avs-classroom-model-text2 {
    top: 40%;
    left: 44%;
}

#avs-campus-icon-text1 {
    top: 27%;
    left: 36%;
}

#avs-campus-icon-text2 {
    top: 20%;
    left: 7%;
}

#avs-network2-icon-text1 {
    top: 12%;
    left: 48%;
}

#avs-network2-icon-text2 {
    top: 31%;
    left: 5%;
}

#avs-network2-icon-text3 {
    top: 45%;
    left: 48%;
}

#avs-network2-alert-text1 {
    top: 12%;
    left: 23%;
}

#avs-storefront-icon-text1 {
    top: 8%;
    left: 38%;
}

#avs-storefront-icon-text2 {
    top: 54%;
    left: 25%;
}

#avs-headquarters-icon-text1 {
    top: 8%;
    left: 38%;
}

#avs-headquarters-icon-text2 {
    top: 23%;
    left: 57%;
}

#avs-kitchen-icon-text1 {
    top: 9%;
    left: 15%;
}

#avs-network3-icon-text1 {
    top: 12%;
    left: 48%;
}

#avs-network3-icon-text2 {
    top: 44%;
    left: 42%;
}

#avs-network3-alert-text1 {
    top: 1%;
    left: 22%;
}

@media screen and (max-width: 768px) {
    .avs-text-box {
        width: 85%; /* 改為百分比寬度 */
        max-width: 540px; /* 最大寬度限制 */
        left: 50% !important; /* 水平置中 */
        transform: translateX(-50%) scale(0.95); /* 水平置中並保持原有縮放效果 */
        /* 不同狀態下的位置調整 */
        top: 50% !important; /* 垂直置中 */
        margin-top: -100px; /* 往上調整位置，可根據需要修改 */
    }
    
    /* 顯示時的變換效果需要調整 */
    .avs-text-box.show {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) scale(1); /* 保持水平置中 */
    }
    
    /* 圖標大小調整 */
    .avs-icon {
        width: 60px;
        height: 60px;
    }
    .avs-model {
        width: 100px;
        height: 100px;
    }	
	    
    /* 根據需要調整圖標位置 */
    #avs-lobby-icon1 { top: 22%; left: 25%; }
    #avs-lobby-icon2 { top: 48%; left: 20%; }
    #avs-lobby-icon3 { top: 55%; left: 50%; }
    #avs-lobby-icon4 { top: 20%; left: 60%; }
    #avs-lobby-icon5 { top: 65%; left: 65%; }
	#avs-conference-icon1 { top: 14%; left: 52%;}
	#avs-conference-icon2 { top: 45%; left: 15%;}
	#avs-conference-model1 { top: 8%; left: 5%;}
	#avs-conference-model2 { top: 33%; left: 70%;}
    #avs-room-icon1 { top: 28%; left: 29%; }	
    #avs-room-icon2 { top: 65%; left: 81%; }		
    #avs-room-model1 { top: 68%; left: 25%; }	
    #avs-room-model2 { top: 55%; left: 48%; }	
    #avs-room-model3 { top: 41%; left: 72%; }
    #avs-room-model4 { top: 25%; left: 90%; }		
    #avs-room-device1 { top: 55%; left: 2%; }	
	#avs-room-device2 { top: 40%; left: 28%; }	
	#avs-room-device4 { top: 10%; left: 80%; }	
	#avs-network1-icon1 { top: 16%; left: 73%;}
    #avs-classroom-icon1 { top: 10%; left: 18%; }
    #avs-classroom-icon2 { top: 59%; left: 6%; }
    #avs-classroom-icon3 { top: 26%; left: 73%; }
    #avs-classroom-icon4 { top: 70%; left: 60%; }	
    #avs-classroom-model1 { top: 27%; left: 32%; }		
	#avs-campus-icon1 { top: 33%; left: 10%; }
	#avs-campus-icon2 { top: 30%; left: 51%; }
	#avs-campus-ap1 { top: 39%; left: 27%; }
	#avs-campus-ap2 { top: 33%; left: 52%; }
	#avs-network2-icon1 { top: 24%; left: 30%;}	
	#avs-network2-alert1 { top: 18%; left: 70%;}	
	#avs-storefront-icon1 { top: 15%; left: 12%;}	
	#avs-storefront-icon2 { top: 61%; left: 82%;}	
	#avs-headquarters-icon1 { top: 18%; left: 28%;}	
	#avs-headquarters-icon2 { top: 34%; left: 48.5%;}
	#avs-kitchen-icon1 { top: 18%; left: 74%;}	
	#avs-network3-icon1 { top: 27%; left: 30%;}	
	#avs-network3-icon2 { top: 47%; left: 26%;}		
	#avs-network3-alert1 { top: 5%; left: 74%;}	
}

@media screen and (max-width: 480px) {
    .avs-text-box {
        width: 90%; /* 更小螢幕上更寬的比例 */
        padding: 12px; /* 減少內邊距 */
    }
    
    .avs-text-box h3 {
        font-size: 16px; /* 縮小標題 */
        margin-bottom: 8px;
    }
    
    .avs-text-box p {
        font-size: 13px; /* 縮小文字 */
    }
    
    /* 更小的圖標 */
    .avs-icon {
        width: 50px;
        height: 50px;
    }
}


/* Plans and Pricing */
.sticky-header {
  position: fixed;
  top: 75px; /* 頁面 header 高度 */
  z-index: 998;
  background: white;
  display: none;
  width: 100%;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid #eee !important;
  table-layout: fixed;
}

/* 加上 sticky-active 時，讓 tbody 有間距不被蓋住 */
#nebula-pack-table.sticky-active {
  margin-top: 60px; /* 視你的 sticky-header 高度調整 */
}

.pb100{
	padding-bottom: 100px;	
}

.plans-section{
    width: 40%;
    text-align: center;
    margin: 0 auto;
}

.plans-section .frame .content h6{
    font-weight: bold;
}

@media screen and (max-width: 1601px) {
.plans-section{
    width: 55%;
}
}

@media screen and (max-width: 1025px) {
.plans-section{
    width: 85%;
}
}

/* start */
.plans-frame {
	 background:url('/sites/zyxel/files/library/assets/products/ncc/resources-frame.jpg') no-repeat center;
	 height:auto;
	 background-size:cover;
	 position:relative;
	padding-bottom: 60px;	 
}

.plans-category .nav-tabs {
    margin: 0 auto;
    display: flex;
    width: 100%;
    text-align: center;
    justify-content: center;
    position: relative;
    border-bottom: 2px solid #64be00; 
}

.plans-category .nav-tabs>li {
    position: relative;
    padding: 0px;
	margin-bottom: -2px;
}

.plans-category .nav-tabs>li>a {
    color: #000;
    font-size: 20px !important;
    padding: 10px 20px;
    display: block;
    text-decoration: none;
    position: relative;
    z-index: 1;
}

.plans-category .nav-tabs>li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: transparent; 
    z-index: -1;
}

.plans-category .nav-tabs>li.active>a,
.plans-category .nav-tabs>li.active>a:focus,
.plans-category .nav-tabs>li.active>a:hover {
    color: #64be00;
	border-bottom: 2px solid #ffffff;	
    border-top: 2px solid #64be00;  
    border-right: 2px solid #64be00; 
    border-left: 2px solid #64be00;  
    font-weight: bold;
    position: relative;
    z-index: 2; 
	text-decoration: none;
}

.plans-category .nav-tabs>li.active::after {
    background-color: white; /* White line under the active tab */
}

@media (max-width: 450px) {
.plans-category .nav-tabs li {
    margin: 0px;
}
.plans-category .nav-tabs>li>a {
    padding: 10px;
}
}

.plans-category  .plans-content {
	flex-wrap: wrap;
    display: flex;
    width: 100%;
	align-items: stretch;
	justify-content: center; /* 水平置中 */	
}

.plans-category  .plans-content .text {
	width: calc(100% / 3);
    padding: 0px 20px;
    display: flex;
    flex-direction: column;
}

.plans-category  .plans-content .text.one-col {
	width: calc(100% / 1);
}

.plans-category  .plans-content .text .card {
	border-radius: 20px;
	flex-grow: 1; /* 讓所有卡片填滿可用高度 */
    position: relative; /* 讓內部的絕對定位元素相對於此卡片 */
    padding-bottom: 60px; /* 預留空間給按鈕，避免內容被擠壓 */
}

.plans-category  .plans-content .text .card img {
	width: 20%!important;
}

.plans-category .plans-content .text.one-col .card img {
    width: 5.5% !important;
}

.plans-category  .plans-content .text .card .description .icon {
    display: flex;
    justify-content: center; /* 水平置中 */
    align-items: center;     /* 垂直置中（如果有高度） */	
}

.plans-category  .plans-content .text .card .description .icon p{
	margin-left: 15px;	
}

.plans-category  .plans-content .text .card .description .title {
    padding-top: 15px;
	text-align: center;
}

.plans-category  .plans-content .text .card .description .define {
	font-size:15px;
	text-align: center;	
}

.plans-category .plans-content .text.one-col .card .description .define {
    width: 50%;
    margin: 0 auto;
}

.plans-category  .plans-content .text .card .description .fee {
	text-align: center;
}

.plans-category  .plans-content .text .card .description .fee a, .plans-category  .plans-content .text .card .description .fee a:hover {
    text-decoration: underline;	
}

.plans-category  .plans-content .text .card .description .cover {
	font-size:15px;
}

.plans-category  .plans-content .text .card .description span {
	font-size:12px;
}

.plans-category  .plans-content .text .card .description ul {
	padding-left: 1.2em; /* 根據需求調整縮排 */	
}

.plans-category  .plans-content .text .card .description ul.custom-checklist {
  list-style: none; /* 取消原本的圓點 */
  margin: 0;
  padding: 0;
}

.plans-category  .plans-content .text .card .description ul.custom-checklist  li {
  position: relative;
  padding-left: 1.5em;     /* 為符號留出空間 */
  text-indent: 0;          /* 避免多餘縮排 */
}

.plans-category  .plans-content .text .card .description ul.custom-checklist li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
}
	
.plans-category  .plans-content .text .card .description .button {
	padding-top:50px;
}

.plans-category  .plans-content .text .card .description .btn-call-to-action {
	background-color: #64be00;
	position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    text-align: center;
}

@media screen and (max-width: 1025px) {
.plans-frame {
    height: auto;
}
.plans-category .plans-content .text {
    width: calc(100% / 3);
}
}

@media screen and (max-width: 991px) {
.plans-category .plans-content .text.one-col .card img {
    width: 8.5% !important;
}
.plans-category .plans-content .text {
    width: calc(100% / 2);
}
}

@media screen and (max-width: 500px) {
.plans-category .plans-content .text.one-col .card img {
    width: 20% !important;
}	
.plans-category .plans-content .text {
    width: 100%;
}
.plans-category .plans-content .text.one-col .card .description .define {
    width: 100%;
}
.plans-category  .plans-content .text .card .description .btn-lg{
	padding: 0px 16px;
}
}

/* Plans and Pricing Table */
#specifications .btn-outline,
#specifications .btn-outline:active,
#specifications .btn-outline:focus,
#specifications .btn-outline:hover {
    color: #6CBE45!important;
    border-color: #6CBE45!important;
    font-weight: 600
}

#specifications ol li,
#specifications ul li {
    margin-left: 20px;
}

#specifications {
    max-width: 1320px !important;
    margin: auto;
    width: auto;
}

#specifications .table-bordered>thead>tr>th {
    vertical-align: bottom;
}

#specifications .table-bordered>thead>tr>th,
#specifications .table-bordered>thead>tr>td,
#specifications .table-bordered>tbody>tr>th,
#specifications .table-bordered>tbody>tr>td,
#specifications .table-bordered>tfoot>tr>th,
#specifications .table-bordered>tfoot>tr>td {
    border: none;;
}

.table-scroller {
    width: auto !important;
    margin-top: 40px !important;
}

.table-scroller table {
  border-collapse: separate;
  border-spacing: 10px; /* 控制欄位間的白色間隔 */
}  

table.sticky-header {
  border-collapse: separate;
  border-spacing: 10px; /* 控制欄位間的白色間隔 */
}  

table.sticky-header thead tr th:first-child   {
	border: none;
}  
  
.specifications-container .table.table-specifications tr th {
    height: 50px;
}

.specifications-container .table.table-specifications .accordian-body td {
  background-color: #f5f5f5;
  border-radius: 10px;
  padding: 12px 16px;
  border: none;
  text-align: center;  
}

.specifications-container .table.table-specifications th.pack {
    padding: 30px;
    margin-bottom: 15px;
    border: 1px solid #eee!important;
    border-radius: 20px;	
    background-color: #fff;
    transition: all .22s;
    position: relative;
    align-content: flex-start;	
}

table.sticky-header thead th.pack {
    padding: 30px;
    margin-bottom: 15px;
    border: 1px solid #eee!important;
    border-radius: 20px;	
    background-color: #fff;
    transition: all .22s;
    position: relative;
    align-content: flex-start;	
	text-align: center;
}

.specifications-container .table.table-specifications th.pack:hover {
    -webkit-box-shadow: 0 0 21px -3px rgba(0, 0, 0, 0.18);
    -moz-box-shadow: 0 0 21px -3px rgba(0,0,0,0.18);
    box-shadow: 0 0 21px -3px rgba(0, 0, 0, 0.18);
    -ms-transform: scale(1.01, 1.01);
    -webkit-transform: scale(1.01, 1.01);
    transform: scale(1.01, 1.01);
}

table.sticky-header thead th.pack:hover {
    -webkit-box-shadow: 0 0 21px -3px rgba(0, 0, 0, 0.18);
    -moz-box-shadow: 0 0 21px -3px rgba(0,0,0,0.18);
    box-shadow: 0 0 21px -3px rgba(0, 0, 0, 0.18);
    -ms-transform: scale(1.01, 1.01);
    -webkit-transform: scale(1.01, 1.01);
    transform: scale(1.01, 1.01);
}

.specifications-container .table.table-specifications th .icon {
    margin-bottom: 10px;
}

table.sticky-header thead th .icon {
    margin-bottom: 10px;
}
	
.specifications-container .table.table-specifications th .icon img {
    width: 25% !important;
    margin: 0 auto;
}

table.sticky-header thead th .icon img {
    width: 25% !important;
    margin: 0 auto;
}

.specifications-container .table.table-specifications th p {
    color: #000000;
	font-weight: 400;
}

table.sticky-header thead th p {
    color: #000000;
	font-weight: 400;
}

.specifications-container .table.table-specifications th p.fee {
    font-size: 16px;
}

table.sticky-header thead th p.fee {
    font-size: 16px;
}

.specifications-container .table.table-specifications th p.fee a, .specifications-container .table.table-specifications th p.fee a:hover {
    text-decoration: underline;	
}

table.sticky-header thead th p.fee a, table.sticky-header thead th p.fee a:hover {
    text-decoration: underline;	
}

.specifications-container .table.table-specifications .accordian-body td img {
    width: 15px !important;
}

.specifications-container .table-scroller {
    border: none;
}

.specifications-container .table-scroller thead {
    border: none;
}

.specifications-container .table.table-specifications tr.accordion-toggle {
    border-top: 1px solid #6CBE45;
    border-bottom: 1px solid #6CBE45;
}

.specifications-container .table.table-specifications tr.accordian-body {
    border-top: 0.5px solid #c8c8c8;
}

.specifications-container .table.table-specifications tr.accordion-toggle td {
    position: relative;	
    background-color: transparent;
	height: fit-content !important;	
}

.specifications-container .table.table-specifications tr.accordion-toggle td:before {
    font-family: FontAwesome;
	content: "\f054";
	color: #000000;	
    font-size: 16px;
    display: inline-block;
    width: 16px;
    height: 16px;
    line-height: 16px;
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
}

.specifications-container .table.table-specifications tr.accordion-toggle td.active:before {
	content: "\f078";
}

.specifications-container .table.table-specifications tr.accordion-toggle td strong {
    display: block;
    white-space: nowrap;
}

.specifications-container .table.table-specifications tr.accordian-body:last-child {
    border-bottom: 0.5px solid #c8c8c8 !important;
}

.specifications-container .table.table-specifications tr.accordian-body td:first-child {
	text-align: left;
}

.specifications-container.one-product .table.table-specifications tr td:first-child,
.specifications-container.one-product .table.table-specifications tr th,
.specifications-container.one-product .table.table-specifications tr th:first-child {
    max-width: 50% !important;
}

.specifications-container.two-products .table.table-specifications tr td:first-child,
.specifications-container.two-products .table.table-specifications tr th,
.specifications-container.two-products .table.table-specifications tr th:first-child {
    max-width: 33.33% !important;
}

.specifications-container.three-products .table.table-specifications tr td:first-child,
.specifications-container.three-products .table.table-specifications tr th,
.specifications-container.three-products .table.table-specifications tr th:first-child {
    max-width: 25% !important;
}
.specifications-container.four-products .table.table-specifications tr td:first-child,
.specifications-container.four-products .table.table-specifications tr th,
.specifications-container.four-products .table.table-specifications tr th:first-child {
    max-width: 20% !important;
}
	
@media  screen and (max-width: 1024px) {
    #table-header.fixed {
        display: none;
    }

    [id^=table-scroller] {
        overflow-x: auto !important;
        border: 1px solid #c8c8c8 !important;
    }
}

@media screen and (max-width: 1200px) {
    .table-specifications tr td:first-child {
		background-color: inherit !important;
    }
}

.specifications-container .table.table-specifications tr.accordian-body td:first-child {
	background-color: #f5f5f5 !important;
}

td.accordion-toggle-cell {
    background-color: #f5f5f5 !important;
    border-radius: 10px !important;
}

td.accordion-toggle-cell.active {
    background-color: transparent !important;
    border-radius: unset !important;
}

tr.accordion-toggle {
  cursor: pointer;
}