/*==================== GOOGLE FONTS ====================*/

@import url("https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@400;500;600&display=swap");
/*==================== BASE ====================*/

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto Slab", serif;
  font-size: 15px;
  background-color: #232323;
  color: hsl(255, 8%, 45%);
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

ol,
ul,
.h1,
.h2,
.h3,
h1,
h2,
h3 {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4 {
  color: hsl(255, 8%, 15%);
  font-weight: 600;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/*==================== LAYOUT ====================*/

body {
  /* default */
  /* background: #232323 url('../imgs/bg.jpg') top center no-repeat; */
  /* background: #656565 url('../imgs/bg-noel-2021-2.jpg') top center no-repeat; */
  /* background: #073832 url('../imgs/bg-newyear-2022.jpg') top center no-repeat; */
  background: #073832 url("../images/bg_home1.png") top center no-repeat;
}

.wrapper-body {
  width: 100%;
  /* default */
  /* background-color: #232323; */
  background-color: #656565;
}

.wrapper-body.subpage {
  background: #e3d0a0 url("../images/bg_sub1.png") top center no-repeat;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

/*==================== HEADER ====================*/

header {
  background: url("../images/bg-header.png") top center no-repeat;
  background-size: 100%;
  height: 199px;
}

.header {
  margin: 0;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
}

.nav {
  position: relative;
  display: block;
  width: 100%;
}

.nav .swapmenu {
  display: none;
  text-decoration: none;
  width: 40px;
  height: 40px;
  background: url(../images/icon-menu.png) center center no-repeat;
}

.nav__logo {
  position: absolute;
  /*top: 20px;*/
  left: 48%;
  transform: translateX(-50%);
  transition: height 300ms;
  height: 140px;
}

.nav__menu-mobile {
  display: none;
}
.nav__list {
  display: flex;
  justify-content: center;
  overflow: hidden;
  margin-top: 20px;
}

.nav__item {
  list-style: none;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  text-align: center;
  margin-right: 50px;
  transition: color 300ms;
  font-size: 16px;
}

.nav__item:nth-child(3) {
  margin-right: 280px;
}

.nav__item a {
  color: #ffffff;
}

.nav__item a:hover {
  color: #ffe822;
  text-decoration: unset;
}

.nav__item:nth-child(1):after {
  content: "";
  display: inline-block;
  overflow: hidden;
  width: 13px;
  height: 13px;
  background: url(../images/dot.png) no-repeat;
  position: absolute;
  left: 97px;
  top: 6px;
}

.nav__item:nth-child(2):after {
  content: "";
  display: inline-block;
  overflow: hidden;
  width: 13px;
  height: 13px;
  background: url(../images/dot.png) no-repeat;
  position: absolute;
  left: 73px;
  top: 6px;
}

.nav__item:nth-child(4):after {
  content: "";
  display: inline-block;
  overflow: hidden;
  width: 13px;
  height: 13px;
  background: url(../images/dot.png) no-repeat;
  position: absolute;
  left: 103px;
  top: 6px;
}

.nav__item:nth-child(5):after {
  content: "";
  display: inline-block;
  overflow: hidden;
  width: 13px;
  height: 13px;
  background: url(../images/dot.png) no-repeat;
  position: absolute;
  left: 84px;
  top: 6px;
}

/*==================== MAIN ====================*/

.main {
  margin-top: 195px;
  margin-bottom: 100px;
}

.mobile-download {
  bottom: 10px;
  right: 10px;
  position: fixed;
  z-index: 9999;
}
.home__container {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
}

.left__container {
  width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
}

.download__line-moving {
  position: relative;
}

.download__line-item-1 {
  position: absolute;
  top: 20px;
  left: 25px;
  width: 11px;
  height: 177px;
  background: url("../images/line-1.png") top center no-repeat;
  animation-name: roll;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-delay: 2s;
}

.download__line-item-2 {
  position: absolute;
  top: 20px;
  left: 25px;
  width: 11px;
  height: 177px;
  background: url("../images/line-2.png") top center no-repeat;
  animation-name: roll;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate-reverse;
  animation-delay: 2s;
}

@keyframes roll {
  0% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(210px);
  }
}

.download__cover {
  background: url("../images/bg-left-download-cover.png") top center no-repeat;
  width: 260px;
  height: 197px;
  position: absolute;
  z-index: 2;
}

.left__container-item {
  margin-bottom: 7px;
}

.download__container {
  background: url("../images/bg-left-download.png") top center no-repeat;
  width: 260px;
  height: 197px;
}

.btn-download-large {
  position: relative;
  display: block;
  width: 201px;
  height: 70px;
  margin-left: 40px;
  margin-top: 35px;
  position: relative;
  z-index: 4;
}

.download__btn-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 230px;
  height: 70px;
  margin-left: 25px;
  margin-top: 17px;
  z-index: 3;
}

.btn-32gb {
  display: block;
  width: 116px;
  height: 70px;
  z-index: 3;
}

.btn-72mb {
  display: block;
  width: 116px;
  height: 70px;
  z-index: 3;
}

.btn-32gb:hover,
.btn-72mb:hover {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 15px;
}

/*==================== HOME ====================*/

.user__container {
  background: url("../images/bg-signup.png") top center no-repeat;
  width: 231px;
  height: 125px;
  margin-left: 19px;
  position: relative;
}

.user__btn-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 7px;
}

.user__btn-signup {
  background: url("../images/btn-signup.png") top center no-repeat;
  width: 109px;
  height: 72px;
  margin-left: 5px;
}

.user__btn-signup:hover {
  background: url("../images/btn-signup.png") bottom center no-repeat;
}

.user__btn-payment {
  background: url("../images/btn-payment.png") top center no-repeat;
  width: 109px;
  height: 72px;
  margin-left: 1px;
}

.user__btn-payment:hover {
  background: url("../images/btn-payment.png") bottom center no-repeat;
}

.user__btn-info {
  display: grid;
  background: url("../images/btn-manage-acc.png") top center no-repeat;
  width: 221px;
  height: 40px;
  margin-top: 1px;
  margin-left: 5px;
}

.user__btn-info:hover {
  background: url("../images/btn-manage-acc.png") bottom center no-repeat;
}

/*==================== TIMELINE ====================*/

.left__container-timeline {
  background: url("../images/daily-timeline.png") top center no-repeat;
  width: 231px;
  height: 391px;
  margin-left: 19px;
}

.tabdaily {
  margin-top: 42px;
}

ul.tab-sv li {
  float: left;
  display: initial;
}

ul.tab-sv li.tablinks-sv a {
  background: #3c3c3c;
  background-size: 130px;
  border-right: solid 1px #716a6a;
  border-bottom: solid 1px #716a6a;
}
ul.tab-sv li.tablinks-sv:first-child a {
  border-left: solid 1px #716a6a;
}

ul.tab-sv li.tablinks-sv a:hover {
  background: #284b75;
  background-position: 0 -48px;
  background-size: 130px;
}

ul.tab-sv li.tablinks-sv a.active {
  background: #284b75;
  background-position: 0 -48px;
  background-size: 130px;
}

ul.tab-sv li a {
  display: block;
  color: #dedede;
  font-family: Roboto;
  font-size: 13px;
  font-weight: 700;
  width: 77px;
  height: 37px;
  border: 0px solid transparent;
  text-align: center;
  text-decoration: none;
  line-height: 16px;
  padding-top: 2px;
}

.tabdaily .list-news {
  display: block;
  overflow: hidden;
  background: #d5d1ce;
  clear: both;
  padding: 11px 10px;
  position: relative;
  z-index: 1;
  top: -1px;
  height: 325px;
}

.tabdaily .list-news .view {
  overflow: hidden;
}

.tabdaily .list-news ul.list {
  display: block;
  overflow: hidden;
  padding: 0 0 6px 0;
}

.tabdaily .list-news ul.list li {
  display: block;
  overflow: hidden;
  border-bottom: 1px solid #c4c1bf;
  padding: 1px 0;
}

.tabdaily .list-news ul.list li:first-child {
  padding: 0 0 7px 0;
}

.tabdaily .list-news ul.list li:last-child {
  border-bottom: 0px;
}

.tabdaily .list-news ul.list li a {
  display: block;
  overflow: hidden;
  font-weight: 500;
  color: #000000;
  height: 29px;
  line-height: 29px;
  position: relative;
  padding-right: 30px;
  padding-left: 20px;
  font-weight: bold;
  background: url(../images/arrow-1.png) left center no-repeat;
}

.tabdaily .list-news ul.list li a:hover {
  font-weight: bold;
  text-decoration: none;
  color: #790000;
}

.tabdaily .list-news ul.list li:first-child a {
  margin-bottom: 5px;
  color: #790000;
}

.tabdaily .list-news ul.list li a .time {
  display: block;
  overflow: hidden;
  font-weight: 300;
  display: inline;
  position: absolute;
  top: 0;
  right: 0;
}

.tabdaily .list-news ul.list li .cover {
  display: block;
  overflow: hidden;
  float: left;
  margin-right: 5px;
}

.tabdaily .list-news ul.list li .cover a {
  height: 80px;
  margin-bottom: 0px;
  padding-right: 0;
  padding-left: 0;
  background: none;
}

.tabdaily .list-news ul.list li .cover img {
  width: 110px;
  height: 80px;
  margin-right: 5px;
  display: block;
  overflow: hidden;
}

.tabdaily .list-news ul.list li p {
  color: #333;
}

.padding-daily {
  padding: 0 !important;
}

.list-news-daily {
  display: block;
  overflow: hidden;
  clear: both;
  padding: 0;
  position: relative;
  z-index: 1;
  top: 0;
  height: 310px;
}

.daily {
  display: block;
  position: relative;
  width: 100%;
}

.daily-inner {
  padding: 0;
  position: relative;
}

.daily h3 {
  text-align: center;
  margin: 0 15px;
  position: relative;
}

.daily h3 span {
  font-size: 14px;
  color: #ffffff;
  text-shadow: 1px 1px 5px #000;
  line-height: 31px;
  text-align: center;
}

.daily .tabs {
  display: block;
  overflow: hidden;
  border-bottom: 1px solid;
}

.daily .tabs ul {
  list-style: none;
  display: flex;
}

.daily .tabs ul li {
  flex: 1;
  text-align: center;
  z-index: 9;
  padding-bottom: 1px;
}

.daily .tabs ul li.active,
.daily .tabs ul li:hover {
  background-color: #656565;
}

.daily .tabs ul li a:hover {
  color: #dedede;
}

.daily .tabs ul li a {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #555555;
  text-decoration: none;
  line-height: 29px;
}

.daily .tabs ul li.active a {
  color: #ffffff;
}

.daily .daily-content > .day {
  display: none;
}

.daily .daily-content .main-content {
  display: block;
  max-height: 300px;
}

.daily .daily-content .main-content .item {
  display: flex;
  padding: 0 0 0 0;
  margin: 0 12px 0 6px;
}

.daily .daily-content .main-content .item:hover {
  background: #fff;
  cursor: pointer;
}

.daily .daily-content .main-content .item .name {
  flex: 1;
  font-size: 13px;
  color: #4a4a4a;
  line-height: 24px;
  font-weight: 600;
  margin-left: 6px;
}

.daily .daily-content .main-content .item .time {
  flex: 0 0 72px;
  max-width: 71px;
  line-height: 24px;
  text-align: right;
  font-size: 11px;
  color: #785200;
  text-transform: uppercase;
  font-weight: 600;
  margin-right: 8px;
}

/* SCROLL STYLE */

.mCSB_inside > .mCSB_container {
  margin-right: 0;
}

.mCSB_scrollTools a + .mCSB_draggerContainer {
  margin: 0;
}

/*==================== CENTER CONTAINER ====================*/

.center__container {
  max-width: 479px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 8px;
}

.center__container-item {
  margin-bottom: 8px;
  z-index: 2;
}

.slide__mobile {
  display: none;
}

.slide__container {
  width: 100%;
  height: 222px;
}

.slide__img {
  width: 479px;
}

.swiper-container .swiper-pagination-slide {
  bottom: 0;
}

.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 1rem;
  left: 88% !important;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #898686;
}

.swiper-pagination-bullet-active {
  background-color: #ffea00 !important;
}

.swiper-button-next,
.swiper-button-prev,
.swiper-pagination-bullet {
  outline: none;
}

/*==================== post ====================*/

.post__container {
  background: url("../images/bg-post.png") top center no-repeat;
  width: 479px;
  height: 340px;
}

.post__tabs {
  display: flex;
  margin-bottom: 15px;
  color: #ffffff;
}

.post__button {
  font-size: 14px;
  font-weight: 0.938rem;
  cursor: pointer;
  width: auto;
  position: relative;
  /* padding-left: 13px; */
  padding-top: 8px;
  height: 38px;
  margin-right: 24px;
  margin-left: 5px;
}

.su-kien,
.giai-dau {
  display: none !important;
}

.post__tabs .post__button-more {
  margin-top: 13px;
  margin-right: 12px;
  font-size: 16px;
  flex-grow: 1;
  order: 1;
}

.post__tabs .post__button-more .more {
  color: #443300;
  float: right;
  background: url("../images/btn-more.png") no-repeat;
  background-size: 100%;
  width: 74px;
  height: 16px;
}

.post__tabs .post__button-more .more:hover {
  background: url("../images/btn-more-hover.png") no-repeat;
  background-size: 100%;
}

.post__button:hover {
  color: #e8e009;
}

.post__icon {
  font-size: 1.8rem;
  margin-right: 0.25rem;
}

.post__data {
  display: grid;
  grid-template-columns: 1fr max-content 1fr;
  column-gap: 1.5rem;
}

.post__title {
  font-size: 0.938rem;
  font-weight: 500;
}

.post__container [data-content] {
  display: none;
}

.post__active[data-content] {
  display: block;
}

.post__button.post__active {
  color: #e8e009;
}

.post__button.post__active:before {
  content: "";
  position: absolute;
  left: 7px;
  bottom: -3px;
  width: 75%;
  border-bottom: 3px solid #e8e009;
}

.post__button:nth-child(1)::after {
  content: "";
  display: inline-block;
  overflow: hidden;
  width: 13px;
  height: 13px;
  background: url(../images/dot.png) no-repeat;
  position: absolute;
  left: 57px;
  top: 17px;
}
.post__button:nth-child(2)::after {
  content: "";
  display: inline-block;
  overflow: hidden;
  width: 13px;
  height: 13px;
  background: url(../images/dot.png) no-repeat;
  position: absolute;
  left: 61px;
  top: 17px;
}
.post__button:nth-child(3)::after {
  content: "";
  display: inline-block;
  overflow: hidden;
  width: 13px;
  height: 13px;
  background: url(../images/dot.png) no-repeat;
  position: absolute;
  left: 80px;
  top: 17px;
}

.view {
  overflow: hidden;
}

.list-news {
  display: block;
  margin-left: 10px;
}

ul.list {
  display: block;
  overflow: hidden;
  padding: 0 0 6px 0;
  height: 280px;
}

ul.list li:first-child {
  padding: 0 13px 5px 3px;
}

ul.list li {
  display: block;
  overflow: hidden;
  border-bottom: 1px solid #c4c1bf;
  padding: 1px 0;
}

ul.list li:first-child a {
  margin-bottom: 5px;
  color: #8d5600;
  text-decoration: none;
}

ul.list li:first-child a:hover {
  color: #4172ae;
  text-decoration: none;
}

ul.list li .post__title {
  display: block;
  overflow: hidden;
  font-weight: 500;
  color: #414141;
  height: 29px;
  line-height: 29px;
  position: relative;
  padding-right: 30px;
  padding-left: 20px;
  font-weight: bold;
  background: url(../images/arrow-1.png) left center no-repeat;
  font-size: 14px;
}

ul.list li .post__title:hover {
  color: #8d5600;
  text-decoration: none;
}

ul.list li .post__title::after {
  content: "";
  display: inline-block;
  overflow: hidden;
  width: 13px;
  height: 13px;
  background: url(../images/dot-blue.png) no-repeat;
  position: absolute;
  left: 0;
  top: 10px;
}

ul.list li .post__title .time {
  display: block;
  overflow: hidden;
  font-weight: 300;
  display: inline;
  position: absolute;
  top: 0;
  right: 0;
}

ul.list li .cover {
  display: block;
  overflow: hidden;
  float: left;
  margin-right: 5px;
}

ul.list li .cover a {
  height: 80px;
  margin-bottom: 0px;
  padding-right: 0;
  background: none;
}

ul.list li p {
  color: #333;
}

ul.list li {
  overflow: hidden;
  border-bottom: 1px solid #84807e;
  padding: 0 13px 2px 3px;
  width: 459px;
}

ul.list li:last-child {
  border: none;
}

/*==================== CENTER CONTAINER BOTTOM ====================*/

.bottom__content {
  display: flex;
}

.bottom__menu {
  display: grid;
  grid-template-columns: repeat(2, 1.1fr);
}

.bottom__menu .bottom__menu-item-1 {
  background: url("../images/item-1.png") top center no-repeat;
  width: 122px;
  height: 65px;
  margin-left: 2px;
}

.bottom__menu .bottom__menu-item-1:hover {
  background: url("../images/item-1.png") bottom center no-repeat;
}

.bottom__menu .bottom__menu-item-2 {
  background: url("../images/item-2.png") top center no-repeat;
  width: 122px;
  height: 65px;
  margin-left: 2px;
}

.bottom__menu .bottom__menu-item-2:hover {
  background: url("../images/item-2.png") bottom center no-repeat;
}

.bottom__menu .bottom__menu-item-3 {
  background: url("../images/item-3.png") top center no-repeat;
  width: 122px;
  height: 65px;
  margin-left: 2px;
}

.bottom__menu .bottom__menu-item-3:hover {
  background: url("../images/item-3.png") bottom center no-repeat;
}

.bottom__menu .bottom__menu-item-4 {
  background: url("../images/item-4.png") top center no-repeat;
  width: 122px;
  height: 65px;
  margin-left: 2px;
}

.bottom__menu .bottom__menu-item-4:hover {
  background: url("../images/item-4.png") bottom center no-repeat;
}

/*==================== RIGHT CONTAINER ====================*/

.right__containner {
  width: 212px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 55px;
  margin-left: 15px;
}

.right__content {
  width: 100%;
  height: 100%;
}

.right__tongkim-notify {
  display: block;
  background: url("../images/tongkim.png") top center no-repeat;
  width: 212px;
  height: 220px;
  margin-bottom: 10px;
}

.right__tongkim-notify:hover {
  background: url("../images/tongkim.png") bottom center no-repeat;
}

.bottom__tongkim-notify {
  display: none;
}

.right__new-feature--content {
  background: url("../images/new-feature.png") top center no-repeat;
  width: 212px;
  height: 340px;
  margin-bottom: 15px;
  position: relative;
}

.new__features-list {
  width: 208px;
  display: block;
  padding-top: 43px;
  padding-left: 8px;
  line-height: 20px;
  height: 333px;
}

.new__features-list li {
  font-size: 14px;
  font-weight: 500;
  border-bottom: solid 1px #b3b3b3;
  position: relative;
  display: block;
  padding: 6px 10px 6px 15px;
  width: 194px;
}

.new__features-list li .new__features-title::after {
  content: "";
  display: inline-block;
  overflow: hidden;
  width: 13px;
  height: 13px;
  background: url(../images/dot-grey.png) no-repeat;
  position: absolute;
  left: 0;
  top: 11px;
}

.new__features-list li .new__features-title {
  color: #1c1c1c;
}

.new__features-list li .new__features-title:hover {
  color: #8d5600;
  text-decoration: none;
}

#mCSB_24_scrollbar_vertical {
  right: -6px;
}

/* FANPAGE */

.right__fanpage--content {
  width: 212px;
  height: 100px;
  position: absolute;
}

.social {
  display: block;
  position: relative;
  margin-top: -6px;
}

/*==================== RIGHT MENU ====================*/

.content-right {
  position: fixed;
  top: 486px;
  right: 170px;
  display: block;
  background: url(../images/bg-menu-right.png) no-repeat;
  overflow: hidden;
  width: 156px;
  height: 253px;
  z-index: 1;
}

.content-right .inner {
  display: block;
  overflow: hidden;
  margin: 0;
}

.content-right a {
  display: block;
  overflow: hidden;
  width: 156px;
  margin-bottom: 0;
  margin-left: 0;
  border: 0;
}

.content-right .download {
  height: 85px;
  background-position: -66px -55px;
}

.content-right .download:hover {
  background: url(../images/bg-menu-right.png) right top no-repeat;
  background-position: -156px 0;
}

.content-right .hotline {
  height: 33px;
}

.content-right .hotline:hover {
  background: url(../images/bg-menu-right.png) right top no-repeat;
  background-position: -156px -85px;
}

.content-right .trade {
  height: 33px;
}

.content-right .trade:hover {
  background: url(../images/bg-menu-right.png) right top no-repeat;
  background-position: -156px -118px;
}

.content-right .fanpage {
  height: 33px;
}

.content-right .fanpage:hover {
  background: url(../images/bg-menu-right.png) right top no-repeat;
  background-position: -156px -151px;
}

.content-right .group {
  height: 38px;
}

.content-right .group:hover {
  background: url(../images/bg-menu-right.png) right top no-repeat;
  background-position: -156px -184px;
}

.content-right .totop {
  display: block;
  overflow: hidden;
  background: url("../imgs/top.png") no-repeat;
  width: 165px;
  height: 47px;
}

.content-right .line {
  display: block;
  overflow: hidden;
  width: 100%;
  height: 1px;
  background-color: #423220;
  margin: 2px 0;
}

/*==================== FORM SEARCH ====================*/

.search__container {
  display: inline-block;
  margin: 0 auto;
  position: relative;
  left: auto;
  background-color: #ffffff;
  border-radius: 100px;
}

.search__content {
  display: flex;
  border: 2px solid #ccc;
  border-radius: 100px;
  padding: 7px 15px;
  transition: background-color 0.5 ease-in-out;
}

.search__content input {
  border: 0;
  background-color: transparent;
  width: 447px;
}

.search__content input:focus {
  outline: none;
}

.search__content .btn-search {
  border: none;
  width: 37px;
  height: 35px;
  cursor: pointer;
  background-color: #767676;
  position: absolute;
  border-bottom-right-radius: 100px;
  border-top-right-radius: 100px;
  top: 2px;
  left: 442px;
}

.search__content .btn-search::before {
  content: "";
  display: inline-block;
  overflow: hidden;
  background: url(../images/icon-search.png);
  width: 18px;
  height: 18px;
  margin-top: 7px;
}

/*==================== CATEGORY CONTAINNER ====================*/

.category__container {
  width: 700px;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 12px;
}
.category-margin {
  margin-top: 55px;
}

.category__content {
  background: #cdcdcd url("../images/bg-category.png") top center no-repeat;
  display: block;
  width: 100%;
  height: 100%;
}

.detail-content {
  overflow: hidden;
  width: 100%;
  height: 100%;
  border: solid 1px;
}

.detail-content .head {
  display: block;
  overflow: hidden;
  width: 100%;
  position: relative;
}

.detail-content .head:before {
  content: "";
  display: block;
  overflow: hidden;
  width: 47px;
  height: 42px;
  position: absolute;
  top: 44%;
  left: 15px;
  transform: translateY(-50%);
  background: url("../images/emblem.png") no-repeat;
}

.detail__content .detail-content .head h3 {
  margin-top: 7px;
}

.detail-content .head h3 {
  color: #fff600;
  font-size: 24px;
  font-weight: bold;
  margin-top: 8px;
  padding-left: 73px;
}

.detail-content .head .time {
  color: #ffffff;
  font-size: 14px;
  padding-left: 73px;
}

.detail-content .head .breadcrums {
  color: #ffffff;
  font-size: 14px;
  padding-left: 73px;
}

.detail-content .head .breadcrums a {
  text-decoration: none;
  color: #ffffff;
}

.detail-content .body {
  padding: 10px 32px 20px;
}

.detail-content .body .content {
  color: #191616;
  min-height: 300px;
  line-height: 1.8em;
  letter-spacing: 0.01rem;
}

@media (max-width: 768px) {
  .detail-content .body .content img {
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
  }
}

.detail-content .body .content strong {
  color: #8d5600;
}

.detail-content .body table {
  width: 100% !important;
  margin: 15px 0;
  border-collapse: collapse !important;
}

.detail-content .body table tr,
.detail-content .body table td {
  border: solid 1px;
  padding: 5px;
}

.detail-content .body ol {
  margin: 0 0 15px 0;
  padding: 0 0 0 25px;
}

.detail-content .body ul,
.detail-content .body ol {
  list-style: initial;
  padding-left: 25px;
}

.detail-content .body ul li {
  list-style-type: disc;
  padding: 2px 0;
}

.detail-content .body ol li ul li,
.detail-content .body ul li ul li {
  list-style-type: circle;
}

.detail-content .body ul li ul li ul li {
  list-style-type: square;
}

.detail-content .body a {
  color: #8d5600;
  text-decoration: underline;
}

.detail-content .body a:hover {
  color: #bd790e;
}

.detail-content .body .items {
  display: block;
  overflow: hidden;
  margin-bottom: 40px;
}

.detail-content .body .item {
  display: flex;
  border-bottom: 1px solid #4a4949;
  padding: 8px 0;
  justify-content: space-between;
}

.detail-content .body .item .cover {
  margin-right: 10px;
  flex: 0 0 114px;
  max-width: 114px;
}

.detail-content .body .item .cover img {
  width: 100%;
}

.detail-content .body .item .detail {
  flex: 1;
  overflow: hidden;
}

.detail-content .body .item .detail h3 {
  margin-bottom: 5px;
}

.detail-content .body .item .detail h3 a {
  text-decoration: none;
  color: #8d5600;
  font-size: 14px;
}

.detail-content .body .item .detail h3 a:hover {
  color: #bd790e;
}

.detail-content .body .item .detail p {
  color: #191616;
  font-size: 14px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* NAV CATEGORY */

.detail-content .body .nav {
  display: flex;
  position: relative;
  margin-bottom: 10px;
  margin-left: -26px;
  margin-top: 20px;
}

.detail-content .body .nav ul {
  display: flex;
  flex-wrap: wrap;
}
.detail-content .body .nav ul li:nth-child(1) {
  order: 1;
}
.detail-content .body .nav ul li:nth-child(2) {
  order: 0;
}
.detail-content .body .nav ul li:nth-child(3) {
  order: 0;
}
.detail-content .body .nav ul li:nth-child(4) {
  order: 0;
}
.detail-content .body .nav ul li {
  display: inline-block;
  position: relative;
  background: rgba(65, 66, 65, 0.3);
  margin-right: 5px;
  border: solid 1px #ded9d9;
  list-style-type: none;
  padding: 0;
  margin-top: 5px;
}

.detail-content .body .nav ul li:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 12px;
  height: 45px;
}

.detail-content .body .nav ul li:last-child:after {
  display: none;
}

.detail-content .body .nav ul li a {
  display: block;
  overflow: hidden;
  text-align: center;
  height: 37px;
  text-decoration: none;
  color: #365d8b;
  font-size: 18px;
  font-weight: 500;
  padding: 7px 10px 0 10px;
}

.detail-content .body .nav ul li a.active {
  background-color: #ffffff;
}

.detail-content .body .nav ul li a:hover {
  color: #ffffff;
}
.detail-content .body .nav ul li a.active:hover {
  color: #365d8b;
}

/* DETAIL POST RELATED */

.detail__post-related {
  background: url("../images/bg-post-relate.png") no-repeat;
  background-size: cover;
  height: auto;
}

.post__related-list {
  padding: 50px 16px 10px 16px;
}

.post__related-list .title {
  color: #664127;
  font-size: 15px;
  position: relative;
  padding-left: 20px;
  padding-bottom: 6px;
  padding-bottom: 6px;
  font-weight: 500;
}

.post__related-list .title a {
  color: #664127;
  text-decoration: none;
}

.post__related-list .title a:hover {
  color: #327dad;
}

.post__related-list .title:before {
  content: "";
  display: block;
  overflow: hidden;
  width: 13px;
  height: 13px;
  position: absolute;
  top: 45%;
  left: 0;
  transform: translateY(-50%);
  background: url("../images/dot-blue.png") no-repeat;
}

.post__related-list .title.title-0 {
  padding-left: 0px;
}

.post__related-list .title.title-0:before {
  display: none;
}

.post__related-list .title .time {
  display: block;
  overflow: hidden;
  font-weight: 300;
  display: inline;
  position: absolute;
  top: 0;
  right: 0;
}

/* PAGING */

.paging {
  display: block;
  overflow: hidden;
  width: 100%;
}

.paging .paging-inner {
  text-align: center;
}

.paging ul {
  display: inline-block;
}

.paging ul li {
  display: inline-block;
  vertical-align: middle;
}

.paging ul li a {
  display: block;
  overflow: hidden;
  width: 28px;
  height: 28px;
  text-decoration: none;
  color: #8d5600;
  margin: 0 4px;
  border: solid 2px #8d5600;
  font-weight: 500;
  font-size: 14px;
  padding-top: 2px;
  text-decoration: none !important;
}

.paging ul li a:hover,
.paging ul li.active a {
  color: #009688 !important;
  border: solid 2px #009688;
}

/*==================== FOOTER ====================*/

footer {
  background: url("../images/bg-footer.png") center no-repeat;
  height: 96px;
  display: block;
  position: relative;
  width: 100%;
}

/*==================== POST DETAIN CONTAINNER ====================*/

.detail__container {
  width: 940px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 12px;
  background-color: #cdcdcd;
  border: solid 1px;
}

.detail__content {
  display: block;
  background: url("../images/bg-post-detail.png") top center no-repeat;
  width: 100%;
  height: 100%;
  background-position-y: -7px;
}

/*==================== MEDIA QUERIES ====================*/

@media screen and (max-width: 1780px) {
  .content-right {
    display: none;
  }
  .mobile-download {
    display: none;
  }
}

@media screen and (max-width: 992px) {
  .home__container {
    flex-wrap: wrap;
  }
  body {
    background: url("../images/bg-tablet.jpg") top center no-repeat;
    background-size: cover;
  }
  .center__container {
    max-width: 100%;
  }
  .category-margin {
    margin-top: 0;
  }
  .nav__menu {
    display: none;
  }
  .nav__logo {
    display: none;
  }
  .nav__menu-mobile {
    display: block;
  }
  .header {
    height: 91px;
    width: 100%;
    max-width: 100%;
    background: url("../images/bg-menu-mobile.png");
    position: fixed;
    top: 0;
    left: 0;
    z-index: 6;
  }
  .menu__mobile-content {
    display: flex;
    margin-right: 0;
  }
  .nav__logo-mobile {
    width: 170px;
    margin-top: 5px;
    margin-left: 10px;
  }
  .menu__mobile-item.icon-hambuger {
    width: 90px;
  }
  .menu__mobile-item.btn-list {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
    margin-right: 20px;
  }
  .menu__mobile-item.btn-list .btn {
    float: right;
    width: 125px;
    height: 63px;
    margin-top: 13px;
    margin-right: 4px;
  }
  .btn-download {
    background: url("../images/btn-download-tl.png") top center no-repeat;
  }
  .btn-download:hover {
    background: url("../images/btn-download-tl.png") bottom center no-repeat;
  }
  .btn-download span {
    color: #fcd701;
    font-size: 22px;
    padding-top: 8px;
    display: block;
    width: 100%;
    height: 100%;
    text-shadow: 2px 0 0 #13283e, -2px 0 0 #13283e, 0 2px 0 #13283e,
      0 -2px 0 #13283e, 1px 1px #13283e, -1px -1px 0 #13283e, 1px -1px 0 #13283e,
      -1px 1px 0 #13283e;
  }
  .menu-dropdown-list {
    display: none;
    background-color: #383837;
    position: absolute;
    text-align: unset;
    overflow: hidden;
    max-width: 210px;
    height: auto;
    margin: -115px 0 0 0;
    right: 312px;
    z-index: 1;
    top: 191px;
  }
  .menu-dropdown-list ul {
    width: 100%;
    height: 100%;
    text-align: left;
    font-size: 18px;
  }
  .menu-dropdown-list li {
    width: 210px;
    height: 31px;
    position: relative;
    display: inline-block;
    border-bottom: solid 1px;
    padding-bottom: 32px;
    padding-top: 10px;
    cursor: pointer;
  }
  .menu-dropdown-list li a {
    color: #dec56f;
    font-weight: 500;
    padding: 20px;
  }
  .showList .menu-dropdown-list {
    display: block;
    transition: all 1s ease-in-out;
  }
  .btn-account {
    background: url("../images/btn-acc.png") top left no-repeat;
    background-size: 100%;
  }
  .btn-account:hover {
    background: url("../images/btn-acc-hover.png") no-repeat;
    background-size: 100%;
  }
  .btn-payments {
    background: url("../images/btn-pay.png") top right no-repeat;
    background-size: 100%;
  }
  .btn-payments:hover {
    background: url("../images/btn-pay-hover.png") no-repeat;
    background-size: 100%;
  }
  .header .nav__menu-mobile {
    text-align: center;
    margin-right: 20px;
  }
  .header .nav__menu-mobile > a {
    display: inline-block;
  }
  .header .nav__menu-mobile .logo {
    position: static;
    left: unset;
    transform: unset;
    height: 52px;
    display: block;
    margin: 0 auto;
  }
  .show {
    background: url(../images/icon-menu-x.png) center center no-repeat !important;
    background-size: 100% !important;
  }
  .header .menu__mobile-item .swapmenu {
    display: flex;
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    width: 80px;
    height: 62px;
    background: url(../images/icon-menu.png) center center no-repeat;
    background-size: 100%;
    margin-top: 14px;
  }
  .header .menu__mobile-item .swapmenu .hide {
    display: none;
  }
  .header .menu__mobile-item .swapmenu.show .show {
    display: none;
  }
  .header .menu__mobile-item .swapmenu.show .hide {
    display: block;
  }
  .showMenu .menu-mobile {
    right: 0;
  }
  .menu-mobile {
    display: block;
    background-color: #383837;
    position: absolute;
    text-align: unset;
    overflow: hidden;
    width: 320px;
    height: auto;
    margin: -100px 0 0 0;
    right: -415px;
    z-index: 1;
    top: 191px;
  }
  .menu-mobile ul {
    width: 100%;
    height: 100%;
  }
  .menu-mobile ul {
    width: 100%;
    height: 100%;
    text-align: left;
    font-size: 18px;
  }
  .menu-mobile li {
    width: 320px;
    height: 31px;
    padding: 20px;
    position: relative;
    display: inline-block;
    border-bottom: solid 1px;
    padding-bottom: 32px;
    padding-top: 10px;
  }
  .menu-mobile li:last-child {
    border: none;
  }
  .menu-mobile li a {
    color: #dec56f;
    font-weight: 500;
    padding: 20px;
  }
  .main {
    justify-content: unset;
    flex-direction: column;
    margin-top: 184px;
  }
  .left__container {
    display: none;
  }
  .right__containner {
    display: none;
  }
  .slide__container {
    order: -1;
  }
  .slide__pc {
    display: none;
  }
  .slide__mobile {
    display: flex;
  }
  .slide__img {
    width: 758px;
  }
  .slide__img img {
    width: 100%;
    max-width: 758px;
  }
  .bottom__menu {
    display: none;
  }
  .post__container {
    background: url(../images/bg-post-tablet.png) top center no-repeat;
    width: 758px;
    height: 340px;
  }
  ul.list li {
    width: 100%;
  }
  .bottom__content {
    width: 758px;
  }
  .mobile-download {
    display: flex;
  }

  .home__container {
    padding: 0;
  }
  .detail__container,
  .detail__post-related {
    width: auto;
  }
  .category__content {
    margin-left: 10px;
    margin-right: 10px;
  }
}

@media screen and (max-width: 768px) {
  body {
    background: url("../images/bg-mobile.png") top center no-repeat;
    background-size: cover;
    background-position-y: 16px;
  }
  .slide__container {
    max-width: 536px;
  }
  .slide__img {
    width: 100%;
  }
  .slide__mobile {
    height: auto;
  }
  .bottom__menu {
    display: none;
  }
  .bottom__content {
    width: 539px;
  }
  .post__container {
    background: url(../images/bg-post-mobile.png) top center no-repeat;
    width: 539px;
    height: 340px;
  }
  .mobile-download {
    display: flex;
  }
  .menu__mobile-item.btn-list .btn.btn-download {
    display: none;
  }
}

@media screen and (max-width: 568px) {
  body {
    background: url("../images/bg-mobile.png") top center no-repeat;
    background-size: cover;
    background-position-y: 30px;
  }
  .center__container {
    max-width: 100%;
  }
  .post__container {
    background: url(../images/bg-post-mobile.png) top center no-repeat;
    width: 100%;
    height: 340px;
  }
  .bottom__content {
    width: 100%;
    grid-template-columns: repeat(1, 1fr);
    justify-items: center;
  }
  ul.list li .post__title .time {
    position: relative;
    font-weight: bold;
  }
  .bottom__content .bottom__tongkim-notify {
    margin-bottom: 20px;
  }
  ul.list {
    height: 270px;
  }
  .search__container {
    width: 300px;
  }
  .search__content input {
    width: 447px;
  }
  .search__content .btn-search {
    left: 261px;
  }
  .detail__content .detail-content .head h3 {
    font-size: 18px;
  }
  .detail__content .detail-content .head h3 {
    margin-top: 5px;
  }
  .post__related-list .title .time {
    position: relative;
  }
  .detail-content .head .time {
    padding-left: 58px;
  }
  .detail-content .head h3 {
    padding-left: 58px;
  }
  .detail-content .head:before {
    top: 40%;
    left: 5px;
  }
  .post__tabs .post__button-more .more {
    font-size: 14px;
  }
  .post__tabs .post__button {
    font-size: 12px;
    margin-right: 8px;
  }
  .post__button::after {
    display: none !important;
  }
  .menu__mobile-item.btn-list .btn {
    width: 70px;
  }
  .header .menu__mobile-item .swapmenu {
    width: 52px;
    height: 34px;
  }
  .nav__logo-mobile {
    width: 115px;
  }
  .header {
    height: 65px;
  }
  .menu-mobile {
    top: 176px;
    width: 210px;
  }
  .menu-mobile ul {
    font-size: 15px;
  }
  .main {
    margin-top: 60px;
  }
  .container {
    padding-right: 0;
  }
  .post__related-list {
    position: relative;
    display: inline-block;
    margin-top: 30px;
  }
  .mobile-download {
    display: flex;
  }
}

@media screen and (max-width: 410px) {
  .nav__logo-mobile {
    width: 70px;
    margin-top: 15px;
  }
  .post__tabs .post__button-more .more {
    width: 15px;
    height: 16px;
    background: url("../images/btn-more-mobile.png") no-repeat;
    background-size: 100%;
  }
  .mobile-download {
    display: flex;
  }
}

@media screen and (max-width: 350px) {
  .menu__mobile-item.btn-list .btn {
    display: none;
  }
  .mobile-download {
    display: flex;
  }
}
