:root {
  --main: rgb(0, 0, 0);
  --theme-text-rgba-1: rgba(0, 0, 0, 0.16);
  --theme-text-rgba-2: rgba(0, 0, 0, 0.15);
  --text: rgb(84, 84, 84);
  --line: rgb(235, 235, 235);
  --line-2: rgb(236, 236, 236);
  --bg-10: rgb(252, 251, 249);
  --bg-11: rgb(242, 242, 242);
  --bg-scrollbar-track: rgb(241, 241, 241);
  --bg-scrollbar-thumb: rgb(193, 193, 193);
}
body,
h1,
h2,
h3,
h4,
h5,
h6,
.sib-form {
  font-family: var(--theme-font-family) !important;
}
.tf-languages a,
#header .box-nav-ul .item-link,
.nav-icon li a,
.type-currencies button {
  color: var(--theme-header-text) !important;
}

.collection-title,
.tf-btn,
.btn-outline,
.variant-picker-item
  .variant-picker-values
  input:checked
  + label
  .variant-picker-item
  .variant-picker-values
  input:checked
  + label.style-text {
  background: var(--theme-primary) !important;
  border: 1px solid var(--theme-primary) !important;
  color: var(--theme-button-text) !important;
}

.tf-dropdown-sort {
  padding: 8px 12px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.link:hover {
  color: var(---theme-primary) !important;
}

.tf-product-info-price .price-on-sale {
  font-size: 22px;
  line-height: 22px;
}

body {
  color: var(--theme-text);
  background-color: var(--theme-background);
}

.slider-layout-right {
  width: calc(100vw - (100vw - 1440px) / 2 + 40px);
}

textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"] {
  font-family: var(--theme-font-family);
  border: 1px solid var(--line);
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  font-size: 14px;
  line-height: 24px;
  border-radius: 3px;
  padding: 12px 18px;
  width: 100%;
  background: var(--white);
  color: var(--text-2);
  font-weight: 400;
}
#search {
  padding: 12px 12px 12px 40px;
}
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus {
  border-color: var(--line);
}

textarea::placeholder,
input[type="text"]::placeholder,
input[type="password"]::placeholder,
input[type="datetime"]::placeholder,
input[type="datetime-local"]::placeholder,
input[type="date"]::placeholder,
input[type="month"]::placeholder,
input[type="time"]::placeholder,
input[type="week"]::placeholder,
input[type="number"]::placeholder,
input[type="email"]::placeholder,
input[type="url"]::placeholder,
input[type="search"]::placeholder,
input[type="tel"]::placeholder,
input[type="color"]::placeholder {
  color: var(--text-2);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--theme-text);
}

.fs-22 {
  font-size: 22px !important;
}

.bg_dark {
  background-color: var(--theme-text) !important;
}

.bg_primary {
  background-color: var(--theme-text);
  color: white;
}

.text_black {
  color: var(--theme-text);
}

.text_black-3 {
  color: #545454 !important;
}

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

.text-1 {
  font-size: 18px;
  line-height: 21.6px;
}

a {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: var(--theme-text);
}

a:focus,
a:hover {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.link {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.gap-15 {
  gap: 15px;
}

.border-line {
  border: 1px solid var(--line);
}

.border-line-black {
  border: 1px solid var(--theme-text);
}

.radius-3 {
  border-radius: 3px;
}

.radius-20 {
  border-radius: 20px;
}

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

.mb_24 {
  margin-bottom: 24px;
}

[data-grid="grid-1"] {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
}

[data-grid="grid-2"] {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr 1fr;
}

[data-grid="grid-3"] {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, 1fr);
}

[data-grid="grid-4"] {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(4, 1fr);
}

[data-grid="grid-5"] {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(5, 1fr);
}

[data-grid="grid-6"] {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(6, 1fr);
}

.tf-top-bar_wrap {
  padding: 8px 0px;
}

#header .box-nav-ul .item-link {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#header .box-nav-ul .item-link::before {
  background: var(--theme-text);
}

.logo-header img {
  max-width: 120px;
  max-height: 90px;
}

.box-nav-ul .menu-item:hover .sub-menu {
  pointer-events: all;
  opacity: 1;
  visibility: visible;
  transform: translateX(0px) translateY(0px);
}

.box-nav-ul .sub-menu {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.box-nav-ul .menu-heading {
  color: var(--theme-text);
}

.mega-menu .demo-item .demo-name {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.mega-menu .demo-item:hover {
  border-color: var(--theme-text);
}

.canvas-mb .mb-canvas-content {
  min-width: 320px;
}

.canvas-mb .mb-body {
  padding-top: 20px;
  padding-right: 20px;
}

.canvas-mb .icon-close-popup {
  color: var(--theme-text);
}

.canvas-mb
  .mb-bottom
  .bottom-bar-language
  .image-select.type-currencies
  > .dropdown-menu {
  width: 105px !important;
}

.canvas-mb .site-nav-icon {
  color: var(--theme-text);
}

.canvas-mb .site-nav-icon:hover {
  background-color: var(--theme-text);
  border-color: var(--theme-text);
}

.canvas-mb .nav-ul-mb .nav-mb-item {
  padding: 2px 0px;
}

.canvas-mb .nav-ul-mb .nav-mb-item:not(:last-child) {
  border-bottom: 1px solid rgb(238, 238, 238);
}

.canvas-mb .nav-ul-mb .nav-mb-item .mb-menu-link {
  min-height: 40px;
  font-weight: 500;
  font-size: 14px;
  color: var(--theme-text);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.canvas-mb
  .nav-ul-mb
  .nav-mb-item
  .mb-menu-link:not(.collapsed)
  .btn-open-sub::before {
  transform: rotate(90deg);
}

.canvas-mb .nav-ul-mb .btn-open-sub {
  position: relative;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.canvas-mb .nav-ul-mb .btn-open-sub:after,
.canvas-mb .nav-ul-mb .btn-open-sub::before {
  content: "";
  position: absolute;
  z-index: 1;
  background-color: var(--theme-text);
  transition: 0.4s ease 0.1s;
  margin: auto;
}

.canvas-mb .nav-ul-mb .btn-open-sub::before {
  width: 2px;
  height: 12px;
}

.canvas-mb .nav-ul-mb .btn-open-sub::after {
  width: 12px;
  height: 2px;
}

.canvas-mb .nav-ul-mb .sub-nav-menu {
  margin-left: 10px;
  padding-left: 19px;
  margin-bottom: 26px;
  border-left: 1px solid rgb(236, 236, 236);
}

.canvas-mb .nav-ul-mb .sub-menu-level-2 {
  margin-bottom: 5px;
}

.canvas-mb .nav-ul-mb .sub-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 32px;
}

.canvas-mb .nav-ul-mb .sub-nav-link:not(.collapsed) .btn-open-sub::before {
  transform: rotate(90deg);
}

.canvas-mb .nav-ul-mb .sub-nav-link.line-clamp {
  position: relative;
  display: inline-flex;
}

.canvas-mb .nav-ul-mb .sub-nav-link.line-clamp .demo-label {
  top: -5px;
  right: -38px;
}

.canvas-mb .mb-other-content .text-need {
  border-bottom: 1px solid var(--theme-text);
}

header {
  background-color: var(--theme-background);
}

header.header-bg {
  background-color: var(--theme-background);
}

.footer.background-black {
  background-color: var(--theme-text);
}

.footer.background-black .footer-infor ul li p {
  color: rgb(161, 161, 161);
}

.footer.background-black .footer-infor ul li p a {
  color: rgb(161, 161, 161);
}

.footer.background-green {
  background-color: #214332;
}

.footer.background-green * {
  border-color: rgba(235, 235, 235, 0.15);
}

.footer.background-green .footer-wrap .footer-body::before {
  display: none;
}

.footer.background-green .footer-infor ul li p {
  color: var(--white) !important;
}

.footer.background-green .footer-infor ul li p a {
  color: var(--white) !important;
}

.footer.background-green .footer-infor > a {
  margin-bottom: 28px;
}

.footer.background-green .footer-heading h6 {
  color: var(--white);
}

.footer.background-green .footer-menu_item {
  color: var(--white) !important;
}

.footer.background-green .form-newsletter input {
  border-radius: 60px;
}

.footer.background-green .form-newsletter button {
  border-radius: 60px;
  background-color: rgb(23, 46, 34);
}

.footer.background-gray {
  background-color: #f6f6f6;
}

.tf-toolbar-bottom {
  background-color: var(--theme-primary);
}

.tf-toolbar-bottom .toolbar-item a .toolbar-icon i {
  color: var(--theme-text);
}

.widget-tabs .widget-menu-tab .item-title:not(.default)::after {
  background-color: var(--theme-text);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.widget-tab-2 .nav-tab-item a {
  color: var(--theme-text);
}

.widget-tab-2 .nav-tab-item a.active {
  border-bottom-color: var(--theme-text);
}

.widget-tab-3 .nav-tab-item a {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.widget-tab-3 .nav-tab-item a.active {
  border-bottom-color: var(--theme-text);
}

.widget-tab-3 .nav-tab-item a:hover,
.widget-tab-3 .nav-tab-item a.active {
  color: var(--theme-text);
}

.widget-tab-4 {
  border: 1px solid var(--theme-text);
}

.widget-tab-4 .nav-tab-link {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.wrap-slider .box-content {
  top: 85%;
}

.wrap-slider .box-top {
  top: 75% !important;
}

.tf-slideshow .wrap-pagination {
  bottom: 57px;
}

.slider-effect-fade .swiper-slide .fade-item {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.slider-effect-fade .swiper-slide.swiper-slide-active .fade-item {
  background: none !important;
  color: var(--theme-primary) !important;
}

.grid-img-group .item-1 {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.grid-img-group .item-2 {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.tf-slideshow.about-us-page img {
  max-height: 200px;
}

.banner-collection-men-wrap {
  position: relative;
}

.banner-collection-men-wrap .box-content {
  position: absolute;
  left: 15px;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.banner-collection-men-wrap .card-box {
  background-color: var(--white);
  border-radius: 10px;
  padding: 20px 15px;
}

.banner-collection-men-wrap .card-box .subheading {
  font-size: 14px;
  line-height: 16.8px;
  font-weight: 700;
}

.banner-collection-men-wrap .card-box .heading {
  font-weight: 400;
  font-size: 24px;
  line-height: 28.8px;
  margin-top: 16px;
}

.banner-collection-men-wrap .card-box .text {
  margin-top: 20px;
  font-size: 16px;
  line-height: 25.6px;
  color: var(--text);
}

.banner-collection-men-wrap .card-box .tf-btn {
  margin-top: 20px;
}

.banner-collection-men-wrap .img-wrap {
  height: 450px;
  width: 100%;
}

.banner-collection-men-wrap .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-parallax {
  background-attachment: fixed;
}

.tf-slideshow .card-box-2 {
  max-width: 400px;
}

.tf-btn {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.tf-btn.hover-icon .icon {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.tf-btn.hover-icon:hover .icon {
  min-width: 10px;
  margin-inline-start: 8px;
}

.tf-btn.btn-primary-main {
  color: var(--theme-text);
}

.tf-btn.style-2 {
  line-height: 44px;
}

.tf-btn.style-3 {
  line-height: 42px;
}

.btn-fill {
  background-color: var(--theme-text);
  border: 1px solid var(--theme-text);
}

.btn-outline {
  border: 1px solid var(--theme-text);
}

.btn-outline-dark {
  border: 1px solid var(--theme-text);
  color: var(--theme-text);
  font-size: 14px;
  line-height: 17px;
}

.fill-outline-light:hover {
  color: var(--theme-text);
}

.btn-line {
  color: var(--theme-text);
}

.btn-line::after {
  background-color: var(--theme-text);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn-light:hover {
  background-color: var(--theme-text);
}

.animate-hover-btn.btn-primary:after,
.animate-hover-btn.btn-fill::after {
  background-image: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
}

.tf-loading-default,
.tf-btn-loading {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.tf-loading-default.loading,
.tf-btn-loading.loading {
  background-color: var(--theme-text);
}

.tf-loading-default.loading::before {
  border-color: var(--theme-text);
}

.tf-loading-default .text {
  color: var(--theme-text);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.tf-loading-default.style-2 {
  border-color: var(--theme-text);
}

.tf-loading-default.style-2.loading::before {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.tf-btn-filter {
  color: var(--theme-text);
}

.noUi-target,
.noUi-target * {
  cursor: pointer;
}

.noUi-target {
  width: 100%;
  padding-right: 15px;
}

.noUi-base {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  background: rgb(235, 235, 235);
}

.noUi-origin {
  border-radius: 0px;
}

.noUi-handle {
  cursor: default;
  -webkit-box-sizing: border-box !important;
  -moz-box-sizing: border-box !important;
  box-sizing: border-box !important;
}

.noUi-stacking .noUi-handle {
  z-index: 10;
}

.noUi-state-tap .noUi-origin {
  -webkit-transition: left 0.3s, top 0.3s;
  transition: left 0.3s, top 0.3s;
}

.noUi-base,
.noUi-handle {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.noUi-horizontal .noUi-handle {
  position: relative;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--primary);
  border: 2px solid transparent;
  cursor: pointer;
}

.caption {
  margin-bottom: 10px;
}

.noUi-background {
  background: rgb(235, 235, 235);
}

.noUi-connect {
  background: var(--primary);
  -webkit-transition: background 450ms;
  transition: background 450ms;
}

.noUi-draggable {
  cursor: w-resize;
}

.noUi-vertical .noUi-draggable {
  cursor: n-resize;
}

[disabled].noUi-connect,
[disabled] .noUi-connect {
  background: #b8b8b8;
}

[disabled].noUi-origin,
[disabled] .noUi-handle {
  cursor: not-allowed;
}

.slider-labels .caption {
  font-weight: 500;
  font-size: 16px;
}

.tf-select {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.tf-select:focus-visible {
  border: 1px solid var(--theme-text);
}

.tf-product-bundle-variant {
  width: max-content;
}

.tf-product-bundle-variant::after {
  right: 8px;
}

.tf-field .tf-input {
  border-color: var(--theme-primary) !important;
}

.tf-field .tf-input:focus {
  border-color: var(--theme-primary) !important;
}

.tf-check {
  background: white;
}

.tf-check:checked {
  border-color: var(--theme-primary) !important;
  background-color: var(--theme-primary) !important;
}

.tf-check::before {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.tf-check-color::before {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.tf-check-color.bg_white::before {
  color: var(--theme-text);
}

.tf-dropdown-sort .select-item {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.tf-dropdown-sort .select-item.active {
  color: var(--theme-text);
}

.tf-dropdown-sort .select-item.active::before {
  background-color: var(--theme-text);
}

.tf-dropdown-sort .select-item:hover {
  color: var(--theme-text);
}

.tf-dropdown-sort:hover {
  border-color: var(--theme-text);
}

.tf-product-form .tf-field input[type="date"] {
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 16px 0px;
  width: 213px;
  height: 68px;
  padding-top: 28px;
  color: var(--theme-text);
}

.tf-product-form .tf-field input[type="date"] + label {
  top: 20px;
}

.nice-select {
  color: var(--theme-text);
}

.nice-select:after {
  border-bottom: 1.7px solid var(--theme-text);
  border-right: 1.7px solid var(--theme-text);
}

.nice-select .option {
  color: var(--theme-text);
}

.nice-select .option.disabled {
  color: var(--theme-text);
}
.dropdown.bootstrap-select.image-select.style-default {
  width: unset !important;
}
.dropdown.bootstrap-select.image-select.style-default > button::after {
  color: var(--theme-text);
}

.dropdown.bootstrap-select.image-select.style-default
  > button
  .filter-option-inner-inner
  img {
  height: 16px;
}

.dropdown.bootstrap-select.image-select.style-default
  > .dropdown-menu
  ul.dropdown-menu
  > li
  > a
  .text
  img {
  height: 16px;
}

.dropdown.bootstrap-select.image-select.style-default
  > .dropdown-menu[data-popper-placement="top-start"]::after {
  display: none;
}

.dropdown.bootstrap-select.image-select.style-default
  > .dropdown-menu[data-popper-placement="top-start"]::before {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  transform: translate(-50%, 50%) rotate(45deg);
  background-color: var(--white);
  bottom: 0%;
  left: 50%;
  z-index: 2;
}

.dropdown.bootstrap-select.image-select.type-currencies
  > button
  .filter-option
  .filter-option-inner {
  width: 55px;
}

.dropdown.bootstrap-select.image-select.type-currencies > .dropdown-menu {
  width: 105px;
  margin-left: calc(50% - 20px) !important;
}

.dropdown.image-select > .dropdown-menu {
  min-height: max-content !important;
}

.dropdown.image-select > .dropdown-menu > .inner {
  min-height: max-content !important;
}

.sw-dots .swiper-pagination-bullet {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.sw-dots .swiper-pagination-bullet:before {
  background-color: var(--theme-text);
}

.sw-dots.style-2 span.swiper-pagination-bullet-active {
  border: 2px solid var(--theme-text);
}

.sw-dots.style-2 span.swiper-pagination-bullet-active::before {
  background-color: var(--theme-text);
}

.sw-dots.rectangle-pagination span {
  background-color: rgb(0, 0, 0);
}

.sw-dots.rectangle-pagination span.swiper-pagination-bullet-active {
  background-color: rgb(0, 0, 0);
}

.sw-dots.line-white-pagination span {
  width: 6px;
  height: 6px;
}

.sw-dots.line-white-pagination span.swiper-pagination-bullet-active {
  width: 22px;
}

.nav-sw {
  color: var(--theme-text);
  border: 1px solid var(--theme-text);
  background-color: var(--white);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.nav-sw:hover:not(.swiper-button-disabled) {
  background-color: var(--theme-text);
}

.nav-sw.line-white:hover:not(.swiper-button-disabled) {
  color: var(--theme-text);
}

.hover-sw-nav .nav-sw {
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.hover-sw-nav .nav-sw:hover:not(.swiper-button-disabled) {
  background-color: var(--theme-text);
}

.hover-sw-nav.view-defaul .nav-sw,
.hover-sw-nav:hover .nav-sw {
  visibility: visible;
}

.button-style-arrow {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.button-style-arrow::after {
  color: var(--theme-text);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.navigation-sw-dot span {
  background-color: var(--theme-text);
}

.dots-default .swiper-pagination-bullet {
  background-color: var(--theme-text);
}

.modalDemo .modal-content {
  max-height: calc(100vh - 16px);
}

.tf-product-modal .modal-dialog .modal-content .header span {
  color: var(--theme-text);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.tf-product-modal .tf-social-icon .box-icon.social-snapchat {
  background: var(--snapchat-cl);
}

.tf-product-modal .tf-social-icon .box-icon.social-whatsapp {
  background: var(--whatsapp-cl);
}

#find_size .modal-dialog {
  max-width: min(900px, 90vw);
}

#find_size .tf-rte {
  overflow-y: auto;
}

#find_size .tf-rte::-webkit-scrollbar {
  width: 2px;
}

#find_size .tf-sizeguide-table {
  border: 1px solid var(--line);
  border-radius: 5px;
  width: 100%;
}

#find_size .tf-sizeguide-table th {
  border: 1px solid var(--line);
  padding: 10px;
  font-weight: 600;
  line-height: 20px;
}

#find_size .tf-sizeguide-table td {
  border: 1px solid var(--line);
  border-width: 0 1px 1px 0;
  padding: 10px;
  line-height: 20px;
}

#find_size .tf-page-size-chart-content {
  margin-top: 15px;
  display: grid;
  gap: 10px;
  grid-template-columns: 8fr 4fr;
}

#find_size p {
  color: var(--text-3);
}

#compare_color .modal-dialog {
  max-width: min(1400px, 90vw);
  min-width: min(1400px, 90vw);
  margin-top: 8px;
  margin-bottom: 8px;
  height: calc(100vh - 16px);
  max-height: calc(100vh - 16px);
}

#compare_color .modal-dialog .modal-content {
  padding: 30px 28px 33px;
}

#compare_color .modal-dialog .header {
  justify-content: center;
  margin-bottom: 32px;
}

#compare_color .modal-dialog .header .icon-close-popup {
  position: absolute;
}

#compare_color .tf-compare-color-wrapp {
  overflow: auto;
  position: relative;
}

#compare_color .tf-compare-color-wrapp::-webkit-scrollbar {
  height: 3px;
}

#compare_color .tf-compare-color-grid {
  display: inline-flex;
  text-align: center;
  border: 1px solid var(--line);
}

#compare_color .tf-compare-color-grid > input {
  position: absolute !important;
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  clip: rect(0 0 0 0);
  word-wrap: normal !important;
}

#compare_color .tf-compare-color-grid > input:checked + .tf-compare-color-item {
  display: none !important;
}

.tf-compare-color-item .tf-compare-color-top label {
  color: var(--theme-text);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#delivery_return .tf-product-popup-delivery p a:hover {
  color: var(--theme-text);
}

#quick_add .modal-dialog {
  max-width: min(466px, 90vw);
}

#quick_add .modal-content {
  margin: 8px;
  padding: 30px 0px 30px;
}

#quick_add .modal-content > .wrap {
  overflow-y: auto;
  padding: 0px 20px;
}

#quick_add .modal-content > .wrap::-webkit-scrollbar {
  width: 2px;
}

#quick_add .modal-content .icon-close-popup {
  top: 0px;
  right: 20px;
}

#quick_add .tf-product-info-item {
  margin-bottom: 15px;
  display: flex;
  gap: 18px;
  align-items: center;
}

#quick_add .tf-product-info-item .image img {
  width: 70px;
  height: 98px;
}

#quick_add .tf-product-info-item .content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

#quick_add .tf-product-info-item .content a {
  font-size: 20px;
  line-height: 24px;
}

#quick_add .tf-product-info-item .content .price {
  font-size: 20px;
  line-height: 20px;
}

#quick_add .payment-more-option {
  text-decoration: none;
}

#quick_add .payment-more-option:hover {
  text-decoration: underline;
}

#quick_view .modal-dialog {
  max-width: min(1146px, 90vw);
}

#quick_view .modal-dialog .modal-content {
  margin: 8px;
}

#quick_view .modal-dialog .modal-content .icon-close-popup {
  top: 20px;
  right: 20px;
  font-size: 16px;
  z-index: 5;
}

#quick_view .modal-dialog .modal-content > .wrap {
  display: flex;
}

#quick_view .tf-product-media-wrap {
  flex: 0 0 auto;
  max-width: 100%;
  width: min(50%, 68vh) !important;
}

#quick_view .tf-product-info-wrap {
  flex: 0 0 auto;
  max-width: 100%;
  flex-grow: 1;
}

#quick_view .tf-product-info-wrap .tf-product-info-list {
  position: absolute;
  padding: 50px 40px;
  overflow-y: auto;
}

#quick_view .tf-product-info-wrap .tf-product-info-list::-webkit-scrollbar {
  width: 0px;
}

#quick_view .tf-product-info-wrap .tf-product-info-list .tf-product-info-title {
  margin-bottom: 20px;
}

#quick_view
  .tf-product-info-wrap
  .tf-product-info-list
  .tf-product-info-badges {
  margin-bottom: 18px;
}

#quick_view
  .tf-product-info-wrap
  .tf-product-info-list
  .tf-product-description {
  color: var(--text-3);
}

.canvas-filter .filter-icon {
  color: var(--theme-text);
}

.modal-shopping-cart .tf-mini-cart-threshold .tf-progress-bar span::after {
  position: absolute;
  font-family: "icomoon";
  content: "\e90e";
  top: 50%;
  transform: translate(50%, -50%);
  width: 36px;
  height: 26px;
  border: 1px solid rgb(235, 0, 27);
  color: rgb(235, 0, 27);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
}

.modal-shopping-cart
  .tf-minicart-recommendations-item
  .tf-minicart-recommendations-item-quickview
  .quickview {
  background-color: var(--theme-text);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.modal-shopping-cart .tf-mini-cart-tool .tf-mini-cart-tool-btn {
  color: var(--theme-text);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.tf-mini-cart-tool-openable > .overplay {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.tf-mini-cart-tool-openable
  .tf-mini-cart-tool-content
  .tf-mini-cart-tool-text
  .icon {
  border: 1px solid var(--theme-text);
  color: var(--theme-text);
}

.tf-mini-cart-tool-openable.add-gift .tf-mini-cart-tool-text .icon {
  color: var(--theme-text);
}

.canvas-search .tf-search-head .title {
  padding-top: 20px;
  color: var(--theme-text);
}

.tf-mini-search-frm input {
  color: #000;
}

.tf-mini-search-frm input::placeholder {
  color: #000;
}

.form-sign-in .tf-login-form form .bottom .btn-link {
  color: var(--theme-text);
}

.modal-newleter .modal-content .modal-top .icon {
  color: var(--theme-text);
}

.box-icon {
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.tf-social-icon .social-snapchat:hover {
  background: var(--snapchat-cl);
  color: var(--white);
}

.tf-social-icon .social-whatsapp:hover {
  background: var(--whatsapp-cl);
  color: var(--white);
}

.tf-social-icon .social-line {
  border: 1px solid var(--theme-text);
}

.tf-social-icon .social-line.social-snapchat:hover {
  background: transparent;
  color: var(--snapchat-cl);
  border-color: var(--snapchat-cl);
}

.tf-social-icon .social-line.social-whatsapp:hover {
  background: transparent;
  color: var(--whatsapp-cl);
  border-color: var(--whatsapp-cl);
}

.tf-social-icon.style-default li .social-snapchat:hover {
  color: var(--snapchat-cl);
}

.tf-social-icon.style-default li .social-whatsapp:hover {
  color: var(--whatsapp-cl);
}

.error {
  color: var(--red_1);
  font-weight: normal;
}

.tf-icon-box.style-border-line .icon i {
  color: var(--theme-text);
}

.tf-icon-box.style-row .icon i {
  color: var(--theme-text);
}

.hover-img2 .img-style2 .img2 {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.hover-img3 .img-style3 img {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.hover-img3:hover img {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.pagi2 .swiper-pagination2 .img-style::before,
.swiper-button-next2 .img-style::before,
.swiper-button-prev2 .img-style::before,
.hv-one .img-style::before {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.collection-item .collection-content {
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
}

.collection-item .collection-title {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.collection-item .collection-title:hover {
  background-color: var(--theme-text);
}

.collection-item-v3 .collection-image .box-icon {
  color: var(--theme-text);
}

.collection-item-v3 .collection-image .box-icon:hover {
  background-color: var(--theme-text);
}

.collection-item-v5 .collection-content .collection-title:hover {
  background-color: var(--theme-text);
}

.collection-item-circle .sale-off {
  background-color: var(--theme-text);
}

.collection-item-circle.has-bg {
  padding: 20px 0;
}

.tf-shopall .tf-shopall-icon {
  border: 1px solid var(--theme-text);
}

.slider-collection .collection-item .collection-title {
  height: 50px;
  line-height: 50px;
  color: var(--theme-text);
  display: flex;
}

.slider-collection .collection-item .collection-title:hover {
  background-color: var(--theme-text);
}

.collection-title-v2 {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.collection-title-v2:hover {
  background-color: var(--theme-text);
}

.discovery-new-item {
  border: 1px solid var(--theme-text);
}

.discovery-new-item a {
  border: 1px solid var(--theme-text);
  color: var(--theme-text);
}

.discovery-new-item a:hover {
  background-color: var(--theme-text);
}

.banner-gr-item.style-content-absolute .content p {
  color: var(--theme-text);
}

.collection-line-upper .collection-inner {
  border: 1px solid var(--theme-text);
}

.thumbs-slider {
  display: flex;
  gap: 10px;
}

.tf-product-media-thumbs .swiper-slide .item::after {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.tf-product-media-thumbs .swiper-slide.swiper-slide-thumb-active .item::after {
  border: 2px solid var(--theme-text);
}

.tf-product-media-main {
  width: 86%;
}

.tf-product-media-main .item {
  width: 100%;
  height: 100%;
  max-height: 846px;
}

.tf-product-media-main .item img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tf-product-info-badges .badges {
  border: 1px solid var(--theme-text);
}

.tf-product-info-price .price {
  color: var(--theme-text);
}

.tf-product-info-price .compare-at-price {
  font-size: 15px;
  line-height: 15px;
}

.tf-product-info-price .compare-price {
  color: rgba(0, 0, 0, 0.55);
  font-size: 11px;
  line-height: 11px;
  text-decoration: line-through;
}

.tf-product-info-price .badges-on-sale {
  border-radius: 25px;
  line-height: 25px;
}

.tf-product-info-liveview .liveview-count {
  background-color: var(--theme-text);
}

.tf-product-info-countdown .countdown-wrap .countdown-title i {
  color: var(--theme-text);
}

.tf-product-info-trust-seal .tf-product-trust-mess i {
  color: var(--theme-text);
}

.find-size {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.variant-picker-item .variant-picker-values input:checked + label {
  border-color: var(--theme-text);
  box-shadow: 0 0.4rem 0.4rem rgba(0, 0, 0, 0.1019607843);
}

.variant-picker-item .variant-picker-values input:checked + label.style-text {
  background-color: var(--theme-text);
}

.variant-picker-item .variant-picker-values input:checked + label.style-text p {
  color: var(--white);
}

.variant-picker-item .variant-picker-values input:checked + label.style-image {
  border-color: var(--theme-text);
}

.variant-picker-item .variant-picker-values label {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.variant-picker-item .variant-picker-values label:hover {
  border-color: var(--theme-text);
}

.variant-picker-item .variant-picker-values label.style-text {
  height: auto;
}

.variant-picker-item .variant-picker-values label.style-text:hover {
  border-color: var(--theme-text);
}

.variant-picker-item .variant-picker-values label.style-image p {
  color: var(--theme-text);
}

.variant-picker-item .variant-picker-values label.image-rounded {
  width: 40px;
  height: 40px;
}

.tf-product-bundle-wrap > .title {
  color: var(--theme-text);
}

.tf-product-bundle-infos .tf-product-bundle-price .compare-at-price {
  color: var(--theme-text);
}

.tf-product-bundle-infos .tf-product-bundle-price .price {
  color: var(--theme-text);
}

.tf-product-bundle-total-submit .text {
  color: var(--theme-text);
}

.tf-product-fbt-wrap > .title {
  color: var(--theme-text);
}

.tf-progress-bar span {
  background-color: var(--primary);
}

.tf-progress-bar .progress-car {
  color: var(--primary);
  border: 1px solid var(--primary);
}

.tf-product-notify-stock {
  border: 1px solid var(--theme-text);
}

.tf-product-notify-stock .tf-product-notify-stock-heading {
  color: var(--theme-text);
}

.tf-product-notify-stock .tf-product-notify-stock-heading div {
  color: var(--theme-text);
}

.tf-quick-order-list-total .tf-total-price a:hover {
  color: var(--theme-text);
}

.wrap-btn-viewer.style-video .icon {
  border: 2px solid var(--theme-text);
}

.tf-product-btn-wishlist {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.tf-product-btn-wishlist .icon,
.tf-product-btn-wishlist i {
  color: var(--theme-text);
}

.tf-product-btn-wishlist:hover {
  border-color: var(--theme-text);
}
.wg-quantity {
  width: 120px !important;
  height: 35px !important;
}
.wg-quantity input {
  width: 70px !important;
  height: 35px !important;
  border: none;
  background: transparent;
  color: var(--theme-text);
}

.wg-quantity .btn-quantity {
  height: 35px !important;
  color: var(--theme-text);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.tf-product-des-demo .left .icon {
  border: 1px solid var(--theme-text);
}

.card-product {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.card-product .card-product-wrapper .sold-out::after {
  background-color: var(--theme-text);
}

.card-product .card-product-wrapper .on-sale-wrap .out-stock {
  background-color: #686868 !important;
  color: var(--white) !important;
}

.card-product .btn-quick-add {
  background-color: var(--theme-text);
}

.card-product .card-product-info .title {
  height: 40px;
}

.card-product .card-product-info .price {
  font-size: 13px;
  line-height: 13px;
}

.card-product.style-6 .btn-quick-add {
  color: var(--theme-text);
  border: 1px solid var(--theme-text);
}

.card-product.style-6 .btn-quick-add:hover {
  background-color: var(--theme-text);
}

.card-product.style-8 .card-product-info .tf-btn:hover {
  background-color: var(--theme-text);
}

.card-product.style-8 .progress {
  --bs-progress-bar-bg: #db1215;
  --bs-progress-bg: rgb(236, 236, 236);
}

.card-product.style-8 .pr-stock-status {
  margin-top: 5px;
}

.card-product.list-layout .size-list span {
  color: var(--theme-text);
}

.card-product.style-skincare .tf-size-list .tf-size-list-item:hover {
  border-color: var(--theme-text);
}

.card-product.style-line-hover .card-product-wrapper {
  border: 1px solid var(--theme-text);
}

.list-color-product .list-color-item {
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.list-color-product .list-color-item .swatch-value {
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.list-color-product .list-color-item.active,
.list-color-product .list-color-item:hover {
  border-color: var(--theme-text);
}

.blue-white {
  background: conic-gradient(#ffffff 0deg 180deg, #1555d4 180deg 360deg);
}

.white-striped {
  background: conic-gradient(#ffffff 0deg 180deg, #000000 180deg 360deg);
}

.tooltip {
  background-color: var(--theme-text);
}

.tooltip::before {
  background: var(--theme-text);
}

.size-list.style-2 span {
  color: var(--theme-text);
}

.size-list.style-3 span {
  color: var(--theme-text);
}

.list-product-btn .box-icon:hover {
  background-color: var(--theme-text) !important;
}

.list-product-btn.style-black .box-icon {
  background-color: var(--theme-text) !important;
}

.list-product-btn.style-black .box-icon:hover {
  color: var(--theme-text);
}

[data-grid="grid-6"] .card-product .countdown-box {
  padding: 5px;
}

[data-grid="grid-6"] .card-product .countdown-box .countdown__item {
  font-size: 12px;
  line-height: 19.2px;
}

.wrapper-shop .card-product {
  margin-bottom: 15px;
}

.blog-article-item .article-label a {
  color: var(--theme-text);
}

.blog-article-item .article-title a {
  color: var(--theme-text);
}

.wg-pagination .active .pagination-item {
  background-color: var(--theme-text);
}

.tf-section-sidebar .sidebar-title {
  color: var(--theme-text);
}

.tf-section-sidebar .sidebar-categories ul li a {
  color: var(--theme-text);
}

.blog-detail .blog-detail-main .blog-detail-main-heading .title {
  color: var(--theme-text);
}

.blog-detail .blog-detail-main .bot .tags-lists a {
  border-color: var(--theme-text);
}

.blog-detail .blog-detail-main .tf-article-navigation .item .icon {
  border: 1px solid var(--theme-text);
}

.blog-detail .blog-detail-main .tf-article-navigation .item .icon:hover {
  background-color: var(--theme-text);
  border-color: var(--theme-text);
}

blockquote {
  border-left: 2px solid var(--theme-text);
}

.testimonial-item .product .content-wrap {
  padding-right: 20px;
}

.testimonial-item .product .content-wrap .price {
  color: var(--theme-text);
}

.testimonial-item .product > a {
  border: 1px solid var(--theme-text);
}

.testimonial-item .product > a:hover {
  background-color: var(--theme-text);
}

.testimonial-item.style-row .product .rating {
  margin-bottom: 5px;
}

.testimonial-item.style-row .product .rating i {
  color: var(--theme-text);
  font-size: 12px;
}

.testimonial-item.style-box .author .metas {
  background-color: var(--theme-text);
}

.testimonial-item.style-box-1 .text {
  color: var(--theme-text);
}

.rating.color-black i {
  color: var(--theme-text);
}

.lookbook-item .tf-pin-btn span {
  background-color: var(--theme-text);
}

.lookbook-product .content-wrap .price {
  color: var(--theme-text);
}

.lookbook-product > a {
  color: var(--theme-text);
}

.lookbook-product > a:hover {
  background-color: var(--theme-text);
}

.tf-featured .content .sub-title {
  color: var(--theme-text);
}

.tf-countdown .countdown__timer .countdown__item .countdown__value {
  color: var(--theme-text);
}

.tf-countdown .countdown__timer .countdown__item .countdown__label {
  color: var(--theme-text);
}

.tf-countdown-v2 .countdown__item {
  border: 1px solid var(--theme-text);
}

.flat-accordion2 .flat-toggle2 .toggle-title,
.flat-accordion2 .flat-toggle1 .toggle-title,
.flat-accordion2 .flat-toggle .toggle-title,
.flat-accordion1 .flat-toggle2 .toggle-title,
.flat-accordion1 .flat-toggle1 .toggle-title,
.flat-accordion1 .flat-toggle .toggle-title,
.flat-accordion .flat-toggle2 .toggle-title,
.flat-accordion .flat-toggle1 .toggle-title,
.flat-accordion .flat-toggle .toggle-title {
  background-color: #f5f5f5;
  font-size: 18px;
  font-weight: 600;
  line-height: 30px;
  color: var(--theme-text);
  padding: 14px 20px;
  cursor: pointer;
  position: relative;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.flat-accordion2 .flat-toggle2 .toggle-title:hover,
.flat-accordion2 .flat-toggle1 .toggle-title:hover,
.flat-accordion2 .flat-toggle .toggle-title:hover,
.flat-accordion1 .flat-toggle2 .toggle-title:hover,
.flat-accordion1 .flat-toggle1 .toggle-title:hover,
.flat-accordion1 .flat-toggle .toggle-title:hover,
.flat-accordion .flat-toggle2 .toggle-title:hover,
.flat-accordion .flat-toggle1 .toggle-title:hover,
.flat-accordion .flat-toggle .toggle-title:hover {
  color: var(--primary);
}

.flat-accordion2 .flat-toggle2 .toggle-content,
.flat-accordion2 .flat-toggle1 .toggle-content,
.flat-accordion2 .flat-toggle .toggle-content,
.flat-accordion1 .flat-toggle2 .toggle-content,
.flat-accordion1 .flat-toggle1 .toggle-content,
.flat-accordion1 .flat-toggle .toggle-content,
.flat-accordion .flat-toggle2 .toggle-content,
.flat-accordion .flat-toggle1 .toggle-content,
.flat-accordion .flat-toggle .toggle-content {
  display: none;
  padding: 35px;
  border: 1px solid var(--line);
}

.flat-accordion2.has-btns .flat-toggle .toggle-title::after,
.flat-accordion1.has-btns .flat-toggle .toggle-title::after,
.flat-accordion.has-btns .flat-toggle .toggle-title::after {
  position: absolute;
  content: "";
  width: 12px;
  height: 2px;
  background-color: #545454;
  right: 0px;
  border-radius: 2px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.flat-accordion2.has-btns .flat-toggle .toggle-title::before,
.flat-accordion1.has-btns .flat-toggle .toggle-title::before,
.flat-accordion.has-btns .flat-toggle .toggle-title::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 12px;
  background-color: #545454;
  right: 5px;
  border-radius: 2px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 1;
}

.flat-accordion2.has-btns .flat-toggle .toggle-title.active::before,
.flat-accordion1.has-btns .flat-toggle .toggle-title.active::before,
.flat-accordion.has-btns .flat-toggle .toggle-title.active::before {
  transform: translateY(-50%) rotate(45deg);
}

.flat-accordion2.has-btns .flat-toggle.style-2:not(:last-child),
.flat-accordion1.has-btns .flat-toggle.style-2:not(:last-child),
.flat-accordion.has-btns .flat-toggle.style-2:not(:last-child) {
  margin-bottom: 15px;
}

.flat-accordion2.has-btns .flat-toggle.style-2 .toggle-title::after,
.flat-accordion1.has-btns .flat-toggle.style-2 .toggle-title::after,
.flat-accordion.has-btns .flat-toggle.style-2 .toggle-title::after {
  right: 15px;
}

.flat-accordion2.has-btns .flat-toggle.style-2 .toggle-title::before,
.flat-accordion1.has-btns .flat-toggle.style-2 .toggle-title::before,
.flat-accordion.has-btns .flat-toggle.style-2 .toggle-title::before {
  right: 20px;
}

.flat-accordion2.has-btns-arrow .flat-toggle .toggle-title::after,
.flat-accordion1.has-btns-arrow .flat-toggle .toggle-title::after,
.flat-accordion.has-btns-arrow .flat-toggle .toggle-title::after {
  display: none;
}

.flat-accordion2.has-btns-arrow .flat-toggle .toggle-title::before,
.flat-accordion1.has-btns-arrow .flat-toggle .toggle-title::before,
.flat-accordion.has-btns-arrow .flat-toggle .toggle-title::before {
  position: absolute;
  content: "\e904";
  font-family: "icomoon";
  font-size: 8px;
  color: var(--theme-text);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.flat-accordion2.has-btns-arrow .flat-toggle .toggle-title.active::before,
.flat-accordion1.has-btns-arrow .flat-toggle .toggle-title.active::before,
.flat-accordion.has-btns-arrow .flat-toggle .toggle-title.active::before {
  transform: rotate(180deg);
}

.flat-accordion2.style-default .toggle-title,
.flat-accordion1.style-default .toggle-title,
.flat-accordion.style-default .toggle-title {
  background-color: transparent;
  font-size: 16px;
  font-weight: 500;
  line-height: 19.2px;
  color: var(--theme-text);
  padding: 15px 0px;
  padding-right: 15px;
  border-bottom: 1px solid var(--line);
}

.flat-accordion2.style-default .toggle-content,
.flat-accordion1.style-default .toggle-content,
.flat-accordion.style-default .toggle-content {
  padding: 24px 0 22px;
}

.tf-zoom-main {
  position: sticky;
  top: 30px;
  z-index: 50;
}

.tf-zoom-main .drift-zoom-pane {
  height: 520px;
  max-width: 520px;
  width: 100%;
  background: #fff;
  -webkit-transform: translate3d(0, 0, 0);
  box-shadow: 0 1px 5px rgba(127, 127, 127, 0.0196078431),
    0 5px 18px rgba(127, 127, 127, 0.2);
  z-index: 3;
}

.section-image-zoom .other-image-zoom {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.tf-control-layout .tf-view-layout-switch .item {
  color: var(--theme-text);
}

.tf-control-layout .tf-view-layout-switch.active .item {
  opacity: 1;
}

.tf-pagination-list .pagination-link {
  color: var(--theme-text);
}

.tf-pagination-list .active .pagination-link {
  background-color: var(--theme-text);
  border-color: var(--theme-text);
}

.widget-facet .cate-item a {
  color: var(--theme-text);
}

.widget-facet .list-item .label {
  color: var(--theme-text);
}

.widget-facet .current-scrollbar::-webkit-scrollbar-thumb {
  background: var(--theme-text);
}

.widget-price .caption-price div {
  width: 68px;
  display: flex;
  justify-content: space-between;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 5px;
}

.btn-sidebar-mobile {
  top: 26%;
}

.btn-sidebar-mobile button i {
  color: var(--theme-text);
}

.btn-sidebar-style2 {
  display: none;
  position: fixed;
  top: 30%;
  z-index: 100;
}

.btn-sidebar-style2 button {
  width: 38px;
  height: 38px;
  display: flex;
  border: 1px solid var(--line-2);
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  justify-content: center;
  align-items: center;
  background-color: var(--white);
}

.btn-sidebar-style2 button .icon {
  font-size: 17px;
  color: var(--theme-text);
}

.btn-sidebar-style2.right {
  left: auto;
}

.gallery-item .box-icon:hover {
  background-color: var(--theme-text);
}

.tf-img-with-text.style-5 {
  background-color: #f5f6f0;
}

.tf-content-wrap .count-down .description {
  margin-bottom: 20px;
  margin-top: 16px;
}

.tf-content-wrap .count-down .countdown__item {
  min-width: 60px;
  min-height: 50px;
  padding: 4px 8px;
  border-color: var(--white);
  background-color: var(--white);
}

.tf-content-wrap .count-down .countdown__item .countdown__value {
  font-size: 14px;
  line-height: 22.4px;
}

.tf-content-wrap .count-down .countdown__item .countdown__label {
  font-weight: 700;
  font-size: 10px;
  line-height: 16px;
}

.widget-card-store.type-1 .store-item-info {
  background-color: var(--theme-text);
}

.flat-thumbs-testimonial-v2 .box-left .rating i {
  color: var(--white);
}

.flat-iconbox-v2 .tf-icon-box .icon i {
  color: var(--theme-text);
}

.flat-iconbox-v3 .tf-icon-box .icon {
  border: 1px solid var(--theme-text);
}

.flat-iconbox-v3 .tf-icon-box .icon i {
  color: var(--theme-text);
}

.scroll-process .value-process {
  background-color: var(--theme-text);
}

.icv__circle {
  background-color: var(--theme-text);
}

.tf-breadcrumb-wrap .tf-breadcrumb-list {
  justify-content: center;
}

.tf-brands-filter .tf-btns-filter {
  color: var(--theme-text);
}

.tf-brands-filter .tf-btns-filter.is--active,
.tf-brands-filter .tf-btns-filter:hover {
  background-color: var(--theme-text);
}

.tf-accordion-link-list .tf-link-item a:hover {
  border-color: var(--theme-text);
}

.tf-store-item.active {
  background-color: var(--theme-text);
}

.tf-timeline-time {
  background-color: var(--theme-text);
}

.tf-compare-row:nth-child(2n + 2) > div {
  background-color: rgba(0, 0, 0, 0.05);
}

.tf-main-area-page h4 {
  color: var(--theme-text);
}

.progress-wrap {
  position: fixed;
  bottom: 90px;
  right: 40px;
  height: 40px;
  width: 40px;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  z-index: 100;
  visibility: hidden;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 400ms linear;
  -o-transition: all 400ms linear;
  transition: all 400ms linear;
  background: var(--white);
  border: 1.2px solid rgba(134, 134, 134, 0.12);
}

.progress-wrap::after {
  position: absolute;
  content: "\e907";
  font-family: "icomoon";
  text-align: center;
  line-height: 40px;
  font-size: 8px;
  color: #000;
  height: 40px;
  width: 40px;
  cursor: pointer;
  z-index: 1;
  -webkit-transition: all 400ms linear;
  -o-transition: all 400ms linear;
  transition: all 400ms linear;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.progress-wrap svg path {
  fill: none;
}

.progress-wrap svg.progress-circle path {
  box-sizing: border-box;
  stroke: var(--theme-text);
  stroke-width: 1.2;
  transition-property: all;
  transition-timing-function: linear;
  transition-duration: 0.4s;
}

.tf-table-page-cart th {
  color: var(--theme-text);
}
.tf-table-page-cart td:last-child {
  width: auto !important;
}
.tf-page-cart-checkout .tf-cart-tax a:hover {
  color: var(--theme-text);
}

.form-checkout label::after {
  content: none !important;
}

.form-checkout .tf-select {
  color: var(--theme-text);
}

.form-checkout input,
.form-checkout textarea {
  color: var(--theme-text);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.form-checkout input:focus,
.form-checkout textarea:focus {
  border-color: var(--theme-text);
}
.widget-wrap-checkout .wd-check-payment .fieldset-radio label {
  margin: 5px 0;
}
.widget-wrap-checkout .wd-check-payment input:checked ~ label {
  color: var(--theme-text);
}

.hidden {
  display: none !important;
}

.success {
  max-width: 100%;
  text-align: center;
  padding: 15px 30px;
  background: #fbfbfc;
  border-radius: 10px;
  box-shadow: 0px 0px 10px #d5d5d5;
}

.addon-price {
  color: var(--primary);
}

.width-fit {
  width: fit-content !important;
}

.loadIcon {
  display: none;
  width: 96%;
  position: absolute;
  z-index: 9;
  background: var(--primary-color) !important;
}

.loade {
  margin: 10px auto;
  border: 3px solid #ffffff;
  border-radius: 50%;
  border-top: 3px solid #ffcd00;
  width: 25px;
  height: 25px;
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
}

.success h2 {
  font-size: 30px !important;
  line-height: 39.6px !important;
}

.success p {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}

.footer {
  background: var(--theme-footer-color) !important;
}

.footer ul.footer-menu-list li a:hover,
.addon-price {
  color: var(--theme-primary) !important;
}

.count-box,
.toolbar-count {
  background-color: var(--theme-primary) !important;
}

.bg_custom {
  background: var(--theme-footer-color) !important;
}

.content-left {
  background: none !important;
}

.flat-title p {
  text-align: center !important;
}

.currency-header-5 {
  gap: 10px !important;
}

.currency-header-5
  .dropdown.bootstrap-select.image-select.type-currencies
  > button
  .filter-option
  .filter-option-inner {
  width: auto !important;
}

.arrow-header-5 {
  color: var(--theme-header-text) !important;
  border: 1px solid var(--theme-header-text) !important;
  background: none !important;
}

.btn-5 {
  justify-content: center;
  padding: 9px 14px !important;
  width: 100% !important;
}
.collection-line-upper .pad-0 {
  left: 0px;
  right: 0px;
  bottom: 0px;
}
.collection-line-upper .strip {
  display: grid;
  border-radius: 0px;
}
.no-border-radius {
  border-radius: 0% !important;
}
.account-btn {
  width: 93%;
  text-align: center;
  display: inline-block !important;
}
.icon-dots::before {
  content: "\2026";
  font-size: 35px;
  margin-top: -24px;
  display: ruby-text;
  font-weight: 900;
}

@media (min-width: 768px) {
  .tf-grid-layout.md-col-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .wrap-iconbox.lg .tf-icon-box {
    max-width: 450px;
    margin: auto;
    width: 100%;
  }

  .masonry-layout {
    grid-template-areas: "item1 item2 item3" "item1 item4 item3";
  }

  .widget-tab-4 .nav-tab-item .nav-tab-link.active {
    border-color: var(--theme-text);
  }

  .collection-item-v4.style-2 .collection-content {
    text-align: left;
  }
  .banner-collection-men-wrap .img-wrap {
    height: 780px;
  }

  .banner-collection-men-wrap .card-box {
    padding: 40px 20px;
    max-width: 585px;
  }

  .banner-collection-men-wrap .card-box .heading {
    font-size: 40px;
    line-height: 48px;
  }

  .banner-collection-men-wrap .card-box .text {
    margin-top: 25px;
  }

  .banner-collection-men-wrap .card-box .tf-btn {
    margin-top: 35px;
  }

  .tf-content-wrap .count-down .countdown__item {
    min-width: 60px;
    min-height: 70px;
    padding: 6px 10px;
  }

  .tf-content-wrap .count-down .countdown__item .countdown__value {
    font-size: 30px;
    line-height: 36px;
  }
}

@media (min-width: 1025px) {
  .banner-collection-men-wrap .card-box .heading {
    font-size: 52px;
    line-height: 62.4px;
  }
}

@media (min-width: 1150px) {
  .collection-item-circle .tf-shopall-icon .icon {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }

  .card-product .btn-quick-add:hover {
    color: var(--theme-text);
  }

  .tf-shop-control {
    margin-bottom: 38px;
  }

  .tf-btn-filter:hover {
    border-color: var(--theme-text);
  }

  .tf-marquee {
    padding-top: 31px;
    padding-bottom: 31px;
  }

  .tf-content-wrap .heading.fs-42 {
    line-height: 50%;
  }

  .lg_fs_16 {
    font-size: 16px;
  }

  .lg_fs_17 {
    font-size: 17px;
  }

  .tf-page-cart-wrap {
    grid-template: repeat(2, auto) / 66% 1fr;
  }

  .tf-page-cart-wrap.layout-2 {
    grid-template: repeat(2, auto) / 60% 1fr;
  }

  .banner-collection-men-wrap .card-box {
    padding: 80px 44px;
    max-width: 635px;
  }

  .banner-parallax .card-box {
    max-width: 596px;
  }
  .card-product.style-9 .card-product-info .title {
    font-weight: 500;
  }
  .card-product.style-9 .card-product-info .price {
    font-size: 16px;
  }
}

@media (min-width: 1441px) {
  .slider-home-decor .content-left .box-content {
    width: max-content;
  }

  .card-product.list-layout .countdown-box,
  .card-product .countdown-box {
    bottom: 25px;
  }

  .card-product .card-product-wrapper .list-product-btn {
    bottom: 48px;
  }

  .card-product .card-product-wrapper .list-product-btn.absolute-2 {
    bottom: 25px;
  }

  .card-product .card-product-wrapper .list-product-btn.absolute-3 {
    bottom: 57px;
  }

  .list-product-btn.column-left {
    gap: 8px;
  }

  .list-product-btn.column-right {
    gap: 8px;
  }

  .flat-lookbook-v2 .col-left {
    width: calc(58.3333333333% - 15px);
  }

  .flat-lookbook-v2 .col-right {
    width: calc(41.6666666667% - 15px);
    margin-top: 63px;
  }

  .flat-title-lookbook {
    margin-bottom: 60px;
  }

  .widget-tab-4 {
    padding: 66px 79px 78px 56px;
  }

  .widget-tab-4 .nav-tab-item .nav-tab-link {
    padding: 20px 0px;
  }

  .widget-tab-4 .nav-tab-item .nav-tab-link .text {
    font-size: 30px;
    line-height: 36px;
  }

  .widget-tab-4 .nav-tab-item .nav-tab-link:hover .icon,
  .widget-tab-4 .nav-tab-item .nav-tab-link:hover span {
    color: var(--primary);
  }

  .header-default .box-nav-ul {
    gap: 30px;
  }

  .tf-flash-sale {
    padding: 60px 40px;
  }

  .tf-flash-sale .heading-flash-sale {
    margin-left: 55px;
    padding: 4px 30px;
    gap: 20px;
  }
}

@media only screen and (max-width: 1149px) {
  #quick_view .tf-product-media-wrap {
    width: 50% !important;
    padding-right: 15px;
  }

  #quick_view .tf-product-info-wrap .tf-product-info-list {
    padding: 20px 30px 20px 15px;
  }

  #quick_view .modal-content {
    margin: 0 !important;
  }

  #quick_view .modal-content .tf-product-info-title a {
    font-size: 26px !important;
  }

  #compare_color .modal-dialog {
    max-width: min(900px, 90vw);
    min-width: min(900px, 90vw);
  }

  #compare_color .modal-dialog .modal-content {
    padding: 20px;
  }

  .thumbs-slider {
    flex-direction: column !important;
  }

  .thumbs-slider > div {
    width: 100%;
  }

  .thumbs-slider .tf-product-media-thumbs {
    order: 1;
  }

  .thumbs-slider .tf-product-media-thumbs .swiper-slide {
    width: auto;
    height: 107px;
  }

  .tf-control-layout .sw-layout-4,
  .tf-control-layout .sw-layout-5,
  .tf-control-layout .sw-layout-6 {
    display: none;
  }

  [data-grid="grid-4"],
  [data-grid="grid-5"],
  [data-grid="grid-6"] {
    grid-template-columns: repeat(3, 1fr);
  }

  .masonry-layout {
    gap: 15px;
  }

  #quick_add .modal-content {
    padding: 15px 0px 15px;
  }

  #quick_add .modal-content > .wrap {
    padding: 0px 15px;
  }

  #quick_add .modal-content .icon-close-popup {
    right: 15px;
  }

  #quick_add .tf-btn {
    font-size: 14px !important;
  }

  #quick_view .tf-btn {
    font-size: 14px !important;
  }
}

@media only screen and (max-width: 991px) {
  .tf-slideshow .wrap-pagination {
    bottom: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .tf-product-btn-wishlist:hover .tooltip,
  .list-color-product .list-color-item:hover .tooltip {
    display: none;
  }

  #quick_view .wrap {
    flex-direction: column;
    overflow-y: auto;
  }

  #quick_view .wrap .tf-product-media-wrap {
    width: 100% !important;
    padding-right: 0 !important;
  }

  #quick_view .wrap .tf-product-info-wrap .tf-product-info-list {
    overflow-y: unset;
    position: unset;
    padding: 20px 15px;
  }

  .modal-dialog-centered {
    display: inline-block !important;
    margin-top: 30% !important;
  }

  #find_size .modal-dialog {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }

  #find_size .tf-page-size-chart-content {
    grid-template-columns: unset;
  }

  #find_size .tf-page-size-chart-content > div:last-child {
    text-align: center;
  }

  [qol-data-title]:before {
    color: var(--theme-text);
  }

  .footer .footer-col-block .footer-heading-moblie::after {
    background-color: var(--theme-text);
  }

  .footer .footer-col-block .footer-heading-moblie::before {
    background-color: var(--theme-text);
  }

  .footer.background-black .footer-heading-moblie::after,
  .footer.background-black .footer-heading-moblie::before {
    background-color: var(--white);
  }

  #header .nav-icon .nav-account,
  #header .nav-icon .nav-wishlist {
    display: none;
  }
  #header .header-bottom .tf-list-categories .categories-title {
    background-color: var(--theme-primary);
    color: var(--theme-button-text);
  }
  #header .header-bottom .box-right .phone {
    font-size: 22px;
    line-height: 22px;
    color: var(--theme-text);
  }
  .wrap-slider .box-content p {
    display: none;
  }

  .slider-effect .img-slider {
    height: 400px;
  }

  .slideshow-effect.style-padding .content-left {
    padding-bottom: 70px;
    position: absolute;
    border: 0px;
    z-index: 9;
    bottom: 0px;
    top: 50%;
  }

  [data-grid="grid-2"],
  [data-grid="grid-3"],
  [data-grid="grid-4"],
  [data-grid="grid-5"],
  [data-grid="grid-6"] {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .tf-cart-item td[cart-data-title]:before {
    color: var(--theme-text);
  }

  .masonry-layout-v4 .collection-image {
    height: 315px;
  }
  .grid-3-layout-md .collection-line-upper .collection-image {
    height: 200px;
  }
  .grid-3-layout-md {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .tf-page-title {
    padding: 15px 0 15px !important;
  }

  .tf-page-title .heading {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .slider-effect-fade .swiper-slide.swiper-slide-active .fade-item {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}

@media screen and (max-width: 960px) {
  .qty-5 {
    width: 100% !important;
  }

  .btn-5 {
    width: 100% !important;
  }
}
