<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.carousel-cell {
  width: 100%;
  display: flex;
}

.carousel-cell .banner-item img {
  max-width: 100%;
}

/* Banner Bottom */
#banners-bottom-container {
  position: relative;
}
.banners-bottom {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1400px;
  width: 100%;
  z-index: 9999;
  background: transparent; /* TÃ¹y chá»‰nh ná»n náº¿u cáº§n */
  padding: 0; /* Khoáº£ng cÃ¡ch bÃªn trong */
}

.banners-bottom-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Máº·c Ä‘á»‹nh 2 cá»™t */
}

.banners-bottom-grid a img {
  width: 100%;
  height: auto;
}

/* Äiá»u chá»‰nh trÃªn thiáº¿t bá»‹ mobile */
@media (max-width: 768px) {
  .banners-bottom-grid {
    grid-template-columns: 1fr; /* Má»—i banner 1 hÃ&nbsp;ng */
  }
}

#open-banner-bottom {
  position: fixed;
  bottom: 20px;
  left: 10px;
  background: red;
  color: white;
  border: none;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  padding: 5px;
}

#close-banner-bottom {
  position: absolute;
  top: -24px;
  left: 0;
  background: red;
  color: white;
  border: none;
  display: flex;
  align-items: center; /* CÄƒn giá»¯a biá»ƒu tÆ°á»£ng theo chiá»u dá»c */
  justify-content: center; /* CÄƒn giá»¯a biá»ƒu tÆ°á»£ng theo chiá»u ngang */
  font-size: 14px; /* KÃ­ch thÆ°á»›c biá»ƒu tÆ°á»£ng chá»¯ */
  line-height: 1; /* Äáº£m báº£o ná»™i dung khÃ´ng bá»‹ áº£nh hÆ°á»Ÿng bá»Ÿi chiá»u cao dÃ²ng */
  cursor: pointer;
  padding: 5px;
}

a.btn {
  display: inline-block; /* Hiá»ƒn thá»‹ nhÆ° má»™t nÃºt */
  padding: 12px 24px; /* Khoáº£ng cÃ¡ch trong nÃºt */
  font-size: 16px; /* KÃ­ch thÆ°á»›c chá»¯ */
  font-weight: bold; /* Chá»¯ Ä‘áº­m */
  color: white; /* MÃ&nbsp;u chá»¯ */
  text-decoration: none; /* Bá» gáº¡ch chÃ¢n */
  text-align: center; /* CÄƒn giá»¯a chá»¯ */
  background: #c9aa71; /* Ná»n chuyá»ƒn mÃ&nbsp;u ná»•i báº­t */
  border: none; /* KhÃ´ng viá»n */
  border-radius: 8px; /* Bo gÃ³c */
  transition: all 0.3s ease;
  cursor: pointer; /* Con trá» dáº¡ng bÃ&nbsp;n tay */
}

a.btn:hover {
  background: #af9463; /* Äá»•i hÆ°á»›ng gradient khi hover */
  transform: translateY(-2px); /* NÃºt nhÃ­ch lÃªn khi hover */
  box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.3);
}

a.btn:active {
  transform: translateY(2px); /* NÃºt nháº¥n xuá»‘ng khi click */
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2); /* Giáº£m Ä‘á»• bÃ³ng khi click */
}

/* Banner Top */
@media (min-width: 768px){
	.banners-top-wrapper img{
		height: 128px;
	}
}</pre></body></html>