.stemp-sec2 .grid-prices {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 5px;
}
.stemp-sec2 .grid-prices:after {
	content: none;
}
.stemp-sec2 .pricing-table {
	border: 1px solid #eee;
}
.stemp-sec2 .pricing-table .title {
	border: none;
	background: none;
	text-align: left;
	font-size: 26px;
	padding: 20px 20px 10px;
}
.stemp-sec2 .pricing-table .price {
	padding: 0 20px;
	text-align: left;
	font-size: 22px;
	color: var(--primary-color);
	position: relative;
	width: fit-content;
	margin: 0;
	font-weight: 700;
}
.stemp-sec2 .pricing-table .price:after {
	content: "vnđ/tháng";
	position: absolute;
	top: 0;
	left: calc(100% - 20px);
	font-size: 16px;
}
.stemp-sec2 .pricing-table .items {
	padding: 10px 20px;
}
.stemp-sec2 .pricing-table .items .bullet-item {
	text-align: left;
	font-size: 14px;
	position: relative;
}
.stemp-sec2 .pricing-table .items .bullet-item:before {
	font-family: "Font Awesome 6 Free"; 
    font-weight: 900; 
    content: "\f058"; 
	margin-right: 5px;
	color: var(--primary-color);
}
.stemp-sec2 .pricing-table .button {
	padding: 0 20px; 
	width: 100%;
}
.stemp-sec2 .featured-price {
	overflow: hidden;
	position: relative;
}
.stemp-sec2 .featured-price .price {
	color: #ffe351;
}
.stemp-sec2 .featured-price:after {
	content: "PHỔ BIẾN";
	position: absolute;
	top: 15px; 
	right: -30px; 
	transform: rotatez(45deg);
	font-size: 12px;
	background: #ffe351;
	padding: 4px 28px;
	color: var(--primary-color);
	line-height: normal;
	font-weight: 700;
}
.stemp-sec2 .featured-price .items .bullet-item:before {
	color: #ffe351;
}
.stemp-sec2 .featured-price .button {
	background: #fff;
	border: 1px solid #fff;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
	color: var(--primary-color);
}
.stemp-sec2 .tabbed-content .nav {
	gap: 10px;
}
.stemp-sec2 .tabbed-content .nav .tab {
	background: #fff0f080;
}
.stemp-sec2 .tabbed-content .nav .tab a{
	border-radius: 6px;
	padding: 4px 34px;
	color: #222;
	font-size: 16px;
}
.stemp-sec2 .tabbed-content .nav .tab.active a {
	color: #fff;
}
@media (max-width: 849px) {
	.stemp-sec2 .tabbed-content .nav {
		overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
		width: max-content;
		flex-wrap: nowrap;
		justify-content: left;
	}
	.stemp-sec2 .tab-panels{
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}
    .stemp-sec2 .grid-prices {
		width: max-content;
    }

    .stemp-sec2 .tab-panels::-webkit-scrollbar, .stemp-sec2 .tabbed-content .nav::-webkit-scrollbar  {
        display: none; 
    }
}