@charset "UTF-8";
* {
  box-sizing: border-box;
}
*::-webkit-scrollbar {
  width: 7px;
  height: 7px;
  background-color: rgba(0, 0, 0, 0);
  /* or add it to the track */
  cursor: pointer;
}
*::-webkit-scrollbar {
  width: 7px;
  background-color: rgba(0, 0, 0, 0);
  /* or add it to the track */
  cursor: pointer;
}
*::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 0.5rem;
}
*::-webkit-scrollbar-thumb {
  border-radius: 0.5rem;
  background: #888;
}
*::-webkit-scrollbar-thumb:hover {
  background: #555;
}

body {
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #616161;
  background-color: #f7f7f7;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  background: none;
  color: inherit;
}

.btn {
  padding: 0;
}
.btn:focus {
  outline: none;
  box-shadow: none;
}

.btn-primary,
.btn-primary:hover {
  background: none;
  color: inherit;
  border-color: #616161;
}

.btn-custom-red,
.btn-custom-red:hover {
  background-color: #ea2127;
  color: white;
  border: none;
}

#main-content {
  padding-top: 45px;
  flex: 1 0 auto;
}

.main-content-bkg {
  background-color: #f2f2f2;
}

.w-80 {
  width: 80%;
}

.w-20 {
  width: 20%;
}

.margin-top-10 {
  margin-top: 10px;
}

.margin-top-15 {
  margin-top: 15px;
}

.margin-top-40 {
  margin-top: 40px;
}

.margin-bottom-40 {
  margin-bottom: 40px;
}

.padding-bottom-30 {
  padding-bottom: 30px;
}

.padding-top-10 {
  padding-top: 10px;
}

.padding-bottom-10 {
  padding-bottom: 10px;
}

.padding-45 {
  padding: 45px;
}

.help-block {
  color: #ea2127;
  margin-top: 5px;
  display: block;
}

.form-group {
  margin-bottom: 10px;
}

label {
  margin-bottom: 5px;
  font-weight: bold;
}

.btn-dangnhap {
  color: white;
  border-radius: 4px;
  background: #ea2127;
  height: 30px;
  border: none;
  width: 113px;
  margin-top: 5px;
}

.btn-dangky {
  border: 1px #a1a1a1 solid;
  border-radius: 4px;
  background: #f7f7f7;
  width: 113px;
  height: 30px;
  margin-right: 5px;
  margin-top: 5px;
}

#loader {
  display: none;
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #3498db;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.nav-custom .page-link {
  display: block;
  width: 25px;
  height: 25px;
  line-height: 23px;
  text-align: center;
  font-size: 13px;
  margin-left: 5px !important;
  border-radius: 50% !important;
  padding: 0 !important;
  color: white;
  background-color: #b7b7b7;
}
.nav-custom .page-link.active {
  background: #c0030a;
}

.vote-star {
  display: flex;
  align-items: center;
}

.rating {
  display: flex;
  align-items: center;
  transform: rotateY(180deg);
  width: -moz-max-content;
  width: max-content;
}
.rating input {
  display: none;
}
.rating input:checked {
  /** khi check vao label: hien thi after lable dc check va cac after cua label lien ke sau no**/
}
.rating input:checked ~ label::after {
  opacity: 1;
}
.rating label {
  display: block;
  cursor: pointe;
  margin: 0 5px;
  position: relative;
}
.rating label::before {
  content: "\f005";
  font: normal normal normal 24px/1 FontAwesome;
  color: #787878;
  display: block;
}
.rating label::after {
  content: "\f005";
  font: normal normal normal 24px/1 FontAwesome;
  color: #FFD700;
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  opacity: 0;
  translate: 0.5s;
}
.rating label.active::after {
  opacity: 1;
}
.rating label.active ~ label::after {
  opacity: 1;
}
.rating label:hover {
  /** khi hover vao label: hien thi after lable dc hover va cac after cua balel lien ke sau no**/
}
.rating label:hover ~ label::after, .rating label:hover::after {
  opacity: 1;
}
.rating label:hover ~ input:checked ~ label::after {
  color: #FFED85;
}

.referral-list {
  max-width: 95vw;
}
.referral-list .modal-body {
  max-width: 95vw;
  overflow: auto;
}

.tree-referal,
.tree-referal ul,
.tree-referal li {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.tree-referal {
  margin: 0 auto !important;
  text-align: center;
}
.tree-referal,
.tree-referal ul {
  display: table;
}
.tree-referal ul {
  width: 100%;
}
.tree-referal li {
  display: table-cell;
  padding: 0.5em 0;
  vertical-align: top;
}
.tree-referal li:before {
  outline: solid 1px #666;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.tree-referal li:first-child:before {
  left: 50%;
}
.tree-referal li:last-child:before {
  right: 50%;
}
.tree-referal .node {
  border: solid 0.1em #666;
  border-radius: 0.2em;
  display: inline-block;
  margin: 0 0.2em 0.5em;
  padding: 0.5em;
  position: relative;
}
.tree-referal .node .node_avatar img {
  max-width: 50px;
  max-height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}
.tree-referal .node .node_title {
  margin-top: 5px;
}
.tree-referal ul:before,
.tree-referal .node:before {
  outline: solid 1px #666;
  content: "";
  height: 0.5em;
  left: 50%;
  position: absolute;
}
.tree-referal ul:before {
  top: -0.5em;
}
.tree-referal .node:before {
  top: -0.55em;
}
.tree-referal > li {
  margin-top: 0;
}
.tree-referal > li:before, .tree-referal > li:after, .tree-referal > li > .node:before {
  outline: none;
}

.modal-custom {
  max-width: 95vw;
  width: 1170px;
  height: 90vh;
}
.modal-custom.modal-brand_register {
  width: 600px;
}
.modal-custom .modal-header {
  padding: 0;
}
.modal-custom .modal-header .modal-header_left {
  display: flex;
  align-items: center;
}
.modal-custom .modal-header .modal-header_left .btn-close {
  background: #ea1d23 url("../images/quay_lai_showroom.png");
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 1;
  border-radius: 0;
  border-top-left-radius: 0.25rem;
}
.modal-custom .modal-header .modal-header_left .modal-header_left-title {
  background-color: #3399cc;
  display: flex;
  align-items: center;
  height: 45px;
  padding: 7px 15px;
  min-width: 200px;
}
.modal-custom .modal-header .modal-header_left .modal-header_left-title::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: white url("../images/info_icon.png");
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 50%;
}
.modal-custom .modal-header .modal-header_left .modal-header_left-title h5 {
  color: white;
  font-size: 14px;
  line-height: 32px;
  font-weight: normal;
  margin-left: 10px;
}
.modal-custom .modal-header .btn-close {
  box-sizing: border-box;
  width: 45px;
  height: 45px;
  margin: 0;
}
.modal-custom .modal-body {
  max-height: calc(90vh - 47px);
  min-height: 70vh;
  overflow-y: auto;
}
.modal-custom .modal-body .modal-custom-content {
  overflow-y: auto;
  max-height: 80vh;
}
.modal-custom img {
  width: 100%;
}

#modal-brand_register .captcha-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
#modal-brand_register .captcha-row img {
  width: auto;
  height: 32px;
  border: #e1e1e1 1px solid;
  border-radius: 4px;
}
#modal-brand_register .captcha-row button {
  background: none;
  border: none;
  padding: 0 4px;
  color: #00a1ab;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.cart-item:not(:last-child) {
  padding-bottom: 15px;
  border-bottom: 1px solid #f2f2f2;
}
.cart-item:not(:first-child) {
  padding-top: 15px;
}
.cart-item img {
  max-width: 100%;
  height: auto;
}
.cart-item .cart-item_title a {
  cursor: pointer;
}
.cart-item .cart-item_title a:first-child {
  background-color: inherit;
  font-size: 14px;
  font-weight: bold;
  display: block;
}
.cart-item .cart-item_title a:last-child {
  color: #5f5f5f;
  font-style: italic;
  font-size: 11px;
  border-bottom: 1px solid #5f5f5f;
  text-decoration: none;
}
.cart-item .price {
  color: #ff0000;
  font-weight: bold;
  font-size: 12px;
}
.cart-item input[type=number] {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #ebebeb;
  background-color: #fbfbfb;
  text-align: center;
  float: right;
  font-size: 12px;
}

.btn-dathang {
  border: 2px solid #ff0000;
  background-color: #ff0000;
  font-weight: 500;
  color: #fff;
  padding: 0px 15px;
  border-radius: 5px;
  margin-top: 10px;
  padding: 5px 20px;
}

.checkout .form_dathang-form,
.checkout .form_dathang-donhang {
  padding: 45px;
  position: relative;
}
.checkout .form_dathang label {
  margin-top: 15px;
}
.checkout .form_dathang_title {
  color: #2d2d2d;
  font-size: 14px;
  font-weight: bold;
  border-bottom: 1px solid #e1e1e1;
  padding: 5px 0px;
  text-transform: uppercase;
}
.checkout .form_dathang-donhang {
  background-color: #f5f5f5;
}
.checkout .form_dathang-list {
  margin-top: 15px;
  max-height: 50vh;
  overflow-y: auto;
}
.checkout .form_dathang-list .item_gh-title {
  font-size: 14px;
  color: #252525;
  font-weight: bold;
  text-align: left;
}
.checkout .form_dathang-list .item_gh-quantity {
  font-size: 14px;
  color: #252525;
  font-weight: bold;
  text-align: center;
}
.checkout .form_dathang-list .item_gh-total {
  font-size: 12px;
  color: #ff0000;
  font-weight: bold;
  padding: 2px 0px;
  text-align: right;
}

.modal-category .modal-category_product {
  margin-bottom: 24px;
}
.modal-category .modal-category_product .modal-category_product-content {
  padding: 1em;
  background-color: #f6f6f6;
}
.modal-category .modal-category_product .modal-category_product-content .xemchitiet {
  background-color: inherit;
  padding: inherit;
}
.modal-category .modal-category_product .modal-category_product-content .title_product {
  text-align: center;
}
.modal-category .modal-category_product .modal-category_product-content .title_product .xemchitiet {
  font-size: 14px;
}
.modal-category .modal-category_product .modal-category_product-content .giamoi,
.modal-category .modal-category_product .modal-category_product-content .giacu {
  text-align: center;
}
.modal-category .modal-category_product .modal-category_product-content .giamoi {
  color: #ff0000;
  font-weight: bold;
}
.modal-category .modal-category_product .modal-category_product-content .giacu {
  color: #666666;
  text-decoration: line-through;
}
.modal-category .modal-category_product .modal-category_product-content .btn-action {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
}
.modal-category .modal-category_product .modal-category_product-content .btn-action .xemchitiet,
.modal-category .modal-category_product .modal-category_product-content .btn-action .dathang {
  display: block;
  padding: 5px 10px;
  font-weight: bold;
  border-radius: 4px;
  white-space: nowrap;
  font-size: 12px;
}
.modal-category .modal-category_product .modal-category_product-content .btn-action .dathang {
  background-color: #ff0000;
  color: #fff;
  margin-right: 15px;
}
.modal-category .modal-category_product .modal-category_product-content .btn-action .xemchitiet {
  color: #353535;
  background-color: #eeeeee;
}

.modal-product #product-detail_slider-image {
  display: flex;
  overflow: hidden;
}
.modal-product .slick-prev {
  left: 15px;
}
.modal-product .slick-next {
  right: 15px;
}
.modal-product .slick-prev,
.modal-product .slick-next {
  z-index: 1;
  width: 30px;
  height: 30px;
}
.modal-product .slick-prev:before,
.modal-product .slick-next:before {
  font-size: 30px;
}
.modal-product h1.title {
  margin: 0px;
  color: #252525;
  font-size: 18px;
  font-weight: bold;
}
.modal-product h3.title {
  padding: 0px;
  margin: 0px;
  color: #000000;
  font-size: 18px;
  margin-top: 10px;
}
.modal-product .noidungctsp {
  padding: 0px;
  margin-top: 5px;
  max-height: 50vh;
  overflow-y: auto;
  padding-right: 5px;
}
.modal-product .giamoi {
  color: #ff0000;
  font-size: 12px;
  font-weight: bold;
  border-bottom: 1px solid #f2f2f2;
  padding-bottom: 8px;
  margin-bottom: 17px;
}
.modal-product .dathang {
  background-color: #ff0000;
  color: #fff;
  font-weight: normal;
  padding: 6px 18px;
  font-size: 13px;
  border-radius: 5px;
}

.main-white {
  background: white;
  padding: 50px;
}

.gm-style-iw-d .place {
  color: #4a4a4a;
  font-weight: bold;
}
.gm-style-iw-d .col-4 {
  padding: 12px;
}
.gm-style-iw-d .col-4 img {
  max-width: 100%;
}

.font-medium {
  font-weight: 600;
}

.item-list {
  margin-bottom: 15px;
  padding: 33px 12px;
  border-radius: 4px;
}
.item-list .ten {
  font-weight: bold;
  line-height: 20px;
  display: block;
}
.item-list .gia {
  font-size: 16px;
  color: #333333;
  font-weight: bold;
}
.item-list .diachi {
  font-size: 13px;
  color: #4a4a4a;
}
.item-list .thuonghieu a {
  color: #ed1c24;
  text-transform: uppercase;
  font-weight: 600;
}
.item-list .danhmuccon a {
  display: block;
  background: #adadad;
  float: left;
  font-size: 10px;
  color: white;
  margin-top: 5px;
  margin-right: 5px;
  padding: 5px 10px;
}
.item-list .img-thongtin {
  max-width: 100%;
}

.item-concept {
  border: 1px solid #f29724;
}
.item-concept .ten {
  color: #f29724;
}

.item-product {
  border: 1px solid #088ca3;
}
.item-product .ten {
  color: #088ca3;
}

.item-showroom {
  border: 1px solid #d31f46;
}
.item-showroom .ten {
  color: #d31f46;
}

.scroll-icon {
  position: fixed;
  right: 6.5px;
  z-index: 100;
  bottom: 60px;
  display: none;
}
.scroll-icon img {
  display: block;
  margin-top: 10px;
  cursor: pointer;
  z-index: 100;
  width: 36px;
  margin-right: -4px;
  border-radius: 50%;
  box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.5);
}

.modal-concept #tongtienconcept {
  display: flex;
  justify-content: flex-end;
}
.modal-concept #tongtienconcept #tongtienconcept_money {
  padding: 5px 15px;
  margin-bottom: 30px;
  color: white;
  background: #df0024;
  border-radius: 3px;
}
.modal-concept .modal-concept_product {
  max-height: calc(75vh - 47px);
  overflow-y: auto;
}
.modal-concept .modal-concept_product .item_gh {
  margin-bottom: 10px;
}
.modal-concept .modal-concept_product .item_gh .xemchitiet {
  display: block;
  font-size: 14px;
  float: inherit;
  font-size: 18px;
  text-transform: uppercase;
}
.modal-concept .modal-concept_product .item_gh .xemchitiet img {
  width: 100%;
}
.modal-concept .modal-concept_product .item_gh .title {
  display: block;
  padding: 0px;
  padding-left: 10px;
}
.modal-concept .modal-concept_product .item_gh .price span {
  font-weight: bold;
  font-size: 13px;
}
.modal-concept .modal-concept_product .item_gh .xemchitiet_concept {
  display: inline-block;
  padding: 5px 20px;
  border-radius: 3px;
  background: #ff0000;
  color: white;
  font-size: 12px;
  cursor: pointer;
}
.modal-concept .modal-concept_product .item_gh .xemchitiet_concept img {
  margin-left: 8px;
  width: inherit;
}
.modal-concept .modal-concept_product .item_gh .soluongconcept {
  border-radius: 5px;
  border: 1px solid #ebebeb;
  background-color: #fbfbfb;
  text-align: center;
  font-size: 12px;
}
.modal-concept .modal-concept_product .item_gh .thanhtien {
  color: #ff0000;
  font-weight: bold;
}
.modal-concept .modal-concept_product .item_gh .border-mid {
  border-top: 1px solid #ddd;
  margin: 10px 0px;
}
.modal-concept .modal-concept_product .item_gh .mota_concept {
  display: none;
}
.modal-concept .action_concetpt {
  display: flex;
  justify-content: flex-end;
}
.modal-concept .action_concetpt .datmuaconcept {
  background-color: #ff0000;
  border: 0px;
  margin: 5px 0px;
  color: #fff;
  border-radius: 5px;
  padding: 5px 25px;
  font-size: 11px;
}
.modal-concept .action_concetpt .macdinh {
  background-color: #ff0000;
  border: 0px;
  margin: 5px 0px;
  color: #fff;
  border-radius: 5px;
  padding: 5px 25px;
  font-size: 11px;
  margin-left: 10px;
}

form[name=login-checkout] {
  margin-top: 20px;
}
form[name=login-checkout] input {
  margin-top: 10px;
}
form[name=login-checkout] .quen-mat-khau {
  font-size: 13px;
  text-decoration: underline;
  color: #6f6f6f;
  font-style: italic;
  margin-left: 6px;
}

.dangky-checkout {
  position: absolute;
  bottom: 0px;
  font-size: 11px;
  font-style: italic;
}
.dangky-checkout a {
  font-size: 11px;
  text-decoration: underline;
  color: #6f6f6f;
  margin-left: 6px;
  font-style: normal;
}

.blue_table td:child(2n) {
  background: #ddd;
}

.blue_table td {
  padding: 5px 10px;
  text-align: left;
  border: 1px solid #ddd;
  border-top: 0px;
}

.blue_table th {
  color: white;
  background: #c00;
  padding: 5px 10px;
  border-right: 1px solid #fff;
}

.khuyen-mai {
  color: #ed1c24 !important;
}

.price-old {
  color: #ccc !important;
  text-decoration: line-through;
}

.link-danhgia,
.link-giohang {
  color: #333333;
  line-height: 40px;
  margin-right: 45px;
  margin-bottom: 10px;
}
.link-danhgia img,
.link-giohang img {
  height: 25px;
}
@media screen and (max-width: 991px) {
  .link-danhgia,
  .link-giohang {
    margin-right: 5px;
  }
}

.btn-dangky {
  margin-right: 5px;
}

.btn-dangnhap,
.btn-dangky {
  height: 30px;
  min-width: 113px;
  font-size: 14px;
  line-height: 2;
}

#home-logo {
  margin-top: calc(10vh + 30px);
  text-align: center;
}
#home-logo img {
  width: 387px;
  max-width: 90vw;
}

.login-register {
  position: relative;
}
.login-register button {
  display: none;
}

.user_top {
  cursor: pointer;
  display: flex;
  align-items: center;
  height: 30px;
  font-size: 14px;
  font-weight: bold;
}
.user_top img {
  height: 30px;
  display: block;
  margin-right: 5px;
}

header #home-logo {
  margin-top: 0;
  text-align: start;
}
header #home-logo img {
  width: auto;
  height: 50px;
}
header #main-content {
  padding-top: 10px;
}
header #search-form {
  margin-top: 0;
}
header #search-form #main-search .form-control {
  height: 50px;
}
header #search-form #btn-search {
  height: 50px;
}

#search-form {
  position: relative;
  margin-top: 33px;
  display: flex;
  align-items: center;
}
#search-form #main-search {
  position: relative;
  display: flex;
}
#search-form #main-search .form-control {
  height: 60px;
  font-size: 16px;
  width: initial;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.08);
}
#search-form #main-search input {
  flex-grow: 1;
  border-radius: 4px 0px 0px 4px;
  border: none;
}
#search-form #main-search input:focus {
  box-shadow: none;
}
#search-form #main-search input::-moz-placeholder {
  color: #aaaaaa;
}
#search-form #main-search input::placeholder {
  color: #aaaaaa;
}
#search-form #main-search #place-category,
#search-form #main-search .product-category {
  position: relative;
  display: none;
  align-items: center;
  min-width: 120px;
  padding: 6px 12px;
  color: white;
  border-radius: 4px 0px 0px 4px;
}
#search-form #main-search #place-category .seart-title,
#search-form #main-search .product-category .seart-title {
  white-space: nowrap;
}
#search-form #main-search #place-category button,
#search-form #main-search .product-category button {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 16px;
  height: 16px;
  border: none;
  background-image: url("../images/icon-x.png");
  background-color: transparent;
}
#search-form #main-search #place-category {
  background: #eb6f2f;
}
#search-form #main-search #place-category[style*="display: flex"] + .product-category {
  border-radius: 0;
}
#search-form #main-search #place-category[style*="display: flex"] + .product-category + input {
  border-radius: 0;
}
#search-form #main-search #place-category[style*="display: flex"] + input {
  border-radius: 0;
}
#search-form #main-search .product-category {
  background: #f29724;
}
#search-form #main-search .product-category[style*="display: flex"] + input {
  border-radius: 0;
}
#search-form #btn-search {
  height: 60px;
  background: #ea2127;
  border-radius: 0 4px 4px 0;
  color: white;
  border: none;
  font-size: 16px !important;
  width: 100%;
}
#search-form #search-result {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #e4e4e4;
  width: 400px;
  max-height: 45vh;
  overflow-y: auto;
  padding: 10px;
  display: none;
  z-index: 9;
}
#search-form #search-result li {
  list-style: none;
  cursor: pointer;
  padding: 5px 10px;
  display: flex;
  align-items: center;
}
#search-form #search-result li a {
  display: flex;
  align-items: center;
  pointer-events: none;
}
#search-form #search-result li:hover {
  background: white;
}
#search-form #search-result li .search-result_items-type {
  height: 22px;
  line-height: 22px;
  border-radius: 4px;
  min-width: 100px;
  text-transform: uppercase;
  color: white;
  font-size: 11px;
  display: inline-block;
  padding-left: 15px;
  margin-right: 10px;
  pointer-events: none;
}
#search-form #search-result li .search-result_items-content {
  pointer-events: none;
}
#search-form #search-result li .search-result_items-content .pdanhmuc {
  font-size: 12px;
  color: #168dab;
}
#search-form #search-result li .search-result_items-content .giatien {
  line-height: 12px;
  color: #ff0000;
  font-size: 12px;
}
#search-form .type-place-category {
  background: #eb6f2f;
}
#search-form .type-concept {
  background: #e74339;
}
#search-form .type-showroom {
  background: #d31f46;
}
#search-form .type-product-category {
  background: #f29724;
}
#search-form .type-product {
  background: #088ca3;
}

footer {
  font-size: 13px;
  background: #ededed;
  padding-top: 20px;
  padding-bottom: 20px;
}
footer a {
  color: #8f8f8f;
}
footer a:hover {
  color: #8f8f8f;
}

.footer-nav {
  display: flex;
}
.footer-nav a {
  display: block;
}
.footer-nav a:not(:first-child) {
  margin-left: 10px;
}

#news-left a {
  display: block;
  line-height: 65px;
  background: white;
  margin-bottom: 5px;
  padding-left: 10px;
  transition: all 0.1s;
}
#news-left a:hover, #news-left a.active {
  padding-left: 5px;
  border-left: 5px solid #c0030a;
  font-weight: 500;
}
#news-left img {
  width: 65px;
  height: 65px;
  float: left;
  margin-right: 5px;
}

#news-right {
  background: white;
  padding: 50px;
}
#news-right .ten {
  font-size: 22px;
  font-weight: bold;
  line-height: 25px;
  border-bottom: 1px solid #e1e1e1;
}
#news-right .noidung {
  margin-top: 40px;
}

.main-user {
  margin-bottom: 40px;
  background: white;
  min-height: 776px;
}

#dang-nhap img,
#dang-ky img {
  height: 78px;
}

.quenmatkhau {
  font-size: 12px;
  font-style: italic;
  color: #00a1ab;
  text-decoration: underline;
}

.login .form-group:not(.margin-bottom-40) {
  margin-bottom: 10px;
}
.login .form-group .item-login {
  width: 280px;
  height: 40px;
  padding-left: 45px;
  display: inline-block;
  border: #e1e1e1 1px solid;
  box-shadow: none;
  transition: none;
  border-radius: 6px;
}
.login .form-group .item-login input {
  border: none;
  background: none;
  box-shadow: none;
  transition: none;
  height: 38px;
}
.login #login-user {
  background: url("../images/icon-user-username.png") no-repeat;
}
.login #login-phone {
  background: url("../images/icon-user-phone.png") no-repeat;
}
.login #login-email {
  background: url("../images/icon-user-email.png") no-repeat;
}
.login #login-password {
  background: url("../images/icon-user-password.png") no-repeat;
}
.login #login-captcha {
  display: inline-flex;
  align-items: center;
  padding-left: 8px;
  padding-right: 8px;
}
.login #login-captcha .captcha-icon {
  height: 32px;
  border-radius: 4px;
  margin-right: 8px;
  flex-shrink: 0;
}
.login #login-captcha input {
  flex: 1;
  min-width: 0;
}
.login #login-captcha .captcha-refresh-btn {
  background: none;
  border: none;
  padding: 0 4px;
  color: #00a1ab;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
}
.login input {
  font-size: 13px;
}
.login .chinhsachbaomat a {
  display: block;
  font-size: 12px;
}

.chinhsachbaomat {
  font-size: 12px;
  font-style: italic;
}
.chinhsachbaomat a {
  color: #00a1ab;
}

.tab-login {
  padding-top: 25px;
}
.tab-login li {
  width: 50%;
  text-align: center;
  font-size: 22px;
  height: 35px;
}
.tab-login li .nav-link {
  font-size: 14px;
  font-weight: bold;
  background: none;
  padding: 0px 10px;
  border-radius: 0px;
  border: none;
  color: #2e2e2e;
  margin: 0px;
  box-sizing: border-box;
  height: 31px;
  line-height: 30px;
  display: inline-block;
}
.tab-login li .nav-link.active, .tab-login li .nav-link:hover, .tab-login li .nav-link.active:focus {
  background: white;
  border-radius: 0px;
  border: none !important;
  border-bottom: 5px solid #ff0000 !important;
  margin: 0px;
}

.forgot-password {
  padding: 50px 25px;
  background-color: white;
  border-radius: 5px;
}
.forgot-password img {
  max-width: 100px;
}

.review .noidung {
  margin-bottom: 15px;
}
.review .pagination {
  justify-content: center;
}

.user-avatar {
  cursor: pointer;
  padding: 10px;
  background: #eee;
  position: relative;
  border-bottom: 1px solid white;
}
.user-avatar #img-upload-form {
  text-align: center;
}
.user-avatar #img-upload-form img {
  max-height: 316px;
  max-width: 316px;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  border: 1px #eee solid;
}
.user-avatar #edit_avatar {
  display: none;
  border: 2px solid #ddd;
  font-size: 12px;
  padding: 3px 10px;
  color: white;
  position: absolute;
  right: 20px;
  bottom: 20px;
  cursor: pointer;
  background: #a2a2a2;
}
.user-avatar:hover #edit_avatar {
  display: block;
}

.user_menu_left a {
  display: block;
  background: #eee;
  border-bottom: 1px solid white;
  padding: 0px 10px;
  line-height: 40px;
}
.user_menu_left a:hover, .user_menu_left a.active {
  background: white;
  border: 1px solid #eee;
  color: #cc0000;
}

.bar {
  position: relative;
}
.bar h1 {
  color: #cc0000;
  font-size: 18px;
  font-weight: bold;
}
.bar h2 {
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  padding-bottom: 15px;
  border-bottom: 1px solid #e1e1e1;
}
.bar #btn-get-gift {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  padding: 3px 15px;
  font-size: 13px;
}

.donhang {
  max-width: 100vw;
  overflow: auto;
}
.donhang .blue_table {
  width: 100%;
}
.donhang .blue_table tr:nth-child(odd) {
  background: #f1f1f1;
}
.donhang .blue_table tr:hover {
  background-color: #ccc;
}
.donhang .blue_table .tieude {
  border-bottom: 2px solid #e1e1e1;
  background: transparent !important;
}
.donhang .blue_table th {
  color: #616161;
  background: transparent;
  padding: 5px 10px;
  border-right: 1px solid #fff;
  text-align: left;
  white-space: nowrap;
}
.donhang .blue_table td {
  padding: 5px 10px;
  text-align: left;
  border-top: 0px;
}
.donhang .blue_table td img {
  max-width: 70px;
  max-height: 70px;
}
.donhang .blue_table td.price {
  white-space: nowrap;
}
.donhang .blue_table td a {
  color: #449cc9;
  text-decoration: underline;
}

.status-bar-orders .main-bar {
  margin-top: 55px;
  position: relative;
}
.status-bar-orders .main-bar:not(:first-child):not(:last-child) .status-bar-orders-line {
  border-top: 5px solid #e1e1e1;
}
.status-bar-orders .main-bar:first-child .status-bar-orders-line:first-child {
  border-top: 5px solid #e1e1e1;
}
.status-bar-orders .main-bar:last-child .status-bar-orders-line:last-child {
  border-top: 5px solid #e1e1e1;
}
.status-bar-orders .main-bar.active .status-bar-orders-line:first-child {
  border-color: #ff0000 !important;
}
.status-bar-orders .main-bar.active ~ .main-bar .status-bar-orders-line {
  border-color: #ff0000 !important;
}
.status-bar-orders .main-bar .title {
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.status-bar-orders .main-bar .dot {
  padding: 0;
  width: 10px;
  height: 10px;
  position: absolute;
  background: #ff0000;
  border-radius: 50%;
  z-index: 1;
  top: -2.5px;
  left: 50%;
  transform: translateX(-50%);
}

.order-reject {
  border: 2px solid #ff0000;
  border-radius: 3px;
  padding: 10px;
  font-size: 17px;
  font-weight: bold;
  color: #ff0000;
}

.modal-dialog.hoadon {
  max-width: 90vw;
  max-height: 90vh;
}
.modal-dialog.hoadon .modal-body {
  max-width: 90vw;
  max-height: 85vh;
}

#hoadon_image {
  max-width: 100%;
  max-height: 80vh;
  width: auto;
}

.review .review-item:not(:last-child) {
  padding-bottom: 15px;
  border-bottom: 1px solid #a2a2a2;
}
.review .review-item:not(:first-child) {
  padding-top: 15px;
}
.review .review-item .img img {
  width: 100%;
}
.review .review-item .place {
  color: #4a4a4a;
  font-weight: bold;
}
.review .review-item #show-review .img-review {
  width: 30%;
  margin-left: 0 1.5%;
}
.review .review-item .btn-remove-wishlist {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  margin-top: 5px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background 0.15s ease;
}
.review .review-item .btn-remove-wishlist svg {
  width: 20px;
  height: 20px;
  fill: #e0263f;
  transition: transform 0.15s ease;
}
.review .review-item .btn-remove-wishlist:hover {
  background: rgba(224, 38, 63, 0.1);
}
.review .review-item .btn-remove-wishlist:hover svg {
  transform: scale(1.15);
}
.review .review-item .btn-remove-wishlist:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.review .review-item .btn-remove-wishlist:disabled:hover {
  background: transparent;
}
.review .review-item .btn-remove-wishlist:disabled:hover svg {
  transform: none;
}

.referral-code_view {
  text-align: center;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 18px;
  margin-top: 20px;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  color: #cc0000;
}

.note-small {
  margin-top: 10px;
  font-size: 12px;
}

.return-to-concept {
  margin-bottom: 20px;
}
.return-to-concept a {
  color: #0d6efd;
  text-decoration: underline;
}

.search-result .title {
  font-size: 22px;
  font-weight: bold;
  height: 27px;
  border-bottom: 1px solid #e1e1e1;
  margin: 0px;
}
.search-result .search-result_top {
  margin-bottom: 40px;
}
.search-result #locgia {
  height: 27px;
  border-bottom: 1px solid #e1e1e1;
  margin: 0px;
}
.search-result #locgia .boloc {
  font-size: 13px;
  font-weight: bold;
  margin-right: 10px;
}
.search-result #locgia form {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.search-result #locgia form span {
  margin-right: 5px;
}
.search-result #locgia form .hienthi,
.search-result #locgia form .khoanggia {
  margin-right: 10px;
}
.search-result #locgia form #timgia {
  width: 39px;
  height: 22px;
  background: url("../images/icon-timgia.png");
  background-size: 100% 100%;
  border: none;
  float: right;
}
.search-result #locgia form .select {
  width: 125px;
  height: 20px;
  padding: 0px 5px;
  font-size: 11px;
  color: #808080;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.search-result .search-result_title-left {
  padding-right: 0;
}
.search-result .search-result_title-right {
  padding-left: 0;
}
.search-result .search-result_item .rating label {
  margin: 0 2px;
}
.search-result .search-result_item .rating label:before, .search-result .search-result_item .rating label::after {
  font-size: 18px;
}
.search-result .search-result_item img {
  width: 100%;
}

.place-detail .breadcrumb-ct {
  margin: 20px 0px;
}
.place-detail .breadcrumb-ct ul,
.place-detail .breadcrumb-ct li {
  list-style: none;
  padding: 0;
  margin: 0;
}
.place-detail .breadcrumb-ct ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.place-detail .breadcrumb-ct ul li:not(:first-child):not(:last-child) {
  background: white;
  height: 30px;
  line-height: 30px;
  display: block;
  padding-right: 10px;
}
.place-detail .breadcrumb-ct ul li:not(:first-child):not(:last-child) a::before {
  margin-right: 5px;
  content: url(../images/icon-br-mid.png);
  height: 30px;
}
.place-detail .breadcrumb-ct ul li:last-child {
  background: #ff0000;
  color: white;
  height: 30px;
  line-height: 30px;
  display: flex;
  align-items: center;
}
.place-detail .breadcrumb-ct ul li:last-child::before {
  margin-right: 5px;
  content: url(../images/icon-br-last1.png);
  height: 30px;
}
.place-detail .breadcrumb-ct ul li:last-child::after {
  margin-right: -12px;
  content: url(../images/icon-br-last2.png);
  height: 30px;
}
.place-detail .breadcrumb-ct ul li a {
  display: flex;
  align-items: center;
}
.place-detail .vr360 {
  position: relative;
}
.place-detail .vr360 iframe {
  width: 100%;
  border: none;
  height: 585px;
}
.place-detail .vr360 .custom-select {
  position: absolute;
  top: 15px;
  left: 27px;
  width: 280px;
  font-family: Arial;
}
.place-detail .vr360 .custom-select select {
  display: none;
}
.place-detail .vr360 .custom-select .select-selected {
  font-weight: bold;
  color: white;
  background: rgba(0, 0, 0, 0.3);
  padding: 8px 16px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-size: 16px;
}
.place-detail .vr360 .custom-select .select-selected::after {
  position: absolute;
  content: "";
  top: 14px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #ffffff transparent transparent transparent;
}
.place-detail .vr360 .custom-select .select-selected.select-arrow-active:after {
  border-color: transparent transparent #ffffff transparent;
  top: 7px;
}
.place-detail .vr360 .custom-select .select-items {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  margin-top: 3px;
  height: 200px;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: #fff #d7d7d7;
}
.place-detail .vr360 .custom-select .select-items.select-hide {
  display: none;
}
.place-detail .vr360 .custom-select .select-items div {
  color: white;
  background: rgba(0, 0, 0, 0.3);
  padding: 8px 16px;
  border: 1px solid transparent;
  border-bottom-color: #ffffff;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-size: 16px;
}
.place-detail .vr360 .datmua {
  position: absolute;
  bottom: 15px;
  right: 27px;
}
.place-detail .vr360 .datmua .btn-datmua {
  cursor: pointer;
  display: flex;
  align-items: center;
  height: 24px;
  line-height: 20px;
  padding-left: 24px;
  background: white;
  border-radius: 12px;
}
.place-detail .vr360 .datmua .btn-datmua img {
  margin-left: 15px;
  margin-right: 1px;
  height: 22px;
}
.place-detail .place-main {
  overflow: hidden;
  background: white;
  padding: 50px 60px;
  padding-bottom: 45px;
  margin-bottom: 45px;
}
.place-detail .place-main .ten {
  display: flex;
  align-items: center;
}
.place-detail .place-main .ten h1 {
  font-size: 16px;
  color: #ff0000;
  font-weight: bold;
  text-transform: uppercase;
  margin: 0px;
  line-height: 22px;
}
.place-detail .place-main .ten .chuaquantam {
  margin-left: 15px;
  padding-left: 10px;
  padding-right: 32px;
  height: 22px;
  font-size: 12px;
  font-style: italic;
  background: url(../images/icon-chuaquantam.png);
  background-size: 100% 100%;
  border: 0px;
  color: white;
  cursor: pointer;
}
.place-detail .place-main .ten .daquantam {
  margin-left: 15px;
  padding-left: 10px;
  padding-right: 32px;
  height: 22px;
  border: 0px;
  background: url(../images/icon-daquantam.png);
  background-size: 100% 100%;
  font-size: 12px;
  font-style: italic;
  color: #979797;
  cursor: pointer;
  white-space: nowrap;
}
.place-detail .place-main .main-rating {
  margin: 5px 0px;
  display: flex;
  align-items: flex-end;
  line-height: 14px;
}
.place-detail .place-main .rating label {
  margin: 0 2px;
}
.place-detail .place-main .rating label::before, .place-detail .place-main .rating label::after {
  font-size: 18px;
}
.place-detail .place-main .thongtin {
  color: #000000;
  font-size: 14px;
  line-height: 15px;
  margin-top: 5px;
}
.place-detail .place-main .thongtin .thuonghieu a {
  color: #ed1c24;
  text-transform: uppercase;
  font-weight: 600;
}
.place-detail .place-main .noidungchitiet {
  display: block;
}
.place-detail .place-main .xemthem {
  color: #000000;
  text-decoration: underline;
  cursor: pointer;
  padding-left: 20px;
  font-style: italic;
}
.place-detail .place-main .delaidanhgia {
  color: #000000;
  font-size: 14px;
  font-weight: bold;
  display: flex;
}
.place-detail .place-main .delaidanhgia .ten {
  margin-left: 5px;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  margin: 0px;
  line-height: 22px;
  margin-bottom: 0px;
  color: #000000;
  border-bottom: 0px;
  padding-bottom: 0px;
  display: block;
}
.place-detail .place-main .haydelaireview {
  color: #000000;
  padding-bottom: 5px;
}
.place-detail .place-main .danhgia2 {
  color: #000000;
  font-size: 14px;
  margin: 5px 0px;
  display: flex;
  align-items: flex-start;
}
.place-detail .place-main textarea.nhanxet {
  height: 105px;
  width: 307px;
  border: 1px solid #ebebeb;
}
.place-detail .place-main #view-image-before-update {
  margin-bottom: 5px;
}
.place-detail .place-main #view-image-before-update img {
  max-width: 100%;
}
.place-detail .place-main #filesanh {
  visibility: hidden;
}
.place-detail .place-main .chonanh {
  height: 50px;
  width: 65px;
  background: url(../images/icon-chonanh.svg);
  background-image: 100% 100%;
  margin: 0px;
}
.place-detail .place-main .guidanhgia {
  font-size: 11px;
  width: 50px;
  height: 20px;
  line-height: 20px;
  border: none;
  border-radius: 4px;
  background: #ff0000;
  color: white;
  font-weight: 600;
}
.place-detail .place-main .danhgiatunguoikhac {
  font-size: 16px;
  font-weight: 600;
  padding-bottom: 5px;
  border-bottom: 1px solid #e1e1e1;
}
.place-detail .place-main .item-review {
  margin-top: 20px;
}
.place-detail .place-main .item-review .tenuser {
  font-size: 12px;
  color: #000000;
  font-weight: 300;
}
.place-detail .place-main .item-review .tenuser b {
  font-weight: bold;
}
.place-detail .place-main .showsosanh {
  height: 45px;
  border-radius: 3px;
  background: #ea1d23;
  line-height: 45px;
  color: white;
  font-size: 16px;
  padding-left: 15px;
  cursor: pointer;
  margin-top: 15px;
}
.place-detail .place-main #slider-compare {
  margin-top: 15px;
}
.place-detail .place-main #slider-compare .item-list {
  margin-left: 15px;
  margin-right: 15px;
}
.place-detail .place-main #slider-compare .slick-next,
.place-detail .place-main #slider-compare .slick-prev {
  background: none !important;
}
.place-detail .place-main #slider-compare .slick-next {
  right: -30px !important;
}
.place-detail .place-main #slider-compare .slick-prev {
  left: -45px !important;
}
.place-detail .place-main #slider-compare .slick-prev::before {
  content: url(../images/icon-arrow-slide-left.png) !important;
}
.place-detail .place-main #slider-compare .slick-next::before {
  content: url(../images/icon-arrow-slide-right.png) !important;
}
.place-detail .place-main #dien-thoai-tu-van {
  margin-bottom: 15px;
  background: #f6f6f6;
  min-height: 130px;
}
.place-detail .place-main #dien-thoai-tu-van .goituvan {
  padding-top: 0px;
  text-align: center;
  font-weight: bold;
  padding: 10px;
}
.place-detail .place-main #dien-thoai-tu-van .goituvan .goingay {
  font-size: 12px;
}
.place-detail .place-main #dien-thoai-tu-van .goituvan .call-button {
  margin: 7px 0px;
  overflow: hidden;
  border-radius: 3px;
}
.place-detail .place-main #dien-thoai-tu-van .goituvan .call-button a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.place-detail .place-main #dien-thoai-tu-van .goituvan .call-button .call-number {
  height: 22px;
  font-size: 12px;
  line-height: 22px;
  color: white;
  padding: 0px 11px;
  background: #ed1c24;
  margin: 0px;
}
.place-detail .place-main #dien-thoai-tu-van .goituvan .call-button img {
  height: 22px;
  background: white;
}
.place-detail .place-main #dien-thoai-tu-van .goituvan .recall-button {
  display: inline-block;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #ebebeb;
  border-radius: 3px;
  margin-top: 8px;
}
.place-detail .place-main #dien-thoai-tu-van .goituvan .recall-button input {
  height: 20px;
  font-size: 10px;
  width: 160px;
  padding: 0px 11px;
  color: #8c8c8c;
  font-style: italic;
  border: none;
}
.place-detail .place-main #dien-thoai-tu-van .goituvan .recall-button #recallme {
  display: inline-block;
  height: 22px;
  cursor: pointer;
  background: #ed1c24;
  font-size: 11px;
  padding: 0px 5px;
  color: white;
  line-height: 23px;
}
.place-detail .place-main #ma-giam-gia {
  margin-bottom: 15px;
  background: #ed1c24;
  height: 130px;
  padding-top: 30px;
}
.place-detail .place-main #ma-giam-gia .btn-dangnhap {
  color: #e2131b;
  border-radius: 3px;
  background: #ffffff;
  height: 22px;
  width: 137px;
  margin: 0 auto;
  font-size: 13px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 15px;
}
.place-detail .place-main #ma-giam-gia div {
  color: white !important;
}
.place-detail .place-main #ma-giam-gia span {
  font-size: 18px;
  font-weight: 500;
  color: white !important;
  line-height: 15px;
}
.place-detail .place-main #ma-giam-gia span a {
  font-size: 18px;
  font-weight: 500;
  color: white !important;
  line-height: 30px;
  text-decoration: underline;
}
.place-detail .place-main #ma-giam-gia.ma-giam-gia-login {
  text-align: left;
  padding-left: 10px;
  padding-right: 10px;
  white-space: nowrap;
}
.place-detail .place-main .ekko {
  margin-bottom: 15px;
  padding: 15px;
  background: #f6f6f6;
}
.place-detail .place-main .ekko div {
  line-height: 16px;
  margin: 5px;
  color: #454545;
  font-size: 15px;
  display: flex;
  align-items: flex-start;
}
.place-detail .place-main .ekko div img {
  padding-right: 15px;
}

.map-replacement-image {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}

.map-replacement-video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  border: 0;
  margin-bottom: 15px;
}

#list-comment .pagination {
  margin-top: 15px;
  justify-content: center;
}

.image-comment img {
  width: 100%;
}

.brand .slick-prev,
.brand .slick-next {
  z-index: 1;
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  padding: 0;
  cursor: pointer;
  color: inherit;
  border: 1px solid #d7d7d7;
  outline: none;
  background: none;
}
.brand .slick-prev::before,
.brand .slick-next::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-repeat: no-repeat;
  background-position: center center;
}
.brand .slick-next {
  right: 5px;
}
.brand .slick-next::before {
  background-image: url("../images/slider_row_next.png");
}
.brand .slick-prev {
  left: 5px;
}
.brand .slick-prev::before {
  background-image: url("../images/slider_row_pre.png");
}
.brand #thuonghieu-logo img {
  max-width: 125px;
  height: auto;
}
.brand #thuonghieu-ten {
  margin: 10px 0px;
}
.brand #thuonghieu-ten h1 {
  color: #616161;
  font-size: 16px;
  text-transform: uppercase;
}
.brand .thuonghieu-mota {
  text-align: justify;
  color: #616161;
  font-size: 16px;
  margin: 20px 0px;
  display: block;
}
.brand #thuonghieu-title-tab {
  border-bottom: 1px solid #e1e1e1;
  margin-top: 15px;
  margin-bottom: 30px;
}
.brand #thuonghieu-title-tab span {
  font-size: 14px;
  font-weight: bold;
  display: block;
  text-align: center;
  width: -moz-max-content;
  width: max-content;
  min-width: 210px;
  color: #fff;
  background-color: #cc0000;
  padding: 7px 0px;
  text-transform: uppercase;
}
.brand .thuonghieu-concept {
  padding: 30px;
}
.brand .thuonghieu-concept:nth-child(odd) {
  background-color: #f9f9f9;
}
.brand .thuonghieu-concept .thuonghieu-title-concept h2 {
  font-size: 16px;
  text-transform: uppercase;
  color: #616161;
  margin: 0px;
}
.brand .thuonghieu-concept .vote-star {
  font-size: 13px;
}
.brand .thuonghieu-concept .vote-star .danhgia {
  color: #636363;
}
.brand .thuonghieu-concept .vote-star .rating label {
  margin: 0 2px;
}
.brand .thuonghieu-concept .vote-star .rating label::after, .brand .thuonghieu-concept .vote-star .rating label::before {
  font-size: 13px;
}
.brand .thuonghieu-concept .thuonghieu-diachi {
  font-size: 16px;
  color: #4a4a4a;
  text-align: justify;
  border-bottom: 1px solid #e1e1e1;
  padding: 10px 0px;
}
.brand .thuonghieu-concept .thuonghieu-mota {
  text-align: justify;
  color: #616161;
  font-size: 16px;
  margin: 20px 0px;
  display: block;
}
.brand .thuonghieu-concept .thuonghieu-mota a {
  text-decoration: underline;
  font-style: italic;
  font-size: 13px;
}
.brand .thuonghieu-concept .thuonghieu-thamquan a {
  background-image: url("../images/row_left_th.png");
  background-repeat: no-repeat;
  background-position: right 30px center;
  max-width: 230px;
  background-color: #e1e1e1;
  display: block;
  padding: 10px 20px;
  border-radius: 20px;
  color: #cc0000;
  font-size: 12px;
  text-transform: uppercase;
}

/* ==========================================================================
   Home page redesign — header top bar, hero section, stats bar
   ========================================================================== */
.header-top {
  padding-top: 20px;
  padding-bottom: 20px;
}

.header-top #home-logo img {
  height: 34px;
}

.header-top-actions {
  gap: 18px;
}

@media screen and (min-width: 992px) {
  .header-top-search #search-form {
    margin-top: 0;
  }
  /* Only the pages with an inline search row (header-top-actions--stacked)
     push actions to their own line below — the home page keeps actions on
     the same row as the logo, so it must not inherit this offset. */
  .header-top-actions--stacked {
    margin-top: 20px;
  }
}
.header-icon-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header-icon-link img {
  height: 24px;
}

.header-cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 8px;
  background: #ea2127;
  color: white;
  font-size: 10px;
  line-height: 16px;
  text-align: center;
}

.header-top .btn-dangky,
.header-top .btn-dangnhap {
  margin: 0 0 0 10px;
}

.header-burger,
.header-search-toggle {
  background: none;
  border: none;
  padding: 0;
}

.header-burger img,
.header-search-toggle img {
  height: 22px;
}

.home-header {
  padding: 0;
  background: white;
}

.home-main {
  flex: 1 0 auto;
}

.hero-section {
  padding: 20px 0 10px;
}

.hero-title {
  font-size: 31px;
  font-weight: 600;
  line-height: 1.3;
  color: #1a1a1a;
  margin-bottom: 30px;
}

.hero-title_highlight {
  color: #ea2127;
}

.hero-search #search-form {
  margin-top: 0;
}

.hero-search #main-search .form-control {
  height: 54px;
  border-radius: 4px 0 0 4px;
  padding-left: 40px;
}

.hero-search #main-search {
  position: relative;
}

.hero-search #main-search::before {
  content: "\f002";
  font-family: FontAwesome;
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #aaaaaa;
  z-index: 1;
}

.hero-search #btn-search {
  height: 54px;
}

.hero-quick-search {
  margin-top: 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-quick-search_label {
  color: #616161;
  margin-right: 5px;
}

.hero-quick-search a {
  padding: 6px 16px;
  border-radius: 20px;
  background: #ffffff;
  color: #000000;
  font-size: 13px;
  white-space: nowrap;
  border: 1px solid #e5e5e5;
}

.hero-quick-search a:hover {
  background: #e6e6e6;
}

.hero-gallery {
  display: flex;
  gap: 16px;
}

.hero-gallery_main,
.hero-gallery_item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #6b7c93, #37465a);
}

.hero-gallery_main {
  flex: 0 0 60%;
  max-width: 60%;
  height: 400px;
  min-height: 400px;
}

.hero-gallery_side {
  flex: 0 0 40%;
  max-width: 40%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-gallery_item {
  flex: 0 0 192px;
  height: 192px;
}

/* Slick's own "rtl" option (the library's only built-in way to reverse a
   vertical/horizontal carousel's direction) breaks slide positioning in this
   old Slick version, so direction is reversed via CSS instead: flip the
   slider container, then flip each slide's real content back so it renders
   right-side-up — the container's flip is what makes Slick's own scroll
   motion appear reversed, independent of the content-side counter-flip. */
.hero-gallery_main.js-hero-slider {
  transform: scaleY(-1);
}

.hero-gallery_main .hero-gallery_slide {
  transform: scaleY(-1);
}

.hero-gallery_main .slick-list {
  height: 100%;
}

.hero-gallery_item .slick-list {
  height: 100%;
}

/* Slick's vertical mode sizes .slick-track by summing each .slick-slide's
   MEASURED height (slick.css sets ".slick-vertical .slick-slide { height: auto }",
   i.e. content-driven). A percentage height on .slick-slide can't resolve here —
   its parent .slick-track is itself auto/content-driven, so percentages against
   it are ignored per spec. Fixed px values (matching each container's own
   rendered height) sidestep that circularity entirely. Keep these in sync with
   .hero-gallery_main/.hero-gallery_item's height below and in the @media block. */
.hero-gallery_main .slick-slide {
  height: 400px !important;
}

.hero-gallery_item .slick-slide {
  height: 192px !important;
}

.hero-gallery_slide,
.hero-gallery_slide:hover {
  display: block;
  position: relative;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: inherit;
  text-decoration: none;
}

.hero-gallery_caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px 16px 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0));
  color: white;
  display: flex;
  flex-direction: column;
}

.hero-gallery_title {
  font-weight: 700;
  font-size: 16px;
}

.hero-gallery_count {
  font-size: 12px;
  opacity: 0.9;
}

.hero-stats {
  background: #ffffff;
  padding: 30px 0;
}

.hero-stats_item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.hero-stats_icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ea2127;
  font-size: 18px;
}

.hero-stats_number {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
}

.hero-stats_label {
  font-size: 13px;
  color: #616161;
}

@media screen and (max-width: 991px) {
  .hero-quick-search {
    gap: 5px;
  }
  .hero-quick-search a {
    font-size: 9px;
    padding: 6px 10px;
  }
  .hero-quick-search_label {
    font-size: 10px;
  }
  .header-top {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .header-top #home-logo img {
    height: 26px;
  }
  .header-top-actions {
    margin-top: 0px;
    gap: 12px;
  }
  .header-icon-link img {
    height: 20px;
  }
  .hero-section {
    padding: 20px 0 30px;
  }
  .hero-title {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .hero-gallery {
    margin-top: 20px;
    flex-direction: column;
  }
  .hero-gallery_main,
  .hero-gallery_side {
    flex: 1 1 auto;
    max-width: 100%;
  }
  .hero-gallery_main {
    height: 220px;
    min-height: 220px;
  }
  .hero-gallery_main .slick-slide {
    height: 220px !important;
  }
  .hero-gallery_side {
    flex-direction: row;
  }
  .hero-gallery_item {
    flex: 1 1 0;
    min-width: 0;
    height: 140px;
    min-height: 140px;
  }
  .hero-gallery_item .slick-slide {
    height: 140px !important;
  }
  .hero-stats {
    padding: 20px 0;
  }
  .hero-stats_item {
    flex-direction: column;
    margin-bottom: 20px;
  }
  .hero-stats_icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    font-size: 15px;
  }
  .hero-stats_number {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .hero-stats_label {
    text-align: center;
  }
}
.trend-places {
  padding: 10px 0;
  margin-bottom: 30px;
}

.trend-places_title {
  font-size: 15px;
  font-weight: normal;
  color: #222121;
  margin-bottom: 24px;
}

@media screen and (min-width: 992px) {
  .trend-places_slider:not(.slick-initialized) {
    display: flex;
  }
}
.trend-places_card {
  display: block;
  margin: 0 10px;
  text-decoration: none;
  color: inherit;
}

.trend-places_image {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  margin-bottom: 12px;
}

.trend-places_name {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  color: #5f5d5d;
}

.trend-places .slick-prev,
.trend-places .slick-next {
  background: none !important;
}

.trend-places .slick-prev {
  left: -30px !important;
}

.trend-places .slick-next {
  right: -30px !important;
}

.trend-places .slick-prev::before {
  content: url(../images/arrow-prev.png) !important;
}

.trend-places .slick-next::before {
  content: url(../images/arrow-next.png) !important;
}

.trend-places_pager {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}

.trend-places_pager-btn {
  border: none;
  background-color: #f6f6f6;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
}

.trend-places_pager-prev {
  background-image: url(../images/arrow-prev.png);
}

.trend-places_pager-next {
  background-image: url(../images/arrow-next.png);
}

.trend-places_pager-count {
  font-size: 15px;
  color: #e80b0b;
}

@media screen and (max-width: 991px) {
  .trend-places {
    margin-bottom: 0px;
  }
  .trend-places_slider {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }
  .trend-places_card {
    display: none;
    width: calc((100% - 24px) / 3);
    margin: 0;
  }
  .trend-places_card.is-current-page {
    display: block;
  }
  .trend-places_pager {
    display: flex;
  }
}
@media screen and (min-width: 992px) {
  .margin-lg-clear {
    margin: 0;
  }
  .margin-lg-top-15 {
    margin-top: 15px;
  }
  .padding-lg-top-45 {
    padding-top: 45px;
  }
  .login-register_main-md {
    display: none;
    position: absolute;
    top: 35px;
    right: 0px;
    background: #eee;
    z-index: 1;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    padding: 10px 20px;
    border-radius: 5px;
    background: white;
    width: 190px;
  }
  .login-register_main-md a {
    display: block;
    color: inherit;
    border: none;
    text-align: left;
    background: none;
    line-height: 2;
    font-size: 14px;
  }
  .login-register_main-md a:hover {
    background: none;
    color: #cc0000;
  }
  .login-register_main-md a img {
    height: 20px;
  }
}
@media screen and (max-width: 991px) {
  #main-content {
    padding-top: 0;
  }
  .scroll-icon {
    display: block;
  }
  .header-bkg-sm {
    background: #ededed;
  }
  .breadcrumb-ct {
    display: none;
  }
  .footer-nav {
    display: block;
    margin-top: 10px;
  }
  .footer-nav a {
    white-space: nowrap;
    display: block;
    margin-left: 0px !important;
    padding: 3px 0px;
  }
  .link-danhgia span,
  .link-giohang span:not(.cart-total) {
    display: none;
  }
  header #home-logo img {
    height: 30px;
  }
  header #main-content {
    position: relative;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  header #main-content #search-form {
    width: 100%;
    position: absolute;
    max-height: 0vh;
    overflow: hidden;
    top: 100%;
    background: #eee;
    z-index: 1;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    padding: 0px 20px;
    border-radius: 5px;
    background: white;
    transition: all 0.5s;
  }
  header #main-content #search-form.show {
    max-height: 100vh;
    overflow: unset;
  }
  header #main-content #search-form #main-search .form-control {
    height: 40px;
  }
  header #main-content #search-form #main-search input {
    margin-top: 10px;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.16);
  }
  header #main-content #search-form #main-search #place-category,
  header #main-content #search-form #main-search .product-category {
    height: 40px;
    margin-top: 10px;
  }
  header #main-content #search-form .group-btn-search {
    margin-bottom: 10px;
    text-align: center;
  }
  .login-register button {
    display: block;
    border: none;
  }
  .login-register button img {
    height: 25px;
  }
  .login-register .login-register_main {
    display: none;
    position: absolute;
    top: 51px;
    right: 0px;
    background: #eee;
    z-index: 1;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    padding: 10px 20px;
    border-radius: 5px;
    background: white;
    width: 190px;
  }
  .login-register .login-register_main a {
    display: block;
    color: inherit;
    border: none;
    text-align: left;
    background: none;
    line-height: 2;
    font-size: 14px;
  }
  .login-register .login-register_main a img {
    height: 20px;
  }
  .padding-md-top-10 {
    padding-top: 10px;
  }
  .padding-md-bottom-10 {
    padding-bottom: 10px;
  }
  .padding-sm-top-clear {
    padding-top: 0 !important;
  }
  #home-logo img {
    width: auto;
    height: 36px;
  }
  #search-form {
    flex-wrap: wrap;
    max-width: 95vw;
  }
  #search-form #search-result {
    width: 100%;
  }
  #search-form #main-search {
    width: 100% !important;
  }
  #search-form #main-search .form-control {
    height: 40px;
    font-size: 16px;
    width: inherit;
  }
  #search-form #main-search input {
    border-radius: 4px;
  }
  #search-form .group-btn-search {
    width: 100%;
    margin-top: 10px;
    text-align: center;
  }
  #search-form .group-btn-search #btn-search {
    width: 115px;
    height: 36px;
    border-radius: 4px;
  }
  #news-left a {
    display: block;
    line-height: 35px;
    background: white;
    margin-bottom: 5px;
    padding-left: 5px;
  }
  #news-left a img {
    width: 35px;
    height: 35px;
    float: left;
    margin-right: 5px;
  }
  #news-right {
    margin-top: 20px;
    padding: 15px;
  }
  .user_menu_left,
  .modal-custom-content {
    margin-bottom: 15px;
  }
  .modal-custom-content {
    max-height: 50vh;
  }
  .checkout .form_dathang-form,
  .checkout .form_dathang-donhang {
    padding: 15px;
  }
  .checkout .form_dathang-form {
    padding-bottom: 70px;
  }
  .checkout .form_dathang-form .dangky-checkout {
    bottom: 15px;
  }
  .search-result .search-result_title-left {
    padding-right: 12px;
  }
  .search-result .search-result_title-right {
    margin-top: 5px;
    padding-left: 12px;
  }
  .search-result #locgia {
    height: inherit;
    border-bottom: none;
  }
  .search-result #locgia .boloc {
    width: 75px;
  }
  .item-list {
    padding: 12px;
  }
  .place-detail .place-main {
    padding: 15px;
  }
  .place-detail .place-main .ten {
    flex-wrap: wrap;
  }
  .place-detail .place-main .ten .chuaquantam,
  .place-detail .place-main .ten .daquantam {
    margin-left: 0;
  }
  .place-detail .place-main .ten h1 {
    font-size: 14px;
  }
  .place-detail .place-main .rating label:before, .place-detail .place-main .rating label::after {
    font-size: 13px;
  }
  .place-detail .place-main .danhgia2 {
    align-items: center;
  }
  .place-detail .place-main textarea.nhanxet {
    height: 105px;
    width: 100%;
    border: 1px solid #ebebeb;
  }
  .place-detail .place-main .delaidanhgia {
    flex-wrap: wrap;
  }
  .place-detail .place-main .delaidanhgia .ten {
    color: #ff0000;
    margin-left: 0px;
  }
  .place-detail .place-main .haydelaireview {
    color: #000000;
    font-size: 13px;
    padding-bottom: 5px;
    border-bottom: 1px solid #e1e1e1;
  }
  .place-detail .place-main #slider-compare .slick-prev {
    left: -10px !important;
  }
  .place-detail .place-main #slider-compare .slick-next {
    right: 5px !important;
  }
  .place-detail .place-main .thongtin {
    font-size: 12px;
  }
  .place-detail .place-main .guidanhgia {
    font-size: 12px;
    height: 30px;
  }
  .place-detail .place-main .noidung {
    font-size: 13px;
  }
  .place-detail .place-main #show-review {
    margin-top: 15px;
  }
  .place-detail .place-main #show-review .danhgiatunguoikhac {
    font-size: 14px;
  }
  .place-detail .vr360 .datmua {
    position: initial;
  }
  .place-detail .vr360 .datmua .btn-datmua {
    cursor: pointer;
    line-height: 40px;
    padding-left: 24px;
    border-radius: 3px;
    text-align: center;
    background: #ed1c24;
    color: white;
    margin-top: 10px;
    margin-bottom: 10px;
    height: initial;
    justify-content: center;
  }
  .block-left {
    order: 2;
  }
  .block-right {
    order: 1;
  }
  .modal-concept #tongtienconcept #tongtienconcept_money {
    width: 100%;
    text-align: center;
    margin-bottom: 0;
  }
  .modal-concept .action_concetpt {
    order: 1;
    justify-content: space-between;
  }
  .modal-concept .action_concetpt .macdinh,
  .modal-concept .action_concetpt .datmuaconcept {
    width: 100%;
  }
  .modal-concept .modal-concept_product {
    order: 2;
  }
  .modal-concept .modal-concept_product .item_gh .xemchitiet_concept {
    margin-bottom: 5px;
  }
  .brand {
    padding: 20px 25px;
  }
  .brand div.col-left {
    order: 1;
    margin-top: 10px;
  }
  .brand #thuonghieu-title-tab {
    margin-left: -15px;
    margin-right: -15px;
  }
  .brand .thuonghieu-concept {
    padding: 20px 15px;
  }
  .forgot-password {
    margin-top: 20px;
  }
  /* iOS Safari auto-zooms the page on focus for any input/select with a
     computed font-size below 16px. Bump just these mobile-only overrides
     to 16px instead of touching the shared base rules (which also apply
     on desktop, where this doesn't matter and shouldn't change size). */
  .cart-item input[type=number],
  .login input,
  .search-result #locgia form .select,
  .place-detail .place-main #dien-thoai-tu-van .goituvan .recall-button input {
    font-size: 16px;
  }
}
@media screen and (max-width: 320px) {
  .col-4 {
    padding-left: 3px;
    padding-right: 3px;
  }
  .modal-custom .modal-header .modal-header_left .modal-header_left-title {
    padding: 7px 4px;
  }
  .footer-nav {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */