.blog-page {
  position: relative;
  margin: 60px 0 0;
  padding: 0 16px;
  background-color: #f5f5f5;
  min-height: 80vh;
}

.container {
  max-width: 1200px;
  margin: 28px auto;
  padding: 16px;
}

.breadcrumb {
  display: flex;
  background-color: unset;
  align-items: center;
  font-size: 14px;
  color: #666;
  gap: 6px;
  white-space: nowrap;
  margin: 0;
  padding: 0;
}

.breadcrumb-blog-detail {
  margin: 0px 0 12px !important;
}

.breadcrumb a {
  color: #666;
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: #1b7ea1;
}

.breadcrumb .sep {
  opacity: 0.6;
}

.breadcrumb .current {
  color: #222;
  font-weight: 500;
}

.blog-page-header {
  font-size: 20px;
  font-weight: 700;
}

header.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
}
.brand h1 {
  font-size: 20px;
  letter-spacing: 0.2px;
}

nav.top-nav {
  display: flex;
  gap: 12px;
}
nav.top-nav a {
  color: #444;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
}
nav.top-nav a:hover {
  background: #f5f5f7;
}

.news-header {
  margin: 24px 0;
}

.news-title {
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 16px;
}

.menu-item a {
  border-radius: 0 !important;
  border: 1px solid #a9b2be !important;
}

.menu-item a:hover {
  border-color: #2199c4 !important;
}

.menu-item .more-drop {
  border-radius: 0 !important;
}

.news-categories {
  display: flex;
  gap: 14px;
  margin: 0 0 12px 0;
  justify-content: space-between;
}

.news-categories a {
  display: flex;
  overflow: hidden;
  max-width: 200px;
  align-items: center;
  padding: 8px 14px;
  border-radius: 24px;
  font-size: 14px;
  color: #333;
}

.news-categories a.active {
  background: #2199c4 !important;
  border-color: #2199c4 !important;
  color: #fff !important;
  font-weight: 600;
  border: 1px solid #a9b2be;
}

.news-categories a:hover {
  color: #2199c4;
}

.more-wrap {
  position: relative;
}

.more-btn {
  width: 34px;
  height: 34px;
  border: none;
  background: #f2f2f2;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.more-btn span {
  width: 4px;
  height: 4px;
  background: #333;
  display: block;
  border-radius: 50%;
  margin: 2px 0;
}

/* DROPLIST */
.more-drop {
  position: absolute;
  top: 42px;
  right: 0;
  width: 150px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.13);
  overflow: hidden;
  border: 1px solid #eee;
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.95);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.more-drop a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  color: #333;
  /* border-bottom: 1px solid #f4f4f4; */
  border-radius: 0;
  border: none !important;
  background: none;
}

.more-drop a:last-child {
  border-bottom: none;
}

.more-drop a:hover {
  background: #f6f6f6;
}

/* TRIGGER */
#more-toggle {
  display: none;
}

#more-toggle:checked + .more-btn + .more-drop {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

#more-toggle-bottom {
  display: none;
}

#more-toggle-bottom:checked + .more-btn + .more-drop {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 18px;
  margin: 20px 0;
}
.hero .hero-card {
  /* position: relative; */
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  color: #333333;
}
.category-blog-page .hero-card:hover .meta-title{
  color: #2199c4;
}
.hero .hero-card .hero-link{
  display: block;
  overflow: hidden;
  height: 336px;
}
.hero .hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.category-blog-page .hero .hero-card img {
  width: 100%;
  height: auto;
  max-height: 320px;
}
.hero .hero-card .meta {
  padding: 0 12px;
}

.category-blog-page .hero .meta-description {
  font-size: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hero .hero-card a:hover {
  color: var(--primary) !important;
}
.hero .hero-card a:hover img{
  transition: transform 0.4s ease;
  transform: scale(1.08);
}
.meta-tag {
  display: flex;
  font-weight: 600;
  border-radius: 4px;
  width: fit-content;
  margin: 12px 0;
}
.meta-title {
  margin: 8px 0;
  font-size: 20px;
  font-weight: 600;
}
.meta-title a {
  color: #333333;
}
.hero .small-list {
  display: flex;
  flex-direction: column;
}
.small-card {
  display: flex;
  gap: 12px;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
  background: #fff;
  margin-bottom: 12px;
}
.small-card:last-child {
  margin-bottom: 0;
}
.small-card:hover .small-card-content-title, 
.small-card:hover .small-card-content-title a{
  color: #1b7ea1;
}
.small-card img {
  width: 120px;
  min-width: 120px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.small-card:hover img{
  transform: scale(1.08)
}
.small-card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.small-card-content-title {
  font-size: 17px;
  font-weight: 600;
  margin: 0;
  color: #333333;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.small-card-content-title a{
  color: #333333;
}

.small-card-content-time {
  font-size: 13px;
  color: #888;
}

/* Grid */
.category-blog-page .blog-content,
.detail-blog-page .blog-content {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 20px;
  margin-top: 22px;
}
.list-articles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.category-blog-page .list-articles {
  display: flex;
  gap: 16px;
  flex-direction: column;
}
.articles {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 12px;
  color: unset;
  overflow: hidden;
}
.category-blog-page .articles {
  flex-direction: row;
  gap: 12px;
  padding-right: 24px;
}
.articles-description {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.articles:hover {
  color: unset;
  /* background-color: #d2eaed; */
}
.articles:hover img {
  transform: scale(1.08);
}

.articles:hover .articles-title {
  color: #3c8dbc;
}
.articles-img {
  max-height: 180px;
  overflow: hidden;
}
.category-blog-page  .articles-img {
  max-height: unset;
  max-width: 150px;
  overflow: hidden;
  aspect-ratio: 1/1;
}
.articles-img img {
  width: 100%;
  height: 100%;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.category-blog-page .articles-img img {
  border-top-right-radius: 0;
}
.articles-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
}
.articles-info .articles-meta-tag {
  display: flex;
  border-radius: 4px;
  width: fit-content;
  background: #43bfe31a;
  padding: 2px 4px;
  margin: 10px 0;
}
.articles-meta {
  display: flex;
  align-items: center;
  gap: 4px;
}
.articles-meta .articles-meta-tag {
  display: none;
}
.articles-title {
  font-size: 17px;
  font-weight: 600;
  margin: 12px 0;
}
.articles-content-wrapper {
  padding: 0 12px 12px 12px;
}
.articles-time {
  padding: 0 12px 12px 12px;
  color: #5e6a78;
}
.category-blog-page .articles-time {
  padding: 0;
}
.category-blog-page .articles-meta {
  margin-bottom: 12px;
}
.articles-description {
}
.article-card {
  background: white;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 6px 18px rgba(23, 23, 23, 0.04);
  display: flex;
  gap: 12px;
}
.article-card img {
  width: 160px;
  height: 110px;
  border-radius: 8px;
  object-fit: cover;
}
.article-card .info h3 {
  font-size: 16px;
  margin-bottom: 6px;
}
.article-card .info p {
  font-size: 13px;
  color: #666;
}

.load-more {
  margin: 0 auto;
  display: flex;
  width: fit-content;
  padding: 12px 16px;
  border-radius: 24px;
  font-weight: 600;
  color: var(--primary, #2199c4);
  background-color: #fff;
  cursor: pointer;
  border: 1px solid var(--primary, #2199c4);
  margin-top: 12px;
}

.load-more:hover {
  color: #fff;
  background-color: var(--primary, #2199c4);
  border: 1px solid var(--primary, #2199c4);
}

/* Sidebar */
.sidebar-item-title {
  background-color: #43bfe31a;
  color: #333333;
  padding: 10px 12px;
  border-radius: 6px;
  margin: 0;
  margin-bottom: 12px;
}
.register-title {
  color: #595959;
  margin: 6px 0 8px;
}
.sidebar-item-content {
  padding: 0 12px;
}
.sidebar-item-content .input-wrapper {
  display: flex;
  align-items: center;
}
.sidebar-item-content input {
  height: 38px;
}
.sidebar-item-content .btn-submit-email {
  height: 36px;
  line-height: 36px;
  padding: 0 36px;
  background-color: #1b7ea1;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  color: #fff;
  cursor: pointer;
}

.blog-sidebar li {
  font-size: 16px;
  margin-bottom: 4px;
}
.blog-sidebar a {
  color: initial;
}
.blog-sidebar a:hover {
  color: #1b7ea1;
}

.sidebar-item-content .btn-submit-email:hover {
  background-color: #3c8dbc;
}

.download-app {
  margin-top: 12px;
}

.download-app-top {
  background-color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #d1d1d1;
  padding: 10px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom: none;
}

.download-app-top img {
  min-width: 80px;
  width: 80px;
  height: 80px;
}

.download-app-bottom {
  background-color: #fff;
  text-align: center;
  border: 1px solid #d1d1d1;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  padding: 10px;
}

.download-app .download-app-top a,
.download-app .download-app-bottom a {
  color: #333333;
  font-size: 16px;
}

/* Best seller */
/* container wrapper */
.best-seller-slider {
  position: relative;
  padding: 8px 0;
}

/* để slide auto flex theo tính toán Swiper */
.best-seller-slider .swiper-wrapper {
  align-items: stretch;
}

/* mỗi slide dạng block, không ép width */
.best-seller-slider .swiper-slide {
  box-sizing: border-box;
  /* không set width ở đây (để Swiper tính toán) */
  padding: 6px;
}

/* item bên trong slide */
.best-seller-slider .item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.best-seller-slider .item img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 6px;
}

/* nav buttons */
.best-seller-slider .swiper-button-next,
.best-seller-slider .swiper-button-prev {
  background: #fff;
  border: 1px solid #ddd;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 32px 0;
  font-size: 14px;
}

.pagination a,
.pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  min-width: 34px;
  padding: 0 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  color: #333;
  background: #fff;
  transition: 0.2s ease;
  cursor: pointer;
}

.pagination a:hover {
  background: #f2f2f2;
}

.pagination .active {
  background: #1b7ea1;
  color: #fff;
  border-color: #1b7ea1;
}

.pagination .dots {
  border: none;
  background: transparent;
  cursor: default;
}

.pagination .prev,
.pagination .next {
  font-size: 16px;
}

#toc {
  border: 1px solid rgba(67 191 227 / 30%);
  background-color: #ecf8fc;
  padding: 10px 16px;
  border-radius: 6px;
  width: 100%;
  color: #23527c;
  margin: 12px 0 20px;
  line-height: 22px;
  min-height: 130px;
}

#toc ol,
#toc ul {
  margin-top: 0;
}

ol {
  list-style: decimal;
}

ul,
ol {
  padding-left: 20px;
}

#toc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  font-size: 100%;
  font-weight: 700;
}

#toc-header.open span {
  transform: rotate(180deg);
}

.is-blogpage {
  --relatedImage: 120px;
  --side: 406px;
}

.slide-feature-sidebar .related-product-image {
  width: 52px;
  height: 52px;
}

.slide-feature-sidebar .icon-addtocart {
  right: 0;
}

#blogpage {
  padding-right: 32px;
}

.sidebar-feature .headline {
  font-size: 16px;
}

.related-category-link {
  text-align: center;
  margin: 20px 0px;
}

.related-category-link {
  display: flex;
  justify-content: center;
  align-items: center;
}

.readmore-box {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 12px;
}

.readmore-link {
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 10px 8px;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 8px;
  line-height: 20px;
  cursor: pointer;
  background-color: #fff;
  border-radius: 3px;
  text-align: center;
  transition: none;
}

.readmore-link:hover {
  color: var(--white);
  background-color: var(--primary);
}

#compare-product-box-tbl table tr td:not(:first-child) {
  width: 180px;
  min-width: 180px;
}

#compare-product-box-tbl {
  width: 100%;
  max-height: 60vh;
  overflow: auto;
  scrollbar-width: auto;
}

#compare-product-box-tbl::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

#compare-product-box-tbl::-webkit-scrollbar-thumb {
  width: 8px;
  border-radius: 4px;
  background-color: #c1c1c1;
}

#compare-product-box-tbl::-webkit-scrollbar-thumb {
  width: 6px;
  border-radius: 4px;
  background-color: #d1d1d1;
}

#compare-product-box-tbl::-webkit-scrollbar-track {
  padding: 6px;
}

#compare-product-box-tbl table tr td:first-child {
  min-width: 200px;
  position: sticky;
  left: 0;
  background: #f3f6f9;
  z-index: 1;
  box-shadow: 7px 0 7px rgba(105, 101, 101, 0.15);
}

#compare-product-box-tbl table {
  position: relative;
  border: 0;
}

#compare-product-box-tbl td {
  border: 0;
  border-bottom: 1px solid #e7e7e7;
  padding: 10px 16px;
}

#compare-product-box-tbl tr:first-child td {
  background: #f3f6f9;
  font-weight: 600;
}

#compare-product-box-tbl tbody {
  border: 0;
}

#compare-product-box-tbl .compare-product-long-text {
  min-width: 200px;
  white-space: normal;
  max-width: 200px;
}

#compare-product-box-tbl table tr:first-child,
#compare-product-box-tbl-no-fix table tr:first-child {
  position: sticky;
  top: 0;
  z-index: 9;
}

#compare-product-box-tbl-no-fix table tr td:not(:first-child) {
  width: 180px;
  min-width: 180px;
}

#compare-product-box-tbl-no-fix {
  width: 100%;
  max-height: 60vh;
  overflow: auto;
  scrollbar-width: auto;
}

#compare-product-box-tbl-no-fix::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

#compare-product-box-tbl-no-fix::-webkit-scrollbar-thumb {
  width: 8px;
  border-radius: 4px;
  background-color: #c1c1c1;
}

#compare-product-box-tbl-no-fix::-webkit-scrollbar-thumb {
  width: 6px;
  border-radius: 4px;
  background-color: #d1d1d1;
}

#compare-product-box-tbl-no-fix::-webkit-scrollbar-track {
  padding: 6px;
}

#compare-product-box-tbl-no-fix table tr td:first-child {
  min-width: 180px;
  background: #f3f6f9;
  z-index: 1;
}

#compare-product-box-tbl-no-fix table {
  position: relative;
  border: 0;
}

#compare-product-box-tbl-no-fix td {
  border: 0;
  border-bottom: 1px solid #e7e7e7;
  padding: 10px 16px;
}

#compare-product-box-tbl-no-fix tr:first-child td {
  background: #f3f6f9;
  font-weight: 600;
}

#compare-product-box-tbl-no-fix tbody {
  border: 0;
}

#compare-product-box-tbl-no-fix .compare-product-long-text {
  min-width: 200px;
  white-space: normal;
  max-width: 200px;
}

.box-detail.customerSurvey {
  background: #fff;
  padding: 20px 0;
  border: 2px solid #00000040;
  border-radius: 8px;
  width: fit-content;
  min-width: 300px;
  margin: 20px auto;
  text-align: center;
  position: relative;
}

.box-detail.customerSurvey .container {
  font-size: 16px;
  line-height: 16px;
  display: inline-flex;
  margin-top: 10px;
  justify-content: center;
  width: 100%;
}

.action-survey button img {
  mix-blend-mode: multiply;
  filter: grayscale(100%);
  transition: all 0.2s;
}

.action-survey button:hover img,
.action-survey button.active img {
  filter: grayscale(0%);
  transition: all 0.3s;
}

.action-survey button.icon-action-smile {
  border-right: 1px solid #00000040;
}

.toast-message-review {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #222;
  font-size: 14px;
  color: #fff;
  display: none;
  justify-content: center;
  align-items: center;
  grid-gap: 5px;
  padding: 10px 20px;
  min-width: 280px;
  border-radius: 8px;
  z-index: 9999;
}

.toast-message-review.active {
  display: flex;
  opacity: 1;
  animation: animateToastMess 1.5s linear forwards;
}

.action-survey button {
  background: #fff;
  border: none;
  padding: 0 20px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  border-radius: 0;
  transition: all 0.3s ease;
}

@keyframes animateToastMess {
  0% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.box-detail.customerSurvey .container a {
  border: 1px solid var(--primary);
  border-radius: 2px;
  margin-left: 12px;
  width: 80px;
  text-align: center;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.13s;
  color: #333;
}

.box-detail.customerSurvey .container a svg {
  display: none;
}

.box-detail.customerSurvey .container a.check {
  background: var(--primary);
  color: #fff;
}

.box-detail.customerSurvey .container a.check svg {
  display: inline-block;
}

.box-detail.customerSurvey .container a img {
  width: 11px;
  display: none;
  margin: 0 4px 0 0;
}

.box-detail.customerSurvey .container a.check img {
  display: initial;
}

.box-detail.customerSurvey .reviewContent {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 90%;
  background: #fff;
  border: 1px solid #ccc;
  box-sizing: border-box;
  border-radius: 2px;
  padding: 20px;
  font-size: 14px;
  line-height: 16px;
  z-index: 99;
  text-align: center;
  width: 600px;
  max-width: 100%;
}

.box-detail.customerSurvey .reviewContent#popUp1 {
  color: #08a811;
}

.box-detail.customerSurvey .reviewContent .ClosePopup {
  position: absolute;
  right: 10px;
  top: 5px;
  width: 12px;
}

.box-detail.customerSurvey .reviewContent a.ClosePopup img {
  width: 100%;
  margin: auto;
}

.box-detail.customerSurvey .reviewContent#popUp2 {
  padding: 20px;
  top: calc(100% + 30px);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 3px;
}

.box-detail.customerSurvey .reviewContent#popUp2::before {
  content: "";
  position: absolute;
  top: -11px;
  right: 30px;
  width: 20px;
  height: 20px;
  border: 1px solid #d5cbcb;
  border-right: none;
  border-bottom: none;
  background-color: #fff;
  transform: rotate(45deg);
}

.box-detail.customerSurvey .reviewContent#popUp2 h3 {
  font-size: 16px;
  font-weight: unset;
  margin: 0 0 5px;
  display: block;
  overflow: hidden;
  text-align: left;
  padding: 0;
  line-height: 1.5;
  margin-bottom: 15px;
}

.box-detail.customerSurvey .reviewContent .ClosePopup {
  position: absolute;
  right: 10px;
  top: 5px;
  width: 12px;
}

.box-detail.customerSurvey .reviewContent#popUp2 .options {
  font-size: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.box-detail.customerSurvey .reviewContent#popUp2 .options p {
  text-align: left;
  line-height: 24px;
}

.box-detail.customerSurvey .reviewContent#popUp2 .submitReview {
  display: block;
  overflow: hidden;
  padding: 10px;
  margin-top: 20px;
  width: 140px;
  background: var(--primary);
  margin: 10px auto 0;
  border: 1px solid var(--primary);
  box-sizing: border-box;
  border-radius: 2px;
  height: 38px;
  color: #fff;
}

.box-detail.customerSurvey .reviewContent#popUp2 .notifyResult {
  color: #08a811;
  padding: 10px 10px 0;
  display: block;
}

.box-detail.customerSurvey .reviewContent#popUp2 .options textarea {
  width: 100%;
  max-width: 100%;
  padding: 10px;
  min-height: 100px;
  margin-top: 10px;
  background: #fff;
  border: 1px solid #ddd;
  box-sizing: border-box;
  border-radius: 2px;
  display: block;
}

.action-survey button:disabled {
  cursor: not-allowed;
  pointer-events: none;
}

.action-survey button.inactive {
  opacity: 0.3;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-thumb {
  width: 8px;
  border-radius: 4px;
  background-color: #c1c1c1;
}

::-webkit-scrollbar-track {
  padding: 6px;
}

.news-loading-item {
  border-radius: 4px;
  background: linear-gradient(
    45deg,
    rgba(209, 209, 209, 0.35),
    rgba(11, 11, 11, 0.1),
    rgba(209, 209, 209, 0.1),
    rgba(209, 209, 209, 0.15)
  );
  background-size: 400% 400%;
  animation: gradient 3000ms ease infinite;
  user-select: none;
  display: block;
  min-height: 23px;
}

#js-loading-hot-news {
  margin-bottom: 20px;
}
#js-loading-hot-news .related-news-item + .related-news-item {
  padding-top: 15px;
  margin-top: 15px;
  border-top: 1px solid transparent;
}

.is-blogpage {
  --relatedImage: 165px;
  --side: 32.5%;
}

.blogpage-menu a,
.blogpage-sidebar a {
  color: initial;
}

.blogpage-sidebar .icon-addtocart {
  color: #fff;
  right: 0;
}

.blogpage-header {
  font-size: calc(17px + (21 - 17) * ((100vw - 300px) / (1920 - 300)));
  font-weight: bold;
  display: block;
  text-align: left;
  margin: 16px 0 12px;
  user-select: none;
}

.download-app {
  margin-top: 32px;
  border: 1px solid #d1d1d1;
  border-radius: var(--borderRadius);
}

.download-app-bottom {
  display: flex;
  padding: 10px;
  justify-content: center;
  align-items: center;
  color: var(--dark);
  font-weight: 600;
  line-height: 1.2;
}

.download-app-bottom:hover {
  color: var(--primary-dk);
}

.download-app-top {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  padding: 10px;
  line-height: 1.2;
}

.download-app-top img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-right: 10px;
}

.download-app-bottom img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  margin-right: 10px;
}

.download-app-top + .download-app-bottom {
  border-top: 1px solid #d1d1d1;
  box-shadow: none;
  border-radius: 0 0 5px 5px;
}

img {
  max-width: 100%;
  object-fit: contain;
}

.is-blogpage {
  display: block;
  position: relative;
}

.is-blogpage li {
  margin-left: auto;
}

.is-blogpage::after,
.is-blogpage::before {
  content: "";
  display: block;
  clear: both;
}

.blogpage-menu {
  position: relative;
  display: block;
  padding: 12px 0 0;
}

.submenu-children.blogpage-menu-fixed {
  margin: 0 auto;
  padding: 10px 0;
}

.blogpage-menu::after,
.blogpage-menu::before {
  content: "";
  display: block;
  clear: both;
}

.submenu-children::-webkit-scrollbar {
  display: none;
}

.submenu-children {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-item-main,
.more-menu-item {
  display: block;
  margin: 0;
  padding: 0;
  border: 1px solid #a9b2be;
  line-height: 36px;
  border-radius: 3px;
  padding: 0;
  font-size: 15px;
  color: var(--black);
  margin-right: 6px;
  font-weight: 500;
}

.more-menu-item {
  border: none;
  border-radius: 0;
  margin: 0;
  color: var(--black);
}

.child-link,
.child-link:hover {
  padding: 0 calc(6px + (16 - 6) * ((100vw - 800px) / (1920 - 800)));
  color: inherit;
  display: block;
  transition: none;
}

.submenu-children .menu-item-main {
  font-size: 14px;
  margin: 0 6px 0 0;
  font-weight: 500;
}

.menu-item-main:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.more-menu-item:hover {
  color: var(--primary);
}

.menu-item-main.active,
.more-menu-item.active,
.menu-item-main.active:hover,
.more-menu-item.active:hover {
  background-color: var(--primary);
  color: #fff;
  border-color: var(--primary);
  cursor: default;
}

.menu-item-main.active a {
  color: #fff;
}

.see-more {
  cursor: pointer;
  font-size: 20px;
  width: 40px;
  min-width: 40px;
  height: 36px;
  display: inline-block;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--borderRadius);
  border: 1px solid transparent;
}

.more-list-category {
  position: relative;
}

.list-menu-hidden {
  top: 20px;
  position: absolute;
  width: 200px;
  z-index: 999;
  right: 0;
  padding-top: 20px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(30px);
  transition: all 300ms ease-in-out;
  background-color: transparent;
}

.list-more-menu-content {
  background: #fff;
  box-shadow: 0 6px 36px rgba(11 11 11 / 33%);
  border-radius: var(--borderRadius);
}

.submenu-children .list-menu-hidden .menu-item-main {
  border: none;
  border-bottom: 1px solid #dfdfdf;
  border-radius: 0;
}

.submenu-children .list-menu-hidden .menu-item-main:last-child {
  border: none;
}

.news-slider a .latest-title {
  color: var(--dark);
}

.news-slider a:hover .latest-title {
  color: var(--primary-dk);
}

.blogpage-slider {
  max-width: 700px;
  display: block;
  position: relative;
  text-align: left;
}

.blogpage-slider:not(.slick-slider) .item:nth-child(n + 2) {
  display: none;
}

.blogpage-slider .item {
  outline: 0 !important;
  border: none;
  text-align: left !important;
}

.blogpage-slider:not(.slick-slider) .blogpage-slider-item:nth-child(n + 2) {
  display: none;
}

.latest-image-box {
  display: block;
  position: relative;
  overflow: hidden;
}

.latest-image-box::before {
  content: "";
  padding-top: 56.25%;
  display: block;
}

.latest-image-box img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center;
  color: var(--dark);
  border-radius: var(--borderRadius);
}

.item-normal .feature-blog-link {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.item-normal .latest-image-box {
  width: var(--relatedImage);
}

.latest-title {
  width: 100%;
  color: var(--black);
  margin: 16x 0 6px;
  padding: 0;
  line-height: 1.4;
  font-size: 21px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.item-normal .latest-title {
  width: calc(100% - var(--relatedImage));
  color: var(--black);
  margin: 0;
  padding: 0 0 0 12px;
  line-height: 1.3;
  font-size: calc(16px + (19 - 16) * ((100vw - 300px) / (1920 - 300)));
  -webkit-line-clamp: 3;
  font-weight: 500;
}

.blogpage-newslist .slick-dots {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 0;
  background: rgba(255, 255, 255, 0);
  text-align: right;
  padding: 10px;
  bottom: 0;
  top: 150px;
}

.blogpage-newslist .slick-dots li {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  padding: 0;
  margin: 2px 4px;
  cursor: pointer;
  background: var(--dark);
  opacity: 0.7;
}

.blogpage-newslist .slick-dots li.slick-active {
  opacity: 1;
  height: 12px;
  background-color: var(--primary);
  width: 12px;
}

figure {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.blogpage-sidebar {
  width: var(--side);
  position: relative;
}

.blogpage-content-wrap {
  --blogImage: calc(200px + (340 - 200) * ((100vw - 300px) / (1920 - 300)));
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
}

.blogpage-content-wrap {
  margin-top: 32px;
}

.blogpage-content-wrap .blogpage-wrapper {
  padding-right: 32px;
  width: calc(100% - var(--side));
}

#blogpage {
  width: calc(100% - var(--side));
  padding-right: 25px;
  flex: 0 0 calc(100% - var(--side));
}

.latest-image {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.news-list {
  padding-left: 15px;
}

.news-list li,
.news-list ul {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
}

.news-list .newslist-feature img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  margin-bottom: 10px;
}

.news-list-heading {
  color: var(--dark);
  font-size: 16px;
  line-height: 1.2em;
  margin: 0;
  padding: 0;
}

.newslist-feature .news-list-heading {
  font-size: 20px;
  font-weight: 600;
}

.news-list a:hover .news-list-heading {
  color: var(--primary-dk);
}

.widget-title {
  margin: 0 0 16px;
  color: var(--black);
  font-size: 20px;
  line-height: 1.4;
  background-color: rgba(67 191 227 / 10%);
  border-radius: var(--borderRadius);
  padding: 10px 12px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.btn-theme {
  background-color: var(--primary);
  color: var(--white);
  outline: 0;
  border: 1px solid var(--primary);
}

.btn-theme:hover {
  background-color: var(--primary-dk);
}

.widget {
  margin-bottom: 20px;
}

.new-product-list {
  width: 100%;
}

.widget img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.sidebar-feature,
.sidebar-feature li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.related-news-item {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  position: relative;
}

.related-product-image-box,
.related-news-image-box {
  width: var(--relatedImage);
}

.related-product-content,
.related-news-content {
  width: calc(100% - var(--relatedImage));
  padding-left: 12px;
}

.related-news .related-news-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.related-product-image,
.related-news-image {
  position: relative;
  width: 100%;
  display: block;
  border-radius: 5px;
  background-color: var(--multiply, #f8f8f8);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  margin-bottom: 8px;
}

.related-news-image {
  width: var(--relatedImage);
}

.related-product-image::after,
.related-news-image::after {
  content: "";
  padding-top: 56.25%;
  display: block;
}

.related-news-image::after {
  padding-top: 75%;
}

.related-product-image img,
.related-news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: var(--borderRadius);
  display: block;
  margin: 0;
  padding: 0;
  mix-blend-mode: multiply;
}

.related-product-image img {
  object-fit: contain;
}

.sidebar-feature .headline {
  margin: 0;
  font-size: calc(15px + (17 - 15) * ((100vw - 300px) / (1920 - 300)));
  line-height: 1.3;
  color: var(--dark);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.sidebar-feature .headline:hover {
  color: var(--primary-dk);
}

.sidebar-feature .news-product-price-box {
  grid-area: nPrice;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}

.sidebar-feature a:hover {
  color: var(--primary-dk);
}

.writtens-bottom,
.writtens-bottom li {
  list-style: none;
  display: block;
  margin: 0;
  padding: 0;
}

.related-article-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 24px;
}

.related-article-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 15px;
}

.product-tpl-news-wrapper:not(.slick-slider) {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.product-tpl-news-wrapper.slick-slider .slick-track {
  margin: 0 auto;
  text-align: left;
}

.related-article-content .headline a {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.3;
  font-size: 17px;
  margin: 8px 0 6px;
  width: 100%;
}

.related-news .writtens-bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 16px;
}

.author-content .writtens-bottom li {
  border: none;
}

.author-content .writtens-bottom li:last-child {
  margin-bottom: 35px;
}

.article-title {
  font-size: 23px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 auto 0;
  letter-spacing: 0;
}

.articles-content-tag {
  display: flex;
  font-weight: 600;
  color: #306100;
  background-color: #f2f6e1;
  border-radius: 4px;
  padding: 4px 6px;
  width: fit-content;
  margin: 12px 0;
}

.app-news-content h2 {
  margin-top: 10pt;
}
.app-news-content p {
  margin: 1em 0;
}

.app-news-content label {
  margin-top: 0;
  margin-bottom: 0;
}

.app-news-content .news-article-image {
  width: 100%;
  height: auto;
  max-width: 600px;
  object-fit: contain;
  object-position: center;
  margin: 0 auto;
}

.post-image {
  width: var(--blogImage);
  display: block;
  position: relative;
  overflow: hidden;
}

.post-image-link::after {
  content: "";
  padding-top: 56.25%;
  display: block;
  pointer-events: none;
}

.post-image-link img {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  object-fit: cover;
  object-position: center;
  left: 0;
  font-size: 13px;
  color: var(--dark);
  border-radius: var(--borderRadius);
}

.post-content {
  width: calc(100% - var(--blogImage));
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.writtens-bottom li {
  color: var(--black);
  font-weight: 500;
}

.writtens-bottom .related-post-item {
  display: grid;
  grid-template-columns: 120px calc(100% - 120px);
  grid-gap: 0;
}

.writtens-bottom .related-post-item a {
  margin-top: 0;
}

.related-post-item .related-article-content {
  padding-left: 16px;
}

.writtens-bottom .written {
  display: flex;
}

.writtens-bottom .written:nth-child(n + 2) {
  margin-top: 24px;
}

.writtens-bottom .headline {
  display: block;
  line-height: 1.4;
  font-size: calc(17px + (23 - 17) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 500;
  margin: 0;
  padding: 0;
}

.writtens-bottom .headline a {
  color: var(--black);
}

.latest-title:hover,
.writtens-bottom a:hover {
  color: var(--primary-dk);
}

.writtens-bottom .description {
  display: block;
  color: var(--dark);
  line-height: 1.4;
  margin: 10px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.namecate {
  background-color: rgba(67 191 227 / 10%);
  color: var(--black);
  border-radius: 16px;
  padding: 4px 10px;
  font-size: 13px;
  margin-bottom: 6px;
  display: block;
}

.author-content .timepost {
  margin-bottom: 20px;
}

.author-content .timepost .namecate::before {
  display: none;
}

.author-content .timepost .namecate {
  margin-right: 15px;
  color: var(--dark);
}

.pagination-box {
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid #d1d1d1;
  margin-top: 25px;
  width: 100%;
}

.subscribe-box small {
  font-size: 15px;
  color: #595959;
  display: block;
  line-height: 15px;
  margin-bottom: 10px;
}

.list-product {
  padding: 0;
  margin: 0;
}

.list-product-item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 14px;
}

.list-product-item .prod-tpl-rating {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 16px;
  width: 100%;
  margin-bottom: 8px;
}

.list-product-item .news-product-content {
  padding: 0;
}

.news-product-image {
  width: var(--relatedImage);
  position: relative;
  display: block;
  background-color: var(--multiply, #f8f8f8);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.news-product-image::before {
  content: "";
  padding-top: 100%;
  display: block;
}

.news-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: contain;
  object-position: center;
  font-size: 11px;
  color: #888;
  mix-blend-mode: multiply;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.list-product-item .icon-addtocart {
  bottom: 6px;
  right: 0;
  left: auto;
}

.slick-slide .slick-item:first-child {
  padding-bottom: 16px;
}

.slick-slide .slick-item:last-child {
  padding-top: 24px;
}

.news-product-content {
  width: calc(100% - var(--relatedImage));
  padding-left: 15px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  grid-gap: 6px;
  flex-direction: column;
}

.news-discount {
  color: var(--price);
  background-color: #f8d7da;
  border-radius: 3px;
  font-size: 12px;
  padding: 2px 4px;
  font-weight: 600;
  margin-left: auto;
}

.list-product-title {
  font-size: 15px;
  margin: 0;
  width: 100%;
}

.list-product-title a {
  color: var(--dark);
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  height: fit-content;
  -webkit-box-orient: vertical;
  text-align: left;
  font-weight: 500;
  font-size: 15px;
}

.list-product-title a:hover {
  color: var(--primary-dk);
}

.list-product-image a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.subscribe-box .subcriber-form {
  position: relative;
  width: 100%;
  padding: 0;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  margin-top: 12px;
}

.subscribe-box .subcriber-form .btn-theme {
  width: 60px;
  padding-left: 0;
  padding-right: 0;
  border-radius: 0 4px 4px 0;
}

.subscribe-box .form-inline .form-control {
  width: calc(100% - 60px);
  border-radius: 4px 0 0 4px;
  border-right: none;
  padding: 4px 7px;
  font-size: 16px;
}

.product-price {
  margin-bottom: 0;
  margin-right: 5px;
}

.img-top {
  text-align: center;
}

.author-header {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #e1e1e1;
  align-items: center;
}

.author-header-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.author-header-title {
  margin-bottom: 0px;
}

.author-header-title-wrapper {
  width: calc(100% - 120px);
  padding-left: 25px;
}

.author-header-author-title {
  color: var(--gray);
}

.author-header-name {
  margin-bottom: 0;
}

.author-header-shares {
  display: flex;
  align-items: center;
  line-height: 24px;
}

.author-header-shares a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 5px;
}

.slick-dots button:before {
  display: none;
}

.td-default-sharing {
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 15px;
}

.td-icon-facebook:before {
  content: "\f09a";
}

.td-icon-twitter:before {
  content: "\f099";
}

.td-icon-googleplus:before {
  content: "\f0d5";
}

[class^="td-icon-"]:before,
[class*=" td-icon-"]:before {
  font-family: "FontAwesome";
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.td-social-google .td-icon-googleplus {
  font-size: 16px;
  position: relative;
  top: 0;
  left: -1px;
  line-height: 22px;
}

.td-post-sharing a {
  display: inline-block;
  vertical-align: middle;
}

.td-social-facebook {
  background-color: #516eab;
}

.td-social-sharing-buttons {
  font-size: 11px;
  color: #fff !important;
  border-radius: 2px;
  padding: 10px 13px 8px;
  margin-right: 10px;
  height: 40px;
  min-width: 40px;
  text-align: center;
}

.td-social-twitter {
  background-color: #29c5f6;
}

.td-social-google {
  background-color: #eb4026;
  width: 40px;
}

.td-social-facebook .td-icon-facebook {
  font-size: 14px;
  position: relative;
  top: 1px;
}

[class*="td-icon-"] {
  line-height: 1;
  text-align: center;
  display: inline-block;
}

.td-social-sharing-buttons:hover {
  opacity: 0.8;
}

.td-social-facebook .td-social-but-text {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.td-social-facebook .td-social-but-text {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.td-social-but-text {
  display: inline-block;
  position: relative;
  top: -1px;
  line-height: 16px;
  padding-left: 10px;
  margin-left: 12px;
}

.btn-mobile-social {
  padding-left: 0;
  margin-left: 0;
}

.list-product-item .high-price {
  color: var(--dark);
  text-decoration: line-through;
  font-size: 15px;
  opacity: 0.6;
}

.social-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 10px;
  margin: 15px 0;
  border: 1px solid #bba;
  border-radius: 3px;
}

.social-header {
  text-align: right;
  font-weight: bold;
  font-size: 17px;
  margin-bottom: 6px;
}

.social-list,
.like-list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  text-align: right;
  gap: 10px;
}

.social-list {
  justify-content: flex-start;
}

.likethis-item {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border-radius: 3px;
  font-size: 14px;
  gap: 8px;
  padding: 8px 16px;
  line-height: 1;
  transition: background-color 0.3s ease-in-out;
}

.likethis-item:focus,
.likethis-item:hover {
  color: #fff;
}

.likethis-item img {
  margin: 0;
  display: block;
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

.likethis-facebook {
  background-color: var(--primary-dk);
}

.likethis-zalo {
  background-color: #06a0f8;
}

.likethis-youtube {
  background-color: var(--price);
}

.author-social-list {
  display: grid;
  grid-template-columns: repeat(16, 1fr);
  grid-gap: 10px;
}
.author-wrapper {
  display: grid;
  grid-template-columns: 96px auto;
  grid-gap: 16px;
  padding: 16px;
  border: 1px solid #f1f1f1;
  border-radius: var(--borderRadius);
}

.news-product-price {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  line-height: 1.2;
}

.box-detail.customerSurvey {
  background: #fff;
  padding: 20px 0;
  border: 2px solid #00000040;
  border-radius: 8px;
  width: fit-content;
  min-width: 300px;
  margin: 20px auto;
  text-align: center;
  position: relative;
}

.box-detail.customerSurvey .container {
  font-size: 16px;
  line-height: 16px;
  display: inline-flex;
  margin-top: 10px;
  justify-content: center;
  width: 100%;
}

.action-survey button img {
  mix-blend-mode: multiply;
  filter: grayscale(100%);
  transition: all 0.2s;
}

.action-survey button:hover img,
.action-survey button.active img {
  filter: grayscale(0%);
  transition: all 0.3s;
}

.action-survey button.icon-action-smile {
  border-right: 1px solid #00000040;
}

.toast-message-review {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #222;
  font-size: 14px;
  color: #fff;
  display: none;
  justify-content: center;
  align-items: center;
  grid-gap: 5px;
  padding: 10px 20px;
  min-width: 280px;
  border-radius: 8px;
  z-index: 9999;
}

.toast-message-review.active {
  display: flex;
  opacity: 1;
  animation: animateToastMess 1.5s linear forwards;
}

@keyframes animateToastMess {
  0% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.article-content table {
  width: 100% !important;
}

.article-content {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.app-news-content img {
  display: block;
  margin: 10px auto;
}

.share-toolbox ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 10px auto 16px;
}

.share-toolbox ul li {
  margin: 0 10px 0 0;
  display: block;
}

.article-content p a {
  color: var(--primary);
}

.article-content p a:hover {
  color: var(--primary-dk);
  text-decoration: underline;
}

.newslist-box .readmore {
  padding: 10px 0;
  border: none;
  text-align: center;
  margin: 0 auto;
  width: 50%;
}

.newslist-box .readmore a {
  background-color: #f8f8f8;
  border: 1px solid #d1d1d1;
  border-radius: 4px;
  text-transform: inherit;
  font-size: 13px;
  padding: 0 20px;
  line-height: 25px;
  display: block;
}

.news-product-price-box .high-price {
  color: var(--black);
  text-decoration: line-through;
  opacity: 0.6;
  font-size: 14px;
}

.discount {
  top: 0;
  right: 6px;
  left: auto;
  background: var(--price);
  color: #fff;
  border-radius: 3px;
  padding: 4px 10px;
  line-height: 1.2;
  font-size: 12px;
  position: absolute;
  height: auto;
}

.WarningOrderCart {
  display: none;
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
}

.WarningOrderCart .newsLatter-content {
  background: #fff;
  border-radius: var(--borderRadius);
  width: 500px;
  position: absolute;
  top: 25%;
  left: 50%;
  margin-left: -250px;
  padding: 15px;
}

.WarningOrderCart .newsLatter-content h3 {
  position: relative;
  font-weight: normal;
  font-size: 17px;
  text-transform: uppercase;
  margin-bottom: 7px;
  padding-bottom: 5px;
}

.WarningOrderCart .newsLatter-content h3:after {
  background: #e9713c none repeat scroll 0 0;
  bottom: 0;
  content: "";
  font-size: 0;
  height: 1px;
  left: 50%;
  position: absolute;
  width: 140px;
  margin-left: -70px;
}

.WarningOrderCartFlashSale {
  display: none;
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
}

.WarningOrderCartFlashSale .newsLatter-content {
  background: #fff;
  border-radius: var(--borderRadius);
  width: 500px;
  position: absolute;
  top: 25%;
  left: 50%;
  margin-left: -250px;
  padding: 15px;
}

.WarningOrderCartFlashSale .newsLatter-content h3 {
  position: relative;
  font-weight: normal;
  font-size: 17px;
  text-transform: uppercase;
  margin-bottom: 7px;
  padding-bottom: 5px;
}

.WarningOrderCartFlashSale .newsLatter-content h3:after {
  background: #e9713c none repeat scroll 0 0;
  bottom: 0;
  content: "";
  font-size: 0;
  height: 1px;
  left: 50%;
  position: absolute;
  width: 140px;
  margin-left: -70px;
}

.product-tpl-box .media-body > a:first-child {
  width: 100%;
}

.aside-sticky {
  position: sticky;
  top: -230px;
  z-index: 9;
  margin-top: 35px;
}

ol.table-content {
  position: relative;
  height: auto;
  overflow: hidden;
  transition: all 250ms ease-out;
  padding-left: 30px;
}

#toc.show-more-heading ol.table-content {
  height: 60px;
  margin-bottom: 0;
}

#toc.show-more-heading ol.table-content:before {
  content: "";
  background: rgb(247, 248, 255);
  background: linear-gradient(
    0deg,
    rgba(236, 248, 252, 1) 0%,
    rgba(247, 248, 255, 0) 73%,
    rgba(247, 248, 255, 0) 100%
  );
  width: 100%;
  height: 50px;
  position: absolute;
  bottom: 0;
  left: 0;
}

#togger-table-content:checked ~ ol.table-content {
  height: auto;
  transition: all 250ms ease-out;
}

#togger-table-content:checked ~ ol.table-content:before {
  content: none;
}

#toc .readmore {
  display: block;
  border: none;
  text-align: center;
  font-weight: 600;
}

#toc .readless {
  display: none;
  text-align: center;
}

#toc .readmore.open,
#toc .readless.open {
  display: none !important;
}

#togger-table-content:checked ~ ol.table-content ~ .readmore {
  display: none;
}

#togger-table-content:checked ~ ol.table-content ~ .readless {
  display: block;
}

#toc label {
  cursor: pointer;
  margin: 0;
}

#toc label:hover {
  text-decoration: underline;
}

.append-toc-wrapper {
  position: sticky;
  top: 115px;
  left: 0;
  padding: 10px 16px;
  background-color: rgba(67 191 227 / 10%);
  margin-top: 16px;
}

.rating-useful-char {
  width: 350px;
  display: none;
  margin: 0 auto;
}

.useful-box {
  border: 1px solid #43bfe3;
  border-radius: 10px;
  padding: 0;
  position: relative;
  display: flex;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 16px;
  height: 24px;
}

.useful-percent,
.unuseful-percent {
  width: 0%;
  height: 100%;
  background: #43bfe3;
  border-radius: 8px;
}

.useful-content,
.useful-content {
  display: flex;
  text-align: left;
  position: absolute;
  font-weight: normal;
}

.useful-content svg,
.useful-content svg {
  margin: 0px 10px 0 -3px;
}

.useful-box span {
  position: absolute;
  right: 3px;
}

.shortcode-source {
  border: 1px solid rgba(67 191 227 / 30%);
  background-color: #ecf8fc;
  padding: 10px 16px;
  border-radius: 5px;
  width: 100%;
  color: var(--black);
  position: relative;
  margin-top: 16px;
}

#shortcode-source {
  opacity: 0;
  position: absolute;
}

.shortcode-source-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  cursor: pointer;
  color: var(--primary-dk);
  margin: 0;
}

.shortcode-source-detail {
  display: none;
  padding: 16px 0 0;
}

.shortcode-source-detail a {
  color: #333333;
}

#shortcode-source:checked ~ .shortcode-source-detail {
  display: block;
}

#shortcode-source:checked ~ .shortcode-source-title svg {
  transform: rotate(180deg);
}

.dropcap {
  color: var(--primary);
  font-size: 35px !important;
  float: left;
  line-height: 35px;
  padding: 0 10px 0 0;
  font-weight: bold;
  margin-bottom: 0px;
}

#toc li {
  display: list-item;
  margin-top: 4px;
  margin-bottom: 6px;
}

h2[id^="toc_"] {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 19px !important;
}
.article-content h2 {
  text-align: left !important;
  display: flex;
}

.article-content h2::after {
  content: "";
  clear: both;
  display: table;
}

.slide-feature-sidebar:not(.slick-slider) {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}

.slide-feature-sidebar .slick-track {
  display: flex;
  grid-gap: 20px;
}

.slide-feature-sidebar .slick-track::before,
.slide-feature-sidebar .slick-track::after {
  display: none;
}

.slide-feature-sidebar .slick-slide {
  display: flex;
  flex-direction: column;
  grid-gap: 20px;
}

.slide-feature-sidebar:not(.slick-slider) .related-news-item:nth-child(n + 5) {
  display: none;
}

.slide-feature-sidebar .related-product-image-box,
.slide-feature-sidebar .news-product-image {
  width: calc(100% - 14px);
  margin: 0;
}

.slide-feature-sidebar .related-product-image-box {
  width: 50px;
  min-width: 50px;
}

.slide-feature-sidebar .related-product-content,
.slide-feature-sidebar .news-product-content {
  width: 100%;
}

.slide-feature-sidebar .related-product-content {
  width: calc(100% - 50px);
  height: 116px;
  position: relative;
}

.slide-feature-sidebar .list-product-item {
  margin: 0;
  position: relative;
}

.slide-feature-sidebar:not(.slick-slider) .list-product-item:nth-child(n + 5) {
  display: none;
}

.slide-feature-sidebar li + li {
  border: none;
  margin-top: 0;
  padding-top: 0;
}

.slide-feature-sidebar .headline {
  color: var(--dark);
  line-height: 1.2;
  min-height: 34px;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 15px;
  margin-bottom: 5px;
}

.slide-feature-sidebar .related-product-image,
.slide-feature-sidebar .news-product-image {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.slide-feature-sidebar .news-product-image {
  width: 52px;
  min-width: 52px;
}

.slide-feature-sidebar .related-product-image::after {
  content: "";
  padding-top: 60%;
  display: block;
}

.slide-feature-sidebar .related-product-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  margin: 0;
  font-size: 11px;
  color: #999;
}

.slide-feature-sidebar .news-product-price-box .high-price {
  opacity: 0.6;
  font-size: 14px;
  color: var(--dark);
  margin: 0;
}

.slide-feature-sidebar .slick-next {
  right: -16px;
}

.slide-feature-sidebar .slick-prev {
  left: -16px;
}

.view_more_coment {
  background: url(https://chiaki.vn/frontend/images/gallery/bg_1x1_gray.gif)
    repeat-x scroll left 13px;
  height: 26px;
  margin: 10px 0;
  text-align: center;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.view_more_coment .txt_666 {
  background-color: #eee;
  color: #666;
  display: block;
  font-size: 12px;
  padding: 6px 20px;
  text-align: center;
  cursor: pointer;
}

.view_more_coment .txt_666:hover {
  background-color: #aaa;
  color: #fff;
}

.affiliate-banner-link {
  margin-bottom: 16px;
  display: block;
  width: 100%;
}

.affiliate-banner-link img {
  border-radius: 8px;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.action-survey button {
  background: #fff;
  border: none;
  padding: 0 20px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  border-radius: 0;
  transition: all 0.3s ease;
}

.blogpage-article .view_more_coment {
  float: unset;
}

/* .action-survey button:hover:not(:disabled) {
    background: #e8e8e8;
    border-color: #ccc;
} */

.action-survey button.inactive {
  opacity: 0.3;
}

.action-survey button:disabled {
  cursor: not-allowed;
  pointer-events: none;
}

.action-survey button svg {
  width: 16px;
  height: 16px;
}

/*Fix ipad */

.custom-feedback-text {
  width: 250px !important;
  font-size: 16px;
}

.custom-feedback-text:focus::placeholder {
  opacity: 0;
}

.checkbox-label {
  font-weight: normal;
}

/*Toc Clone */

.toc-clone-wrapp {
  position: fixed;
  bottom: 150px;
  /* right: 67px; */
  z-index: 999;
  overflow: hidden;
  width: 400px;
  display: none;
}

.toc-clone {
  border: 1px solid rgba(67 191 227 / 30%);
  background-color: #ecf8fc;
  padding: 10px var(--gap16);
  border-radius: 5px;
  width: 100%;
  color: #23527c;
  box-shadow: 1px -7px 5px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 1px -7px 5px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 1px -7px 5px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 1px -7px 5px 0px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 9999;
  pointer-events: none;
  transition: opacity 300ms ease-in-out;
  display: none;
}

.toc-clone .toc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  font-size: 100%;
  font-weight: 700;
}

.toc-clone ol.table-content {
  height: 300px;
  overflow-y: auto;
}

.toc-clone-wrapp.show-toc-clone .toc-clone {
  opacity: 1;
  display: block;
  pointer-events: all;
  transition: all 300ms ease-in-out;
}

.toc-clone-wrapp.show-toc-clone .icon-toc-close {
  display: flex;
}

.icon-toc-clone {
  border: 2px solid var(--primary);
  display: block;
  width: 40px;
  height: 40px;
  text-align: center;
  background: #fff;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-left: auto;
  position: fixed;
  bottom: 150px;
  /* right: 26px; */
  z-index: 999;
  box-shadow: -1px 1px 6px 2px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: -1px 1px 6px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: -1px 1px 6px 2px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.icon-toc-close {
  border: 2px solid var(--primary);
  display: block;
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-left: auto;
  position: fixed;
  bottom: 150px;
  /* right: 26px; */
  z-index: 999;
  background: #ecf8fc;
  display: none;
  cursor: pointer;
}

/*End Toc Clone*/
@media (max-width: 860px) {
  .is-blogpage {
    --relatedImage: 90px;
  }

  .writtens-bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 24px;
  }

  .writtens-bottom .written {
    flex-wrap: wrap;
    flex-direction: column;
  }

  .writtens-bottom .written .post-image {
    width: 100%;
  }

  .writtens-bottom .written .post-content {
    width: 100%;
    padding: 12px 0 0;
  }

  .writtens-bottom .written:nth-child(n + 2) {
    margin-top: 0;
  }

  #blogpage {
    padding-right: 0 !important;
  }
}

@media (min-width: 767px) {
  .more-list-category:hover .list-menu-hidden {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }

  .blogpage-newslist {
    display: grid;
    grid-auto-flow: row dense;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
    gap: 0 32px;
    grid-template-areas:
      "Feature Blog-1"
      "Feature Blog-2"
      "Feature Blog-3"
      "Feature Blog-4"
      "Feature Blog-5";
  }

  .item-first {
    grid-area: Feature;
  }

  .item-normal:nth-of-type(2) {
    grid-area: Blog-1;
  }

  .item-normal:nth-of-type(3) {
    grid-area: Blog-2;
  }

  .item-normal:nth-of-type(4) {
    grid-area: Blog-3;
  }

  .item-normal:nth-of-type(5) {
    grid-area: Blog-4;
  }

  .item-normal:nth-of-type(6) {
    grid-area: Blog-5;
  }
}

@media (max-width: 1180px) {
  .blogpage-bottom .description {
    display: none;
  }

  .timepost {
    margin-top: auto;
  }
}

@media (min-width: 760px) and (max-width: 1180px) {
  #blogpage {
    width: 100%;
  }

  .download-app {
    max-width: 360px;
    margin: 32px auto;
  }
}

@media (min-height: 800px) {
  .aside-sticky {
    top: -55px;
  }
}
@media (min-width: 997px) {
  .sidebar-feature li + li {
    border-top: 1px solid #e1e1e1;
    margin-top: 15px;
    padding-top: 15px;
  }

  .related-news .post-image a::before {
    content: "";
    padding-top: 56.25%;
    display: block;
  }

  .related-news .post-image a img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center;
  }

  .related-news .post-content {
    width: auto;
    margin: 10px auto;
    padding: 0;
  }

  .related-news .headline {
    font-size: 17px;
    line-height: 23px;
  }

  .list-product-item {
    position: relative;
    margin-top: 25px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0;
    grid-gap: 10px;
  }
}

@media (max-width: 997px) {
  .blogpage-sidebar {
    width: 100%;
  }

  .subscribe-box .subcriber-form {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
  }

  .is-blogpage li {
    margin-left: 0;
  }

  .category-blog-page .hero {
      grid-template-columns: 1fr;
      padding-bottom: 10px;
      margin-bottom: 10px !important;
      border-bottom: 1px solid #919191;
  }

  .category-blog-page .blog-content {
    grid-template-columns: minmax(0, 1fr);
    margin: 0;
  }
  .category-blog-page .articles {
    gap: 8px;
    padding-right: 8px;
  }
  .category-blog-page .articles-title {
    margin: 8px 0;
  }
  .category-blog-page .articles-description {
    -webkit-line-clamp: 3;
  }
  .articles-info .articles-meta-tag {
    display: none;
  }
  .articles-meta .articles-meta-tag {
    display: block;
    min-width: max-content;
  }

  .category-blog-page .articles-img {
    width: 132px;
    max-height: unset;
    overflow: hidden;
    object-fit: contain;
  }
  .category-blog-page .articles-time {
    padding: 0;
  }
}

@media (min-width: 740px) and (max-width: 997px) {
  .blogpage-content-wrap .blogpage-wrapper {
    padding: 0;
    width: 100%;
  }

  .blogpage-content-wrap {
    display: block;
  }

  .new-product-list .list-product:not(.slick-slider) {
    display: flex;
    flex-wrap: wrap;
  }

  .news-list li + li {
    padding-top: 10px;
    margin-top: 10px;
  }

  .sidebar-feature::after {
    content: "";
    display: block;
    clear: both;
  }

  .sidebar-feature li:nth-child(3n + 1) {
    clear: left;
  }

  .article-outstanding {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
    grid-row-gap: 25px;
  }

  .sidebar-feature li {
    padding-right: 7px;
  }

  .sidebar-feature a {
    flex-wrap: nowrap;
    justify-content: center;
  }

  .sponsor {
    display: none;
  }

  .submenu-children {
    white-space: nowrap;
  }

  .blogpage-menu {
    overflow-x: auto;
  }

  .post-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .writtens-bottom .description {
    padding-top: 2px;
  }

  .news-list li + li {
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid #d1d1d1;
  }

  .related-news ul {
    margin-left: -10px;
    margin-right: -10px;
  }

  .related-news ul::after {
    content: "";
    display: block;
    clear: both;
  }

  .related-news ul li {
    display: block;
    padding: 0 10px;
    border: none;
    margin-top: 0;
    margin-bottom: 25px;
  }

  .related-news .post-image {
    width: 100%;
  }

  .related-news .post-content {
    width: auto;
  }

  .writtens-bottom .headline a {
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    display: -moz-box;
    -moz-line-clamp: 2;
    -moz-box-orient: vertical;
    font-size: 17px;
  }

  .sidebar-feature.slide-feature-sidebar:not(.slick-slider) {
    display: flex !important;
    justify-content: flex-start;
    align-items: flex-start;
    overflow: hidden;
  }

  .sidebar-feature.slide-feature-sidebar:not(.slick-slider) .list-product-item {
    width: 33.33%;
    flex: 0 0 32%;
    display: block;
  }

  .related-news .headline {
    font-size: 19px;
    line-height: 23px;
  }

  .writtens-bottom.page-detail .written:nth-child(n + 2) {
    margin: 0;
  }

  .writtens-bottom.page-detail .written {
    align-items: flex-start;
  }

  .related-news .post-image {
    flex: 0 0 120px;
  }

  .writtens-bottom.page-detail .written .post-image a {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-bottom: 4px;
  }

  .writtens-bottom.page-detail .written .post-image a::before {
    content: "";
    padding-top: 100%;
    display: block;
  }

  .writtens-bottom.page-detail .written .post-image a img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    margin: 0;
  }

  .writtens-bottom.page-detail .timepost {
    margin-top: 15px !important;
  }

  .writtens-bottom.page-detail .timepost time {
    margin-bottom: 5px;
    display: block;
  }

  .writtens-bottom.page-detail .related-news ul li {
    margin-bottom: 0;
  }

  .blogpage-sidebar {
    width: 100%;
  }

  .subscribe-box {
    display: none;
  }

  .blogpage-sidebar {
    margin-top: 20px;
    padding-bottom: 25px;
  }

  .outstanding {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .outstanding li {
    background-color: #f1f1f1;
    padding: 6px 10px;
    border-radius: 36px;
    border-radius: 9px;
  }
}

@media (max-width: 740px) and (orientation: portrait) {
  .blogpage-wrapper {
    padding: 0;
  }

  .submenu-children {
    white-space: nowrap;
  }

  .blogpage-menu {
    overflow-x: auto;
    margin: 0;
    padding: 0;
  }

  .breadcrumb-nav {
    padding-left: 0;
    padding-right: 0;
    background-color: transparent;
    border: none;
    font-size: 16px;
  }

  .breadcrumb-nav li > .endlink,
  .breadcrumb-nav a {
    font-size: 16px;
  }

  .blogpage-content-wrap,
  .blogpage-newslist {
    display: block;
    padding: 0 0 25px;
  }

  .blogpage-content-wrap {
    margin-top: 0;
  }

  .blogpage-slider {
    max-width: 470px;
    display: block;
    position: relative;
  }

  .blogpage-slider:not(.slick-slider) .blogpage-slider-item:nth-child(n + 2) {
    display: none;
  }

  .latest-image-box {
    overflow: hidden;
  }

  .blogpage-slider .slick-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    margin: 0;
    background: rgba(255, 255, 255, 0);
    text-align: right;
    padding: 10px;
  }

  .blogpage-slider .slick-dots li {
    position: relative;
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    padding: 0;
    margin: 2px 7px;
    cursor: pointer;
    background: var(--dark);
    opacity: 0.7;
  }

  .blogpage-slider .slick-dots li.slick-active {
    opacity: 1;
    height: 12px;
    width: 12px;
  }

  .blogpage-slider .slick-dots li button:before {
    display: none;
  }

  .blogpage-slider .slick-next,
  .blogpage-slider .slick-prev {
    display: block !important;
    top: calc(190px / 2);
  }

  .blogpage-slider .slick-next {
    right: 0;
    padding: 10px;
    background: rgba(0, 154, 169, 0.85) !important;
    height: auto;
    width: auto;
  }

  .blogpage-slider .slick-prev {
    padding: 10px;
    background: rgba(0, 154, 169, 0.85) !important;
    height: auto;
    width: auto;
  }

  .news-list {
    padding: 0;
  }

  .news-list img {
    display: none;
  }

  .news-list-heading {
    color: var(--dark);
    font-size: 15px;
    line-height: 1.2em;
    margin: 0;
    padding: 0;
  }

  .newslist-feature .news-list-heading {
    font-size: 15px;
    line-height: 1.2em;
    font-weight: 500;
  }

  .news-list li {
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid #d1d1d1;
  }

  .writtens-bottom li {
    align-items: flex-start;
  }

  .post-image {
    width: 80px;
    height: auto;
  }

  .post-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .post-content {
    width: calc(100% - 80px);
  }

  .writtens-bottom .description {
    display: none;
  }

  .writtens-bottom .headline {
    font-size: 17px;
    line-height: 21px;
    margin-bottom: 10px;
  }

  .sidebar-feature li + li {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #d1d1d1;
  }

  .navbar-header {
    min-height: 1px;
    margin-bottom: 15px;
    padding: 7px 0;
  }

  .page-title .back {
    font-size: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .page-title {
    padding-left: 15px;
  }

  .list-product-item {
    position: relative;
    margin-top: 25px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .list-product-item + .list-product-item {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e1e1e1;
  }

  .pagination-box .readmore {
    padding: 15px 0;
    border: none;
  }

  .readmore a {
    background-color: #f8f8f8;
    border: 1px solid #d1d1d1;
    border-radius: 4px;
    text-transform: inherit;
    font-size: 13px;
    padding: 0 25px;
    line-height: 32px;
  }

  .blogpage-wrapper .blogpage-article .author-content ul {
    margin-left: 0;
  }

  .author-header-image {
    width: 75px;
    height: 75px;
  }

  .author-header {
    border-bottom: none;
    padding-bottom: 0;
    align-items: center;
  }

  .author-header-title {
    margin-bottom: 0;
  }

  /* .author-content .post-content {
        padding-left: 0;
    } */

  .author-header-shares {
    border-bottom: 1px solid #d1d1d1;
    margin-bottom: 35px;
    padding-bottom: 15px;
  }

  .blogpage-sidebar {
    width: 100%;
  }
}

@media (max-width: 997px) and (orientation: landscape) {
  .menu-item .more-drop {
    border-radius: 0 !important;
  }
  .blogpage-content-wrap {
    display: block;
  }

  .latest-image-box {
    overflow: hidden;
  }

  .newslist-feature .news-list-heading {
    font-size: 15px;
    line-height: 1.2em;
    font-weight: 500;
  }

  .news-list li + li {
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid #d1d1d1;
  }

  .newslist-feature img {
    display: none;
  }

  .submenu-children {
    white-space: nowrap;
  }

  .blogpage-menu {
    overflow-x: auto;
  }

  .list-product-item {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .related-news ul {
    margin-left: -10px;
    margin-right: -10px;
  }

  .related-news ul::after {
    content: "";
    display: block;
    clear: both;
  }

  .related-news ul li {
    display: block;
    padding: 0 10px;
    border: none;
    margin-top: 0;
    margin-bottom: 25px;
  }

  .related-news ul li:nth-child(3n + 1) {
    clear: left;
  }

  .related-news .post-image {
    width: 100%;
    flex: 0 0 120px;
  }

  .related-news .post-content {
    width: auto;
    margin: 10px auto;
    padding: 0;
  }

  .related-news .headline {
    font-size: 19px;
    line-height: 23px;
  }

  .list-product-item:nth-child(3n + 1) {
    clear: left;
  }

  .list-product-item a {
    color: var(--dark);
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .sidebar-feature::after {
    content: "";
    display: block;
    clear: both;
  }

  .sidebar-feature li:nth-child(3n + 1) {
    clear: left;
  }

  .sidebar-feature li {
    width: calc(100% / 3);
    display: inline-block;
    float: left;
    margin-bottom: 25px;
    padding-right: 7px;
  }

  .blogpage-sidebar {
    width: 100%;
  }
}

@media (min-width: 1024px) and (max-width: 1366px) {
  .related-news ul li {
    width: 100% !important;
  }
}

@media (min-width: 1181px) {
  .sidebar-feature {
    max-height: none;
    overflow: unset;
  }
}

@media (min-width: 992px) and (max-width: 1024px) {
  .blogpage-content-wrap {
    position: relative;
    align-items: stretch;
  }

  .blogpage-sidebar {
    position: sticky;
    top: 0;
    left: 0;
  }

  .subscribe-box .subcriber-form {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
  }
}

/* Responsive */

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .category-blog-page .blog-content,
  .detail-blog-page .blog-content {
    grid-template-columns: minmax(0, 1fr);
    margin: 0;
  }
  .list-articles {
    grid-template-columns: 1fr;
  }
  .category-blog-page .articles {
    gap: 8px;
    padding-right: 8px;
  }
  .category-blog-page .articles-title {
    margin: 8px 0;
  }
  .category-blog-page .articles-description {
    -webkit-line-clamp: 3;
  }
  .articles-img img {
    border-top-left-radius: 8px;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 0px;
  }
  .category-blog-page .articles-img {
    width: 132px;
    max-height: unset;
    overflow: hidden;
    object-fit: contain;
  }
  .category-blog-page .articles-time {
    padding: 0;
  }
  .articles {
    /* grid-template-columns: 1fr; */
    flex-direction: row;
  }
  .article-card img {
    width: 120px;
    height: 90px;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
  }

  .breadcrumb {
    margin-bottom: 16px;
  }
  .icon-toc-clone {
    right: 10px;
  }
  .icon-toc-close {
    right: 0;
    top: 0;
    transform: translateY(-100%);
    position: absolute;
  }
  .toc-clone-wrapp {
    position: fixed;
    /* right: 67px; */
    z-index: 999;
    width: 100%;
    left: 0 !important;
    bottom: 0;
    overflow: unset;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 16px 0;
  }
  .articles {
    /* grid-template-columns: 1fr; */
    flex-direction: column;
  }
  .articles-img img {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
  }
  .news-categories {
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
    overflow-y: hidden;
  }

  .news-categories::-webkit-scrollbar {
    display: none;
  }

  .news-categories a {
    flex-shrink: 0;
  }
  .news-categories button {
    flex-shrink: 0;
  }

  .more-wrap {
    flex-shrink: 0;
    position: static;
  }

  .more-drop {
    top: unset;
    right: 12px;
  }
}

@media (max-width: 520px) {
  .brand h1 {
    font-size: 16px;
  }
  nav.top-nav {
    display: none;
  }
  .small-card img {
    /* width: 72px; */
    height: 72px;
  }
}

.news-categories button {
    display: flex;
    overflow: hidden;
    max-width: 200px;
    align-items: center;
    padding: 8px 14px;
    border-radius: 24px;
    font-size: 14px;
    color: #333;
}

.load-more.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.blog-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
}

.spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #1b7ea1;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.blog-no-result {
    text-align: center;
    padding: 40px;
    color: #666;
    font-size: 15px;
}

.detail-content {
    margin-top: 0 !important;
}

.mobile-search-toggle {
    display: none;
}

#headerSearch {
    display: none;
}

#headerSearch.blog-search-visible {
    display: block;
}

@media (max-width: 767px) {
    #headerSearch.blog-search-visible {
        display: none;
    }
    
    .home-header.search-open #headerSearch {
        display: block;
    }
    .mobile-search-toggle {
        display: block;
    }
}

.breadcrumb ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.breadcrumb ol li {
    display: inline-flex;
    align-items: center;
}

.breadcrumb ol li:not(:last-child)::after {
    content: "›";
    margin-left: 8px;
    color: #666;
}

.breadcrumb ol li[aria-current="page"] {
    color: #333;
    font-weight: normal;
}

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 8px;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.featured-loading {
    gap: 20px;
}

.hero-card-skeleton {
    width: 100%;
    height: 400px;
}

.small-list-skeleton {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.small-card-skeleton {
    width: 100%;
    height: 90px;
}

@media (max-width: 768px) {
    .featured-loading {
        grid-template-columns: 1fr;
    }
    
    .hero-card-skeleton {
        height: 300px;
    }
}


