@charset "UTF-8";

/* Main */
:root {
  --color-red: #f00;
  --color-medium-red: #cc2c32;
  --color-dark-red: #c31829;
  --color-green: #28a745;
  --color-dark-green: #207d36;
  --color-black: #212529;
  --color-gray: #6c757d;
  /* custom color */
  --font-body: 'Arial';
  --font-title: 'Arial';
  --font-title-card: 'Arial';
  --color-bg-hover: #8b0715;
  --color-hover-text: #c31829;
  --max-width: 1220px;
  --color-title: #de0000;
  --color-title-2: #c35c18;
  --color-title-3: #c3a418;

}

.w-clear:after {
  display: block;
  content: "";
  clear: both;
}

.hidden {
  display: none;
}

.clear {
  clear: both;
}

.none {
  display: none;
}

.hidden-seoh {
  visibility: hidden;
  height: 0px;
  margin: 0px;
  overflow: hidden;
}

/* General */
.res-img-detail {
  width: 100%;
}

.res-img-detail img {
  max-width: 100%;
  height: auto !important;
}

.res-img-detail .table-detail-inpage {
  overflow-x: auto;
  max-width: 950px;
}

.res-img-detail .table-detail-inpage table {
  max-width: 950px;
}

#share-buttons button {
  transition: all .2s;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 5px !important;
}

#share-buttons button:hover {
  transition: all .2s;
  filter: invert(1);
}

/* Scale IMG */
.scale-img {
  overflow: hidden;
  display: block;
}

.scale-img img {
  -webkit-transition: 0.5s ease-out;
  -moz-transition: 0.5s ease-out;
  -o-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
  -moz-transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
}

.scale-img:hover img {
  -webkit-transition: 0.5s ease-out;
  -moz-transition: 0.5s ease-out;
  -o-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
  -moz-transform: scale(1.1, 1.1);
  -webkit-transform: scale(1.1, 1.1);
  -o-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
  filter: brightness(0.9);
}

/* mobile footer */
.fix-toolbar {
  background: radial-gradient(circle, rgba(188, 21, 27, 1) 0%, rgba(0, 0, 0, 1) 100%);
  width: 100%;
  padding: 5px;
  bottom: 0;
  position: fixed;
  height: auto;
  line-height: 25px;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: none;
  border-top: 1px solid #ffffff82;
  z-index: 100;
}

.fix-toolbar ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px;
  list-style: none;
  margin: 0;
}

.fix-toolbar ul li {
  text-align: center;
  width: 20%;
}

.fix-toolbar ul li a {
  display: block;
  width: 100%;
  cursor: pointer;
  color: #fff;
  font-size: 30px;
}

.fix-toolbar ul li a img {
  height: 25px;
  width: auto;
}

.fix-toolbar img {
  vertical-align: top;
}

.fix-toolbar ul li a span {
  font-weight: 400;
  color: #fff;
  font-size: 13px;
  display: none;
}

#toc-content img {
  max-width: 100%;
  height: auto !important;
}

/* Scroll Top */
.scrollToTop {
  width: 41px;
  height: 41px;
  text-align: center;
  font-weight: bold;
  color: #444;
  text-decoration: none;
  position: fixed;
  bottom: 15px;
  right: 13px;
  display: none;
  z-index: 10;
  cursor: pointer;
}

/* Like Share */
.social-plugin {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
}

.social-plugin .at-share-btn {
  margin-bottom: 0px !important;
}

.social-plugin .zalo-share-button {
  margin-left: 3px;
}

.share {
  padding: 15px 10px;
  line-height: normal;
  margin-top: 15px;
  border: 1px solid #dcdcdc1a;
  border-radius: 10px;
  background: #dcdcdc29;
}

.share ul li a i {
  transition: all 0.3s;
}

.share ul li a i:hover {
  color: #000 !important;
  transition: all 0.3s;
  transform: translateY(-3px);
}

/* Pagination */
.pagination-home {
  width: 100%;
  text-align: center;
  margin: 20px auto;
}

.pagination-home .pagination .page-item .page-link {
  color: #555555;
  font-size: .875rem;
  margin: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 30px;
  border-radius: 5px;
}

.pagination-home .pagination .page-item.active .page-link {
  color: #ffffff;
  background-color: #555555;
  border-color: #555555;
}

/* pagination ajax */
.pagination-ajax {
  text-align: center;
  margin-top: 20px;
}

.pagination-ajax a {
  vertical-align: top;
  margin: 3px;
  color: #333;
  background: #eee;
  border: 1px solid rgba(161, 161, 161, 0.4);
  font-size: 12px;
  cursor: pointer;
  width: 35px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  transition: all ease 0.3s;
}

.pagination-ajax a:hover {
  background: var(--color-red);
  color: #fff;
  border-color: var(--color-red);
  transform: translateY(-2px);
  transition: all ease 0.3s;
}

.translate img {
  cursor: pointer;
}

.pagination-ajax a.current {
  background: var(--color-red);
  color: #fff;
  border-color: var(--color-red);
  transform: translateY(0);
}

.title-search {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}

.count-search {
  margin-bottom: 20px;
  color: #fff;
}

.wrap-content {
  width: 100%;
  margin: 0 auto;
  max-width: 1280px;
}