/* Main */
:root {
  --color-red: #ed1c24;
  --color-medium-red: #cc2c32;
  --color-dark-red: #c31829;
  --color-green: #28a745;
  --color-dark-green: #207d36;
  --color-black: #1d1d1b;
  --color-gray: #787878;
  --color-blue: #0096cc;
  --background-static: #3fa07e;
  --background-hover: #eceb1b;
  --color-static: #000;
  --color-hover: #ec2d3f;
}

/* @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); */

/* @font-face {
   font-family: "UTM-AvoBold";
   src: url("../fonts/UTM-AvoBold.woff");
   font-display: block;
} */

@font-face {
  font-family: 'UTM Beautiful Caps';
  src: url('../fonts/UTMBeautifulCaps.eot');
  src: url('../fonts/UTMBeautifulCaps.eot?#iefix') format('embedded-opentype'),
    url('../fonts/UTMBeautifulCaps.woff2') format('woff2'),
    url('../fonts/UTMBeautifulCaps.woff') format('woff'),
    url('../fonts/UTMBeautifulCaps.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SVN-Century Gothic';
  src: url('../fonts/SVN-CenturyGothic/SVN-CenturyGothic-BoldItalic.woff2')
      format('woff2'),
    url('../fonts/SVN-CenturyGothic/SVN-CenturyGothic-BoldItalic.woff')
      format('woff');
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'SVN-Century Gothic';
  src: url('../fonts/SVN-CenturyGothic/SVN-CenturyGothic-Bold.woff2')
      format('woff2'),
    url('../fonts/SVN-CenturyGothic/SVN-CenturyGothic-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SVN-Century Gothic';
  src: url('../fonts/SVN-CenturyGothic/SVN-CenturyGothic-Black.woff2')
      format('woff2'),
    url('../fonts/SVN-CenturyGothic/SVN-CenturyGothic-Black.woff')
      format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SVN-Century Gothic';
  src: url('../fonts/SVN-CenturyGothic/SVN-CenturyGothic-SemBdIta.woff2')
      format('woff2'),
    url('../fonts/SVN-CenturyGothic/SVN-CenturyGothic-SemBdIta.woff')
      format('woff');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'SVN-Century Gothic';
  src: url('../fonts/SVN-CenturyGothic/SVN-CenturyGothic-Light.woff2')
      format('woff2'),
    url('../fonts/SVN-CenturyGothic/SVN-CenturyGothic-Light.woff')
      format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SVN-Century Gothic';
  src: url('../fonts/SVN-CenturyGothic/SVN-CenturyGothic-ExtraBd.woff2')
      format('woff2'),
    url('../fonts/SVN-CenturyGothic/SVN-CenturyGothic-ExtraBd.woff')
      format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SVN-Century Gothic';
  src: url('../fonts/SVN-CenturyGothic/SVN-CenturyGothic-Regular.woff2')
      format('woff2'),
    url('../fonts/SVN-CenturyGothic/SVN-CenturyGothic-Regular.woff')
      format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SVN-Century Gothic';
  src: url('../fonts/SVN-CenturyGothic/SVN-CenturyGothic-Italic.woff2')
      format('woff2'),
    url('../fonts/SVN-CenturyGothic/SVN-CenturyGothic-Italic.woff')
      format('woff');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'SVN-Century Gothic';
  src: url('../fonts/SVN-CenturyGothic/SVN-CenturyGothic-SemiBd.woff2')
      format('woff2'),
    url('../fonts/SVN-CenturyGothic/SVN-CenturyGothic-SemiBd.woff')
      format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SVN-Century Gothic';
  src: url('../fonts/SVN-CenturyGothic/SVN-CenturyGothic-Thin.woff2')
      format('woff2'),
    url('../fonts/SVN-CenturyGothic/SVN-CenturyGothic-Thin.woff') format('woff');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes blink {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes shake-anim {
  0% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
    transform: rotate(0) scale(1) skew(1deg);
  }

  10%,
  30% {
    -moz-transform: rotate(-25deg) scale(1) skew(1deg);
  }

  20%,
  40% {
    -moz-transform: rotate(25deg) scale(1) skew(1deg);
  }

  100%,
  50% {
    -moz-transform: rotate(0) scale(1) skew(1deg);
  }
}

@-webkit-keyframes shake-anim {
  0%,
  100%,
  50% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
  }

  10%,
  30% {
    -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
  }

  20%,
  40% {
    -webkit-transform: rotate(25deg) scale(1) skew(1deg);
  }
}

.popup-custom .modal-content {
  border-radius: 0px;
  border: 0px;
}

.popup-custom .modal-content .modal-body {
  padding: 10px;
}

.popup-custom .close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  z-index: 2;
  color: #888888;
  cursor: pointer;
  border: 1px solid #eeeeee;
  background-color: #ffffff;
  opacity: 1 !important;
}

#popup-quickview .modal-dialog {
  max-width: 1140px;
}

.opacity-0 {
  opacity: 0;
}

.scrollbar-style::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #ccc;
  display: none;
}

.scrollbar-style::-webkit-scrollbar {
  width: 2px;
  background-color: #ccc;
}

.scrollbar-style::-webkit-scrollbar-thumb {
  background-color: #ffc600;
  border: 2px solid #ffc600;
  display: block !important;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 100px, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100px, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes scaleLarge {
  0% {
    opacity: 0;
    transform: scale(2);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/*Slick Setting*/
.slick.in-page:not(.slick-initialized) {
  visibility: hidden;
}

.slick-arrow-styled .slick-prev,
.slick-arrow-styled .slick-next {
  position: static;
  width: 48px;
  height: 48px;
  border: 1px solid var(--color-gray);
  border-radius: 50%;
  background: #ffffff;
  transform: none;
  margin: 0 5px;
  transition: all 0.5s;
}

.slick-arrow-styled .slick-prev:before {
  content: '\f060';
  color: var(--color-black);
  font-family: 'Font Awesome 6 Pro';
}

.slick-arrow-styled .slick-next:before {
  content: '\f061';
  color: var(--color-black);
  font-family: 'Font Awesome 6 Pro';
}

.slick-arrow-styled .slick-prev:hover,
.slick-arrow-styled .slick-next:hover {
  background: var(--color-black);
}

.slick-arrow-styled .slick-prev:hover:before,
.slick-arrow-styled .slick-next:hover:before {
  color: #ffffff;
}
/* Toc */

a.mucluc-dropdown-list_button {
  cursor: pointer;
}

a.mucluc-dropdown-list_button:before {
  content: '\f0ca';
  font-family: 'FontAwesome';
  font-style: normal;
  font-weight: 400;
  background: rgba(243, 243, 243, 0.95);
  color: rgba(51, 51, 51, 1) !important;
  font-size: 24px;
  width: 40px;
  height: 40px;
  display: inline-block;
  line-height: 40px;
  text-align: center;
  border: 1px solid rgba(51, 51, 51, 0.95);
  border-radius: 5px;
}

.meta-toc.fixed {
  position: fixed;
  left: 15px;
  top: 200px;
  z-index: 1002;
}

.meta-toc .mucluc-dropdown-list_button {
  display: none;
}

.meta-toc.fixed .mucluc-dropdown-list_button {
  display: block;
}

a.mucluc-dropdown-list_button:hover:before {
  color: red !important;
}

.meta-toc:not(.fixed) .box-readmore {
  display: block !important;
}

.box-readmore {
  padding: 25px 10px 15px 10px;
  background-color: #f5f5f5;
  width: 100%;
  margin-top: 2px;
  border: 1px solid #dddddd;
  font-size: 13px;
  margin-bottom: 20px;
  position: relative;
}

.box-readmore-show-hide {
  position: absolute;
  top: 15px;
  right: 10px;
  background: #e3e3e3;
  padding: 7px 20px;
  border-radius: 20px;
  color: #000000;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.5s;
  font-weight: 600;
}

.box-readmore-show-hide i {
  margin-left: 5px;
  transition: all 0.5s;
}

.box-readmore-show-hide:hover {
  background: #ffffff;
  color: black;
}

.box-readmore-show-hide.active i {
  transform: rotate(180deg);
}

.meta-toc.fixed .box-readmore {
  width: 230px;
  display: none;
  position: fixed;
  top: 0;
  z-index: 99999;
  left: 0;
  height: 100vh;
  overflow-y: scroll;
  margin-top: 0px;
  border-top: 0;
}

.meta-toc.fixed .box-readmore::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #ccc;
  display: none;
}

.meta-toc.fixed .box-readmore::-webkit-scrollbar {
  width: 2px;
  background-color: #ccc;
}

.meta-toc.fixed .box-readmore::-webkit-scrollbar-thumb {
  background-color: #1082fc;
  border: 2px solid #1082fc;
  display: block !important;
}

.box-readmore-header {
  margin-bottom: 0;
  margin-top: -10px;
  letter-spacing: -1px;
  color: #1082fc;
}

.box-readmore-header .box-readmore-close {
  display: none;
}

.meta-toc.fixed .box-readmore-header .box-readmore-close {
  display: block;
}

.meta-toc.fixed .box-readmore-header {
  display: flex;
  width: 100%;
  margin-bottom: 20px;
  margin-top: 0;
}

.box-readmore-header h3 {
  margin-bottom: 0;
  font-weight: 600;
}

.box-readmore-header i {
  font-size: 20px;
}

.box-readmore-close:hover {
  cursor: pointer;
  color: red;
}

.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: 0 0 5px 0;
}

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

.box-readmore ul li a {
  color: #000 !important;
  cursor: pointer;
  font-weight: 500;
  font-size: 14px;
}

.box-readmore ul li li a {
  font-weight: 400;
}

.box-readmore ul li a:hover {
  color: #767676;
}
.meta-toc.fixed .toc-list {
  display: block !important;
}
.meta-toc.fixed .box-readmore-show-hide {
  display: none;
}

/* loadpage website */
/* #loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    pointer-events: none;
}

#loader-wrapper #wrap {
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    display: block;
    text-align: center;
    width: 100%;
    height: 100%;
    z-index: 999999;
}

#loader-wrapper.show1 #wrap {
    background: transparent
}

#loader-wrapper:after {
    -webkit-mask: url(../images/mask-01.png);
    mask: url(../images/mask-01.png);
    -webkit-mask-size: 2300% 100%;
    mask-size: 2300% 100%;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 1);
    z-index: 99999;
}

#loader-wrapper.show1::after {
    -webkit-animation: MaskPlay 1s steps(22) forwards;
    animation: MaskPlay 1s steps(22) forwards;
}

#loader-wrapper.show1 #wrap {
    opacity: 0;
}
.loading-text ul {
   margin-top: 1.875rem
}

.loading-text ul li {
   -webkit-animation: anime 1.5s infinite linear;
   animation: anime 1.5s infinite linear;
   display: inline-block;
   font-family: var(--bs-font-monospace);
   font-size: 1.875rem;
   letter-spacing: 1px
}

.loading-text ul li:nth-child(1) {
   -webkit-animation-delay: 0s;
   animation-delay: 0s
}

.loading-text ul li:nth-child(2) {
   -webkit-animation-delay: .1s;
   animation-delay: .1s
}

.loading-text ul li:nth-child(3) {
   -webkit-animation-delay: .2s;
   animation-delay: .2s
}

.loading-text ul li:nth-child(4) {
   -webkit-animation-delay: .3s;
   animation-delay: .3s
}

.loading-text ul li:nth-child(5) {
   -webkit-animation-delay: .4s;
   animation-delay: .4s
}

.loading-text ul li:nth-child(6) {
   -webkit-animation-delay: .5s;
   animation-delay: .5s
}

.loading-text ul li:nth-child(7) {
   -webkit-animation-delay: .6s;
   animation-delay: .6s
}
.loader {
   align-items: center;
   display: flex;
   flex-direction: column;
   height: 100%;
   justify-content: center;
   left: 0;
   padding-bottom: 3.125rem;
   position: fixed;
   top: 0;
   width: 100%;
   z-index: 100001
} */
/* name */

/* @-webkit-keyframes anime {
   0% {
      color: grey;
      letter-spacing: 1px;
      text-shadow: 1px 1px 0 #000;
      transform: translateY(0)
   }

   50% {
      color: #ffc107;
      letter-spacing: 5px;
      text-shadow: 5px 10px 1px #000;
      transform: translateY(-10px)
   }

   100% {
      color: grey;
      letter-spacing: 1px;
      text-shadow: 1px 1px 0 #000;
      transform: translateY(0)
   }

}

@keyframes anime {
   0% {
      color: grey;
      letter-spacing: 1px;
      text-shadow: 1px 1px 0 #000;
      transform: translateY(0)
   }

   50% {
      color: #ffc107;
      letter-spacing: 5px;
      text-shadow: 5px 10px 1px #000;
      transform: translateY(-10px)
   }

   100% {
      color: grey;
      letter-spacing: 1px;
      text-shadow: 1px 1px 0 #000;
      transform: translateY(0)
   }

} */

/* end name*/
/* @-webkit-keyframes MaskPlay {
    from {
        -webkit-mask-position: 0 0;
        mask-position: 0 0
    }

    to {
        -webkit-mask-position: 100% 0;
        mask-position: 100% 0
    }
}

@keyframes MaskPlay {
    from {
        -webkit-mask-position: 0 0;
        mask-position: 0 0
    }

    to {
        -webkit-mask-position: 100% 0;
        mask-position: 100% 0
    }
} */
/*  end loadpage website */
body {
  font-size: 14px;
  line-height: 1.4;
  /* font-family: 'SVN-Century Gothic'; */
  font-family: Montserrat, sans-serif;
  font-weight: 400;
}

p {
  font-weight: 400;
}

blockquote {
  font-style: italic;
  font-family: Georgia, Times, 'Times New Roman', serif;
  padding: 2px 0;
  border-style: solid;
  border-color: #ccc;
  border-width: 0;
  padding-left: 20px;
  padding-right: 8px;
  border-left-width: 5px;
}

blockquote p {
  margin-bottom: 0;
}

.footer-copyright a {
  color: #fff;
}

.row-10 {
  margin-left: -5px;
  margin-right: -5px;
}

.row-20 {
  margin-left: -10px;
  margin-right: -10px;
}

.row-30 {
  margin-left: -15px;
  margin-right: -15px;
}

.col-30 {
  padding-left: 15px;
  padding-right: -15px;
}

.col-20 {
  padding-left: 10px;
  padding-right: 10px;
}

.mg-col-10 {
  padding-left: 5px;
  padding-right: 5px;
}

.padding-top-bottom {
  padding: 2.5rem 0;
}

.pad-top {
  padding-top: 2.5rem;
}

.pad-bottom {
  padding-bottom: 2.5rem;
}

.mg-top {
  margin-top: 2.5rem;
}

.mg-bottom {
  margin-bottom: 2.5rem;
}

.hover_xemthem {
  transition: 0.4s;
}

.hover_xemthem:hover {
  letter-spacing: 2px;
}

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

a,
input,
textarea {
  outline: none;
  padding: 0px;
}

input[type='number']::-webkit-outer-spin-button,
input[type='number']::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.w-clear:after {
  display: block;
  content: '';
  clear: both;
}

.hidden {
  display: none;
}

.clear {
  clear: both;
}

.none {
  display: none;
}

.hidden-seoh {
  visibility: hidden;
  height: 0px;
  margin: 0px;
  overflow: hidden;
}

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

.wrap-content-chinhanh-page {
  max-width: 100%;
  width: 100%;
}

.wrap-content-chinhanh-page .gm-style .place-card-large {
  opacity: 0 !important;
}

.fix_head {
  position: fixed !important;
  top: 0;
  width: 100%;
  z-index: 999 !important;
  background: #fff;
}

.pd-l-10 {
  padding-left: -10px;
}

.pd-r-10 {
  padding-right: -10px;
}

.mg-l-10 {
  margin-left: -10px;
}

.mg-r-10 {
  margin-right: -10px;
}

.mg-b-20 {
  margin-bottom: 20px;
}

.super-bg {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-attachment: fixed;
}

.title-detail-main {
  color: #252525;
  font-size: 23px;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

/* General */
.title-main {
  margin-bottom: 70px;
  text-align: center;
  position: relative;
}

.title-main:after {
  position: absolute;
  bottom: -50px;
  left: 50%;
  content: '';
  background: url(../images/title-background.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
  width: 400px;
  height: 45px;
  transform: translate(-50%, 0);
}

.title-main span {
  text-transform: uppercase;
  color: var(--color-black);
  font-weight: 600;
  font-size: 26px;
  @media (min-width: 991px) {
    font-size: 32px;
  }
}

.time-main {
  margin-bottom: 0.75rem;
  color: #999999;
}

.time-main i {
  vertical-align: top;
  margin: 3px 7px 0px 0px;
}

.time-main span {
  vertical-align: top;
  display: inline-block;
}

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

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

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

.control-owl button {
  opacity: 0.5;
  top: 0px;
  position: absolute;
  outline: none;
  border: 0px;
  padding: 0px;
  margin: 0px;
  display: block;
  cursor: pointer;
  color: #ffffff;
  width: 45px;
  height: 45px;
  text-align: center;
  font-size: 25px;
  margin: 0px;
  background-color: #000000;
  border-radius: 3px;
  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;
}

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

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

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

.control-owl button:hover polyline {
  fill: none;
  stroke: #ffffff;
  stroke-width: 1;
}

.custom-form-row {
  margin-right: -10px;
  margin-left: -10px;
}

.custom-form-row > .col,
.custom-form-row > [class*='col-'] {
  padding-right: 10px;
  padding-left: 10px;
}

.text-sm {
  font-size: 0.875rem !important;
}

/* Lazyload */
img.lazy {
  opacity: 0;
}

img:not(.initial) {
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}

img.initial,
img.loaded,
img.error {
  opacity: 1;
}

img:not([src]) {
  visibility: hidden;
}

.aspect-img {
  position: relative;
  display: block;
  transition: all 0.5s;
  aspect-ratio: 4 / 3;
}

.aspect-img:hover {
  transform: scale(1.1, 1.1);
}

.aspect-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) !important;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aspect-img-product {
  aspect-ratio: 1 / 1;
}

/* User */
.wrap-user {
  width: 100%;
  max-width: 550px;
  margin: auto;
  border: 1px solid #bce8f1;
  border-radius: 5px;
}

.title-user {
  background-color: #d9edf7;
  padding: 12px 15px;
  border-radius: 5px 5px 0px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.title-user span {
  color: #31708f;
}

.title-user a {
  color: #0056b3;
  font-size: 12px;
}

.form-user {
  padding: 20px 15px;
}

.input-user {
  margin-bottom: 0.75rem;
}

.input-user input {
  font-size: 14px;
}

.button-user {
  margin-bottom: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.button-user input {
  font-size: 14px;
}

.checkbox-user,
.radio-user {
  cursor: pointer;
}

.checkbox-user input {
  top: calc(50% - 1.25rem / 2);
  height: auto;
}

.checkbox-user label {
  font-size: 14px;
  cursor: pointer;
}

.checkbox-user label::before,
.checkbox-user label::after {
  top: calc(50% - 1rem / 2);
}

.radio-user {
  margin-right: 1rem;
}

.radio-user:last-child {
  margin-right: 0px;
}

.radio-user label::before,
.radio-user label::after {
  top: calc(50% - 1rem / 2);
}

.note-user {
  font-size: 14px;
  border-top: 1px solid #ddd;
  padding-top: 0.5rem;
}

/* Cart */
#popup-cart .modal-title {
  text-transform: uppercase;
}

#popup-cart .modal-body .wrap-cart {
  padding: 0px;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 0px;
}

#popup-cart .modal-footer {
  padding: 0.75rem 0 0 0;
  border-top: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.buymore-cart {
  color: #ec2d3f;
  cursor: pointer;
  margin: 0px;
}

.buymore-cart i {
  margin-right: 2px;
  margin-top: 5px;
  vertical-align: top;
  font-size: 12px;
}

.wrap-cart {
  padding: 20px 15px;
  background: #ffffff;
  border: 1px solid #d8d8d8;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.top-cart {
  border-right: 1px solid #eee;
}

@media only screen and (max-width: 991px) {
  .top-cart {
    margin-bottom: 2rem;
  }
}

.procart {
  padding: 20px 10px;
  border: 1px solid #eee;
  border-top: 0px;
}

.pic-procart {
  text-align: center;
}

.pic-procart img {
  max-height: 100px;
  height: inherit;
}

.pic-procart .del-procart {
  color: #999;
  font-size: 12px;
  display: block;
  margin-top: 5px;
  cursor: pointer;
}

.pic-procart .del-procart:hover {
  color: red;
}

.name-procart a {
  font-size: 14px;
  color: #000;
  display: block;
}

@media only screen and (max-width: 575px) {
  .name-procart a {
    font-size: 13px;
  }
}

.name-procart a:hover {
  color: #ec2d3f;
}

.properties-procart {
  display: block;
}

.properties-procart p {
  display: inline-block;
  margin-bottom: 0px;
}

.properties-procart p:first-child {
  margin-right: 10px;
}

.properties-procart p strong {
  font-weight: 600;
}

@media only screen and (max-width: 767px) {
  .quantity-procart {
    text-align: right;
  }
}

.quantity-procart p {
  margin-bottom: 0px;
}

.quantity-counter-procart {
  border: 1px solid #dfdfdf;
  width: 100%;
  height: 30px;
  line-height: normal;
  text-align: center;
  border-radius: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.counter-procart {
  background-color: transparent;
  border: 0px;
  width: 30%;
  color: #333;
  outline: none;
  cursor: pointer;
  font-size: 23px;
}

.counter-procart:hover,
.counter-procart:focus {
  color: #ec2d3f;
}

.counter-procart:disabled {
  color: #ccc;
  cursor: not-allowed;
}

.counter-procart:disabled:hover {
  color: #ccc;
  cursor: not-allowed;
}

.counter-procart-minus {
  line-height: 26px;
}

.counter-procart-plus {
  line-height: 24px;
}

.quantity-counter-procart .quantity-procart {
  width: 40%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 0px;
  border-right: 1px solid #dfdfdf;
  border-left: 1px solid #dfdfdf;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 0px;
  color: #333;
  text-align: center;
}

.price-procart {
  width: 20%;
  text-align: right;
}

@media only screen and (max-width: 767px) {
  .price-procart {
    display: none;
  }
}

.price-procart-rp {
  display: none;
  width: 100%;
  margin-bottom: 10px;
  font-size: 13.5px;
}

@media only screen and (max-width: 767px) {
  .price-procart-rp {
    display: block;
  }
}

.price-new-cart {
  color: #ec2d3f;
  margin-bottom: 0px;
}

.price-old-cart {
  color: #999;
  text-decoration: line-through;
}

.procart-label {
  border: 0px;
  background: #eee;
  padding: 10px;
  margin: 0px;
  text-transform: capitalize;
}

@media only screen and (max-width: 575px) {
  .procart-label {
    font-size: 13px;
  }
}

@media only screen and (min-width: 768px) {
  .procart-label .quantity-procart p:first-child {
    display: block;
  }
}

@media only screen and (max-width: 767px) {
  .procart-label .quantity-procart p:first-child {
    display: none;
  }
}

@media only screen and (min-width: 768px) {
  .procart-label .quantity-procart p:last-child {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .procart-label .quantity-procart p:last-child {
    display: block;
  }
}

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

.total-procart {
  background: #eee;
  padding: 7px 10px;
  border: 1px solid #dddfe2;
  margin-bottom: -1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.total-procart p {
  margin-bottom: 0px;
  font-size: 15px;
}

.total-procart p:last-child {
  color: #ec2d3f;
  font-weight: 600;
}

.section-cart {
  position: -webkit-sticky;
  position: sticky;
  top: 15px;
}

.title-cart {
  font-size: 15px;
  text-transform: uppercase;
  color: #000;
  border-bottom: 1px solid #eee;
  padding-bottom: 5px;
  margin-bottom: 15px;
}

.information-cart {
  margin-bottom: 1.5rem;
}

.input-cart {
  margin-bottom: 0.5rem;
  position: relative;
}

.input-cart textarea {
  resize: none;
  height: 100px;
}

.input-cart select {
  cursor: pointer;
}

.payments-cart {
  text-align: left;
  margin-bottom: 5px;
  min-height: auto;
  padding-left: 0;
  margin-left: 20px;
  position: relative;
}

.payments-cart:last-child {
  margin-bottom: 0px;
}

.payments-cart input {
  top: 10px;
  /* opacity: 0; */
  position: absolute;
}

.payments-label {
  cursor: pointer;
  background: #eee;
  display: block;
  padding: 10px 15px;
  border-radius: 3px;
  margin-bottom: 0px;
  color: #313131 !important;
}

.payments-label::before,
.payments-label::after {
  top: calc(50% - 1rem / 2);
}

.payments-label.active {
  background: var(--background-static);
  color: #ffffff !important;
}

.payments-info {
  opacity: 0;
  visibility: hidden;
  height: 0px;
  overflow: hidden;
  background: #f5efef;
  border-radius: 5px;
}

.payments-info p {
  margin-bottom: 1em;
}

.payments-info.active {
  padding: 10px 15px;
  margin-top: 5px;
  opacity: 1;
  visibility: visible;
  height: auto;
}

.btn-cart {
  text-transform: capitalize;
  background-color: #d4861d;
  border-color: #fe9c1b;
}
.btn-cart:hover {
  background-color: #fe9c1b;
  border-color: #d4861d;
}

.empty-cart {
  padding: 25px 30px;
  text-align: center;
}

.empty-cart i {
  color: red;
  font-size: 70px;
}

.empty-cart p {
  margin: 15px 0px;
  color: #333;
  font-size: 18px;
}

/* Comment */
.comment-title {
  font-size: 18px;
}

.comment-show {
  display: block !important;
}

.comment-point {
  font-size: 47px;
  color: #fe302e;
}

.comment-star {
  font-size: 0;
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin-bottom: 0.5rem;
}

.comment-star span {
  display: block;
  position: absolute;
  top: 0;
  left: 0px;
  bottom: 0;
  z-index: 1;
  overflow: hidden;
  text-align: left;
  white-space: nowrap;
}

.comment-star i {
  display: inline-block;
  margin: 0.1rem;
  color: #b8b8b8;
  text-rendering: auto;
  font-size: 20px;
}

.comment-star i:nth-child(1) {
  margin-left: 0;
}

.comment-star span i {
  color: #ffc120;
}

.comment-progress {
  width: 100%;
  margin-bottom: 0.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.comment-progress:last-child {
  margin-bottom: 0px;
}

.comment-progress .progress {
  height: 12px;
  margin-right: 10px;
  margin-left: 5px;
  width: calc(100% - 90px);
  border-radius: 10px;
}

.comment-progress .progress-bar#has-rate {
  background-color: #23b445;
}

.comment-progress .progress-num {
  font-size: 15px;
  width: 25px;
  text-align: center;
  color: #787878;
}

.comment-progress .progress-total {
  font-weight: 600;
  text-align: left;
  color: #787878;
  width: 50px;
}

.comment-write {
  display: none;
}

.review-rating-star {
  font-size: 0;
}

.review-rating-star-icon .fa {
  font-weight: 400;
  font-style: normal;
  display: inline-block;
  margin: 0.1rem;
  font-size: 21px;
  cursor: pointer;
  color: #f0c808;
}

.review-rating-star-icon .fa.star-empty {
  color: #dedddc;
}

.review-rating-star-icon .fa.star-not-empty {
  color: #f0c808;
}

.review-rating-star-icon .fa:nth-child(1) {
  margin-left: 0;
}

.review-fileuploader {
  padding: 20px 15px;
  text-align: center;
  background-color: #ffffff;
  cursor: pointer;
  border: 2px dashed #c2cdda;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.review-fileuploader .review-fileuploader-text {
  color: #90a0bc;
}

.review-file-uploader .fileuploader {
  padding: 0px;
  margin: 0px;
  background: transparent;
}

.review-file-uploader .fileuploader-items .fileuploader-items-list {
  margin: 1rem -5px 0 -5px;
}

.review-file-uploader .fileuploader-items .fileuploader-items-list:after {
  display: block;
  content: '';
  clear: both;
}

.review-file-uploader
  .fileuploader-items
  .fileuploader-items-list
  .fileuploader-item {
  padding: 0px;
  width: calc(100% / 7 - 10px);
  float: left;
  margin: 0 5px 5px 5px;
  border-bottom: 0px;
}

.review-file-uploader
  .fileuploader-items
  .fileuploader-items-list
  .fileuploader-item
  .columns {
  display: block;
}

.review-file-uploader
  .fileuploader-items
  .fileuploader-items-list
  .fileuploader-item
  .column-thumbnail {
  width: auto;
  height: auto;
}

.review-file-uploader
  .fileuploader-items
  .fileuploader-items-list
  .fileuploader-item
  .column-thumbnail
  .fileuploader-item-image {
  height: auto;
  padding: 50% 0;
}

.review-file-uploader
  .fileuploader-items
  .fileuploader-items-list
  .fileuploader-item
  .column-thumbnail
  .fileuploader-item-image
  img {
  position: absolute;
  top: 0px;
  left: 0px;
  max-width: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transform: none;
  transform: none;
}

.review-file-uploader
  .fileuploader-items
  .fileuploader-items-list
  .fileuploader-item
  .column-title {
  padding: 0px;
  margin-top: 0.5rem;
  text-align: center;
  display: none;
}

.review-file-uploader
  .fileuploader-items
  .fileuploader-items-list
  .fileuploader-item
  .column-actions {
  margin: 0px;
  position: absolute;
  top: 0px;
  right: -5px;
}

.review-file-uploader
  .fileuploader-items
  .fileuploader-items-list
  .fileuploader-item
  .column-infos
  input {
  border: 1px solid #dddddd;
  border-radius: 0.25rem;
}

.review-poster-video-avatar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.review-poster-video-avatar .avatar-detail {
  width: 95px;
  height: 95px;
  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;
}

.review-poster-video-avatar .avatar-detail img {
  max-width: 95px;
  max-height: 95px;
}

#review-content {
  height: 100px;
}

.carousel-comment-media .carousel-control a {
  opacity: 1;
  width: 45px;
  height: 45px;
  top: calc(50% - 45px / 2);
  bottom: inherit;
}

.carousel-comment-media .carousel-control a span {
  display: block;
  cursor: pointer;
  color: #222222;
  width: 45px;
  height: 45px;
  padding: 5px;
  text-align: center;
  background-color: #ffffff;
  -webkit-box-shadow: 0 1px 12px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 1px 12px 0 rgba(0, 0, 0, 0.12);
  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;
}

.carousel-comment-media .carousel-control a.carousel-control-prev {
  left: 20px;
}

.carousel-comment-media .carousel-control a.carousel-control-prev span {
  padding-right: 9px;
}

.carousel-comment-media .carousel-control a.carousel-control-next {
  right: 20px;
}

.carousel-comment-media .carousel-control a.carousel-control-next span {
  padding-left: 8px;
}

.carousel-comment-media .carousel-indicators {
  position: static;
  margin: 0 0 1rem 0;
}

.carousel-comment-media .carousel-indicators li {
  width: auto;
  max-width: 60px;
  height: auto;
  text-indent: inherit;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  margin: 0px 0px 3px 0px;
  border: 2px solid transparent;
  opacity: 1;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.carousel-comment-media .carousel-indicators li.active {
  border-color: #ffc120;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.carousel-comment-media .carousel-inner {
  max-width: 550px;
  -webkit-box-shadow: 0 1px 12px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 1px 12px 0 rgba(0, 0, 0, 0.12);
  margin: auto;
}

.carousel-comment-media
  .carousel-inner
  .carousel-lists
  .carousel-comment-media-slick-video-items
  #file-video {
  max-width: 100%;
  width: 100%;
  height: 500px;
  vertical-align: top;
  display: inline-block;
  background-color: #000000;
}

#form-reply {
  display: none;
}

.comment-item {
  margin-bottom: 3rem;
}

@media only screen and (min-width: 992px) {
  .comment-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

.comment-item-poster {
  width: 200px;
  margin-right: 30px;
  text-align: center;
}

@media only screen and (max-width: 991px) {
  .comment-item-poster {
    width: auto;
    margin-right: 0px;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

.comment-item-letter {
  border-radius: 50%;
  background-color: #d3d2d3;
  color: #919090;
  width: 65px;
  height: 65px;
  text-transform: uppercase;
  display: inline-block;
  vertical-align: top;
  line-height: 67px;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

@media only screen and (max-width: 991px) {
  .comment-item-letter {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 13px;
    margin-bottom: 0;
  }
}

.comment-item-name {
  margin-bottom: 0.25rem;
  text-transform: capitalize;
}

@media only screen and (max-width: 991px) {
  .comment-item-name {
    margin-bottom: 0px;
    margin-left: 10px;
    margin-right: 10px;
  }
}

.comment-item-posttime {
  font-size: 12px;
  color: #999999;
}

.comment-item-information {
  width: calc(100% - 230px);
}

@media only screen and (max-width: 991px) {
  .comment-item-information {
    width: 100%;
  }
}

.comment-item-star {
  float: left;
  margin-right: 10px;
}

.comment-item-star i {
  font-size: 17px;
}

.comment-item-title {
  font-size: 15px;
  font-weight: 500;
}

.comment-replies {
  position: relative;
  background: #f8f9fa;
  border: 1px solid #dfdfdf;
  padding: 1.75rem 1.5rem;
}

.comment-replies:after {
  content: '';
  position: absolute;
}

.comment-replies:before {
  content: '';
  position: absolute;
  z-index: 1;
  top: -13px;
  left: 10px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 13px solid #f8f9fa;
}

.comment-replies:after {
  top: -14px;
  left: 9px;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-bottom: 14px solid #dfdfdf;
}

.comment-replies-item {
  margin-bottom: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.comment-replies-item:last-child {
  margin-bottom: 0px;
}

.comment-replies-letter {
  width: 45px;
  height: 45px;
  margin-right: 10px;
  line-height: 45px;
  padding-left: 1px;
  font-size: 14px;
  border-radius: 50%;
  background-color: #e5e3e5;
  color: #919090;
  text-transform: uppercase;
  display: inline-block;
  vertical-align: top;
  font-weight: 500;
  text-align: center;
  margin-top: 0.125rem;
}

.comment-replies-letter.admin {
  position: relative;
  background-color: #189eff;
  text-indent: 9999px;
  overflow: hidden;
}

.comment-replies-letter.admin:before {
  content: 'QTV';
  text-indent: 0px;
  color: #ffffff;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 13px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.comment-replies-info {
  width: calc(100% - 55px);
}

.comment-replies-name {
  font-weight: 500;
  margin-bottom: 0.125rem;
}

.comment-replies [class*='btn-load-more-'] {
  border: 0px;
  outline: none;
  padding: 0px;
  background: transparent;
}

.comment-media-play {
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
}

.comment-media-play svg {
  -webkit-box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.3);
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
}

.comment-media-play svg .comment-media-play-stroke-dotted {
  opacity: 0;
  stroke-dasharray: 4, 5;
  stroke-width: 1px;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-animation: spin 4s infinite linear;
  animation: spin 4s infinite linear;
  -webkit-transition: opacity 1s ease, stroke-width 1s ease;
  transition: opacity 1s ease, stroke-width 1s ease;
}

.comment-media-play svg .comment-media-play-stroke-solid {
  stroke-dashoffset: 0;
  stroke-dasharray: 300;
  stroke-width: 4px;
  -webkit-transition: stroke-dashoffset 1s ease, opacity 1s ease;
  transition: stroke-dashoffset 1s ease, opacity 1s ease;
}

.comment-media-play svg .comment-media-play-icon {
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transition: -webkit-transform 200ms ease-out;
  transition: -webkit-transform 200ms ease-out;
  transition: transform 200ms ease-out;
  transition: transform 200ms ease-out, -webkit-transform 200ms ease-out;
}

.comment-media-play:hover svg .comment-media-play-stroke-dotted {
  stroke-width: 4px;
  opacity: 1;
}

.comment-media-play:hover svg .comment-media-play-stroke-solid {
  opacity: 0;
  stroke-dashoffset: 300;
}

.comment-media-play:hover svg .comment-media-play-icon {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

/* head */
.head {
  background-color: #ffffff;
}

.head .head-top {
  color: #000;
  background-color: #ffc107bd;
  padding: 5px 0;
}

.line-info-head {
  font-size: 18px;
  margin-top: -3px;
}

.info-head i {
  vertical-align: top;
  margin: 3px 5px 0px 0px;
  font-size: 16px;
}

.head .head-bottom .wrap-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.head-bottom .wrap-content {
  padding: 5px 0;
}

.user-head a {
  color: #ffffff;
  padding-right: 9px;
  margin-right: 7px;
  position: relative;
  display: inline-block;
  vertical-align: top;
  text-decoration: none;
}

.user-head a:after {
  content: '';
  position: absolute;
  width: 1px;
  height: 8px;
  background-color: #ffffff;
  top: calc(50% - 7px / 2);
  right: 0px;
  opacity: 0.7;
}

.user-head a:last-child {
  padding-right: 0px;
  margin-right: 0px;
}

.user-head a:last-child:after {
  display: none;
}

/* Menu */
.menu {
  position: relative;
  z-index: 9;
  padding: 10px 0;
}

@media only screen and (max-width: 991px) {
  .menu {
    display: none;
  }
}
.menu ul.menu-content {
  display: flex;
  justify-content: end;
}
.menu ul {
  width: 100%;
  padding: 0px;
  margin: auto;
  list-style: none;
}

.menu .menu-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.menu-main .toggle-menu {
  display: none;
}

.menu ul li {
  position: relative;
  z-index: 1;
  margin: 8.5px 5px;
}

.menu ul li.menu-line {
  width: 1px;
  height: 15px;
  background-color: rgba(0, 0, 0, 0.1);
}

.menu ul li a {
  display: block;
  position: relative;
  font-size: 15px;
  color: #666;
  padding: 3px 3px;
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

.menu ul li a i{
  display: inline-block;
  vertical-align: middle;
  font-size: 10px;
  margin-left: 0;
  -webkit-transition: transform .2s;
  -moz-transition: transform .2s;
  -o-transition: transform .2s;
  transition: transform .2s;
}

.menu ul.menu-content > li:hover > a i {
  color: #666;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.menu ul li a::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 2px;
  background-color: #f70203;
  border-radius: 5px;
  left: 0px;
  bottom: 0px;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform 0.5s;
}

.menu ul > li > a.active::before,
.menu ul > li:hover > a::before {
  transform-origin: left;
  transform: scaleX(1);
}

.menu ul li a.has-child {
  padding-right: 16px;
  margin-right: 8px;
}

.menu ul li a.has-child:after {
  content: '';
  position: absolute;
  bottom: calc(50% - 4px / 2);
  right: 5px;
  width: 5px;
  height: 5px;
  border: 1px solid #fafafa;
  border-top: 0px;
  border-left: 0px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.menu ul li ul {
  position: absolute;
  min-width: 250px;
  margin-top: 0;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  background-color: #fafafa;
  border-radius: 0.25rem;
  -webkit-box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.15);
  -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;
}

.menu ul li:hover > ul {
  -webkit-transform: perspective(600px) rotateX(0);
  transform: perspective(600px) rotateX(0);
  transform-origin: 0 0 0;
  -webkit-transform-origin: 0 0 0;
  opacity: 1;
  visibility: visible;
}

.menu ul li ul li {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  margin: 0px;
}

.menu ul li ul li a {
  font-size: 14px;
  color: #666;
  border-bottom: 1px solid #ececec;
  padding: 10px 0px 9px 0px;
  text-transform: capitalize;
  position: relative;
}

.menu ul li ul li a i {
  font-size: 9px;
  position: absolute;
  right: 5px;
  top: 50%;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: right 0.3s ease-in-out;
  -ms-transition: right 0.3s ease-in-out;
  transition: right 0.3s ease-in-out;
}

.menu ul li ul li a.has-child {
  margin-right: 0px;
}

.menu ul li ul li a.has-child:after {
  border-color: #313131;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

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

.menu ul li ul li a.active.has-child:after {
  border-color: var(--color-main);
}

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

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

.menu ul li ul li:hover > a.has-child:after {
  border-color: var(--color-main);
}

.menu ul li ul li ul {
  top: -0.75rem;
  left: 100%;
  margin-top: 0px;
}

.menu ul li a.active,
.menu ul li a:hover,
.menu ul li ul li a:hover {
  color: #f70203;
  transition: all 0.3s;
}

.logo-head {
  max-width: 220px;
}

/* Search */
.search {
  width: 217px;
  background: #ffffff;
  border-radius: 10px;
  border: solid 1px;
}

.search p.search-btn-submit {
  float: left;
  width: 50px;
  height: 40px;
  line-height: 40px;
  cursor: pointer;
  text-align: center;
  margin: 0px;
  color: #6c757d;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search input {
  width: calc(100% - 50px);
  height: 40px;
  float: left;
  outline: none;
  padding: 0px;
  border: 0px;
  background: transparent;
  text-indent: 18px;
  font-size: 13px;
}

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

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

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

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

.search-result-auto {
  width: 300px;
  position: absolute;
  left: 0;
  top: 100%;
  background: #ffffff;
  overflow-x: hidden;
  overflow-y: scroll;
  padding: 10px;
  max-height: 455px;
  display: none;
}

.search-result-auto.active {
  display: block;
  z-index: 2;
}

.search-result-auto .price-per {
  right: initial;
  left: 10px;
}

.search-result-auto .menu ul li a {
  padding: 0;
}

.search-result-auto .name-product:hover {
  background: none;
}

.search-category-list .search {
  width: 490px;
  margin: 0 auto;
}

.search-category-list .search-category-list-id-select {
  float: left;
  width: 195px;
  position: relative;
}

.search-category-list .search-category-list-id {
  float: left;
  width: 100%;
  padding: 0 20px 0 10px;
  height: 40px;
  border-radius: 6px 0 0 6px;
  border: 0;
  color: #ffffff;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  position: relative;
  background: #000000 url('../images/arrow_down.svg') no-repeat center right
    10px;
}

.search-category-list .search input {
  width: calc(100% - 245px);
  height: 40px;
  float: left;
  outline: none;
  padding: 0px;
  border: 0px;
  background: transparent;
  text-indent: 18px;
  font-size: 13px;
}

/* Mmenu */
.menu-res {
  z-index: 502;
  background: #fd9e1b;
  position: relative;
  display: none;
}

@media only screen and (max-width: 991px) {
  .menu-res {
    display: block;
  }
}

.menu-bar-res {
  min-height: 50px;
  padding: 0;
}

.menu-mobile-head {
  min-height: 50px;
  padding: 0px 15px 0 15px;
}

#menu {
  display: none;
}

.logo-head-mobile {
  max-width: 175px;
  margin: 0 auto;
}

.fix_head .logo-head img {
  max-width: 200px;
}

#hamburger {
  display: block;
  width: 30px;
  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;
  transition-property: transform, top, bottom, left, opacity;
}

.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 {
  transform: rotate(45deg);
}

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

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

/* Search Responsive */
.search-res {
  position: relative;
}

.search-res .icon-search {
  width: 40px;
  height: 40px;
  cursor: pointer;
  text-align: center;
  line-height: 40px;
  color: #ffffff;
  font-size: 24px;
  margin: 0px;
}

.search-res .icon-search.active {
  color: #ec2d3f;
  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 #ec2d3f;
  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: #ec2d3f;
  line-height: 40px;
  text-align: center;
}

.search-res .search-grid input {
  width: calc(100% - 35px);
  float: right;
  line-height: 38px;
  outline: none;
  border: none;
  color: #ec2d3f;
}

.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;
}

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

.slideshow-item {
  display: block;
  cursor: pointer;
}

.slideshow:hover .control-slideshow {
  opacity: 1;
}

.control-slideshow {
  opacity: 0;
}

.info-slide {
  position: absolute;
  top: 0;
  left: calc((100% - 1200px) / 2);
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  max-width: 1200px;
  width: 100%;
  font-family: 'SVN-Century Gothic';
}

.name-slide {
  font-size: 30px;
  text-transform: uppercase;
  -webkit-text-stroke-width: 1;
  -webkit-text-stroke-color: #000;
  font-size: 96px;
  font-style: normal;
  font-weight: 800;
  line-height: 100px;
  /* 104.167% */
  -webkit-text-stroke: 1px #e2bf83;
  color: rgb(255 255 255 / 0%);
}

.name-slide.name_bg.opacity-0 {
  font-size: 46px;
  font-style: normal;
  font-weight: bold;
  line-height: 68px;
  letter-spacing: -1px;
  background: var(--Color3, linear-gradient(180deg, #ffffff 40%, #ffffff 80.6%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: #00000000;
  /* -webkit-text-stroke: inherit; */
  -webkit-text-stroke-width: 1.5px;
  -webkit-text-stroke-color: #fc9d19;
}

.desc-slide {
  font-size: 15px;
  color: #fff;
  margin: 20px 0;
  color: var(--White, #fff);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  max-width: 455px;
}

.views-more-slide {
  background-color: var(--background-static);
  width: 120px;
  height: 40px;
  color: #fff;
  font-size: 15px;
}

.box-slide.slick-current.slick-active .name-slide {
  animation: fadeInUp;
  animation-duration: 1s;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
}

.box-slide.slick-current.slick-active .desc-slide {
  animation: fadeInUp;
  animation-duration: 1s;
  animation-delay: 1s;
  animation-fill-mode: forwards;
}

.box-slide.slick-current.slick-active .views-more-slide {
  animation: scaleLarge;
  animation-duration: 1s;
  animation-delay: 1.5s;
  animation-fill-mode: forwards;
}

.slide-styled .slick-prev,
.slide-styled .slick-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
}

.slide-styled .slick-prev {
  left: 15px;
}

.slide-styled .slick-next {
  right: 15px;
}

.slide-styled .slick-prev:hover,
.slide-styled .slick-next:hover {
  background: rgb(253 158 27);
}

.slide-styled .slick-prev:before {
  font-family: 'FontAwesome';
  font-weight: 400;
  content: '\f053';
}

.slide-styled .slick-next:before {
  font-family: 'FontAwesome';
  font-weight: 400;
  content: '\f054';
}

.slide-styled .slick-dots {
  bottom: 20px;
}

.slide-styled .slick-dots li {
  margin: 0;
}

.slide-styled .slick-dots li button:before {
  color: #fff;
  font-size: 15px;
}

/* Partner */
.control-partner button {
  background-color: transparent;
  color: #222222;
  opacity: 1;
  width: 25px;
  font-size: 23px;
}

.control-partner button:hover {
  opacity: 0.7;
}

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

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

.wrap-partner {
  padding: 40px 0;
}

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

.partner {
  display: block;
  border: 1px solid #ffffff;
  max-width: 202px;
  margin: 0px auto;
}

.title-main-desc {
  max-width: 950px;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  margin: 0 auto 30px auto;
  font-weight: 500;
}

.slick-partner .slick-prev,
.slick-partner .slick-next {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
}

.slick-partner .slick-prev {
  left: 15px;
}

.slick-partner .slick-next {
  right: 15px;
}

.slick-partner .slick-prev:hover,
.slick-partner .slick-next:hover {
  background: rgb(253 158 27);
}

.slick-partner .slick-prev:before {
  font-family: 'FontAwesome';
  font-weight: 400;
  content: '\f053';
}

.slick-partner .slick-next:before {
  font-family: 'FontAwesome';
  font-weight: 400;
  content: '\f054';
}

/* Breadcrumb */
.breadCrumbs {
  background-color: #eee;
}

.breadCrumbs .wrap-content {
  padding: 0.75rem 0;
}

.breadCrumbs .wrap-content .breadcrumb {
  padding: 0;
  margin-bottom: 0;
  background-color: transparent;
  border-radius: 0;
}

.breadCrumbs .wrap-content .breadcrumb-item a {
  color: #212529;
}

.breadCrumbs .wrap-content .breadcrumb-item.active a {
  color: #6c757d;
}

/* Intro */
.wrap-intro {
  background-color: #eee;
  padding: 60px 0;
}

.news-intro:before {
  content: '';
  position: absolute;
  width: 1px;
  height: calc(100% - 50px);
  top: 10px;
  left: 90px;
  background-color: #cacaca;
}

.news-scroll:before,
.news-scroll:after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  left: 85px;
  border-radius: 100%;
  background-color: #cacaca;
}

.news-scroll:before {
  top: 10px;
}

.news-scroll:after {
  bottom: 40px;
}

.news-control {
  left: 85px;
  font-size: 13px;
  opacity: 0.5;
  z-index: 1;
  cursor: pointer;
}

.news-control:hover {
  opacity: 1;
  color: #ec2d3f;
}

.news-control#up {
  top: -10px;
}

.news-control#down {
  bottom: 20px;
}

.news-shadow {
  padding-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.news-shadow .news-shadow-time {
  font-size: 13px;
  width: 75px;
  margin-right: 45px;
}

.news-shadow .news-shadow-time:after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  top: calc(50% - 20px / 2);
  right: -26px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../images/pattern-news.png);
}

.news-shadow .news-shadow-article {
  width: calc(100% - 120px);
  padding: 14px 15px;
  border-radius: 10px;
  background-color: #ffffff;
  border: 1px solid #cecabb;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.news-shadow .news-shadow-article:before {
  content: '';
  position: absolute;
  top: calc(50% - 26px / 2);
  left: -13px;
  z-index: 0;
  border-top: 13px solid transparent;
  border-right: 13px solid #cecabb;
  border-bottom: 13px solid transparent;
}

.news-shadow .news-shadow-article:after {
  content: '';
  position: absolute;
  top: calc(50% - 24px / 2);
  left: -11px;
  z-index: 1;
  border-top: 12px solid transparent;
  border-right: 11px solid #ffffff;
  border-bottom: 12px solid transparent;
}

.news-shadow .news-shadow-article .news-shadow-image {
  margin-right: 10px;
  width: 90px;
}

.news-shadow .news-shadow-article .news-shadow-info {
  width: calc(100% - 100px);
}

.news-shadow .news-shadow-article .news-shadow-info .news-shadow-name {
  height: 36px;
  font-size: 15px;
  font-weight: 700;
}

.news-shadow .news-shadow-article .news-shadow-info .news-shadow-name a {
  color: #222222;
}

.news-shadow .news-shadow-article .news-shadow-info .news-shadow-name a:hover {
  color: #ec2d3f;
}

.news-shadow
  .news-shadow-article
  .news-shadow-info
  .news-shadow-name
  a
  .text-split {
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.news-shadow .news-shadow-article .news-shadow-info .news-shadow-desc {
  height: 38px;
  font-size: 13px;
}

.news-shadow
  .news-shadow-article
  .news-shadow-info
  .news-shadow-desc.text-split {
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.btn-contact-now {
  background-color: #fdd100;
  border-radius: 100px;
  padding: 10px 14px;
  color: var(--color-black);
  text-transform: uppercase;
  line-height: 20px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.btn-contact-now:hover {
  background-color: var(--color-black);
  color: #fdd100;
  transition: all 0.5s;
}

.btn-contact-now i {
  margin-left: 5px;
  font-weight: bold;
}

/* Video */
.video {
  cursor: pointer;
  margin-bottom: 1rem;
}

.video .video-image {
  position: relative;
  margin-bottom: 0.75rem;
}

.video .video-image:before {
  content: '';
  position: absolute;
  width: 50px;
  height: 35px;
  top: calc(50% - 17px);
  left: calc(50% - 25px);
  z-index: 1;
  background-repeat: no-repeat;
  background-image: url(../images/play.png);
}

.video .video-name {
  text-align: center;
  font-size: 16px;
  color: #212529;
  margin-bottom: 0px;
}

/* Album */
.album {
  cursor: pointer;
}

.album .album-image {
  margin-bottom: 0.75rem;
}

.album .album-name {
  margin-bottom: 0px;
  text-align: center;
}

.album .album-name a {
  display: block;
  font-size: 16px;
  color: #212529;
  margin-bottom: 0px;
}

/* Brand */
.wrap-brand .wrap-content {
  position: relative;
}

.brand {
  display: block;
  border: 1px solid #eee;
  max-width: 160px;
  margin: 0px auto;
}

/* Product */
.wrap-product {
  margin-bottom: 50px;
}

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

.cart-product span {
  cursor: pointer;
  color: #ffffff;
  text-transform: capitalize;
  text-align: center;
}

/* Product Detail */
.grid-pro-detail {
  margin-bottom: 3rem;
}

.left-pro-detail {
  position: relative;
  text-align: center;
  width: 45%;
}

.right-pro-detail {
  width: calc(55% - 40px);
}

.left-pro-detail .MagicZoom {
  border: 1px solid #eee;
  padding: 7px;
  border-radius: 5px;
  background-color: #ffffff;
  display: inline-block;
}

.gallery-thumb-pro {
  position: relative;
  margin-top: 10px;
}

.gallery-thumb-pro-left {
  width: 100px;
  float: left;
}

.gallery-thumb-pro-left .slick-next,
.gallery-thumb-pro-left .slick-prev {
  right: calc(50% - 15px);
  top: calc(100% - 8px);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #000000;
  opacity: 0.6;
}

.gallery-thumb-pro-left .slick-prev {
  right: initial;
  left: calc(50% - 15px);
  top: 0;
}

.gallery-thumb-pro-left .slick-next:before,
.gallery-thumb-pro-left .slick-prev:before {
  font-family: 'FontAwesome';
  font-weight: 400;
  content: '\f078';
}

.gallery-thumb-pro-left .slick-prev:before {
  content: '\f077';
}

.gallery-thumb-pro-left .slick-next:hover,
.gallery-thumb-pro-left .slick-prev:hover {
  opacity: 1;
}

.gallery-thumb-pro-right {
  width: calc(100% - 130px);
  float: right;
}

.product-detail-size-guide {
  padding-bottom: 24px;
  margin-top: 15px;
  display: block;
  margin-bottom: 24px;
  border-bottom: solid 1px #7878782e;
}

.product-detail-size-guide a {
  color: #1b1b1d;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  text-decoration: none;
}

.product-detail-size-guide a:hover {
  color: var(--color-hover);
}

.owl-pro-detail {
  padding: 0;
}

.control-pro-detail button {
  background-color: transparent;
  color: #222222;
  opacity: 1;
  width: 25px;
  font-size: 23px;
}

.control-pro-detail button:hover {
  opacity: 0.7;
}

.control-pro-detail button.owl-prev {
  left: 0px;
}

.control-pro-detail button.owl-next {
  right: 0px;
}

.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 {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  -webkit-filter: brightness(100%) !important;
  filter: brightness(100%) !important;
  border-bottom: 0px !important;
  padding-bottom: 0px !important;
}

.title-pro-detail {
  text-transform: capitalize;
  font-size: 20px;
  display: block;
  font-weight: 700;
}

.comment-pro-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.social-plugin-pro-detail {
  margin-bottom: 1rem;
  margin-top: 0px !important;
}

.desc-pro-detail {
  margin-bottom: 1rem;
}

.attr-pro-detail {
  list-style: none;
  padding: 0px;
}
.attr-pro-detail ul {
  margin: 0;
  padding: 0;
}
.attr-pro-detail li {
  margin-bottom: 0.5rem;
  list-style: none;
  margin-left: 0;
}

.attr-label-pro-detail {
  margin: 0 5px 0 0;
  font-size: 15px;
  font-weight: 600;
}

.attr-content-pro-detail {
  display: inline-block;
  margin-bottom: 0;
  font-weight: 600;
}
.attr-content-pro-detail-code {
  font-size: 17px;
}

.brand-pro-detail a {
  background: var(--color-red);
  color: #fff;
  border-radius: 2px;
  padding: 2px 5px;
}

.price-new-pro-detail {
  font-weight: 700;
  font-size: 24px;
  color: #dc3545;
}

.price-old-pro-detail {
  font-weight: 400;
  color: var(--color-gray);
  text-decoration: line-through;
  padding-left: 10px;
  margin-right: 20px;
}
.price-flashsale-pro-detail {
  font-weight: 600;
  font-size: 23px;
  color: var(--color-red);
}

.price-per-pro-detail {
  background: red;
  padding: 5px 15px;
  position: relative;
  color: #ffffff;
  display: inline-block;
  transform: translateY(-2px);
}

.price-per-pro-detail:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: red;
  transform: translate(50%, -50%);
}

.price-per-pro-detail:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: red;
  transform: translate(-50%, -50%);
}

.color-pro-detail {
  cursor: pointer;
  vertical-align: top;
  position: relative;
  width: 48px;
  height: 32px;
  margin: 0 8px 8px 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  border: 1px solid #dadada;
  transition: 0.3s;
  border-radius: 2px;
}

.size-pro-detail,
.size-price-pro-detail {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 5px 10px;
  position: relative;
  margin: 0 8px 8px 0;
  border: 1px solid #dadada;
  border-radius: 2px;
  font-size: 12px;
  transition: 0.3s;
}

.size-pro-detail.active,
.size-price-pro-detail.active,
.color-pro-detail.active {
  border-color: var(--color-dark-red);
}

.size-pro-detail.active:after,
.size-price-pro-detail.active:after,
.color-pro-detail.active:after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  border-width: 8px;
  border-style: solid;
  border-color: transparent var(--color-dark-red) var(--color-dark-red)
    transparent;
}
.size-pro-detail.active:before,
.size-price-pro-detail.active:before,
.color-pro-detail.active:before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Pro';
  position: absolute;
  bottom: -2px;
  right: 1px;
  font-weight: 600;
  color: #ffffff;
  z-index: 1;
  font-size: 9px;
}

.color-pro-detail input[type='radio'],
.size-pro-detail input[type='radio'],
.size-price-pro-detail input[type='radio'] {
  display: none;
}

.quantity-pro-detail {
  width: 150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  height: 45px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid #dfdfdf;
}

.quantity-pro-detail span {
  line-height: 25px;
  padding: 0px;
  width: 45px;
  height: 100%;
  color: #000;
  cursor: pointer;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}

.quantity-pro-detail span.quantity-plus-pro-detail {
  border-left: 0px;
}

.quantity-pro-detail span.quantity-minus-pro-detail {
  border-right: 0px;
}

.quantity-pro-detail input {
  height: 100%;
  border: none;
  width: calc(100% - 90px);
  text-align: center;
  font-size: 15px;
}

.cart-pro-detail {
  max-width: 400px;
}

.cart-pro-detail a {
  text-align: center;
  color: var(--color-black);
  text-transform: uppercase;
  cursor: pointer;
  width: calc(100% / 2 - 5px);
  height: 45px;
  border-radius: 3px;
  border: 1px solid var(--color-black);
  font-weight: 600;
}

.cart-pro-detail a.addnow {
  background: #fff;
  color: var(--color-red);
}

.cart-pro-detail a.addnow:hover {
  color: #fff;
  background: var(--color-red);
}

.cart-pro-detail a.buynow {
  background-color: #ffffff;
  position: relative;
  z-index: 1;
}

.cart-pro-detail a:hover {
  border: 1px solid #d38419;
}
.cart-pro-detail a.buynow:after {
  position: absolute;
  content: '';
  display: block;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #d38419;
  transform-origin: right center;
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cart-pro-detail a.buynow:hover:after {
  transform-origin: left center;
  transform: scale(1);
}

.cart-pro-detail a.buynow:hover {
  color: #fff;
}

.cart-pro-detail a i {
  vertical-align: top;
  margin-right: 8px;
  font-size: 24px;
  position: relative;
  top: -2px;
}

.inp-coupon {
  width: calc(65% - 10px);
  height: 38px;
  padding-left: 15px;
  border: 1px solid #ccc;
}

.btn-coupon {
  background: #7c7c7c;
  color: #fff;
  height: 38px;
  margin-left: 10px;
  width: 35%;
  font-size: 17px;
  border: none;
  font-weight: 400;
  border-radius: 0;
  position: relative;
  z-index: 1;
}

.btn-coupon:hover {
  color: #fff;
}

.btn-coupon:after {
  position: absolute;
  content: '';
  display: block;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--color-black);
  transform-origin: right center;
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.btn-coupon:hover:after {
  transform-origin: left center;
  transform: scale(1);
}

.error-coupon {
  color: var(--color-red);
  font-size: 14px;
}

.error-size-price {
  margin-top: 5px;
  color: var(--color-red);
  font-size: 14px;
}

.tags-pro-detail a {
  float: left;
  font-size: 13px;
  padding-bottom: 0.375rem;
  margin: 0px 5px 5px 0px;
}

.tags-pro-detail a i {
  font-size: 11px;
  margin: 5px 5px 0px 0px;
}

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

.tabs-pro-detail .tab-content {
  border: 1px solid #dee2e6;
  margin-top: -1px;
  margin-bottom: 20px;
  padding: 5px 10px;
}

.tabs-pro-detail .nav-tabs .nav-link {
  border-top-width: 3px;
  font-size: 13px;
  color: #333;
  text-transform: uppercase;
  font-weight: 500;
}

.tabs-pro-detail .nav-tabs .nav-link.active,
.tabs-pro-detail .nav-tabs .nav-item.show .nav-link {
  border-top-color: #555555;
}

.catalogue-product-detail a {
  padding: 7px 20px;
  border: 1px solid var(--color-black);
  color: var(--color-black);
  transition: all 0.5s;
  border-radius: 5px;
  font-size: 16px;
  line-height: 22px;
}

.catalogue-product-detail a:hover {
  background: var(--color-black);
  color: #ffffff;
}

/* News */

.news-detail-page .pic-news {
  border-radius: 16px 16px 0px 0px;
  background: lightgray 50% / cover no-repeat;
  overflow: hidden;
  margin-bottom: 0;
  position: relative;
}

.news-detail-page .pic-news img {
  width: 100%;
}

.pic-news-times {
  top: 10px;
  left: 10px;
  margin-bottom: 0px;
  position: absolute;
  color: #1b1b1d;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  background: #fff;
  padding: 2px 10px;
  border-radius: 30px;
}

.news-detail-page .info-news {
  width: 100%;
  border-radius: 0px 0px 16px 16px;
  background: rgba(176, 137, 88, 0.08);
  padding: 15px;
}

.news-detail-page .name-news {
  color: #252525;
  font-size: 17px;
  line-height: normal;
  font-weight: 600;
}

.news-detail-page .name-news.text-split {
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.news-detail-page .name-news:hover {
  color: var(--color-dark-red);
}

.time-news {
  color: var(--color-gray);
  margin-bottom: 10px;
}

.desc-news {
  color: #676767;
  margin-top: 5px;
  line-height: 22px;
}

.news-detail-page .news .news-name {
  margin-bottom: 0.5rem;
}

.news-detail-page .news .news-name a {
  color: #333;
  font-size: 16px;
}

.news-detail-page .news .news-name a.text-split {
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.news-detail-page .news .news-name a:hover {
  color: #ec2d3f;
}

.news-detail-page .news .news-time {
  color: #84878a;
  margin-bottom: 0.25rem;
}

.news-detail-page .news .news-desc {
  color: #333333;
  margin-top: 5px;
  line-height: 22px;
}

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

.title-news-connection {
  color: #252525;
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

/*News orther*/
.othernews {
  position: sticky;
  top: 60px;
  z-index: 11;
}

.news-other {
  margin-bottom: 15px;
}

.pic-news-other {
  width: 40%;
}

.info-news-other {
  width: 60%;
  padding-left: 10px;
}

.name-news-other {
  color: #252525;
  font-size: 14px;
  line-height: normal;
  font-weight: 600;
}

.name-news-other:hover {
  color: var(--background-static);
}

/* Contact */
.form-floating.form-floating-cus > input,
.form-floating-cus > select {
  height: 45px;
}

.form-floating.form-floating-cus > textarea {
  height: 100px;
}

.form-floating.form-floating-cus > label {
  padding: 10px 10px;
  color: var(--color-gray);
}

.contact-article {
  margin-bottom: 3rem;
}

.contact-input {
  position: relative;
  margin-bottom: 20px;
}

.contact-input input,
.contact-input textarea {
  border-radius: 0;
  border-top: none;
  border-left: none;
  border-right: none;
}

.contact-input input:focus,
.contact-input textarea:focus {
  box-shadow: none;
  outline: none;
}

.contact-input textarea {
  resize: none;
  height: 150px;
}

.contact-input .custom-file-label::after {
  content: attr(title);
}

.contact-map {
  position: relative;
  height: 500px;
}

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

/*Newsletter index tpl*/
.newsletter-index-page {
  padding: 30px 0;
  max-width: 600px;
  margin: 30px auto 30px auto;
  border: 1px dashed #d2831e;
  border-radius: 5px;
  background: #fff3e1;
}

.newsletter-index-page .wrap-content {
  max-width: 600px;
}

.newsletter-index-page .form-newsletter {
  position: relative;
}

.newsletter-index-page h2 {
  text-align: center;
  font-size: 28px;
  line-height: 32px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 30px;
  text-align: center;
  color: var(--color-dark-red);
}

.newsletter-index-page .newsletter-input {
  position: relative;
  height: 50px;
  width: 100%;
}

.newsletter-index-page .newsletter-input input,
.newsletter-index-page .newsletter-input select {
  height: 100%;
  width: 100%;
  border-radius: 5px;
  border: 1px solid #7b7b7b;
  height: 45px;
}

.newsletter-index-page #content-newsletter {
  border-radius: 5px;
  border: 1px solid #7b7b7b;
  height: 100px;
  resize: none;
}

.newsletter-index-page .newsletter-button {
  width: 240px;
  position: relative;
  margin: 25px auto 0 auto;
}

.newsletter-index-page .newsletter-button input[type='submit'] {
  border: 0px;
  color: #fff;
  height: 45px;
  border-radius: 15px;
  background: #d2831e url(../images/send-fill.svg) no-repeat;
  font-size: 18px;
  line-height: 32px;
  text-transform: uppercase;
  background-position: 184px 50%;
  background-size: 22px;
  padding-right: 31px;
  font-weight: 600;
  transition: all 0.5s;
}

.newsletter-index-page .newsletter-button input[type='submit']:hover {
  background-position: 215px -30px;
  padding-right: 0;
}

/* Newsletter Footer*/
.footer-newsletter {
  margin: 0 auto;
  padding: 30px 0;
}

.footer-newsletter .form-newsletter {
  position: relative;
}

.footer-newsletter .newsletter-input {
  position: relative;
  height: 50px;
  width: 100%;
}

.footer-newsletter .newsletter-input input {
  height: 100%;
  width: 100%;
  border-radius: 5px;
  border: 1px solid #d5871c;
  background-color: transparent !important;
  height: 45px;
}

.footer-newsletter #content-newsletter {
  border-radius: 5px;
  border: 1px solid #d5871c;
  background-color: transparent;
  height: 97px;
  resize: none;
}

.footer-newsletter .newsletter-button {
  width: 140px;
  position: absolute;
  top: 0;
  right: 0;
}

.footer-newsletter .newsletter-button input[type='submit'] {
  border: 0px;
  color: #fff;
  height: 45px;
  border-radius: 0 4px 4px 0;
  background: #d5871c url(../images/send-fill.svg) no-repeat;
  font-size: 18px;
  line-height: 32px;
  text-transform: uppercase;
  background-position: 80px 50%;
  background-size: 22px;
  padding-right: 31px;
  font-weight: 600;
  transition: all 0.5s;
}

.footer-newsletter .newsletter-button input[type='submit']:hover {
  background-position: 160px -30px;
  padding-right: 0;
}

.footer-newsletter-title {
  text-align: center;
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0;
}

.newsletter-slogan {
  text-align: center;
  font-size: 14px;
  line-height: 24px;
  color: var(--color-gray);
}

/* Footer */
/*Animation footer*/
.waves {
  height: 15vh;
  min-height: 100px;
  max-height: 150px;
}

.parallax > use {
  animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

.parallax > use:nth-child(1) {
  opacity: 0.7;
  animation-delay: -2s;
  animation-duration: 7s;
}

.parallax > use:nth-child(2) {
  opacity: 0.5;
  animation-delay: -3s;
  animation-duration: 10s;
}

.parallax > use:nth-child(3) {
  opacity: 0.3;
  animation-delay: -4s;
  animation-duration: 13s;
}

.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}

@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }

  100% {
    transform: translate3d(85px, 0, 0);
  }
}

.footer-article {
  background-color: #f8f8f8;
}

.footer-title {
  text-transform: uppercase;
  font-size: 16px;
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--color-black);
}

.logo-footer {
  text-align: center;
  margin-top: -18px;
  display: block;
}

.name-company {
  text-transform: uppercase;
  font-size: 22px;
  margin-bottom: 5px;
  font-weight: 600;
  color: var(--color-black);
  text-align: center;
}

.footer-article-items .footer-info {
  color: var(--color-black);
}

.footer-menu-vertical {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

.footer-menu-vertical li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.footer-menu-vertical li span{
  margin-right: 10px;
  max-width: 34px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-menu-vertical li:last-child {
  margin-bottom: 0px;
}

.footer-menu-vertical li a {
  color: var(--color-black);
}

.footer-menu-vertical li a:hover {
  text-decoration: none;
  color: #ec2d3f;
}

.footer-tags {
  background: #2975b8;
}

.footer-tags .wrap-content {
  padding: 30px 15px;
}

.footer-tags-lists {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

.footer-tags-lists li {
  float: left;
}

.footer-tags-lists li a {
  padding-bottom: 0.375rem;
}

.footer-powered {
  color: #ffffff;
  background-color: #3d2414;
}

.footer-powered .wrap-content {
  padding-top: 15px;
  padding-bottom: 15px;
}

.footer-statistic {
  text-align: right;
}

.footer-statistic span {
  padding-right: 10px;
}

.footer-statistic span:last-child {
  padding-right: 0px;
}

.footer-article-items--fanpage {
  width: 280px;
  overflow: hidden;
}

#footer-map {
  position: relative;
  height: 200px;
  overflow: hidden;
}

#footer-map iframe {
  position: absolute !important;
  width: 100% !important;
  height: 100% !important;
  top: 0px !important;
  left: 0px !important;
}

.social-media-icons li a {
  display: block;
}

.social-media-icons li a:hover {
  -webkit-animation: rotate 1s normal linear infinite;
  animation: rotate 1s normal linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Like Share */
.social-plugin {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.social-plugin .at-share-btn {
  margin-bottom: 0px !important;
}

.social-plugin .zalo-share-button {
  margin-left: 3px;
}

/* Paging */
.pagination-home .pagination .page-item .page-link {
  color: #555555;
  font-size: 0.875rem;
  @media (max-width: 768px) {
    padding: 0.375rem 0.65rem;
  }
}

.pagination-home .pagination .page-item.active .page-link {
  color: #ffffff;
  background-color: #555555;
  border-color: #555555;
}

/* Paging Ajax */
.pagination-ajax {
  text-align: center;
  margin-top: 10px;
}

.pagination-ajax span {
  display: inline-block;
  vertical-align: top;
  margin: 0px 3px 3px 3px;
  width: 35px;
  height: 35px;
  line-height: 33px;
  color: #666 !important;
  border: 1px solid #e6e6e6;
  font-size: 13px;
  cursor: pointer;
  text-decoration: none !important;
  background-color: #ffffff;
  border-radius: 3px;
}

.pagination-ajax span.current,
.pagination-ajax span:hover {
  color: #ffffff !important;
  border-color: #d38519;
  background-color: #fe9c1b;
}

.pagination-ajax span.first,
.pagination-ajax span.last,
.pagination-ajax span.prev,
.pagination-ajax span.next {
  text-indent: -9999px;
  position: relative;
  background-color: #ffffff !important;
}

.pagination-ajax span.first:before,
.pagination-ajax span.last:before,
.pagination-ajax span.prev:before,
.pagination-ajax span.next:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
}

.pagination-ajax span.first:before {
  background-image: url(../images/page-first.png);
}

.pagination-ajax span.last:before {
  background-image: url(../images/page-last.png);
}

.pagination-ajax span.prev:before {
  background-image: url(../images/page-prev.png);
}

.pagination-ajax span.next:before {
  background-image: url(../images/page-next.png);
}

/* Popup */
#popup .modal-body {
  padding: 0px;
}

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

/* Hidden Check Grammar Coccoc */
coccocgrammar {
  display: none;
}

/* Scroll Top */
/* .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;
} */

/*Google dịch*/
.ggdich-head {
  position: relative;
  cursor: pointer;
  border-radius: 40px;
  background: #fff;
  width: 150px;
  height: 32px;
  flex-shrink: 0;
  color: #767676;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.lang_current {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.lang_icon {
  margin-left: 10px;
}
span.lang_txt {
  position: relative;
  display: inline-block;
  padding-right: 20px;
}

span.lang_txt:before {
  content: '';
  position: absolute;
  right: 0;
  transform: rotate(45deg);
  border: 1px solid #000000;
  border-top: 0px;
  border-left: 0px;
  width: 7px;
  height: 7px;
  top: calc(50% - 10px / 2);
}

span.lang_icon {
  border: 1px solid #fff;
  display: inline-block;
  zoom: 0.7;
  margin-right: 5px;
}

.box_solang img {
  margin-left: 10px;
}

#google_language_translator {
  clear: both;
  width: auto !important;
  text-align: right;
  display: none;
}

.ggdich-head .box_solang {
  position: absolute;
  top: 105%;
  right: 0;
  width: max-content;
  background: #fff;
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.3);
  padding: 10px;
  display: none;
  z-index: 10000;
  border-radius: 3px;
  width: 100%;
  box-sizing: border-box;
}

.ggdich-head .box_solang span {
  color: #333;
  font-size: 12px;
  letter-spacing: 1px;
  height: 20px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  background-size: 30px 20px;
  margin-bottom: 10px;
  text-decoration: none;
  text-align: left;
  justify-content: space-between;
}

.ggdich-head .box_solang span:last-child {
  margin-bottom: 0;
}

.ggdich-head .box_solang span:hover {
  color: #fe8800;
}
@media only screen and (max-width: 991px) {
  .ggdich-head {
    color: var(--color-black);
    border: 1px solid #c8c8c8;
  }
  span.lang_txt:before {
    border: 1px solid var(--color-black);
    border-top: 0;
    border-left: 0;
  }
}
/*Chi nhánh*/
.market-container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.market-page {
  padding: 30px 0;
}

@media (min-width: 768px) {
  .market-page {
    padding: 50px 0;
  }
}

@media (min-width: 1200px) {
  .market-page {
    padding: 50px 0 15px;
  }
}

.market-wrapper {
  position: relative;
}

.market-wrapper > * {
  margin-bottom: 15px;
}

@media (min-width: 768px) {
  .market-wrapper > * {
    margin-bottom: 0;
  }
}

.market-title {
  display: inline-block;
  font-family: 'SVN-Megante';
  font-style: normal;
  font-weight: 400;
  font-size: 25px;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
  color: #aa1f23;
}

.market-address {
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin-right: auto;
  max-width: 100%;
  max-height: 400px;
  padding: 8px;
}

.market-address ul {
  max-width: 100%;
  max-height: 360px;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  margin-right: auto;
  margin: 0;
  padding: 0;
  padding-right: 10px;
}

@media (min-width: 768px) {
  .market-address ul {
    max-height: 100%;
  }
}

.market-address ul::-webkit-scrollbar-track {
  background-color: #ebebeb;
  border-radius: 30px;
}

.market-address ul::-webkit-scrollbar {
  width: 6px;
  background-color: #ebebeb;
  border-radius: 30px;
}

.market-address ul::-webkit-scrollbar-thumb {
  background-color: #b8b8b8;
  border-radius: 30px;
}

.market-address ul li:not(:last-child) {
  margin-bottom: 8px;
}

@media (min-width: 1535px) {
  .market-address ul li:not(:last-child) {
    margin-bottom: 16px;
  }
}

.market-address ul a {
  display: block;
  background: #f2f2f2;
  border: 1px solid #f2f2f2;
  border-radius: 8px;
  padding: 8px;
  text-decoration: none;
}

@media (min-width: 1536px) {
  .market-address ul a {
    padding: 8px;
  }
}

.market-address ul a span {
  display: block;
  line-height: 1.4;
  color: #333333;
  font-size: 14px;
}

@media (min-width: 1536px) {
  .market-address ul a span {
    font-size: 16px;
  }
}

.market-address ul a span:first-child {
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.market-address ul a span:last-child {
  font-weight: 400;
}

.market-address ul a:hover,
.market-address ul a.active {
  background: #fff;
  border: 1px solid #aa1f23;
  -webkit-box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
}

.market-address ul a:hover span:first-child,
.market-address ul a.active span:first-child {
  color: #aa1f23;
}

@media (min-width: 768px) {
  .market-address {
    position: absolute;
    left: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    max-width: 300px;
    background: #ffffff;
    -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 16px;
  }
}

@media (min-width: 992px) {
  .market-address {
    left: 30px;
    max-width: 300px;
    max-height: 350px;
    padding: 12px;
  }
}

@media (min-width: 1536px) {
  .market-address {
    max-width: 365px;
    max-height: 605px;
    padding: 5px 17px 5px;
  }
}

.market-this-address {
  width: 100%;
  padding: 16px;
  max-width: 100%;
}

.market-this-address ul {
  padding: 0;
  margin: 0;
}

.market-this-address ul > li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 12px;
}

.market-this-address ul > li:not(:last-child) {
  margin-bottom: 16px;
}

@media (min-width: 992px) {
  .market-this-address ul > li:not(:last-child) {
    margin-bottom: 8px;
  }
}

@media (min-width: 1536px) {
  .market-this-address ul > li:not(:last-child) {
    margin-bottom: 16px;
  }
}

.market-this-address ul > li .icon {
  display: block;
  width: 20px;
  height: 20px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.market-this-address ul > li .icon i {
  font-size: 18px;
  color: #aa1f23;
}

@media (min-width: 1366px) {
  .market-this-address ul > li .icon {
    width: 32px;
    height: 32px;
  }
}

.market-this-address ul > li .info {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.market-this-address ul > li .info .title {
  display: block;
  font-family: 'SVN-Megante';
  font-style: normal;
  font-weight: 500;
  line-height: 1.4;
  color: #333333;
  font-size: 15px;
  margin-bottom: 4px;
}

@media (min-width: 1440px) {
  .market-this-address ul > li .info .title {
    font-size: 18px;
  }
}

.market-this-address ul > li .info .adress {
  display: block;
  font-weight: 400;
  line-height: 1.5;
  color: #333333;
  font-size: 13px;
}

@media (min-width: 1440px) {
  .market-this-address ul > li .info .adress {
    font-size: 15px;
  }
}

@media (min-width: 768px) {
  .market-this-address {
    position: absolute;
    right: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    max-width: 300px;
    background: #ffffff;
    -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 12px;
  }
}

@media (min-width: 992px) {
  .market-this-address {
    max-width: 300px;
    right: 30px;
  }
}

@media (min-width: 1536px) {
  .market-this-address {
    padding: 8px;
    max-width: 350px;
  }
}

.market-maps .map {
  min-height: 350px !important;
}

.market-maps .map iframe {
  height: 350px !important;
  width: 100%;
}

@media (min-width: 768px) {
  .market-maps .map iframe {
    height: 500px !important;
  }
}

@media (min-width: 1536px) {
  .market-maps .map iframe {
    height: 715px !important;
  }
}

@media (min-width: 768px) {
  .market-maps .map {
    min-height: 500px !important;
  }
}

@media (min-width: 1536px) {
  .market-maps .map {
    min-height: 715px !important;
  }
}

.market-maps .map,
.market-this-address ul {
  display: none;
}

.market-maps .map.active,
.market-this-address ul.active {
  display: block;
}
/* Text Styled */
.text-style-h1 {
  font-size: 28px;
  line-height: 36px;
  color: var(--color-black);
  font-weight: 600;
}

.text-style-h2 {
  font-size: 26px;
  line-height: 40px;
  color: var(--color-black);
  font-weight: 600;
}

.text-style-title {
  font-size: 18px;
  line-height: 24px;
  color: var(--color-black);
  font-weight: 400;
}

.text-style-desc {
  font-size: 15px;
  line-height: 24px;
  color: var(--color-gray);
  font-weight: 400;
}

@media (min-width: 768px) {
  .text-style-md-h1 {
    font-size: 32px;
    line-height: 40px;
  }
}

/* Text Hide */
.text-split,
.text-split-2,
.text-split-3,
.text-split-4,
.text-split-5 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
}

.text-split-2 {
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.text-split-3 {
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

.text-split-4 {
  -webkit-line-clamp: 4;
  line-clamp: 4;
}
.text-split-5 {
  -webkit-line-clamp: 5;
  line-clamp: 5;
}
@media (min-width: 768px) {
  .text-split-md-2 {
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }

  .text-split-md-3 {
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }

  .text-split-md-4 {
    -webkit-line-clamp: 4;
    line-clamp: 4;
  }
}

/* Transition All */
.transition,
.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,
.btn-frame .kenit-alo-circle-fill,
.support-online .kenit-alo-circle-fill {
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.scale-img-none:hover {
  transform: scale(1, 1);
}
/* Scale IMG */
.scale-img {
  overflow: hidden;
  display: block;
}

.scale-img img {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.scale-img:hover > img {
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}

/* Blink */
.blink {
  -webkit-animation-name: blink;
  -webkit-animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-name: blink;
  -moz-animation-duration: 1s;
  -moz-animation-timing-function: linear;
  -moz-animation-iteration-count: infinite;
  animation-name: blink;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

/* Button Frame */
.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: linear-gradient(180deg, rgb(0 104 255), rgb(1 95 231));
  position: relative;
  z-index: 1;
  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;
}

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

.btn-frame .animated.infinite {
  -webkit-animation-iteration-count: 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 rgb(16 130 252);
  opacity: 0.1;
  border-color: #0062ef;
  opacity: 0.5;
}

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

.btn-frame .animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  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 {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

/* Zalo */
.btn-zalo {
  bottom: 315px;
}

/* Phone */
.btn-phone {
  bottom: 230px;
}

/* Messenger */
.js-facebook-messenger-top-header {
  background: #487dfc;
  color: #fff;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 5px 5px 0 0;
}

.js-facebook-messenger-container.closed {
  display: none !important;
}

.js-facebook-messenger-tooltip {
  bottom: 97px;
  right: 97px;
  color: #404040;
  background: #fff;
}

.js-facebook-messenger-tooltip.closed {
  display: none !important;
}

.js-facebook-messenger-box,
.js-facebook-messenger-button {
  z-index: 999;
}

.js-facebook-messenger-tooltip {
  z-index: 999;
  display: none;
  position: fixed;
  text-align: center;
  border-radius: 10px;
  overflow: hidden;
  font-size: 12px;
  line-height: 1;
  padding: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0 2pt 10pt;
  box-shadow: rgba(0, 0, 0, 0.15) 0 2pt 10pt;
  z-index: 1000000000000000019884624838656;
}

.js-facebook-messenger-close-tooltip {
  width: 10px;
  height: 10px;
  display: inline-block;
  cursor: pointer;
  margin-left: 10px;
}

.js-facebook-messenger-box {
  z-index: 999;
}

.js-facebook-messenger-box.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

.js-facebook-messenger-box.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.js-facebook-messenger-button,
.js-facebook-messenger-tooltip {
  z-index: 999;
}

.js-facebook-messenger-box {
  display: block;
  position: fixed;
  cursor: pointer;
  bottom: 150px;
  right: 17px;
  width: 56px;
  height: 56px;
  text-align: center;
  background: #1182fc;
  border-radius: 100%;
  overflow: hidden;
  z-index: 99;
  -webkit-box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.3);
}

.js-facebook-messenger-box.rotate svg#fb-msng-icon {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.js-facebook-messenger-box svg#fb-msng-icon {
  width: 32px;
  height: 33px;
  position: absolute;
  top: 13px;
  left: 12px;
  opacity: 1;
  overflow: hidden;
  -webkit-transition: opacity 160ms ease-in-out, transform 160ms ease-in-out;
  -webkit-transition: opacity 160ms ease-in-out,
    -webkit-transform 160ms ease-in-out;
  transition: opacity 160ms ease-in-out, -webkit-transform 160ms ease-in-out;
  transition: opacity 160ms ease-in-out, transform 160ms ease-in-out;
  transition: opacity 160ms ease-in-out, transform 160ms ease-in-out,
    -webkit-transform 160ms ease-in-out;
}

.js-facebook-messenger-box.rotate svg#close-icon {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.js-facebook-messenger-box svg#close-icon {
  opacity: 0;
  width: 19px;
  height: 20px;
  position: absolute;
  top: 19px;
  left: 19px;
  -webkit-transition: opacity 160ms ease-in-out, transform 160ms ease-in-out;
  -webkit-transition: opacity 160ms ease-in-out,
    -webkit-transform 160ms ease-in-out;
  transition: opacity 160ms ease-in-out, -webkit-transform 160ms ease-in-out;
  transition: opacity 160ms ease-in-out, transform 160ms ease-in-out;
  transition: opacity 160ms ease-in-out, transform 160ms ease-in-out,
    -webkit-transform 160ms ease-in-out;
}

.js-facebook-messenger-container,
.js-facebook-messenger-container-button {
  z-index: 1000;
}

.js-facebook-messenger-container {
  width: 250px;
  position: fixed;
  opacity: 0;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  bottom: 110px;
  right: 90px;
  border-radius: 10px;
  pointer-events: none;
  -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06),
    0 2px 32px rgba(0, 0, 0, 0.16);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06), 0 2px 32px rgba(0, 0, 0, 0.16);
  -webkit-transition: transform 160ms ease-in-out, opacity 160ms ease-in-out;
  -webkit-transition: opacity 160ms ease-in-out,
    -webkit-transform 160ms ease-in-out;
  transition: opacity 160ms ease-in-out, -webkit-transform 160ms ease-in-out;
  transition: transform 160ms ease-in-out, opacity 160ms ease-in-out;
  transition: transform 160ms ease-in-out, opacity 160ms ease-in-out,
    -webkit-transform 160ms ease-in-out;
}

.js-facebook-messenger-top-head {
  width: 220px;
  color: #ffffff;
  background: #1182fc;
  display: block;
  position: relative;
  width: 220px;
  background: #1182fc;
  color: #ffffff;
  text-align: center;
  line-height: 1;
  padding: 10px;
  font-size: 14px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.js-facebook-messenger-container iframe,
.js-facebook-messenger-container-button iframe {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.js-facebook-messenger-box,
.js-facebook-messenger-button,
.js-facebook-messenger-tooltip {
  z-index: 999;
}

.js-facebook-messenger-container,
.js-facebook-messenger-container-button {
  z-index: 1000;
}

.js-facebook-messenger-top-head {
  color: #ffffff;
  background: #1182fc;
  width: 220px;
}

.js-facebook-messenger-tooltip {
  color: #404040;
  background: #fff;
}

.js-facebook-messenger-container.open {
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
  pointer-events: all;
}

.js-facebook-messenger-tooltip {
  bottom: 97px;
  right: 97px;
}

.js-facebook-messenger-box.open svg#fb-msng-icon {
  opacity: 0;
}

.js-facebook-messenger-box.rotate.open svg#close-icon {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.js-facebook-messenger-box.open svg#close-icon {
  opacity: 1;
}

/* 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: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  @media (min-width: 992px) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.cart-fixed i {
  font-size: 20px;
  animation: ring_phone 1.4s infinite;
}

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

/* Toolbar */
@keyframes tada {
  0% {
    transform: scaleX(1);
  }

  10%,
  20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }

  30%,
  50%,
  70%,
  90% {
    transform: scale3d(1.3, 1.3, 1.3) rotate(3deg);
  }

  40%,
  60%,
  80% {
    transform: scale3d(1.3, 1.3, 1.3) rotate(-3deg);
  }

  to {
    transform: scaleX(1);
  }
}

@-webkit-keyframes dash {
  to {
    fill: #f79c32;
    stroke-dashoffset: 0;
  }
}

@keyframes dash {
  to {
    fill: #f79c32;
    stroke-dashoffset: 0;
  }
}

.toolbar {
  background: var(--background-static);
  width: 100%;
  padding: 3vw;
  bottom: 0px;
  position: fixed;
  z-index: 500;
  height: auto;
  left: 0px;
  max-height: 65px;
}

.toolbar ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px;
  margin: 0px;
}

.toolbar ul li {
  text-align: center;
  width: 25%;
}

.toolbar ul li a {
  display: block;
  width: 100%;
  cursor: pointer;
}

.toolbar ul li a img {
  height: 20px;
  width: 20px;
  animation: tada 1.2s infinite;
}

.toolbar ul li a span {
  color: #fff;
  font-size: 10px;
}

/* Fixbar */
.fixbar {
  bottom: 0;
  display: block;
  background: #f0eff4;
  border-top: 1px solid #ddd;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: fixed;
  margin: 0;
  z-index: 500;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  height: 50px;
}

.fixbar ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.fixbar ul li {
  margin: 0 auto 10px;
  text-align: center;
  width: 25%;
  float: left;
}

.fixbar .icon-cart-mobile,
.fixbar .icon-cart-new,
.fixbar .icon-home-new,
.fixbar .icon-hotdeal-new {
  width: 20px;
  height: 20px;
  display: block;
  margin: 8px auto 0;
}

.fixbar .icon-cart-mobile {
  background: url(../images/cart-mobile.png) no-repeat;
}

.cart-total-head-mobile {
  font-size: 10px;
  position: absolute;
  background: red;
  color: #fff !important;
  border-radius: 50%;
  height: 15px;
  width: 15px;
  line-height: 15px;
  top: 5px;
  margin-left: 5px;
}

.fixbar ul li a {
  font-size: 11px;
  text-decoration: none;
  color: #333;
}

.fixbar ul li a i {
  font-size: 20px;
}

/* Plugbar */
.plugbar {
  position: fixed;
  bottom: 0;
  left: 0;
  border-top: 1px solid #eae6e6;
  width: 100%;
  right: 0;
  max-width: 767px;
  margin: 0 auto;
  background: #ffffff;
  padding: 9px 10px 10px 7px;
  z-index: 10;
}

.plugbar ul {
  list-style: none;
  padding: 0;
  margin: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.plugbar ul li {
  width: 20%;
  float: left;
}

.plugbar ul li a {
  display: block;
  color: #696969;
  font-size: 12px;
  text-align: center;
  position: relative;
}

.plugbar ul li a i {
  font-size: 20px;
  color: #696969;
}

.plugbar ul li a span {
  position: absolute;
  width: 50px;
  height: 50px;
  top: -40px;
  left: calc(50% - 50px / 2);
  font-size: 14px;
  display: block;
  border: 1px solid rgba(234, 230, 230, 0.5);
  border-radius: 100%;
}

/* Combo Phone */
.support-online {
  position: fixed;
  z-index: 999;
  left: 10px;
  bottom: 0px;
}

.support-online a {
  position: relative;
  margin: 20px 10px;
  text-align: left;
  width: 40px;
  height: 40px;
}

.support-online i {
  width: 40px;
  height: 40px;
  background: #43a1f3;
  color: #ffffff;
  border-radius: 100%;
  font-size: 20px;
  text-align: center;
  line-height: 1.9;
  position: relative;
  z-index: 999;
}

.support-online a {
  display: block;
}

.support-online a span {
  border-radius: 2px;
  text-align: center;
  background: #67b634;
  padding: 9px;
  display: none;
  width: 180px;
  margin-left: 10px;
  position: absolute;
  color: #ffffff;
  z-index: 999;
  top: 0px;
  left: 40px;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -webkit-animation: headAnimation 0.7s 1;
  animation: headAnimation 0.7s 1;
}

.support-online a:hover span {
  display: block;
}

.support-online a span:before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 10px 0;
  border-color: transparent #67b634 transparent transparent;
  position: absolute;
  left: -10px;
  top: 10px;
}

.support-online .kenit-alo-circle-fill {
  width: 60px;
  height: 60px;
  top: -10px;
  position: absolute;
  border-radius: 100%;
  border: 2px solid transparent;
  background-color: rgba(0, 175, 242, 0.5);
  opacity: 0.75;
  right: -10px;
}

.support-online .kenit-alo-circle {
  width: 50px;
  height: 50px;
  top: -5px;
  right: -5px;
  position: absolute;
  background-color: transparent;
  border-radius: 100%;
  border: 2px solid rgba(30, 30, 30, 0.4);
  opacity: 0.1;
  border-color: #0089b9;
  opacity: 0.5;
}

.support-online .support-online .btn-support {
  cursor: pointer;
}

.support-online .mes i {
  background: orange;
}

.support-online .sms i {
  background: red;
}

.support-online .call-now i {
  background: green;
}

/* Phone Switch */
.widget-mobile {
  position: fixed;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 10px;
  z-index: 9999999;
}

#my-phone-circle {
  position: relative;
  width: 50px !important;
  height: 50px !important;
}

.wcircle-open .wcircle-icon i:before {
  content: '\f00d';
}

.wcircle-icon {
  background: #1282fc;
  border-radius: 50%;
  position: relative !important;
  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;
}

.wcircle-icon:before {
  position: absolute;
  content: '';
  width: 60px;
  height: 60px;
  background: rgba(18, 130, 252, 0.5);
  border: 1px solid #ffffff;
  border-radius: 50%;
  left: -5px;
  top: -5px;
  -webkit-animation: pulse 1s infinite ease-in-out;
  animation: pulse 1s infinite ease-in-out;
}

.wcircle-icon:after {
  position: absolute;
  content: '';
  width: 80px;
  height: 80px;
  background: rgba(18, 130, 252, 0.5);
  border-radius: 50%;
  left: -15px;
  top: -15px;
  -webkit-animation: zoomIn 2s infinite ease-in-out;
  animation: zoomIn 2s infinite ease-in-out;
}

.wcircle-menu {
  position: absolute !important;
  left: 0;
  top: 0;
  display: none;
}

.wcircle-menu-item {
  width: 50px;
  height: 50px;
  background: #1282fc;
  border-radius: 50%;
  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;
}

.wcircle-menu-item img {
  width: 50px;
  height: 50px;
  display: block;
  border-radius: 50%;
}

.wcircle-menu-item i {
  font-size: 25px;
  color: #ffffff;
  position: relative;
  z-index: 9999;
}

.wcircle-icon i {
  font-size: 25px;
  color: #ffffff;
  position: relative;
  z-index: 9999;
}

.shake-anim {
  -webkit-animation: shake-anim 1s infinite ease-in-out;
  animation: shake-anim 1s infinite ease-in-out;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}

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

a.name-newsnb {
  color: #000;
  font-size: 14px;
  margin: 0 0 10px 0;
  line-height: normal;
}

a.name-newsnb.text-split {
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

a.name-newsnb:hover {
  color: var(--color-dark-red);
}

.desc-newsnb {
  color: #333;
}

.video-main {
  position: relative;
  height: 300px;
}

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

.listvideos {
  width: 100%;
  height: 40px;
  padding: 0px 10px;
  border: 1px solid #ccc;
  color: var(--color-black);
  margin-top: 10px;
  cursor: pointer;
}

.slick-video-items1 img {
  max-height: 325px;
}

.slick-video-items2 img {
  height: 102px;
}

.pic-video {
  position: relative;
  cursor: pointer;
}

.pic-video:before {
  content: '';
  position: absolute;
  width: 50px;
  height: 35px;
  top: calc(50% - 17px);
  left: calc(50% - 25px);
  z-index: 1;
  background: url(../images/play.png) no-repeat center center;
  cursor: pointer;
  background-size: cover;
}

.pic-video img {
  width: 100%;
}

.p-relative {
  position: relative;
}

.control-video.control-owl button {
  top: -66px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #ffffff;
  left: 5px;
}

.control-video.control-owl button.owl-next {
  right: 5px;
  left: initial;
}

.pic-video-2 {
  position: relative;
  cursor: pointer;
}

.pic-video-2:before {
  content: '';
  position: absolute;
  width: 50px;
  height: 35px;
  top: calc(50% - 17px);
  left: calc(50% - 25px);
  z-index: 1;
  background: url(../images/play.png) no-repeat center center;
  cursor: pointer;
  background-size: cover;
}

.pic-video-2 img {
  width: 100%;
}

.name-video {
  font-size: 16px;
  color: var(--color-black);
  margin-bottom: 0px;
}

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

.newshome-intro .name-newshome {
  margin: 10px 0;
}

.newshome-intro .view-newshome {
  margin-top: 10px;
}

.newshome-scroll {
  width: 50%;
  overflow: hidden;
  max-height: 435px;
}

.newshome-intro-image {
  overflow: hidden;
  position: relative;
}

.news-slick {
  display: flex;
  margin-bottom: 20px;
}

.news-slick h3 {
  margin: 0;
}

.news-slick h3 a.name-newshome {
  margin-bottom: 10px;
}

.news-slick .newshome-scroll-content {
  width: calc(100% - 130px);
  padding-left: 10px;
}

.newshome-scroll-image {
  width: 120px;
  overflow: hidden;
  position: relative;
}

.flex_ttnb {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}

.newshome-intro {
  width: calc(50% - 20px);
}

.pic-newshome-normal {
  float: left;
  width: 34%;
  margin-right: 3%;
  margin-bottom: 0px;
}

.pic-newshome-normal img {
  width: 100%;
}

.info-newshome-normal {
  float: left;
  width: calc(100% - 37%);
}

.name-newshome {
  color: var(--color-black);
  font-size: 15px;
  line-height: 22px;
  line-height: normal;
  font-weight: 600;
}

.name-newshome.text-split {
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.name-newshome.text-split a {
  color: #000;
}

.time-newshome {
  color: var(--color-gray);
  margin-bottom: 10px;
}

.desc-newshome {
  color: var(--color-black);
  margin-bottom: 0px;
  text-align: justify;
}

.desc-home-cl.text-split {
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.view-newshome {
  width: 140px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ccc;
  color: #000;
}

.view-newshome:hover {
  color: #000;
}

.pic-product {
  background: #ffffff;
  position: relative;
  margin-bottom: 1rem;
  border-radius: 0;
  overflow: hidden;
}

.pic-product .image-product-2 {
  opacity: 0;
  transition: all .3s;
}

.pic-product:hover .image-product-2{
  opacity: 1;
}

.pic-product img {
  width: 100%;
}

.product-tool {
  /* opacity: 0;
   visibility: hidden; */
  position: absolute;
  width: 100%;
  left: 0px;
  bottom: 0px;
  z-index: 1;
}

.product-tool a {
  cursor: pointer;
  width: 50%;
  padding: 10px;
  text-align: center;
  color: #ffffff;
  background-color: rgb(0 0 0 / 0.6);
}

.product-tool a:hover {
  background-color: rgb(0 0 0 / 0.8);
}

.product-tool a svg {
  margin-right: 5px;
}

.product-tool a span {
  text-transform: capitalize;
  font-size: 12px;
  font-weight: 300;
}

.box-product:hover .product-tool {
  opacity: 1;
  visibility: visible;
}

.name-product {
  font-size: 14px;
  color: #0A0A0B;
  margin-bottom: 10px;
  font-weight: 400;
  min-height: 40px;
  line-height: 1.3;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}
.name-product:hover {
  color: var(--color-dark-red);
}

.name-product.text-split {
  line-clamp: 2;
  -webkit-line-clamp: 2;
}

.price-product {
  margin-bottom: 10px;
  text-align: center;
  display: flex;
}
@media (max-width: 992px) {
  .has-flashsale {
    flex-flow: row wrap;
  }

  .has-flashsale .price-flashsale,
  .has-flashsale .price-old {
    width: 100%;
  }

  .has-flashsale .price-flashsale {
    margin-bottom: 5px;
  }
}

.price-new,
.price-old {
  font-size: 15px;
  color: #242424;
  font-weight: 500;
  display: inline-block;
  width: 50%;
}

.price-new {
  color: var(--color-dark-red);
}

.price-new.full-width {
  width: 100%;
}

.price-old {
  text-decoration: line-through;
  font-weight: 300;
}

.price-per {
  position: absolute;
  top: 10px;
  left: 10px;
  color: #ffffff;
  background: #F41919;
  font-size: 13px;
  border-radius: 3px;
  width: 48px;
  height: 23px;
  text-align: center;
  line-height: 23px;
  font-weight: 500;
}

.is_new {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #ffffff;
  background: #fd9e1b;
  font-size: 13px;
  border-radius: 3px;
  width: 48px;
  height: 23px;
  text-align: center;
  line-height: 23px;
  font-weight: 600;
  text-transform: uppercase;
}

.price-flashsale {
  background: linear-gradient(141.34deg, #ffdd00 15.52%, #feb100 70.6%);
  padding: 3px 10px;
  color: #000000;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  border-radius: 3px;
  font-weight: 600;
  margin: 0 auto;
}

.price-flashsale i {
  color: red;
  -webkit-animation: tada 2s infinite linear;
  animation: tada 2s infinite linear;
}

.color-pro-page {
  cursor: pointer;
  vertical-align: top;
  position: relative;
  width: 20px;
  height: 20px;
  margin: 0 5px 5px 5px;
  transition: 0.3s;
  border-radius: 0;
}

.color-pro-page.active:after,
.color-pro-page:hover:after {
  content: '';
  position: absolute;
  bottom: -3px;
  right: -3px;
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  border: 1px solid var(--color-black);
}

.tooltip-color {
  visibility: hidden;
  max-width: 100px;
  min-width: 50px;
  background-color: #ffffff;
  color: #1d1d1b;
  text-align: center;
  border-radius: 3px;
  padding: 5px 10px;
  position: absolute;
  z-index: 1;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  font-weight: 600;
  border: 1px solid #e7e7e7;
}

.tooltip-color:after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #f9f9f9 transparent transparent transparent;
}

.color-pro-page:hover .tooltip-color {
  visibility: visible;
  bottom: calc(100% + 4px);
  opacity: 1;
  transition: all 0.5s;
}

.color-pro-page input[type='radio'] {
  display: none;
}

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

.cart-product span {
  cursor: pointer;
  width: calc(50% - 3px);
  color: #ffffff;
  text-transform: capitalize;
  text-align: center;
  padding: 7px 5px;
  border-radius: 3px;
}

.cart-add {
  background-color: var(--color-red);
}

.cart-add:hover {
  background-color: var(--color-dark-red);
}

.cart-buy {
  background-color: var(--color-green);
}

.cart-buy:hover {
  background-color: var(--color-dark-green);
}

.dm-noibat {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

.dm-noibat a {
  cursor: pointer;
  color: #333;
  transition: 0.4s;
  text-transform: capitalize;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  position: relative;
  display: block;
  background: #f7f7f7;
  border-radius: 8px;
  border: 1px solid #eaeaea;
  height: 100%;
  padding: 10px;
}

.dm-noibat a:hover,
.dm-noibat a.active {
  background: #212121;
  color: #fff;
}

.cats-bar {
  width: 50px;
  padding-top: 3px;
  position: relative;
}

.cats-bar-icon {
  width: 30px;
  cursor: pointer;
}

.cats-bar-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background: #505050;
  transition: all 0.3s;
  position: relative;
}

.cats-bar-icon span + span {
  margin-top: 5px;
}

.cats-bar-icon.active span:nth-child(1) {
  animation: ease 0.7s top forwards;
}

.cats-bar-icon.not-active span:nth-child(1) {
  animation: ease 0.7s top-2 forwards;
}

.cats-bar-icon.active span:nth-child(2) {
  animation: ease 0.7s scaled forwards;
}

.cats-bar-icon.not-active span:nth-child(2) {
  animation: ease 0.7s scaled-2 forwards;
}

.cats-bar-icon.active span:nth-child(3) {
  animation: ease 0.7s bottom forwards;
}

.cats-bar-icon.not-active span:nth-child(3) {
  animation: ease 0.7s bottom-2 forwards;
}

@keyframes top {
  0% {
    top: 0;
    transform: rotate(0);
  }

  50% {
    top: 6px;
    transform: rotate(0);
  }

  100% {
    top: 6px;
    transform: rotate(45deg);
  }
}

@keyframes top-2 {
  0% {
    top: 6px;
    transform: rotate(45deg);
  }

  50% {
    top: 6px;
    transform: rotate(0deg);
  }

  100% {
    top: 0;
    transform: rotate(0deg);
  }
}

@keyframes bottom {
  0% {
    bottom: 0;
    transform: rotate(0);
  }

  50% {
    bottom: 8px;
    transform: rotate(0);
  }

  100% {
    bottom: 8px;
    transform: rotate(135deg);
  }
}

@keyframes bottom-2 {
  0% {
    bottom: 8px;
    transform: rotate(135deg);
  }

  50% {
    bottom: 8px;
    transform: rotate(0);
  }

  100% {
    bottom: 0;
    transform: rotate(0);
  }
}

@keyframes scaled {
  50% {
    transform: scale(0);
  }

  100% {
    transform: scale(0);
  }
}

@keyframes scaled-2 {
  0% {
    transform: scale(0);
  }

  50% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

.cats-owl.list-hot {
  width: calc(100% - 50px);
}

@-webkit-keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.choose_list span,
.choose_list_news span, .choose_list2 span{
  text-transform: capitalize;
  cursor: pointer;
  display: inline-block;
  position: relative;
  padding: 5px 10px;
  font-size: 15px;
  font-weight: 500;
  background: #fe9c1b;
  border-radius: 10px 0px 10px 0;
  text-decoration: none;
  margin: 5px 2px;
  color: #ffffff;
}

.choose_list span:hover,
.choose_list_news span:hover, .choose_list2 span:hover {
  background: #f70303;
}

.choose_list a, .choose_list_news a, .choose_list2 a {
  color: #ffffff;
}

.choose_list span:last-child:after,
.choose_list_news span:last-child:after, .choose_list2 span:last-child:after {
  display: none;
}

/* .choose_list span:after,
.choose_list_news span:after {
  content: '';
  width: 1px;
  height: 10px;
  background: #ddd;
  position: absolute;
  right: 0;
  top: 6px;
} */

.choose_list span.choosed,
.choose_list_news span.choosed, .choose_list2 span.choosed {
  color: #ffffff;
  background: #f70303;
}

.choose_list span:hover,
.choose_list_news span:hover, .choose_list2 span:hover {
  color: #ffffff;
  text-decoration: none;
}

.btn_sp a {
  color: #fff;
  background: #db8815;
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  z-index: 1;
  position: relative;
}

.btn_sp a:hover {
  color: #fff;
  background-color: var(--color-dark-red);
}

.d-title-choose-list {
  margin-bottom: 10px;
  padding: 5px 0;
  margin-top: 10px;
  position: relative;
}

.d-title-choose-list:after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  background: #c8c8c8;
  height: 1px;
  content: '';
}

.d-title-choose-list .title-product {
  background: #ffffff;
  display: block;
  z-index: 1;
  padding: 0 20px 0 0;
  position: relative;
  text-transform: uppercase;
}

.d-title-choose-list .title-product h2 {
  @media (max-width:992px) {
    font-size: 18px;
 }
}

.d-title-choose-list .title-product:after {
  position: absolute;
  top: 50%;
  right: -80px;
  width: 80px;
  background: #db8815;
  height: 4px;
  content: '';
  transform: translateY(-50%);
  display: none;
  @media (min-width: 992px) {
    display: block;
  }
}

.choose_list, .choose_list2 {
  display: block;
  text-align: center;
}

/* dat lich */
.div-datlich {
  width: 46%;
}

.newsletter-booking {
  margin-bottom: 5px;
}

.newsletter-booking input {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--background-static);
  background: none;
  padding: 0;
}

.newsletter-booking textarea {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--background-static);
  background: none;
  margin-bottom: 10px;
  padding: 0;
}

.newsletter-checkbox input {
  outline: none;
  width: 15px;
  height: 15px;
}

.label-checkbox {
  color: #7e7e7e;
  position: relative;
  top: 1px;
  margin-left: 10px;
}

.booking-button input {
  width: 100%;
  height: 37px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  background-color: #f89c1d;
  border: 0;
}

.khung-datlich {
  background: rgba(255, 255, 255, 0.8);
  padding: 40px;
  border: 1px solid #f89c1d;
  border-radius: 20px;
}

.desc-dongy {
  color: #000000;
  font-size: 13px;
  font-style: italic;
  margin-top: 5px;
}

.btn-datlich {
  position: fixed;
  bottom: 455px;
  right: 10px;
  padding: 10px;
  border-radius: 5px;
  z-index: 99;
  background: #333;
  color: #fff;
  font-size: 14px;
  text-align: center;
  text-decoration: none !important;
  opacity: 0;
}

.btn-datlich i {
  font-size: 20px;
}

.btn-datlich:hover {
  color: #ffff00;
  transition: 0.2s;
}

.booking-banner {
  background-size: cover;
  position: absolute;
  top: -16px;
  right: -5px;
  width: 100%;
  height: calc(100% + 32px);
  border-radius: 0 5px 5px 0;
}

.booking-button {
  width: 80%;
  margin: 15px auto 0 auto;
}

.booking-btn-close {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #ffffff;
  opacity: 1;
  z-index: 1;
  transition: all 0.5s;
}

.booking-btn-close:hover {
  opacity: 1;
  transform: rotate(360deg);
}
/*.wave {
   width: 56px;
   height: 56px;
   background: linear-gradient(180deg, rgb(0, 183, 255), rgb(255, 48, 255));
   box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
   left: 0;
   top: -80px;
   transition: 0.4s;
}

.wave::after,
.wave::before {
   width: 200%;
   height: 200%;
   content: "";
   position: absolute;
   top: 0;
   left: 50%;
   transform: translate(-50%, -75%);
}

.wave::after {
   border-radius: 25%;
   background-color: rgba(20, 20, 20, 0.5);
   animation: wave 10s linear infinite;
}

.wave::before {
   border-radius: 40%;
   background-color: rgb(255, 48, 255);
   animation: wave 5s linear infinite;
}

@keyframes wave {
   0% {
      transform: translate(-50%, -75%) rotate(0deg);
   }

   100% {
      transform: translate(-50%, -75%) rotate(360deg);
   }
}*/

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

.category_product1 {
  padding: 60px 0;
}

.category_product1_item {
  border-radius: 8px;
}

.footer {
  margin-bottom: 0 !important;
}

.cart_ic_box {
  position: absolute;
  right: 10px;
  top: 58px;
  width: 32px;
  animation: ring_phone 1.6s infinite;
  cursor: pointer;
}

@keyframes ring_phone {
  0% {
    transform: rotate(0) scale(1) skew(1deg);
  }

  10% {
    transform: rotate(-25deg) scale(1) skew(1deg);
  }

  20% {
    transform: rotate(25deg) scale(1) skew(1deg);
  }

  30% {
    transform: rotate(-25deg) scale(1) skew(1deg);
  }

  40% {
    transform: rotate(25deg) scale(1) skew(1deg);
  }

  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }

  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}

.btn_custom {
  position: relative;
  background: transparent;
  color: #092e5b !important;
  border: 2px solid #004dbc;
  padding: 8px 16px;
  margin-top: 10px;
  display: inline-block;
  font-weight: 600;
  text-transform: uppercase;
}

.btn_custom::before,
.btn_custom::after {
  content: '';
  display: block;
  position: absolute;
  width: 10%;
  background: #fff;
  height: 4px;
  transition: all 0.45s cubic-bezier(0.86, 0, 0.07, 1);
}

.btn_custom::before {
  right: 20%;
  top: -3px;
  transform: skewX(-45deg);
}

.btn_custom::after {
  left: 20%;
  bottom: -3px;
  transform: skewX(45deg);
}

.btn_custom:hover::before {
  right: 80%;
}

.btn_custom:hover::after {
  left: 80%;
}

.newsletter_index h2 {
  color: #141414;
  font-size: 30px;
  margin-bottom: 4px;
  font-weight: 600;
}

.newsletter-group {
  display: flex;
  gap: 10px;
}

/*Sản Phẩm*/
.support-list {
  text-align: center;
  position: relative;
  margin-bottom: 20px;
  background: #f9f9fa;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 17px 10px;
}

.support-list a {
  font-size: 14px;
  color: #1a1a1a;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-block;
  margin: 10px;
  flex: auto;
}

.support-list a:hover,
.support-list a.active {
  color: var(--main-color);
}

.grid-support {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}

.item-support {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  box-shadow: 0 0 5px -1px #00000029;
  position: relative;
  padding: 10px;
}

.item-support .content {
  width: calc(100% - 75px);
}

.item-support h3 a {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: #1a1a1a;
  line-clamp: 1;
  -webkit-line-clamp: 1;
}

.item-support p {
  font-size: 14px;
  line-height: 25px;
  height: 75px;
}

.readsupport {
  margin-top: 30px;
  display: inline-block;
  border: 1px solid var(--main-color);
  color: #333;
  text-transform: capitalize;
  padding: 7px 30px;
  border-radius: 50px;
  background: #fff;
  font-weight: 500;
}

.item-support:hover h3 a {
  color: var(--main-color);
}

.readsupport:hover {
  background: var(--main-color);
  color: #fff;
}

.support-cat {
  text-align: center;
  position: relative;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.support-cat a {
  font-size: 14px;
  color: #1a1a1a;
  text-transform: uppercase;
  font-weight: 400;
  display: inline-block;
  margin: 10px;
}

.support-cat a:hover,
.support-cat a.active {
  color: var(--main-color);
}

.support-item {
  text-align: center;
  position: relative;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.support-item a {
  font-size: 14px;
  color: #1a1a1a;
  text-transform: uppercase;
  font-weight: 400;
  display: inline-block;
  margin: 10px;
}

.support-item a:hover,
.support-item a.active {
  color: var(--main-color);
}

.grid-project {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}

.item-project a.scale-img {
  position: relative;
}

.item-project a.scale-img:before {
  position: absolute;
  content: '';
  left: -40px;
  top: -40px;
  width: 40px;
  height: 40px;
  border-left: 2px solid #fff;
  border-top: 2px solid #fff;
  transition: all 0.5s;
  z-index: 5;
}

.item-project a.scale-img:after {
  position: absolute;
  content: '';
  right: -40px;
  bottom: -40px;
  width: 40px;
  height: 40px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transition: all 0.5s;
  z-index: 2;
}

.item-project a.scale-img .box-content:before {
  position: absolute;
  content: '';
  right: -40px;
  top: -40px;
  width: 40px;
  height: 40px;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  transition: all 0.5s;
  z-index: 2;
}

.item-project a.scale-img .box-content:after {
  position: absolute;
  content: '';
  left: -40px;
  bottom: -40px;
  width: 40px;
  height: 40px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transition: all 0.5s;
  z-index: 2;
}

.item-project .box-content {
  background: rgba(0, 0, 0, 0);
  transition: all 0.5s;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  text-align: center;
  z-index: 2;
}

.item-project .content {
  max-width: 300px;
  transform: scale(0);
  transition: all 0.5s;
  color: #fff;
}

.item-project:hover .box-content {
  background: rgba(0, 0, 0, 0.8);
}

.item-project:hover a.scale-img:before {
  left: 15px;
  top: 15px;
}

.item-project:hover a.scale-img:after {
  right: 15px;
  bottom: 15px;
}

.item-project:hover a.scale-img .box-content:before {
  right: 15px;
  top: 15px;
}

.item-project:hover a.scale-img .box-content:after {
  left: 15px;
  bottom: 15px;
}

.item-project:hover a.scale-img .box-content .content {
  transform: scale(1);
}

.item-project h3 {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 15px;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.item-project p {
  line-height: 25px;
  height: 75px;
}

.item-project i {
  font-size: 24px;
  margin-top: 20px;
}

.grid-product {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
  position: relative;
  z-index: 2;
}

.title_sp {
  color: #f28c38;
  font-size: 23px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
  /* 83.333% */
  padding-bottom: 5px;
  border-bottom: solid 1px;
  margin-bottom: 15px;
}

ul.ul_dm_sp li a {
  color: #000;
  text-decoration: none;
  font-size: 14px;
}

ul.ul_dm_sp li {
  padding-bottom: 10px;
}

ul.ul_dm_sp li a:hover {
  color: red;
}

.items_news_detail a.scale-img {
  max-width: 140px;
}

.info_right_nb a {
  color: #000;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  line-height: 22px;
  margin-bottom: 10px;
  display: block;
}

.items_news_detail.d-flex.justify-content-between.align-items-center {
  margin-bottom: 20px;
}

.name_cap1 {
  text-transform: uppercase;
  color: #056e1c;
  font-family: 'Roboto Slab';
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: block;
  margin-bottom: 20px;
}

.top_album_video {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.top_album_video a.album-image {
  width: 48.5%;
  border-radius: 15px;
  position: relative;
}

.col-lg-6.col-md-6.col-12.left_album_video {
  padding: 0 5px;
  position: relative;
}

a.album-image.boxaaaa {
  border-radius: 15px;
  position: relative;
}

.album-image a i {
  color: var(--primary-color2);
  font-size: 35px;
}

.album-image button {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(16, 12, 8, 0.6);
  color: var(--white-color);
  text-align: center;
  color: #ffc107;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.6px;
  flex-direction: column;
  transition: all 0.45s;
  transform: scale(0.4);
  border-radius: 10px;
  opacity: 0;
}

.album-image button i {
  color: #ffc107;
  font-size: 20px;
}

.album-image:hover a {
  transform: scale(1);
  opacity: 1;
}

.album-image:hover button {
  transform: scale(1);
  opacity: 1;
}

.album-image.active a {
  transform: scale(1);
  opacity: 1;
}

.top_album_video.all {
  margin-top: 20px;
}

.top_album_video a.album-image img {
  height: 100%;
}

.row.box_album_video {
  margin-bottom: 30px;
}

/*Scroll to top*/
.scrollToTop {
  position: fixed;
  bottom: 50px;
  right: 25px;
  height: 35px;
  width: 35px;
  cursor: pointer;
  display: block;
  border-radius: 50%;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all 400ms linear;
  -webkit-animation: floatY 2s infinite;
  -o-animation: floatY 2s infinite;
  animation: floatY 2s infinite;
}

.scrollToTop.active-progress {
  opacity: 1;
  visibility: visible;
}

.scrollToTop:after {
  position: absolute;
  font-family: 'FontAwesome';
  content: '\f077';
  text-align: center;
  line-height: 35px;
  font-size: 16px;
  color: #8f0800;
  left: 50%;
  top: 0;
  transform: translatex(-50%);
  cursor: pointer;
  display: block;
  z-index: 1;
  transition: all 400ms linear;
}

.scrollToTop svg path {
  fill: none;
}

.scrollToTop:hover svg path {
  fill: #ffffffab;
}

.scrollToTop svg.progress-circle path {
  stroke: #8f0800;
  stroke-width: 4;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  transition: all 400ms linear;
}

@keyframes floatY {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(-6px);
    -ms-transform: translateY(-6px);
    transform: translateY(-6px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

/* hotline fix */
.hotline-fix {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 11;
}

.hotline-fix a {
  width: 200px;
  height: 50px;
  display: block;
  padding: 2px 0 6px 50px;
  position: relative;
  z-index: 1;
  border-radius: 30px;
  border: 4px solid #ffc107;
  background: #fecd07;
  color: #603814;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.hotline-fix a:before {
  position: absolute;
  left: 2px;
  top: 1px;
  content: '';
  width: 39px;
  height: 39px;
  background: url(../images/hl1.png) no-repeat;
  border-radius: 50%;
  -webkit-animation-name: blink;
  -webkit-animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-name: blink;
  -moz-animation-duration: 1s;
  -moz-animation-timing-function: linear;
  -moz-animation-iteration-count: infinite;
  animation-name: blink;
  animation-duration: 0.7s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.hotline-fix a:after {
  content: '';
  position: absolute;
  width: calc(100% + 14px);
  height: calc(100% + 14px);
  top: -7px;
  left: -7px;
  border-radius: 100px;
  box-shadow: 0px 0px 7px 0px rgba(255, 255, 255, 0.55);
}

.hotline-fix a span {
  display: block;
  overflow: hidden;
  z-index: 1;
  position: relative;
  color: #603814;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

/*Menu mobile*/
body.block-scroll {
  margin: 0;
  height: 100%;
  overflow: hidden;
}

.wrap-responsive-menu-mobile {
  position: relative;
}

/* 
.wrap-responsive-menu-mobile.active .button-open-menu-mobile {
   left: 280px;
   position: absolute;
   top: 0;
   cursor: pointer;
   background: #0d62ac;
   transform: translateY(0);
   -moz-transform: translateY(0);
   -webkit-transform: translateY(0);
   -o-transform: translateY(0);
}

.wrap-responsive-menu-mobile.active .button-open-menu-mobile:before {
   top: 20px;
   background: #ffffff;
   left: 8px;
   -webkit-transform: rotate(-45deg);
   -moz-transform: rotate(-45deg);
   -ms-transform: rotate(-45deg);
   -o-transform: rotate(-45deg);
   transform: rotate(-45deg);
   box-sizing: initial;
}

.wrap-responsive-menu-mobile.active .button-open-menu-mobile:after {
   top: 20px;
   border: 0;
   left: 8px;
   height: 3px;
   background: #ffffff;
   -webkit-transform: rotate(45deg);
   -moz-transform: rotate(45deg);
   -ms-transform: rotate(45deg);
   -o-transform: rotate(45deg);
   transform: rotate(45deg);
} */

.wrap-responsive-menu-mobile.active #responsive-menu {
  left: 0;
  border-radius: 0 0 0 0;
  opacity: 1;
}

.wrap-responsive-menu-mobile.active .overlay-menu {
  opacity: 1;
  visibility: visible;
  width: 100vw;
}

.wrap-responsive-menu-mobile .overlay-menu {
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
  top: 0;
  right: 0;
}

.button-open-menu-mobile {
  color: #113466;
  font-size: 18px;
  cursor: pointer;
  position: relative;
  width: 45px;
  height: 45px;
  z-index: 90;
  background: transparent;
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -ms-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}

.button-open-menu-mobile span {
  position: absolute;
  left: 5px;
  top: 19px;
  width: 36px;
  height: 25px;
  z-index: 99;
  border-top: 3px solid #ffffff;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  animation: animationLineMenu2 2s infinite;
}

.button-open-menu-mobile:before {
  position: absolute;
  top: 12px;
  left: 8px;
  display: block;
  height: 3px;
  width: 30px;
  background: #ffffff;
  content: '';
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;

  animation: animationLineMenu1 2s infinite;
}

.button-open-menu-mobile:after {
  position: absolute;
  top: 21px;
  left: 8px;
  display: block;
  height: 6px;
  width: 30px;
  border-bottom: 3px solid #ffffff;
  content: ' ';
  box-sizing: initial;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  animation: animationLineMenu1 2s infinite;
}

.button-open-menu-mobile:hover:after {
  width: 35px;
  border-color: #1a2c5e;
}

.button-open-menu-mobile:hover span {
  left: 12px;
  width: 28px;
  border-color: #1a2c5e;
}

.button-open-menu-mobile:hover:before {
  width: 35px;
  background: #1a2c5e;
}

.block-scroll .button-open-menu-mobile {
  transform: translateX(-300px);
}

@keyframes animationLineMenu1 {
  0% {
    width: 30px;
  }

  50% {
    width: 35px;
  }

  100% {
    width: 30px;
  }
}

@keyframes animationLineMenu2 {
  0% {
    left: 5px;
    width: 36px;
  }

  50% {
    left: 12px;
    width: 28px;
  }

  100% {
    left: 5px;
    width: 36px;
  }
}

#responsive-menu {
  position: fixed;
  z-index: 1;
  background: #ffffff;
  z-index: 10000000;
  top: 0;
  left: -100%;
  width: 360px;
  height: 100vh;
  text-align: left;
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
  padding: 10px 0;
  overflow-y: scroll;
  display: flex;
  flex-flow: row wrap;
  border-radius: 0 0 100% 0;
  opacity: 0;
}

#responsive-menu .logo {
  margin-bottom: 20px;
  padding: 0 15px;
}

#responsive-menu .search-menu-mobile {
  width: 100%;
  background: #ffffff;
  border-radius: 10px;
  border: solid 1px transparent;
  border-image: linear-gradient(0.25turn, rgb(57 35 19), rgb(213 135 28), rgb(251 157 25));
  border-image-slice: 1;
}

#responsive-menu .search-menu-mobile input {
  width: calc(100% - 50px);
  height: 40px;
  float: left;
  outline: none;
  padding: 0px;
  border: 0px;
  background: transparent;
  text-indent: 18px;
  font-size: 13px;
}

#responsive-menu .search-menu-mobile p {
  float: left;
  width: 50px;
  height: 40px;
  line-height: 40px;
  cursor: pointer;
  text-align: center;
  margin: 0px;
  color: #6c757d;
  font-size: 16px;
}

#responsive-menu .wrap-search-menumb {
  margin-bottom: 20px;
  padding: 0 15px;
}

#responsive-menu .header-menu-mobile {
  width: 100%;
}

#responsive-menu .content {
  width: 100%;
}

#responsive-menu .content ul {
  list-style: none;
  padding: 0;
  width: 100%;
  display: block;
}

#responsive-menu .content ul li {
  text-align: left;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  padding: 10px 0px;
  position: relative;
  cursor: pointer;
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(0.25turn, rgb(213 135 28), rgb(253 158 27), rgba(56, 2, 155, 0));
  border-image-slice: 1;
}

#responsive-menu .content ul li a {
  color: #242424;
  font-size: 16px;
  line-height: 1.4;
  padding: 0 40px 0 15px;
  display: block;
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
}

#responsive-menu .content ul li a .active {
  color: #f9ec00;
}

#responsive-menu .content ul li a b {
  font-weight: normal;
}

#responsive-menu .content ul li ul {
  display: none;
}

#responsive-menu .content ul li:first-child {
  border-top: 1px solid #ebebeb;
}

#responsive-menu .content > ul {
  padding: 0;
  margin: 0;
}

#responsive-menu .content > ul > li ul {
  position: relative;
  background: transparent;
  margin-top: 10px;
}

#responsive-menu .content > ul li ul li a {
  padding-left: 20px;
}
#responsive-menu .content > ul li ul li a .fa-chevron-right{
  display: none;
}

#responsive-menu .content > ul li ul li:last-of-type {
  border-bottom: none;
  margin-bottom: -10px;
}

#responsive-menu .content > ul li ul li ul li a {
  padding-left: 30px;
}

#responsive-menu .content > ul li ul li ul li:last-of-type {
  border-bottom: none;
  margin-bottom: -10px;
}

#responsive-menu .content .toggle-menu {
  cursor: pointer;
  position: absolute;
  top: -2px;
  right: 10px;
  width: 30px;
  height: 100%;
  height: 42px;
}

#responsive-menu .content .toggle-menu:after {
  content: '\f078';
  font-family: 'FontAwesome';
  position: absolute;
  top: calc(50% - 10px);
  left: calc(50% - 10px);
  color: #303036;
  font-size: 18px;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

#responsive-menu .content .toggle-menu.active:after {
  transform: rotate(180deg);
  content: '\f078';
}

#responsive-menu .footer-menu-mobile {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-end;
  width: 100%;
}

#responsive-menu .footer-menu-mobile .wrap {
  width: 100%;
}

#responsive-menu .footer-menu-mobile .social {
  border-bottom: 1px solid #f2f2f2;
  padding: 15px 10px 10px 15px;
  margin-bottom: 15px;
}

#responsive-menu .footer-menu-mobile .social ul li {
  float: left;
  margin-right: 10px;
  height: 18px;
}

#responsive-menu .footer-menu-mobile .social ul li i {
  color: #fff;
  font-size: 19px;
}

#responsive-menu .footer-menu-mobile .content {
  padding: 0 15px;
}

#responsive-menu .footer-menu-mobile .content p {
  font-size: 13px;
  color: #ffffff;
  line-height: 16px;
  margin-bottom: 5px;
}

#responsive-menu .footer-menu-mobile .content p a {
  font-size: 13px;
  color: #ffffff;
  line-height: 16px;
}

#responsive-menu .footer-menu-mobile .content p:last-of-type {
  margin-top: 0;
}

.close-menu-responsive-mobile {
  width: 35px;
  height: 35px;
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 20px -5px rgba(255, 255, 255, 0.5);
  transition: 0.25s ease-in-out;
  cursor: pointer;
}

.close-menu-responsive-mobile .circle path {
  stroke: #737373;
  fill: none;
  stroke-width: 1px;
  stroke-linecap: round;
  animation: progress 3s normal linear infinite;
}

@keyframes progress {
  from {
    stroke-dasharray: 0 100;
  }
}

.close-menu-responsive-mobile span {
  display: block;
  width: 7px;
  height: 1px;
  background: #737373;
  box-shadow: 0 0 20px -5px rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  position: absolute;
}

.close-menu-responsive-mobile span:nth-child(1) {
  top: 17px;
  left: 18px;
  transform: rotate(45deg);
  transform-origin: top left;
}

.close-menu-responsive-mobile span:nth-child(2) {
  top: 17px;
  right: 18px;
  transform: rotate(-45deg);
  transform-origin: top right;
}

.close-menu-responsive-mobile span:nth-child(3) {
  bottom: 17px;
  left: 18px;
  transform: rotate(-45deg);
  transform-origin: bottom left;
}

.close-menu-responsive-mobile span:nth-child(4) {
  bottom: 17px;
  right: 18px;
  transform: rotate(45deg);
  transform-origin: bottom right;
}

.close-menu-responsive-mobile:hover {
  background: #131313;
}
.close-menu-responsive-mobile:hover span {
  background: #f2f2f2;
}
.close-menu-responsive-mobile:hover .circle path {
  stroke: #f2f2f2;
}

.mobile-menu__section {
  padding: 15px 15px 0px 15px;
}

.mobile-menu__section .mobile-menu__section-title {
  font-size: 15px;
  line-height: 1.85;
  text-transform: uppercase;
  font-weight: 500;
  font-style: normal;
  color: #1a2c5e;
}

.mobile-menu__section .mobile-menu__help-wrapper {
  color: #677279;
  display: flex;
  align-items: center;
}

.mobile-menu__section .mobile-menu__help-wrapper svg {
  margin-right: 16px;
  width: 24px;
  height: 24px;
  animation: ring_phone 1.4s infinite;
}

.mobile-menu__help-wrapper a {
  font-size: 16px;
  line-height: 22px;
  text-decoration: none;
  color: #1a2c5e;
}

.filter_block {
  display: block;
  border: 1px solid #ebebeb;
  border-radius: 5px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.filter_title:after {
  content: '';
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 8px;
  height: 6px;
  display: inline-block;
  vertical-align: middle;
  background: none;
  padding: 0;
  border: 7px solid transparent;
  border-top: 9px solid rgba(0, 0, 0, 0.54);
  border-bottom: 0;
  margin-left: 5px;
  transition: all 0.7s;
}

.filter_title {
  font-weight: 600;
  font-size: 20px;
  display: flex;
  align-items: baseline;
  color: #1a1c1d;
  cursor: pointer;
  justify-content: space-between;
}

.filter_title.active:after {
  transform: rotate(180deg);
}

.filter_block ul {
  list-style: none;
  display: block;
}

.filter_block ul li {
  margin: 0.5rem 0 0;
  display: block;
}

.filter_block ul li a {
  color: #1b1b1d;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.5s;
}

.filter_block ul li a:hover {
  color: var(--color-dark-red);
}

.filter_block ul li a span {
  border: 1px solid #333333;
  border-radius: 3px;
  width: 20px;
  height: 20px;
  display: block;
  position: relative;
}

.filter_block ul li a.checked span {
  background: #333333;
}

.filter_block ul li a.checked span:after {
  content: '\f00c';
  font-family: 'FontAwesome';
  font-size: 14px;
  position: absolute;
  top: 2px;
  right: 2px;
  z-index: 2;
  color: #ffffff;
}

.filter_block ul li a i {
  width: 1rem;
  height: 1rem;
  border-radius: 3px;
}

#filterColorList span {
  border-radius: 50%;
  width: 30px;
  height: 30px;
  transition: all 0.5s;
}

#filterColorList a:hover span {
  border: 1px solid #333333;
}

#filterColorList a span:after {
  border: 2px solid transparent;
  transition: border 1s;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  border-radius: 50%;
}

#filterColorList a:hover span:after {
  border: 2px solid #fff;
}

.filter_block #filterColorList li a.checked span:after {
  content: '';
  border: 2px solid #fff;
}

.filter_block #filterColorList li a.checked span {
  border: 1px solid #333333;
}

.filter-price-range .price-input {
  width: 100%;
  margin: 30px 0 35px;
  display: flex;
  justify-content: space-between;
}
.filter-price-range .price-input .field {
  display: flex;
  width: 90px;
  height: 30px;
  align-items: center;
}
.filter-price-range .field input {
  width: 100%;
  height: 100%;
  outline: none;
  font-size: 14px;
  border-radius: 5px;
  text-align: center;
  border: 1px solid #999;
  appearance: textfield;
  -moz-appearance: textfield;
}
.filter-price-range input[type='number']::-webkit-outer-spin-button,
.filter-price-range input[type='number']::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.filter-price-range .price-input .separator {
  width: 130px;
  display: flex;
  font-size: 19px;
  align-items: center;
  justify-content: center;
}
.filter-price-range .slider {
  height: 5px;
  position: relative;
  background: #ddd;
  border-radius: 5px;
}
.filter-price-range .slider .progress {
  height: 100%;
  left: 0;
  right: 0;
  position: absolute;
  border-radius: 5px;
  background: #1d1d1b;
}
.filter-price-range .range-input {
  position: relative;
}
.filter-price-range .range-input input {
  position: absolute;
  width: 100%;
  height: 5px;
  top: -5px;
  background: none;
  pointer-events: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.filter-price-range input[type='range']::-webkit-slider-thumb {
  height: 17px;
  width: 17px;
  border-radius: 50%;
  background: #1d1d1b;
  pointer-events: auto;
  -webkit-appearance: none;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}
.filter-price-range input[type='range']::-moz-range-thumb {
  height: 17px;
  width: 17px;
  border: none;
  border-radius: 50%;
  background: #1d1d1b;
  pointer-events: auto;
  -moz-appearance: none;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

.filter-price-range-btn {
  text-align: center;
}
.filter-price-range-btn span {
  color: #fff;
  background-color: var(--color-black);
  border-color: var(--color-black);
  display: inline-block;
  padding: 5px 15px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.5s;
}
.filter-price-range-btn span:hover {
  background-color: #dc3545;
  border-color: #dc3545;
}
.product-view-show ul {
  list-style: none;
}
.product-view-show ul li {
  width: 34px;
  height: 34px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #00ff7a26;
  float: left;
  cursor: pointer;
  font-size: 16px;
}
.product-view-show ul li.active {
  background: #004b24;
  color: #ffffff;
}
.product-view-show ul li:hover {
  background: #004b24;
  color: #ffffff;
}
/*End Filter*/

.menu ul li .cart-show-icon-menu a {
  text-decoration: none;
  padding: 0;
  overflow: initial;
}
.cart-show-icon-menu i {
  font-size: 18px !important;
  color: #212529;
  vertical-align: inherit !important;
}

.cart-show-icon-menu {
  padding-top: 4px;
}

.cart-show-icon-menu span {
  width: 23px;
  height: 23px;
  text-align: center;
  line-height: 23px;
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  background: var(--color-black);
  border-radius: 50%;
  position: absolute;
  top: -18px;
  right: -15px;
}

@media (max-width: 768px) {
  .cart-show-icon-menu {
    margin-right: 10px;
    margin-top: 5px;
  }
  .cart-show-icon-menu.has-cart {
    margin-top: 12px;
  }
  .cart-show-icon-menu i {
    font-size: 20px;
    color: #ffffff;
  }
}

.flash-sale-time-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 25px;
  margin-bottom: 30px;
}

.time-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
  padding: 5px;
  width: 60px;
  height: 60px;
  border-radius: 6px;
  background: #ffffff;
  border: 1px solid;
}

.time-value {
  color: rgba(26, 44, 94, 1);
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
}

.time-unit {
  color: #252525;
  text-align: center;
  font-size: 14px;
  font-weight: 300;
  line-height: 23.27px;
}

.qrcode-content {
  display: flex;
  align-items: center;
}
.qrcode-content-title {
  font-size: 16px;
  line-height: 22px;
  color: #e74b3c;
  font-style: italic;
  margin-left: 10px;
}
#qrcode {
  margin-top: 10px;
  border: 1px solid #e74b3c;
  display: inline-block;
}

.btn-catalogue-show {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid #ffffff;
  background: #ffffffcf;
  color: #004dbc;
  font-size: 16px;
  line-height: 22px;
  padding: 10px 15px;
  font-weight: 600;
  text-wrap: nowrap;
}
/*Album*/
.ug-thumb-wrapper.ug-tile .ug-tile-icon.ug-icon-link {
  background-image: none;
}
.ug-tile .ug-textpanel-title {
  font-weight: 600;
  text-transform: uppercase;
}
.ug-thumb-wrapper.ug-tile .ug-tile-icon.ug-icon-zoom {
  background-image: none;
}

/*Video slider*/
.slide-video-container {
  margin-top: 0;
}

.slide-video-container img {
  object-fit: cover;
}

.slide-video-container .slick-video-items {
  line-height: 0;
  position: relative;
  overflow: hidden;
}
.slide-video-container .slick-video-items img {
  width: 100%;
  opacity: 0;
  visibility: hidden;
}
.slide-video-container .slick-video-items .video-container {
  position: relative;
  padding-bottom: 44.66%;
  height: 0;
  overflow: hidden;
  z-index: 0;
}
.slide-video-container .slick-video-items .video-container embed,
.slide-video-container .slick-video-items .video-container iframe,
.slide-video-container .slick-video-items .video-container object {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.slide-video-container .slick-video-items .bg-video {
  width: 100%;
  opacity: 1;
  visibility: visible;
  z-index: 0;
  position: relative;
  height: 100%;
}
.slide-video-container .slick-video-items .bg {
  width: 100%;
  opacity: 1;
  visibility: visible;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.slide-video-container .slick-video-items .video-box {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.slide-video-container .slick-video-items video {
  position: absolute;
  top: 0%;
  left: 0%;
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: auto;
  background-size: cover;
  transition: 1s opacity;
  background-color: #000000;
}

.slide-video-container .play {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  margin: auto;
  cursor: pointer;
  background: url(../images/play_vi.png) no-repeat;
  background-size: 100% auto;
  cursor: pointer;
}

.slide-video-container .icon-video {
  width: 49px;
  height: 49px;
  position: absolute;
  bottom: 25px;
  background: url(../images/control-bg.png) no-repeat;
  cursor: pointer;
  left: 50%;
}
.slide-video-container .slick-video,
.slide-video-container .slick-video .slick-list,
.slide-video-container .slick-video .slick-list .slick-track {
  height: 100%;
}
.slide-video-container .slick-video .slick-dots {
  z-index: 15;
}
.slide-video-container .wrapfull,
.slide-video-container .wrapfull > div {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
}
.slide-video-container .wrapfull {
  display: none;
}
.slide-video-container .wrapfull .wrapvideo {
  opacity: 0;
  -webkit-transition: 1s linear;
  -moz-transition: 1s linear;
  -ms-transition: 1s linear;
  -o-transition: 1s linear;
  transition: 1s linear;
}
.slide-video-container .wrapfull.js-open {
  display: block;
}
.slide-video-container .wrapfull.js-open .wrapvideo {
  opacity: 1;
  -webkit-transition: 1s linear;
  -moz-transition: 1s linear;
  -ms-transition: 1s linear;
  -o-transition: 1s linear;
  transition: 1s linear;
}
.slide-video-container .wrapfull > div.pausevideo {
  z-index: 11;
}
.slide-video-container {
  overflow: hidden;
  position: relative;
  line-height: 0;
}
.slide-video-container .fix-height-banner {
  width: 100%;
  opacity: 0;
  visibility: hidden;
}

.slide-video-container .slick-dots {
  position: absolute;
  bottom: 30px;
  width: 100%;
  left: 0%;
  right: 0px;
  text-align: center;
  margin: auto;
}
.slide-video-container .slick-dots li {
  width: 7px;
  height: 7px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.6);
  margin: 0px 5px;
  cursor: pointer;
  transition: all 0.3s;
}
.slide-video-container .slick-dots li button {
  display: none;
}
.slide-video-container .slick-dots li.slick-active {
  width: 20px;
  background: #d0841a;
}
.slick-video-items {
  position: relative;
}
.slick-dotted.slick-slider {
  margin-bottom: 0px !important;
}

/*====*/
.sound {
  border-radius: 999px;
  overflow: hidden;
  height: 40px;
  width: 40px;
  position: absolute;
  bottom: 20px;
  left: 10px;
  margin: auto;
  z-index: 91;
  background-size: cover !important;
  cursor: pointer;
  transition: all 0.3s;
  background-size: 90% !important;
  background-position: center !important;
}
.volumeoff {
  background: url(../images/volumeoff.png) #d0841a;
}
.volumeon {
  background: url(../images/volumeon.png) #d0841a;
}
.sound:hover {
  transform: scale(1.1);
}

@media (max-width: 1024px) {
  .slide-video-container .slick-dots {
    width: 100%;
    margin-left: 0;
    top: auto;
    bottom: 10px;
    padding: 0px;
    left: 0;
  }
}
@media (max-width: 767px) {
  .slide-video-container .play {
    width: 50px;
    height: 50px;
  }
  .sound {
    transform: scale(0.6);
    bottom: 5px;
  }
}

@media (max-width: 639px) {
  .slide-video-container .slick-dots {
    bottom: 10px !important;
    padding: 0px;
  }
}

.search-full-view-btn {
  font-size: 20px;
  cursor: pointer;
}

.search-full-view {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #ffffff;
  visibility: hidden;
  opacity: 0;
  transition: all .5s;
}

.search-full-view.is-open {
  opacity: 1;
  visibility: visible;
  z-index: 20;
}

.search-full-view-close {
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
  fill: #000000;
}

.search-full-view-content .search{
  width: 460px;
  background: #ffffff;
  border-radius: 5px;
  border: none;
}

.search-full-view-content .search input {
    width: calc(100% - 70px);
    height: 60px;
    float: left;
    outline: none;
    padding: 0;
    border: 0;
    background: transparent;
    text-indent: 18px;
    font-size: 18px;
}

.search-full-view-content .search p.search-btn-submit {
  float: left;
  width: 60px;
  height: 60px;
  line-height: 60px;
  cursor: pointer;
  text-align: center;
  margin: 0;
  color: #F99D1B;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.title-main-start {
  margin-bottom: 25px;
  font-family: "Montserrat", sans-serif;
}

.title-main-start span{
  text-transform: uppercase;
  color: #0a0a0b;
  font-weight: 600;
  font-size: 18px;
  line-height: 2.3;
  @media (min-width: 991px) {
    font-size: 26px;
  }
}

.navcontainer-product-styled {
  /* position: absolute;
  right: 0;
  top: 5px; */
}

.navcontainer-product-styled .owl-prev, .navcontainer-product-styled .owl-next{
  border: 2px solid #fd9e1b;
  background: #fd9e1b;
  height: 36px;
}

.navcontainer-product-styled .owl-prev svg, .navcontainer-product-styled .owl-next svg{
  height: 30px;
}

.navcontainer-product-styled .owl-prev {
  margin-right: 15px;
}

.navcontainer-product-styled .owl-prev:hover, .navcontainer-product-styled .owl-next:hover{
  border: 2px solid #d38519;
}

.wrap-tieuchi-homepage {
  margin: 30px auto;
}

.tieuchi-container {
  display: flex;
  display: -webkit-flex;
  flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
}

.items-tieuchi {
  text-align: center;
  border: 1px solid #f4f4f7;
  padding: 20px 15px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  width: 50%;
  margin: -1px 0 0 -1px;

  @media (min-width: 992px) {
    width: 25%;
    margin: 0 0 0 -1px;
  }
}

.items-tieuchi:hover .image-tieuchi{ 
  transform: translateY(-10px);
}

.image-tieuchi{ 
  transition: all .5s;
}

.name-tieuchi {
  font-size: 20px;
  line-height: 26px;
  font-weight: 600;
  margin:10px 0 2px 0;
  color: #666;
}

.desc_tieuchi {
  color: #666;
  font-size: 16px;
  line-height: 22px;
}

.image-tieuchi-content {
  width: 80px;
  margin: 0 auto;
}

.background-category-menu-container {
  overflow: hidden;
  width: 100%;
  padding-top: 25%;
  position: relative;
}

.background-category-menu-container:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: .3;
}

.background-category-menu {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-animation-name: background-category-menu;
  animation-name: background-category-menu;
  -webkit-animation-duration: 4s;
  animation-duration: 4s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
}

.background-category-menu-content {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 2;
}

.background-category-menu-content-title {
  font-size: 30px;
  line-height: 36px;
  font-weight: 600;
}

.background-category-menu-content-desc {
  font-size: 18px;
  line-height: 30px;
}

@-webkit-keyframes background-category-menu {
  from {
      -webkit-transform: scale3d(1.5, 1.5, 1.5);
      transform: scale3d(1.5, 1.5, 1.5)
  }

  to {
      -webkit-transform: scale3d(1, 1, 1);
      transform: scale3d(1, 1, 1)
  }
}

@keyframes background-category-menu {
  from {
      -webkit-transform: scale3d(1.5, 1.5, 1.5);
      transform: scale3d(1.5, 1.5, 1.5)
  }

  to {
      -webkit-transform: scale3d(1, 1, 1);
      transform: scale3d(1, 1, 1)
  }
}

.contact-form .btn-primary {
  color: #ffffff;
  background-color: #ffc107;
  border-color: #ffc107;
  text-transform: uppercase;
  font-weight: 600;
  width: 100px;
  margin-right: 10px;
}

.contact-form .btn-primary:hover {
  background-color: #d28417;
  border-color: #d28417;
}

.right-detail-page {
  padding: 0 8px 30px 8px;
  line-height: normal;
  margin-top: 0px;
  border-radius: 16px;
  /* background: rgba(249, 246, 242, 0.50);
  box-shadow: 32px 16px 40px 8px rgba(0, 0, 0, 0.08); */
  padding-bottom: 20px;
}

.right-detail-page--module .right-detail-page--title {
  color: var(--Black, #1B1B1D);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 16px;
  display: block;
  position: relative;
}

.right-detail-page--module .right-detail-page--title:after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  background: #044113;
  width: 50%;
  height: 2px;
}


/* Search */
.right-detail-page--search {
  width: 100%;
  background: #ffffff;
  border-radius: 10px;
  border: solid 1px;
}

.right-detail-page--search p {
  float: left;
  width: 50px;
  height: 40px;
  line-height: 40px;
  cursor: pointer;
  text-align: center;
  margin: 0px;
  color: #6c757d;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.right-detail-page--search input {
  width: calc(100% - 50px);
  height: 40px;
  float: left;
  outline: none;
  padding: 0px;
  border: 0px;
  background: transparent;
  text-indent: 18px;
  font-size: 13px;
}

.right-detail-page--search input::-webkit-input-placeholder {
  color: #313131;
}

.right-detail-page--search input:-moz-placeholder {
  color: #313131;
}

.right-detail-page--search input::-moz-placeholder {
  color: #313131;
}

.right-detail-page--search input:-ms-input-placeholder {
  color: #313131;
}

/* Seen */

.right-detail-page--items-seen {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.right-detail-page--image-seen {
  width: 120px;
  overflow: hidden;
}

.right-detail-page--info-seen {
  width: calc(100% - 130px);
}

.right-detail-page--info-seen-date {
  color: #1B1B1D;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.right-detail-page--info-seen a {
  color: #1B1B1D;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
.right-detail-page--info-seen a:hover {
  color: var(--color-dark-red);
}
/* Menu */
.right-detail-page--module {
  margin-bottom: 45px;
}

.right-detail-page--item-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.right-detail-page--item-list ul li {
  display: block;
  padding: 10px 25px 10px 10px;
  border-bottom: 1px solid #ccc;
  position: relative;
  background: url(../assets/images/vector-right.svg) no-repeat top 18px left 0px;
  background-size: 8px 8px;
}

.right-detail-page--item-list ul li ul {
  display: none;
}

.right-detail-page--item-list ul li:last-child {
  border: none;
}

.right-detail-page--item-list ul li span {
  position: absolute;
  right: 6px;
  top: 0;
  display: block;
  width: 14px;
  height: 100%;
  background: url(../assets/images/muiten-menu.png) no-repeat center;
  cursor: pointer;
  max-height: 44px;
  transition: 0.3s;
  cursor: pointer;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.right-detail-page--item-list ul li span.active {
  transform: rotate(180deg);
}

.right-detail-page--item-list a {
  color: #1B1B1D;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.right-detail-page--item-list a svg {
  margin-right: 5px;
}

.right-detail-page--item-list a:hover {
  color: var(--color-dark-red);
}

.right-detail-page--item-list a:hover svg {
  filter: brightness(0) saturate(100%) invert(80%) sepia(26%) saturate(3102%) hue-rotate(354deg) brightness(102%) contrast(101%);
}

/* Tags */
.right-detail-page--tags a {
  border-radius: 3px;
  display: block;
  padding: 5px 10px;
  gap: 8px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  line-height: 20px;
  text-decoration: none;
  margin-right: 10px;
  margin-bottom: 10px;
  background: #1B1B1D;
  position: relative;
  border: solid 1px #1B1B1D;
  transition: all 1s;
}

.right-detail-page--tags a:after {
  content: '';
  width: 6px;
  height: 6px;
  position: absolute;
  border-radius: 50% 50%;
  background: #ffffff;
  top: 3px;
  left: 3px;
}

.right-detail-page--tags a:hover {
  color: #1B1B1D;
  background-color: #ffffff;
}

.right-detail-page--tags a:hover:after {
  background: #1B1B1D;
}

.right-detail-page--info-seen a:hover {
  color: var(--color-dark-red);
}

/* News */
.right-detail-page-news--item {
  display: flex;
  margin-bottom: 15px;
}

.right-detail-page-news--item h3 {
  margin: 0;
}

.right-detail-page-news--info--name {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 18px;
  color: #212429;
  font-weight: 600;
  transition: all .5s;
}
.right-detail-page-news--info--name:hover {
  color: var(--color-dark-red);
}
.right-detail-page-news--image {
  width: 120px;
  overflow: hidden;
}
.right-detail-page-news--info {
  width: calc(100% - 130px);
  padding-left: 15px;
}

.coupon-procart {
  display: none !important;
}

.wrap-step-homepage {
  padding: 50px 0;
  margin-top: 30px;
}

.step-container {
  display: flex;
  justify-content: space-between;
  display: -webkit-flex;
  flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
}


.step-items {
  text-align: center;
  width: calc(50% - 10px);
  margin: 0 5px 15px 5px;

  @media (min-width: 992px) {
    width: calc(20% - 20px);
    margin: 0 10px 10px 10px;
  }
}

.step-items:first-of-type{
  @media (max-width: 992px) {
    width: 100%;
  }
}

.step-items:hover .step-image{
  transform: translateY(-10px);
}

.step-items .step-image {
  transition: all .5s;
}

.step-image {
  width: 100px;
  height: 100px;
  background: #fb9c1a;
  border-radius: 50%;
  padding: 15px;
  margin: 0 auto 70px auto;
  position: relative;
}

.step-image:after {
  content: '';
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translate(-50%, 0);
  border: 2px solid #fb9c1a;
  width: 14px;
  height: 14px;
  border-radius: 50%;
}

.step-image:before {
  content: '';
  position: absolute;
  top: calc(100% + 28px);
  left: 50%;
  transform: translate(-50%, 0);
  background: #fb9c1a;
  width: 1px;
  height: 35px;
}

.step-image span {
  position: absolute;
  top: 0;
  right: -15px;
  width: 30px;
  height: 30px;
  background: #ffffff;
  border-radius: 50%;
  line-height: 30px;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
}

.step-name {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 26px;
  margin-bottom: 10px;
  color: #54392b;
  @media (min-width: 992px) {
    font-size: 18px;
  }
}

.step-desc {
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  color: var(--color-black);
}

.title-main-step {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}
/* 
.title-main-step:after {
  content: 'Phước Thịnh';
  font-size: 50px;
  color: #d5871c;
  position: absolute;
  top: 15px;
  left: 0;
  width: 100%;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
  z-index: 0;
  opacity: .3;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: #00000000;
  -webkit-text-stroke-width: 2.5px;
  -webkit-text-stroke-color: #ff9400;

  @media (min-width: 992px) {
    font-size: 76px;
    top: 2px;
  }
} */

.title-main-step p{
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  color: #fb9c1a;
}

.title-main-step span{
  font-size: 22px;
  font-weight: 600;
  line-height: 32px;
  color: #2f2f2f;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
  @media (min-width: 992px) {
    font-size: 26px;
  }
}

.nav-tab-custom button {
  position: relative;
  outline: none !important;
  border: 0 !important;
  color: #111;
  font-size: 16px;
  font-weight: 600;
}

.nav-tab-custom button:after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  background: #e07425;
  height: 3px;
  width: 100%;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform 0.5s;
}

.nav-tab-custom button.active:after {
  transform-origin: left;
  transform: scaleX(1);
}

.nav-tab-custom button.active {
  background: transparent !important;
  border: 0;
  color: #e07425;
}

.nav-tab-content-custom ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-tab-content-custom ul li {
  position: relative;
  padding-left: 25px;
}

.nav-tab-content-custom ul li:after {
  content: "\f058";
  display: block;
  clear: both;
  font-family: "Font Awesome 6 Pro";
  position: absolute;
  top: 0;
  left: 0px;
  color: green;
  font-weight: bold;
}

.footer-article-items {
  @media (max-width: 991px) {
    margin-bottom: 20px;
  }
}

.title-product2 {
  background: #ffffff;
  display: block;
  z-index: 1;
  padding: 0 20px 0 0;
  position: relative;
  text-align: center;
  width: 100%;
}

.d-title-choose-list-2 {

}

#popup-booking .modal-content {
  background-color: #f1f1f1;
  text-align: center;
}

#popup-booking .booking-cartLabel-desc {
  max-width: 365px;
  margin: 0 auto;
  margin-bottom: 20px;
}

#popup-booking .newsletter-booking input {
  border-radius: 0;
  border: none;
  border: 1px solid #252525;
  background: #ffffff;
  padding: 20px 15px 5px 10px;
  margin-bottom: 10px;
}

#popup-booking .form-floating.form-floating-cus > label {
  padding: 12px 10px;
  color: var(--color-gray);
}

#popup-booking .booking-button input {
  width: 40%;
  height: 37px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  background-color: #c5a47e;
  border: 0;
}

#popup-booking .booking-button input:hover {
  background-color: #000000;
}