:root {
  --blue: #00ae57;
}
@font-face {
  font-family: "Roboto";
  src:
    url("../fonts/Roboto-Regular.woff2") format("woff2"),
    url("../fonts/Roboto-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src:
    url("../fonts/Roboto-Medium.woff2") format("woff2"),
    url("../fonts/Roboto-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src:
    url("../fonts/Roboto-SemiBold.woff2") format("woff2"),
    url("../fonts/Roboto-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src:
    url("../fonts/Roboto-Bold.woff2") format("woff2"),
    url("../fonts/Roboto-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
body {
  font-family: "Roboto", sans-serif;
  max-width: 1920px;
  overflow-x: hidden;
  margin: auto;
  font-size: 16px;
}
html {
  scroll-behavior: smooth;
}
html::-webkit-scrollbar {
  width: 6px;
}
html::-webkit-scrollbar-track {
  background: #f1f1f1;
}
html::-webkit-scrollbar-thumb {
  background: var(--blue);
  border-radius: 4px;
}
html::-webkit-scrollbar-thumb:hover {
  background: #555;
}
/* Default */
a {
  color: #000;
  text-decoration: none;
}
.fs-12 {
  font-size: 12px;
}
.fs-14 {
  font-size: 14px;
}
.fs-18 {
  font-size: 18px;
}
.fs-20 {
  font-size: 20px;
}
.fs-24 {
  font-size: 24px;
}
.fs-28 {
  font-size: 28px;
}
.fs-32 {
  font-size: 32px;
}
.fs-36 {
  font-size: 36px;
}
.text-line {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.text-2line {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 42px;
}
.text-3line {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 53px;
}
.text-4line {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 90px;
}
.bg-blue {
  background-color: var(--blue);
}
.bg-gadient {
  background: linear-gradient(90deg, #3333ff 0%, #1f1f99 100%);
}
.text-red {
  color: #e31515;
}
.text-blue {
  color: var(--blue);
}
.text-op {
  color: rgba(0, 0, 0, 0.5);
}
.cursor-pointer {
  cursor: pointer;
}
.list-none {
  list-style: none;
}
.text-justify {
  text-align: justify;
}
.container {
  max-width: calc(100% - 10vw);
}
.hv-blue:hover {
  color: var(--blue) !important;
}
.overflow-hidden {
  overflow: hidden !important;
}
.rd-top-right {
  border-top-right-radius: 2rem;
}
.rd-top-left {
  border-top-left-radius: 2rem;
}
.rd-bottom-left {
  border-bottom-left-radius: 2rem;
}
.rd-bottom-right {
  border-bottom-right-radius: 2rem;
}
.bsd {
  box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.3);
}

.bsd__img {
  position: relative;
}

.bsd__img span {
  position: absolute;
  top: 0px;
  color: #fff;
  display: block;
  padding: 3px 5px;
  border-radius: 2px;
}

.bsd__moi {
  left: 0;
  background-color: green;
}

.bsd__giamchao {
  right: 0;
  background-color: red;
}

.h-50 {
  height: 50px;
}
.h-60 {
  height: 60px;
}
.bd-bottom {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.text-2line.fs-12 {
  height: 37px;
}
/* Header*/
.header {
  padding-left: 5vw;
}
.header-top {
  padding-right: 5vw;
}

.header-top img {
  height: 45px;
}

.logo {
  transition: all 0.6s ease;
}
.form-search {
  position: absolute;
  right: 5vw;
  top: 100%;
  z-index: 9;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.7s ease;
}
.form-search.show {
  transform: translateX(0);
  opacity: 1;
}
.nav-item.dropdown .nav-link {
  background-color: #f6f6f6;
}
.dropdown-menu {
  width: 100%;
  min-width: auto;
  background-color: #f6f6f6;
  padding: 0;
}
.dropdown-item {
  padding: 0;
  text-align: center;
  padding: 2px 0;
}
.dropdown-item:focus,
.dropdown-item:hover {
  background-color: #000;
  color: #fff !important;
}
/* Menu */
.menu {
  position: relative;
  z-index: 10;
  transition: all 0.8s ease;
  -webkit-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  -ms-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
}
.menu::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 100%;
  background-color: var(--blue);
  right: 99.99%;
  top: 0;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
.menu .container {
  max-width: 100%;
  padding-right: 5vw;
}
.menu ul.menu-pc {
  width: 100%;
  padding: 0px;
  margin: auto;
  list-style: none;
}
.menu ul.menu-pc li {
  position: relative;
  z-index: 1;
}
.menu ul.menu-pc li a {
  display: block;
  position: relative;
  text-transform: uppercase;
  text-decoration: none !important;
  white-space: nowrap;
}
.menu ul.menu-pc li ul {
  position: absolute;
  min-width: 250px;
  background: #fff;
  border-radius: 0.25rem;
  -webkit-transform: perspective(600px) rotateX(-90deg);
  transform: perspective(600px) rotateX(-90deg);
  -webkit-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  list-style: none;
  margin: auto;
  padding: 0;
  border: 1px solid #eee;
}
.menu ul.menu-pc li:hover > ul {
  -webkit-transform: perspective(600px) rotateX(0);
  transform: perspective(600px) rotateX(0);
  -webkit-transform-origin: 0 0 0;
  opacity: 1;
  visibility: visible;
  transition: all 0.7s;
}
.menu ul.menu-pc li ul li a {
  font-weight: 400;
  font-size: 14px;
  text-align: left;
  border-bottom: 1px solid #eee;
  text-transform: capitalize;
}
.menu ul.menu-pc li ul li:last-child > a {
  border-bottom: 0px;
}
.menu ul.menu-pc li ul li a.has-child {
  margin-right: 0px;
}
.menu ul.menu-pc li ul li a.has-child:after {
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.menu ul.menu-pc li ul li a {
  line-height: 20px;
  padding: 0px;
}
/* .menu ul.menu-pc > li > a.active,.menu ul.menu-pc > li > a:hover{color: var(--blue)!important;} */
.menu ul.menu-pc > li > ul::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 10px;
  top: -10px;
  left: 15%;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  background-color: #eee;
}
.menu ul.menu-pc li ul li ul {
  position: absolute;
  top: 0;
  left: 100%;
}
.menu-mobile {
  display: none;
}
.fixed {
  position: fixed !important;
  z-index: 9999;
  top: 0px;
  left: 0px;
  right: 0px;
  transform: translateY(-100%);
}
.menu.fixed.show {
  transform: translateY(0);
}
.menu.fixed .container {
  max-width: calc(100% - 10vw);
  padding-right: calc(1.5rem * 0.5);
}
.menu.fixed .form-search {
  right: 0;
}
.menu.fixed::before {
  display: none;
}
/*Menu Mobile*/
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.navbar-toggle {
  position: relative;
  padding: 5px 5px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}
.navbar-toggle .icon-bar {
  display: block;
  width: 20px;
  height: 3px;
  border-radius: 1px;
  background-color: #fff;
}
.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 5px;
}
.navbar-default .navbar-toggle .icon-bar {
  background-color: #fff;
}
/*Body*/
.img-filter {
  filter: brightness(0) invert(1);
}
.desc p {
  margin-bottom: 0;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.album_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.thumb-pro-detail {
  display: block !important;
  border: 1px solid #eee;
  padding: 5px;
  border-radius: 3px;
  cursor: pointer;
  background-color: #ffffff;
}
.thumb-pro-detail.mz-thumb.mz-thumb-selected {
  border-color: #cecfd2;
}
.thumb-pro-detail img {
  box-shadow: none !important;
  filter: brightness(100%) !important;
  border-bottom: 0px !important;
  padding-bottom: 0px !important;
}
.scrollToTop {
  width: 41px;
  height: 41px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  position: fixed;
  bottom: 15px;
  right: 15px;
  display: none;
  z-index: 10;
  cursor: pointer;
  background: var(--blue);
  line-height: 41px;
  border-radius: 10px;
}
.register-left {
  padding: 2rem 0;
  padding-left: 6vw;
  padding-right: 6vw;
}
.register-image {
  clip-path: polygon(20% 0%, 100% 0, 100% 100%, 0% 100%);
}
#form-register input::placeholder,
#form-register textarea::placeholder {
  color: #fff;
}
#newsletter-form input::placeholder,
#newsletter-form input {
  color: rgba(255, 255, 255, 0.5);
}
#newsletter-form button {
  min-width: 130px;
}
.news-grid-index {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
.line-new {
  width: 34px;
  height: 2px;
  background-color: var(--blue);
  border-radius: 1rem;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  -ms-border-radius: 1rem;
  -o-border-radius: 1rem;
}
.swiper-new {
  max-height: 410px;
}
.swiper-new .swiper-slide {
  height: auto !important;
}
.item-new-index .content {
  width: calc(100% - 178px);
}
.lh-21 {
  line-height: 21px;
}
/*service*/
.hex-full {
  height: 405px;
}
.hex-full .hex-small {
  width: 100%;
  max-width: 228px;
  height: 200px;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}
.item-estate .content {
  width: calc(100% - 150px);
}
.item-estate .line {
  height: 5px;
  background-color: var(--blue);
  width: 55px;
}
.item-estate .line::before {
  position: absolute;
  content: "";
  width: 13px;
  height: 13px;
  background-color: var(--blue);
  right: -7px;
  top: -5px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.item-estate .image {
  width: 100px;
  height: 100px;
  padding: 0.5rem;
  border: 5px solid var(--blue);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.item-estate .image p {
  background-color: var(--blue);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  width: 100%;
  height: 100%;
  padding: 0.8rem;
}
.container-estate {
  position: relative;
  height: 100%;
  width: 428px;
}

.container-estate .hex-big {
  position: relative;
  height: 100%;
  z-index: 2;
  width: 292px;
  max-height: 298px;
  background: url("../images/ic-hex.png") no-repeat;
  background-size: 100% 100%;
}
.item-estate {
  width: 540px;
  z-index: 1;
}
.item-estate-1 {
  top: 0;
  right: -84%;
}
.item-estate-2 {
  top: 50%;
  left: 76%;
  transform: translate(0, -50%);
}
.item-estate-3 {
  bottom: 0;
  right: -84%;
}
.item-estate-4 {
  bottom: 0;
  left: -84%;
  flex-direction: row-reverse;
  text-align: right;
}
.item-estate-5 {
  top: 50%;
  right: 76%;
  transform: translate(0, -50%);
  flex-direction: row-reverse;
  text-align: right;
}
.item-estate-6 {
  top: 0;
  left: -84%;
  flex-direction: row-reverse;
  text-align: right;
}
.item-estate .content::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 16px;
  background: linear-gradient(to right, #20407b, rgba(255, 255, 255, 0));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}
.item-estate-4 .content::before,
.item-estate-5 .content::before,
.item-estate-6 .content::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 16px;
  background: linear-gradient(to left, #20407b, rgba(255, 255, 255, 0));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.item-estate-4 .line::before,
.item-estate-5 .line::before,
.item-estate-6 .line::before {
  right: initial;
  left: -7px;
}
.form-estate button,
.form-estate select {
  height: 50px;
}
.search-index {
  margin-top: -3.5rem;
  z-index: 99;
}
.estate-grid {
  display: grid;
  grid-template-columns: repeat(2, calc(50% - (20px / 2)));
  grid-gap: 20px;
}
/*Product*/
.list-typical li:hover,
.list-typical li.active {
  background-color: var(--yellow) !important;
  color: #fff;
}
.list-typical li.active:before {
  display: none;
}
.tab-product .tab-pane {
  transition:
    opacity 0.3s ease,
    max-height 0.6s ease;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  -webkit-transition:
    opacity 0.3s ease,
    max-height 0.6s ease;
  -moz-transition:
    opacity 0.3s ease,
    max-height 0.6s ease;
  -ms-transition:
    opacity 0.3s ease,
    max-height 0.6s ease;
  -o-transition:
    opacity 0.3s ease,
    max-height 0.6s ease;
}
.tab-product .tab-pane.active {
  opacity: 1;
  max-height: 1000px;
}
.product__grid {
  display: grid;
  grid-template-columns: repeat(4, calc(25% - (20px * 3 / 4)));
  grid-gap: 40px 20px;
}
.price {
  position: absolute;
  bottom: -1rem;
  left: 0;
  clip-path: polygon(0 0, 100% 0%, 90% 100%, 0% 100%);
  width: 100%;
  max-width: 80%;
}

.price .giacu {
  font-size: 14px;
  color: yellow;
  text-decoration: line-through;
}

.priceDetail .giacu {
  color: red;
  text-decoration: line-through;
  font-size: 18px;
}

/*News*/
.news__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
/*Footer*/
.map_footer iframe {
  width: 100%;
}
.swal2-container {
  z-index: 9999;
}
.fancybox-thumbs {
  top: auto !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  height: 95px !important;
  padding: 10px 10px 5px 10px;
  box-sizing: border-box;
  background-color: inherit;
}
.fancybox-thumbs__list {
  display: flex !important;
  flex-direction: row !important;
  overflow-x: auto;
  overflow-y: hidden;
  margin: auto;
}
.fancybox-show-thumbs .fancybox-inner {
  right: 0 !important;
  bottom: 95px !important;
}
/*Modal*/
.btn-close {
  --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 16 16'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414'/%3e%3c/svg%3e");
  width: 1rem;
  height: 1rem;
  background-size: 1rem;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 0.2rem;
  backdrop-filter: blur(4px);
  opacity: 1;
  transition: background-color 0.2s ease;
  -webkit-border-radius: 0.2rem;
  -moz-border-radius: 0.2rem;
  -ms-border-radius: 0.2rem;
  -o-border-radius: 0.2rem;
}
.grid-checks {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
}
.modal {
  z-index: 9999;
}
/*Ckeditor*/
.content-ckeditor {
  overflow-wrap: break-word;
  word-break: break-word;
}
.content-ckeditor * {
  max-width: 100%;
  box-sizing: border-box;
}
.content-ckeditor img {
  max-width: 100%;
  height: auto !important;
}
.content-ckeditor table {
  max-width: 100%;
  border-collapse: collapse;
  overflow-x: auto;
  display: block;
}
.content-ckeditor table td,
.content-ckeditor table th {
  word-wrap: break-word;
}
.content-ckeditor iframe,
.content-ckeditor video {
  max-width: 100% !important;
}
/*Breadcrumb*/
.breadcrumb {
  margin-bottom: 0;
  justify-content: start;
  padding: 1rem 0;
}
.breadcrumb li a {
  color: var(--blue);
  text-transform: uppercase;
}
.breadcrumb-item + .breadcrumb-item::before {
  color: var(--blue);
}
.breadcrumb-item.active {
  font-weight: 700;
}
.btn-thanhtoan.active {
  background-color: var(--blue);
  color: white;
}
.container-maintenance {
  position: relative;
  overflow-x: auto;
}
/*swiper*/
.swiper-wrapper {
  height: auto !important;
}
.swiper-button-next,
.swiper-button-prev {
  background-color: #fff;
  border-radius: 50%;
  color: #878787;
  width: 58px;
  height: 58px;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 30px;
}
.item-slide img {
  transition: transform 8s ease;
  transform: scale(1.1);
}
.swiper-slide-active .item-slide img {
  transform: scale(1);
}
.Swiper_spct2 .swiper-button-next,
.Swiper_spct2 .swiper-button-prev {
  width: 30px;
  height: 30px;
}
.Swiper_spct2 .swiper-button-next:after,
.Swiper_spct2 .swiper-button-prev:after {
  font-size: 14px;
}
/*owl*/
.owl-prev,
.owl-next {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}
.owl-next {
  left: inherit;
  right: 0;
}
.owl-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
.owl-dots button span {
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #c5c5c5;
  margin: 0 3px;
}
.owl-dots button.active span {
  background-color: #fff;
}
/*error*/
#newsletter-form label.error {
  display: none !important;
}
label.error {
  display: block;
  color: #ff4d4f;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  position: relative;
  padding-left: 15px;
}
label.error::before {
  content: "⚠";
  position: absolute;
  left: 0;
  font-family: "Arial", sans-serif;
}
.grecaptcha-badge {
  display: none;
}
/*Paging*/
.page-link {
  color: #717171;
  width: 37px;
  font-size: 18px;
  height: 37px;
  margin: 0 0.4rem;
  border-radius: 0.3rem;
  background-color: #ededed;
  font-weight: 700;
}
.active > .page-link,
.page-link.active,
.page-link:hover {
  background-color: var(--green);
  border-color: var(--green);
  color: #fff;
}
/*Comment*/
a.star {
  font-size: 24px;
  color: #d1d1d4;
  cursor: pointer;
  line-height: 1;
  transition: all 0.1s ease;
}
a.star.vote-hover {
  color: #ffc120;
}
a.star.vote-active {
  color: #ffc120;
}
.rating-medium {
  text-align: center;
  padding-top: 0;
}
.title-medium-score {
  font-size: 14px;
}
.score-rating {
  font-size: 54px;
  font-weight: 500;
  color: #fe302e;
  line-height: 60px;
}
.quantity-star {
  color: #ffc120;
  font-size: 16px;
  margin-bottom: 15px;
}
.quantity-comment {
  color: #777474;
}
.item-progress {
  margin-bottom: 10px;
}
.item-progress .rating-num {
  float: left;
  font-size: 15px;
  width: 45px;
  text-align: right;
  padding-right: 5px;
  color: #6f6969;
  font-family: "Barlow Semi Condensed", sans-serif;
}
.item-progress .box-progress {
  float: left;
  width: calc(100% - 90px);
  vertical-align: middle;
  margin-top: 5px;
}
.item-progress .box-progress .progress {
  height: 10px;
  margin-bottom: 0px;
  box-shadow: none;
  background-color: #e6e6e6;
}
.item-progress .box-progress .progress-bar {
  background-color: var(--blue);
}
.item-progress .rating-num-total {
  width: 45px;
  text-align: left;
  display: inline-block;
  float: left;
  padding-left: 10px;
  color: #565656;
  font-size: 15px;
  font-family: "Barlow Semi Condensed", sans-serif;
}
.content-nhanxet {
  display: none;
}
.content-nhanxet .h3 {
  margin-top: 10px;
  font-size: 18px;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  margin-bottom: 20px;
}
.btn-guibl {
  background-color: var(--blue);
  color: #fff;
  margin: 0px auto; /* display: block; */
}
.item-binhluan .img_user {
  display: block;
  width: 80px;
  height: 80px;
  margin: 0px auto;
  border-radius: 50%;
  overflow: hidden;
}
.item-binhluan .img_user img {
  width: 100%;
  height: 100%;
}
.item-binhluan .name-user {
  text-align: center;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 600;
  margin-top: 10px;
  color: #626262;
  margin-bottom: 5px;
}
.item-binhluan .ngaydang {
  display: block;
  text-align: center;
  color: #a2a1a1;
  font-size: 12px;
}
.chitiet-bl .titlede-bl {
  font-weight: 600;
  color: #00a85a;
}
.chitiet-bl p {
  color: #6f6c6c;
}
.panel-traloi {
  margin-top: 10px;
}
.list-traloi {
  margin-top: 10px;
  border-top: 1px dashed #e8e5e5;
  padding-top: 10px;
}
.list-traloi span {
  display: inline-block;
  margin-left: 14px;
  font-size: 13px;
  color: #757575;
}
.list-traloi p {
  color: #6f6c6c;
  margin-top: 7px;
}
.item-traloi {
  border-bottom: 1px dotted #e2e2e2;
  margin-bottom: 10px;
}
/*widget*/
#arcontactus {
  display: none;
}
.widget-desktop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: fixed;
  right: 10px;
  bottom: 120px;
  z-index: 9999;
}
.widget-desktop-items {
  margin-bottom: 20px;
  border-radius: 50%;
  position: relative;
  text-decoration: none;
}
.widget-desktop-items:last-child {
  margin-bottom: 0;
}
.widget-desktop-items:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: var(--blue-op);
  border-radius: 50%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-animation: scaleIn1 1s;
  animation: scaleIn1 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.widget-desktop-items:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-animation: scaleIn 1.2s;
  animation: scaleIn 1.2s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.widget-desktop-items__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--blue);
  border-radius: 50%;
  position: relative;
  z-index: 999;
  padding: 8px;
}
.widget-desktop-items__zalo .widget-desktop-items__icon {
  background: #028fe3;
  padding: 0;
}

.widget-desktop-items__zalo .widget-desktop-items__icon {
  background: #028fe3;
  padding: 0;
}

.widget-desktop-items__zalo::before {
  background: #028fe350;
}
.widget-desktop-items__zalo::after {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(0, #028fe350),
    to(#028fe350)
  );
  background: linear-gradient(90deg, #028fe350 0, #028fe350 100%);
}
.widget-desktop-items__facebook::before {
  background: #0084ff50;
}
.widget-desktop-items__facebook::after {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(0, #0084ff50),
    to(#0084ff50)
  );
  background: linear-gradient(90deg, #0084ff50 0, #0084ff50 100%);
}
.widget-desktop-items__email .widget-desktop-items__icon {
  background: #f50000;
}
.widget-desktop-items__email::before {
  background: #f5000050;
}
.widget-desktop-items__email::after,
.widget-desktop-items__call::after {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(0, #f5000050),
    to(#f5000050)
  );
  background: linear-gradient(90deg, #f5000050 0, #f5000050 100%);
}
.widget-desktop-items__facebook .widget-desktop-items__icon {
  background: #0084ff;
}
.widget-desktop-items__call::before {
  background: #ed522850;
}
.widget-desktop-items__call .widget-desktop-items__icon {
  background: #ed5228;
}
.widget-cart {
  color: #fff;
  font-size: 20px;
}
.widget-desktop-items__call .widget-desktop-items__content {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 5px 60px 5px 20px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(0, #ed5228),
    to(#ed5228)
  );
  background: linear-gradient(90deg, #ed5228 0, #ed5228 100%);
  border-radius: 20px;
  color: #fff;
  white-space: nowrap;
  z-index: -1;
}
.widget-cart {
  color: #fff;
  font-size: 20px;
}
.widget-desktop-items img {
  animation: vibrate 1s ease-in-out infinite;
}
@-webkit-keyframes scaleIn {
  from {
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }
  60% {
    -webkit-transform: translate(-50%, -50%) scale(1.2);
    transform: translate(-50%, -50%) scale(1.2);
  }
}

@keyframes scaleIn {
  from {
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }
  60% {
    -webkit-transform: translate(-50%, -50%) scale(1.2);
    transform: translate(-50%, -50%) scale(1.2);
  }
}
@-webkit-keyframes scaleIn1 {
  from {
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }
  60% {
    -webkit-transform: translate(-50%, -50%) scale(1.4);
    transform: translate(-50%, -50%) scale(1.4);
  }
}
@keyframes scaleIn1 {
  from {
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }
  60% {
    -webkit-transform: translate(-50%, -50%) scale(1.4);
    transform: translate(-50%, -50%) scale(1.4);
  }
}
@keyframes rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes vibrate {
  0% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
  }
  20% {
    -webkit-transform: rotate(25deg) scale(1) skew(1deg);
  }
  30% {
    -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
  }
  40% {
    -webkit-transform: rotate(25deg) scale(1) skew(1deg);
  }
  50% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
  }
  100% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
  }
}

.btn-xemthem {
  color: var(--blue);
  transition: all ease 0.5s;
  float: right;
}
