/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --color-black: 0, 0, 0;
  --color-default: 58, 56, 63;
  --color-primary: 46, 21, 94;
  --color-primary-90: 51, 24, 100;
  --color-primary-10: 139, 97, 215;
  --color-secondary: 178, 166, 200;
  --color-dark: 58, 56, 63;
  --color-white: 255, 255, 255;
  --color-grey: 136, 136, 136;
  --color-grey-2: 188, 186, 190;
  --color-yellow: 211, 170, 23;
  --color-red: 255, 83, 83;
}

html {
  color: #434343;
  font-size: 16px;
  line-height: 1.4;
}

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  background-color: transparent;
  border-top: 1px solid #F3F3F6;
  margin: 1em 0;
  padding: 0;
  opacity: 1;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
}

a {
  color: rgb(var(--color-primary));
  text-decoration: none;
  transition: all 100ms ease-in-out;
}

a:hover,
a:focus {
  text-decoration: none;
  color: rgb(var(--color-primary-10));
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

body {
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgb(var(--color-default));
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ========== Typography ========== */

.poppins {
  font-family: 'Poppins';
}

h1 {
  font-size: 56px;
  line-height: 73px;
}

h2 {
  font-size: 46px;
  line-height: 69px;
}

h3 {
  font-size: 36px;
  line-height: 54px;
}

h4 {
  font-size: 28px;
  line-height: 40px;
}

h5 {
  font-size: 23px;
  line-height: 34px;
}

.text-xxxs {
  font-size: 10px;
  line-height: 18px;
}

.text-xxs {
  font-size: 12px;
  line-height: 20px;
}

.text-xs {
  font-size: 14px;
  line-height: 28px;
}

.text-md {
  font-size: 18px;
  line-height: 27px;
}

.text-xxl {
  font-size: 20px;
  line-height: 20px;
}

.lh-auto {
  line-height: normal;
}

/* ========== Colors ========== */
.color-black {
  color: rgb(var(--color-black));
}

.color-white {
  color: rgb(var(--color-white));
}

.color-dark {
  color: rgb(var(--color-dark));
}

.color-grey {
  color: rgb(var(--color-grey));
}

.color-grey-2 {
  color: rgb(var(--color-grey-2));
}

.color-primary {
  color: rgb(var(--color-primary));
}

.color-default {
  color: rgb(var(--color-default));
}

.color-secondary {
  color: rgb(var(--color-secondary));
}

.color-red {
  color: rgb(var(--color-red));
}

/* ========== Forms & Input ========== */

.form-control {
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 400;
  background-clip: padding-box;
  background-color: #FFFFFF;
  border: 1px solid #E9E7EC;
  border-radius: 4px;
}

.form-select {
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 400;
  background-clip: padding-box;
  border: 1px solid #E9E7EC;
  border-radius: 4px;
}

.form-control:focus,
.form-select:focus {
  color: rgb(var(--color-default));
  background-color: transparent;
  border-color: rgb(var(--color-primary));
  outline: 0;
  box-shadow: none;
}

.form-control:disabled {
  background-color: #FFFFFF;
  border: 1px solid #E9E7EC;
}

.form-label {
  font-family: "Poppins";
  position: relative;
  font-size: 12px;
}

.form-label.required::after {
  content: "*";
  color: #E22C42;
}

.modal-search {
  background: #FFFFFF;
  border-radius: 6px;
  padding: 10px;
}

.modal-search .form-control {
  border: 1px solid #582CA7;
  padding: 12px 45px;
  font-family: 'Poppins';
}

.main-search .form-control {
  border: 1px solid #BCBABE;
  padding: 12px 45px;
  font-family: 'Poppins';
}

.ico-search {
  position: absolute;
  left: 15px;
  top: 15px;
  z-index: 1;
  font-size: 25px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgb(var(--color-primary));
}

.main-search .ico-search {
  left: 5px;
  top: 5px;
}

.main-search .btn-close-search {
  right: 5px;
  top: 5px;
}

.main-search .btn-delete-suggest {
  right: 50px;
  top: 10px;
}

.list-search {
  display: flex;
}

.img-search {
  width: 100px;
  height: 100px;
  border-radius: 6px;
  overflow: hidden;
}

.img-search img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  object-position: center;
}

.search-info {
  width: calc(100% - 100px);
  padding-left: 20px;
}

/* ========== Button ========== */

.btn {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  padding: 14px 15px;
  border-radius: 4px;
}

.btn.sm {
  padding: 10px 15px;
}

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

.btn-primary {
  background-color: rgb(var(--color-primary));
  border-color: rgb(var(--color-primary));
  color: rgb(var(--color-white));
  position: relative;
}

.btn-primary:hover,
.btn-primary:focus {
  background: #532D9B;
  border-color: #532D9B;
  color: rgb(var(--color-white));
}

.btn-primary.shine::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(-45deg,
      transparent 50%,
      rgba(255, 255, 255, 0.03) 58%,
      rgba(255, 255, 255, 0.16) 67%,
      transparent 68%);
  background-size: 200% 100%;
  background-position: 120% 0;
  transition: 0.7s;
  filter: blur(2px);
}

.btn-primary.shine:hover::after {
  background-position: -55% 0;
}

.btn-primary.shine:hover {
  background: rgb(var(--color-primary));
  border-color: rgb(var(--color-primary));
}

.btn-blur {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(2px);
  color: rgb(var(--color-white));
}

.btn-blur:hover {
  background: rgba(255, 255, 255, 1);
  color: rgb(var(--color-primary));
}

.btn-border-white {
  background-color: transparent;
  border: 1px solid rgb(var(--color-white));
  color: rgb(var(--color-white));
}

.btn-border-white:hover {
  background-color: rgb(var(--color-white));
  border: 1px solid rgb(var(--color-white));
  color: rgb(var(--color-primary));
}

.btn-border-primary {
  background-color: transparent;
  border: 1px solid rgb(var(--color-primary));
  color: rgb(var(--color-primary));
}

.btn-border-primary:hover {
  background-color: rgb(var(--color-primary));
  border: 1px solid rgb(var(--color-primary));
  color: rgb(var(--color-white));
}

.btn-close-search {
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 2;
  padding: 5px;
  font-size: 25px;
  color: rgb(var(--color-primary));
}


/* ========== Header ========== */

.header {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 150;
}

.header.is-sticky,
.header.stay-sticky {
  background: rgb(var(--color-white));
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.04);
}

.header-inner {
  padding: 15px 0;
  display: flex;
  position: relative;
  justify-content: space-between;
  align-items: center;
}

.right-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.main-menu {
  display: flex;
  gap: 30px;
  list-style: none;
  padding-left: 0;
  align-items: center;
  margin-bottom: 0;
  margin-right: 20px;
}

.main-menu li {
  position: relative;
}

.main-menu li a {
  color: rgb(var(--color-white));
  font-size: 14px;
  position: relative;
}

.main-menu li a.active {
  font-weight: 600;
}

.header.is-sticky .main-menu li a,
.header.stay-sticky .main-menu li a {
  color: rgb(var(--color-default));
}

.main-menu li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  height: 2px;
  background-color: rgb(var(--color-white));
  width: 0;
  transition: all 150ms ease-in-out;
}

.header.is-sticky .main-menu li a::after,
.header.stay-sticky .main-menu li a::after {
  background-color: rgb(var(--color-default));
}

.main-menu li a:hover {
  color: rgb(var(--color-white));
}

.btn-menu {
  color: rgb(var(--color-white));
  padding: 0;
  font-weight: 400;
  vertical-align: middle;
  position: relative;
}

.header.is-sticky .btn-menu,
.header.stay-sticky .btn-menu {
  color: rgb(var(--color-default));
}

.btn-menu.active {
  font-weight: 600;
}

.btn-menu::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  height: 2px;
  background-color: rgb(var(--color-white));
  width: 0;
  transition: all 150ms ease-in-out;
}

.header.is-sticky .btn-menu::before,
.header.stay-sticky .btn-menu::before {
  background-color: rgb(var(--color-default));
}

.btn-menu::after {
  content: "\e902";
  font-family: 'icomoon';
  font-size: 12px;
}

.btn-menu:hover {
  color: rgb(var(--color-white));
}

.main-menu li a:hover::after,
.btn-menu:hover::before {
  width: 100%;
}

.home-dropdown li a {
  color: rgb(var(--color-default));
}

.home-dropdown li a::after {
  display: none;
}

.home-dropdown li a:hover,
.home-dropdown li a:focus {
  background: rgb(var(--color-primary));
}

.header.is-sticky .home-dropdown li a:hover,
.header.is-sticky .home-dropdown li a:focus,
.header.stay-sticky .home-dropdown li a:hover,
.header.stay-sticky .home-dropdown li a:focus {
  color: rgb(var(--color-white));
}

.home-dropdown li a:focus {
  color: rgb(var(--color-white));
}

.home-dropdown li:last-child::after {
  display: none;
}

.main-menu li:last-child::after {
  content: "";
  font-weight: 200;
  width: 1px;
  height: 65%;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  margin-left: 15px;
  background-color: rgb(var(--color-white));
}

.header.is-sticky .main-menu li:last-child::after,
.header.stay-sticky .main-menu li:last-child::after {
  background-color: #acacac;
}

.btn-circle-top {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(2px);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgb(var(--color-white));
  font-size: 16px;
  position: relative;
}

.header.is-sticky .btn-circle-top,
.header.stay-sticky .btn-circle-top {
  background: #F0ECFA;
  backdrop-filter: blur(2px);
  color: rgb(var(--color-primary));
}

.btn-circle-top:hover {
  background: rgba(255, 255, 255, 1);
  color: rgb(var(--color-primary));
}

.header.is-sticky .btn-circle-top:hover,
.header.stay-sticky .btn-circle-top:hover {
  background: rgb(var(--color-primary));
  backdrop-filter: blur(2px);
  color: rgb(var(--color-white));
}

.btn-lang {
  display: flex;
  align-items: center;
  padding: 3px 5px;
  font-weight: 400;
  border: 1px solid #fff;
  color: rgb(var(--color-white));
  border-radius: 50px;
  background-color: transparent;
}

.header.is-sticky .btn-lang,
.header.stay-sticky .btn-lang {
  border: 1px solid #F4F4F4;
  color: rgb(var(--color-default));
}

.btn-lang:hover {
  color: rgb(var(--color-default));
  background-color: rgb(var(--color-white));
}

.img-flag {
  padding-top: 3px;
}

.btn-lang::after {
  content: "\e902";
  font-family: 'icomoon';
  font-size: 13px;
}

.dropdown-lang li a {
  font-size: 14px;
}

.dropdown-lang li a:hover,
.dropdown-lang li a:focus {
  color: rgb(var(--color-white));
  background-color: rgb(var(--color-primary));
}

.btn-toggle {
  padding: 0;
}

.logo img,
.btn-toggle img {
  filter: brightness(0) invert(1);
}

.header.is-sticky .logo img,
.header.is-sticky .btn-toggle img,
.header.stay-sticky .logo img,
.header.stay-sticky .btn-toggle img {
  filter: none;
}

/* ========== Menu Mobile ========== */
.mobile-nav {
  max-width: 350px;
  height: 100vh;
  background-color: rgb(var(--color-white));
  position: fixed;
  left: -350px;
  top: 0;
  z-index: 190;
  width: 100%;
  padding: 30px;
  transition: all 150ms ease-in-out;
}

.mobile-nav.show {
  left: 0;
}

.mobile-nav.show::before {
  content: '';
  width: calc(100% - 350px);
  background: rgba(0, 0, 0, 0.4);
  height: 100%;
  top: 0;
  right: 0;
  position: fixed;
  opacity: 0;
  z-index: -1;
}

.mobile-nav.show::before {
  opacity: 1;
}

.header-mobile {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.content-mobile {
  height: calc(100vh - 240px);
  display: flex;
  align-items: center;
}

.btn-close-menu {
  padding: 0;
  font-size: 26px;
}

.mobile-menu {
  padding-left: 0;
  list-style: none;
  width: 100%;
}

.home-mobile {
  padding: 12px 0;
  font-weight: 500;
  font-size: 16px;
}

.mobile-menu li {
  margin: 10px 0;
  width: 100%;
  border-bottom: 1px solid #f5f5f5;
}

.mobile-menu li a {
  font-size: 16px;
  font-weight: 500;
  color: rgb(var(--color-default));
  display: block;
  padding-bottom: 15px;
}

.mobile-menu li a.active {
  color: rgb(var(--color-primary));
}

.list-home {
  margin-bottom: 10px;
}

.list-home li {
  margin: 0px 0;
  border: 0;
}

.list-home li a {
  padding: 5px 0;
  border: 0;
}

.home-mobile {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.home-mobile.active {
  color: rgb(var(--color-primary));
}

.home-mobile::after {
  content: "\e902";
  font-family: 'icomoon';
  font-size: 13px;
}

.social-mobile {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.social-mobile li a {
  background: #F0ECFA;
  backdrop-filter: blur(2px);
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 18px;
  outline-color: rgb(var(--color-primary));
}

.social-mobile li a:hover {
  background: rgb(var(--color-primary));
  color: rgb(var(--color-white));
}

/* ========== Content ========== */

.sliderHero .swiper-slide {
  background-size: cover;
  background-position: center center;
  text-align: center;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-inner {
  background-size: cover;
  background-position: center;
  padding: 190px 0 120px;
  max-height: 480px;
  height: 100%;
}

.hero-inner.contact {
  position: relative;
  padding: 190px 0;
  max-height: 515px;
}

.category-product,
.recomendation-product {
  padding: 60px 0;
}

.type-materials {
  border-bottom: 2px solid #DBDBDB;
}

.btn-type {
  padding: 14px 0;
  border-radius: 0;
  border-bottom: 2px solid transparent;
  border-right: 0;
  border-top: 0;
  border-left: 0;
  font-size: 12px;
  line-height: 20px;
  font-weight: 400;
  font-family: 'Poppins';
  color: rgb(var(--color-grey));
}

.btn-type.active,
.btn-type:hover {
  border-bottom-color: rgb(var(--color-primary));
  color: rgb(var(--color-primary));
}

.btn-type.active,
.btn-materials.active {
  font-weight: 600;
}

.sliderType,
.sliderType-2 {
  margin-bottom: -2px;
}

.type-materials,
.materials {
  margin-bottom: 15px;
}

.btn-materials {
  font-family: 'Poppins';
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  color: rgb(var(--color-grey));
  border: 1px solid #DBDBDB;
  border-radius: 6px;
  padding: 7px 13px;
}

.btn-materials:hover,
.btn-materials.active {
  background: #E1DCEA;
  border: 1px solid #2E155E;
  color: #2E155E;
}

.outer-color {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border-width: 1px;
  border-style: solid;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
}

.inner-color {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.variant {
  display: flex;
  gap: 5px;
  align-items: center;
}

.variant-items label {
  background: #2E155E;
  border-radius: 6px;
  color: rgb(var(--color-white));
  font-size: 10px;
  padding: 3px 5px;
  cursor: pointer;
}

.variant-items.md label {
  font-size: 12px;
  padding: 3px 5px;
}

.variant-items.secondary label {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(2px);
  color: rgb(var(--color-white));
}

.variant-items input:checked+label {
  background: #532d9a;
}

.variant-items.secondary input:checked+label {
  background: rgba(255, 255, 255, 0.8);
  color: rgb(var(--color-primary));
}

.img-product {
  position: relative;
  cursor: pointer;
}

.product-overlay {
  position: absolute;
  background: rgba(255, 255, 255, 0.6);
  width: 100%;
  height: 100%;
  display: flex;
  z-index: 50;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  transition: all 150ms ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.img-product:hover .product-overlay {
  opacity: 1;
  visibility: visible;
}

.po-inner {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-cart {
  padding: 0;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgb(var(--color-primary));
  font-size: 18px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  position: relative;
}

.btn-cart:hover {
  background-color: #dddddd;
}

.btn-cart::after {
  content: "\e912";
  position: absolute;
  font-size: 8px;
  font-family: 'icomoon';
  color: rgb(var(--color-white));
  width: 10px;
  height: 10px;
  z-index: 10;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(var(--color-primary));
  top: 3px;
  right: 3px;
}

.btn-eye {
  font-size: 25px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgb(var(--color-primary));
  color: rgb(var(--color-white));
  display: flex;
  justify-content: center;
  align-items: center;
}

.slider-box {
  padding-bottom: 30px;
  border-bottom: 1px solid #E7E7E7;
}

.slider-box.colors {
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2)
}

.nav-slider-bottom {
  position: relative;
  width: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer {
  background: #ECECF5;
  padding: 80px 0;
}

.link-footer {
  padding-left: 0;
  list-style: none;
}

.link-footer li {
  margin-bottom: 20px;
}

.link-footer li a {
  font-weight: 400;
  font-size: 13px;
  line-height: 24px;
  display: block;
  color: rgb(var(--color-default));
}

.link-footer li a:hover {
  color: rgb(var(--color-primary));
}

.social-footer {
  display: flex;
  padding-left: 0;
  list-style: none;
  gap: 10px;
}

.social-footer li a {
  font-size: 25px;
}

.payment {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.payment-item {
  text-align: center;
  border: 1px solid #DBDDE0;
  border-radius: 2px;
  padding: 5px;
}

.footer-bottom {
  margin-top: 25px;
  border-top: 1px solid #D3D3D3;
  padding-top: 20px;
}

.new-color {
  background-size: cover;
  background-position: center;
  padding: 80px 0;
}

.event {
  padding: 60px 0;
}

.box-event {
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  padding: 50px;
}

.box-yellow {
  background-color: rgb(var(--color-yellow));
  color: rgb(var(--color-white));
  display: inline-block;
  border-radius: 3px;
  padding: 5px;
}

.reason {
  padding: 60px 0;
  background: linear-gradient(286.61deg, #E9F6EC 0%, #E8E8F2 0.01%, #FFFFFF 100%);
}

.reason.white {
  background: rgb(var(--color-white));
}

.reason p {
  line-height: 28px;
}

.vodiapicker {
  display: none;
}

#a {
  padding-left: 0px;
  margin-bottom: 0;
}

#a img,
.btn-select img {
  width: 19px;
}

#a li {
  list-style: none;
  padding-top: 5px;
  padding-bottom: 5px;
  font-family: 'Poppins';
  font-weight: 500;
  font-size: 14px;
  display: flex;
  align-items: center;
  line-height: 21px;
  cursor: pointer;
}

#a li:hover {
  background-color: #F4F3F3;
}

#a li img {
  margin: 5px;
}

#a li span,
.btn-select li span {
  margin-left: 10px;
}

.option-select {
  position: relative;
}

.option-select::after {
  content: '';
  width: 1px;
  height: 90%;
  position: absolute;
  right: -12px;
  background-color: #DBDBDB;
  top: 2px;
}

.b {
  display: none;
  width: 100%;
  box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
  border: 1px solid rgba(0, 0, 0, .15);
  border-radius: 5px;
  background-color: #fff;
  position: absolute;
  z-index: 99;
}

.open {
  display: show !important;
}

.btn-select {
  width: 100%;
  background: #F0ECFA;
  border: 1px solid #2E155E;
  border-radius: 6px;
  padding: 5px 6.5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn-select::after {
  content: "\e902";
  font-family: 'icomoon';
}

.btn-select li {
  list-style: none;
  padding-bottom: 0px;
  font-family: 'Poppins';
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  display: flex;
  align-items: center;
  color: rgb(var(--color-primary));
  transition: all 150ms ease-in-out;
}

.btn-select:hover li {
  margin-left: 0px;
}

.btn-select:focus {
  outline: none;
}

.select2-container {
  width: 100% !important;
}

.select2-container--default .select2-selection--single {
  height: auto;
  width: 100% !important;
  padding: 5px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F0ECFA;
  border: 1px solid #2E155E;
  border-radius: 6px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 50px;
}

.select2-dropdown {
  box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
  border: 1px solid rgba(0, 0, 0, .15);
  border-radius: 5px;
  background-color: #fff;
}

.select2-selection__rendered .img-flag {
  padding-top: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 30px;
  position: relative;
  width: 25px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none;
}

.select2-container--default .select2-selection--single .select2-selection__arrow::after {
  content: "\e902";
  font-family: 'icomoon';
  color: rgb(var(--color-primary));
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  color: #2E155E;
  display: flex;
}

.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #f4f2fa;
  color: rgb(var(--color-primary));
}

.select2-results__option {
  padding: 6px;
  font-size: 14px;
  color: rgb(var(--color-primary));
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #f4f2fa;
  color: rgb(var(--color-primary));
}

.select2-container--default .select2-selection--single .select2-selection__rendered span {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 30px;
}

.ox-hidden {
  overflow-x: hidden;
}

.catalouge {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.catalogue-inner {
  padding: 50px 0;
}

.border-white {
  width: 190px;
  height: 300px;
  border: 3px solid #FFFFFF;
}

.border-white.sm {
  width: 130px;
  height: 200px;
}

.img-catalouge {
  position: absolute;
  top: 30px;
}

.img-catalouge.sm {
  width: 45%;
  top: 20px;
}

.shop {
  padding: 80px 0 60px;
  background: linear-gradient(286.61deg, #E9F6EC 0%, #E8E8F2 0.01%, #FFFFFF 100%);
}

.link-arrow {
  font-weight: 600;
  font-size: 14px;
  position: relative;
  display: flex;
  align-items: flex-start;
}

.link-arrow::after {
  content: "\e900";
  font-family: 'icomoon';
  font-size: 16px;
  left: 5px;
  position: relative;
  transition: all 100ms ease-in-out;
}

.link-arrow:hover::after {
  left: 10px;
}

.publication {
  padding: 80px 0;
}

.btn-chat {
  background: linear-gradient(180deg, #783DEA 0%, #2E155E 100%);
  box-shadow: 0px 4px 16px rgba(9, 55, 99, 0.24);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: fixed;
  bottom: 60px;
  right: 60px;
  z-index: 100;
  border: 0;
}

.btn-wa {
  background: transparent;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: fixed;
  bottom: 60px;
  right: 60px;
  z-index: 100;
  border: 0;
}

.btn-media {
  background: rgb(var(--color-primary));
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: fixed;
  bottom: 60px;
  right: 135px;
  z-index: 100;
  border: 0;
}


.history-section {
  padding: 60px 0;
  font-size: 14px;
  line-height: 28px;
}

.history-section blockquote {
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  line-height: 34px;
  margin-bottom: 5px;
}

.history-slider {
  position: relative;
  padding-top: 60px;
  padding-bottom: 15px;
  background-size: cover;
  background-position: right center;
  z-index: 5;
}

.history-slider::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  background-color: rgb(var(--color-white));
  height: 200px;
  width: 100%;
}

.content-history {
  width: calc(100% - 14px);
  padding-left: 15px;
  height: 100%;
}

.sliderHistory {
  overflow: visible;
}

.box-ch {
  background-color: rgb(var(--color-white));
  padding: 15px;
  border: 1px solid #F4F4F4;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.03);
  border-radius: 0px 20px 20px 20px;
  height: calc(100% - 15%);
  font-size: 14px;
  line-height: 25px;
  color: #3A383F;
}

.box-media {
  position: relative;
  border-radius: 0px 20px 20px 20px;
  overflow: hidden;
  height: 130px;
}

.box-media img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  height: 130px;
}

.sliderHistory .swiper-slide {
  height: auto;
}

.history-item {
  height: 100%;
  display: flex;
  align-items: baseline;
}

.vimi {
  padding: 80px 0;
}

.box-vimi {
  background: #FFFFFF;
  padding: 20px;
  border: 1px solid #F4F4F4;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.03);
  border-radius: 0px 10px 10px 10px;
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
}

.video-section {
  padding: 20vh 0;
  background-size: cover;
  background-position: center;
  position: relative;
}

.btn-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  transform: translate(-50%, -50%);
  padding: 0;
  opacity: 0.8;
  display: inline-block;
}

.btn-play.sm img {
  width: 35px !important;
  height: 35px;
}

.btn-play:hover {
  opacity: 1;
}

.product {
  padding: 60px 0;
}

.product-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 15px;
  margin-bottom: 50px;
}

.product-list.rec {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.box-tabs {
  background: #FFFFFF;
  padding: 15px;
  border: 1px solid #F4F4F4;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.03);
  border-radius: 8px;
}

#mainTabs {
  gap: 5px;
}

#mainTabs li {
  width: 100%;
}

#mainTabs li .nav-link {
  width: 100%;
  text-align: left;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  font-family: 'Poppins';
  border-color: transparent;
  border-radius: 5px;
  padding: 10px 15px;
  color: rgb(var(--color-dark));
}

#mainTabs .nav-item.show .nav-link,
#mainTabs .nav-link.active {
  color: rgb(var(--color-white));
  background-color: rgb(var(--color-primary));
  border-color: transparent;
  font-weight: 600;
}

#mainTabContent ul li {
  font-weight: 400;
  font-size: 14px;
  line-height: 28px;
}

.box-cat {
  margin-top: 80px;
}

.table>:not(:first-child) {
  border-top: 0px;
}

.table-guide thead th {
  background-color: rgb(var(--color-primary));
  color: rgb(var(--color-white));
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  border: 1px solid rgb(var(--color-primary));
  vertical-align: middle;
}

.table-guide tbody td {
  font-size: 12px;
  text-align: center;
  border: 1px solid #F4F4F4;
}

.table-guide tbody td ul {
  font-size: 12px;
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}

.table-guide tbody td ul li {
  font-size: 12px !important;
}

.modal-lg {
  max-width: 980px;
}

.featured-article {
  padding: 60px 0;
  background: linear-gradient(286.61deg, #E9F6EC 0%, #E8E8F2 0.01%, #FFFFFF 100%);
}

.img-hover {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  display: block;
  height: 240px;
}

.img-hover img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  overflow: hidden;
  transition: all 150ms ease-in-out;
}

.img-hover:hover img {
  transform: scale(1.2);
}

.article-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: #3A383F;
  display: block;
}

.article-title.sm {
  font-size: 16px;
  line-height: 24px;
}

.article-title:hover {
  color: rgb(var(--color-primary));
}

.link-article {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  position: relative;
  display: inline-flex;
  align-items: center;
  transition: all ease-in-out 100ms;
}

.link-article.sm {
  font-size: 14px;
}

.link-article.lg {
  font-weight: 600;
  font-size: 26px;
  line-height: 34px;
}

.link-article::after {
  content: "\e90c";
  font-family: 'icomoon';
  color: rgb(var(--color-primary));
  font-weight: 600 !important;
  transition: all ease-in-out 100ms;
  position: relative;
  top: 0;
  margin-left: 5px;
}

.link-article:hover::after {
  top: -5px;
  transition: all ease-in-out 100ms;
}

.box-category {
  padding: 4px 16px;
  background: #331864;
  border-radius: 4px;
  display: inline-block;
  position: absolute;
  z-index: 1;
  top: 10px;
  right: 10px;
  font-weight: 600;
  font-size: 14px;
  color: rgb(var(--color-white));
}

.box-category.sm {
  padding: 4px 14px;
  font-size: 12px;
}

.article-img {
  position: relative;
  display: block;
  height: 240px;
  width: 240px;
  overflow: hidden;
  border-radius: 6px;
}

.article-img img {
  height: 240px;
  overflow: hidden;
  object-fit: cover;
  object-position: center;
  transition: all ease-in-out 100ms;
}

.article-img:hover img {
  transform: scale(1.2);
}

.list-article {
  padding: 60px 0;
}

.career-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid #E7E7E7;
  padding-bottom: 20px;
}

.title-career {
  font-weight: 700;
  font-size: 26px;
  line-height: 34px;
}

.career-info {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.career-info li {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #888888;
}

.career-info li::after {
  content: '|';
  padding-left: 10px;
  font-size: 10px;
}

.career-info li:last-child:after {
  display: none;
}

.ci {
  width: calc(100% - 120px);
}

.career-section {
  padding: 60px 0;
}

.big-search .form-control {
  padding: 15px 20px;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #888888;
  font-family: 'Poppins';
}

.btn-search-career {
  position: absolute;
  right: 10px;
  top: 10px;
  padding: 0;
  font-size: 25px;
  color: rgb(var(--color-primary));
}

.page-item:not(:first-child) .page-link {
  margin-left: 0;
}

.page-link {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-color: transparent;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.05em;
  font-family: 'Poppins';
  color: #888888;
}

.page-item:first-child a,
.page-item:last-child a {
  color: rgb(var(--color-white));
  background-color: rgb(var(--color-primary));
  border-color: var(--color-primary);
}

.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
  border-color: transparent;
}

.page-link:hover,
.page-link:focus,
.page-link.active {
  color: rgb(var(--color-white));
  background-color: rgb(var(--color-primary));
  border-color: var(--color-primary);
}

.search-faq {
  position: relative;
  width: 80%;
}

.search-faq .form-control {
  background: rgba(255, 255, 255, 0.1);
  border: 0.5px solid #DBDBDB;
  border-radius: 6px;
  color: rgb(var(--color-white));
  font-family: 'Poppins';
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  padding-left: 40px;
}

.search-faq .form-control::placeholder {
  color: rgb(var(--color-white));
  font-weight: 400;
}

.icon-find {
  position: absolute;
  left: 12px;
  top: 12px;
  font-size: 18px;
}

.faq-content {
  padding: 60px 0;
}

.row-faq {
  display: flex;
  justify-content: space-between;
}

.nav-faq {
  max-width: 350px;
  width: 100%;
}

.content-faq {
  width: calc(100% - 300px);
}

.sections {
  margin-bottom: 40px;
}

.box-nav {
  z-index: 10;
  position: -webkit-sticky;
  position: sticky;
  top: 110px;
}

.side-nav {
  list-style: none;
  position: relative;
  font-family: 'Poppins';
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.side-nav li {
  width: 100%;
  padding-left: 5px;
  position: relative;
}

.side-nav li a {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #BCBABE;
  transition: all 100ms ease-in-out;
  position: relative;
}

.side-nav li a::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: transparent;
  position: absolute;
  left: -30px;
  top: 8px;
}

.side-nav li a.active::before {
  background-color: rgb(var(--color-primary));
}

.side-nav li a.active,
.side-nav li a:hover {
  color: rgb(var(--color-primary));
}

.accordion-button:not(.collapsed) {
  color: rgb(var(--color-default));
  background-color: #fff;
  box-shadow: none;
}

.ttl-faq {
  color: rgb(var(--color-primary));
  font-family: 'Poppins';
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 10px;
}

.accordion-item {
  background-color: #fff;
  border-bottom: 1px solid #E9E7EC;
  border-left: 0;
  border-top: 0;
  border-right: 0;
  border-radius: 0;
}

.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  padding: 1rem 0;
  font-size: 16px;
  font-family: 'Poppins';
  font-weight: 700;
  color: rgb(var(--color-default));
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  padding: 1rem 0;
  font-family: 'Poppins';
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
}

.accordion-button:not(.collapsed)::after {
  content: "\e90f";
  font-family: 'icomoon';
  background-image: none;
  transform: none;
}

.accordion-button::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  content: "\e912";
  background-image: none;
  background-size: 1.25rem;
  transition: transform .2s ease-in-out;
  font-family: 'icomoon';
}

.form-contact {
  margin: -80px 0 60px;
  position: relative;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  background: #FFFFFF;
  box-shadow: 0px 4px 16px 4px rgba(58, 56, 63, 0.12);
  border-radius: 8px;
  overflow: hidden;
}

.form-info {
  height: auto;
  width: 65%;
  padding: 40px;
}

.other-info {
  font-family: 'Poppins';
  padding: 40px;
  height: auto;
  width: 35%;
  background: linear-gradient(212.1deg, #2E155E 0.77%, #582CA7 0.78%, #2E155E 100%);
}

.ttl-contact {
  font-family: 'Poppins';
  font-weight: 700;
  font-size: 28px;
  line-height: 38px;
  letter-spacing: -0.02em;
}

.ttl-contact.sm {
  font-family: 'Poppins';
  font-weight: 700;
  font-size: 25px;
  line-height: 38px;
  letter-spacing: -0.02em;
}

.text-icon {
  color: #D4CCE7;
}

.social {
  display: flex;
  align-items: center;
  list-style: none;
  padding-left: 0;
  justify-content: center;
  gap: 5px;
}

.social a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  color: rgb(var(--color-white));
  border: 1px solid rgb(var(--color-white));
  transition: all 150ms ease-in-out;
}

.social a:hover {
  background-color: rgb(var(--color-white));
  color: rgb(var(--color-primary));
}

.static-content {
  padding: 60px 0;
  font-family: 'Poppins';
}

.main-content {
  padding: 150px 0 60px;
}

.product-img--main {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 380px;
  background-color: rgb(var(--color-white));
  border: 1px solid #E6E6E6;
  display: block;
}

.product-img--main img {
  object-fit: cover;
  object-position: center;
  height: 380px;
}

.product-img--main__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transition: -webkit-transform .1s ease-out;
  transition: -webkit-transform .01s ease-out;
  transition: transform .01s ease-out;
  transition: transform .01s ease-out, -webkit-transform .5s ease-out;
}

.thumb {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: 1px solid #E6E6E6;
}

.product-name {
  font-family: 'Poppins';
  font-weight: 600;
  font-size: 26px;
  line-height: 39px;
  color: #3A383F;
}

.price {
  font-weight: 700;
  font-size: 22px;
  line-height: 20px;
  color: rgb(var(--color-primary));
}

.main-cart {
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  font-size: 24px;
  font-weight: 600;
}

.main-cart span {
  position: relative;
}

.main-cart span::after {
  content: "\e912";
  position: absolute;
  font-size: 8px;
  font-family: 'icomoon';
  color: rgb(var(--color-white));
  width: 12px;
  height: 12px;
  z-index: 10;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(var(--color-primary));
  top: -1px;
  right: -3px;
}


#nav-tab {
  gap: 20px;
}

#nav-tab .nav-link {
  border-radius: 0;
  border-left: 0;
  border-top: 0;
  border-right: 0;
  border-width: 2px;
  font-size: 14px;
  padding: 0 0 15px 0;
  color: rgb(var(--color-grey));
}

#nav-tab .nav-item.show .nav-link,
#nav-tab .nav-link.active {
  color: rgb(var(--color-primary));
  background-color: #fff;
  border-color: rgb(var(--color-primary));
  font-weight: 600;
}

.materials-character {
  padding-left: 0;
  margin-bottom: 10px;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 5px;
}

.materials-character li {
  background: #E9E7EC;
  border-radius: 10px;
  height: 4px;
}

.mc-items {
  margin-bottom: 20px;
}

.materials-character.level-1 li:first-child {
  background-color: rgb(var(--color-primary));
}

.materials-character.level-2 li:nth-child(-n + 2) {
  background-color: rgb(var(--color-primary));
}

.materials-character.level-3 li:nth-child(-n + 3) {
  background-color: rgb(var(--color-primary));
}

.materials-character.level-4 li:nth-child(-n + 4) {
  background-color: rgb(var(--color-primary));
}

.materials-character.level-5 li:nth-child(-n + 5) {
  background-color: rgb(var(--color-primary));
}

.materials-character.level-6 li:nth-child(-n + 6) {
  background-color: rgb(var(--color-primary));
}

.materials-character.level-7 li:nth-child(-n + 7) {
  background-color: rgb(var(--color-primary));
}

.materials-character.level-8 li:nth-child(-n + 8) {
  background-color: rgb(var(--color-primary));
}

.materials-character.level-9 li:nth-child(-n + 9) {
  background-color: rgb(var(--color-primary));
}

.materials-character.level-10 li {
  background-color: rgb(var(--color-primary));
}

.form-control.input-number {
  padding: 7px 10px;
  width: 82px;
  display: inline-block;
  border: 0;
  font-weight: 600;
  text-align: center;
  font-size: 12px;
  border: 1px solid rgb(var(--color-primary));
  border-radius: 4px;
  color: rgb(var(--color-primary));
}

input[type=number] {
  -moz-appearance: textfield;
  -webkit-appearance: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.btn-add-number {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: rgb(var(--color-white));
  background: #2E155E;
}

.btn-add-number.grey {
  background-color: #BCBABE;
}

.btn-add-number:hover {
  color: rgb(var(--color-white));
}

.title-article {
  font-family: 'Poppins';
  font-weight: 700;
  font-size: 40px;
  line-height: 60px;
  text-align: center;
  color: #3A383F;
}

.rounded-4 {
  border-radius: 15px;
}

.article blockquote {
  font-style: italic;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 0.02em;
}

.box-share {
  padding: 20px 0;
}

.share {
  display: flex;
  justify-content: center;
  padding-left: 0;
  list-style: none;
  gap: 10px;
}

.share a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgb(var(--color-primary));
  font-size: 23px;
}

.share a:hover {
  background-color: rgb(var(--color-primary));
  border: 1px solid rgb(var(--color-primary));
  color: rgb(var(--color-white));
}

.box-apply {
  background: #FFFFFF;
  border: 1px solid #E7E7E7;
  box-shadow: 0px 2px 8px rgba(141, 142, 143, 0.12);
  border-radius: 6px;
  padding: 30px;
}

.custom-file-upload-hidden {
  display: none;
}

.custom-file-upload {
  width: auto;
}

.file-upload-wrapper {
  display: flex;
  gap: 5px;
}

.min-height {
  min-height: 65vh;
}

.form-check-input:checked {
  background-color: rgb(var(--color-primary));
  border-color: rgb(var(--color-primary));
}

.form-check-input:focus {
  border-color: rgb(var(--color-primary));
  box-shadow: none;
}

.btn-delete {
  padding: 0;
  display: flex;
  align-items: center;
  color: rgb(var(--color-red));
}

.img-cart {
  width: 80px;
}

.btn-item {
  color: rgb(var(--color-grey));
  padding: 0;
}

.box-border {
  background: #FFFFFF;
  border: 1px solid #E9E8E6;
  border-radius: 6px;
}

.empty-box {
  min-height: 50vh;
}

.q-row {
  display: flex;
  align-items: center;
}

.q-items {
  position: relative;
  width: 50%;
  display: flex;
  align-items: flex-start;
  cursor: pointer;
}

.q-items::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #BCBABE;
}

.q-items::after {
  content: '';
  display: block;
  position: absolute;
  left: 5px;
  top: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #fff;
}

.q-row input:checked+.q-items::before {
  border: 2px solid rgb(var(--color-primary));
}

.q-row input:checked+.q-items::after {
  background: rgb(var(--color-primary));
}

.q-row input~.q-count {
  display: none;
}

.q-row input:checked~.q-count {
  display: block !important;
}

.box-publication {
  position: relative;
  height: 224px;
  overflow: hidden;
}

.box-publication img {
  width: 100%;
  height: 224px;
  object-fit: cover;
  object-position: center;
}

.play-video img {
  width: 58px !important;
  height: 58px !important;
}



/* ========== Swiper Override ========== */

.sliderType .swiper-slide,
.sliderMaterials .swiper-slide,
.sliderType-2 .swiper-slide,
.sliderMaterials-2 .swiper-slide {
  width: fit-content;
}

.swiper-pagination-bullet {
  background: #fff;
  opacity: var(--swiper-pagination-bullet-inactive-opacity, .5);
  transition: all 150ms ease-in-out;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.5);
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 25px);
}

.white.swiper-button-next,
.white.swiper-button-prev {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(2px);
  border-radius: 50%;
  transition: all 100ms ease-in-out;
}

.type.swiper-button-next,
.type.swiper-button-prev {
  width: 20px;
  height: 20px;
  background: rgb(var(--color-primary));
  border-radius: 3px;
  transition: all 100ms ease-in-out;
  margin-top: 0;
  transform: translateY(-50%);
}

.type.swiper-button-prev {
  left: 0;
}

.type.swiper-button-next {
  right: 0;
}

.white.swiper-button-next:after,
.white.swiper-button-prev:after {
  font-size: 20px;
  color: rgb(var(--color-white));
  font-weight: 600;
}

.type.swiper-button-next:after,
.type.swiper-button-prev:after {
  font-size: 12px;
  color: rgb(var(--color-white));
}

.white.swiper-button-next:hover,
.white.swiper-button-prev:hover {
  background: rgba(255, 255, 255, 1);
}

.white.swiper-button-next:hover::after,
.white.swiper-button-prev:hover::after {
  color: rgb(var(--color-primary));
}

.ciw.swiper-button-next,
.ciw.swiper-button-prev {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgb(var(--color-primary));
  position: relative;
  margin-top: 0;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}

.ciw.secondary.swiper-button-next,
.ciw.secondary.swiper-button-prev {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(2px);
}

.ciw.swiper-button-next::after,
.ciw.swiper-button-prev::after {
  font-size: 15px;
  color: rgb(var(--color-white));
}

.ciw.swiper-button-next.swiper-button-disabled,
.ciw.swiper-button-prev.swiper-button-disabled {
  opacity: 1;
  background-color: #D3D3D3;
  cursor: auto;
  pointer-events: none;
}

.ciw.secondary.swiper-button-next.swiper-button-disabled,
.ciw.secondary.swiper-button-prev.swiper-button-disabled {
  background: rgba(255, 255, 255, 0.1);
}

#product.swiper-button-next,
#product.swiper-button-prev {
  width: 30px;
  height: 100%;
  margin-top: 0;
  top: 0;
  cursor: pointer;
  color: rgb(var(--color-white));
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 0px;
}

#product.swiper-button-next.swiper-button-disabled,
#product.swiper-button-prev.swiper-button-disabled {
  opacity: 0;
}

#product.swiper-button-next {
  right: 0;
}

#product.swiper-button-prev {
  left: 0;
}

#product.swiper-button-next::after,
#product.swiper-button-prev::after {
  font-size: 19px;
}


/* ========== Popup ========== */
.popup-overlay {
  background-color: rgba(0, 0, 0, 0.2);
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1000;
  padding: 15px;
  transition: all 150ms ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.popup-overlay.show {
  visibility: visible;
  opacity: 1;
}

.popup-xs {
  max-width: 360px;
  width: 100%;
  position: fixed;
  height: 100%;
  right: -360px;
  top: 0;
  z-index: 1001;
  background-color: rgb(var(--color-white));
  padding: 25px;
  transition: all 150ms ease-in-out;
}

.popup-xs.show {
  right: 0;
}

.p-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.p-content {
  height: calc(100vh - 170px);
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-color: #f3f3f3 transparent;
  scrollbar-width: thin;
}

.p-info {
  width: calc(100% - 48px);
}

.p-image {
  width: 48px;
}

.vc label {
  background: #FFFFFF;
  padding: 5px 10px;
  border: 1px solid #E9E7EC;
  color: rgb(var(--color-black));
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: all 100ms ease-in-out;
}

.vc input:checked+label {
  border: 1px solid rgb(var(--color-primary));
  color: rgb(var(--color-primary));
}

.btn-close-modal {
  font-size: 23px;
  color: rgb(var(--color-primary));
  padding: 0;
}

.popup-chat {
  max-width: 360px;
  width: 100%;
}


.box-chat {
  position: fixed;
  bottom: 60px;
  right: 60px;
  z-index: 101;
  max-width: 360px;
  width: 100%;
  background: #F5F7F9;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.25);
  border-radius: 2px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all 150ms ease-in-out;
}

.box-chat.show {
  opacity: 1;
  visibility: visible;
}

.popup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 15px;
  color: rgb(var(--color-white));
  background-color: rgb(var(--color-primary));
}

.popup-content {
  background: #F5F7F9;
  height: 400px;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 15px;
  scrollbar-color: #f3f3f3 transparent;
  scrollbar-width: thin;
}

.popup-footer {
  background: #FFFFFF;
  border-radius: 0px 0px 2px 2px;
  padding: 10px 5px;
  display: flex;
  align-items: center;
}

.popup-footer input {
  border: 0;
}

.btn-send {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 0;
  font-size: 20px;
  color: rgb(var(--color-white));
  background: rgb(var(--color-primary));
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-send:hover {
  color: rgb(var(--color-primary-10));
}

.row-chat {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.row-chat.answer {
  flex-direction: row-reverse;
}

.ask-bubble {
  background: #FFFFFF;
  border: 1px solid #E9E7EC;
  border-radius: 4px 16px 16px 16px;
  padding: 6px 10px;
  font-family: 'Poppins';
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  max-width: calc(100% - 80px);
  white-space: wrap;
}

.answer-bubble {
  background: rgb(var(--color-primary));
  color: rgb(var(--color-white));
  border: 1px solid rgb(var(--color-primary));
  border-radius: 16px 4px 16px 16px;
  padding: 6px 10px;
  font-family: 'Poppins';
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  max-width: calc(100% - 80px);
  white-space: wrap;
}

.time-chat {
  font-family: 'Poppins';
  font-weight: 400;
  font-size: 10px;
  line-height: 15px;
  color: #BCBABE;
}

.chat-bot {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
  padding-left: 0;
  gap: 10px;
}

.chat-bot li {
  cursor: pointer;
  padding: 12px 16px;
  border: 1px solid #2E155E;
  border-radius: 24px;
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  color: #2E155E;
  transition: all 100ms ease-in-out;
}

.chat-bot li:hover {
  border: 1px solid #2E155E;
  background: #2E155E;
  color: rgb(var(--color-white));
}

#modalSearch .modal-content {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.search-suggest {
  position: absolute;
  top: 100%;
  margin-top: 10px;
  width: 100%;
  background-color: rgb(var(--color-white));
  z-index: 800;
  border-radius: 6px;
  padding: 10px;
  transition: all 100ms ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.search-suggest.show {
  opacity: 1;
  visibility: visible;
}

.list-suggest {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  max-height: 300px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-color: #f3f3f3 transparent;
  scrollbar-width: thin;
}

.list-suggest li {
  margin: 5px;
}

.items-ls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.img-ls {
  width: 32px;
}

.btn-delete-suggest {
  padding: 0;
  position: absolute;
  right: 60px;
  top: 20px;
  z-index: 10;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: #BCBABE;
  font-family: "Poppins";
}


/* ========== Scroll ========== */
.list-suggest::-webkit-scrollbar,
.popup-content::-webkit-scrollbar,
.p-content::-webkit-scrollbar {
  width: 5px;
  border-radius: 3px;
}

/* Track */
.list-suggest::-webkit-scrollbar-track,
.popup-content::-webkit-scrollbar-track,
.p-content::-webkit-scrollbar-track {
  background: transparent;
}

/* Handle */
.list-suggest::-webkit-scrollbar-thumb,
.popup-content::-webkit-scrollbar-thumb,
.p-content::-webkit-scrollbar-thumb {
  background: #f3f3f3;
}

/* Handle on hover */
.list-suggest::-webkit-scrollbar-thumb:hover,
.popup-content::-webkit-scrollbar-thumb:hover,
.p-content::-webkit-scrollbar-thumb:hover {
  background: #f3f3f3;
}

/* ==========================================================================
   Helper classes
   ========================================================================== */

.hidden,
[hidden] {
  display: none !important;
}

.text-left {
  text-align: left !important;
}

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

.text-italic {
  font-style: italic;
}

.text-hidden {
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-extraBold {
  font-weight: 800;
}

.text-bold {
  font-weight: 700;
}

.text-semiBold {
  font-weight: 600;
}

.text-medium {
  font-weight: 500;
}

.text-normal {
  font-weight: 400;
}

.text-light {
  font-weight: 300;
}

.text-ultra-bold {
  font-weight: 900;
}


.h-100vh {
  height: 100vh;
}

.ps-6 {
  padding-left: 30px;
}

.r-5 {
  border-radius: 5px;
}

.r-8 {
  border-radius: 8px;
}

.r-10 {
  border-radius: 10px;
}

.r-50 {
  border-radius: 50px;
}

.mh-0 {
  min-height: 0;
}

.line-height {
  line-height: 0;
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

.invisible {
  visibility: hidden;
}

.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   Responsive Design.
   ========================================================================== */

@media (min-width: 576px) {

  .container,
  .container-sm {
    max-width: 600px;
  }
}

@media (min-width: 768px) {

  .container,
  .container-md,
  .container-sm {
    max-width: 720px;
  }
}

@media (min-width: 992px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1200px;
  }
}


@media (min-width: 1200px) {}

@media (max-width: 1024px) {
  .product-list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .article-img {
    height: 180px;
    width: 180px;
  }

  .article-img img {
    height: 180px;
  }

  .article-title {
    font-size: 20px;
    line-height: 26px;
  }
}

@media (max-width: 991px) {

  .main-menu,
  .nav-faq {
    display: none;
  }

  .box-event {
    padding: 30px;
  }

  .product-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .img-catalouge.sm {
    width: 80%;
    top: auto;
    bottom: -30%;
  }

  .product-list.rec {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-img {
    height: 180px;
    width: 100%;
    margin-bottom: 5px;
  }

  .article-img img {
    height: 180px;
  }

  .content-faq {
    width: 100%;
  }

  .form-info {
    width: 55%;
    padding: 30px;
  }

  .other-info {
    padding: 30px;
    width: 45%;
  }

  .product-name {
    font-size: 24px;
    line-height: 39px;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 28px;
    line-height: 35px;
  }

  h2 {
    font-size: 35px;
    line-height: 43px;
  }

  .box-shop {
    margin-bottom: 25px;
  }

  .product-list,
  .product-list.rec {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .btn-chat {
    bottom: 15px;
    right: 15px;
  }

  .box-chat {
    bottom: 15px;
    right: 15px;
    max-width: 348px;
  }

  .img-catalouge.sm {
    width: 100%;
    top: auto;
    bottom: -20%;
  }

  .ci {
    width: 100%;
    margin-bottom: 20px;
  }

  .search-faq,
  .form-info,
  .other-info {
    width: 100%;
  }

  #nav-tab {
    gap: 20px;
  }

  #nav-tab .nav-link {
    font-size: 12px;
  }

  .main-content {
    padding: 120px 0 60px;
  }

  .btn-wa {
    right: 20px;
  }

  .btn-media {
    right: 90px;
  }

}

@media (min-width: 1025px) {}

@media (min-width: 992px) {
  .btn-toggle {
    display: none;
  }
}

@media (max-width: 767px) and (orientation: landscape) {

  .product-list,
  .product-list.rec {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 992px) and (orientation: landscape) {
  h1 {
    font-size: 30px;
    line-height: 35px;
  }

  .popup-content {
    height: 100px;
  }

  .btn-chat {
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
  }

  .box-chat {
    bottom: 30px;
    right: 30px;
  }

  .content-mobile,
  .content-stock {
    max-height: 100%;
    height: 150px;
    overflow-y: auto;
    overflow-x: hidden;
    display: block;
  }

  .content-stock {
    height: 250px;
  }

  .p-content {
    height: calc(100vh - 190px);
    margin-bottom: 15px;
  }
}



/* ==========================================================================
   Print styles.
   ========================================================================== */

@media print {

  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}