.hidden-seoh {
  width: 0;
  height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
}

:root {
  --color-main: #f9c615;
  --color-xanh: #0c943f;
  --color-title: #282828;
  --color-text: #4d4d4d;

  /* color mmenu */
  --color-bg-menu: #f9c615;
  --color-text-menu: #fff;
  --color-border-menu: #fff;

  /* font */
  --font-rmedium: RobotoMedium;
  --font-svn: SVNDiamonda;
  --font-SemiBold: SVNPoppinsSemiBold;
  --font-Regular: SVNPoppinsRegular;
  --font-Bold: SVNPoppinsBold;
}

body {
  font-size: 14px;
  line-height: 1.6;
  font-family: var(--font-regular);
}

.max-width,
.wrap-content {
  width: calc(100% - 30px);
  margin: 0 auto;
  max-width: 1200px;
}

img {
  max-width: 100%;
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

.social-plugin {
  display: flex;
  margin-top: 10px;
}

.text-split {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 3;
}

.p-relative {
  position: relative;
}

/* Transition All */
.transition,
.btn-frame .kenit-alo-circle-fill,
.control-owl button,
.carousel-comment-media .carousel-control a span,
.menu ul li a.has-child:after,
.menu ul li ul,
.menu ul li:hover > ul,
.scale-img img,
.scale-img:hover > img,
.support-online .kenit-alo-circle-fill {
  transition: 0.3s all;
}

/*   Header   */
.header {
  background: #fff;
}

.cart-head {
  border: 1px solid #fff;
  padding: 10px;
  border-radius: 5px;
  position: relative;
  color: #fff;
}

.cart-head:hover {
  color: #fed402;
}

.cart-head i {
  font-size: 20px;
}

.cart-head .count-cart {
  position: absolute;
  z-index: 999;
  color: #fff;
  background: #f00;
  border-radius: 50%;
  top: -10px;
  right: 20px;
  width: 20px;
  height: 20px;
  text-align: center;
}

/* slideshow */
.slideshow {
  position: relative;
}

.slideshow-image img {
    aspect-ratio: 1920/800;
}

/* Search */
.search {
  width: 100%;
  max-width: 370px;
  background: #f6f6f6;
  position: relative;
  right: 0;
  top: 0;
  border-radius: 50px;
  overflow: hidden;
}

.search input {
  width: calc(100% - 110px);
  font-size: 13px;
  color: #a1a1a1;
  border-radius: 10px;
  border: none;
  padding: 0 12px 0 15px;
  background: transparent;
  line-height: 35px;
  height: 35px;
}

.search input::placeholder {
  color: #a1a1a1;
}

.search input:focus {
  border: none;
  box-shadow: none;
}

.search p {
  width: 110px;
  height: 35px;
  cursor: pointer;
  line-height: 35px;
  text-align: center;
  font-size: 13px;
  font-family: var(--font-rmedium);
  color: #fff;
  background: var(--color-xanh);
}

.search p:hover {
  background: var(--color-main);
}

.search p i {
  margin-left: 5px;
}

/* Search Responsive */
.search-res {
  position: relative;
  margin-left: 15px;
}

.search-res .icon-search {
  width: 40px;
  height: 40px;
  cursor: pointer;
  text-align: center;
  line-height: 40px;
  color: #fff;
  font-size: 17px;
  margin: 0px;
  border-radius: 50%;
}

.search-res .icon-search.active {
  color: var(--color-main);
  background: #ffffff;
  border-radius: 100%;
}

.search-res .search-grid {
  position: absolute;
  top: 50px;
  right: 0px;
  width: 0px;
  height: 40px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--color-main);
  z-index: 2;
  opacity: 0;
  border-radius: 25px;
  line-height: normal;
}

.search-res .search-grid p {
  float: left;
  width: 35px;
  height: 38px;
  cursor: pointer;
  outline: none;
  border: none;
  margin: 0px;
  font-size: 17px;
  display: block;
  color: var(--color-main);
  line-height: 40px;
  text-align: center;
}

.search-res .search-grid input {
  width: calc(100% - 35px);
  border: none;
  color: var(--color-main);
  font-size: 14px;
}

.search-res .search-grid input::-webkit-input-placeholder {
  color: #313131;
}

.search-res .search-grid input:-moz-placeholder {
  color: #313131;
}

.search-res .search-grid input::-moz-placeholder {
  color: #313131;
}

.search-res .search-grid input:-ms-input-placeholder {
  color: #313131;
}

/* Menu res*/

.menu-res {
  display: none;
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 5px 0;
  background: var(--color-main);
}

#hamburger {
  width: 35px;
  height: 23px;
  position: relative;
}

#hamburger:before,
#hamburger:after,
#hamburger span {
  background: #ffffff;
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0px;
}

#hamburger:before {
  top: 0px;
}

#hamburger span {
  top: 10px;
}

#hamburger:after {
  top: 20px;
}

#hamburger:before,
#hamburger:after,
#hamburger span {
  -webkit-transition: none 0.5s ease 0.5s;
  transition: none 0.5s ease 0.5s;
  -webkit-transition-property: transform, top, bottom, left, opacity;
  -webkit-transition-property: top, bottom, left, opacity, -webkit-transform;
  transition-property: top, bottom, left, opacity, -webkit-transform;
  transition-property: transform, top, bottom, left, opacity;
  transition-property: transform, top, bottom, left, opacity, -webkit-transform;
}

.mm-wrapper_opening #hamburger:before,
.mm-wrapper_opening #hamburger:after {
  top: 10px;
}

.mm-wrapper_opening #hamburger span {
  left: -50px;
  opacity: 0;
}

.mm-wrapper_opening #hamburger:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.mm-wrapper_opening #hamburger:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.mm-menu_opened {
  display: block !important;
}

.mm-slideout {
  z-index: unset;
}

/* menu */

.menu {
  position: relative;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
}

.menu .wrap-content {
  position: relative;
}

.menu ul {
  width: 100%;
  padding: 0px;
  margin: 0;
  list-style: none;
}

.menu ul.ulmn {
}

.menu ul li {
  position: relative;
  z-index: 99;
  transition: 0.3s;
}

.menu ul.ulmn > li:nth-child(1) {
  min-width: 285px;
  background: var(--color-main);
  color: #fff;
  border-radius: 45px;
  position: relative;
}

.menu ul.ulmn > li:nth-child(1):hover {
  background: var(--color-xanh);
}

.menu ul.ulmn > li:nth-child(1):after {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 35px;
  height: 35px;
  background: url(../images/bar-sanpham.png);
}

.menu ul.ulmn > li:nth-child(1) > a {
  color: #fff;
  font-family: "SVNPoppinsBold";
  text-transform: uppercase;
  line-height: 45px;
  height: 45px;
}

.menu ul li.line {
  width: 1px;
  height: 15px;
  background-color: rgba(255, 255, 255, 0.5);
  flex: none;
}

.menu ul li a {
  font-size: 16px;
  color: var(--color-title);
  margin: 0px;
  padding: 0;
  text-transform: capitalize;
  position: relative;
  z-index: 1;
  text-align: center;
  text-decoration: none !important;
  display: block;
  font-family: SVNPoppinsSemiBold;
}

.menu ul li a img {
  vertical-align: middle;
}

.menu ul li a.active,
.menu ul li:hover > a {
  color: var(--color-main);
}

.menu ul li ul {
  position: absolute;
  min-width: 250px;
  left: 0;
  top: calc(100% + 8px);
  background: #fff;
  box-shadow: 0 3px 11px 0 rgba(0, 0, 0, 0.3);
  -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;
}

.menu ul 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 li ul li {
  text-align: left;
  border-bottom: 1px solid rgb(173 173 173 / 32%);
}

.menu ul li ul li:last-child {
  border-bottom: 0px;
}

.menu ul li ul li a {
  font-size: 14px;
  padding: 10px;
  display: block;
  line-height: 20px;
  text-align: left;
  font-family: "SVNPoppinsSemiBold";
  text-transform: capitalize;
  color: #111;
}

.menu ul li ul li ul {
  top: 0px;
  left: 100%;
}

.menu ul li ul li a:before {
}

.menu ul li ul li a:hover:before,
.menu ul li ul li > a.active:before {
  left: 0;
  visibility: visible;
  opacity: 1;
  width: 30px;
}

.menu ul li ul li:hover {
  padding-left: 10px;
}

a.cart-header {
  position: relative;
}

a.cart-header span {
  position: absolute;
  top: 0px;
  right: 0px;
  color: #fff;
  font-size: 11px;
  width: 17px;
  height: 17px;
  text-align: center;
  border-radius: 50%;
}

/*   btn owl */
.control-owl {
  position: absolute;
  width: 100%;
  z-index: 2;
  left: 0px;
  top: calc(50% - 22.5px);
}

.control-owl button {
  opacity: 0.5;
  top: 0px;
  position: absolute;
  outline: none;
  border: 2px solid #fff;
  padding: 0px;
  margin: 0px;
  display: block;
  cursor: pointer;
  color: #ffffff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  overflow: hidden;
  text-align: center;
  font-size: 25px;
  margin: 0px;
  background-color: var(--color-main);
  display: flex;
  align-items: center;
  justify-content: center;
}

.control-owl button:hover {
  opacity: 1;
}

.control-owl button.owl-prev {
  left: 20px;
}

.control-owl button.owl-next {
  right: 20px;
}

.title-detail,
.title-main {
  margin-bottom: 30px;
  position: relative;
  text-align: center;
}

.title-main p {
  color: #4d4d4d;
  margin-bottom: 0;
}

.title-main h2,
.title-detail h1 {
  color: var(--color-xanh);
  font-family: var(--font-Bold);
  font-size: 30px;
  margin-bottom: 0;
  text-transform: capitalize;
  position: relative;
}

/* share */
.share {
  padding: 17px 10px 10px 10px;
  line-height: normal;
  background: rgba(128, 128, 128, 0.15);
  margin-top: 15px;
  border-radius: 5px;
}

.share b {
  display: block;
  margin-bottom: 5px;
}

.othernews b {
  margin-bottom: 10px;
}

.list-news-other {
  padding-left: 17px;
  list-style: square;
}

.list-news-other li {
  margin-bottom: 2px;
}

.list-news-other li a {
  text-transform: none;
  color: #333333;
}

.list-news-other li a:hover {
  color: #fed402;
}

/* Toc */
.box-readmore {
  padding: 8px 15px;
  border: 1px solid #dedede;
  margin-bottom: 2rem;
  border-radius: 5px;
  background-color: #eeeeee;
}

.box-readmore li ul > li {
  margin: 0;
  margin-bottom: 8px;
}

.box-readmore li ul > li:before {
  content: counters(item, ".") " ";
}

.box-readmore ul {
  list-style-type: none;
  counter-reset: item;
  margin-bottom: 0px;
  padding-left: 0px !important;
  margin-top: 8px;
}

.box-readmore ul li {
  display: table;
  counter-increment: item;
  margin-bottom: 5px;
}

.box-readmore ul li:before {
  content: counters(item, ".") ". ";
  display: table-cell;
  padding-right: 5px;
}

.box-readmore ul li a {
  color: #333333;
  cursor: pointer;
  font-family: var(--font-sbold);
  transition: 0.4s;
}

.box-readmore ul li ul li a {
  font-family: var(--font-regular);
}

.box-readmore ul li a:hover {
  color: var(--color-main) !important;
  padding-left: 8px;
}

.box-readmore ul li a:hover {
  color: #767676;
}

.title-readmore {
  font-size: 20px;
  color: #38433b;
}

.title-readmore label {
  font-size: 14px;
  cursor: pointer;
}

.box-readmore {
  display: inline-block;
  padding: 8px 15px;
  border: 1px solid #47a2e2;
  margin-bottom: 2rem;
  border-radius: 5px;
  background-color: #11552c14;
  min-width: 50%;
}

.box-readmore li ul > li {
  margin: 0;
  margin-bottom: 8px;
}

.box-readmore li ul > li:before {
  content: counters(item, ".") " ";
}

.box-readmore ul {
  list-style-type: none;
  counter-reset: item;
  margin-bottom: 0;
  padding-left: 0 !important;
  margin-top: 8px;
  font-size: 15px;
}

.box-readmore ul li {
  display: table;
  counter-increment: item;
  margin-bottom: 5px;
}

.box-readmore ul li:before {
  content: counters(item, ".") ". ";
  display: table-cell;
  padding-right: 5px;
}

.box-readmore ul li a {
  color: #333;
  cursor: pointer;
}

.box-readmore ul li a:hover {
  color: #767676;
}

.meta-toc.fix1 {
  display: flex;
}

.meta-toc.fiedx {
  position: fixed;
  left: 5px;
  top: 200px;
  z-index: 111;
  display: block !important;
}

.meta-toc.fiedx .mucluc-dropdown-list_button {
  display: block;
  cursor: pointer;
}

a.mucluc-dropdown-list_button:before {
  content: "\f03a";
  font-style: normal;
  font-weight: 900;
  background: #fff;
  color: #4397dc !important;
  font-size: 31px;
  width: 50px;
  height: 50px;
  display: inline-block;
  line-height: 47px;
  text-align: center;
  border: 1px solid #ddd;
}

.meta-toc.fiedx .box-readmore {
  width: 350px;
  display: none;
  background: #fff;
}

/* Footer */
.footer {
}
.footer-article {
  background-color: var(--color-main);
}
.footer-powered {
  padding: 10px;
  background: #000;
}

.copyright {
  color: #fff;
  padding: 25px 0;
  text-align: center;
}

.copyright span {
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
}

.thongketruycap {
  color: #fff;
  text-align: end;
}

.thongketruycap p {
  margin-right: 10px;
  padding-right: 10px;
  position: relative;
}

.thongketruycap p span {
  font-weight: bolder;
}

.thongketruycap p:last-child {
  margin-right: 0;
  padding-right: 0;
}

.thongketruycap p:last-child:after {
  display: none;
}

.thongketruycap p:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 1px;
  height: 15px;
  background: #fff;
}
.footer-title {
  font-size: 20px;
  font-family: "SVNPoppinsSemiBold";
  color: #fff;
  padding-bottom: 20px;
  margin-bottom: 20px;
  position: relative;
}

.footer-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 1px;
  background: #fff;
}
.footer-info {
  color: #fff;
}
.footer-news .ul-list li {
  width: 100%;
}

.ul-list {
  list-style: disc;
  color: #fff;
  padding-left: 15px;
}
.footer-news .ul-list li h4 {
  font-size: 14px;
  font-family: "SVNPoppinsRegular";
}
.footer-news .ul-list li h4 a {
  color: #fff;
}

.footer-news .ul-list li:hover {
  color: #ffd900;
}

.footer-news .ul-list li h4 a:hover {
  color: #ffd900;
}
.footer-news:nth-child(1) {
  width: 36.8%; /* 442px/1200 */
}
.footer-news:nth-child(2) {
  width: 14.2%; /* 170px/1200 */
}
.footer-news:nth-child(3) {
  width: 14.2%; /* 170px/1200 */
}
.footer-news:nth-child(4) {
  width: 11.3%; /* 135px/1200 */
}

.d-map iframe {
  width: 100%;
  height: 390px;
}

/* Sort */
.sort-select {
  display: flex;
  justify-content: end;
  margin: 20px 0px;
  position: relative;
}

.sort-select .click-sort {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  padding: 6px 10px 6px 8px;
  margin: 0px;
}

.sort-select-main {
  display: grid;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 4px 6px rgb(0 0 0 / 20%);
  position: absolute;
  padding: 0 7px;
  top: 30px;
  right: 0;
  width: 160px;
  z-index: 2;
}

.sort-select-main p {
  border-bottom: 1px solid #f1f1f1;
  margin: 0px;
  order: 2;
}

.sort-select-main p:has(.check) {
  order: 1;
}

.sort a {
  color: #000;
  font-size: 14px;
  line-height: 17px;
  padding: 11px 3px;
  display: block;
  cursor: pointer;
}

.sort a.check i {
  box-sizing: border-box;
  position: relative;
  display: inline-block;
  transform: scale(var(--ggs, 1));
  width: 22px;
  height: 16px;
  border: 2px solid transparent;
  border-radius: 100px;
  vertical-align: middle;
}

.sort a.check i::after {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
  left: 3px;
  top: -4px;
  width: 6px;
  height: 10px;
  border-width: 0 2px 2px 0;
  border-style: solid;
  transform-origin: bottom left;
  transform: rotate(45deg);
}

.sort-select .sort-show {
  padding-right: 12px;
  position: relative;
}

.sort-select .sort-show::before {
  content: "";
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #333;
  content: "";
  height: 0;
  position: absolute;
  top: 6px;
  right: 0;
  width: 0;
}

/* Product */
.filter {
  position: absolute;
  right: 0px;
  top: 0px;
  padding: 5px 10px;
  background: #f1f1f1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  text-transform: uppercase;
  border-radius: 5px;
  cursor: pointer;
  border: 1px solid #ddd;
  display: none;
}

/* product detail */

.wr-search p {
  font-weight: bold;
  text-transform: uppercase;
}

.cart-product {
  margin: 5px 0 0 0px;
}

.cart-product span {
  cursor: pointer;
  color: #fff;
  text-align: center;
  padding: 0px 5px;
  border-radius: 5px;
  display: inline-block;
  line-height: 34px;
  font-size: 13px;
  font-weight: 700;
}

.cart-add {
  margin-left: 10px;
  background-color: #00a5d9;
  width: 155px;
}

.cart-add:hover {
  background-color: #fed402;
}

.cart-buy {
  background-color: #ff2e00;
  width: 93px;
  height: 33px;
}

.cart-buy:hover {
  background-color: #fed402;
}

.grid-pro-detail .left-pro-detail {
  width: 50%;
  border-right: 1px solid #cdd9b3;
}

.grid-pro-detail .right-pro-detail {
  width: calc(50% - 30px);
}

.detail-product {
  display: flex;
  justify-content: space-between;
}

.detail-product .left-pro-detail {
  width: 40%;
  border: 1px solid #ddd;
}

.detail-product .right-pro-detail {
  width: 57%;
}

.detail-product .right-pro-detail ul {
  list-style: none;
  padding: 0px;
}

.detail-product .right-pro-detail ul li {
  margin-bottom: 20px;
}

.detail-product .right-pro-detail ul li .title-pro-detail {
  font-size: 18px;
}

.detail-product .right-pro-detail ul li .attr-content-pro-detail {
  display: inline-block;
  margin-bottom: 0px;
}

.detail-product .price-new-pro-detail {
  font-weight: 700;
  font-size: 20px;
  color: #f00;
}

.attr-content-pro-detail {
  margin-left: 10px;
}

.attr-label-pro-detail {
}

.left-pro-detail > div {
  text-align: center;
}

.tabs-pro-detail {
  margin-top: 2rem;
}

.tabs-pro-detail .nav-tabs .nav-link {
  font-size: 13px;
  color: #333;
  text-transform: uppercase;
  border: 0;
  border-radius: 0;
  background: #eee;
  margin: 0 5px 5px 0;
}

.tabs-pro-detail .nav-tabs .nav-link.active,
.tabs-pro-detail .nav-tabs .nav-item.show .nav-link {
  background: var(--color-main);
  color: #fff;
}

.attr-pro-detail li {
  display: flex;
  align-items: center;
  margin: 10px 0;
}

.tabs-pro-detail .nav-tabs {
  border-color: #cdd9b3;
}

/* modal-detail */
.modal-detail::-webkit-scrollbar {
  width: 10px;
}

.modal-detail::-webkit-scrollbar-thumb {
  width: 10px;
  background: #4d90e0;
  border-radius: 10px;
  height: 50px;
}

.modal-detail {
  position: fixed;
  z-index: 999;
  background: #000000c4;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
}

.content-modal-detail {
  background: #fff;
  max-width: 1200px;
  margin: 0px auto;
  min-height: 100vh;
}

.content-modal-detail .tabs {
  display: flex;
  cursor: pointer;
  padding: 0;
  list-style: none;
  justify-content: center;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0px;
  background: #fff;
  z-index: 99;
}

.content-modal-detail .tabs li {
  padding: 20px 20px;
  margin-right: 5px;
  font-weight: bold;
  position: relative;
  border-bottom: 4px solid #fff;
}

.content-modal-detail .tabs li.active {
  color: #2d9cdb;
  border-bottom: 4px solid #2d9cdb;
}

.content-modal-detail .tab-content {
  padding: 20px;
  max-width: 900px;
  margin: 0px auto;
}

.content-modal-detail .tab-content.active {
  display: block;
}

.close-tab {
  position: fixed;
  top: 15px;
  right: 20px;
  z-index: 10;
}

.btn-closemenu {
  position: fixed;
  top: 10px;
  right: 20px;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  color: #333;
  cursor: pointer;
  line-height: 21px;
  padding: 7px;
  text-align: right;
  width: 72px;
}

.btn-closemenu::before {
  transform: rotate(45deg);
}

.btn-closemenu::after {
  transform: rotate(-45deg);
}

.btn-closemenu::before,
.btn-closemenu::after {
  background-color: #333;
  content: "";
  left: 13px;
  height: 14px;
  position: absolute;
  top: 10px;
  width: 1px;
}

.cursor-pointer {
  cursor: pointer;
}

/* Contact */
.contact-map {
  position: relative;
  height: 500px;
  margin-top: 30px;
}

.contact-map iframe {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
}

/*  breadCrumbs */
.breadCrumbs {
  padding: 10px 0px;
  background: #eee;
}

.breadCrumbs ol {
  margin: 0px;
}

.breadCrumbs ol li a {
  color: #333;
  transition: 0.4s;
}

.breadCrumbs ol li a:hover {
  color: var(--color-main);
}

.breadCrumbs ol .breadcrumb-item.active {
  transition: 0.4s;
}

/* hotline */
.hotline {
  left: var(--left, inherit);
  right: var(--right, inherit);
  bottom: var(--bottom, inherit);
  display: none;
}
.hotline.btn-frame i {
  background: var(--background);
}
.hotline.btn-frame .kenit-alo-circle {
  border: 2px solid var(--background);
  border-color: var(--background);
}
.hotline.btn-frame .kenit-alo-circle-fill {
  background-color: var(--background);
}

.hotline.btn-phone span {
  position: absolute;
  --location: 30px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--backgroundText);
  padding: 5px 40px 5px 25px;
  z-index: -1;
  border: 1px solid var(--backgroundText);
  border-radius: 30px;
  color: var(--color);
  font-weight: 700;
  font-size: 17px;
}

/* paging */
.pagination {
  margin: 20px 0px;
}

.pagination li a {
  cursor: pointer;
}

.page-link {
  border-color: var(--color-main) !important;
  color: #6c757d !important;
}

.page-item.active .page-link,
.page-item:hover .page-link {
  background: var(--color-main);
  color: #fff !important;
}

.btn-frame {
  display: block;
  width: 50px;
  height: 50px;
  position: fixed;
  right: 20px;
  z-index: 10;
  cursor: pointer;
}

.btn-frame i {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #1182fc;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-frame i img {
  vertical-align: middle;
  width: 70%;
}

.btn-frame .animated.infinite {
  animation-iteration-count: infinite;
}

.btn-frame .kenit-alo-circle {
  width: 60px;
  height: 60px;
  top: -5px;
  right: -5px;
  position: absolute;
  background-color: transparent;
  border-radius: 100%;
  border: 2px solid rgba(7, 41, 103, 0.8);
  opacity: 0.1;
  border-color: #1182fc;
  opacity: 0.5;
}

.btn-frame .zoomIn {
  animation-name: zoomIn;
}

.btn-frame .animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.btn-frame .kenit-alo-circle-fill {
  width: 70px;
  height: 70px;
  top: -10px;
  right: -10px;
  position: absolute;
  border-radius: 100%;
  border: 2px solid transparent;
  background-color: rgba(7, 41, 103, 0.35);
  opacity: 0.4;
}

.btn-frame .pulse {
  animation-name: pulse;
}

.grid-properties {
  display: flex;
  gap: 10px;
}

.grid-properties span {
  position: relative;
  border: 1px solid #ddd;
  padding: 5px 15px;
  cursor: pointer;
}

.grid-properties span:hover,
.grid-properties span.active {
  border: 1px solid #f00;
  color: #f00;
}

.grid-properties span:hover:after,
.grid-properties span.active:after {
  content: "";
  border: 0.9375rem solid transparent;
  border-bottom: 0.9375rem solid var(#d0011b, #ee4d2d);
  bottom: 0;
  position: absolute;
  right: -0.9375rem;
}

.grid-properties span.outstock {
  pointer-events: none;
  background-color: #fafafa;
  color: rgba(0, 0, 0, 0.26);
  cursor: not-allowed;
}

/* scrollToTop */
.scrollToTop {
  width: 41px;
  height: 41px;
  text-align: center;
  font-weight: bold;
  color: #444;
  text-decoration: none;
  position: fixed;
  bottom: 65px;
  right: 25px;
  display: none;
  z-index: 10;
  cursor: pointer;
}

/* Hidden Google Captcha */
.grecaptcha-badge {
  display: none !important;
  width: 0px !important;
  height: 0px !important;
  visibility: hidden !important;
  overflow: hidden;
}

[x-cloak] {
  display: none !important;
}

/* css  HuynhPhuc*/

.w-menu {
  position: relative;
  z-index: 12;
  background: #fff;
  padding-bottom: 10px;
}

li.menu-line {
  height: 24px;
  width: 1px;
  background: #959595;
}

.w-menu.fix_head {
  position: fixed !important;
  width: 100%;
  background: #fff;
  top: 0;
  padding-top: 10px;
}

/* product */
.grid-product {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
/* product */
.product {
  padding: 5px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #dddddd;
}
.product figure {
}
.product figure a {
  border-radius: 10px;
}
.product-info h3 {
  font-size: 15px;
  font-family: var(--font-SemiBold);
  line-height: 24px;
  height: 48px;
}
.product-info {
  padding: 20px 0 10px;
}
.product-info h3 a {
  color: var(--color-title);
  -webkit-line-clamp: 2;
}
.product-info h3 a:hover {
  color: var(--color-main);
}
.product-info span {
}
.product-info p {
  margin-bottom: 0;
  font-size: 15px;
  font-family: "SVNPoppinsSemiBold";
  color: var(--color-xanh);
}

.product-info p span {
  font-size: 14px;
  font-family: "SVNPoppinsRegular";
  color: #4d4d4d;
}

.product-info--bottom {
  margin-top: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.combo-contact {
  width: 100%;
  max-width: 100px;
  justify-content: space-between;
}

.product-info--bottom a {
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
  background: #ebffeb;
  border-radius: 50%;
}
.product .price-new {
}
.product .price-old {
}
.product .price-per {
}

/* news */
.grid-news {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
/* news */
.news {
}
.news figure {
}
.news figure a {
  border-radius: 10px;
}

.news figure img {
    aspect-ratio: 277/221;
}
.news-info {
  text-align: center;
  padding: 15px 5px 0;
}
.news-info h3 {
  font-size: 14px;
  font-family: var(--font-Bold);
  text-transform: uppercase;
  margin-bottom: 5px;
  line-height: 20px;
  height: 60px;
}
.news-info h3 a {
  color: var(--color-title);
  -webkit-line-clamp: 3;
}
.news-info h3 a:hover {
  color: var(--color-main);
}
.news-info span {
  color: #4d4d4d;
  line-height: 23px;
  height: 46px;
}

.news-info > a {
  display: block;
  width: 140px;
  height: 40px;
  border-radius: 5px;
  background: var(--color-xanh);
  color: #fff;
  line-height: 40px;
  margin-top: 15px;
  font-size: 16px;
  font-family: var(--font-SemiBold);
}
.news-info > a.btn-hover-two::before {
  background: var(--color-main);
}
.news-info > a i {
  margin-left: 5px;
}

/* form */
.newsletter-index {
  margin-bottom: 5px;
}

.newsletter-index input {
  border: 0;
}

.newsletter-index input::placeholder {
  color: #000;
}

.newsletter-index input:focus {
  box-shadow: none;
}

.newsletter-button {
  max-width: 160px;
  margin: 0 auto;
  background: var(--color-main);
  border-radius: 5px;
}

.newsletter-button input {
  height: 40px;
  line-height: 40px;
  font-size: 16px;
}

/* video */
.video {
  cursor: pointer;
}

.video img {
  max-height: 250px;
  object-fit: cover;
}

/* slogan */
.slogan {
  background: var(--color-main);
}
.slogan-head p {
  line-height: 45px;
  height: 45px;
  color: #fff;
  font-size: 16px;
  font-family: var(--font-regular);
  text-transform: uppercase;
}

.slogan-head p span {
  font-family: SVNPoppinsBold;
}

/* header */
.header-bottom {
  max-width: 1000px;
  margin: 0 0 0 auto;
  padding: 22px 0;
}

/* hotline */
.hotline-header {
  padding-left: 65px;
  position: relative;
}
.hotline-header span {
  color: #282828;
  line-height: 23px;
}
.hotline-header p {
  font-size: 16px;
  font-family: var(--font-Bold);
  color: var(--color-xanh);
}

.hotline-header img {
  position: absolute;
  top: calc((100% - 54px) / 2);
  left: 0;
}

/* logo */
.logo-header {
  position: absolute;
  left: calc((100% - 1200px) / 2);
  top: 10px;
  /* box-shadow: 0 0 10px 0 rgb(0 0 0 / 25%); */
  /* border-radius: 50%; */
}

li a.hvr-line-run-one::before {
  background: var(--color-main);
  height: 1px;
}
/* tieuchi */
.tieuchi--index .wrap-content {
  height: 80px;
}
.tieuchi-contain {
  padding: 30px 40px;
  border-radius: 10px;
  box-shadow: 0 0 10px 0 rgb(0 0 0 / 10%);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 10;
}
.tieuchi {
  position: relative;
  display: flex;
}
.tieuchi-pic {
  position: relative;
  width: 52px;
  position: relative;
  padding-top: 8px;
}
.tieuchi-pic img {
  position: relative;
  z-index: 2;
}
.tieuchi-pic:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 44px;
  height: 44px;
  background: #ebffeb;
  border-radius: 50%;
}
.tieuchi-info {
  padding-left: 10px;
  width: calc(100% - 52px);
  padding-top: 5px;
}
.tieuchi-info h3 {
  font-size: 16px;
  font-family: var(--font-SemiBold);
  color: var(--color-title);
  -webkit-line-clamp: 1;
  margin-bottom: 0;
}
.tieuchi-info span {
  color: var(--color-title);
  -webkit-line-clamp: 1;
}

/* product list hot */
/* prolist */
.prolist {
  padding: 40px 0;
  position: relative;
  text-align: center;
  margin: 10px 3px;
  box-shadow: 0 0 10px 0 rgb(0 0 0 / 10%);
}
.prolist-info {
  margin-top: 15px;
}
.prolist-info h3 {
  font-size: 18px;
  font-family: var(--font-SemiBold);
}
.prolist-info h3 a {
  color: var(--color-title);
  -webkit-line-clamp: 1;
}
.prolist-info h3 a:hover {
  color: var(--color-main);
}

.proListHot--index .title-main h2 {
  padding-bottom: 10px;
}
.proListHot--index .title-main h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 90px;
  height: 1px;
  background: #0c943f;
}

.prolist figure a:hover img {
  animation: app-logo-spin infinite 2s linear;
}

/* banner */
.banner a {
  border-radius: 10px;
}
.banner img {
  aspect-ratio: 585/264;
}

/* producy sale */
section.productList--index {
  background: var(--color-main);
}

.title-after.title-main h2 {
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.title-after.title-main h2:after {
  content: "";
  width: 90px;
  height: 1px;
  background: #ffbb00;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.list-hot {
  display: flex;
  justify-content: center;
  margin: 0 -5px 30px;
  flex-wrap: wrap;
}

.list-hot a {
  overflow: hidden;
  line-height: 40px;
  height: 40px;
  background: #fff;
  color: var(--color-title);
  font-family: var(--font-semibold);
  text-transform: capitalize;
  padding: 0 25px;
  margin: 0 5px 10px;
  border-radius: 40px;
  cursor: pointer;
}

.list-hot a.btn-hover-two:before {
  background: var(--color-xanh);
}

.proListHot-group .title-main {
  border-bottom: 1px dashed #cccccc;
}

.proListHot-group .title-main h2:after {
  height: 2px;
  bottom: -2px;
  background: var(--color-main);
}

/* gioi thieu */
.gioithieu--index {
  background: url(../images/bg_gioithieu.png) no-repeat;
  background-size: cover;
}

.gioithieu-contain > p {
  font-size: 40px;
  font-family: var(--font-svn);
  line-height: 30px;
  color: #fff;
  margin-bottom: 0;
}
.gioithieu-contain > h2 {
  font-size: 45px;
  font-family: var(--font-Bold);
  color: var(--color-main);
  margin-bottom: 20px;
}
.gioithieu-info {
  color: #fff;
}
.gioithieu-info p {
  margin-bottom: 0;
}
.gioithieu-contain > a {
  display: block;
  width: 140px;
  height: 40px;
  border-radius: 5px;
  background: var(--color-xanh);
  color: #fff;
  line-height: 40px;
  margin-top: 30px;
  font-size: 16px;
  font-family: var(--font-SemiBold);
}
.gioithieu-contain > a.btn-hover-two::before {
  background: var(--color-main);
}
.gioithieu-contain > a i {
  margin-left: 5px;
}

/* danh gia */
.danhgia {
  padding: 45px 20px 25px;
  border-radius: 20px;
  background: var(--color-main);
  margin-top: 30px;
  position: relative;
}

.danhgia:after {
  content: "";
  position: absolute;
  top: -30px;
  left: 23px;
  width: 60px;
  height: 60px;
  background: url(../images/des_khachhang.png) no-repeat center center;
  border-radius: 50%;
  border: 5px solid #fff;
}

.danhgia span {
  -webkit-line-clamp: 4;
  color: #fff;
}

.danhgia-bottom img {
  border-radius: 50%;
}

.danhgia-bottom {
  margin-top: 20px;
}

.danhgia-bottom h3 {
  margin-left: 15px;
  font-size: 15px;
  font-family: var(--font-Bold);
  color: #fff;
  text-transform: uppercase;
  line-height: 25px;
  height: 50px;
  -webkit-line-clamp: 2;
}

/* footer */
.footer-news--top p {
  margin-left: 15px;
  font-size: 20px;
  font-family: "SVNPoppinsBold";
  color: #fff;
  text-transform: capitalize;
}

.footer-news--top p span {
  font-size: 50px;
  color: #ffd900;
  line-height: 50px;
}

.footer-news--top {
  margin-bottom: 15px;
}

.ul-social-footer a {
  width: 100%;
  margin-bottom: 10px;
  color: #fff;
  height: 40px;
  line-height: 40px;
  border: 1px solid #fff;
  border-radius: 40px;
  text-align: center;
  padding-left: 20px;
  position: relative;
}

.ul-social-footer a:nth-child(1):after {
  background: url(../images/socialf3.png);
}

.ul-social-footer a:nth-child(2):after {
  background: url(../images/socialf2.png);
}

.ul-social-footer a:nth-child(3):after {
  background: url(../images/socialf1.png);
}

.ul-social-footer a:after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  top: 4px;
  left: 5px;
}

.footer-map {
    padding-top: 85px;
}

.footer-map .d-map {
    border: 1px solid #fff;
    padding: 10px;
    border-radius: 205px;
}

.d-map h3 {
    font-size: 50px;
    font-family: SVNPoppinsBold;
    color: #fff;
    text-shadow: 1px 0 0 var(--color-xanh), 1px 0 0 var(--color-xanh), 0 -1px 0 var(--color-xanh), 0 1px 0 var(--color-xanh), -1px 1px 0px var(--color-xanh), -1px 0px 0px var(--color-xanh), 0px 1px 0px var(--color-xanh), 1px 1px 0px var(--color-xanh), -1px -1px 0px var(--color-xanh), 1px -1px 0px var(--color-xanh);
    margin-bottom: 0;
    position: absolute;
    left: 185px;
    top: -30px;
}

.footer-map .d-map iframe {
    border-radius: 205px;
}



/* arcontactus */
.arcontactus-widget.right.arcontactus-message {
	right: 15px;
  }
  
  .arcontactus-widget .arcontactus-message-button.pulsation {
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
  }
  
  .arcontactus-widget.md .arcontactus-message-button,
  .arcontactus-widget.md.arcontactus-message {
	width: 60px;
	height: 60px;
  }
  
  .arcontactus-widget {
	opacity: 0;
	transition: 0.2s opacity;
  }
  
  .arcontactus-widget * {
	box-sizing: border-box;
  }
  
  .arcontactus-widget.left.arcontactus-message {
	left: 20px;
	right: auto;
  }
  
  .arcontactus-widget.left .arcontactus-message-button {
	right: auto;
	left: 0;
  }
  
  .arcontactus-widget.left .arcontactus-prompt {
	left: 80px;
	right: auto;
	transform-origin: 0 50%;
  }
  
  .arcontactus-widget.left .arcontactus-prompt:before {
	border-right: 8px solid #fff;
	border-top: 8px solid transparent;
	border-left: 8px solid transparent;
	border-bottom: 8px solid transparent;
	right: auto;
	left: -15px;
  }
  
  .arcontactus-widget.left .messangers-block {
	right: auto;
	left: 0;
	-webkit-transform-origin: 10% 105%;
	-ms-transform-origin: 10% 105%;
	transform-origin: 10% 105%;
  }
  
  .arcontactus-widget.left .callback-countdown-block {
	left: 0;
	right: auto;
  }
  
  .arcontactus-widget.left .callback-countdown-block::before,
  .arcontactus-widget.left .messangers-block::before {
	left: 25px;
	right: auto;
  }
  
  .arcontactus-widget.md .callback-countdown-block,
  .arcontactus-widget.md .messangers-block {
	bottom: 70px;
  }
  
  .arcontactus-widget.md .arcontactus-prompt {
	bottom: 5px;
  }
  
  .arcontactus-widget.md.left .callback-countdown-block:before,
  .arcontactus-widget.md.left .messangers-block:before {
	left: 21px;
  }
  
  .arcontactus-widget.md.left .arcontactus-prompt {
	left: 70px;
  }
  
  .arcontactus-widget.md.right .callback-countdown-block:before,
  .arcontactus-widget.md.right .messangers-block:before {
	right: 21px;
  }
  
  .arcontactus-widget.md.right .arcontactus-prompt {
	right: 70px;
  }
  
  .arcontactus-widget.md .arcontactus-message-button .pulsation {
	width: 74px;
	height: 74px;
  }
  
  .arcontactus-widget.md .arcontactus-message-button .callback-state,
  .arcontactus-widget.md .arcontactus-message-button .icons {
	width: 40px;
	height: 40px;
	margin-top: -20px;
	margin-left: -20px;
  }
  
  .arcontactus-widget.sm .arcontactus-message-button,
  .arcontactus-widget.sm.arcontactus-message {
	width: 50px;
	height: 50px;
  }
  
  .arcontactus-widget.sm .callback-countdown-block,
  .arcontactus-widget.sm .messangers-block {
	bottom: 60px;
  }
  
  .arcontactus-widget.sm .arcontactus-prompt {
	bottom: 0;
  }
  
  .arcontactus-widget.sm.left .callback-countdown-block:before,
  .arcontactus-widget.sm.left .messangers-block:before {
	left: 16px;
  }
  
  .arcontactus-widget.sm.left .arcontactus-prompt {
	left: 60px;
  }
  
  .arcontactus-widget.sm.right .callback-countdown-block:before,
  .arcontactus-widget.sm.right .messangers-block:before {
	right: 16px;
  }
  
  .arcontactus-widget.sm.right .arcontactus-prompt {
	right: 60px;
  }
  
  .arcontactus-widget.sm .arcontactus-message-button .pulsation {
	width: 64px;
	height: 64px;
  }
  
  .arcontactus-widget.sm .arcontactus-message-button .icons {
	width: 40px;
	height: 40px;
	margin-top: -20px;
	margin-left: -20px;
  }
  
  .arcontactus-widget.sm .arcontactus-message-button .static {
	margin-top: -16px;
  }
  
  .arcontactus-widget.sm .arcontactus-message-button .callback-state {
	width: 40px;
	height: 40px;
	margin-top: -20px;
	margin-left: -20px;
  }
  
  .arcontactus-widget.active {
	opacity: 1;
  }
  
  .arcontactus-widget .icons.hide,
  .arcontactus-widget .static.hide {
	opacity: 0;
	transform: scale(0);
  }
  
  .arcontactus-widget.arcontactus-message {
	z-index: 10000;
	right: 20px;
	bottom: 120px;
	position: fixed !important;
	height: 70px;
	width: 70px;
  }
  .arcontactus-widget .arcontactus-message-button {
	width: 60px;
	position: absolute;
	height: 60px;
	right: 0;
	background-color: red;
	border-radius: 50px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	text-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	cursor: pointer;
  }
  
  .arcontactus-widget .arcontactus-message-button p {
	font-family: Ubuntu, Arial, sans-serif;
	color: #fff;
	font-weight: 700;
	font-size: 10px;
	line-height: 11px;
	margin: 0;
  }
  
  .arcontactus-widget .arcontactus-message-button .pulsation {
	width: 74px;
	height: 74px;
	background-color: red;
	border-radius: 50px;
	position: absolute;
	left: -7px;
	top: -7px;
	z-index: -1;
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	-webkit-animation: arcontactus-pulse 2s infinite;
	animation: arcontactus-pulse 2s infinite;
  }
  
  .arcontactus-widget .arcontactus-message-button .icons {
	background-color: #fff;
	width: 44px;
	height: 44px;
	border-radius: 50px;
	position: absolute;
	overflow: hidden;
	top: 50%;
	left: 50%;
	margin-top: -22px;
	margin-left: -22px;
  }
  
  .arcontactus-widget .arcontactus-message-button .static {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -19px;
	margin-left: -26px;
	width: 52px;
	height: 52px;
	text-align: center;
  }
  
  .arcontactus-widget .arcontactus-message-button .static img {
	display: inline;
  }
  
  .arcontactus-widget .arcontactus-message-button .static svg {
	width: 24px;
	height: 24px;
	color: #fff;
  }
  
  .arcontactus-widget .arcontactus-message-button.no-text .static {
	margin-top: -12px;
  }
  
  .arcontactus-widget .pulsation:nth-of-type(2n) {
	-webkit-animation-delay: 0.5s;
	animation-delay: 0.5s;
  }
  
  .arcontactus-widget .pulsation.stop {
	-webkit-animation: none;
	animation: none;
  }
  
  .arcontactus-widget .icons-line {
	top: 10px;
	left: 12px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: absolute;
	-webkit-transition: cubic-bezier(0.13, 1.49, 0.14, -0.4);
	-o-transition: cubic-bezier(0.13, 1.49, 0.14, -0.4);
	-webkit-animation-delay: 0s;
	animation-delay: 0s;
	-webkit-transform: translateX(30px);
	-ms-transform: translateX(30px);
	transform: translateX(30px);
	height: 24px;
	transition: 0.2s all;
  }
  
  .arcontactus-widget .icons,
  .arcontactus-widget .static {
	transition: 0.2s all;
  }
  
  .arcontactus-widget .icons-line.stop {
	-webkit-animation-play-state: paused;
	animation-play-state: paused;
  }
  
  .arcontactus-widget .icons-line span {
	display: inline-block;
	width: 24px;
	height: 24px;
	color: red;
  }
  
  .arcontactus-widget .icons-line span i,
  .arcontactus-widget .icons-line span svg {
	width: 24px;
	height: 24px;
  }
  
  .arcontactus-widget .icons-line span i {
	display: block;
	font-size: 24px;
	line-height: 24px;
  }
  
  .arcontactus-widget .icons-line img,
  .arcontactus-widget .icons-line span {
	margin-right: 40px;
  }
  
  .arcontactus-widget .icons.hide .icons-line {
	transform: scale(0);
  }
  
  .arcontactus-widget .icons .icon:first-of-type {
	margin-left: 0;
  }
  
  .arcontactus-widget .arcontactus-close {
	color: #fff;
  }
  
  .arcontactus-widget .arcontactus-close svg {
	-webkit-transform: rotate(180deg) scale(0);
	-ms-transform: rotate(180deg) scale(0);
	transform: rotate(180deg) scale(0);
	-webkit-transition: ease-in 0.12s all;
	-o-transition: ease-in 0.12s all;
	transition: ease-in 0.12s all;
	display: block;
  }
  
  .arcontactus-widget .arcontactus-close.show-messageners-block svg {
	-webkit-transform: rotate(0) scale(1);
	-ms-transform: rotate(0) scale(1);
	transform: rotate(0) scale(1);
  }
  
  .arcontactus-widget .arcontactus-prompt,
  .arcontactus-widget .messangers-block {
	background: center no-repeat #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
	width: 235px;
	position: absolute;
	bottom: 80px;
	right: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	padding: 14px 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 7px;
	-webkit-transform-origin: 80% 105%;
	-ms-transform-origin: 80% 105%;
	transform-origin: 80% 105%;
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	-webkit-transition: ease-out 0.12s all;
	-o-transition: ease-out 0.12s all;
	transition: ease-out 0.12s all;
	z-index: 10000;
  }
  
  .arcontactus-widget .arcontactus-prompt:before,
  .arcontactus-widget .messangers-block:before {
	position: absolute;
	bottom: -7px;
	right: 25px;
	left: auto;
	display: inline-block !important;
	border-right: 8px solid transparent;
	border-top: 8px solid #fff;
	border-left: 8px solid transparent;
	content: "";
  }
  
  .arcontactus-widget .arcontactus-prompt.show-messageners-block,
  .arcontactus-widget .messangers-block.show-messageners-block {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
  }
  
  .arcontactus-widget .arcontactus-prompt {
	color: #787878;
	font-family: Arial, sans-serif;
	font-size: 16px;
	line-height: 18px;
	width: auto;
	bottom: 10px;
	right: 80px;
	white-space: nowrap;
	padding: 18px 20px 14px;
  }
  
  .arcontactus-widget .arcontactus-prompt:before {
	border-right: 8px solid transparent;
	border-top: 8px solid transparent;
	border-left: 8px solid #fff;
	border-bottom: 8px solid transparent;
	bottom: 16px;
	right: -15px;
  }
  
  .arcontactus-widget .arcontactus-prompt.active {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
  }
  
  .arcontactus-widget .arcontactus-prompt .arcontactus-prompt-close {
	position: absolute;
	right: 6px;
	top: 6px;
	cursor: pointer;
	z-index: 100;
	height: 14px;
	width: 14px;
	padding: 2px;
  }
  
  .arcontactus-widget .arcontactus-prompt .arcontactus-prompt-close svg {
	height: 10px;
	width: 10px;
	display: block;
  }
  
  .arcontactus-widget .arcontactus-prompt .arcontactus-prompt-typing {
	border-radius: 10px;
	display: inline-block;
	left: 3px;
	padding: 0;
	position: relative;
	top: 4px;
	width: 50px;
  }
  
  .arcontactus-widget .arcontactus-prompt .arcontactus-prompt-typing > div {
	position: relative;
	float: left;
	border-radius: 50%;
	width: 10px;
	height: 10px;
	background: #ccc;
	margin: 0 2px;
	-webkit-animation: arcontactus-updown 2s infinite;
	animation: arcontactus-updown 2s infinite;
  }
  
  .arcontactus-widget
	.arcontactus-prompt
	.arcontactus-prompt-typing
	> div:nth-child(2) {
	animation-delay: 0.1s;
  }
  
  .arcontactus-widget
	.arcontactus-prompt
	.arcontactus-prompt-typing
	> div:nth-child(3) {
	animation-delay: 0.2s;
  }
  
  .arcontactus-widget .messangers-block.sm .messanger {
	padding-left: 50px;
	min-height: 44px;
  }
  
  .arcontactus-widget .messangers-block.sm .messanger span {
	height: 32px;
	width: 32px;
	margin-top: -16px;
  }
  
  .arcontactus-widget .messangers-block.sm .messanger span svg {
	height: 20px;
	width: 20px;
	margin-top: -10px;
	margin-left: -10px;
  }
  
  .arcontactus-widget .messanger {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 0;
	cursor: pointer;
	width: 100%;
	padding: 8px 20px 8px 60px;
	position: relative;
	min-height: 54px;
	text-decoration: none;
  }
  
  .arcontactus-widget .messanger:hover {
	background-color: #eee;
  }
  
  .arcontactus-widget .messanger:before {
	background-repeat: no-repeat;
	background-position: center;
  }
  
  .arcontactus-widget .messanger.facebook span {
	background: #0084ff;
  }
  
  .arcontactus-widget .messanger.viber span {
	background: #7c529d;
  }
  
  .arcontactus-widget .messanger.telegram span {
	background: #2ca5e0;
  }
  
  .arcontactus-widget .messanger.skype span {
	background: #31c4ed;
  }
  
  .arcontactus-widget .messanger.email span {
	background: #ff8400;
  }
  
  .arcontactus-widget .messanger.contact span {
	background: #7eb105;
  }
  
  .arcontactus-widget .messanger.call-back span {
	background: #54cd81;
  }
  
  .arcontactus-widget .messanger span {
	position: absolute;
	left: 10px;
	top: 50%;
	margin-top: -20px;
	display: block;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: #0084ff;
	margin-right: 10px;
	color: #fff;
	text-align: center;
	vertical-align: middle;
  }
  
  .arcontactus-widget .messanger span i,
  .arcontactus-widget .messanger span svg {
	width: 24px;
	height: 24px;
	vertical-align: middle;
	text-align: center;
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -12px;
	margin-left: -12px;
  }
  
  .arcontactus-widget .messanger span i {
	font-size: 24px;
	line-height: 24px;
  }
  
  .arcontactus-widget .messanger p {
	margin: 0;
	font-size: 14px;
	color: rgba(0, 0, 0, 0.87);
  }
  
  @-webkit-keyframes arcontactus-pulse {
	0% {
	  -webkit-transform: scale(0);
	  transform: scale(0);
	  opacity: 1;
	}
  
	50% {
	  opacity: 0.5;
	}
  
	100% {
	  -webkit-transform: scale(1);
	  transform: scale(1);
	  opacity: 0;
	}
  }

  /* Cart Fix */
.cart-fixed {
  position: fixed;
  right: 20px;
  bottom: 390px;
  z-index: 10;
  background: #4b4f56;
  width: 50px;
  height: 50px;
  text-align: center;
  color: #fff !important;
  border-radius: 100%;
  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;
}

.cart-fixed i {
  font-size: 20px;
}

.cart-fixed span {
  position: absolute;
  top: 0px;
  right: -5px;
  color: #ffffff;
  width: 25px;
  height: 25px;
  background: #ec2d3f;
  text-align: center;
  font-size: 11px;
  border-radius: 100%;
}

.box_cart{
	position: relative;
    top: 18px;
    left: 5px;
}

.product__buttons {
    display: flex;
    align-content: center;
    justify-content:space-between;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.product__buttons a,
.product__buttons button {
    display: inline-block;
    padding: 8px 10px;
    border-radius: 30px;
    border: 1px solid #E91916;
    font-size: 13px;
	cursor: pointer;
}
.addcart{
  color: #c26202;
  cursor: pointer;
}
.addcart:hover{
  color: red;
}