:root {
  --primary: #d90000;
  --primary-hover: #cf0000;
  --secondary: #2d3346;
  --third: #004aad;
  --bs-border-radius-lg: 1rem;
}

@font-face {
    font-family: 'Helvetica';
    src: url('../fonts/Helvetica/helvetica-neue-regular.ttf');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Helvetica';
    src: url('../fonts/Helvetica/helvetica-neue-bold.ttf');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Helvetica';
    src: url('../fonts/Helvetica/helvetica-neue-medium.ttf');
    font-weight: 500;
    font-style: normal;
}

body {
  font-size: 14px;
  line-height: 1.4;
/*  font-family: 'Roboto',sans-serif;*/
  font-family: 'Helvetica';
  font-weight: normal;
  background: var(--secondary);
}
.bg-white_::before {
    content: '';
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1;
    cursor: pointer;
}

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

a {
  color: black;
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
  text-decoration: none;
}
a:hover {
  color: var(--primary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
/*  font-family: 'Roboto',sans-serif;*/
  font-family: 'Helvetica';
  font-weight: 700;
  margin: 0;
}

p {
  margin-bottom: 10px;
}
p:last-of-type {
  margin-bottom: 0;
}

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

img.lazy { filter: blur(12px); transform: scale(1.02); transition: .25s; }
img:not([data-src]) { filter: none; transform: none; }

.choices__inner {
  position: relative;
}
.form-control:focus ,
.form-select:focus {
  box-shadow: none;
}

.line-clamp-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.line-clamp-3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.div-scroll {
  height: 100%;
  overflow-y: auto;
  margin-right: 5px;
  padding-right: 3px;
}

.div-scroll::-webkit-scrollbar-track
{
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
  border-radius: 6px;
  background-color: #F5F5F5;
}

.div-scroll::-webkit-scrollbar
{
  width: 3px;
  background-color: #F5F5F5;
}

.div-scroll::-webkit-scrollbar-thumb
{
  border-radius: 6px;
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
  background-color: #6e6e6e;
}

.select2-dropdown {
  z-index: 1090;
}

.select2-container--default .select2-selection {
  border-radius: 10px;
}
.select2-container--default .select2-selection--single {
  border-color: var(--bs-border-color);
}

@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1230px;
    }
}

@media (min-width: 991px) {
  .col-custom-5 {
    flex: 0 0 20%;
  }
}
@media (min-width: 768px) {

  .h-md-100 {
    height: 100%;
  }
}

.text-none {
  text-transform: none !important;
}

.modalParameter .modal-content,
.modalLightbox .modal-top {
  background: black;
}

.modalLightbox .modal-content {
  background: transparent;
}

#loader {
  position: fixed;
  width: 96px;
  height: 96px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.9);
  -webkit-box-shadow: 0px 24px 64px rgba(0, 0, 0, 0.24);
  box-shadow: 0px 24px 64px rgba(0, 0, 0, 0.24);
  border-radius: 16px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.2s ease-out, visibility 0s linear 0.2s;
  -o-transition: opacity 0.2s ease-out, visibility 0s linear 0.2s;
  transition: opacity 0.2s ease-out, visibility 0s linear 0.2s;
  z-index: 1000;
}

#loader.fullscreen {
  padding: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  background-color: #fff;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

#loader.show {
  -webkit-transition: opacity 0.4s ease-out, visibility 0s linear 0s;
  -o-transition: opacity 0.4s ease-out, visibility 0s linear 0s;
  transition: opacity 0.4s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

#loader .circular {
  -webkit-animation: loader-rotate 2s linear infinite;
  animation: loader-rotate 2s linear infinite;
  position: absolute;
  left: calc(50% - 24px);
  top: calc(50% - 24px);
  display: block;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}

#loader .path {
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  -webkit-animation: loader-dash 1.5s ease-in-out infinite;
  animation: loader-dash 1.5s ease-in-out infinite;
  stroke-linecap: round;
}

@-webkit-keyframes loader-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes loader-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes loader-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -136px;
  }
}

@keyframes loader-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -136px;
  }
}

@media(max-width: 767px)
{
  .container {
    padding-left: 5px;
    padding-right: 5px;
  }
  .row {
    margin-left: -5px;
    margin-right: -5px;
  }
  footer .container {
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
  }
}

/*offcanvas*/
body.open-offcanvas {
  overflow: hidden;
}
.offcanvas {
  transition: 0.5s;
  left: -100%;
  top: 0;
  width: 100%;
  --bs-offcanvas-zindex: 998;
}

.offcanvas-body {
  background: #f2f2f3;
}
.offcanvas-title {
  font-size: 18px;
  padding: 6px 0;
  width: 100%;
}

.open-offcanvas .offcanvas {
  left: 0;
  visibility: visible;
}

.btn.btn-offcanvas-close {
  /* display: none; */
  position: absolute;
  top: 0;
  left: -40px;
  padding: 0;
  width: 38px;
  height: 38px;
  font-size: 20px;
  color: #fff;
  background: white;
  border-radius: 0;
  /*border-bottom-left-radius: 50%;*/
  z-index: 999;
  transition: all 400ms cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
  background: #0000007d;
}

.open-offcanvas .btn.btn-offcanvas-close {
  /* display: block; */
  left: unset;
  right: 0;
}

.mmenu-category {
  padding-bottom: 80px;
}
.mmenu-category .offcanvas-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.mmenu-content {
  display: flex;
  gap: 5px;
  background: #f2f2f3;
  overflow: hidden;
}
.mmenu-content .mmenu-menu {
  flex: 0 0 100px;
  overflow-y: auto;
  height: 100%;
  /*padding: 10px;*/
  background: #fff;
}
.mmenu-content .mmenu-menu-child {
  flex: 1;
  width: calc(100% - 100px);
  /*padding: 10px;*/
  overflow: hidden;
}

.mmenu-menu-child .sub-megamenu {
  display: none;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
/*  padding: 10px;*/
}
.mmenu-menu-child .sub-megamenu.active {
  display: block;
}

.sub-megamenu .list-megamenu {
  width: 100%;
}
.list-megamenu .mmenu-group{
  display: flex;
  flex-direction: column;
  overflow-x: auto;
  padding: 8px;
  background: #fff;
  border-radius: 6px;
}
.list-megamenu .mmenu-group .mmenu-scroll {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: calc(100% + 220px);
}

.nav-archive-mb {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}

.nav-archive-mb > li:not(:last-child) {
  margin-bottom: 15px;
}

.item-nav {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
}

.item-nav > a {
  /*background: var(--primary);*/
  /*border: 1px solid #000;*/
/*  border-radius: 16px;*/
  position: relative;
  display: inline-block;
  padding: 10px;
  padding-left: 5px;
  text-align: center;
  flex: 1;
  height: 80px;
  /*color: #fff;*/
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  line-height: 1.2;
  font-size: 12px;
  border-left: 5px solid transparent;
}
.nav-archive-mb li.active .item-nav > a {
  border-left-color: var(--primary);
}

.item-nav > a::after {
  display: none;
  z-index: 100;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 98%;
  height: 0;
  margin: auto;
  border-top: 14px solid transparent;
  border-left: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-right: 14px solid transparent;
}
.nav-archive-mb li.active .item-nav > a::after {
  /*display: block;
  border-left-color: var(--primary);*/
}

.item-nav.pc > a {
  background: #ffbd59;
}

.item-nav.screen > a {
  background: linear-gradient(90deg,rgba(184, 255, 146, 1) 35%, rgba(185, 239, 224, 1) 100%);
}

.item-nav.components > a {
  background: #92ffff;
}

.item-nav.office > a {
  background: #92cbff;
}

.item-nav > a img {
  width: 40px;
}

.item-nav a span {
  display: block;
}



.nav-archive-mb li.active .item-nav.pc > a::after {
  border-left-color: #ffbd59;
}

.nav-archive-mb li.active .item-nav.screen > a::after {
  border-left-color: rgba(185, 239, 224, 1);
}

.nav-archive-mb li.active .item-nav.components > a::after {
  border-left-color: #92ffff;
}

.nav-archive-mb li.active .item-nav.office > a::after {
  border-left-color: #92cbff;
}

.item-nav .sub-megamenu {
  max-width: 70%;
  flex: 0 0 70%;
  position: absolute;
  top: 10px;
  right: 0;
  opacity: 0;
  visibility: hidden;
}

.nav-archive-mb li.active .sub-megamenu {
  opacity: 1;
  visibility: visible;
}

.sub-megamenu ul {
  list-style: none;
  padding-left: 0;
}

.btn-custom {
    background: var(--primary);
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 10px;
/*    display: block;*/
    text-align: center;
    border-radius: .5rem;
}
.btn-custom span {
    display: block;
    font-size: 14px;
    font-weight: normal;
    text-transform: none;
}
.btn-custom span.spinner-border {
  display: inline-block;
}
.btn-custom:hover {
  color: #fff;
  background: var(--primary);
}

.btn-custom.btn-primary {
  background: var(--bs-btn-bg);
}

.btn-group .btn-custom {
  color: #000;
  font-size: 14px;
  background: #fff;
  border: 1px solid #000;
}
.btn-group .btn-custom:hover {
    border: 1px solid #000;
}
.btn-check:checked+.btn-custom,
.btn-check:checked+.btn-custom:hover {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
}

.btn-main {
  background: var(--primary);
  color: #fff;
/*  font-size: 14px;*/
  text-transform: uppercase;
  padding: 10px 16px;
  border-radius: 6px;
  display: inline-block;
  text-align: center;
  border: 0;
  outline: unset;
}
.btn-main span {
  display: block;
  font-size: 14px;
  font-weight: normal;
}
.btn-main:hover {
  color: #fff;
  background: var(--primary-hover);
}

@media (max-width: 767px) {

  .item-nav > a {
    /*max-width: calc(50% - 32px);
    flex: 0 0 calc(50% - 32px);
    padding-left: 20px;
    padding-right: 20px;*/
  }

  .item-nav .sub-megamenu {
    overflow: auto;
    max-width: calc(100% - 150px);
    flex: 0 0 calc(100% - 150px);
  }

  .list-megamenu {
/*    padding-top: 40px;*/
    /*padding-bottom: 60px;*/
  }
}
/*offcanvas*/

#popupModal .modal-content {
  background: transparent;
}

#popupModal .btn-close {
  position: absolute;
  top: -30px;
  right: -30px;
  border-radius: 50%;
}

#popupModal .btn-close:focus {
  box-shadow: none;
}

/*top-bar*/
.top-bar {
  position: relative;
  padding: 10px 0;
}

.top-bar::after {
  content: '';
  background: linear-gradient(90deg,rgba(45, 51, 70, 1) 0%, rgba(217, 0, 0, 1) 50%, rgba(45, 51, 70, 1) 100%);
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
}


.feature-box-carousel .owl-stage {
  display: flex;
  align-items: center;
}

.info-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  color: white;
}

.info-box-icon {
  height: 24px;
  text-align: center;
}
.owl-carousel .owl-item .info-box-icon img {
  height: 100%;
  width: auto;
  margin: auto;
}

.info-box-content h4 {
  font-size: 18px;
  line-height: 1;
}

/*top-bar*/

/*header*/
header {
  position: sticky;
  top: 0;
  width: 100%;
  font-weight: 400;
  z-index: 900;
  background: linear-gradient(0deg,rgba(45, 51, 70, 1) 90%, rgba(125, 27, 38, 1) 100%, rgba(217, 0, 0, 1) 100%);
}
header .navbar-brand {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 400;
  color: #fff !important;
}
header .navbar-collapse {
  position: relative;
}
header .navbar {
  padding-top: 0;
  padding-bottom: 0;
  background: transparent !important;
}

header .navbar .navbar-nav.absolute-right {
  position: absolute;
  right: 0;
}
header .navbar .nav-link {
  padding: 1.7rem 1rem;
  font-size: 16px;
  outline: none !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

header .navbar .dropdown-menu {
  font-size: 14px;
  border-radius: 0px;
  border: none;
  -webkit-box-shadow: 0 2px 30px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 30px 0px rgba(0, 0, 0, 0.2);
  min-width: 13em;
  margin-top: -10px;
}
header .navbar .dropdown-menu:before {
  bottom: 100%;
  left: 10%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-bottom-color: #fff;
  border-width: 10px;
}

header .navbar .dropdown-menu .dropdown-item:hover {
  background: #6610f2;
  color: #fff;
}
header .navbar .dropdown-menu .dropdown-item.active {
  background: #6610f2;
  color: #fff;
}
header .navbar .dropdown-menu a {
  padding-top: 7px;
  padding-bottom: 7px;
}

@media (min-width: 1200px) {
  .col-20 {
     flex: 0 0 20%;
    max-width: 20%;
  }
}


@media (max-width: 1200px) {
  header .navbar .dropdown-menu:before {
    display: none;
  }
}

@media (max-width: 991px) {
  header .navbar .nav-link {
    padding: 1.7rem 1rem;
  }
  
  header .navbar .navbar-nav.absolute-right {
    position: relative;
    right: inherit;
  }
}

@media (max-width: 767px) {
  header .navbar {
    background: #e6e6e6 !important;
  }

  header .navbar .nav-link {
    padding: 0.5rem 0rem;
  }
}
/*header*/

.site-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 899;
  opacity: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.6);
  transition: all 200ms linear;
}

body.open-overlay .site-overlay {
    opacity: 1;
    visibility: visible;
}

.bg-main {
  background: var(--secondary);
}

.bg-second {
  background: #4f87ff;
}

.back-to-top {
  background: var(--primary);
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  z-index: 999;
  display: none;
  cursor: pointer;
  transition: 0.2s ease;
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  fill: white;
  transition: 0.5s;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media(max-width: 767px)
{
  .back-to-top {
    bottom: 80px;
  }
  .back-to-top svg {
    
    width: 16px;
    height: 16px;
  }
}

.main-header .row-header {
  padding: 16px 0;
  position: relative;
}

.main-header--sm {
  display: none;
  padding: 16px 0;
}

.row-header {
  display: flex;
  align-items: center;
  flex-flow: row nowrap;
  justify-content: space-between;
  gap: 10px;
}

.row-header > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.main-header .main-header--right {
  position: relative;
  display: -webkit-flex;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  flex: 1 1 auto;
  gap: 20px;
}

.search-input-group {
  display: flex;
  background: #fff;
  height: 42px;
  border-radius: 4px;
}
.search-input-group .form-control {
  font-size: 14px;
}
.search-input-group .form-control:focus {
  box-shadow: unset;

}

.main-header--search {
  flex: 1;
}

.flex-row {
  align-items: center;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  gap: 5px;
  width: 100%;
  height: 100%;
}

.flex-col {
  max-height: 100%;
}

.flex-grow {
  flex: 1;
}

.searchform input[type="text"] {
  background: none;
  border: 0;
}

.searchform button {
  color: var(--primary);
  border: 0;
}

.searchform button:hover {
  background: white;
  color: var(--primary);
}

.mega-menu > a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  background: var(--primary);
  white-space: nowrap;
  padding: 5px 9px;
  border-radius: 5px;
  position: relative;
  z-index: 5;
  height: 42px;
}

.menu-mega__content {
  position: absolute;
  z-index: 6;
  left: 0;
  top: 100%;
  padding-top: 15px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.25s;
}
.menu-mega__content .megamenu-content{
  
}

body.open-menu .menu-mega__content {
  visibility: visible;
  opacity: 1;
}

.sidebar-menu {
  background: white;
  padding: 0;
  width: 216px;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}

.sidebar-menu .megamenu-nav {
  position: relative;
  z-index: 2;
  /*height: 496px;*/
}

.sidebar-menu ul {
  display: block;
  padding: 0;
  margin-bottom: 0;
}

.sidebar-menu li {
  cursor: pointer;
  list-style: none;
}

.sidebar-menu li .megamenu-link {
  font-size: 14px;
/*  line-height: 34px;*/
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  margin: 0;
  position: relative;
  transition: none;
  height: 37px;
}



.sidebar-menu li .megamenu-icon {
  width: 20px;
  text-align: center;
  margin-top: -2px;
}

.sidebar-menu li .megamenu-link:hover {
  text-decoration: none;
  color: white;
  background: var(--primary);
  outline: none;
}
.sidebar-menu li .megamenu-link:hover img {
/*  filter: brightness(0) invert(1);*/
}

.sidebar-menu li:last-child .megamenu-link:hover {
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}

.megamenu-content {
  position: absolute;
  z-index: 10;
  cursor: default;
  top: 0;
  left: 100%;
  opacity: 0;
  visibility: hidden;
  width: calc(1320px - 235px);
  height: 100%;
/*  margin-left: 12px;*/
  background: #fbfefe;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 1rem;
  border-top-left-radius: 0;
}

.sidebar-menu li:hover .megamenu-content {
  opacity: 1;
  visibility: visible;
}

.mega-menu-list {
  display: flex;
  height: 100%;
}
.sub-megamenu-item {
  padding: 20px;
  height: 100%;
  flex: 1;
  overflow-y: auto;
}
.sub-megamenu-item.sub-megamenu-item-first {
    max-width: 40%;
}
.sub-megamenu-item:last-child {
  flex: 0 0 60%;
}

.megamenu-item-title {
  margin-bottom: 6px;
}

.megamenu-item-title a {
  font-size: 16px;
  font-weight: 700;
  display: block;
}

.icon-box-img {
  display: flex;
  justify-content: center;
}

.icon-box-img a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e4e4e4;
/*  padding: 24px;*/
  border-radius: 50%;
  text-align: center;
  width: 74px;
  height: 74px;
  transition: all 0.3s;
}

.megamenu-content .images-box a {
  padding: 16px;
}

.icon-box-img img {
/*  width: 36px;*/
}
.megamenu-content .icon-box:hover .icon-box-img a {
  transform: scale(1.1);
}

.icon-box-text {
  font-size: 14px;
  margin: 5px 0;
}

.icon-box-text a {
  color: black;
}

.sub {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.list-megamenu .menu-not-brand, 
.sub a:not(.item-brand) {
  border: 1px solid black;
  border-radius: 1rem;
  font-size: 14px;
  padding: 5px 10px;
  display: block;
}

.sub a:not(.item-brand):hover {
  box-shadow: none;
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.sub a.item-brand {
    background: rgba(0,0,0,.04);
    float: left;
    display: flex;
    align-items: center;
    width: calc(50% - 5px);
    height: 49.2px;
}

.sub a.item-brand:hover {
    background: rgba(0,0,0,.08)
}

.item-brand a {
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0
}

.item-brand img {
    display: block;
    max-width: 70px;
    max-height: 40px;
    margin: auto
}

@media (max-width: 767px) {

  .megamenu-item-title a {
    font-size: 14px;
  }
  .megamenu-item-title a.link {
    color: #3b82f6;
    font-weight: normal;
    font-size: 14px;
  }
}

.sub-megamenu-item-list a {
  font-size: 15px;
  display: block;
}

.sub-megamenu-item-list a:hover {
  color: var(--primary);
}

.navbar .container > div {
  border-bottom: 1px solid #e6e6e6;
}

.sub-header {
  padding-bottom: 10px;
}
.sub-header ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
  transition: transform 0.25s ease 0s;
}

.sub-header ul::-webkit-scrollbar,
.product-tabs > ul::-webkit-scrollbar,
.list-banks .table-responsive::-webkit-scrollbar,
.order-tabs::-webkit-scrollbar,
.nav-cate ul::-webkit-scrollbar,
.list-row::-webkit-scrollbar,
.listProduct::-webkit-scrollbar,
.scroll-mb::-webkit-scrollbar {
  display: none;
}

.sub-header li {
  flex: auto;
  text-align: center;
}

.sub-header a {
  display: block;
  position: relative;
  color: white;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  padding-left: 32px;
  padding-right: 32px;
}

.sub-header li:not(:last-child) a:after{
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  background: #fff;
  width: 1px;
  height: 100%;
}

.sub-header li.active a,
.sub-header a:hover {
  color: var(--primary);
}

.page-news .sub-header {
  display: none;
}

@media (min-width: 1400px) {
  .main-header {
    /*display: block !important;*/
  }
}

@media (min-width: 1024px) {
  .main-header--left {
    position: relative;
  }

  .main-header--logo img {
    /*width: 200px;*/
    max-height: 42px;
  }

}

@media (min-width: 992px) {
  .sub-header ul {
    justify-content: space-between;
  }

  .sub-header li {
  }
}

@media (max-width: 1399px) {

  .main-header--sm {
    display: block;
  }

  .main-header--cart {
    text-align: right;
  }

  .main-header--cart a {
    display: inline-block;
    position: relative;
    color: red;
    padding: 6px 10px;
    background: #d9d9d930;
    border-radius: 10px;
  }

  .main-header--cart span.counter {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .main-header--cart a::after {
    /*content: '';*/
    position: absolute;
    top: 0;
    left: 0;
    background: #d9d9d9;
    border-radius: 21px;
    opacity: .23;
    width: 100%;
    height: 100%;
  }

  .main-header--cart img {
    height: 30px;
  }
}


.searchform-wrapper form {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 50px;
  padding: 12px 29px;
}

.searchform-wrapper input[type="text"] {
  background-color: transparent;
  border: none;
  padding: 0;
}

.header-action-item > a {
  display: block;
  text-align: center;
}

.header-action-item img {
  height: 25px;
}

.header-action-item p {
  font-size: 13px;
  line-height: 1;
  color: #fbcbcb;
  margin-top: 4px;
}

.header-action-item {
  position: relative;
}

.header-contact-content {
  position: absolute;
  width: 800px;
  background: #fff7f7;
  border: solid 1px #989898;
  top: 45px;
  right: 0;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
}

.main-header--contact:hover .header-contact-content {
  visibility: visible;
  opacity: 1;
}

.header-contact-content h3 {
  background: var(--primary);
  color: white;
  text-align: center;
  text-transform: uppercase;
  font-size: 18px;
  line-height: 33px;
  padding: 3px 0;
}


.main-header--sm .search-box {
  flex: 1;
}
.main-header--sm .logo img {
  max-width: 130px;
}
@media (max-width: 991px) {

  .main-header--cart img {
    
  }
}

@media (max-width: 767.98px) {
  .navbar .container > div {
    border-bottom: none;
  }

  .searchform-wrapper form {
    padding: 0;
  }
}

@media(max-width: 767px)
{
  .main-header--sm {
    padding: 5px 0;
  }
  .main-header--sm .logo img {
    max-width: 100px;
  }


}

.contact-wrap {
  padding: 15px 10px;
  display: flex;
  flex-wrap: wrap;
}

.contact-col {
  flex: 1;
}

.contact-wrap h5 {
  font-size: 16px;
  line-height: 33px;
}

.contact-wrap ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.contact-col li {
  font-size: 14px;
  line-height: 33px;
}

.contact-col li:before {
  content: "";
  display: inline-block;
  margin-right: 6px;
  margin-bottom: -2px;
  width: 15px;
  height: 15px;
  background: url(../img/icon-comment.svg) no-repeat center center;
  background-size: contain;
}
.contact-col li a {
  font-size: 13px;
  line-height: 30px;
  height: 30px;
  display: inline-block;
  margin-right: 20px;
}

.contact-col li a i {
  color: var(--primary);
}

.menu-widget p {
  color: white;
  background: var(--primary);
  padding: 12px 20px;
  text-transform: uppercase;
  font-weight: 700;
  border-bottom: 1px solid #fff;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

.megamenu-list__content {
  position: relative;
  z-index: 2;
  opacity: 1;
  visibility: visible;
  padding: 0;
}

.megamenu-list__content .sidebar-menu {
  width: 100%;
}

.megamenu-list__content .megamenu-content {
  width: calc(300% - 0px);
}

@media (min-width: 1200px) {
    .col-menu {
        width: 20%;
    }
    .col-slider {
      flex: 55%;
    }
}
@media (max-width: 991px) {

  .slider-area  {
/*    padding: 27px 0 0;*/
  }
}

.top-rate {
  background: white;
  border-radius: var(--bs-border-radius-lg);
  padding: 8px 14px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.sec-title {
  margin-bottom: 15px;
}

.sec-title h6 {
  text-transform: capitalize;
  position: relative;
  text-align: center;
  line-height: 28px;
}

.sec-title h6::before {
  content: '';
  background: url(../img/icon/rate-1.png) top center no-repeat;
  background-size: 100% auto;
  position: absolute;
  top: -17px;
  left: 0;
  width: 76px;
  height: 58px;
}
.sec-title h6:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 1px;
  background: var(--primary);
}

.rate-item {
  display: flex;
  align-items: center;
  flex-flow: row wrap;
  width: 100%;
}

.rate-item:not(:last-child) {
/*  margin-bottom: 1px;*/
}

.rate-item .hot-rank {
  width: 40px;
  height: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding-top: 5px;
  color: #9cacb4;
  font-weight: 700;
  line-height: 1;
  font-size: 16px;
  text-transform: uppercase;
}
.rate-item .hot-rank span:first-child {
  font-size: 14px;
}
.rate-item:nth-child(1) .hot-rank ,
.rate-item:nth-child(2) .hot-rank ,
.rate-item:nth-child(3) .hot-rank {
  color: #fff;
  justify-content: flex-start;
}
.rate-item:nth-child(1) .hot-rank {
  background: url(../img/icon/ranks-1.png) top center no-repeat;
  background-size: 100% auto;
}
.rate-item:nth-child(2) .hot-rank {
  background: url(../img/icon/ranks-2.png) top center no-repeat;
  background-size: 100% auto;
}
.rate-item:nth-child(3) .hot-rank {
  background: url(../img/icon/ranks-3.png) top center no-repeat;
  background-size: 100% auto;
}

.rate-item .thumb {
  width: 26%;
  position: relative;
  overflow: hidden;
}

.rate-item .content {
  flex: 1;
}

.rate-item h3,
.post-item h3 {
  font-size: 13px;
  line-height: 1.3;
  font-weight: normal;
  margin-bottom: 3px;
}

.rate-item h3 a:hover,
.post-item a:hover {
  color: var(--primary);
}

.post-item {
  font-size: 12px;
}
.post-item h3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.view-hot {
  display: flex;
  align-items: center;
  gap: 10px;

  font-style: italic;
  font-size: 12px;
  color: #6c757d;
  letter-spacing: 1px;
}

.view-hot .hot {
  width: 20px;
}

.view-hot .view {
}

.post-item:not(:last-child) {
  margin-bottom: 5px;
}

.post-item a {
  display: block;
}

.slider-area .post-list {
  padding: 10px;
  border-radius: var(--bs-border-radius-lg);
  height: 100%;
  background: #fff;
}

.images-box {
  position: relative;
  overflow: hidden;
}

.images-box::before {
  content: '';
  padding-top: 80%;
  display: block;
}

.images-box a,
.images-box .img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.images-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promotion-item .thumb {
  background: linear-gradient(90deg,rgba(0, 74, 173, 1) 35%, rgba(203, 108, 230, 1) 100%);
  padding: 16px 24px 32px;
  border-radius: 12px;
}

.promotion-item .thumb a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img a {
  overflow: hidden;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.promotion-item .thumb img {
  width: 65%;
  height: auto;
  object-fit: inherit;
}

.promotion-item h3 {
  font-size: 15px;
}

.promotion-item h3 a {
  display: block;
  color: white;
}

.product-img {
  position: relative;
}
.product-img:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.product-img a.img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  z-index: 1;
  display: flex;
  align-items: center;
}
.product-img a.img img {
/*  object-fit: cover;*/
  /*width: 100%;*/
/*  height: 100%;*/
  margin: auto;
  transition: all 0.3s;
}
.product-item:hover .product-img a.img img {
  transform: scale(1.1);
}
.owl-carousel .owl-item img {
  width: auto;
}
.product-icon {
  position: absolute;
  z-index: 9;
}
.product-icon.khung {
  top: 0;
  width: 100%;
  height: 100%;
}
.hot-sale {
  width: 44px;
  top: -7px;
  right: 3px;
}
.tra-gop {
  top: -7px;
  left: -7px;
  display: inline-block;
  padding: 2px 10px;
  border-radius: 16px;
  color: #fff;
  background: white;
  font-size: 12px;
  text-align: center;
  background: #E30019;
}
.product-onsale-off {
  top: 20px;
  left: -7px;
  background: url('../img/icon/sale-label-1.png') center no-repeat;
  background-size: cover;
  color: white;
  width: 48px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-weight: 700;
  margin-top: 5px;
}
.product-onsale-off div {
  transform: rotate(20deg);
  padding-top: 16px;
  padding-left: 8px;
  display: flex;
  flex-direction: column;
  text-align: center;
  line-height: 1.1;
}

.hover_content_pro {
    z-index: 999;
    border: 1px solid #243a76;
    width: 377px;
    box-shadow: 0 3px 7px 0 rgba(0,0,0,.25);
    display: none;
    padding-bottom: 10px
}

.list-row {
  display: flex;
  flex-direction: column;
  overflow-x: auto;
  flex-wrap: nowrap;
  background: var(--third);
  border-radius: 50px;
  padding: 20px 20px 33px;
}

.list-icon {
  display: flex;
  flex-wrap: nowrap;
}

.item-icon {
  flex: 0 0 45%;
  padding: 0 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.item-icon .thumb {
  width: 100%;
}

.item-icon .thumb a {
  position: relative;
  display: block;
  padding-bottom: 100%;
}

.item-icon img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}

.item-icon .content {
  width: 100%;
  text-align: center;
}

.item-icon h3 {
  font-size: 17px;
  white-space: nowrap;
}

.item-icon h3 a {
  display: block;
  color: white;
}

.thumb.images-box img {
  width: 100%;
}

@media (min-width: 768px) and (max-width: 991px) {

  .item-icon {
    flex: 0 0 30%;
  }
}

@media(max-width: 767px)
{
  .product-onsale-off {
    left: 0;
    width: 40px;
    height: 60px;
    font-size: 12px;
    margin-top: 0;
  }
}

/*product tooltip*/
#tooltip {
    position: absolute;
    z-index: 9999;
    background: #fff;
    border: 1px solid #ff0000;
    width: 300px;
    -webkit-box-shadow: 0 3px 7px 0 rgba(0,0,0,.25);
    box-shadow: 0 3px 7px 0 rgba(0,0,0,.25);
    padding-bottom: 10px;
    border-radius: 8px;
    display: none
}

.hover_name {
    display: block;
    padding: 10px;
    font-size: 14px;
    overflow: hidden;
    background: linear-gradient(to right, #ff3333, #ff0000);
    color: #fff;
    word-break: break-word;
    border-radius: 8px 8px 0 0;
    margin: 1px;
    font-weight: 600;
    text-shadow: 0 1px rgba(0,0,0,.25)
}

.tooltip-title {
    display: inline-block;
    background: #243a76;
    color: #fff;
    border-radius: 3px;
    padding: 5px 12px;
    margin-top: 10px;
    margin-bottom: 10px;
    line-height: 16px
}

#tooltip .product-price {
  display: flex;
  align-items: center;
}
#tooltip .product-price .price-old {
  margin-left: 10px;
}

#tooltip ul {
  padding-left: 20px;
}
#tooltip p {
  margin-bottom: 5px;
}
/*product tooltip*/

.sale-section {
  background: #ff4237;
}

.flashsale-tabs {
  margin-top: -100px;
}

.flashsale-tabs .nav-tabs {
  column-gap: 12px;
  border-bottom: none;
  align-items: flex-end;
}

.flashsale-tabs .nav-tabs li {
  position: relative;
}

.flashsale-tabs .nav-tabs li.active::after {
  position: absolute;
  bottom: -33px;
  height: 0;
  width: 0;
  left: 33%;
  transform: rotate(180deg);
  border: 16px solid transparent;
  border-bottom-color: var(--third);
  content: "";
}

.flashsale-tabs .nav-tabs a {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: black;
  background: #dfdfdf;
  padding: 35px 8px;
  border-radius: 21px;
}

.flashsale-tabs .nav-tabs a.active {
  background: var(--third);
  border-color: var(--third);
  color: white;
}

.flashsale-banner {
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.flashsale-banner img {
  /*object-fit: cover;
  width: 100%;
  height: 100%;*/
}

.flashsale-banner .countdown {
  padding: 10px;
  border-radius: 10px;
  z-index: 999;
  background: #ffffffba;
}

.countdown ul {
  padding-left: 0;
  text-align: center;
}
.countdown li {
  display: inline-block;
  font-size: 16px;
  list-style-type: none;
  color: #fff;
}

.countdown li span {
  display: block;
  font-size: 14px;
}

.product-sale {
  background: white;
  color: black;
  border-radius: 50px;
  margin-top: 13px;
}

.countdown-timer {
  display: flex;
  align-items: center;
  justify-content: center;
}
.countdown.show .running {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.countdown.show .running h3 {
  font-size: 16px;
  white-space: nowrap;
  margin-bottom: 10px;
}
.countdown.show .running h3 span {
  font-size: 18px;
}
.countdown.show .running timer {
  font-size: 20px;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1;
  color: #ea0000;
}

.countdown.show .running timer .days,
.countdown.show .running timer .hours,
.countdown.show .running timer .minutes,
.countdown.show .running timer .seconds{
  width: 20px;
  text-align: left;
  margin: 0 7px;
}

@media (max-width: 480px) {
  .countdown.show .running timer  {
    font-size: 40px;
  }
  .countdown.show .running timer .days,
  .countdown.show .running timer .hours,
  .countdown.show .running timer .minutes,
  .countdown.show .running timer .seconds {
    width: 49px;
  }
}

.countdown.show .running .break{
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  height: 0;

}

.countdown.show .running .labels{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
}

.countdown.show .running .labels span{
  text-align: center;
  margin: 0px 2px;
}

@media (max-width: 480px) {
  .countdown.show .running .labels span{
    width: 69px;
  }
}

.countdown.show .running .text{
  font-size: 20px;
  margin-top: 12px;
  font-weight: 600;
}

.listProduct {
  display: flex;
  overflow-x: scroll;
  gap: 24px;
  margin-top: 40px;
}

.listProduct .product-item {
  -webkit-flex: 0 0 45%;
  flex: 0 0 45%;
  max-width: 45%;
  border: 4px solid rgb(0 0 0 / 22%);
  /*margin-left: 0;*/
}

.add-to-cart-button a {
  margin-top: 16px;
  border: 1px solid black;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 700;
  width: 100%;
}

.add-to-cart-button a:hover {
  border-color: var(--third);
  background: var(--third);
  color: white;
}

@media (max-width: 767px) {

  .listProduct .product-item {
    -webkit-flex: 0 0 70%;
    flex: 0 0 70%;
    max-width: 70%;
  }
}

.owl-carousel .owl-stage {
    display: flex;
    padding-left:0px !important;
}

.product-tabs > ul {
  border-bottom: none;
  background: black;
  border-radius: var(--bs-border-radius-lg) var(--bs-border-radius-lg) 0 0;
}

.product-section .product-tabs .nav-link {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  padding: 18px 20px;
  display: block;
  text-align: center;
  border: 0;
  min-width: 250px;
}

.product-tabs li .nav-link:focus,
.product-tabs li .nav-link:hover {
  border-color: transparent;
  color: white;
}

.product-section .product-tabs .nav-link.active {
  background-color: #3d96d9;
  color: white;
  border-radius: var(--bs-border-radius-lg) var(--bs-border-radius-lg) 0 0;
  border: none;
}

.product-section .product-tabs--technology .nav-link.active {
  background-color: #f5874f;
}

.product-tabs .section-title a {
  color: #fff;
}
.product-tabs .section-title a i {
  font-size: 12px;
}

.wrapper-content {
    background: white;
    border-radius: 12px;
    padding: 12px 5px;
}

.wrapper-content .section-title {
  padding: 0 8px;
}

@media (max-width: 991px) {

  .product-tabs > ul {
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    /*-webkit-overflow-scrolling: touch;*/
  }

  .product-section .product-tabs li button {
    white-space: nowrap;
  }
}

@media(max-width: 767px)
{
  .product-section .product-tabs .nav-link {
    padding: 15px;
    font-size: 14px;
    min-width: unset;
  }
}

.banner-ads::before {
  padding-top: 165%;
}

.product-item {
  background: #fff;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid #e4e5f0;
  position: relative;
  z-index: 1;
}
.product-item:hover {
  box-shadow: rgba(0, 0, 0, 0.24) -1px -1px 8px;
}

.product-item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-item-content .content-top {
  flex: 1;
}
.product-item-brand {
  /*position: absolute;
  bottom: -6px;
  left: 8px;*/
  font-weight: 500;
  z-index: 9;
  font-size: 13px;
  color: #5c5c5c;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.product-title {
  display: flex;
  gap: 8px;
}
.product-title h3 {
  flex: 1;
}
.product-title .gift {
  width: 18px;
}

.product-item .thumb {
  position: relative;
}

.product-onsale {
  position: absolute;
  z-index: 1;
  top: -7px;
  left: -7px;
}

.badge-label--second {
  background: url('../img/icon/sale-label-2.png') center no-repeat;
  background-size: cover;
  height: 100px;
  width: 89px;
  flex-direction: inherit;
}

.onsale span {
  font-size: 18px;
}

.badge-label p {
  text-transform: uppercase;
  transform: rotate(20deg);
  width: 100%;
  padding-left: 6px;
}

.badge-percent {
  display: flex;
  align-items: center;
  transform: rotateZ(-43deg);
}

.onsale-second {
  font-weight: 700;
  font-size: 24px;
  margin-top: 10px;
}

.percent {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  text-transform: uppercase;
}

.percent span:last-child {
  font-size: 18px;
  line-height: 12px;
}

.product-tabs .tab-content {
  background: #3d96d9;
  padding: 18px 10px 15px;
  border-radius: 0 0 var(--bs-border-radius-lg) var(--bs-border-radius-lg);
}

.product-tabs--technology .tab-content {
  background: #f5874f;
}

.owl-carousel-main,
.products-slider {
  position: relative;
}
.products-slider .owl-item {
  padding: 8px 8px 5px;
}
.products-slider .owl-nav button ,
.owl-carousel-main .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  background: white;
  transition: all 0.5s;
}
.products-slider:hover .owl-nav button ,
.owl-carousel-main:hover .owl-nav button {
  opacity: 1;
  visibility: visible;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}
.products-slider .owl-nav .owl-prev ,
.owl-carousel-main .owl-nav .owl-prev {
  left: 0;
}
.products-slider .owl-nav .owl-next ,
.owl-carousel-main .owl-nav .owl-next {
  right: 0;
}

.products-slider .product-price {
  font-size: 14px !important;
}

@media (max-width: 991px) {

  .badge-container {
    left: -4px;
  }

  .installment {
    font-size: 15px;
    border-radius: 9px;
  }

  .product-item {
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .product-tabs .tab-content {
    padding-left: 5px;
    padding-right: 5px;
    padding-bottom: 5px;
  }
  .product-tabs--technology .tab-content {
    padding-left: 5px;
    padding-right: 5px;
    padding-bottom: 5px;
  }

  .products-slider .owl-item {
    padding: 8px 3px 5px;
  }
}

.hotsale {
  position: absolute;
  top: -10px;
  right: 5px;
  width: 20%;
}

.products-content-brand {
  height: 12px;
  width: auto;
  display: block;
  margin-bottom: 8px;
}

.products-content-brand img {
  width: auto !important;
  height: 100%;
  display: block;
}

.products-content-compare {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  font-size: 12px;
  line-height: 1;
}
.compare-item {
  display: flex;
  align-items: center;
}
.compare-item:before {
  content: "";
  height: 15px;
  width: 15px;
  display: inline-block;
  background: url(../img/icon_plus.png) no-repeat center;
  background-size: 100%;
  margin-right: 2px;
}
.compare-item.active:before {
  background: url(../img/icon_checked.png) no-repeat center;
  background-size: 100%;
}
.product-btn-cart {
  margin-bottom: 1px;
  gap: 5px;
  flex-wrap: wrap-reverse;
  justify-content: flex-end;
  align-items: flex-end;
  /*height: 100%;*/
}

.products-content--title {
  max-width: 65%;
}

.product-item-content {
  padding: 8px;
}
.product-item-content h3 {
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  margin-bottom: 5px;
}

.product-item-content h3 a {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-price {
  font-weight: 700;
  font-size: 14px;
  flex: 0 0 auto;
}
.product-price del {
  display: block;
  font-size: 13px;
  color: #8f8f8f;
  line-height: 1;
  margin-bottom: 3px;
  font-weight: normal;
}
.product-price ins {
  text-decoration: none;
  color: var(--primary);
  text-decoration: none;
  display: block;
}
.product-price ins span {
  color: #ec3237;
  font-size: 16px;
  font-weight: 700;
}

.product-price--remove {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.product-price .quantity {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-top: 10px;
}

.product-price .discount {
  display: inline-block;
  border: 1px solid var(--primary);
  border-radius: 2px;
  background: #FFEDED;
  color: var(--primary);
  font-size: 13px;
  line-height: 16px;
  padding: 0 4px;
}

.item-add-cart 
,.products-content-compare a {
  color: #3d96d9;
}

.products-content--compare img {
  width: 20px !important;
}

.product-technical {
  background: #f6f6f6;
  padding: 8px 6px 5px;
  border-radius: 8px;
  color: #000;
  font-size: 11px;
}

.product-technical ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.product-technical li {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  line-height: 1;
}

.product-technical li:last-child {
  margin-right: 0;
}

.product-technical img {
  height: 12px;
}

.product-technical span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
}

@media (max-width: 991px) {

  .products-content--title {
    max-width: 50%;
  }
}

@media (max-width: 767px) {
  .product-item-content {
    padding: 5px;
  }
  
  .products-content-compare {
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
  }
  .products-content--compare a {
    font-size: 11px;
    align-items: center;
  }

  .product-price {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 5px 0;
    gap: 10px;
    flex-direction: row-reverse;
  }

  .product-price del {
    font-size: 11px;
    margin-bottom: 0;
  }

  .product-price ins span {
    font-size: 14px;
  }
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 27px;
  position: relative;
}

.section-title h3 {
  font-size: 20px;
  text-transform: uppercase;
}

.section-title a {
  font-size: 14px;
  color: var(--primary);
}



@media (max-width: 767px)
{
  .section-title {
    margin-bottom: 10px;
  }

  .section-title h3 {
    font-size: 16px;
  }

  .title-box a {
    /*font-size: 18px;*/
  }
}

/*section-product-hot*/
.section-product-hot .wrapper-content {
/*  background: var(--primary);*/
}
.section-product-hot .section-title h3 {
/*  color: #fff;*/
}
/*section-product-hot*/

.product-slider .owl-prev,
.product-slider .owl-next{
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 30px;
  line-height: 30px;
  height: 30px;
}

.product-slider .owl-prev {
  left: -5%;
  transform: scale(-1, 1);
}

.product-slider .owl-next {
  right: -5%;
}

/* Product Viewed */

.product-viewed-section .bg-main {
  padding: 17px 0;
}

.product-viewed-section .bg-second {
  padding: 35px 0 75px;
}

.product-md-section .section-title h3 {
  font-size: 25px;
  text-transform: none;
}

.product-md-section .title-box a {
  font-size: 17px;
  text-transform: none;
}

.product-md-section .title-box {
  margin-bottom: 0;
}

.product-general .product-item {
  border: 4px solid rgb(0 0 0 / 22%);
}

/*.swiper-button-next, .swiper-button-prev {
  color: #000;
}*/

.swiper-button-next,
.swiper-button-prev{
  color: #fff;
  background: #090d1466;
/*  padding: 30px 26px;*/
  border-radius: 50%;
  width: 40px;
  height: 40px;
  transition: all 0.1s;
/*  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;*/
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  
  width: 50px;
  height: 50px;
}

.swiper-button-next {
  right: 2px;
  padding-left: 3px;
}

.swiper-button-prev {
  left: 2px;
  padding-right: 3px;
}

.swiper-button-next::after,
.swiper-button-prev::after{
  height: 22px;
  font-size: 20px;
}

@media (max-width: 767px) {
  .product-md-section .section-title h3 {
    font-size: 15px;
  }

  .product-md-section .title-box a {
    font-size: 12px;
  }

  .swiper-button-next, 
  .swiper-button-prev {
    width: 30px;
    height: 30px;
    padding: 16px;
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 16px;
    line-height: inherit;
  }
}

/* Product Outstanding */

.product-tabs--outstanding ul.nav-tabs {
  border-radius: 0;
}

.product-tabs--outstanding ul.nav-tabs .nav-link {
  color: white;
  font-weight: 700;
  font-size: 18px;
  white-space: nowrap;
}

.product-tabs--outstanding ul.nav-tabs .nav-link.active {
  background: #ffbd59;
  border-color: #ffbd59;
  color: white;
}

.product-tabs--outstanding .tab-content {
  background: #ffbd59;
  border-radius: 0 0 10px 10px;
}

/* Review News */
.news-post {
  color: #fff;
}
.info-cate {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
}

.category-name,
.published,
.hits {
  font-size: 11px;
/*  color: #fff;*/
}
.category-name a {
  color: var(--primary);
}

.news-post h2 {
  font-size: 22px;
  margin-bottom: 12px;
}

.news-post h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.news-post h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.news-tag {
  display: flex;
  align-items: center;
  gap: 12px;
}

.news-tag h5 {
  font-size: 16px;
}

.news-tag ul {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}

.news-tag li {
  display: inline-block;
  background: #bfbdbc;
  border-radius: 5px;
  padding: 5px 10px;
}

.news-tag li:hover {
  background: var(--primary);
}

.news-tag li a {
  font-weight: 700;
  display: block;
}

.news .images-box {
  overflow: unset;
}

.related-item .images-box::before {
  padding-top: 55%;
}

.view-more--news {
  position: absolute;
  bottom: 10px;
  left: -8px;
}

.view-more--news button {
  padding: 7px 20px;
  border-radius: 3px;
  color: white;
}

.view-more--news button:hover {
  color: white;
  background: var(--primary);
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.news-related h5,
.related-item h3 {
  font-size: 16px;
  line-height: 24px;
}

.related-item h3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-word;
}

.news-large a:hover h3,
.related-item a:hover h3 {
  color: var(--primary);
}



.news.wrapper-content {
  padding: 12px;
}
.news-item .images-box:before {
  padding-top: 67%;
}
.news-item .images-box a {
  overflow: hidden;
  border-radius: 5px;
}

.news-item h3 {
  font-size: 15px;
  line-height: 1.3;
  font-weight: 500;
  margin-bottom: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.news-item h3 a {
  display: block;
}

.news-item h3 a:hover {
  color: var(--primary);
}

.news-item p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

@media (max-width: 767px) {

  .news .title-box {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

/*toc menu*/
.content-toc {
  width: 100%;
  border: 1px solid rgba(51,51,51,0.95);
  border-radius: 10px;
  margin-bottom: 10px;
  transition: .6s ease;
}
.content-toc .toc-header {
  font-size: 18px;
  display: flex;
  align-items: center;
  position: relative;
  padding: 10px;
  background: unset;
}
.content-toc .toc-header h3 {
  margin-bottom: 0;
  font-size: 18px;
  margin-left: 10px;
}
.content-toc .header-minimize  ,
.content-toc .header-close  {
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
  transition: all 0.3s;
}
.content-toc.toc-minimize .header-minimize {
  transform: rotate(-90deg);
}
.content-toc .aside-close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: none;
}
.content-toc .toc-menu ,
.content-toc ul {
  padding-left: 10px;
  margin-bottom: 0;
}
.content-toc li {
  list-style: none !important;
}
.content-toc li a{
  color: #000;
  font-weight: 700;
  padding: 3px 10px;
  display: block;
}
.content-toc a:hover {
  color: var(--primary);
}
.content-toc li li a
{
  font-weight: 500;
}

/*.content-toc li a:before {
  content: "";
  width: 6px;
  height: 6px;
  background: #000;
  display: inline-block;
  margin-right: 8px;
  margin-bottom: 3px;
}*/
.content-toc li li a:before {
  width: 4.5px;
  height: 4.5px;
  margin-bottom: 4px;
}

.btn-toc-action {
  display: none;
  position: fixed;
/*  right: 0;*/
  top: 50%;
  border: 1px solid #3a3a3a;
  width: 42px;
  height: 42px;
  font-size: 28px;
  text-align: center;
  background: #fff;
  cursor: pointer;
  transition: .6s ease;

}

.toc-sidebar .content-toc {
/*  display: none;*/
  position: fixed;
  top: 0;
  background: #f3f3f3f2;
  opacity: 0;
  visibility: hidden;
  max-width: 500px;
  width: auto;
  height: 100%;
  overflow-x: auto;
}
.toc-sidebar .content-toc.active {
  opacity: 1;
  visibility: visible;
}

.toc-sidebar .content-toc .header-minimize,
.content-toc .header-close {
  display: none;
}
.toc-sidebar .content-toc .header-close {
  display: block;
}

.toc-sidebar ol {
  padding-left: 20px;
}

@media(max-width: 767px)
{
  .btn-toc-action {
/*    display: block;*/
    right: 0;
  }
  /*.content-toc {
    position: fixed;
    right: 0;
    top: 50%;
    width: 90%;
    transform: translate(100%, -50%);
    background: #fff;
    z-index: 9;
    max-height: 400px;
    overflow-y: auto;
    font-size: 16px;
    padding: 20px 10px;
  }
  .content-toc.active {
    transform: translate(0, -50%);
  }*/
  .content-toc .aside-close {
    display: block;
  }


  .btn-toc-action.active {
    transform: translateX(100%);
  }

  .toc-sidebar .content-toc {
    right: 0;
    max-width: 100%;
  }
}


/*toc menu*/

/*social*/
.share-box>a {
    display: inline-block;
    padding: 0 10px;
    border: 1px solid #ccc;
    margin-right: 5px;
    border-radius: 3px;
    line-height: 30px;
    font-size: 14px;
/*    color: #fff;*/
}

.share-box .share-box-social {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: 50%;
    bottom: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: #000;
    padding: 3px;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    border-radius: 3px;
    -webkit-transform: translate(-50%,0);
    transform: translate(-50%,0)
}

.quick-alo-phone,.quick-alo-phone.quick-alo-show {
    visibility: visible
}

.share-box .share-box-social li {
    background: #ea6e26;
    margin: 0 1px
}

.share-box .share-box-social li a {
    padding: 10px;
    color: #fff;
    font-size: 13px;
    min-width: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 1px
}

.share-box .share-box-social li a:hover {
    color: #001935
}

.share-box .share-box-social:before {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 6px 0;
    border-color: #0c4556 transparent transparent;
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    z-index: 99;
    margin-left: -3px
}

.share-box:hover .share-box-social {
    opacity: 1;
    visibility: visible;
    margin-bottom: 6px
}

/*social*/


/*Login */
.bg-main_login {
    background: var(--login-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.bg-main_login .frm-account {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0px 0px 20px 0px #0000001A;
}

.close-btn {
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  position: absolute;
  top: -15px;
  right: -15px;
  opacity: 1;
}

.login-lightbox .modal-body {
  padding: 32px;
}

.social-icon {
  display: flex;
  flex-wrap: wrap;
  row-gap: 32px;
  margin-top: 51px
}

.social-icon a {
  flex: 0 0 33%;
  max-width: 33%;
}

.social-icon img {
  width: 46px;
}

.frm-account--title {
  margin-bottom: 55px;
}

.frm-account--title img {
  width: 68px;
}

.frm-account--title h4 {
  font-size: 30px;
  margin-top: 30px;
}

.frm-account--icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  margin-bottom: 52px;
}

.frm-account--icon img {
  width: 40px;
}

.other-login-title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.other-login-title span {
  flex: 1 1;
  height: 1px;
  background: #a3a3a3;
}

.other-login-title h5 {
  position: relative;
  font-size: 26px;
  padding: 0 16px;
}

.frm-account--other .form-group input[type="tel"] {
  padding-top: 22px;
  padding-bottom: 22px;
  border-width: 2px;
  border-color: black;
  border-radius: 50px;
}

/*category content*/
.catebottom__r {
    overflow: hidden;
    position: relative
}

.height_190 {
    height: 400px;
    overflow: hidden;
    position: relative
}
.height_auto {
    height: auto !important;
}

@media (max-width: 991px) {
    .catebottom__l {
        width:100%
    }

    .catebottom__r {
        width: 100%;
        padding: 0px
    }

    .cat_description {
        padding: 10px 0px 10px
    }
}

.cat_description {
  background: #fff;
  font-size: 13px;
  line-height: 1.5;
  text-align: justify
}

.cat_description a {
  color: var(--main-color)
}

.cat_description h2 {
  font-size: 22px;
  line-height: 1.3;
  font-weight: bold
}

.cat_description h3 {
  font-size: 18px;
  line-height: 25px;
  font-weight: bold
}

.cat_description h2,.cat_description ul {
  margin: 7px 0px
}

.cat_description p {
  margin-block-start:1em;margin-block-end:1em}

.cat_description h2 {
  margin: 10px 0px
}

.cat_description h3,.cat_description h4,.cat_description h5 {
  margin: 12px 0px
}

.cat_description img {
  max-width: 100%;
  height: auto !important
}

.cat_description ul li {
  margin: 6px 0px 6px 16px;
  list-style: initial
}

#read_more {
    position: relative
}

#read_more .vm_summary_content_cat {
    border: 1px solid #0066FF;
    color: #0066FF;
    z-index: 1;
    width: 200px;
    display: block;
    overflow: hidden;
    position: relative;
    line-height: 35px;
    font-size: 14px;
    margin: 10px auto;
    cursor: pointer;
    text-align: center;
    border-radius: 8px;
    top: 0px
}

#read_more::after {
    content: "";
    background: linear-gradient(to bottom, #ffffff00, #fff, #fff);
    bottom: 15px;
    height: 105px;
    left: 0;
    position: absolute;
    width: 100%
}

.none_bf::after {
    display: none
}

.show_767 {
    display: none !important
}

@media (max-width: 767px) {
    .show_767 {
        display:block !important
    }
}

.hide_767 {
    display: block !important
}

@media (max-width: 767px) {
    .hide_767 {
        display:none !important
    }
}
/*category content*/

/* ----------------------------------- Other Pages Styles ----------------------------------- */

/*--------------------------------------------------------------
# Archive Page
--------------------------------------------------------------*/

.cate-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 10px;
  border-radius: 12px;
  background: #e4e4e4;
}

.cate-item {
  flex: 1;
  max-width: 164px;
  border-radius: 0.3em;
}

.cate-item a {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 100%;
  border: 1px solid #d1d5db;
  background: #fdf4e5;
  padding: .5rem;
  border-radius: 8px;
  transition: unset;
  line-height: 1.2;
}
.cate-item a:hover {
/*  box-shadow: var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);*/
}
.cate-item img {
  width: 33px;
  
}
.cate-item a:hover,
.cate-item a.active{
  background: var(--primary);
  color: #fff;
}
.cate-item a:hover img ,
.cate-item a.active img {
  filter: brightness(0) invert(1);
}

.cate-list.cate-list-new {
  padding: 0;
  background: unset;
  gap: 15px;
}
.cate-list-new .cate-item a {
  color: #fff;
/*  background: unset;*/
}
.cate-list-new .cate-item img {
  filter: brightness(0) invert(1);
}
.btn-cate {
  padding: 0.1em 0.25em;
  height: 100%;
  background-color: var(--secondary);
  border: 0.08em solid #fff;
  border-radius: 0.3em;
  cursor: pointer;
}

.btn-cate a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 0.4em;
  
  background-color: #212121;
  border-radius: 0.2em;
  color: #fff;
  border: 0.08em solid #fff;
  box-shadow: 0 0.4em 0.1em 0.019em #fff;
}

.cate-item.active .btn-cate,
.btn-cate:hover {
  background-image: linear-gradient(163deg, #00ff75 0%, #3700ff 100%);
}
.cate-item.active,
.cate-item:hover {
  box-shadow: 0px 0px 30px 1px rgba(0, 255, 117, 0.30);
}

.cate-item.active .btn-cate a ,
.btn-cate a:hover {
  transition: all 0.5s;
  transform: translate(0, 0.4em);
  box-shadow: 0 0 0 0 #fff;
  background-color: var(--secondary);
}

.cate-item.active .btn-cate a:not(hover) ,
.btn-cate a:not(hover) {
  transition: all 1s;
}



@media (max-width: 991px) {

  .cate-item {
    flex: 0 0 calc(33% - 10.1px);
  }
}

@media (max-width: 767px) {

  .cate-list {
    gap: 12px;
    padding-left: 32px;
    padding-right: 32px;
  }

  .cate-list.cate-list-new {
    gap: 12px;
  }
  .cate-item {
    flex: 0 0 calc(50% - 6px);
    max-width: unset;
  }
  .cate-item a {
    font-size: 13px;
  }

  .cate-list.scroll-x .cate-item {
    flex: 0 0 auto;
    min-width: 120px;
  }
  .cate-list.scroll-x .cate-item a {
    padding-left: 10px;
    padding-right: 10px;
  }
}


.field input {
  padding: 4px 8px;
  text-align: center;
  border: 1px solid #CFCFCF;
  border-radius: 4px;
  color: #111;
  cursor: pointer;
  position: relative;
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  width: 100%;
  white-space: nowrap;
  outline: none;
}


/*filter */
.collection-filter {
  /*padding: 24px;*/
}
.collection-filter .list-filter--selected {
  display: flex;
  flex-wrap: wrap;
}
.collection-filter .list-filter--selected > span {
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  height: 27px;
  white-space: nowrap;
}
.collection-filter .list-filter--selected .list-tags {
  flex: 1;
  padding-left: 8px;
}
.collection-filter .list-filter--selected .filter-tags {
  display: none;
  align-items: center;
  height: 27px;
  line-height: 24px;
  margin: 0 8px 4px 0;
  background: #fff;
  border: 1px solid #cfcfcf;
  font-size: 12px;
  padding: 0 24px 0 8px;
  border-radius: 4px;
  position: relative;
}

  .collection-filter
  .list-filter--selected
  .filter-tags
  > span:first-child {
  white-space: nowrap;
}
.collection-filter .list-filter--selected .filter-tags b {
  font-size: 13px;
  font-weight: 600;
  padding: 0 4px 0 8px;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}

  .collection-filter
  .list-filter--selected
  .filter-tags
  span.filter-tags--remove {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-left: 4px;
  cursor: pointer;
  color: #fff;
  text-align: center;
  border: 1px solid #1982f9;
  border-radius: 50%;
  background: #1982f9;
  padding: 4px;
  position: absolute;
  right: 3px;
}
.collection-filter .list-filter--selected .filter-tags span.filter-tags--remove svg {
  fill: #fff;
  stroke: #fff;
  stroke-width: 2px;
  stroke: #fff;
  vertical-align: top;
}
.collection-filter .list-filter--selected .filter-tags.opened {
  display: inline-flex;
}
.collection-filter .list-filter--selected .filter-tags.opened b {
  color: #1982f9;
}
.collection-filter .list-filter--selected .filter-tags.filter-tags--remove-all {
  cursor: pointer;
  border: 0;
  vertical-align: 2px;
}
.collection-filter .list-filter--selected .filter-tags.filter-tags--remove-all span {
  color: #3966b8;
  border-bottom: 1px solid #3966b8;
}
.collection-filter .collection-sortby {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 10px;
}
.collection-filter .filter-wrap {
  position: relative;
  display: flex;
}
.collection-filter .filter-group .filter-group--block {
  position: relative;
}
.collection-filter .filter-group .filter-group--title {
  line-height: 18px;
}
.collection-filter .filter-group .filter-group--content ul {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0;
  gap: 10px 8px;
  padding-right: 2px;
  padding-left: 0;
  overflow-y: auto;
  max-height: 220px;
  /*li:nth-child(n+12) {display: none;}*/
  list-style: none;
}
.collection-filter .filter-group .filter-group--content ul::-webkit-scrollbar {
  width: 2px;
}
.collection-filter .filter-group .filter-group--content ul::-webkit-scrollbar-track {
  background: #d0d0d0;
}
.collection-filter .filter-group .filter-group--content ul::-webkit-scrollbar-thumb {
  background: #222222;
}
.collection-filter .filter-group .filter-group--content ul li {
  padding-left: 0;
  width: auto;
  position: relative;
  cursor: pointer;
}
.collection-filter .filter-group .filter-group--content ul li input[type="radio"],
.collection-filter .filter-group .filter-group--content ul li input[type="checkbox"] {
  display: none;
}
.collection-filter .filter-group .filter-group--content ul li label {
  padding: 7px 10px;
  border: 1px solid #cfcfcf;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  margin: 0;
  font-weight: 400;
  width: 100%;
  /*
            text-align: center;
            white-space: nowrap;
          */
}
.collection-filter .filter-group .filter-group--content ul li.active label,
.collection-filter .filter-group .filter-group--content ul li:hover label {
  background: #ffffff;
  border: 1px solid #1982f9;
  color: #1982f9;
}
.collection-filter .filter-group .filter-group--content ul li.active label {
  font-weight: 600;
}
.collection-filter .filter-group .filter-group--content ul li.list-more {
  display: none;
}
.collection-filter .filter-group .filter-group--content ul li.list-more label {
  background: #ebebeb;
  display: flex;
  align-items: center;
}
.collection-filter .filter-group .filter-group--content ul li.list-more label svg {
  width: 15px;
  height: 15px;
  margin: 0 3px;
  fill: currentColor;
}
@media (max-width: 991px) {
  .collection-filter .filter-group .filter-group--content ul li {
    font-size: 12px;
  }
}
.collection-filter .filter-control a + a {
  margin-left: 8px;
}
.collection-filter .filter-control .filter-button .btn-filter--unselect,
.collection-filter .filter-control .filter-button .btn-filter--apply {
  border-radius: 4px;
  display: inline-block;
  line-height: 14px;
  padding: 10px 0;
  text-align: center;
  width: 140px;
  position: relative;
  opacity: 0.7;
  pointer-events: none;
}

.collection-filter .filter-control .filter-button .btn-filter--unselect.active {
  opacity: 1;
  pointer-events: initial;
}
.collection-filter .filter-control .filter-button .btn-filter--apply {
  background-color: #2485f6;
  color: #fff;
}
.collection-filter .filter-control .filter-button .btn-filter--apply span {
  display: none;
  width: 22px;
  transition: all 0.25s ease;
}
.collection-filter .filter-control .filter-button .btn-filter--apply span svg {
  height: 10px;
  top: calc(50% - 5px);
  stroke: currentColor;
  position: absolute;
  opacity: 0;
  transform: scale(0.8);
  -webkit-animation: move-chevron 1.5s ease-out infinite;
  animation: move-chevron 1.5s ease-out infinite;
}
.collection-filter .filter-control .filter-button .btn-filter--apply span svg:first-child {
  -webkit-animation: move-chevron 1.5s ease-out 1s infinite;
  animation: move-chevron 1.5s ease-out 1s infinite;
}
.collection-filter .filter-control .filter-button .btn-filter--apply span svg:nth-child(2) {
  -webkit-animation: move-chevron 1.5s ease-out 2s infinite;
  animation: move-chevron 1.5s ease-out 2s infinite;
}
.collection-filter .filter-control .filter-button .btn-filter--apply.active {
  opacity: 1;
  pointer-events: initial;
}
.collection-filter .filter-control .filter-button .btn-filter--apply.active span {
  display: inline-block;
  width: 22px;
}
.collection-filter #filter-price .range-slider {
  margin: 5px 12px 20px 12px;
}
.collection-filter #filter-price .range-slider .noUi-horizontal {
  height: 4px;
  border: none;
  background: #ececec;
}
.collection-filter #filter-price .range-slider .noUi-base .noUi-origin {
  top: -2px;
}
.collection-filter #filter-price .range-slider .noUi-base .noUi-connect {
  background: #24b400;
}
.collection-filter #filter-price .range-slider .noUi-base .noUi-handle {
  box-shadow: none;
  border: 0;
  width: 20px;
  height: 20px;
  right: -9px;
  top: -6px;
  border-radius: 50%;
}
 .collection-filter  #filter-price  .range-slider  .noUi-base  .noUi-handle:after,
 .collection-filter  #filter-price  .range-slider  .noUi-base  .noUi-handle:before {
  display: none;
}
.collection-filter #filter-price .range-slider .noUi-base .noUi-handle .noUi-touch-area {
  border-radius: 50%;
  background-color: rgba(76, 175, 80, 0.75);
}
.collection-filter #filter-price .range-slider .range-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
  padding: 0 10px;
  position: relative;
}

  .collection-filter
  #filter-price
  .range-slider
  .range-price:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 17px;
  right: 17px;
  background: #cfcfcf;
  height: 1px;
}

  .collection-filter
  #filter-price
  .range-slider
  .range-price
  input {
  padding: 4px 8px;
  text-align: center;
  border: 1px solid #cfcfcf;
  border-radius: 4px;
  color: #111;
  cursor: pointer;
  position: relative;
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  width: 100%;
  white-space: nowrap;
  outline: none;
}

  .collection-filter
  #filter-price
  .range-slider
  .range-price
  input:focus {
  border: 1px solid #1982f9;
}
@media (max-width: 767px) {
  .collection-filter #filter-price {
    max-width: 80%;
    margin: 0 10%;
  }
}
.collection-filter .sortby-control {
  position: relative;
}
.collection-filter .sortby-control .listbox__button {
  position: relative;
  z-index: 1;
  cursor: pointer;
  outline: none;
  border: 1px solid #cfcfcf;
  border-radius: 4px;
  font-size: 13px;
  line-height: 14px;
  padding: 5px 29px 5px 11px;
  width: 100%;
  background: transparent;
  text-align: left;
  display: inline-flex;
  align-items: center;
}
.collection-filter .sortby-control .listbox__button:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 11px;
  margin: auto;
  height: 5px;
  width: 10px;
  background-image: url("data:image/svg+xml,%3Csvg width='11' height='6' viewBox='0 0 11 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.35858 5.35858L0.841421 0.841421C0.715428 0.715428 0.804661 0.5 0.982842 0.5H10.0172C10.1953 0.5 10.2846 0.715428 10.1586 0.841421L5.64142 5.35858C5.56332 5.43668 5.43668 5.43668 5.35858 5.35858Z' fill='%23111111'/%3E%3C/svg%3E%0A");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.collection-filter .sortby-control .listbox__button svg {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}

  .collection-filter
  .sortby-control
  .listbox__button
  .listbox__text {
  display: inline-block;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  margin-right: 5px;
}

  .collection-filter
  .sortby-control
  .listbox__button
  .listbox__value {
  font-weight: 600;
}
.collection-filter .sortby-control .listbox__list-wrapper {
  position: absolute;
  z-index: 3;
  right: 0;
  margin: 0;
  width: 170px;
  border-radius: 4px;
  top: 110%;
  background: #ffffff;
  border: 1px solid #cfcfcf;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  display: none;
  visibility: hidden;
  opacity: 0;
}

  .collection-filter
  .sortby-control
  .listbox__list-wrapper
  ul {
  margin: 0;
  padding: 0;
  display: block;
  width: 100%;
  list-style-type: none;
}

  .collection-filter
  .sortby-control
  .listbox__list-wrapper
  ul
  li {
  display: flex;
  position: relative;
  cursor: pointer;
  padding: 7px 16px;
  background: #fff;
}

  .collection-filter
  .sortby-control
  .listbox__list-wrapper
  ul
  li
  input {
  opacity: 0;
  visibility: hidden;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

  .collection-filter
  .sortby-control
  .listbox__list-wrapper
  ul
  li
  label {
  margin-bottom: 0;
  display: block;
  cursor: pointer;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
}

  .collection-filter
  .sortby-control
  .listbox__list-wrapper
  ul
  li:hover {
  background: #e7f2ff;
}

  .collection-filter
  .sortby-control
  .listbox__list-wrapper
  ul
  li.active
  label {
  font-weight: 600;
}

  .collection-filter
  .sortby-control
  .listbox__list-wrapper.show-sort {
  display: block;
  visibility: visible;
  opacity: 1;
}
.collection-filter .filter-total {
  margin-right: 8px;
}
.collection-filter .filter-total .filter-total--title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 4px 10px;
  text-align: center;
  background: #fdf4e5;
  border-radius: 4px;
  cursor: pointer;
  height: 36px;
}
.collection-filter .filter-total .filter-total--title span {
  display: inline-block;
  white-space: nowrap;
}
.collection-filter .filter-total .filter-total--title svg {
  width: 14px;
  height: 14px;
  margin-right: 9px;
  fill: #ffffff;
}

  .collection-filter
  .filter-total
  .filter-total--title
  span.filter-number {
  position: absolute;
  top: -8px;
  right: 4px;
  width: 16px;
  height: 16px;
  background: #ff8a00;
  border-radius: 50%;
  color: #fff;
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
}
.collection-filter .filter-total .filter-total--content {
  display: none;
  background-color: #fff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  width: 900px;
  max-width: 900px;
  max-height: 85vh;
  min-width: 382px;
  position: absolute;
  top: 45px;
  right: auto;
  bottom: auto;
  z-index: 10;
  overflow-y: auto;
}

  .collection-filter
  .filter-total
  .filter-total--content.active {
  display: block;
}

  .collection-filter
  .filter-total
  .filter-total--content-head {
  display: flex;
  justify-content: flex-end;
  padding: 10px 16px 10px 16px;
  position: sticky;
  top: 0;
  z-index: 2;
  background: #fff;
}

  .collection-filter
  .filter-total
  .filter-total--content-head
  .filter-tags-wrap {
  width: calc(100% - 85px);
}

  .collection-filter
  .filter-total
  .filter-total--content-head
  .filter-tags-btn {
  width: 85px;
  position: relative;
  text-align: right;
}

  .collection-filter
  .filter-total
  .filter-total--content-head
  .filter-tags-btn
  .filter-btn-close {
  background-color: #fff;
  border: 1px solid #cfcfcf;
  border-radius: 4px;
  cursor: pointer;
  padding: 8px 10px;
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 75px;
  margin-left: auto;
}

  .collection-filter
  .filter-total
  .filter-total--content-head
  .filter-tags-btn
  .filter-btn-close
  svg {
  width: 12px;
  height: 12px;
  margin-right: 5px;
}

  .collection-filter
  .filter-total
  .filter-total--content-body
  .list-filter--main {
  display: flex;
  flex-wrap: wrap;
  height: auto;
  padding: 0 6px 16px;
}

  .collection-filter
  .filter-total
  .filter-total--content-body
  .filter-control {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.05);
  padding: 8px;
  bottom: 0;
  margin: 0;
  position: sticky;
  width: 100%;
  z-index: 2;
}
.collection-filter .filter-total .line {
  -ms-flex: 0 0 calc(100% - 20px);
  flex: 0 0 calc(100% - 20px);
  max-width: calc(100% - 20px);
  margin: auto;
  height: 1px;
  background: #cfcfcf;
}
.collection-filter .filter-total .filter-group {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  padding: 10px;
}
.collection-filter .filter-total .filter-group.vendor-group {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

  .collection-filter
  .filter-total
  .filter-group
  .filter-group--title {
  font-weight: 600;
  margin-bottom: 8px;
}
.collection-filter .filter-total .range-slider {
  margin: 5px 0 10px 0;
}
.collection-filter .filter-total .range-slider .range-price {
  padding: 0;
}

  .collection-filter
  .filter-total
  .range-slider
  .range-price
  > span {
  width: 40%;
}

.collection-filter .filter-single .filter-group--title {
  background: #fdf4e5;
/*  border: 1px solid #cfcfcf;*/
  cursor: pointer;
  border-radius: 4px;
  height: 36px;
  padding: 4px 28px 4px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
/*  z-index: 3;*/
}
.collection-filter .filter-single .filter-group--title .icon-control {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto;
  height: 5px;
  width: 10px;
  background-image: url("data:image/svg+xml,%3Csvg width='11' height='6' viewBox='0 0 11 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.35858 5.35858L0.841421 0.841421C0.715428 0.715428 0.804661 0.5 0.982842 0.5H10.0172C10.1953 0.5 10.2846 0.715428 10.1586 0.841421L5.64142 5.35858C5.56332 5.43668 5.43668 5.43668 5.35858 5.35858Z' fill='%23111111'/%3E%3C/svg%3E%0A");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
 .collection-filter .filter-single .filter-group--title.showing {
  border: 1px solid #1982f9;
}

.collection-filter .filter-single .filter-group--title.showing .icon-arrow {
  width: 27px;
  height: 14px;
  top: 30px;
  left: 25px;
  position: absolute;
  overflow: hidden;
  z-index: 2;
}
.collection-filter .filter-single .filter-group--title.showing .icon-arrow::before {
  content: "";
  position: absolute;
  width: 27px;
  height: 27px;
  background: #fff;
  transform: rotate(45deg);
  top: 10px;
  left: 0;
  box-shadow: -2px -2px 5px -4px;
}
.collection-filter .filter-single .filter-group--content {
  background-color: #fff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  margin: auto;
  left: 0;
  top: 125%;
  position: absolute;
  z-index: 3;
  padding: 16px 16px 0;
  display: none;
  min-width: 560px;
  max-width: 900px;
}

  .collection-filter
  .filter-single
  .filter-group--content.active {
  display: block;
}

  .collection-filter
  .filter-single
  .filter-group--content.filter-show--right {
  right: 0;
  left: auto;
}
.collection-filter .filter-single .filter-button--single {
  background-color: #fff;
  box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.05);
  margin: 16px -16px 0;
  padding: 8px 10px;
  text-align: center;
}
.collection-filter .filter-single .list-filter--main {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

  .collection-filter
  .filter-single
  .filter-group
  .filter-group--block {
  position: relative;
}

  .collection-filter
  .filter-single
  .filter-group.vendor-group {
  max-width: 120px;
}

  .collection-filter
  .filter-single
  .filter-group.vendor-group
  .text {
  max-width: 80px;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  white-space: initial;
}

.collection-filter .filter-single .filter-group.hasSelect .filter-group--title {
  border: 1px solid #1982f9;
  color: #1982f9;
}

.collection-filter .filter-single .filter-group.hasSelect .filter-group--title .icon-control {
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.85858 5.35858L0.341421 0.841421C0.215428 0.715428 0.304661 0.5 0.482842 0.5H9.51716C9.69534 0.5 9.78457 0.715428 9.65858 0.841421L5.14142 5.35858C5.06332 5.43668 4.93668 5.43668 4.85858 5.35858Z' fill='%231982F9'/%3E%3C/svg%3E%0A");
}

.collection-filter.fixed-head {
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  max-width: 100%;
  margin: 0 auto;
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  z-index: 9;
  padding: 8px;
}
.collection-filter.fixed-head .filter-wrap {
  max-width: 1200px;
  margin: 0 auto;
  white-space: nowrap;
}
@media (max-width: 991px) {
  .collection-filter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 4px;
  }
  .collection-filter .collection-sortby {
    margin-top: 0;
  }
  .collection-filter .range-slider {
    margin: 5px 10px 20px;
    width: calc(100% - 20px);
  }
  .collection-filter .filter-tags-wrap {
    display: none;
  }
}

/*filter */

.slider {
  height: 5px;
  position: relative;
  background: #ECECEC;
  border-radius: 5px;
}

.slider .price-progress {
  height: 100%;
  left: 25%;
  right: 0;
  position: absolute;
  border-radius: 5px;
  background: var(--primary);
}

.range-input {
  position: relative;
}

.range-input input {
  position: absolute;
  width: 100%;
  height: 5px;
  top: -5px;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.range-input input.range-min {
  left: -5px;
}

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

input[type="range"]::-webkit-slider-thumb {
  height: 17px;
  width: 17px;
  border-radius: 50%;
  background: var(--primary);
  pointer-events: auto;
  -webkit-appearance: none;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}
input[type="range"]::-moz-range-thumb {
  height: 17px;
  width: 17px;
  border: none;
  border-radius: 50%;
  background: var(--primary);
  pointer-events: auto;
  -moz-appearance: none;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

.filter-total--content-body .filter-control {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.05);
  padding: 8px;
  bottom: 0;
  margin: 0;
  position: sticky;
  width: 100%;
  z-index: 2;
}

.filter-control button {
  border-radius: 4px;
  display: inline-block;
  font-weight: 700;
  line-height: 14px;
  padding: 10px 0;
  text-align: center;
  width: 140px;
  position: relative;
  opacity: .7;
}

.btn-filter--unselect.active {
  background: white;
  color: var(--primary);
  border: 1px solid var(--primary);
  opacity: 1;
}

.btn-filter--apply {
  border-color: var(--primary);
  border-width: 1px;
  background: var(--primary);
  color: black;
}

@media (min-width: 992px) {
  
  .filter-total--content {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    border-radius: 4px;
    width: 900px;
    max-width: 900px;
    max-height: 85vh;
    min-width: 382px;
    position: absolute;
    top: 65px;
    right: auto;
    bottom: auto;
    z-index: 10;
  }
}

.filter-single .list-filter--main {
  gap: 14px;
}

.filter-single .filter-group--title {
  /*margin-bottom: 0;
  background: white;
  padding: 18px 16px;
  border: 1px solid #a8a8a5;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  height: 100%;*/
}

.filter-single .filter-group--content.filter-show--right {
  right: 0;
  left: auto;
}

.filter-button--single {
  margin-top: 16px;
  text-align: center;
}

.describe {
  position: absolute;
  width: 550px;
  height: 100%;
  cursor: pointer;
}

.describe .content {
  background: white;
  padding: 8px 16px;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 25px;
  transform: translateY(-50%);
  border: 1px solid #a8a8a5;
  border-radius: 12px;
  display: none;
}

.describe:hover .content {
  display: block;
}

@media (max-width: 767px) {

  .filter-single {
    display: none;
  }
}

/*--------------------------------------------------------------
# Archive Học tập - Văn phòng Page
--------------------------------------------------------------*/

.company-slider {
  margin: 26px 0 34px;
  background: white;
  padding: 24px;
}

.company-slider .owl-stage {
  display: flex;
  align-items: center;
}

.best-seller {
  border-radius: 50px;
  background: var(--primary);
  padding: 26px;
  margin-bottom: 26px;
}

.sortby-control {
  margin-bottom: 30px;
}

.sortby-control p {
  color: white;
  font-weight: 700;
  margin-bottom: 7px;
}

.sortby-control img {
  width: 30px;
  margin-bottom: 8px;
}

.sortby-option ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.sortby-option li {
  padding: 12px 9px;
  border: 2px solid #a8a8a5;
  border-radius: 12px;
  background: white;
  text-align: center;
}

.sortby-option li label {
  font-weight: 700;
  cursor: pointer;
}

.sortby-option li.active {
  border-color: var(--primary);
  color: var(--primary);
}

.faq-wrap {
  background: #f3f8f9;
  padding: 33px 39px;
  border-radius: 10px;
}

.faq-wrap h3 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 33px;
}

.faq-wrap .accordion-item {
  border-top: 1px solid;
  border-color: black;
  border-radius: 12px;
  margin-bottom: 20px;
}

.faq-wrap .accordion-button {
  background: transparent;
  box-shadow: none;
}

@media (max-width: 767px) {

  .sortby-option ul {
    flex-wrap: wrap;
  }

  .sortby-option > li {
    width: calc(50% - 2px);
  }
}

/*--------------------------------------------------------------
# Single Product Page
--------------------------------------------------------------*/
.breadcrumb-light a ,
.breadcrumb-light .breadcrumb-item.active {
  color: #fff;
}
.breadcrumb-light .breadcrumb-item+.breadcrumb-item::before {
  color: #fff;
}

.breadcrumb-view {
  padding-top: 17px;
}

.breadcrumb-view a,
.breadcrumb-view li {
  font-size: 13px;
  color: white;
}

.breadcrumb-view .breadcrumb-item.active {
  color: #fdf4e5;
}

.breadcrumb-view .breadcrumb-item+.breadcrumb-item::before {
  content: '>';
  color: white;
}

.product-single {
/*  background: #fff;*/
}

.product-detail {
  position: sticky;
  top: 10px;
  height: max-content;
  height: -moz-max-content;
}

.product-large__img .owl-nav {
  position: absolute;
  top: calc(50% - 25px);
  width: 100%;
}

.product-large__img .owl-nav span {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
}

.product-large__img .owl-prev,
.product-large__img .owl-next {
  box-shadow: -6px 0 4px rgba(0, 0, 0, .05), -4px 0 4px rgba(0, 0, 0, .09);
  border-radius: 4px 0 0 4px;
  background: rgba(255,255,255,.9);
  opacity: .3;
  height: 60px;
  width: 30px;
  font-size: 40px;
  position: absolute;
  top: 0;
  color: #101828;
}

.product-large__img .owl-prev {
  left: 0;
}

.product-large__img .owl-next {
  right: 0;
}

.product-thumb-small {
  display: flex;
  justify-content: space-between;
  height: 100%;
  margin-bottom: 32px;
}

.thumb-item {
  max-width: 20%;
  text-align: center;
}

.thumb-item .thumb {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  width: 70px;
  height: 70px;
  margin: 0 auto;
}

.thumb-item p {
  margin-top: 12px;
}

.product-feature {
  padding: 15px 0;
/*  border-top: 1px solid #e6e7e8;*/
}
.product-feature:not(:last-child) {
  
}
.product-feature .row {
  --bs-gutter-y: 1rem;
}

.feature-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.feature-title h5 {
  font-size: 16px;
  color: #090d14;
}
 
.btn-view-all {
  background: white;
  color: var(--primary);
  border: 1px solid var(--primary);
  border-radius: 24px;
  padding: 5px 20px;
  transition: all .3s ease 0s;
}

.btn-view-all:hover {
  background: #fee2e2;
}

.product-feature ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding-left: 16px;
  margin: 0;
}

.product-feature li {
  width: 50%;
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 7px;
}

/*.product-feature li::before {
  content: '\e122';
  font-family: 'Font Awesome 6 Pro';
  font-weight: 700;
  display: inline-block;
  font-size: 13px;
  margin-right: 14px;
}*/
.product-feature li::before {
  content: "";
  width: 16px;
  height: 16px;
  display: inline-block;
  margin-right: 5px;
  background: url(../img/arrow.png) no-repeat center center;
  background-size: 100% auto;
}

.product-policy li::before {
  display: none;
}

.product-buy-btn {
  display: flex;
  gap: 5px;
}
.product-buy-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
}
.product-buy-btn .btn {
  border: 1px solid var(--primary);
  
}
.product-buy-btn .btn-cart-add {
  font-size: 16px;
  height: 3rem;
  padding: 0 .75rem;
}
.product-buy-btn .buy-tragop {
  background: #090d14;
}

@media (max-width: 767px) {

  .thumb-item {
    font-size: 13px;
  }

  .thumb-item .thumb {
    width: 35px;
    height: 35px;
  }

  .product-feature li {
    width: 100%;
  }
}

.product-info {
  top: 75px;
  z-index: 1;
}

.product-info h2 {
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 5px;
  color: #333333;
}

.product-head-info {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  color: #333e48;
  font-size: 13px;
  font-weight: 700;
}
.product-head-info a {
  color: #007bff;
}

.product-head-info .head-info-item::after {
    content: "|";
    font-size: 11px;
    vertical-align: text-top;
    padding: 0 8px;
}
.product-head-info .head-info-item:last-child::after {
    content: none
}

.price-detail {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  line-height: 1;
}
.price-detail .price-detail-title {
  display: none;
}
.price-detail ins {
  font-size: 32px;
  line-height: 40px;
  font-weight: 600;
  color: #E30019;
  text-decoration: none;
}
.price-detail del {
    font-size: 18px;
    line-height: 22px;
    color: #6D6E72;
    margin: 0 0 0 12px;
    font-weight: 400;
}
.price-detail span.pro-percent {
    font-size: 12px;
    display: inline-block;
    padding: 5px 8px;
    margin-left: 12px;
    color: #E30019;
    border: 1px solid #E30019;
    border-radius: 4px;
    vertical-align: text-bottom;
    white-space: nowrap;
}

.box-item {
  display: inline-block;
}

.box-item:not(:last-child) {
  margin-right: 35px;
}

.product-price--wrapper {
  font-weight: 700;
  margin: 12px 0;
}

.product-price--wrapper ins {
  font-size: 18px;
  text-decoration: none;
  margin-right: 35px;
}

.product-price--wrapper del {
  font-size: 13px;
  color: var(--primary);
}

.box-price--sale {
  display: flex;
  align-items: center;
  gap: 5px;
}

.option-item {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.option-item:not(:last-child) {
  margin-bottom: 16px;
}

.product-option--content label {
  position: relative;
  overflow: hidden;
}

.product-option--content label input {
  display: none;
}

.product-option--content label .checkmark {
  transition: all .3s;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  padding: 5px 20px;
  border: 1px solid #e6e7e8;
  border-radius: 8px;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 5px;
}

.product-option--content label.active .checkmark {
  border-color: var(--primary);
}

.product-option--content label .checkmark img {
  width: 40px;
}

.product-option--content .checkmark::before {
    content: "✓";
    background: transparent;
    width: 14px;
    height: 12px;
    border-radius: 0 0 8px 0 ;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 10px;
    line-height: 1.1;
    color: #fff;
    background: #E30019;
    display: none;
}
.product-option--content input:disabled+.checkmark {
  opacity: 0.5;
  cursor: not-allowed;
}
.product-option--content input:checked+.checkmark::before {
  display: block;
}

.checkmark span {
  display: block;
  font-weight: 700;
}

.checkmark span:last-child {
  font-weight: 400;
}

.option-color--item .checkmark {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.option-color--item img {
  width: 20%;
}

.option-color--item .content {
  width: calc(80% - 6px);
  text-align: left;
}

.product-gift--info {
  margin-top: 16px;
}

.product-gift--info .title {
  display: flex;
  align-items: center;
  background: #f5f5f5;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  border: 1px solid var(--primary);
  border-bottom-color: #dedede;
  padding: 9px 18px;
  border-top-left-radius: .5rem;
  border-top-right-radius: .5rem;
}

.product-gift--info .title img {
  width: 20px;
  margin-right: 10px;
}

.product-gift--info .content {
  padding: 10px 15px;
  border: 1px solid var(--primary);
  border-top: 0;
  border-bottom-left-radius: .5rem;
  border-bottom-right-radius: .5rem;
}

.product-gift--info ul {
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: my-awesome-counter;
}

.product-gift--info li {
  position: relative;
  line-height: 20px;
  color: #333333;
  padding-left: 30px;
  counter-increment: my-awesome-counter;
}

.product-gift--info li:not(:last-child) {
  margin-bottom: 12px;
}

.product-gift--info li::before {
  content: counter(my-awesome-counter);
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  border-radius: 50%;
  background: var(--primary);
  display: inline-block;
  color: white;
  position: absolute;
  top: 1px;
  left: 0;
  font-size: 10px;
}

.product-cart--actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.btn-action {
  width: calc(50% - 6px);
  border: none;
  background: var(--primary);
  color: white;
  font-weight: 700;
  font-size: 18px;
  padding: 14px 0;
}

.btn-action:nth-child(2) {
  background: #3669a4;
}

.btn-action:last-child {
  width: 100%;
  background: white;
  color: var(--primary);
  border: 4px solid var(--primary);
}

.product-detail--wrapper ul {
  flex-wrap: nowrap;
  justify-content: center;
  border: none;
}

.product-detail--wrapper li,
.product-other li {
  border-bottom: 1px solid transparent;
}

.product-detail--wrapper li button,
.product-other li button {
  font-size: 14px;
  font-weight: 700;
  color: black;
}

.product-detail--wrapper .nav-tabs li button:hover,
.product-detail--wrapper .nav-tabs li button.active,
.product-other .nav-tabs li button:hover,
.product-other .nav-tabs li button.active {
  border-color: transparent;
  border-bottom: 2px solid black;
  color: black;
}

@media (max-width: 767px) {
  
  .tab-scroll ul {
    flex-wrap: nowrap;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
  }

  .tab-scroll ul li button {
    white-space: nowrap;
  }

}

.product__desciption {
  width: 100%;
  height: 285px;
  overflow: hidden;
}

.product__desciption.height_auto {
  height: auto;
}

.product-detail--description {
  margin-top: 40px;
}

.product-detail--description h2 {
  font-size: 24px;
  line-height: 29px;
  margin-bottom: 16px;
}

.product-detail--description h3 {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 16px;
}

@media (max-width: 991px) {

  .product__desciption {
    height: 270px;
  }
}

.read_more {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 10px 0;
  background: linear-gradient(180deg,transparent,#fff)!important;
}
.read_more.none_bf {
  position: unset;
}
.read_more a {
  color: var(--primary);
  border-radius: 1.5rem;
  padding: .375rem .5rem;
  border: 1px solid #d1d5db;
  width: 120px;
  padding: 5px 10px;
  background: #fff;
}
.read_more.none_bf a {
  color: #090d14;
}

.read-more--blogs a {
  color: var(--primary);
}

.blog-box--right {
  border: 1px solid #cdcdcd;
  border-radius: 12px;
  padding: 11px 12px;
}

.blog-box--right h4 {
  margin-bottom: 12px;
  font-size: 16px;
}

/*blog-item*/
.blog-item {
  
}

.blog-item:not(:last-child) {
  margin-bottom: 20px;
}

.blog-item .content {
  padding: 5px;
}

.blog-item h3 {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 5px;
}

.blog-item h3 a {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-item h3 a:hover {
  color: var(--primary);
}

.blog-item p {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-hot-grid ,
.blog-hot-grid .blog-item {
  position: relative;
}
.blog-large .blog-item {
  height: 100%;
}
.blog-hot-grid .blog-item:not(:last-child) {
  margin-bottom: 15px;
}

.blog-hot-grid .blog-item .content{
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    color: white;
    padding: 10px;
    background: rgba(0, 0, 0, 0.7);
}
.blog-hot-grid .blog-large .blog-item .content {
  padding: 20px;
}
.blog-hot-grid .blog-item .thumb {
  width: 100%;
}
.blog-hot-grid .blog-item .thumb::before {
    padding-top: 75%;
}

.blog-grid-small .content .post-desc {
  display: none;
}

.blog-hot-grid .blog-item h3 a {
  color: #fff;
}
.blog-grid-small .blog-item h3 a {
  font-size: 14px;
  line-height: 1.2;
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-list .blog-item {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  color: #fff;
}
.news-list .blog-item .thumb {
  width: 35%;
}

.news-list .blog-item .thumb::before {
  padding-top: 55%;
}
.news-list .blog-item h3 a {
  color: #fff;
}
.news-list .blog-item .content {
  flex: 1;
  padding-left: 16px;
}
.news-list .post-desc {
  margin-top: 10px;
}


@media (max-width: 991px) {

  .blog-item p {
    -webkit-line-clamp: 3; 
  }
}

@media(max-width: 767px)
{
  .blog-item h3 {
    font-size: 14px;
    line-height: 1.4;
  }
}
/*blog-item*/

.product-detail--review {
  margin-top: 20px;
}

.product-detail--review h2 {
  font-size: 16px;
  margin-bottom: 12px;
}

.review-box--title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-box--title .title {
  color: #fd9727;
  font-weight: 700;
  font-size: 36px;
}

.box-rating {
  color: #fd9727;
}

.review-total {
  color: #3669a4;
}

.star_lines ul {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}

.star_lines li {
  overflow: hidden;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.line-rating {
  width: 70%;
  background: #dedede;
  height: 7px;
  border-radius: 5px;
}

.line-rating .percent {
  background: #fd9727;
  height: 100%;
}

.star_lines li span.count {
  font-weight: 700;
}

.review-btn p {
  line-height: 54px;
}

.btn-red {
  background: var(--primary);
  color: black;
  padding: 12px 24px;
  font-weight: 700;
  white-space: nowrap;
  margin-top: 20px;
}

.btn-red:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  border-radius: 0;
}

#productInfo .btn-close:focus,
.close-modal .btn-close:focus {
  box-shadow: none;
}

.rating-form h5 {
  font-size: 24px;
  text-align: center;
  padding-top: 16px;
  margin-bottom: 12px;
}

.rating-form .form-group {
  margin-top: 40px;
}

.rating-form .form-group label {
  font-size: 24px;
  margin-bottom: 12px;
}

.rating-selection input {
  position: absolute;
  left: -9999px;
}

.rating-selection label svg {
  width: 32px;
  height: 32px;
  fill: #FBBF24;
  transition: fill 0.3s;
}

.rating-selection input:hover ~ label svg,
.rating-selection input:checked ~ label svg {
  fill: #fd9727;
}

.rating-selection label:hover svg {
  fill: #fd9727;
}

.review-box--title-btn h5 {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 12px;
}

.review-btn--group a {
  border: 2px solid #a8a8a5;
  border-radius: 12px;
}

.review-btn--group a:hover {
  border-color: #fd9727;
  background: #fd9727;
  color: white;
}

.comment-form h2 {
  font-size: 20px;
  margin-bottom: 8px;
}

.comment-form textarea {
  min-height: 80px;
  margin-bottom: 5px;
}

.comment-form--file-send {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.comment-form--file label {
  cursor: pointer;
  color: #a8a8a5;
}

.product-other .nav-tabs li button:hover,
.product-other .nav-tabs li button.active {
  border-bottom-color: var(--primary);
}

.product-other .tab-scroll {
  margin-bottom: 10px;
}

#productInfo .modal-header {
  border-bottom: none;
}

#productInfo .modal-header h1 {
  font-size: 18px;
  line-height: 28px;
  max-width: 85%;
  margin-bottom: 0;
}

.slide_popup-img-big .owl-prev,
.slide_popup-img-big .owl-next {
  width: 22px;
  height: 40px;
  margin-top: -20px;
  position: absolute;
  top: 50%;
}

.slide_popup-img-big .owl-prev {
  left: 10px;
}

.slide_popup-img-big .owl-next {
  right: 10px;
}

@media (max-width: 767px) {

  .comment-form textarea {
    min-height: 100px;
  }
}

.btn,
.form-control,
.form-select {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  font-size: 14px;
}
.btn:focus,
.btn:active,
.form-control:focus,
.form-control:active,
.form-select:focus,
.form-select:active {
  outline: none;
}

.btn {
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.btn.btn-black {
  background: #000;
  color: #fff;
}
.btn.btn-primary {
  color: #fff;
  border-width: 2px;
}
.btn.btn-primary:hover,
.btn.btn-primary:active,
.btn.btn-primary:focus {
  border-color: #8540f5;
  background: #8540f5;
}
.btn.btn-sm {
  font-size: 14px;
}
.btn.btn-outline-primary {
  border-width: 2px;
  color: #6610f2;
}
.btn.btn-outline-primary:hover,
.btn.btn-outline-primary:focus,
.btn.btn-outline-primary:active {
  color: #fff;
}
.btn.btn-outline-white {
  border-width: 2px;
  border-color: #fff;
  color: #fff;
}
.btn.btn-outline-white:hover,
.btn.btn-outline-white:focus {
  background: #fff;
  color: #000;
  border-width: 2px;
}


.owl-carousel.home-slider .slider-item {
  overflow: hidden;
  position: relative;
  border-radius: var(--bs-border-radius-lg);
}
/*.owl-carousel.home-slider .slider-item:before {
  content: '';
  display: block;
  padding-top: 91%;
}*/

.slider-item .images {
  /*position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;*/
}

.slider-item img {
  /*height: 100%;
  object-fit: cover;*/
}

@media (max-width: 991px) {

  .owl-carousel.home-slider .slider-item:before {
    padding-top: 65%;
  }
}

.element-animate {
  opacity: 0;
  visibility: hidden;
}

/*gallerry*/
.product-gallery .gallery-item {
  /*padding-top: 70%;*/
  padding-top: 55%;
/*  margin: 20px 0;*/
  position: relative;
}
.gallery-item .gallery-img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item .gallery-img img {
  max-height: 100%;
}

.product-gallery .gallery-thumb {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.gallery-thumb-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  font-size: 12px;
}
.gallery-thumb-item .item {
  align-items: center;
  border-radius: 6px;
  border: 1px solid #d1d5db;
  justify-content: center;
  background-color: #fff;
  display: flex;
  height: 50px;
  width: 50px;
  padding: 0;
}
.gallery-thumb-item:hover .item {
  border-color: #1f2937;
}
.gallery-thumb-item img {
  width: 70%;
}
/*gallerry*/

/*img 360*/
.img-360 {
  display: flex;
  height: 60svh;
  justify-content: center;
}
#threesixty {
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: 50%;
}
#circlr {
  cursor: move;
  margin: 0 auto;
  min-height: 100px;
  position: relative;
  height: 100%;
}
#circlr img {
  width: auto !important;
  height: 100%;
}
#circlr #loader {
  background: url(../img/loader.gif) center center no-repeat;
  bottom: 0;
  display: none;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
/*img 360*/

/*product info modal*/
.video-player {
  display: flex;
  height: 80svh;
  justify-content: center;
}

.video-player iframe {
    max-height: calc(100vh - 355px) !important;
    width: calc(170vh - 603.5px) !important;
    height: 58.82353vw;
    max-width: 100%;
}

/*.video-player .gallery_swiper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}*/

#productModelInfo .modal-header h5 {
  font-size: 16px;
}

#productModelInfo .swiper_gallery_thumb .swiper-slide {
  height: auto;
}
#productModelInfo .btn-close {
  transform: unset;
  position: relative;
  top: unset;
  right: unset;
  box-shadow: unset;
  background-size: 20px auto;
}

#productModelInfo .nav-link {
  color: #000;
  padding-left: 30px;
  padding-right: 30px;
  border: 0;
  border-bottom: 1px solid var(--bs-nav-tabs-link-active-border-color);
}
#productModelInfo .nav-link.active {
  color: #dc2626;
  border: 0;
  border-bottom: 1px solid #dc2626;
}

#swiper_gallery_thumb1 .swiper-slide {
  border: 1px solid #ccc;
  border-radius: 5px;
  overflow: hidden;
}
#swiper_gallery_thumb1 .ratio img{
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.spec-hidden {
  display: none;
}

@media (min-width: 769px) {
  .gallery-player .swiper-slide {
    display: flex;
    height: calc(80svh - 80px);
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .gallery-player .swiper-slide img {
    max-height: 90%;
  }

}

@media(max-width: 767px)
{
  .product-gallery .gallery-item {
    padding-top: 100%;
  }

  .nav-tabs.scroll-x .nav-item {
    flex: 0 0 auto;
  }
}

/*product info modal*/

/*--------------------------------------------------------------
# Cart Page
--------------------------------------------------------------*/

.cart-content {
  background: white;
  border-radius: 10px;
}

.table-cart {
  width: 100%;
  height: 100%;
}

.table-cart,
.table-cart th,
.table-cart td {
  margin: 0;
  padding: 15px;
  vertical-align: middle;
  border-collapse: collapse;
}

.cart-product-item,
.product-cart {
  display: flex;
  align-items: center;
}

.cart-product-item {
  justify-content: space-between;
}

.product-cart .thumb {
  overflow: hidden;
  position: relative;
  width: 150px;
}

.product-cart .thumb:before {
  content: '';
  display: block;
  padding-top: 100%;
}

.product-cart .thumb a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  text-align: left;
}

.product-cart .thumb img {
  width: 150px;
  height: 150px;
}

.product-cart h3 {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 14px;
}

.product-cart p {
  font-size: 14px;
  font-weight: 700;
}


.quantity input[type="number"] {
  border: 2px solid #e4e4e4;
  background-color: transparent;
  pointer-events: none;
  text-align: center;
  flex: 1;
  max-width: 40px;
  -moz-appearance: textfield;
}

.quantity__augure, 
.quantity__reduce {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border: 2px solid #e4e4e4;
}

.coupon-voucher {
  padding: 0 15px 15px;
}

.coupon-voucher a {
  display: inline-block;
  border: 1px solid black;
  border-radius: 8px;
  padding: 15px 12px;
  font-weight: 700;
}

.coupon-content {
  margin-top: 12px;
  display: none;
}

.voucher-item-select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 2px solid black;
  border-radius: 24px;
  cursor: pointer;
  padding: 10px 20px;
  margin-bottom: 10px;
}

.voucher-item-select:last-child {
  margin-bottom: 0;
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
}

.cart-total h5 {
  font-size: 16px;
}

.cart-total label {
  color: var(--primary);
  font-weight: 700;
}

@media (max-width: 991px) {

  .cart-product--info {
    display: flex;
    align-items: center;
  }
}

@media (max-width: 767px) {

  .product-cart .thumb {
    max-width: 30%;
  }

  .product-cart .thumb img {
    height: auto;
  }

  .cart-product-item {
    flex-direction: column;
  }

  .product-cart h3 {
    margin-bottom: 6px;
  }

  .product-price--remove {
    justify-content: center;
    position: relative;
    width: 100%;
  }

  .remove-item {
    position: absolute;
    top: -80px;
    right: 0;
  }
}

.custommer-info {
  border-top: 1px solid white;
  padding-top: 16px;
  margin-top: 16px;
}

.custommer-info h5 {
  color: white;
  margin-bottom: 12px;
}

.custommer-content {
  background: white;
  border-radius: 10px;
  padding: 15px;
}

.custommer-content .form-check {
  margin-bottom: 0;
}

.custommer-content input,
.custommer-content select,
.custommer-content textarea {
  border-color: black;
  border-width: 2px;
  font-weight: 700;
}

.custommer-content input:focus,
.custommer-content select:focus,
.custommer-content textarea:focus {
  box-shadow: none;
  border-color: black;
}

.custommer-content label {
  font-weight: 700;
}

.custommer-content .form-group input,
.custommer-content select,
.custommer-content textarea {
  border-radius: 30px;
  padding-left: 20px;
  padding-right: 20px;
}

.custommer-content h3 {
  font-size: 16px;
}

.address-option {
  background: #a8a8a5;
  margin-top: 8px;
  padding: 14px 18px;
  border-radius: 27px;
}

.form-check-content {
  margin-top: 32px;
  display: none;
}

.form-check-content.active {
  display: block;
}

.form-check-content .form-group:not(:last-child) {
  margin-bottom: 16px;
}

.custommer-cart--total {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.custommer-cart--total p {
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
}

.custommer-cart--total .price {
  color: var(--primary);
  font-weight: 700;
}

.custommer-cart--action a {
  border: 2px solid black;
  border-radius: 17px;
  background: var(--primary);
  color: black;
  font-weight: 700;
  padding-left: 24px;
  padding-right: 24px;
}

.custommer-cart--action a:hover {
  background: black;
  color: white;
}

.custommer-cart--action a.installments {
  background: var(--third);
}

@media (max-width: 991px) {

  .product-cart {
    flex: 1;
  }

  .cart-item-select input {
    width: 20px;
    height: 20px;
  }
}

/*--------------------------------------------------------------
# Build PC Page
--------------------------------------------------------------*/

.configuration-box--build {
  margin: 18px 0 16px; 
}

.configuration-box--build a {
  color: white;
  font-weight: 700;
}

.configuration-compare--content {
  justify-content: space-between;
}

.configuration-compare--content,
.configuration-list {
  display: flex;
  align-items: center;
  gap: 22px;
}

.configuration-item {
  background: #fdf4e5;
  border-radius: 24px;
  padding: 18px 24px;
  font-weight: 700;
  position: relative;
  overflow: hidden;
}

.configuration-item .remove {
  position: absolute;
  top: 0;
  right: 12px;
  cursor: pointer;
}

.configuration-compare a {
  color: white;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 17px;
}

.configuration-compare a img {
  width: 60px;
}

.item-drive {
  background: white;
  border-radius: 50px;
  padding: 28px 30px 36px 37px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.item-drive:not(:last-child) {
  margin-bottom: 25px;
}

.drive-content {
  font-weight: 700;
  font-size: 20px;
  color: black;
}

.drive-content img {
  width: 60px;
}

.drive-checked a {
  margin-top: 0;
  border-radius: 50px;
}

.filter-hardware--title {
  padding: 26px 0;
}

.filter-hardware--title h3 {
  font-size: 27px;
  margin-bottom: 35px;
}

.filter-hardware--title h5 {
  font-size: 16px;
}

.filter-hardware--content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.filter-search form {
  background: #e4e4e4;
  border-radius: 50px;
  padding: 20px 49px;
}

.filter-search input[type="text"] {
  border: none;
  border-radius: 0;
  background: transparent;
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 0;
}

.filter-search button {
  padding: 0;
}

.popup-build .filter-single .filter-group--content.filter-show--right {
  left: 0;
  right: auto;
}

.list-product-select {
  max-height: calc(100vh - 145px);
  overflow-y: scroll;
  overflow-x: hidden;
}

.product-content--option h3 {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 8px;
}

.price-option {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.product-item--select:not(:last-child) {
  border-bottom: #a8a8a5 solid 1px;
  padding-bottom: 16px;
  margin-bottom: 24px;
}

.product-pagination ul {
  margin-bottom: 0;
  margin-top: 16px;
  gap: 12px;
}

.product-pagination .page-item:first-child .page-link,
.product-pagination .page-item:last-child .page-link {
  border-radius: 0;
}

.page-item.active .page-link {
  background-color: var(--primary);
  border-color: var(--primary);
  color: white;
}

.product-pagination .page-link {
  color: var(--primary);
}

.item-drive.sale::after {
  content: '';
  background: url('../img/icon/sale-1.png') center no-repeat;
  background-size: cover;
  width: 110px;
  height: 47px;
  position: absolute;
  top: -5px;
  left: -10px;
}

.build-button a {
  border-radius: 0;
  background: white;
  font-weight: 700;
  display: block;
}

.build-button a:hover {
  background: white;
}

.build-button img {
  width: 20px;
  height: 20px;
  margin-left: 6px;
}

.build-button i {
  margin-left: 6px;
}

.build-price--right h5 {
  color: white;
  font-size: 18px;
  margin-bottom: 10px;
}

.build-product--price {
  font-size: 33px;
  font-weight: 700;
  color: #ff4c38;
}

.button-group a {
  padding: 23px 0;
  background: linear-gradient(90deg,rgba(0, 0, 0, 1) 35%, rgba(115, 115, 115, 1) 100%);
  display: block;
  color: white;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 14px;
  border-radius: 20px;
}

.button-group a:hover {
  color: white;
}

.button-group a.quick-buy {
  background: linear-gradient(90deg,rgba(255, 124, 64, 1) 35%, rgba(255, 66, 55, 1) 100%);
}

.choose-item--button {
  margin-top: 12px;
}

.choose-item--button button {
  border: 1px solid black;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 700;
  width: 100%;
}

@media (max-width: 991px) {

  .popup-build .modal-content {
    background: var(--secondary);
  }

  .filter-hardware--content {
    display: block;
  }

  .filter-hardware--title {
    color: white;
  }

  .filter-search {
    margin-top: 14px;
  }

  .build-button {
    display: none;
  }

  .build-price--right {
    background: #eef1f1;
    border-radius: 18px;
    padding: 56px 55px 97px;
  }

  .totla-price--title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
  }

  .build-price--right h5 {
    font-size: 24px;
    color: black;
    margin-bottom: 0;
  }

  .build-product--price {
    font-size: 24px;
  }

  .button-group {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    gap: 24px;
  }

  .button-group a {
    flex: 1;
    margin-bottom: 0;
  }

  .btn-contact.active {
    border: 1px solid black;
  }

  .list-button-group > a,
  .btn-contact > a {
    display: block;
    background: white;
    font-weight: 700;
    padding: 16px 0;
    border-radius: 0;
  }

  .list-button-group > a:hover,
  .btn-contact > a:hover {
    background: white;
  }

  .list-button-group img {
    width: 30px;
  }

  .contact-info {
    padding: 16px 48px;
    background: #fff7f7;
    border: 1px solid black;
    border-top: none;
    display: none;
  }

  .contact-info ul {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
  }

  .contact-info li a {
    display: inline-block;
    font-size: 13px;
    line-height: 30px;
    height: 30px;
    margin-right: 20px;
  }

  .contact-info li a i {
    color: var(--primary);
  }

  .contact-info li {
    font-size: 14px;
    line-height: 33px;
  }

  .filter-search form {
    background: #fefefe;
  }

  .sortby-control .sortby-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .sortby-control > img,
  .sorby-sm img {
    filter: brightness(0) invert(1);
  }

  .sortby-filter li {
    padding: 12px 16px;
  }

  .sortby-control .sortby-option .sortby-filter  li.active {
    border-color: #a8a8a5;
  }

  .sortby-filter button {
    display: inline-block;
    background: white;
    border: #a8a8a5 solid 2px;
    border-radius: 6px;
    padding: 0;
  }

  .sortby-filter img {
    margin-bottom: 0;
  }

  .list-product-select {
    display: none;
  }

  .choose-product--item {
    background: white;
    border-radius: 50px;
    padding: 29px 48px;
  }
}

@media (max-width: 767px) {

  .configuration-box--build {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .configuration-box--build img {
    width: 16px;
  }

  .configuration-list {
    flex-wrap: wrap;
  }

  .configuration-item {
    padding-left: 16px;
    padding-right: 16px;
    white-space: nowrap;
    font-size: 14px;
  }

  .configuration-item .remove {
    display: none;
  }

  .drive-content img {
    width: 40px;
  }

  .drive-content {
    font-size: 16px;
  }

  .build-price--right {
    padding: 24px 32px;
  }

  .contact-info {
    padding-left: 16px;
    padding-right: 16px;
  }

  .product-item--select img {
    width: 100%;
  }

  /*.sortby-control .sortby-option {
    flex-direction: column;
    align-items: flex-start;
  }*/
}

/*--------------------------------------------------------------
# Checkout Page
--------------------------------------------------------------*/

.info-payment {
  padding: 23px 42px;
}

.info-payment p,
.order-content--info span {
  font-weight: 700;
}
.order-content--info span {
  flex: 0 0 200px;
  text-align: right;
}

.info-payment .payment-content {
  background: #eaeae9;
  border-radius: 21px;
  padding: 26px 33px;
}

.order-content {
  display: none;
  background: white;
  padding: 24px;
  margin-top: 16px;
  border-radius: 18px;
}

.order-title--code {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  border-bottom: #a8a8a5 solid 1px;
  padding-bottom: 10px;
  margin-bottom: 12px;
}

.order-content--info .title {
  margin-bottom: 10px;
}

.order-content--info h3 {
  font-size: 18px;
}

.order-content--info .content {
  display: flex;
  justify-content: flex-end;
  font-size: 14px;
  gap: 5px;
}

.order-content--info .content:not(:last-child) {
  margin-bottom: 5px;
}

.order-content--info .content p {
  font-weight: 400;
}

.total-order {
  font-size: 18px;
  color: black;
}

.total-order span {
  color: var(--primary);
}

.order-bottom--compact {
  border-top: #a8a8a5 solid 1px;
  padding-top: 10px;
  margin-top: 12px;
}

.payment-method {
  margin-top: 26px;
}

.payment-method h3 {
  font-size: 16px;
  margin-bottom: 28px;
}

.payment-method--content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.payment-method--content li {
  border: 2px solid black;
  border-radius: 16px;
  padding: 10px 16px;
  cursor: pointer;
  font-weight: 700;
}

.payment-method--content li.active {
  border-color: var(--primary);
}

.payment-method--content li:not(:last-child) {
  margin-bottom: 10px;
}

.payment-method--content li a {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
}

.payment-method--content.method ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.payment-method--content.method li {
  max-width: calc(50% - 12px);
  flex: 0 0 calc(50% - 12px);
  margin: 0;
}

@media (max-width: 991px) {

  .info-payment .payment-content {
    padding-left: 16px;
    padding-right: 16px;
  }

  .payment-bottom {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    bottom: 0;
    background: white;
    width: 100%;
    z-index: 999;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 0px 8px;
  }

  .payment-bottom ul {
    list-style: none;
    margin: 0;
    padding-left: 0;
    width: 100%;
  }

  .payment-bottom li {
    width: 20%;
    float: left;
    text-align: center;
    font-size: 10px;
    line-height: 18px;
  }
  .payment-bottom a span{
    display: block;
  }
  .payment-bottom a img {
    height: 26px;
  }

  .payment-gift {
    text-align: center;
    font-weight: 700;
  }

  .payment-price {
    display: flex;
    align-items: center;
    gap: 24px;
    font-weight: 700;
  }

  .price-sale {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  .payment-price ins {
    font-size: 30px;
  }

  .price-sale del {
    font-size: 16px;
    color: black;
  }

  .price-sale .onsale {
    color: var(--primary);
  }

  .custommer-cart--action a.quick-buy {
    background: linear-gradient(90deg,rgba(255, 124, 64, 1) 35%, rgba(255, 66, 55, 1) 100%);
    width: 100%;
    border: none;
    color: white;
  }

  .custommer-cart--action .btn-installment {
    background: black;
    color: white;
    width: 100%;
  }

  .proding-single.payment-bottom {
    z-index: 1000;
    flex-wrap: wrap;
  }
  .proding-single.payment-bottom ul {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .proding-single.payment-bottom ul li {
    flex: 1;
    position: relative;
  }
  .proding-single.payment-bottom ul .li-support {
    flex: 0;
  }
  .proding-single.payment-bottom a.support {
    margin-top: 0;
  }
  .proding-single.payment-bottom .tragop-price ,
  .proding-single.payment-bottom .btn-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 5px;
    border-radius: 7px;
  }
  .proding-single.payment-bottom .tragop-price {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    background: #000;
  }

  .proding-single.payment-bottom .btn-custom {
    width: 100%;
    font-size: 16px;
    line-height: 1.3;
  }
  
  .payment-bottom .price-detail {
    gap: 5px;
    flex: 0 0 100%;
    margin-bottom: 10px;
  }
  .payment-bottom .price-detail .price-detail-title {
    display: block;
    flex: 1;
  }
  .payment-bottom .price-detail ins ,
  .payment-bottom .price-detail del {
    line-height: 1;
    font-size: 14px;
  }
  .payment-bottom .price-detail ins {
    text-align: right;
    font-size: 16px;
    order: 1;
  }
  .payment-bottom .price-detail span.pro-percent {
    border: 0;
    padding: 0;
    padding: 0;
    display: none;
  }
}

@media (max-width: 767px) {

  .info-payment {
    padding-left: 24px;
    padding-right: 24px;
  }

  .order-title--code {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .payment-method--content.method li {
    max-width: 100%;
    flex: 0 0 100%;
  }

  .payment-gift {
    display: none;
  }

  .payment-price {
    width: 100%;
    justify-content: space-between;
    gap: inherit;
  }

  .info-payment .payment-content .order-item-info {
    margin-left: 0;
    margin-right: 0;
  }
}

.offcanvas-overlay.show {
      position: fixed;
      top: 0;
      left: 0;
      z-index: 999;
      width: 100vw;
      height: 100vh;
        opacity: .8;
      background-color: #000;
  }
.payment-bottom a.support {
    margin-top: -14px;
    position: relative;
    display: block;
}
.payment-bottom a.support::before {
    content: '';
    left: 0;
    bottom: 80%;
    width: 100%;
    height: 14px;
    position: absolute;
    clip-path: url(#menu);
    will-change: transform;
    background-color: white;
    transition: transform none, .7s;
    transform: translate3d(0px, -6px, 0px);
}

.payment-bottom .support img {
  filter: brightness(0) invert(1);
}

.payment-bottom .support .icon {
    display: inline-block;
    position: relative;
    background: var(--primary);
    border-radius: 50%;
    padding: 8px;
    width: 42px;
    height: 42px;
}

.list-payment-bottom {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 120%;
  gap: 16px;
}

.list-payment-bottom.show {
  display: flex;
  align-items: flex-start;
}

.item-payment:nth-child(2),
.item-payment:nth-child(3) {
  margin-top: -30px;
}

.item-payment a {
  display: block;
  position: relative;
  color: white;
  font-weight: 700;
}

.item-payment .icon {
  overflow: hidden;
  width: 35px;
  height: 40px;
}

.item-payment .icon img {
  height: 41px;
  width: 41px;
  object-fit: contain;
}

.item-payment p {
  position: absolute;
  top: -20px;
  white-space: nowrap;
}

.item-payment:first-child p {
  left: -40px;
}

.item-payment:nth-child(2) p {
  left: -20px;
}

.item-payment:nth-child(3) p,
.item-payment:nth-child(4) p {
  right: -45px;
}
  
/*--------------------------------------------------------------
# Acount Page
--------------------------------------------------------------*/

.customer-account {
  background: white;
  padding: 16px;
  border-radius: 10px;
}

.customer-account:not(:last-child),
.menu_siderbar_custom_view li:not(:last-child) {
  margin-bottom: 12px;
}

.block_info_profile {
  display: flex;
  gap: 10px;
}
.block_info_profile .avatar_profile {
  flex: 0 0 70px;
}

.name_profile h3 {
  font-size: 18px;
}

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

.menu_siderbar_custom_view a {
  display: block;
  padding: 10px 16px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 700;
  transition: unset;
}

.menu_siderbar_custom_view li.active a,
.menu_siderbar_custom_view a:hover {
  color: #fff;
  background: var(--primary);
}

.customer-dashboard-content > h3 {
  font-size: 19px;
  color: white;
  margin-bottom: 15px;
}

.wrap_content_account {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  padding: 14px 25px; 
}

.wrap_inforAccount {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.avatar_account {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
}

.avatar_account img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.avatar_update label {
  font-weight: 700;
  font-size: 20px;
  color: black;
  cursor: pointer;
}

.wrap_accountInfo .form-group:not(:last-child) {
  margin-bottom: 16px;
}

.wrap_accountInfo .form-label {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 12px;
  display: block;
}

.form-group input,
.form-group select {
  border-color: #ddd;
  border-radius: 10px;
  height: 50px;
}

.form-group.name input {
/*  padding: 11px 20px;*/
}

.input-group--img {
  display: flex;
  align-items: center;
  border: 1px solid black;
  border-radius: 12px;
  overflow: hidden;
  padding: 11px 20px;
}

.input-group--img input {
  border: none;
  border-radius: 0;
  padding: 0;
}

.input-group--img img {
  width: 30px;
}

.wrap_accountInfo select {
  padding-top: 11px;
  padding-bottom: 11px;
}

.wrap_accountInfo select:focus {
  box-shadow: none;
}

.item-box--update {
  padding-bottom: 5px;
}
.item-box--update:not(:last-child) {
  border-bottom: 1px solid #ddd;
}

.item-box--update .content {
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.item-box--update p {
  font-size: 16px;
}

.item-box--update a {
  color: var(--third);
  display: flex;
  align-items: center;
  gap: 6px;
}

.item-box--update img {
  width: 18px;
}

.item-box--update .content p {
  font-weight: 700;
}

.account-update--button {
  margin-top: 24px;
}

.account-update--button a {
  color: white;
  padding-left: 16px;
  padding-right: 16px;
  margin-top: 0;
}

.editable-click, a.editable-click, a.editable-click:hover {
  border-bottom: 0;
}

.title-frm h3 {
  font-size: 18px;
}

.title-frm a {
  font-size: 18px;
  text-transform: none;
}

.addAdressForm .form-label {
  font-weight: 700;
  font-size: 18px;
}

.addAdressForm .form-group input,
.addAdressForm .form-group select {
  border-color: black;
  font-size: 18px;
  padding: 16px 18px;
}

.addAdressForm .form-group select,
.addAdressForm .form-group input::placeholder {
  color: #e6e7e8;
}

.addAdressForm .form-group select option {
  color: black;
}

.addAdressForm .form-group select:focus {
  box-shadow: none;
}

.option-select__address input {
  display: none;
}

.option-select {
  display: flex;
  align-items: center;
  gap: 22px;
}

.option-select__item {
  position: relative;
  display: block;
}

.option-select__address .checkmark {
  display: block;
  cursor: pointer;
  border-radius: 8px;
  border: 1px solid #000;
  color: black;
  padding: 6px 10px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
}

.option-select__item input:checked~.checkmark:not(.checkmark-color) {
  color: var(--primary);
  box-shadow: 0px 2px 0px 0px #00000004;
  border-color: var(--primary);
}

.group-button button {
  padding: 12px 16px;
  background: #a8a8a5;
  color: black;
  font-weight: 700;
}

.group-button button:first-child:hover {
  background: #a8a8a5;
}

.group-button .save-address {
  background: #3669a4;
}

@media (max-width: 991px) {

  .avatar_profile img {
    width: 60px;
  }

  .name_profile h3 {
    margin-bottom: 12px;
  }

  .name_profile img {
    width: 16px;
  }

  .name_profile p {
    font-weight: 700;
  }

  .nav-account {
    background: white;
    border-radius: 50px;
    padding: 35px 63px 25px;
  }

  .nav-account:not(:last-child) {
    margin-bottom: 36px;
  }

  .nav-account ul {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-account li {
    flex: 1;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
  }

  .nav-account li a {
    display: block;
  }

  .nav-account img {
    width: 83px;
  }

  .nav-account li p {
    margin-top: 10px;
  }

  .nav-account-bottom img {
    width: 50px;
  }
}

@media (max-width: 767px) {

  .nav-account {
    padding-left: 24px;
    padding-right: 24px;
  }

  .nav-account ul {
    flex-wrap: wrap;
    row-gap: 12px;
  }

  .nav-account li {
    max-width: 50%;
    flex: 0 0 50%;
  }
}

/*address list*/

.list-address .item {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

.customer-address .cart-item-select {
    margin-bottom: 0;
}
.customer-address .cart-item-select:not(:last-child) .item ,
.list-address .item:not(:last-child) {
    border-bottom: #f2f2f2 solid 1px;
    padding-bottom: 12px;
    margin-bottom: 12px;
}

.list-address .cart-item-select .checkmark {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.customer-address .item-select {
    display: none;
}

.left-address {
    flex: 1;
}

.left-address p {
    margin-bottom: 5px;
    color: var(--dark);
    font-size: 14px;
    line-height: 15px;
}

.left-address p:first-child {
    font-weight: 500;
}

.left-address p:last-child {
    color: #000;
}

.left-address label {
    font-size: 12px;
    line-height: 20px;
    /*letter-spacing: .32px;*/
    /*font-weight: 600;*/
    padding: 2px 10px;
    border-radius: 20px;
    color: #fff;
    background: #996E11;
}

.left-address label:last-child {
    background: transparent;
    border: 1px solid #996E11;
    color: #996E11;
}

.right-address {
    flex: 0 0 50px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.right-address a {
    font-weight: 600;
    font-size: 12px;
    line-height: 15px;
    color: var(--light-1);
    display: block;
}

@media (max-width: 767px)
{
  .account_infomation h5 {
    font-size: 16px;
    line-height: 12px;
    text-transform: uppercase;
  }

  .account_infomation p,
  .left-address p {
    font-size: 12px;
    line-height: 18px;
  }

  .left-address p:first-child {
    font-size: 14px;
    line-height: 15px;
  }

  .add-address {
      display: flex;
      align-items: center;
      justify-content: space-between;
  }

  .add_new_child a {
      font-size: 12px;
      line-height: 20px;
      letter-spacing: .32px;
  }
}
/*address list*/

/*--------------------------------------------------------------
# Purchase History Page
--------------------------------------------------------------*/

.order-products--tab .nav-tabs {
  border: none;
  justify-content: space-around;
  margin-bottom: 42px;
}

.order-products--tab .nav-tabs li .nav-link:hover,
.order-products--tab .nav-tabs li .nav-link.active {
  border: none;
  border-bottom: 4px solid black;
}

.order-products--tab .nav-tabs li .nav-link {
  color: black;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
}

.list-group-btn ul {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.list-group-btn li {
  flex: 1;
}

.list-group-btn button ,
.list-group-btn .btn {
  border: 1px solid black;
  width: 100%;
  text-align: center;
  font-weight: 700;
  font-size: 18px;
}

.list-group-btn li.active button,
.list-group-btn button:hover,
.list-group-btn li.active .btn,
.list-group-btn .btn:hover {
  border-color: var(--primary);
}

.order-search {
  border: 1px solid black;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 35px;
}

.order-search input[type="text"],
.order-frm--search input[type="text"] {
  border: none;
  padding: 0;
}

.order-tabs .nav-tabs li .nav-link {
  background: transparent;
  color: white;
}

.order-tabs .nav-tabs li .nav-link:hover,
.order-tabs .nav-tabs li .nav-link.active {
  border-bottom-color: var(--primary);
}

.order-frm--search form {
  background: white;
  border: 3px solid black;
  border-radius: 30px;
  overflow: hidden;
  padding: 16px 0;
}

.order-frm--search input[type="text"] {
  background: transparent;
}

.order-frm--search button {
  padding-top: 0;
  padding-bottom: 0;
}

.order-history--info {
  background: #eef1f1;
  border-radius: 18px;
  overflow: hidden;
}

.order-content--bottom {
  display: none;
}

.order-item-info {
  background: white;
  border-radius: 14px;
  margin: 27px 36px;
  padding: 25px 43px;
}

.order-item-info h3 {
  font-size: 28px;
  margin-bottom: 24px;
}

.order-item-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.order-item-info li {
  font-size: 24px;
  line-height: 28px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.order-item-info li:not(:last-child) {
  margin-bottom: 22px;
}

.order-item-info p {
  font-weight: 400;
  margin-bottom: 0;
  max-width: 50%;
  flex: 0 0 50%;
}

@media (max-width: 991px) {

  .list-group-btn ul {
    gap: 16px;
  }

  .list-group-btn button {
    border: none;
    color: white;
    white-space: nowrap;
  }

  .list-group-btn li.active button, 
  .list-group-btn button:hover {
    color: var(--primary);
  }

  .order-tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    white-space: nowrap;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }

  .order-tabs .nav-tabs {
    flex-wrap: nowrap;
  }


}

@media (max-width: 767px) {

  .order-item-info {
    padding-left: 16px;
    padding-right: 16px;
    margin-right: 24px;
    margin-left: 24px;
  }

  .order-item-info li {
    gap: 6px;
  }

  .order-item-info p {
    max-width: 100%;
    flex: 0 0 100%;
  }
}

/*--------------------------------------------------------------
# Order Detail Page
--------------------------------------------------------------*/

.order-dashboard--content .order-item-info li {
  font-size: 18px;
}

/*--------------------------------------------------------------
# Warranty Page
--------------------------------------------------------------*/

.list-btn-warranty {
  margin-bottom: 30px;
}

.account-section .list-btn-warranty button {
  border-radius: 8px;
  border: 1px solid black;
  font-weight: 700;
  color: black;
}

.account-section .list-btn-warranty button.active,
.account-section .list-btn-warranty li button:hover {
  background: var(--primary);
}

.list-btn-warranty ul {
  border-bottom: none;
  gap: 24px;
}

.warranty-item--product {
  border-radius: 5px;
  background: white;
}

.warranty-item--product:not(:last-child) {
  margin-bottom: 12px;
}

.warranty-item--product.active {
  border: 1px solid black;
}

.image-box {
  display: flex;
  align-items: center;
  flex-flow: row wrap;
  width: 100%;
  background: #efebe9;
  border-bottom: 1px solid transparent;
  border-radius: 5px;
  cursor: pointer;
}

.warranty-item--product.active .image-box {
  border-bottom-color: black;
}

.image-box .thumb {
  flex: 0 0 auto;
  margin-bottom: 0;
  max-width: 200px;
  width: 97px;
}

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

.image-box .content {
  flex: 1 1 0;
  padding-left: 12px;
}

.image-box h4 {
  font-size: 20px;
}

.warranty-item--product .order-item-info {
  display: none;
}

.sub-content {
  color: var(--primary);
  font-style: italic;
  font-size: 17px;
}

@media (max-width: 991px) {

  .sub-content {
    color: white;
  }
}

/*--------------------------------------------------------------
# Member Ratings Page
--------------------------------------------------------------*/

.ranks_item {
  border: 1px solid black;
  border-radius: 20px;
}

.ranks-item--member,
.ranks-items--member {
  border: none;
  cursor: pointer;
}

.ranks-item--member.active,
.ranks-items--member.active {
  border: 1px solid black;
}

.image-box-ranks {
  background: linear-gradient(180deg,rgba(255, 222, 89, 1) 35%, rgba(255, 145, 77, 1) 100%);
  padding: 24px;
  border-radius: 20px;
  overflow: hidden;
}

.image-box-ranks .thumb {
  width: auto;
}

.image-box-ranks h3 {
  margin-bottom: 16px;
}

.image-box-ranks .content {
  color: white;
  font-size: 18px;
}

.wrap_member_ranks > h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.ranks-content {
  padding: 26px 33px;
}

.ranks-item--member .ranks-content,
.ranks-items--member .ranks-content {
  display: none;
}

.ranks-content h3 {
  font-size: 18px;
  margin-bottom: 16px;
}

@media (max-width: 991px) {

   .wrap_member_ranks {
    background: transparent;
    padding: 0;
   }

   .ranks_item {
    background: white;
   }
}

/*--------------------------------------------------------------
# Offer Page
--------------------------------------------------------------*/

.title-offer {
  background: #e4e4e4;
  padding: 14px 0;
  border-radius: 8px;
  margin: 32px 0;
}

.title-offer h2 {
  font-size: 20px;
}

.offer-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid black;
  border-radius: 22px;
  padding: 8px 10px;
  gap: 5px;
  line-height: 1;
}

.offer-item img {
  width: 40px;
}

.offer-item button {
/*  font-size: 18px;*/
  padding: 5px 0;
}

#form-checkout .offer-item img {
  width: 22px;
}
#form-checkout .offer-item button {
  color: #f00;
}

@media (max-width: 767px) {

  .title-offer h2 {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# Pay Card Page
--------------------------------------------------------------*/

.pay-link {
  margin-bottom: 6px;
}

.pay-link a {
  color: white;
  font-weight: 700;
  font-size: 14px;
  display: block;
}

.title-custom {
  background: white;
  padding: 21px 0 16px;
  border-radius: 10px;
  margin-bottom: 14px;
}

.title-custom h3 {
  font-size: 25px;
}

.table-cart caption {
  display: block;
  font-weight: 700;
  padding-left: 15px;
}

.pay-card--total {
  border-top: 1px solid #a8a8a5;
  margin-top: 16px;
  padding: 15px 15px 16px;
}

.cart-subtotal,
.box-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
}

.pay-card--total .price-total {
  color: var(--primary);
}

.info-pay {
  margin-top: 22px;
}

.box-title {
  margin-bottom: 12px;
}

.box-title h5 {
  font-size: 16px;
}

.box-title a {
  color: white;
}

.list-banks {
  background: white;
  padding: 15px;
}

.item-bank {
  height: 100%;
}

.item-bank a {
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  background: white;
  height: 100%;
  min-height: 47px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 5px;
  padding-bottom: 5px;
}
.item-bank.active a {
  border-color: var(--primary);
}

.item-bank img {
  width: 80px;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 991px) {

  .item-bank img {
    width: 100px;
  }
}

.card-item a {
/*  padding: 13px 15px;*/
}

.card-item img {
  width: auto;
}

.table-price thead th {
  background: #f9f2e5;
  padding-top: 12px;
  padding-bottom: 12px;
}

.table-price thead th,
.table-price tbody th {
  font-weight: 400;
  white-space: nowrap;
}

.table-price tbody tr:first-child td {
  padding: 0;
}

.table-price tbody td {
  text-align: center;
  position: relative;
  vertical-align: middle;
}

.table-price tbody label {
  color: #0071e3;
  background: #ebf4ff;
  border-radius: 0 0 4px 4px;
  padding: 0 0 3px 3px;
  font-size: 9px;
  font-weight: 600;
  text-align: center;
  width: 45px;
  height: 16px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.table-price tbody p {
  font-weight: 700;
}

.table-price button {
  background: linear-gradient(90deg,rgba(255, 124, 64, 1) 35%, rgba(255, 66, 55, 1) 100%);
  color: white;
  font-weight: 700;
  padding-top: 16px;
  padding-bottom: 16px;
  border-radius: 10px;
  white-space: nowrap;
}

.price-choose p {
  margin-bottom: 8px;
}

.choose-option {
  display: inline-block;
  border: 1px solid #a8a8a5;
  border-radius: 8px;
  overflow: hidden;
  background: white;
  padding-left: 10px;
}

.choose-option select {
  border: none;
  display: inline-block;
  width: auto;
  color: var(--primary);
  font-weight: 700;
}

.choose-option select option {
  color: black;
}

.choose-option select:focus {
  box-shadow: none;
}

/*--------------------------------------------------------------
# Finance Company Page
--------------------------------------------------------------*/

.pricing-table-header {
  background: #3d2d82;
  color: white;
  padding: 16px 0;
}

.second .pricing-table-header,
.second .pricing-table-bottom button {
  background: #38a5db;
}

.pricing-table-header h4 {
  font-weight: 400;
  font-size: 16px;
}


.pricing-table-wrapper {
  background: #f6f6f6;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bullet-item {
  padding: 12px 0;
  min-height: 43px;
}

.bullet-item span {
  color: #3d2d82;
}

.second .bullet-item span {
  color: #38a5db;
}

.pricing-table-bottom {
  padding-bottom: 16px;
}

.pricing-table-bottom button {
  background: #3d2d82;
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  padding-top: 16px;
  padding-bottom: 16px;
}

.pricing-table-bottom button:hover {
  background: var(--primary);
  color: white;
}

.pricing-limit-option {
  margin-top: 12px;
}

.pricing-limit-option select {
  padding-top: 14px;
  padding-bottom: 14px;
}

.pricing-limit-option select:focus {
  box-shadow: none;
  border-color: inherit;
}

.pricing-limit-option select,
.pricing-limit-option select option {
  font-weight: 700;
}

.method-option .accordion-item {
  border-radius: 16px;
  border-color: black;
  overflow: hidden;
}

.method-option .accordion-item:not(:last-child) {
  margin-bottom: 30px;
}

.method-option .accordion-button {
  background: white;
  box-shadow: none;
  font-weight: 700;
  color: black;
  gap: 6px;
}

.method-option .accordion-body {
  background: #dfdfdf;
  padding-top: 25px;
  padding-bottom: 30px;
}

/*--------------------------------------------------------------
# Order Successfully Page
--------------------------------------------------------------*/

.successfully-content h3 {
  font-size: 30px;
  color: #00d300;
  margin-bottom: 24px;
}

.successfully-content p {
  font-weight: 700;
  font-size: 24px;
  color: white;
}

.order-successfully {
  background: white;
  padding: 19px 42px 39px 37px;
  border-radius: 12px;
}

.order-successfully--info {
  border: 1px solid black;
  border-radius: 12px;
  padding: 18px 24px;
  font-weight: 700;
}

.order-successfully--info p:not(:last-child) {
  margin-bottom: 14px;
}

@media (max-width: 991px) {

  .successfully-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .successfully-content p {
    font-size: 15px;
    line-height: 24px;
    color: black;
  }
}

@media (max-width: 767px) {

  .order-successfully {
    padding: 24px;
  }
}

/*--------------------------------------------------------------
# About Page
--------------------------------------------------------------*/

.about-section {
  background: var(--page-bg);
  background-size: cover;
  position: relative;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgb(0, 0, 0, .7);
}

.about-info {
  min-height: 530px;
  position: relative;
}

.about-info h5 {
  margin-bottom: 20px;
}

.about-content {
  border-radius: 42px;
  padding: 46px 15px 33px 27px;
  position: relative;
  width: 50%;
  font-weight: 700;
  font-size: 20px;
}

.about-qoute {
  transform: scale(-1, 1);
  width: 50px;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}

.about-fish {
  position: absolute;
  top: 0;
  right: 100px;
  width: 50%;
}

.core-value {
  width: 100%;
}

.about-qoute.right {
  transform: unset;
  left: inherit;
  right: 0;
}

.core-value h6 {
  font-size: 20px;
  margin-bottom: 22px;
}

.core-value h3 {
  color: var(--primary);
  font-size: 22px;
  margin-bottom: 20px;
}

.prize-item {
  background: white;
  border-radius: 10px;
  overflow: hidden;
}

.about-content--sm {
  border: 3px solid black;
  border-radius: 10px;
  background: white;
  padding: 36px 50px;
  margin: 32px 0 52px;
  font-size: 25px;
}

.about-timeline ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.timeline-card {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 22px;
  position: relative;
  padding-bottom: 24px;
}

.timeline-card:last-child {
  padding-bottom: 0;
}

.timeline-card::before {
  content: '';
  width: 4px;
  height: 100%;
  background: white;
  position: absolute;
  top: 0;
  left: 0;
}

.timeline-card:first-child::before {
  top: 6px;
}

.timeline-card:last-child::before {
  height: 55%;
}

.timeline-card span.year {
  background: white;
  border: 3px solid black;
  border-radius: 10px;
  padding: 16px 8px;
  display: inline-block;
  text-align: center;
  font-weight: 700;
  font-size: 25px;
}

.timeline-card:nth-child(2) span.year {
  width: 110px;
}

.timeline-card:nth-child(3) span.year {
  width: 120px;
}

.timeline-card:nth-child(4) span.year {
  width: 140px;
}

.timeline-card:last-child span.year {
  width: 160px;
}

.timeline-card .subcard {
  flex: 1;
  color: white;
}

.subcard h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.choose-item {
  background: white;
  display: flex;
  min-height: 137px;
  border: 3px solid black;
  border-radius: 10px;
}

.choose-item:nth-child(even) {
  flex-direction: row-reverse;
}

.choose-item:not(:last-child) {
  margin-bottom: 34px;
}

.choose-number {
  border: 4px solid black;
  border-radius: 10px;
  font-size: 100px;
  font-weight: 700;
  padding: 0 34px;
  width: 114px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.choose-content {
  padding-top: 18px;
  padding-right: 16px;
  padding-left: 26px;
}

.choose-item h4 {
  font-size: 25px;
  line-height: 32px;
}

@media (max-width: 767px) {

  .about-content--sm {
    padding-left: 24px;
    padding-right: 24px;
  }

  .timeline-card {
    flex-direction: column;
  }

  .timeline-card:last-child::before {
    height: 23%;
  }

  .timeline-card .subcard {
    padding-left: 24px;
  }

  .choose-content {
    padding-top: 16px;
    padding-left: 16px;
  }

  .choose-item h4 {
    font-size: 18px;
    line-height: 28px;
  }
}

/*--------------------------------------------------------------
# Recruitment Page
--------------------------------------------------------------*/

.job-news {
  margin-bottom: 41px;
}

.job-news .thumb {
  border-radius: 23px;
}

.job-news .content {
  background: #d9d9d9;
  border: 2px solid black;
  border-radius: 12px;
  padding: 13px 0;
}

.job-item {
  border-bottom: 2px solid black;
  margin: 0 16px;
}

.job-item:not(:last-child) {
  margin-bottom: 22px;
}

.job-item h4 {
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 9px;
}

.job-item a {
  color: white;
}

.job-item p {
  color: white;
  margin-bottom: 6px;
}

.job-apply {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.job-apply p {
  margin-bottom: 0;
}

.job-apply a {
  border-radius: 1px;
  padding-left: 16px;
  padding-right: 16px;
}

@media (max-width: 991px) {

  .job-item {
    margin: 0;
  }
}

/*--------------------------------------------------------------
# Company Account Page
--------------------------------------------------------------*/

.company-account--content {
  border: 2px solid black;
  border-radius: 12px;
  padding: 17px 20px;
  margin-bottom: 65px;
  background: #e4e4e4;
  font-size: 25px;
}

.bank-item {
  background: white;
  padding: 14px 28px;
  border: 2px solid black;
  border-radius: 12px;
  height: 100%;
  box-shadow: 10px 10px 6px 0px rgba(191, 189, 188, .45);
}

.bank-item h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.bank-item p {
  margin-bottom: 0;
}

.account-content--bottom {
  color: white;
  text-align: center;
  font-size: 18px;
  font-style: italic;
}

@media (max-width: 991px) {

  .account-content--bottom {
    margin-top: 32px;
    border: 2px solid black;
    border-radius: 12px;
    padding: 15px 24px 20px;
    background: white;
    color: var(--primary);
    font-weight: 700;
  }
}

/*--------------------------------------------------------------
# Contact Infomation Page
--------------------------------------------------------------*/

.customer-item {
  text-align: center;
  color: white;
  font-size: 20px;
}

.customer-item p {
  margin-top: 17px;
}

/*--------------------------------------------------------------
# Agency Customers Page
--------------------------------------------------------------*/

.customers-contact--info {
  margin-top: 12px;
}

.customers-contact--info ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.customers-contact--info li:not(:last-child) {
  margin-bottom: 6px;
}

.customers-contact--info a {
  display: block;
  color: white;
}

/*--------------------------------------------------------------
# News Page
--------------------------------------------------------------*/

.nav-cate ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
}

.nav-cate a {
  color: white;
  font-weight: 700;
  white-space: nowrap;
}

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

.nav-cate li:not(:last-child) a {
  position: relative;
  padding: 0 12px;
}

.nav-cate li:last-child a {
  padding-left: 12px;
}

.nav-cate li:not(:last-child) a::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  background: #fdfefd;
  height: 100%;
  width: 2px;
}

.nav-cate li:first-child a {
  padding-left: 0;
}

.news-title h3 {
  font-size: 18px;
}

.news-title img {
  width: 25px;
  filter: brightness(0) invert(1);
}

.new-large img {
  height: 100%;
  object-fit: cover;
}

.new-item {
  position: relative;
}

.new-item .images-box::before {
  padding-top: 75%;
}

.new-item .content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
}

.new-item h3 {
  font-size: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-word;
}

.new-item h3 a {
  color: white;
  display: block;
}

.new-item h3 a:hover {
  color: var(--primary);
}

.time {
  margin: 0;
}

.new-item p,
.news-large p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-word;
}

.new-small .new-item:not(:last-child) {
  margin-bottom: 16px;
}

.news-box--right:first-child .new-title-box {
  margin-top: -5px;
}

.news-box--right:not(:last-child) {
  margin-bottom: 42px;
}

.news-box--right .new-title-box {
  width: 100%;
  height: 70px;
  background: url(../img/bg-title.png) no-repeat top left;
  background-size: 80% 100%;
}

.new-title-box {
  display: inline-block;
  width: auto;
  position: relative;
  color: white;
}

.new-title-box img {
  width: 80%;
}

.new-title-box h4 {
  position: absolute;
  bottom: 10px;
  left: 35px;
}

.new-list-box {
  margin-top: -12px;
  background: black;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.item-news {
  flex: 0 0 calc(33.3333% - 10px);
  max-width: calc(33.3333% - 10px);
  text-align: center;
}

.item-news .thumb {
/*  border-radius: 16px;*/
}

.item-news h3 {
  font-size: 10px;
  line-height: 18px;
}

.item-news h3 a {
  display: block;
  color: white;
}

.blog-list--box .blog-item .content {
  color: white;
  padding-left: 16px;
}

.blog-list--box .blog-item h3 {
  font-size: 20px;
}

.blog-list--box .blog-item h3 a {
  color: white;
}

.blog-list--box .blog-item h3 a:hover {
  color: var(--primary);
}

.view-more a {
  color: white;
  font-weight: 700;
  font-size: 17px;
  display: block;
}

@media (min-width: 768px) and (max-width: 991px) {

  .item-news {
    flex: 1;
    max-width: 100%;
  }

}

@media (max-width: 991px) {

  .nav-cate li:not(:last-child) a::after {
    background: var(--primary);
  }

  .new-small .new-item {
    display: flex;
    flex-flow: row wrap;
    width: 100%;
  }

  .new-small .thumb,
  .blog-list--box .blog-item .thumb {
    width: 40%;
  }

  .new-small .content {
    flex: 1;
    position: unset;
    background: transparent;
    padding: 0;
    padding-left: 16px;
  }

  .news-list .title {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .new-list-box {
    background: #3d96d9;
  }

  .news-list .title img {
    width: 78px;
  }

}

@media (max-width: 767px) {

  .nav-cate ul {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    transition: transform 0.25s ease 0s;
  }

  .new-large .content {
    position: unset;
  }

}

/*--------------------------------------------------------------
# Single News Page
--------------------------------------------------------------*/
.blog_area {
  border-radius: 12px;
}
.breadcrumb-single a,
.breadcrumb-single li {
  font-weight: 700;
  color: white;
}

.breadcrumb-single .breadcrumb-item+.breadcrumb-item::before {
  color: white;
}

.blog-post-title h1 {
  font-size: 25px;
}

.toc_container {
  border: 1px solid #000000;
  border-radius: 16px;
  padding: 10px;
  margin-bottom: 10px;
  display: inline-block;
}

.toc_container p.toc_title {
  letter-spacing: -0.5px;
  margin: 0px 0px 10px 0;
  font-weight: 700;
  cursor: pointer;
}

.toc_container .toc_list {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
  font-weight: 500;
}

.toc_list a:hover {
  color: var(--primary);
}

.blog-post-content h1 ,
.blog-post-content h2 ,
.blog-post-content h3 ,
.blog-post-content h4 {
  font-size: 26px;
  margin-bottom: 12px;
}
.blog-post-content h2 {
  font-size: 24px;
}
.blog-post-content h3 {
  font-size: 22px;
}
.blog-post-content h4 {
  font-size: 20px;
}

.news-post h2 {
  font-size: 32px;
  margin-bottom: 12px;
}

.news-post h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.news-post h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.news-tag {
  display: flex;
  align-items: center;
  gap: 12px;
}

.news-tag h5 {
  font-size: 18px;
}

.news-tag ul {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}

.news-tag li {
  display: inline-block;
  background: #bfbdbc;
  border-radius: 5px;
  padding: 5px 10px;
}

.news-tag li:hover {
  background: var(--primary);
}

.news-tag li a {
  font-weight: 700;
  display: block;
  transition: unset;
}
.news-tag li a:hover {
  color: #fff;
}

.news .images-box {
  overflow: unset;
}

.related-item .images-box::before {
  padding-top: 55%;
}

.view-more--news {
  position: absolute;
  bottom: 10px;
  left: -10px;
}

.view-more--news button {
  padding: 7px 20px;
  border-radius: 3px;
  color: white;
}

.view-more--news button:hover {
  color: white;
  background: var(--primary);
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.news-related h5,
.related-item h3 {
  font-size: 16px;
  line-height: 24px;
}


@media(max-width: 767px)
{
  .breadcrumb {
    overflow-x: auto;
    flex-wrap: nowrap;
  }
  .breadcrumb li {
    flex: 0 0 auto;
  }
}
/*--------------------------------------------------------------
# News Tag Page
--------------------------------------------------------------*/

.news-tag-page .news-header {
  padding-bottom: 16px;
}

.news-large .images-box::before {
  padding-top: 60%;
}

.news-large h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

/*--------------------------------------------------------------
# Product Compare Page
--------------------------------------------------------------*/
#toggle-different-compare {
    cursor: pointer;
    color: #0d6efd;
    font-weight: 500;
}
#toggle-different-compare:hover {
    text-decoration: underline;
}

.list-product--compare {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 100;
  background: white;
  top: unset;
  bottom: 0;
  display: none;
  padding: 24px 0;
}

.list-product--compare.active {
  display: block;
}

.list-product--compare ul {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
  display: inline-flex;
  width: 73%;
}

.list-product--compare li {
  width: 33.3333333333%;
  border-right: 1px solid #e0e0e0;
  overflow: visible;
  position: relative;
  display: block;
  text-align: center;
}

.list-product--compare li img {
  width: 60px;
  height: 50px;
  max-height: 80px;
  margin: 5px;
  -o-object-fit: contain;
  object-fit: contain;
}

.list-product--compare li h3 {
  font-weight: 400;
  font-size: 13px;
  line-height: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

.list-product--compare li span {
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
}

.plus_pro .addsp-cp {
  display: block;
  overflow: hidden;
  text-align: center;
  cursor: pointer;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.plus_pro .addsp-cp .plus {
  display: block;
  overflow: hidden;
  border: 1px dashed #ebebeb;
  position: relative;
  width: 41px;
  height: 41px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.plus_pro .addsp-cp p {
  white-space: nowrap;
}


@media (max-width: 991px) {

  .modalLightbox .modal-header {
    border-bottom: none;
  }
  .modalLightbox .modal-header h3 {
    color: white;
  }

  .compare-item {
    height: 100%;
    background: white;
    padding: 16px 24px;
    border-radius: 50px;
    cursor: pointer;
    text-align: center;
  }

  .compare-item h3 {
    font-size: 17px;
  }

  .compare-button a {
    background: white;
    width: 100%;
    padding: 42px 0;
    border-radius: 50px;
    font-weight: 700;
    font-size: 34px;
  }

  .product-item--compare {
    background: white;
    border-radius: 50px;
    padding: 18px 24px;
  }

  .product-add--compare {
    border: 1px solid black;
    border-radius: 18px;
    padding: 75px 59px;
  }

  .product-add--compare a {
    display: block;
    text-align: center;
    font-size: 80px;
    color: #a8a8a5;
  }
}

@media (max-width: 767px) {

  .compare-item {
    padding: 0;
  }

  .compare-item h3 {
    font-size: 10px;
  }
}




/* Footer */
.footer {
    padding: 20px 0;
  }

footer {
  background: #fff;
  font-size: 13px;
  color: #333333;
}
footer a {
  color: #333333; 
}
footer a:hover {
  color: var(--primary);
}

footer .main-title + ul ,
.footer-content ul {
  padding-left: 0;
  list-style: none;
}

footer .main-title + ul li,
.footer-content li {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.footer-content li:last-child {
  margin-bottom: 0;
}

.footer-content li img {
  width: 30px;
}

footer .main-title ,
.footer-title h3 {
  font-size: 14px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.footer-logo a {
  display: block;
  text-align: center;
}

.footer-logo img {
  width: 80%;
}

.footer-info ul {
  list-style: none;
  padding-left: 0;
}
.footer-info ul li {
  margin-bottom: 10px;
  line-height: 1;
  display: flex;
  align-items: center;
}
.footer-info a {
}

.footer-item {
  background: white;
  padding: 18px 40px;
}

.footer-item ul {
  list-style: none;
  padding: 0;
  margin: 32px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
}

.footer-item li {
  flex: 0 0 calc(33% - 30px);
  max-width: calc(33% - 30px);
}

.footer-item li a {
  border: 1px solid black;
  border-radius: 13px;
  font-weight: 700;
  font-size: 17px;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-item a:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: white;
}

.footer-icon {
  margin: 32px 0;
  display: flex;
  align-items: center;
  gap: 60px;
}

.footer-icon a {
  display: block;
}

.footer-icon i {
  font-size: 36px;
  color: #004aad;
}

.footer-icon img {
  width: 36px;
}

.footer-icon.payment img {
  width: 80px;
}

.footer-address {
  margin-top: 32px;
}



@media (min-width: 992px) {

  
}

@media (max-width: 767px) {

  .footer-content {
    display: none;
  }

  .footer-item {
    padding-left: 24px;
    padding-right: 24px;
  }

  .footer-item ul {
    gap: 30px;
  }

  .footer-item li {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
  }

  .footer-item li a {
    font-size: 16px;
  }
}


/*.list-pay list-ship*/
.list-pay, 
.list-ship {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0px -2px;
    padding-left: 0;
}
.list-pay li, 
.list-ship li {
    width: calc(25%);
    display: inline-flex;
    padding: 2px;
}
/*.list-pay list-ship*/

/*social lisst*/
footer .social-list {
    display: flex;
    align-items: center;
}
footer .social-list a {
    display: inline-flex;
    margin-right: 12px;
}
footer .social-list a img {
    position: relative;
    height: 32px;
}
/*social lisst*/

/* rate_thongke */
.review-group__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review-num {
  font-weight: 700;
  font-size: 32px;
  color: #FA7C1C;
}

/*.review-star i {
  color: var(--light-6);
}*/

.review-btn {
  background: transparent;
  border: 1px solid #CCCCCC;
  border-radius: 8px;
  padding: 8px 20px;
}

.review-btn i {
  color: #FFD56C;
}

.review-btn.active {
  color: #FF3838;
  border-color: #FF3838;
}

.review-overview {
  color: #f00;
  font-size: 36px;
  font-weight: 500;
}

.rate {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 7px;
  gap: 10px;
  font-size: 13px;
  color: #9a9a9a;
}

.rate-start {
  text-align: right;
  flex: 0 0 35px;
}

.rate-progress-bar {
  background: #dedede;
  display: block;
  height: 7px;
  flex: 1;
  border-radius: 4px;
}

.rate-progress-bar .full {
  background: #fd9727;
  width: 50%;
  height: 100%;
  border-radius: 4px;
}

.rate-num {
  color: #3669a4;
  width: 100px;
}

.review-share p {
  line-height: 24px;
  font-size: 12px;
  margin-bottom: 6px;
}

.review-share button {
  background: #337fff;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
}

.review-note .note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #e8e8e8;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  border-top: none;
  padding: 5px;
}

.review-star .radio-group label.active,.review-star .radio-group label:hover {
    color: #f5a623
}
/* end rate_thongke */
/*product review*/

.review-star .radio-group{
  display: flex;
  flex: 1;
}
.review-star .radio-group div{
  display: flex;
}
.review-star .radio-group label{
  cursor: pointer;
  padding: 0 3px;
  color: #cacaca;
  text-align: center;
  font-weight: normal;
  margin: 0;
  font-size: 18px;
}

/*.review-star .radio-group input:checked+label,*/
.review-star .radio-group label.active,
.review-star .radio-group label:hover{
    color: #f5a623;
}
.review-star .radio-group input{
  position: absolute;
  clip: rect(0,0,0,0);
  pointer-events: none;
}

#review label{
    font-weight: bold;
}
#review input,
#review textarea{
    font-size: 14px;
    padding: 7px;
}


.up_picture_rate label{
    cursor: pointer;
}
.up_picture_rate input{
    opacity: 0;
}

.view_thumbnail {
    display: inline-block;
    position: relative;
    padding: 5px;
    margin: 5px;
    border: 1px solid #eee;
    border-radius: 5px;
}
.view_thumbnail .btn {
    color: #f00;
    background-color: #fff;
    border-color: #f00;
    position: absolute;
    right: -5px;
    top: -5px;
    border-radius: 50%;
    z-index: 99;
    font-size: 12px;
    padding: 3px 5px;
    line-height: 1;
    width: 20px;
    height: 20px;
}


.review-star .voted{
    color: #fd9727;
}

.text-write-vote {
  color: #646E57;
  font-weight: 600;
}

.review-detail{
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #D9D9D9;
}
.r-date{
/*    font-size: 14px;*/
    color: #878787;
}
.r-name {
  font-size: 14px;
}
.r-name b{
/*  font-size: ;*/
}

.icon-replies-count{
    color: #2f80ed;
    font-size: 13px;
    cursor: pointer;
}

.box_reply{
    display: none;
    border: 1px solid #dadada;
    padding: 5px;
    padding-left: 15px;
    border-radius: 3px;
    position: relative;
    margin: 10px 0 5px;
    background: #f1f1f1;
}

.box_reply:after, .box_reply:before {
    bottom: 100%;
    left: 30px;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.box_reply:after {
    border-color: rgba(136, 183, 213, 0);
    border-bottom-color: #f1f1f1;
    border-width: 9px;
    margin-left: -9px;
}
.box_reply:before {
    border-color: rgba(194, 225, 245, 0);
    border-bottom-color: #dadada;
    border-width: 10px;
    margin-left: -10px;
}
.list_rate_title{
    display: inline-block;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
    font-size: 13px;
    margin-bottom: 10px;
    margin-top: 5px;
}
.reply_item .list_rate_title span{
    color: #4bab02;
    font-size: 14px;
    font-weight: bold;
}

.count-comment{
    position: absolute;
  right: 15px;
  font-size: 13px;
  color: #f15a34;
}
.count-comment span{
    color: #333;
}
.count-comment span.error{
    color: #f15a34;
}

#aniimated-thumbnials img{
    max-height: 65px;
}
/*product review*/


/*BRAND slider*/
.section-brand-slider {
  padding: 10px 0;
  border-radius: 12px;
  background: #fff;
}
.brand-slider .img {
  align-items: center;
  background-color: #fff;
  border-color: #d1d5db;
  border-radius: .375rem;
  border-width: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
}

.brand-slider .img img {
  width: auto;
  max-height: 40px;
}
.brand-slider .slider-item {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.brand-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.brand-list .brand-item {
  width: 80px;
  flex: 0 0 80px;
  position: relative;
  border-radius: 12px;
  background: #2D3346;
  background: linear-gradient(180deg, rgba(45, 51, 70, 1) 0%, rgba(131, 135, 145, 1) 100%);
}
.brand-list .brand-item:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.brand-list .brand-item a {
  position: absolute;
  top: 5px;
  left: 5px;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.brand-list .brand-item a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px dashed #fff;
}
.brand-list .brand-item img {
  filter: brightness(0) invert(1);
}

.brand-list .brand-item.active a:before ,
.brand-list .brand-item:hover a:before {
  border-color: #fcf302;
  -webkit-animation:spin 15s linear infinite;
  -moz-animation:spin 15s linear infinite;
  animation:spin 15s linear infinite;
}
.brand-list .brand-item.active img ,
.brand-list .brand-item:hover img {
  filter: unset;
}

@-moz-keyframes spin { 
    100% { -moz-transform: rotate(360deg); } 
}
@-webkit-keyframes spin { 
    100% { -webkit-transform: rotate(360deg); } 
}
@keyframes spin { 
    100% { 
        -webkit-transform: rotate(360deg); 
        transform:rotate(360deg); 
    } 
}
/*BRAND slider*/

/*faq*/
/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.sec-title h5 {
  margin-bottom: 18px;
}
.faq .faq-container .faq-item {
  position: relative;
  padding: 15px;
  border-bottom: 1px solid color-mix(in srgb, #ccc, transparent 85%);
  overflow: hidden;
  background: #f8f8f8;
  margin-bottom: 10px;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
  color: #666;
}

.faq .faq-container .faq-item h3 .num {
  color: #d90000;
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: #d90000;
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 30px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: #d90000;
}

.faq .faq-container .faq-content {
  height: 0;
}
.faq .faq-container .faq-active .faq-content {
  height: auto;
  padding-top: 20px;
}
.faq .faq-container .faq-active h3 {
  color: #d90000;
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  
}
.faq-content ul {
  padding-left: 20px;
}
.faq-content ul li {
  margin-bottom: 10px;
}
.faq-content ul li:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(-90deg);
  color: #d90000;
}
/*faq*/

/*modal*/
.modal .select2-container {
    --bs-select-height: 50px;
}

.w-px-50 {
    width: 50px !important;
}
.modal .btn-close {
    padding: 5px;
    background-color: #fff;
    box-shadow: 0 0.0625rem 0.3175rem 0 rgba(34, 48, 62, 0.06);
    filter: none;
    opacity: 1;
    transform: translate(23px, -25px);
    border-radius: .25rem;
    transition: all .23s ease .1s;
}
.modal-simple .btn-close {
    position: absolute;
    inset-block-start: 15px;
    inset-inline-end: 15px;
}
/*modal*/

/*stickcompare*/
#compareAddProduct .user-info h6 {
  font-size: 14px;
  font-weight: normal;
}

.stickcompare {
    display: none;
    width: 100%;
    margin: auto;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1010;
    background: #fff;
    box-shadow: 0 -2px 10px #0000001f;
    border-radius: 0;
    border-top: 1px solid #e5e5e5;
}

.stickcompare.stickcompare_new a.clearall {
    position: absolute;
    right: 0;
    top: -39px;
    padding: 10px 30px 10px 10px;
    border-radius: 8px 8px 0 0;
    color: #000;
    background: #fff;
    box-shadow: 0 -2px 10px #0000001f;
}

ul.listcompare {
    display: grid;
    grid-auto-rows: minmax(min-content, max-content);
    grid-template-columns: repeat(1, minmax(0, 1fr));
    overflow: hidden;
    width: 100%;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 0;
    padding-left: 0;
}

ul.listcompare {
    flex: 1;
    display: flex;
    border: unset;
    flex-wrap: wrap;
}

.listcompare li {
    overflow: visible;
    position: relative;
    padding-top: 7px;
    display: block;
    flex: 1;
}
.listcompare li {
    border-right: 1px solid #e0e0e0;
    padding-top: 0;
    box-sizing: border-box;
}
.listcompare li:last-child {
  border-right: 0;
}
.listcompare a {
    display: flex;
    overflow: hidden;
    padding: 10px 0 5px;
    align-content: center
}
.listcompare a {
    justify-content: center;
    flex-flow: column;
    align-items: center;
}

.listcompare span {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 16px;
    height: 16px;
    cursor: pointer;
    background-position: center
}

.listcompare li img {
    width: auto;
    height: 60px;
    margin: 5px;
    object-fit: contain
}
.listcompare h3 {
  overflow: hidden;
  line-height: 1.6em;
  color: #333;
  min-height: 34px;
  font-weight: normal;
  font-size: 13px;
  margin: 5px 0 5px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  line-height: 1.3em;
  text-align: center
}

.listcompare li.closecompare {
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.listcompare li.closecompare a {
  display: block;
  text-align: center;
  margin: 5px auto;
  padding: 7px;
  border-radius: 10px;
  font-size: 14px;
  color: #2f80ed;
  width: 80%;
}
.closecompare a.doss-no-compare {
    background: #2f80ed;
    color: #fff !important;
    font-size: 14px;
}

.listcompare .remove-ic-compare {
  background-image: url("../img/cancel.svg");
  content: '';
  background-repeat: no-repeat
}

.listcompare .cp-plus>i.icImageCompareNew {
  width: 60px;
  height: 60px;
  margin: 5px;
  background: url("../img/icon_add_desktop.png") no-repeat center center;
  background-size: 45px 45px;
}

#d-basic-spec-compare td {
  width: 25%;
}

.compare-page .listcompare li img {
  height: 150px;
}
.compare-page .listcompare .cp-plus>i.icImageCompareNew {
  width: 150px;
  height: 150px;
}

.listcompare .cp-plus>i.icImageCompareNew.buil-pc {
  background: url("../img/icon/icon-build-pc.png") no-repeat center center;
  background-size: 45px 45px;
}

@media(max-width: 767px) {
  .compare-page {
    overflow-x: auto;
  }
  .compare-page > .container {
    min-width: 800px;
  }

  ul.listcompare {
      width:100%;
      float: none;
      border-bottom: 1px solid #e0e0e0
  }

  .listcompare span {
      width:12px;
      height: 12px
  }

  .closecompare a {
      float:left
  }
  .listcompare li.closecompare a {
    font-size: 12px;
  }
}
/*stickcompare*/

/*loading*/
#loading_box {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.75);
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 100000;
   opacity:0; 
   visibility:hidden; 
}
#loading_box.show {
  opacity: 1;
  visibility: visible;
}

#loading_image {
  display: block;
  position: relative;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 80px;
  height: 80px;
  top: 50%;
  transform: translateY(-50%)
}

#loading_image:before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #f8c546;
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
  z-index: 1
}

#loading_image:before {
  border-top-color: #175cd3ab
}

#loading_image:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  background: var(--loading-bg);
  background-size: 55%;
  border-radius: 50%;
  margin: 0;
  background-color: #f8c5468c
}

#loading_image:after {
  background-color: rgba(188,188,188,0.4)
}

@-webkit-keyframes spin {
  0% {
      -webkit-transform: rotate(0deg)
  }

  100% {
      -webkit-transform: rotate(360deg)
  }
}

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

  100% {
      transform: rotate(360deg)
  }
}
/*loading*/

/*auth form login*/
.form-group {
  position: relative;
}
.error-message,
form div.error ,
form label.error {
  bottom: -16px;
  font-size: 13px;
  color: #f00;
}
form div.error ,
form label.error {
  position: absolute;
  left: 0;
}

#reviewModal form div.error,
#reviewModal form label.error {
  position: relative;
  bottom: 0;
}

.password-toggle {
  position: relative;
}

.password-toggle-btn .password-toggle-check {
  position: absolute;
  left: 0;
  z-index: -1;
  width: 1rem;
  height: 1.25rem;
  opacity: 0;
}

.password-toggle-btn {
  position: absolute;
  top: 3px;
  right: .625rem;
  left: unset;
  margin-bottom: 0;
  padding: .5rem;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  border: 0;
  background: unset;
}
/*auth form login*/

/*sidebar-right*/
.sidebar-right .blog-item {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
}

.sidebar-right .blog-item:not(:last-child) {
  margin-bottom: 20px;
}

.sidebar-right .blog-item .thumb {
  width: 100px;
}

.sidebar-right .blog-item .thumb::before {
  padding-top: 55%;
}

.sidebar-right .blog-item .content {
  flex: 1;
  padding-left: 8px;
}

.sidebar-right .blog-item h3 {
  font-size: 13px;
  line-height: 1.3;
  font-weight: 500;
  margin-bottom: 0;
}

.sidebar-right .blog-item h3 a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sidebar-right .blog-item h3 a:hover {
  color: var(--primary);
}

.sidebar-right .blog-item p {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sidebar-right .blog-item .box-price {
  gap: 5px;
}

@media (max-width: 991px) {

  .sidebar-right .blog-item p {
    -webkit-line-clamp: 3; 
  }
}

/*sidebar-right*/
/*list scroll mobile*/
@media(max-width: 990px)
{
  .scroll-x {
    overflow-x: auto;
    flex-wrap: nowrap;
  }
}
/*list scroll mobile*/

/*waiting-process*/
.waiting-process {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff75;
  display: flex;
  align-items: center;
  justify-content: center;
}
/*waiting-process*/


/*all button*/

.all-button-cart .button-submit {
    width: 400px;
    padding: 13px 0;
    margin: auto;
    display: block;
    font-size: 14px;
    font-weight: normal;
    line-height: normal;
    color: #fff;
    text-align: center;
    border-width: 0px;
    cursor: pointer;
    margin-bottom: 0px;
    background: #214d7b;
    border-radius: 6px;
    text-transform: uppercase;
}
.all-button-cart .btn-info.button-submit {
    color: #fff;
    background: #007bff;
}
.all-button-cart .btn-danger.button-submit {
    color: #fff;
    background: #d00;
}

.shopcart_product .all-button-cart .button-submit span {
    display: block;
    color: #fff;
    margin-top: 5px;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px
}

@media screen and (max-width: 600px) {
    .shopcart_product .all-button-cart .button-submit span {
        margin-top:2px
    }
}

.shopcart_product .all-button-cart .button-submit:hover {
    background-color: #ad1116
}

@media screen and (max-width: 600px) {
    .shopcart_product .all-button-cart .button-submit {
        margin:0px auto;
        width: auto;
        display: inline-block;
        font-size: 14px;
        font-weight: 500;
        padding: 10px 40px 6px
    }
}
/*all button*/

/* Hot deal product detail */
.product-deal-info {
  background: url('../img/bg_info_deal_detail.jpg') center no-repeat;
  background-size: cover;
  color: white;
  padding: 5px;
  padding-bottom: 10px;
  margin-top: 12px;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}

.content-status {
  max-width: 50%;
  flex: 0 0 50%;
}

.deal-time {
  flex: 1;
}

.content-status .title {
  display: flex;
  align-items: center;
  gap: 5px;
}

.content-status h3 {
  font-size: 18px;
  text-transform: uppercase;
}

.order-status {
  width: 200px;
  height: 16px;
  line-height: 16px;
  border-radius: 30px;
  padding-left: 5px;
  margin-top: 8px;
  position: relative;
  background: #ed3236;
  background: -moz-linear-gradient(left,#ed3236 0%,#fd5707 100%);
  background: -webkit-linear-gradient(left, #ed3236 0%, #fd5707 100%);
  background: linear-gradient(to right, #ed3236 0%, #fd5707 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ed3236',endColorstr='#fd5707',GradientType=1);
  text-transform: uppercase;
  font-size: 10px;
  line-height: 16px;
}

.deal-time .countdown .date {
  background: black;
  text-transform: capitalize;
  font-weight: 700;
  padding: 5px 10px;
  margin-right:5px;
  border-radius: 7px;
}

.deal-time .countdown .date span {
  padding: 0;
  margin: 0;
  border-radius: 0;
}

.deal-time .countdown timer {
  display: flex;
  align-items: center;
  gap: 5px;
}

.deal-time .countdown span {
  background: black;
  color: white;
  display: inline-block;
  font-weight: 700;
  font-size: 14px;
  padding: 5px 10px;
  border-radius:7px;
}

@media (max-width: 767px) {

  .product-deal-info {
    gap: 8px;
    justify-content: center;
  }
  .deal-time {
    flex: unset;
  }

  .content-status {
    /*flex: 0 0 100%;
    max-width: 100%;*/
  }

  .content-status h3 {
    font-size: 16px;
  }

  .content-status .title {
    margin-top: 7px;
    /*margin-left: 15px;*/
  }

  .content-status  .title img {
    display: none;
  }

  .order-status {
    width: 150px;
    margin-top: 12px;
  }
}
/* Hot deal product detail */

/* Rank Content Account */
.name_profile .rank {
  position: relative;
  overflow: hidden;
}

.rank-content {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  padding: 0 8px;
}

.rank-progress {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}

.rank-progress .progress {
  flex: 1;
  height: 8px;
}

.rank-progress .progress-bar {
  background-color: #eac163;
}

.icon-rank {
  background: white;
  color: #c3c3c3;
  border-radius: 30px;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
}

.rank-content p {
  font-size: 10px;
  color: white;
}
/* Rank Content Account */
