/* Generated by scripts/build-shopfront-css.mjs from ./public/assets/css/style.css. Do not edit directly. */
/*
1. Base Files
	1.1 Reset CSS
	1.2 Typography CSS

2. Components Files
	2.1 Accordion CSS
	2.2 Brand CSS
	2.3 Breadcrumb CSS
	2.4 Buttons CSS
	2.5 Dropdown CSS
	2.6 Form CSS 
	2.7 Layzload CSS
	2.8 Light Gallery CSS
	2.9 Modal CSS
	2.10 Nav-tabs CSS
	2.11 Offcanvas CSS
	2.12 Pagination CSS
	2.13 Rating CSS
	2.14 Ratio CSS
	2.15 Sidebar Category CSS
	2.16 Slider CSS
	2.17 Table CSS
	2.18 Title CSS

3. Layout Files
    3.1 Banner CSS
    3.2 Category CSS
    3.3 Cookie Bar CSS
    3.4 Footer CSS
    3.5 Header CSS
    3.6 Hone CSS
    3.7 Mobile Menu CSS
    3.8 Nav CSS
    3.9 Newsletter CSS
    3.10 Product CSS
    3.11 Service CSS

4. Pages Files
    4.1 Blog Page CSS
    4.2 Checkout CSS
    4.3 Inner Page CSS
    4.4 Portfolio CSS
    4.5 Product Page CSS
    4.6 Shop Page CSS
    4.7 Vendor Page CSS

5. Templates Files
    5.1 Dark CSS

6. Utils Files
    6.1 Mixin Files
        6.1.1 Animation CSS
        6.1.2 Common CSS
    6.2 Variables CSS */
/* Util Files */
/**=====================
    6.2 Variables CSS
==========================**/
/*common variables*/
:root {
  --size: 20px;
  --Color: rgba(var(--title-color), 1);
  --white: 255, 255, 255;
  --rating: 255, 153, 0;
  --black: 0, 0, 0;
  --light-blue: 33, 157, 171;
  --light-gray: 245, 246, 249;
  --border-color: 236, 236, 236;
  --danger-color: 255, 79, 79;
  --gradient-color: linear-gradient(
    274.63deg,
    rgba(var(--primary-color2), 1) 13.1%,
    rgba(var(--primary-color), 1) 174.18%
  );
  /* Demo 1 */
  --base-gray: 242, 243, 248;
  --primary-color: 255, 153, 0;
  --primary-color2: 251, 57, 57;
  --theme-green: 70, 147, 71;
  --title-color: 32, 35, 38;
  --bs-heading-color: 32, 35, 38;
  --content-color: 94, 98, 120;
  --theme-blue: 32, 44, 60;
  --theme-blue-dark: 19, 25, 33;
  --theme-blue2: 34, 66, 163;
  --dark-blue: 35, 47, 62;
  /* Box shadow */
  --shadow-2:
    0px 0px 10px rgba(var(--title-color), 0.1),
    0px 10px 10px rgba(82, 77, 141, 0.04),
    0px 8.69547px 6.95638px rgba(82, 77, 141, 0.06),
    0px 4.6181px 3.69448px rgba(82, 77, 141, 0.0484671),
    0px 1.9217px 1.53736px rgba(82, 77, 141, 0.0337375);
}

/* for demo 2 */
.demo-2 {
  --primary-color: 254, 229, 1;
  --primary-color2: 251, 57, 57;
  --primary-color3: 39, 119, 252;
}

.theme-bg-color {
  background-color: rgba(var(--primary-color), 1) !important;
}

.theme-color {
  color: rgba(var(--primary-color), 1) !important;
}

.theme-color {
  fill: rgba(var(--primary-color2), 1) !important;
}

/* Shadow List */
/* Font Family List */
/* Breakpoints */
/* Mixin Files */
/**=====================
    6.1.2 Common Mixins CSS
==========================**/
/** ======= Font Awesome Font Family And Weight Start ======= **/
/** ======= Font Awesome Font Family And Weight End ======= **/
/** ======= Breakpoint Start  ======= **/
/** ======= Breakpoint End ======= **/
/** ======= position css starts ======= **/
/** ======= position css ends ======= **/
/** ======= display flex css starts ======= **/
/** ======= display flex css ends ======= **/
/** ======= one, two, three line start ======= **/
/** ======= one, two, three line end ======= **/
/** ======= Gap Flex Css Start ======= **/
/** ======= Gap Flex Css End ======= **/
/** ======= align css starts ======= **/
/** ======= align css ends ======= **/
/** ======= Image Full Height And Width Start ======= **/
 .product-box .product-image img, .product-box-4 .product-image a img, .vertical-product-box .product-image img, .header-style-1 .main-header .left-header .header-logo img, .footer-section-2 .sub-footer .sub-footer-logo img, .product-box-list .vertical-product-box .product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.user-dashboard-section .dashboard-right-sidebar .dashboard-card .payment-card-detail .card-details::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/** ======= Image Full Height And Width ends ======= **/
/** ======= Image Ratio starts ======= **/
/** ======= Image Ratio ends  ======= **/
/**=====================
   6.1.1 Animation CSS
==========================**/
/* Custom CSS for animation */

@keyframes fadeOutAnimation {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeInAnimation {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes move {
  0% {
    top: 0px;
  }
  10% {
    top: 0px;
  }
  25% {
    top: -18px;
  }
  27% {
    top: -20px;
  }
  70% {
    top: -20px;
  }
}
@keyframes blink {
  from {
    opacity: 1;
  }
  to {
    opacity: 0.1;
  }
}
@keyframes plane-animation {
  0% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes shaking {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(5px);
  }
  50% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes progressBarAnimation {
  from {
    width: 100%;
  }
  to {
    width: 0;
  }
}
@keyframes grow {
  0%, 100% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(360deg);
  }
}
@keyframes shake {
  0% {
    transform: translate(3px, 0);
  }
  50% {
    transform: translate(-3px, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}
/* Base Files */
/*-----------------------------------------------------------------------------------
Template Name: Kartify - 
Template URI: https://themes.pixelstrap.com/kartify/
Description: This is E-commerce website
Author: Pixelstrap
Author URI: https://themeforest.net/user/pixelstrap
-----------------------------------------------------------------------------------

1. Base Files
	1.1 Reset CSS
	1.2 Typography CSS

2. Components Files
	2.1 Accordion CSS
	2.2 Brand CSS
	2.3 Breadcrumb CSS
	2.4 Buttons CSS
	2.5 Dropdown CSS
	2.6 Form CSS 
	2.7 Layzload CSS
	2.8 Light Gallery CSS
	2.9 Modal CSS
	2.10 Nav-tabs CSS
	2.11 Offcanvas CSS
	2.12 Pagination CSS
	2.13 Rating CSS
	2.14 Ratio CSS
	2.15 Sidebar Category CSS
	2.16 Slider CSS
	2.17 Table CSS
	2.18 Title CSS

3. Layout Files
    3.1 Banner CSS
    3.2 Category CSS
    3.3 Cookie Bar CSS
    3.4 Footer CSS
    3.5 Header CSS
    3.6 Hone CSS
    3.7 Mobile Menu CSS
    3.8 Nav CSS
    3.9 Newsletter CSS
    3.10 Product CSS
    3.11 Service CSS

4. Pages Files
    4.1 Blog Page CSS
    4.2 Checkout CSS
    4.3 Inner Page CSS
    4.4 Portfolio CSS
    4.5 Product Page CSS
    4.6 Shop Page CSS
    4.7 Vendor Page CSS

5. Templates Files
    5.1 Dark CSS

6. Utils Files
    6.1 Mixin Files
        6.1.1 Animation CSS
        6.1.2 Common CSS
    6.2 Variables CSS */
/* Util Files */
/* Mixin Files */
/**=====================
    1.1 Reset CSS
==========================**/
.custom-container {
  padding-inline: calc(15px + 145 * (100vw - 320px) / 1600);
}

.content-color {
  color: rgba(var(--content-color), 1) !important;
}

.theme-color {
  color: rgba(var(--primary-color), 1) !important;
}
.gray-bg-color:hover {
  background-color: rgba(var(--light-gray), 1);
}
.success-bg-color:hover {
  background-color: rgba(var(--theme-green), 0.8);
}

.section-t-space {
  padding-top: calc(15px + 25 * (100vw - 320px) / 1600);
}

.section-block-space {
  padding-block: calc(15px + 25 * (100vw - 320px) / 1600);
}

.light-bg-color {
  padding: calc(13px + 12 * (100vw - 320px) / 1600);
  background-color: rgba(var(--white), 1);
  height: 100%;
  position: relative;
}
.light-bg-color-3::before {
  top: 0;
  left: 0;
  background-color: rgba(var(--base-gray), 0.3);
  content: "";
  position: absolute;
  width: 100%;
  height: 70%;
}
body.dark .light-bg-color-3::before {
  background-color: rgba(var(--base-gray), 1);
}

.title-color {
  color: rgba(var(--title-color), 1) !important;
}

[class^=ri-],
[class*=" ri-"] {
  font-size: calc(14px + 2 * (100vw - 320px) / 1600);
}

.base-bg-color {
  background-color: rgba(var(--base-gray), 1) !important;
}

.mb-14 {
  margin-bottom: 14px;
}

.hover-effect {
  position: relative;
  overflow: hidden;
}
.hover-effect::after {
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  background: linear-gradient(-90deg, rgba(var(--white), 0) 0%, rgba(var(--white), 0.035) 50%, rgba(var(--white), 0) 100%);
  transform: skewX(-25deg);
  border-radius: 0;
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
}
.hover-effect:hover::after {
  animation: shine 1s;
}

/* Selection */
::selection,
::-moz-selection {
  background-color: rgba(var(--theme-blue), 1);
  color: rgba(var(--white), 1);
}

/* Common colors */

/* Sweetalert2 css */
.swal2-toast.swal2-popup {
  font-family: "BR Hendrix";
}
.swal2-toast.swal2-popup .swal2-icon {
  margin: 0;
}
.swal2-toast.swal2-popup .swal2-success [class^=swal2-success-line] {
  height: 3px;
}

/* Tap To Top Scss */
.tap-top-button .btn:hover {
  background-color: rgba(var(--theme-blue), 1);
}
.tap-top-button .btn:hover .iconsax {
  --Color: rgba(var(--white), 0.95);
}
body.dark .tap-top-button .btn:hover .iconsax {
  --Color: rgba(255, 255, 255, 0.95);
}

/* Recent Order Scss */
.preloader .percentage::after {
  content: "%";
  font-size: 30px;
  margin-left: 2px;
  font-weight: 400;
}
.demo-2 .quick-view-modal .modal-custom-size .right-box-contain .qty-stock-box .qty-box .qty-btn:hover {
  color: #202326;
}

/*-----------------------------------------------------------------------------------
Template Name: Kartify - 
Template URI: https://themes.pixelstrap.com/kartify/
Description: This is E-commerce website
Author: Pixelstrap
Author URI: https://themeforest.net/user/pixelstrap
-----------------------------------------------------------------------------------

1. Base Files
	1.1 Reset CSS
	1.2 Typography CSS

2. Components Files
	2.1 Accordion CSS
	2.2 Brand CSS
	2.3 Breadcrumb CSS
	2.4 Buttons CSS
	2.5 Dropdown CSS
	2.6 Form CSS 
	2.7 Layzload CSS
	2.8 Light Gallery CSS
	2.9 Modal CSS
	2.10 Nav-tabs CSS
	2.11 Offcanvas CSS
	2.12 Pagination CSS
	2.13 Rating CSS
	2.14 Ratio CSS
	2.15 Sidebar Category CSS
	2.16 Slider CSS
	2.17 Table CSS
	2.18 Title CSS

3. Layout Files
    3.1 Banner CSS
    3.2 Category CSS
    3.3 Cookie Bar CSS
    3.4 Footer CSS
    3.5 Header CSS
    3.6 Hone CSS
    3.7 Mobile Menu CSS
    3.8 Nav CSS
    3.9 Newsletter CSS
    3.10 Product CSS
    3.11 Service CSS

4. Pages Files
    4.1 Blog Page CSS
    4.2 Checkout CSS
    4.3 Inner Page CSS
    4.4 Portfolio CSS
    4.5 Product Page CSS
    4.6 Shop Page CSS
    4.7 Vendor Page CSS

5. Templates Files
    5.1 Dark CSS

6. Utils Files
    6.1 Mixin Files
        6.1.1 Animation CSS
        6.1.2 Common CSS
    6.2 Variables CSS */
/* Util Files */
/**=====================
    1.2 Typography CSS
==========================**/
body {
  font-family: "BR Hendrix";
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
  margin: 0;
  background-color: rgba(var(--white), 1);
  transition: all 0.25s ease-in-out;
  padding: 0 !important;
}
body:has(header .middle-header.show) {
  overflow: hidden;
}
body:has(header .middle-header.show) .header-style-1 {
  z-index: 10;
}
body:has(header .navbar-expand-xl .offcanvas.show,
> header .navbar-expand-xl .offcanvas.hiding,
> header .navbar-expand-xl .offcanvas.showing) .header-style-1 {
  z-index: 10;
}
body:has(> .category-fixed-box.offcanvas.show,
> .category-fixed-box.offcanvas.hiding,
> .category-fixed-box.offcanvas.showing) .header-style-1 {
  z-index: unset;
}
body:has(.category-full-box.offcanvas.show,
.category-full-box.offcanvas.hiding,
.category-full-box.offcanvas.showing) .header-style-1 {
  z-index: unset;
}

ol,
ul {
  margin-bottom: 0;
  padding-inline: 0;
}

li {
  display: inline-block;
}

a {
  color: rgba(var(--primary-color), 1);
  text-decoration: none;
}

p {
  margin-bottom: 0;
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(var(--border-color), 1);
  box-shadow: none;
}

h1,
.h1 {
  font-size: calc(36px + 20 * (100vw - 320px) / 1600);
  font-weight: 600;
  margin-bottom: 0;
}

h2,
.h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 0;
}

h3,
.h3 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 0;
}

h4,
.h4 {
  font-size: calc(18px + 2 * (100vw - 320px) / 1600);
  font-weight: 500;
  margin-bottom: 0;
}

h5,
.h5 {
  font-weight: 500;
  font-size: calc(14px + 2 * (100vw - 320px) / 1600);
  margin-bottom: 0;
}

h6,
.h6 {
  font-size: calc(13px + 1 * (100vw - 320px) / 1600);
  margin-bottom: 0;
  font-weight: 500;
}

p {
  font-size: calc(13px + 1 * (100vw - 320px) / 1600);
  font-weight: 400;
  line-height: 1.5;
}

/* Components Files */
/* Mixin Files */
/**=====================
    2.1 Accordion CSS
==========================**/
.custom-accordion .accordion-item .accordion-header .accordion-button::after {
  content: "\ea4e";
  background: unset;
  color: rgba(var(--title-color), 0.8);
  font-family: remixicon;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  width: auto;
  height: unset;
}
.delivery-accordion > .accordion-item > .accordion-header .accordion-button::after {
  content: unset;
}
.delivery-accordion > .accordion-item > .accordion-collapse > .accordion-body .delivery-accordion-box .accordion-item .accordion-button::after {
  content: unset;
}
.checkout-payment-accordion .accordion-item:has(.accordion-header .form-check .form-check-input:checked)::before {
  top: 0;
  left: 0;
  border-left: 3px solid rgba(var(--primary-color), 1);
  content: "";
  position: absolute;
  width: 3px;
  height: 100%;
}
[dir=rtl] .checkout-payment-accordion .accordion-item:has(.accordion-header .form-check .form-check-input:checked)::before {
  left: unset;
  right: 0;
}
.checkout-payment-accordion .accordion-item:has(.accordion-header .form-check .form-check-input:checked) .accordion-header .form-check .form-check-label .circle::before {
  border-color: rgba(var(--primary-color), 1);
}
.checkout-payment-accordion .accordion-item:has(.accordion-header .form-check .form-check-input:checked) .accordion-header .form-check .form-check-label .circle::after {
  transform: translate(-50%, -50%) scale(1);
}
.checkout-payment-accordion .accordion-item .accordion-header .form-check .form-check-label .circle::before {
  border-radius: 100%;
  border: 1px solid rgba(var(--border-color), 1);
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(16px + 2 * (100vw - 320px) / 1600);
  height: calc(16px + 2 * (100vw - 320px) / 1600);
}
.checkout-payment-accordion .accordion-item .accordion-header .form-check .form-check-label .circle::after {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  border-radius: 100%;
  background-color: rgba(var(--primary-color), 1);
  transition: all 0.2s ease-in-out;
  content: "";
  position: absolute;
  width: calc(10px + 1 * (100vw - 320px) / 1600);
  height: calc(10px + 1 * (100vw - 320px) / 1600);
}
.checkout-payment-accordion .accordion-item .accordion-header .form-check .form-check-label .circle:checked::before {
  border-color: rgba(var(--primary-color), 1);
}
.checkout-payment-accordion .accordion-item .accordion-header .form-check .form-check-label .circle:checked::after {
  transform: translate(-50%, -50%) scale(1);
}
.checkout-payment-accordion .accordion-item .accordion-header .form-check .form-check-label .circle:checked ~ .form-check-label {
  color: rgba(var(--title-color), 1);
}

/* Mixin Files */
/**=====================
    2.2 Brand CSS
==========================**/
.brand-section .brand-box:hover {
  border-color: rgba(var(--border-color), 1);
  box-shadow: 0 0 10px rgba(54, 97, 79, 0.1);
}

/* Mixin Files */
/**=====================
    2.3 breadcrumb scss
==========================**/
.breadcrumb-section {
  background-color: rgba(var(--white), 1);
}
.breadcrumb-section .breadcrumb-contain {
  padding: calc(14px + 6 * (100vw - 320px) / 1600) 0;
  text-align: center;
  color: rgba(var(--black), 1);
  display: flex;
  align-items: center;
}
@media (max-width: 480px) {
  .breadcrumb-section .breadcrumb-contain {
    display: block;
  }
}
.breadcrumb-section .breadcrumb-contain h2 {
  font-weight: 500;
  font-size: calc(18px + 6 * (100vw - 320px) / 1600);
  margin-bottom: 0;
}
@media (max-width: 480px) {
  .breadcrumb-section .breadcrumb-contain h2 {
    text-align: center;
    margin-bottom: 8px;
  }
}
.breadcrumb-section .breadcrumb-contain nav {
  margin-left: auto;
}
.breadcrumb-section .breadcrumb-contain nav .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
}
.breadcrumb-section .breadcrumb-contain nav .breadcrumb .breadcrumb-item {
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
}
.breadcrumb-section .breadcrumb-contain nav .breadcrumb .breadcrumb-item i {
  font-size: 17px;
  line-height: 1;
}
.breadcrumb-section .breadcrumb-contain nav .breadcrumb .breadcrumb-item.active {
  color: rgba(var(--content-color), 1);
  margin-top: 2px;
}
.breadcrumb-section .breadcrumb-contain nav .breadcrumb .breadcrumb-item + .breadcrumb-item {
  position: relative;
  display: flex;
}
.breadcrumb-section .breadcrumb-contain nav .breadcrumb .breadcrumb-item + .breadcrumb-item a {
  color: rgba(var(--title-color), 1);
}
.breadcrumb-section .breadcrumb-contain nav .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  color: rgba(var(--title-color), 0.3);
}
.breadcrumb-section .breadcrumb-contain .order-number-contain li + li::before {
  top: calc(50% - 2px);
  transform: translateY(-50%);
  left: 0;
  border-radius: 100%;
  background-color: rgba(var(--content-color), 1);
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
}
.faq-breadcrumb .breadcrumb-contain .faq-form-tag .input-group .form-control:focus {
  background-color: transparent;
}
.faq-breadcrumb .breadcrumb-contain .faq-form-tag .input-group .faq-dropdown-button::after {
  content: unset;
}

/* Mixin Files */
/**=====================
    2.4 Button CSS
==========================**/
.btn {
  color: rgba(var(--title-color), 1);
  padding: calc(10px + 3 * (100vw - 320px) / 1600) calc(18px + 5 * (100vw - 320px) / 1600) calc(7px + 3 * (100vw - 320px) / 1600);
  border: none;
  font-weight: 500;
  font-size: calc(15px + 3 * (100vw - 320px) / 1600);
  position: relative;
  z-index: 0;
  transition: all 0.25s ease-in-out;
  border-radius: 5px;
}
.btn-warning:hover {
  color: rgba(var(--primary-color), 1);
  border-color: rgba(var(--primary-color), 1);
  background-color: transparent;
}
.btn-border-white:hover {
  background-color: rgba(var(--white), 1);
  color: rgba(var(--title-color), 1);
}
.btn.theme-border:hover {
  background-color: rgba(var(--primary-color), 1);
  color: #fff;
}
.btn-border:hover {
  color: rgba(var(--white), 1);
  background-color: rgba(var(--primary-color), 1);
}
.btn-danger {
  background-color: rgba(var(--danger-color), 1);
  outline: 1px solid rgba(var(--danger-color), 1);
  color: #fff;
  box-shadow: none;
}
.btn-danger:hover, .btn-danger:focus, .btn-danger:focus-visible {
  outline: 1px solid rgba(var(--danger-color), 1);
  background-color: transparent;
  color: rgba(var(--danger-color), 1);
  box-shadow: none;
}
.btn-danger:focus:not(:focus-visible) {
  outline: 1px solid rgba(var(--danger-color), 1);
}
.btn-bg-theme:hover {
  color: #fff;
  --Color: #fff;
  background-color: rgba(var(--primary-color), 1);
}
.btn-bg-theme:first-child:active, .btn-bg-theme:active {
  color: rgba(var(--primary-color), 1);
  --Color: rgba(var(--primary-color), 1);
  outline: 1px solid rgba(var(--primary-color), 1);
  border: none;
  background-color: transparent;
}
.btn-load-more:hover {
  background-color: transparent;
  border-color: rgba(var(--primary-color), 1);
  color: rgba(var(--primary-color), 1);
}
.btn-load-more:disabled {
  border-color: rgba(var(--primary-color), 1);
  background-color: rgba(var(--primary-color), 1);
  color: rgba(var(--white), 1);
  cursor: not-allowed;
}
.shop-btn:hover {
  color: rgba(var(--theme-blue2), 1);
}

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

/* Mixin Files */
/**=====================
    2.5 Dropdown CSS
==========================**/
.dropdown-box {
  position: relative;
}
.dropdown-box:hover .dropdown-list {
  margin-top: 0;
  opacity: 1;
  visibility: visible !important;
}
.dropdown-box .dropdown-list {
  transition: all 0.3s ease-in-out;
  position: absolute;
  top: 39px !important;
  bottom: unset;
  left: 50% !important;
  transform: translateX(-50%) !important;
  right: unset !important;
  background-color: rgba(var(--white), 1);
  min-width: calc(215px + 35 * (100vw - 320px) / 1600);
  width: 100%;
  border-radius: 7px;
  padding: calc(9px + 4 * (100vw - 320px) / 1600);
  box-shadow: 0px 4px 10px rgba(var(--black), 0.1);
  z-index: 1;
  margin-top: -8px;
  opacity: 0;
  visibility: hidden !important;
}
.dropdown-box .dropdown-list::before {
  top: -8px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  background-color: rgba(var(--white), 1);
  border-radius: 5px 0 0 0;
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
}
@media (max-width: 1399.98px) {
  .dropdown-box .dropdown-list::before {
    content: none;
  }
}
.dropdown-box .dropdown-list > li {
  width: 100%;
}
.dropdown-box .user-dropdown {
  align-items: center;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: calc(6px + 4 * (100vw - 320px) / 1600);
}
.dropdown-box .user-dropdown li {
  gap: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dropdown-box .user-dropdown li .login-btn {
  width: 100%;
  background-color: rgba(var(--theme-blue-dark), 1);
  color: #fff;
  font-size: calc(15px + 2 * (100vw - 320px) / 1600);
  padding: 8px;
  font-weight: 600;
}
.dropdown-box .user-dropdown li span {
  color: rgba(var(--content-color), 1);
}
.dropdown-box .user-dropdown li .signup-btn {
  padding: 0;
  border: none;
  background-color: transparent;
  color: rgba(var(--title-color), 1);
  font-size: 15px;
  width: unset;
  text-decoration: underline;
}

/* Mixin Files */
/**=====================
    2.6 form scss
  ==========================**/
/* Input auto-fill */
.input-group .btn {
  z-index: unset;
}

input[type=search i]::-webkit-search-cancel-button {
  appearance: none;
  background-image: url(../svg/close-line.svg);
  height: 18px;
  width: 18px;
}

.invalid-tooltip,
.valid-tooltip {
  z-index: 1;
  position: static;
  inset: unset;
}

.input-group > .form-control:focus, .input-group > .form-control:focus, .input-group > .form-control:focus-within,
.input-group > .form-floating:focus,
.input-group > .form-floating:focus,
.input-group > .form-floating:focus-within {
  z-index: unset;
}

.was-validated .form-control:invalid:focus,
.form-control.is-invalid:focus,
.was-validated .form-control:valid:focus,
.form-control.is-valid:focus,
.was-validated .form-check-input:invalid:focus,
.form-check-input.is-invalid:focus,
.was-validated .form-check-input:valid:focus,
.form-check-input.is-valid:focus {
  box-shadow: unset;
}

.was-validated .form-control:valid:focus,
.form-control.is-valid:focus {
  border-color: rgba(var(--theme-green), 1);
}

.was-validated .form-check-input:valid:focus::after,
.form-check-input.is-valid:focus::after {
  border-color: rgba(var(--theme-green), 1);
}

.was-validated .form-check-input:invalid:focus::after,
.form-check-input.is-invalid:focus::after {
  border-color: rgba(var(--danger-color), 1);
}

.was-validated .form-control:invalid:focus,
.form-control.is-invalid:focus {
  border-color: rgba(var(--danger-color), 1);
}


.form-control.is-invalid {
  background-image: none;
  border-color: rgba(var(--danger-color), 1);
}
.was-validated .position-relative .form-control:valid ~ div::after {
  content: "\eb7b";
  color: rgba(var(--theme-green), 1);
  font-size: 17px;
  font-weight: 600;
  font-family: remixicon;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
}
.was-validated .position-relative .form-control:invalid ~ div::after {
  content: "\eb99";
  color: rgba(var(--danger-color), 1);
  font-size: 17px;
  font-weight: 600;
  font-family: remixicon;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
}

.valid-tooltip,
.invalid-tooltip {
  background-color: transparent;
  padding: 0;
  z-index: unset;
}

.valid-tooltip {
  color: rgba(var(--theme-green), 1);
}

.invalid-tooltip {
  color: rgba(var(--danger-color), 1);
}


.input-group > .form-control:not(:focus).is-invalid,
.input-group > .form-select:not(:focus).is-invalid {
  z-index: 0;
}

input[type=number] {
  appearance: textfield;
}
input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
  appearance: none;
  margin: 0;
}
input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, input:-webkit-autofill:active {
  color: rgba(var(--title-color), 1) !important;
  -webkit-text-fill-color: rgba(var(--title-color), 1) !important;
  box-shadow: 0 0 0 1000px rgba(var(--base-gray), 1) inset !important;
  background-clip: text !important;
}

form .form-check-input {
  outline: 0;
}
form .form-check-input:active {
  filter: unset;
}
form .form-check-input:focus {
  box-shadow: unset;
}
form .form-check-input:checked {
  background-color: transparent;
  border-color: transparent;
}

.theme-form .form-label {
  font-size: calc(14px + 4 * (100vw - 320px) / 1600);
  color: rgba(var(--content-color), 1);
  font-weight: 500;
  margin-bottom: calc(2px + 2 * (100vw - 320px) / 1600);
}
.theme-form .form-label span {
  color: rgba(var(--danger-color), 1);
}
.theme-form .form-control,
.theme-form .form-select {
  padding: calc(10px + 2 * (100vw - 320px) / 1600) calc(12px + 2 * (100vw - 320px) / 1600);
  font-size: calc(14px + 2 * (100vw - 320px) / 1600);
  font-weight: 400;
  color: rgba(var(--title-color), 1);
  background-color: rgba(var(--white), 1);
  border-radius: 5px;
  border: 1px solid rgba(var(--border-color), 1);
}
.theme-form .form-control:focus,
.theme-form .form-select:focus {
  border-color: rgba(var(--title-color), 0.18);
}
.theme-form .form-control::placeholder,
.theme-form .form-select::placeholder {
  color: rgba(var(--content-color), 0.8);
}

.theme-checkbox {
  min-height: unset;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: calc(7px + 3 * (100vw - 320px) / 1600);
}
.theme-checkbox .form-check-input {
  cursor: pointer;
  background-color: transparent;
  position: relative;
  border: none;
  box-shadow: none;
  float: unset;
  margin: -3px 0 0 0;
  filter: unset;
  width: 18px;
  height: 18px;
}
.theme-checkbox .form-check-input:before {
  transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  transform: rotate(-45deg) scale(0, 0);
  left: 4px;
  top: 5px;
  z-index: 1;
  border: 2px solid rgba(var(--primary-color), 1);
  border-top-style: none;
  border-right-style: none;
  content: "";
  position: absolute;
  width: 10px;
  height: 5px;
}
.theme-checkbox .form-check-input:after {
  top: 0;
  left: 0;
  border: 1px solid rgba(var(--content-color), 0.2);
  cursor: pointer;
  background-color: rgba(var(--white), 1);
  border-radius: 4px;
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
}
.theme-checkbox .form-check-input:checked {
  background-color: transparent;
}
.theme-checkbox .form-check-input:checked:before {
  transform: rotate(-45deg) scale(1, 1);
}
.theme-checkbox .form-check-label {
  font-size: calc(14px + 2 * (100vw - 320px) / 1600);
  color: rgba(var(--content-color), 1);
  font-weight: 400;
  cursor: pointer;
}

.checkbox_animated {
  cursor: pointer;
  position: relative;
  margin-right: 16px;
  height: 100%;
  border: none;
  box-shadow: none;
  width: 18px;
  height: 18px;
}
.checkbox_animated:before {
  transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  transform: rotate(-45deg) scale(0, 0);
  left: 4px;
  top: 5px;
  z-index: 1;
  border: 2px solid rgba(var(--primary-color), 1);
  border-top-style: none;
  border-right-style: none;
  content: "";
  position: absolute;
  width: 10px;
  height: 5px;
}
.checkbox_animated:after {
  top: 0;
  left: 0;
  border: 1px solid rgba(var(--content-color), 0.2);
  cursor: pointer;
  background-color: rgba(var(--white), 1);
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
}
.checkbox_animated:checked {
  background-color: transparent;
}
.checkbox_animated:checked:before {
  transform: rotate(-45deg) scale(1, 1);
}

/**=====================
    2.7 Lazy Load css Start
==========================**/
img {
  filter: blur(10px);
}
img.loaded {
  filter: blur(0);
  opacity: 1;
}

/*-----------------------------------------------------------------------------------
Template Name: Kartify - 
Template URI: https://themes.pixelstrap.com/kartify/
Description: This is E-commerce website
Author: Pixelstrap
Author URI: https://themeforest.net/user/pixelstrap
-----------------------------------------------------------------------------------

1. Base Files
	1.1 Reset CSS
	1.2 Typography CSS

2. Components Files
	2.1 Accordion CSS
	2.2 Brand CSS
	2.3 Breadcrumb CSS
	2.4 Buttons CSS
	2.5 Dropdown CSS
	2.6 Form CSS 
	2.7 Layzload CSS
	2.8 Light Gallery CSS
	2.9 Modal CSS
	2.10 Nav-tabs CSS
	2.11 Offcanvas CSS
	2.12 Pagination CSS
	2.13 Rating CSS
	2.14 Ratio CSS
	2.15 Sidebar Category CSS
	2.16 Slider CSS
	2.17 Table CSS
	2.18 Title CSS

3. Layout Files
    3.1 Banner CSS
    3.2 Category CSS
    3.3 Cookie Bar CSS
    3.4 Footer CSS
    3.5 Header CSS
    3.6 Hone CSS
    3.7 Mobile Menu CSS
    3.8 Nav CSS
    3.9 Newsletter CSS
    3.10 Product CSS
    3.11 Service CSS

4. Pages Files
    4.1 Blog Page CSS
    4.2 Checkout CSS
    4.3 Inner Page CSS
    4.4 Portfolio CSS
    4.5 Product Page CSS
    4.6 Shop Page CSS
    4.7 Vendor Page CSS

5. Templates Files
    5.1 Dark CSS

6. Utils Files
    6.1 Mixin Files
        6.1.1 Animation CSS
        6.1.2 Common CSS
    6.2 Variables CSS */
/* Util Files */
/* Mixin Files */
/**=====================
    2.8 Light Gallery CSS
==========================**/

/* Mixin Files */
/**=====================
    2.9 Modal CSS
==========================**/
.notify-modal .modal-content .modal-footer .btn.apply-btn:hover {
  background-color: transparent;
  color: rgba(var(--primary-color), 1);
}
.ask-question-modal .modal-content .modal-footer .btn.apply-btn:hover {
  background-color: transparent;
  color: rgba(var(--primary-color), 1);
}
.modal.authentication-offcanvas .authentication-box .cancel-btn:hover {
  background-color: transparent;
  border-color: rgba(var(--border-color), 1);
}
body.dark .modal.authentication-offcanvas .authentication-box .cancel-btn:hover {
  background-color: transparent;
}
.modal.authentication-offcanvas .authentication-box .auth-form .form-control::placeholder {
  color: rgba(var(--content-color), 0.8);
}
.modal.authentication-offcanvas .authentication-box .auth-form .forgot-box .form-check .form-check-input::before {
  border: 1px solid rgba(var(--content-color), 0.1);
  background-color: rgba(var(--base-gray), 1);
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
.modal.authentication-offcanvas .authentication-box .auth-form .forgot-box .form-check .form-check-input::after {
  border: 2px solid rgba(var(--primary-color), 1);
  border-top: unset;
  border-left: unset;
  top: 2px;
  left: 7px;
  transform: rotate(51deg) scale(0);
  transition: transform 0.3s ease-in-out;
  content: "";
  position: absolute;
  width: 7px;
  height: 12px;
}
.modal.authentication-offcanvas .authentication-box .auth-form .forgot-box .form-check .form-check-input:checked::after {
  transform: rotate(51deg) scale(1);
}
.modal.authentication-offcanvas .authentication-box .auth-form .divider::before {
  left: 0;
  border-top: 1px solid rgba(var(--content-color), 0.1);
  z-index: -1;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
}
.modal.authentication-offcanvas .authentication-box .nav-tabs .nav-item + .nav-item::after {
  left: 0;
  border-left: 1px solid rgba(var(--primary-color), 1);
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 80%;
}
.authentication-modal .authentication-box .auth-form .form-control::placeholder {
  color: rgba(var(--title-color), 0.6);
}
.authentication-modal .authentication-box .auth-form .forgot-box .form-check .form-check-input::before {
  border: 1px solid rgba(var(--content-color), 0.1);
  background-color: rgba(var(--base-gray), 1);
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
body.demo-6.dark .authentication-modal .authentication-box .auth-form .forgot-box .form-check .form-check-input::before {
  background-color: #303438;
}
.authentication-modal .authentication-box .auth-form .forgot-box .form-check .form-check-input::after {
  border: 2px solid rgba(var(--primary-color), 1);
  border-top: unset;
  border-left: unset;
  top: 2px;
  left: 7px;
  transform: rotate(51deg) scale(0);
  transition: transform 0.3s ease-in-out;
  content: "";
  position: absolute;
  width: 7px;
  height: 12px;
}
.authentication-modal .authentication-box .auth-form .forgot-box .form-check .form-check-input:checked::after {
  transform: rotate(51deg) scale(1);
}
.authentication-modal .authentication-box .auth-form .divider::before {
  left: 0;
  border-top: 1px solid rgba(var(--content-color), 0.1);
  z-index: -1;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
}
.authentication-modal .authentication-box .nav-tabs .nav-item + .nav-item::after {
  left: 0;
  border-left: 1px solid rgba(var(--primary-color), 1);
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 80%;
}
.product-share-modal .product-share-container .tab-content .input-group .btn:hover, .product-share-modal .product-share-container .tab-content .input-group .btn:focus, .product-share-modal .product-share-container .tab-content .input-group .btn:active {
  outline: 1px solid rgba(var(--primary-color), 1);
  color: rgba(var(--primary-color), 1);
  background-color: transparent;
}
.quick-view-modal .modal-custom-size .left-box-contain .quick-slider-product-box .swiper-button-next::after,
.quick-view-modal .modal-custom-size .left-box-contain .quick-slider-product-box .swiper-button-prev::after {
  content: none;
}
.quick-view-modal .modal-custom-size .right-box-contain .qty-stock-box .qty-box .qty-btn:hover {
  background-color: rgba(var(--primary-color), 1);
  color: #fff;
}

/* Mixin Files */
/**=====================
    2.10 Nav-tabs scss
==========================**/
.product-section-box .custom-nav .nav-item .nav-link::after {
  bottom: 0;
  left: 0;
  background-color: transparent;
  transition: all 0.15s ease-in-out;
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
}
[dir=rtl] .product-section-box .custom-nav .nav-item .nav-link::after {
  left: unset;
  right: 0;
}
.product-section-box .custom-nav .nav-item .nav-link:focus, .product-section-box .custom-nav .nav-item .nav-link:hover {
  background-color: rgba(var(--white), 1);
}
.product-section-box .custom-nav .nav-item .nav-link:focus::after, .product-section-box .custom-nav .nav-item .nav-link:hover::after, .product-section-box .custom-nav .nav-item .nav-link.active::after {
  width: 100%;
  background: rgba(var(--primary-color), 1);
}
.review-people .review-list > li > .review-list::before {
  top: 0;
  left: calc(20px + 10 * (100vw - 320px) / 1600);
  height: 100%;
  border-left: 1px solid rgba(var(--content-color), 0.1);
  content: "";
  position: absolute;
}
[dir=rtl] .review-people .review-list > li > .review-list::before {
  left: unset;
  right: calc(20px + 10 * (100vw - 320px) / 1600);
}
.review-people .review-list > li > .review-list > li::before {
  right: 0;
  border-top: 1px solid rgba(var(--content-color), 0.1);
  z-index: -1;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: calc(100% + 20px + 10 * (100vw - 320px) / 1600);
  height: 1px;
}
.review-people .review-list li .people-box:hover .reply a {
  opacity: 1;
}
.review-people .review-list li .people-box .people-comment .name a:hover {
  color: rgba(var(--title-color), 1);
}
.review-people .review-list li .people-box .people-comment .name .product-rating .rating > li :hover {
  transition: 0.3s;
}
.review-people .review-list li .people-box .people-comment .name .product-rating .rating > li :hover::before {
  content: "\f186";
  color: rgba(var(--primary-color), 1);
}
.review-people .review-list li .people-box .people-comment .name .product-rating .rating > li.theme-color i::before {
  content: "\f186";
}

/* Mixin Files */
/**=====================
    2.11 Offcanvas CSS
==========================**/

.offcanvas.category-fixed-box {
  width: calc(310px + 90 * (100vw - 320px) / 1600);
  top: 0;
  border: none;
  background-color: rgba(var(--white), 1);
  transition: all 0.3s ease-in-out;
}
.offcanvas.category-fixed-box .category-header {
  flex-shrink: 0;
  z-index: 1;
  box-shadow: 0 2px 10px -3px rgba(var(--title-color), 0.1);
  position: relative;
  padding: calc(16px + 8 * (100vw - 320px) / 1600) calc(15px + 5 * (100vw - 320px) / 1600);
  background-color: rgba(var(--base-gray), 1);
  border-bottom: 1px solid rgba(var(--content-color), 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.offcanvas.category-fixed-box .category-header h5 {
  color: rgba(var(--title-color), 1);
  font-weight: 500;
  line-height: 1;
  font-size: calc(17px + 5 * (100vw - 320px) / 1600);
}
.offcanvas.category-fixed-box .category-header .btn-close {
  padding: 0;
  margin: 0;
  font-size: 20px;
  line-height: 1;
  background: unset;
  opacity: 1;
  width: unset;
  height: unset;
}
.offcanvas.category-fixed-box .category-menu-list .sub-menu-list li:hover {
  background-color: rgba(var(--base-gray), 1);
  border-color: rgba(var(--primary-color), 1);
}
.offcanvas.category-fixed-box .category-menu-list .sub-menu-list li:hover .sub-category-box::after {
  content: "\f2e5";
}
.offcanvas.category-fixed-box .category-menu-list .sub-menu-list li .sub-category-box::after {
  color: rgba(var(--content-color), 1);
  font-size: 18px;
  margin-left: auto;
  transition: all 0.5s ease-in-out;
  content: "\ea6e";
  position: relative;
  font-family: remixicon;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
}
[dir=rtl] .offcanvas.category-fixed-box .category-menu-list .sub-menu-list li .sub-category-box::after {
  margin-left: unset;
  margin-right: auto;
}
.offcanvas.cart-offcanvas {
  border: none;
  width: calc(310px + 120 * (100vw - 320px) / 1600);
  background-color: rgba(var(--white), 1);
}
.offcanvas.cart-offcanvas .offcanvas-header {
  padding: calc(16px + 4 * (100vw - 320px) / 1600);
  display: block;
  background-color: rgba(var(--base-gray), 1);
  border-bottom: 1px solid rgba(var(--content-color), 0.2);
}
.offcanvas.cart-offcanvas .offcanvas-body {
  padding: 0;
}
.offcanvas.cart-offcanvas .offcanvas-body .cart-product-box .product-box-list {
  height: calc(100vh - (58px + 6 * (100vw - 320px) / 1600) - (198px + 34 * (100vw - 320px) / 1600));
  overflow: auto;
  padding: calc(13px + 3 * (100vw - 320px) / 1600);
}
.offcanvas.cart-offcanvas .offcanvas-body .cart-product-box .product-box-list:has(.product-box-list .empty-cart.show) {
  display: flex;
  align-items: center;
  justify-content: center;
}
.offcanvas.cart-offcanvas .offcanvas-body .cart-product-box .product-box-list::-webkit-scrollbar-track {
  border-radius: 100px;
  background-color: #f2f3f7;
}
.offcanvas.cart-offcanvas .offcanvas-body .cart-product-box .product-box-list::-webkit-scrollbar {
  width: 4px;
  background-color: #f2f3f7;
}
.offcanvas.cart-offcanvas .offcanvas-body .cart-product-box .product-box-list::-webkit-scrollbar-thumb {
  border-radius: 100px;
  background-color: rgba(var(--theme-blue-dark), 0.7);
}
.offcanvas.cart-offcanvas .offcanvas-body .cart-product-box .product-box-list .vertical-product-box .product-content {
  padding: 0;
}
.offcanvas.cart-offcanvas .offcanvas-body .cart-product-box .total-price-box {
  width: 100%;
  background-color: #f2f3f7;
  padding: calc(13px + 3 * (100vw - 320px) / 1600);
  border-top: 1px solid rgba(var(--content-color), 0.2);
}
.offcanvas.cart-offcanvas .offcanvas-body .cart-product-box .total-price-box .free {
  color: rgba(var(--title-color), 0.9);
}
.offcanvas.cart-offcanvas .offcanvas-body .cart-product-box .total-price-box .progress {
  margin-top: calc(8px + 10 * (100vw - 320px) / 1600);
  height: calc(5px + 3 * (100vw - 320px) / 1600);
  background-color: #e6e7e9;
  border-radius: 100px;
  position: relative;
  overflow: unset;
  margin-bottom: calc(18px + 13 * (100vw - 320px) / 1600);
}
.offcanvas.cart-offcanvas .offcanvas-body .cart-product-box .total-price-box .progress .progress-bar {
  min-width: 28px;
  max-width: calc(100% - 2px);
  height: calc(5px + 3 * (100vw - 320px) / 1600);
  background-color: rgba(var(--primary-color), 1);
  border-radius: 100px;
  position: relative;
  overflow: unset;
}
.offcanvas.cart-offcanvas .offcanvas-body .cart-product-box .total-price-box .progress .progress-bar.bg-yellow {
  background-color: rgba(var(--rating), 1);
}
.offcanvas.cart-offcanvas .offcanvas-body .cart-product-box .total-price-box .sub-total {
  font-size: calc(15px + 3 * (100vw - 320px) / 1600);
  color: rgba(var(--title-color), 1);
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.offcanvas.cart-offcanvas .offcanvas-body .cart-product-box .total-price-box .sub-total span {
  font-weight: 500;
  color: rgba(var(--title-color), 1);
}
.offcanvas.cart-offcanvas .offcanvas-body .cart-product-box .total-price-box .cart-btn-group {
  display: flex;
  align-items: center;
  gap: calc(8px + 8 * (100vw - 320px) / 1600);
}
.offcanvas.cart-offcanvas .offcanvas-body .cart-product-box .total-price-box .cart-btn-group .btn {
  display: block;
  width: 100%;
  font-size: calc(14px + 2 * (100vw - 320px) / 1600);
  padding: 10px 8px 8px;
}
.offcanvas.cart-offcanvas .offcanvas-body .cart-product-box .total-price-box .cart-btn-group .btn.check-out-button {
  background-color: rgba(var(--theme-blue-dark), 1);
  color: rgba(var(--white), 1);
  font-weight: 600;
  border: 1px solid transparent;
}
.offcanvas.cart-offcanvas .offcanvas-body .cart-product-box .total-price-box .cart-btn-group .btn.cart-button {
  border: 1px solid rgba(var(--theme-blue-dark), 1);
  color: rgba(var(--theme-blue-dark), 1);
}
.offcanvas.cart-offcanvas .offcanvas-body .cart-product-box .total-price-box .cart-btn-group .btn.cart-button:hover {
  color: rgba(var(--white), 1);
}
body.dark .offcanvas.cart-offcanvas .offcanvas-body .cart-product-box .total-price-box .cart-btn-group .btn.cart-button:hover {
  color: rgba(var(--white), 1);
}
.offcanvas.cart-offcanvas .offcanvas-body .cart-product-box .total-price-box .cart-btn-group .check-out-button:hover,
.offcanvas.cart-offcanvas .offcanvas-body .cart-product-box .total-price-box .cart-btn-group .cart-button:hover {
  background-color: rgba(var(--theme-blue-dark), 1);
  color: rgba(var(--white), 1);
}
body.dark .offcanvas.cart-offcanvas .offcanvas-body .cart-product-box .total-price-box .cart-btn-group .check-out-button:hover,
body.dark .offcanvas.cart-offcanvas .offcanvas-body .cart-product-box .total-price-box .cart-btn-group .cart-button:hover {
  background-color: #fff;
}
.offcanvas.cart-offcanvas .offcanvas-body .cart-product-box .product-box-list:has(.empty-cart[style="display: block;"]) {
  position: relative;
}
.offcanvas.cart-offcanvas .offcanvas-body .cart-product-box .product-box-list:has(.empty-cart[style="display: block;"]) .empty-cart {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 767.98px) {
  .offcanvas.cart-offcanvas .offcanvas-body .product-box-list .vertical-product-box .product-content .quantity-box {
    position: relative;
    inset: unset;
    margin-top: 9px;
    display: flex;
  }
}
.offcanvas.cart-offcanvas .offcanvas-body .product-box-list .vertical-product-box .product-content .quantity-box .form-control {
  padding: calc(2px + -2 * (100vw - 320px) / 1600) 0 0;
}
.offcanvas.cart-offcanvas .offcanvas-body .product-box-list .vertical-product-box .product-content .quantity-box .qty-btn-plus i {
  font-size: calc(14px + 2 * (100vw - 320px) / 1600);
}
.offcanvas.wishlist-offcanvas .offcanvas-body .product-box-list:has(.no-data) {
  display: grid;
  place-items: center;
  height: 100%;
}
.offcanvas.wishlist-offcanvas .offcanvas-body .product-box-list .vertical-product-box .product-content {
  padding: 0;
  width: calc(100% - (94px + 17 * (100vw - 320px) / 1600) - (26px + -6 * (100vw - 320px) / 1600));
}
.offcanvas.wishlist-offcanvas .offcanvas-body .product-box-list .vertical-product-box .product-content .cart-btn {
  border-radius: 0;
}
.offcanvas.wishlist-offcanvas .offcanvas-body .product-box-list .vertical-product-box .product-content .cart-btn::before {
  border-radius: 100px;
}
.offcanvas.wishlist-offcanvas .offcanvas-body .cart-product-box .product-box-list {
  height: calc(100vh - (185px + 30 * (100vw - 320px) / 1600));
}
.offcanvas.product-filter-offcanvas .offcanvas-header .btn-close::before {
  content: "\eb99";
  font-size: 18px;
  color: rgba(var(--content-color), 1);
  font-family: remixicon;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
}
.offcanvas.product-filter-offcanvas .offcanvas-body .left-box .shop-left-sidebar .custom-nav-tab .nav-item .nav-link:hover(not) img {
  transform: translateY(-50%) rotate(-4deg);
  right: -12px;
  opacity: 0.45;
  width: 75px;
  height: 75px;
}
.offcanvas.product-filter-offcanvas .offcanvas-body .left-box .shop-left-sidebar .custom-nav-tab .nav-item .nav-link:hover img {
  transform: translateY(-50%) rotate(-4deg);
  right: -12px;
  opacity: 0.29;
  width: 75px;
  height: 75px;
}

.product-box-list > li {
  display: block;
}
.product-box-list > li + li {
  margin-top: calc(8px + 3 * (100vw - 320px) / 1600);
  border-top: 1px solid rgba(221, 221, 221, 0.322);
  padding-top: calc(8px + 3 * (100vw - 320px) / 1600);
}
.product-box-list > li.empty-card {
  display: none;
}
.product-box-list > li.empty-card.show {
  display: block;
}
.product-box-list .vertical-product-box {
  display: flex;
  position: relative;
}
.product-box-list .vertical-product-box .product-image {
  padding-block: calc(3px + 5 * (100vw - 320px) / 1600);
  background-color: rgba(var(--base-gray), 1);
  padding: 10px;
  overflow: hidden;
  border-radius: 6px;
  width: calc(94px + 17 * (100vw - 320px) / 1600);
  height: calc(94px + 17 * (100vw - 320px) / 1600);
}
.product-box-list .vertical-product-box .product-content {
  width: calc(100% - (94px + 17 * (100vw - 320px) / 1600));
  padding-top: calc(0px + 11 * (100vw - 320px) / 1600);
}
.product-box-list .vertical-product-box .product-content a {
  color: rgba(var(--title-color), 1);
}
.product-box-list .vertical-product-box .product-content a .name {
  color: rgba(var(--title-color), 1);
  margin-bottom: calc(0px + 4 * (100vw - 320px) / 1600);
  font-weight: 500;
}
.product-box-list .vertical-product-box .product-content .price {
  margin-top: calc(5px + 2 * (100vw - 320px) / 1600);
  color: rgba(var(--theme-green), 1);
  font-weight: 500;
}
.product-box-list .vertical-product-box .product-content .quantity-box {
  padding: 5px;
  width: 80px;
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 8px;
  right: 0;
  background-color: rgba(var(--content-color), 0.05);
}
@media (max-width: 767.98px) {
  .product-box-list .vertical-product-box .product-content .quantity-box {
    display: none;
  }
}
.product-box-list .vertical-product-box .product-content .quantity-box button {
  padding: 0;
  border: none;
  width: 100%;
  color: rgba(var(--title-color), 1);
  font-size: calc(14px + 2 * (100vw - 320px) / 1600);
}
.product-box-list .vertical-product-box .product-content .quantity-box input {
  padding: 0;
  border: unset;
  color: rgba(var(--title-color), 1);
  background-color: transparent;
  text-align: center;
  font-size: 14px;
}
.product-box-list .vertical-product-box .product-content .cart-btn {
  padding: 0;
  display: inline-block;
  position: relative;
  inset: unset;
  background-color: transparent;
  font-size: calc(15px + 2 * (100vw - 320px) / 1600);
  overflow: hidden;
  margin-top: calc(5px + 2 * (100vw - 320px) / 1600);
  color: rgba(var(--primary-color2), 1);
  border-radius: 0;
}
.product-box-list .vertical-product-box .product-content .cart-btn::before {
  bottom: 0;
  left: 0;
  background-color: rgba(var(--primary-color2), 1);
  transition: 0.5s;
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
}
[dir=rtl] .product-box-list .vertical-product-box .product-content .cart-btn::before {
  left: unset;
  right: 0;
}
.product-box-list .vertical-product-box .product-content .cart-btn:hover {
  color: rgba(var(--primary-color2), 1);
}
.product-box-list .vertical-product-box .product-content .cart-btn:hover::before {
  width: 100%;
}
.product-box-list .vertical-product-box .product-content .cart-btn a {
  color: rgba(var(--primary-color2), 1);
}
.product-box-list li.empty-cart {
  text-align: center;
}
.product-box-list li.empty-cart:not(.show) {
  display: none;
}
.product-box-list li.empty-cart img {
  height: 200px;
}
.product-box-list li.empty-cart h4 {
  padding-top: 12px;
}

/* Mixin Files */
/**=====================
    2.12 Pagination scss
==========================**/
.custom-pagination .pagination .page-item.active:hover .page-link {
  background-color: rgba(var(--primary-color), 1);
  border-color: rgba(var(--primary-color), 1);
  color: #fff;
  --Color: #fff;
}
.custom-pagination .pagination .page-item .page-link:hover {
  border: 1px solid rgba(var(--primary-color), 1);
  background-color: rgba(var(--white), 1);
  color: rgba(var(--primary-color), 1);
}
.custom-pagination .pagination .page-item .page-link:focus {
  color: rgba(var(--primary-color), 1);
  background-color: rgba(var(--white), 1);
  box-shadow: none;
}

/* Mixin Files */
/**=====================
    2.13 Rating CSS
==========================**/
.rating {
  display: flex;
  align-items: center;
  gap: 2px;
}
.rating li {
  line-height: 1;
}
.rating li i {
  font-size: calc(13px + 1 * (100vw - 320px) / 1600);
  color: rgba(var(--content-color), 0.3);
}
.rating li i.fill {
  color: rgba(var(--rating), 1);
}

/* Mixin Files */
/**=====================
   2.14 Ratio CSS Start
==========================**/

/* Mixin Files */
/**=====================
    2.15 Sidebar Category CSS
==========================**/
.category-full-box .category-menu-list .sub-menu-list li .sub-category-box:hover {
  background-color: #EAEDED;
  border-color: rgba(var(--primary-color), 1);
}
body.dark .category-full-box .category-menu-list .sub-menu-list li .sub-category-box:hover {
  background-color: #131921;
}
.category-full-box .category-menu-list .sub-menu-list li .sub-category-box:hover::after {
  content: "\f2e5";
}
.category-full-box .category-menu-list .sub-menu-list li .sub-category-box::after {
  color: rgba(var(--content-color), 1);
  font-size: 18px;
  margin-left: auto;
  transition: all 0.5s ease-in-out;
  content: "\ea6e";
  position: relative;
  font-family: remixicon;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
}
[dir=rtl] .category-full-box .category-menu-list .sub-menu-list li .sub-category-box::after {
  margin-left: unset;
  margin-right: auto;
}
.category-menu-list-2 .sub-menu-list li:hover {
  background-color: #EAEDED;
  border-color: rgba(var(--primary-color), 1);
}
body.dark .category-menu-list-2 .sub-menu-list li:hover {
  background-color: rgba(218, 238, 235, 0.3019607843);
}
.category-menu-list-2 .sub-menu-list li:hover .sub-category-box::after {
  content: "\f2e5";
}
.category-menu-list-2 .sub-menu-list li .sub-category-box::after {
  color: rgba(var(--content-color), 1);
  font-size: 18px;
  margin-left: auto;
  transition: all 0.5s ease-in-out;
  content: "\ea6e";
  position: relative;
  font-family: remixicon;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
}
[dir=rtl] .category-menu-list-2 .sub-menu-list li .sub-category-box::after {
  margin-left: unset;
  margin-right: auto;
}

/* Mixin Files */
/**=====================
    2.16 Slider CSS
==========================**/

/* Mixin Files */
/**=====================
    2.17 Typography CSS
==========================**/
.order-table tbody tr:hover td .checkout-product-box .product-image img {
  transform: scale(1.05) rotate(-3deg);
}
.order-table tbody tr:hover td .checkout-product-box .product-contain h5 {
  color: rgba(var(--primary-color), 1);
}
.order-table tbody tr:hover td .checkout-product-box .product-contain h5 span {
  color: rgba(var(--title-color), 1);
}

/* Mixin Files */
/**=====================
    2.18 Title CSS
==========================**/
.title-flex {
  flex-wrap: wrap;
  gap: calc(6px + 9 * (100vw - 320px) / 1600);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.title-flex h3 {
  display: flex;
  align-items: center;
  gap: 4px;
}
.title-flex h3 i {
  margin-top: -5px;
  line-height: 1;
  font-size: calc(16px + 6 * (100vw - 320px) / 1600);
}
.title-flex h3 span {
  font-size: calc(16px + 4 * (100vw - 320px) / 1600);
  color: rgba(var(--primary-color2), 1);
}
@media (max-width: 767.98px) {
  .title-flex h3 {
    display: block;
  }
}
.title-flex a {
  color: rgba(var(--content-color), 1);
}

.title {
  margin-bottom: calc(13px + 7 * (100vw - 320px) / 1600);
  display: flex;
  align-items: center;
  gap: calc(6px + 9 * (100vw - 320px) / 1600);
}
.title h3 {
  font-weight: 500;
  font-size: calc(16px + 10 * (100vw - 320px) / 1600);
}
.title p {
  font-weight: 500;
  font-size: calc(14px + 2 * (100vw - 320px) / 1600);
  color: rgba(var(--content-color), 1);
}
@media (max-width: 991.98px) {
  .title p {
    display: none;
  }
}
.title a {
  font-size: calc(14px + 2 * (100vw - 320px) / 1600);
  font-weight: 500;
  color: rgba(var(--content-color), 1);
  display: flex;
  align-items: center;
  line-height: 1;
}
@media (max-width: 575.98px) {
  .title a {
    display: none;
  }
}
.title a i {
  margin-top: -6px;
}

.title-2 {
  margin-bottom: calc(13px + 7 * (100vw - 320px) / 1600);
}
.title-2 h3 {
  font-weight: 500;
  text-transform: capitalize;
  font-size: calc(16px + 8 * (100vw - 320px) / 1600);
  line-height: 1.4;
}
.title-timer .title-timer .counter + .counter span::before {
  content: ":";
  margin-right: 4px;
  margin-top: -1px;
}
[dir=rtl] .title-timer .title-timer .counter + .counter span::before {
  margin-right: unset;
  margin-left: 4px;
}
.title-nav-pills .nav-item .nav-link::before {
  bottom: -2px;
  left: 0;
  background-color: rgba(var(--content-color), 1);
  transition: 0.5s ease-in-out;
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
}
[dir=rtl] .title-nav-pills .nav-item .nav-link::before {
  left: unset;
  right: 0;
}
.title-nav-pills .nav-item .nav-link:hover::before {
  width: 100%;
  background-color: rgba(var(--primary-color), 1);
}
.title-nav-pills .nav-item .nav-link.active::before {
  width: 100%;
  background-color: rgba(var(--primary-color), 1);
}
.title-nav-pills.theme-nav-color .nav-item .nav-link:hover::before {
  background-color: rgba(var(--primary-color), 1);
}
.title-nav-pills-2 .nav-item .nav-link::before {
  bottom: -2px;
  background-color: rgba(var(--content-color), 1);
  transition: 0.5s ease-in-out;
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
}
.title-nav-pills-2 .nav-item .nav-link:hover::before {
  width: 85%;
  background-color: rgba(var(--primary-color), 1);
}
.title-nav-pills-2 .nav-item .nav-link.active::before {
  width: 85%;
  background-color: rgba(var(--primary-color), 1);
}
.title-theme-nav .nav-item .nav-link::before {
  bottom: -3px;
  left: 0;
  background-color: rgba(var(--primary-color), 1);
  transition: 0.5s ease-in-out;
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
}
[dir=rtl] .title-theme-nav .nav-item .nav-link::before {
  left: unset;
  right: 0;
}
.title-theme-nav .nav-item .nav-link:hover::before {
  width: 100%;
  background-color: rgba(var(--primary-color), 1);
}

.title-slider-button {
  display: flex;
  align-items: center;
  gap: calc(6px + 9 * (100vw - 320px) / 1600);
  flex-wrap: wrap;
}
.slider-button .swiper-btn-next::after,
.slider-button .swiper-btn-prev::after {
  content: none;
}

.slider-button-sm {
  position: relative;
  flex-wrap: wrap;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.slider-button-sm .swiper-btn-next,
.slider-button-sm .swiper-btn-prev {
  position: relative;
  z-index: 0;
  inset: unset;
  border: none;
  background-color: rgba(var(--light-gray), 1);
  border-radius: 8px;
  font-size: 18px;
  margin: 0;
  color: rgba(var(--title-color), 1);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}
.slider-button-sm .swiper-btn-next.swiper-button-disabled,
.slider-button-sm .swiper-btn-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.slider-button-sm .swiper-btn-next::after,
.slider-button-sm .swiper-btn-prev::after {
  content: none;
}

/* Layout Files */
/*-----------------------------------------------------------------------------------
Template Name: Kartify - 
Template URI: https://themes.pixelstrap.com/kartify/
Description: This is E-commerce website
Author: Pixelstrap
Author URI: https://themeforest.net/user/pixelstrap
-----------------------------------------------------------------------------------

1. Base Files
	1.1 Reset CSS
	1.2 Typography CSS

2. Components Files
	2.1 Accordion CSS
	2.2 Brand CSS
	2.3 Breadcrumb CSS
	2.4 Buttons CSS
	2.5 Dropdown CSS
	2.6 Form CSS 
	2.7 Layzload CSS
	2.8 Light Gallery CSS
	2.9 Modal CSS
	2.10 Nav-tabs CSS
	2.11 Offcanvas CSS
	2.12 Pagination CSS
	2.13 Rating CSS
	2.14 Ratio CSS
	2.15 Sidebar Category CSS
	2.16 Slider CSS
	2.17 Table CSS
	2.18 Title CSS

3. Layout Files
    3.1 Banner CSS
    3.2 Category CSS
    3.3 Cookie Bar CSS
    3.4 Footer CSS
    3.5 Header CSS
    3.6 Hone CSS
    3.7 Mobile Menu CSS
    3.8 Nav CSS
    3.9 Newsletter CSS
    3.10 Product CSS
    3.11 Service CSS

4. Pages Files
    4.1 Blog Page CSS
    4.2 Checkout CSS
    4.3 Inner Page CSS
    4.4 Portfolio CSS
    4.5 Product Page CSS
    4.6 Shop Page CSS
    4.7 Vendor Page CSS

5. Templates Files
    5.1 Dark CSS

6. Utils Files
    6.1 Mixin Files
        6.1.1 Animation CSS
        6.1.2 Common CSS
    6.2 Variables CSS */
/* Util Files */
/* Mixin Files */
/**=====================
    3.1 Banner CSS
==========================**/

.banner-box {
  overflow: hidden;
  display: block;
}
.banner-newsletter-section .banner-box .circle::after {
  border: 3px solid #fff;
  border-radius: 100%;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
.banner-newsletter-section .banner-box .circle::before {
  border: 3px solid #ffd1de;
  border-radius: 100%;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.banner-newsletter-section .banner-box .circle-2::after {
  border: 3px solid #fff;
  border-radius: 100%;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
.banner-newsletter-section .banner-box .circle-2::before {
  border: 3px solid #ffd1de;
  border-radius: 100%;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.banner-newsletter-section .banner-box .star-1::before {
  content: "";
  background-color: rgba(94, 98, 120, 0.5019607843);
  display: block;
  margin-bottom: -7px;
  margin-inline: auto;
  width: 1px;
  height: 59px;
}
.banner-newsletter-section .banner-box .star-2::before {
  content: "";
  background-color: rgba(94, 98, 120, 0.5019607843);
  display: block;
  margin-bottom: -7px;
  margin-inline: auto;
  width: 1px;
  height: 78px;
}
.banner-newsletter-section .banner-box .star-3::before {
  content: "";
  background-color: rgba(94, 98, 120, 0.5019607843);
  display: block;
  margin-bottom: -7px;
  margin-inline: auto;
  width: 1px;
  height: 65px;
}
.shopping-section .banner-box::before {
  z-index: 1;
  left: 0;
  bottom: 0;
  background-image: url(../svg/shipping.svg);
  transform: scaleY(-1);
  background-repeat: no-repeat;
  content: "";
  position: absolute;
  width: 100%;
  height: 11px;
}
body.dark .shopping-section .banner-box::before {
  background-image: url(../svg/shipping-dark.svg);
  transform: scaleY(1);
  bottom: -4px;
}
.shopping-section .banner-box::after {
  z-index: 1;
  left: 0;
  content: "";
  position: absolute;
  top: 0;
  background-image: url(../svg/shipping.svg);
  background-repeat: no-repeat;
  content: "";
  position: absolute;
  width: 100%;
  height: 11px;
}
body.dark .shopping-section .banner-box::after {
  top: -4px;
  transform: scaleY(-1);
  background-image: url(../svg/shipping-dark.svg);
}
.shopping-section .banner-box > .row > div + div::before {
  background-color: rgba(94, 98, 120, 0.502);
  left: 0;
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 39px;
}
[dir=rtl] .shopping-section .banner-box > .row > div + div::before {
  left: unset;
  right: 0;
}
@media (max-width: 767.98px) {
  .shopping-section .banner-box > .row > div + div::before {
    content: none;
  }
}
@media (max-width: 1199.98px) {
  .shopping-section .banner-box > .row > div:last-child::before {
    content: none;
  }
}
.banner-box-17 .banner-contain h3::before, .banner-box-17 .banner-contain h3::after {
  top: 50%;
  border-radius: 100%;
  content: "";
  position: absolute;
  width: 60px;
  height: 2px;
}
.banner-box-17 .banner-contain h3::before {
  left: -50px;
  background: linear-gradient(90deg, rgba(var(--primary-color), 1) 12.3%, rgba(var(--primary-color), 0) 72.13%);
}
.banner-box-17 .banner-contain h3::after {
  right: -50px;
  background: linear-gradient(-90deg, rgba(var(--primary-color), 1) 12.3%, rgba(var(--primary-color), 0) 72.13%);
}
.banner-box-17 .banner-contain .banner-timer li > div .counter::before {
  bottom: -2px;
  background-color: rgba(var(--primary-color), 1);
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
}

/* Mixin Files */
/**=====================
    3.2 Category CSS
==========================**/
.category-box:hover h5 {
  color: rgba(var(--title-color), 1);
}

.category-bg-color {
  background-color: rgba(var(--white), 1);
  height: 100%;
  overflow: hidden;
}
.category-bg-color > div {
  z-index: 0;
  padding: calc(9px + 11 * (100vw - 320px) / 1600) calc(12px + 13 * (100vw - 320px) / 1600);
}
.category-bg-color .category-box-2 {
  text-align: center;
}
.category-bg-color .category-box-2:hover .category-image img {
  transform: scale(1.07);
}
.category-bg-color .category-box-2:hover h6 {
  color: rgba(var(--title-color), 1);
}
.category-bg-color .category-box-2 .category-image {
  background-color: #f2f3f8;
  border-radius: 100%;
  margin-inline: auto;
  overflow: hidden;
  width: calc(92px + 8 * (100vw - 320px) / 1600);
  height: calc(92px + 8 * (100vw - 320px) / 1600);
}
.category-bg-color .category-box-2 .category-image img {
  transition: all 0.15s ease-in-out;
}
.category-bg-color .category-box-2 h6 {
  word-break: break-all;
  margin-top: calc(8px + 7 * (100vw - 320px) / 1600);
  font-weight: 500;
  color: rgba(var(--content-color), 1);
  font-size: 14px;
  transition: all 0.15s ease-in-out;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}

.product-category:hover .hover-box {
  bottom: 0;
}
.product-category .wishlistProduct.show::after {
  transform: scale(1);
}
.product-category .hover-box a::after {
  left: 0;
  top: 0;
  background-color: #ffe500;
  transform: scale(0);
  z-index: -1;
  border-radius: 100%;
  transition: all 0.5s ease;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
}
.product-category .hover-box a:hover {
  color: #202326;
  transition: all 0.5s ease;
}
.product-category .hover-box a:hover::after {
  transform: scale(1);
}

.category-box-2 .category-image {
  border-radius: 5px;
  overflow: hidden;
}
.category-box-2 .category-image img {
  aspect-ratio: 32/33;
}
.category-section .category-slide-2 .category-button::after {
  content: unset;
}

/* Mixin Files */
/**=====================
    3.3 Cookie Bar CSS
==========================**/

.cookie.hide {
  bottom: -50px;
  opacity: 0;
  visibility: hidden;
}

/* Mixin Files */
/**=====================
    3.4 Footer CSS
==========================**/
.footer-section .main-footer .social-icon-box .social-icon-list li + li::before {
  left: -2px;
  background-color: rgba(var(--content-color), 0.2);
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 14px;
}
[dir=rtl] .footer-section .main-footer .social-icon-box .social-icon-list li + li::before {
  left: unset;
  right: -2px;
}
.footer-section .main-footer .footer-list li a::before,
.footer-section .main-footer .footer-list-2 li a::before {
  bottom: 0;
  left: 0;
  background-color: rgba(var(--content-color), 0.3);
  transition: 0.3s ease-in-out;
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
}
[dir=rtl] .footer-section .main-footer .footer-list li a::before,
[dir=rtl] .footer-section .main-footer .footer-list-2 li a::before {
  left: unset;
  right: 0;
}
@media (max-width: 575.98px) {
  .footer-section .main-footer .footer-list li a::before,
  .footer-section .main-footer .footer-list-2 li a::before {
    position: relative;
    inset: unset;
    display: block;
    border-radius: 100%;
    background-color: rgba(var(--title-color), 0.7);
    width: calc(4px + 1 * (100vw - 320px) / 256);
    height: calc(4px + 1 * (100vw - 320px) / 256);
  }
}
.footer-section .main-footer .footer-list li a:hover,
.footer-section .main-footer .footer-list-2 li a:hover {
  color: rgba(var(--title-color), 1);
}
.footer-section .main-footer .footer-list li a:hover::before,
.footer-section .main-footer .footer-list-2 li a:hover::before {
  width: 100%;
  background-color: rgba(var(--title-color), 0.8);
}
@media (max-width: 575.98px) {
  .footer-section .main-footer .footer-list li a:hover::before,
  .footer-section .main-footer .footer-list-2 li a:hover::before {
    background-color: rgba(var(--title-color), 0.7);
    width: 5px;
  }
}
.footer-section .main-footer.light-b-bottom .footer-list li a:hover,
.footer-section .main-footer.light-b-bottom .footer-list-2 li a:hover {
  color: rgb(255, 255, 255);
}
.footer-section .main-footer.light-b-bottom .footer-list li a:hover::before,
.footer-section .main-footer.light-b-bottom .footer-list-2 li a:hover::before {
  background-color: rgba(255, 255, 255, 0.8);
}

.footer-section-2 {
  background-color: rgb(21, 21, 21);
}
.footer-section-2 .main-footer {
  padding-block: calc(22px + 24 * (100vw - 320px) / 1600) calc(15px + 23 * (100vw - 320px) / 1600);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.footer-section-2 .main-footer .footer-title,
.footer-section-2 .main-footer .footer-title-2 {
  margin-bottom: calc(8px + 10 * (100vw - 320px) / 1600);
}
@media (max-width: 575.98px) {
  .footer-section-2 .main-footer .footer-title,
  .footer-section-2 .main-footer .footer-title-2 {
    cursor: pointer;
  }
}
.footer-section-2 .main-footer .footer-title h4,
.footer-section-2 .main-footer .footer-title-2 h4 {
  font-weight: 500;
  color: #fff;
  font-size: calc(17px + 3 * (100vw - 320px) / 1600);
}
@media (max-width: 575.98px) {
  .footer-section-2 .main-footer .footer-title {
    margin: 0;
  }
}
.footer-section-2 .main-footer .footer-content-list {
  margin-bottom: calc(10px + 7 * (100vw - 320px) / 1600);
  display: flex;
  flex-wrap: wrap;
  gap: calc(8px + 2 * (100vw - 320px) / 1600);
}
.footer-section-2 .main-footer .footer-content-list li {
  width: 100%;
  display: block;
}
.footer-section-2 .main-footer .footer-content-list li:first-child .content-box {
  color: rgba(var(--primary-color3), 1);
  display: flex;
  align-items: center;
  gap: calc(7px + 4 * (100vw - 320px) / 1600);
}
.footer-section-2 .main-footer .footer-content-list li:first-child .content-box h4 {
  width: calc(100% - (24px + 5 * (100vw - 320px) / 1600) - (7px + 4 * (100vw - 320px) / 1600));
  font-weight: 400;
  font-size: calc(18px + 2 * (100vw - 320px) / 1600);
}
.footer-section-2 .main-footer .footer-content-list li:first-child .content-box.theme-color {
  color: rgba(var(--primary-color), 1);
}
.footer-section-2 .main-footer .footer-content-list li .content-box {
  color: rgba(var(--white), 0.5);
  display: flex;
  align-items: center;
  gap: calc(7px + 4 * (100vw - 320px) / 1600);
}
.footer-section-2 .main-footer .footer-content-list li .content-box h5 {
  width: calc(100% - (24px + 5 * (100vw - 320px) / 1600) - (7px + 4 * (100vw - 320px) / 1600));
}
.footer-section-2 .main-footer .social-icon-box {
  display: flex;
  align-items: center;
  gap: calc(6px + 4 * (100vw - 320px) / 1600);
}
.footer-section-2 .main-footer .social-icon-box h5 {
  color: rgba(var(--white), 0.5);
}
.footer-section-2 .main-footer .social-icon-box .social-icon-list li {
  position: relative;
}
.footer-section-2 .main-footer .social-icon-box .social-icon-list li:hover a {
  color: rgba(var(--white), 0.9);
}
body.dark .footer-section-2 .main-footer .social-icon-box .social-icon-list li:hover a {
  color: rgba(255, 255, 255, 0.9);
}
.footer-section-2 .main-footer .social-icon-box .social-icon-list li + li {
  margin-left: 6px;
  padding-left: 6px;
}
.footer-section-2 .main-footer .social-icon-box .social-icon-list li + li::before {
  left: -2px;
  background-color: rgba(var(--white), 0.2);
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 14px;
}
[dir=rtl] .footer-section-2 .main-footer .social-icon-box .social-icon-list li + li::before {
  left: unset;
  right: -2px;
}
body.dark .footer-section-2 .main-footer .social-icon-box .social-icon-list li + li::before {
  background-color: rgba(255, 255, 255, 0.2);
}
.footer-section-2 .main-footer .social-icon-box .social-icon-list li a {
  color: rgba(var(--white), 0.5);
  font-size: calc(15px + 2 * (100vw - 320px) / 1600);
  line-height: 1;
  transition: 0.3s ease-in-out;
}
.footer-section-2 .main-footer .footer-list {
  display: flex;
  flex-wrap: wrap;
  gap: calc(2px + 7 * (100vw - 320px) / 1600);
}
.footer-section-2 .main-footer .footer-list li {
  width: 100%;
  display: block;
}
.footer-section-2 .main-footer .footer-list li:hover a,
.footer-section-2 .main-footer .footer-list-2 li:hover a {
  color: rgba(var(--white), 0.9);
}
body.dark .footer-section-2 .main-footer .footer-list li:hover a,
body.dark .footer-section-2 .main-footer .footer-list-2 li:hover a {
  color: rgba(255, 255, 255, 0.9);
}
.footer-section-2 .main-footer .footer-list li:hover a::after,
.footer-section-2 .main-footer .footer-list-2 li:hover a::after {
  width: 100%;
  background-color: rgba(var(--white), 0.9);
}
@media (max-width: 575.98px) {
  .footer-section-2 .main-footer .footer-list li:hover a::after,
  .footer-section-2 .main-footer .footer-list-2 li:hover a::after {
    width: 5px;
  }
}
body.dark .footer-section-2 .main-footer .footer-list li:hover a::after,
body.dark .footer-section-2 .main-footer .footer-list-2 li:hover a::after {
  background-color: rgba(255, 255, 255, 0.9);
}
.footer-section-2 .main-footer .footer-list li a {
  font-weight: 400;
  font-size: calc(14px + 2 * (100vw - 320px) / 1600);
  color: rgba(var(--white), 0.5);
  display: inline-block;
  position: relative;
  transition: 0.3s ease-in-out;
}
@media (max-width: 575.98px) {
  .footer-section-2 .main-footer .footer-list li a {
    margin-left: 5px;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: start;
    gap: calc(6px + 4 * (100vw - 320px) / 256);
  }
}
.footer-section-2 .main-footer .footer-list li a::after,
.footer-section-2 .main-footer .footer-list-2 li a::after {
  bottom: 0;
  left: 0;
  background-color: rgba(var(--white), 0.5);
  transition: 0.3s ease-in-out;
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
}
[dir=rtl] .footer-section-2 .main-footer .footer-list li a::after,
[dir=rtl] .footer-section-2 .main-footer .footer-list-2 li a::after {
  left: unset;
  right: 0;
}
body.dark .footer-section-2 .main-footer .footer-list li a::after,
body.dark .footer-section-2 .main-footer .footer-list-2 li a::after {
  background-color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 575.98px) {
  .footer-section-2 .main-footer .footer-list li a::after,
  .footer-section-2 .main-footer .footer-list-2 li a::after {
    position: relative;
    inset: unset;
    display: block;
    border-radius: 100%;
    background-color: rgba(var(--content-color), 0.7);
    width: calc(4px + 1 * (100vw - 320px) / 256);
    height: calc(4px + 1 * (100vw - 320px) / 256);
  }
  [dir=rtl] .footer-section-2 .main-footer .footer-list li a::after,
  [dir=rtl] .footer-section-2 .main-footer .footer-list-2 li a::after {
    inset: unset;
  }
}
.footer-section-2 .main-footer .footer-list li p {
  font-weight: 400;
  font-size: calc(14px + 2 * (100vw - 320px) / 1600);
  color: rgba(var(--white), 0.5);
  display: inline-block;
  position: relative;
  transition: 0.3s ease-in-out;
}
.footer-section-2 .sub-footer {
  padding-block: 14px 13px;
  flex-wrap: wrap;
  gap: calc(7px + 8 * (100vw - 320px) / 1600);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767.98px) {
  .footer-section-2 .sub-footer {
    justify-content: center;
  }
}
@media (max-width: 575.98px) {
  .footer-section-2 .sub-footer {
    margin-bottom: calc(79px + 7 * (100vw - 320px) / 256);
  }
}
.footer-section-2 .sub-footer .sub-footer-logo {
  width: auto;
  height: calc(37px + 13 * (100vw - 320px) / 1600);
}
/* Mixin Files */
/**=====================
    3.5 Header CSS
==========================**/

.header-style-1 {
  position: relative;
  z-index: 2;
  transition: all 0.15s ease-in-out;
}
@media (max-width: 1199.98px) {
  .header-style-1 {
    z-index: unset;
  }
  .header-style-1:has(.search-overlay.show) {
    z-index: 10;
  }
}
.header-style-1.sticky-header {
  z-index: 3;
}
@media (max-width: 1199.98px) {
  .header-style-1.sticky-header {
    z-index: 9;
  }
}
.header-style-1.sticky-header .main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}
.header-style-1 .top-header .left-header .dropdown-box > ul > li .theme-form-select .dropdown-toggle:active {
  border-color: transparent;
}
.header-style-1 .top-header .left-header .dropdown-box > ul > li .theme-form-select .dropdown-toggle:focus {
  box-shadow: none;
}
.header-style-1 .top-header .left-header .dropdown-box > ul > li .theme-form-select .dropdown-toggle::after {
  margin-left: 3px;
  right: 0;
  color: rgba(var(--white), 1);
  border: none;
  vertical-align: unset;
  font-size: 17px;
  margin-top: 0;
  content: "\ea4e";
  position: relative;
  font-family: remixicon;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
}
[dir=rtl] .header-style-1 .top-header .left-header .dropdown-box > ul > li .theme-form-select .dropdown-toggle::after {
  margin-left: unset;
  margin-right: 3px;
}
body.dark .header-style-1 .top-header .left-header .dropdown-box > ul > li .theme-form-select .dropdown-toggle::after {
  color: #fff;
}
.header-style-1 .top-header .left-header .dropdown-box > ul > li .theme-form-select .dropdown-menu li .dropdown-item:hover, .header-style-1 .top-header .left-header .dropdown-box > ul > li .theme-form-select .dropdown-menu li .dropdown-item:focus {
  background-color: transparent;
}
 .header-style-1 .top-header .left-header .dropdown-box > ul > li .theme-form-select .dropdown-menu li .dropdown-item:active {
  color: rgba(var(--title-color), 1);
  background-color: transparent;
}
.header-style-1 .top-header .left-header .social-box .social-list li:hover a {
  color: rgba(var(--primary-color), 1);
}
body.dark .header-style-1 .top-header .left-header .social-box .social-list li:hover a {
  color: rgba(var(--primary-color), 1);
}
.header-style-1 .top-header .left-header .social-box .social-list li:hover a::before {
  width: 100%;
  background-color: rgba(var(--primary-color), 1);
}
.header-style-1 .top-header .left-header .social-box .social-list li a::before {
  bottom: 0;
  left: 0;
  background-color: rgba(var(--white), 1);
  transition: all 0.5s ease-in-out;
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
}
.header-style-1 .top-header .right-header .content-list li:hover a {
  color: rgba(var(--primary-color), 1);
}
body.dark .header-style-1 .top-header .right-header .content-list li:hover a {
  color: rgba(var(--primary-color), 1);
}
.header-style-1 .top-header .right-header .content-list li:hover a::before {
  width: 100%;
  background-color: rgba(var(--primary-color), 1);
}
.header-style-1 .top-header .right-header .content-list li a::before {
  bottom: 0;
  left: 0;
  background-color: #fff;
  transition: all 0.5s ease-in-out;
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
}
[dir=rtl] .header-style-1 .top-header .right-header .content-list li a::before {
  left: unset;
  right: 0;
}
.header-style-1 .main-header {
  padding-block: calc(10px + 5 * (100vw - 320px) / 1600);
  background-color: rgba(var(--theme-blue), 1);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991.98px) {
  .header-style-1 .main-header {
    gap: 25px;
  }
}
.header-style-1 .main-header .left-header {
  display: flex;
  align-items: center;
}
.header-style-1 .main-header .left-header .header-logo {
  height: calc(36px + 14 * (100vw - 320px) / 1600);
}
@media (max-width: 991.98px) {
  .header-style-1 .main-header .middle-header {
    padding: 14px;
    left: 0;
    display: block;
    transform: translateY(-50%);
    opacity: 0;
    visibility: hidden;
    position: absolute;
    padding-inline: calc(15px + 145 * (100vw - 320px) / 1600);
    transition: all 0.5s ease-in-out;
    background-color: rgba(var(--white), 1);
    z-index: 2;
    top: 0;
    position: fixed;
    width: 100%;
    height: auto;
  }
  .header-style-1 .main-header .middle-header.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .header-style-1 .main-header .middle-header .result-box {
    z-index: unset;
    margin-top: 12px;
    position: relative;
    inset: unset;
    overflow: auto;
    height: calc(100vh - (82px + 4 * (100vw - 320px) / 672));
  }
}
.header-style-1 .main-header .middle-header .close-icon {
  right: 10px;
  cursor: pointer;
  display: none;
  position: absolute;
  color: rgba(var(--content-color), 1);
  z-index: 1;
  font-size: calc(16px + 5 * (100vw - 320px) / 672);
  line-height: 1;
  top: 50%;
  transform: translateY(-50%);
  width: unset;
  height: unset;
}
@media (max-width: 991.98px) {
  .header-style-1 .main-header .middle-header .close-icon {
    display: block;
  }
}
.header-style-1 .main-header .middle-header .close-icon i {
  font-size: 21px;
}
@media (max-width: 991.98px) {
  .header-style-1 .main-header .middle-header .close-icon i {
    font-size: calc(16px + 5 * (100vw - 320px) / 672);
  }
}
@media (min-width: 992px) {
  .header-style-1 .main-header .middle-header .search-form {
    position: relative;
    inset: unset;
    display: flex;
    transform: unset;
    background-color: transparent;
    visibility: visible;
    z-index: 2;
    width: max-content;
    height: max-content;
  }
}
.header-style-1 .main-header .middle-header .search-form .input-group {
  z-index: 2;
  flex-wrap: nowrap;
}
.header-style-1 .main-header .middle-header .search-form .input-group .form-control {
  border: none;
  padding: 15px;
  font-weight: 400;
  font-size: 14px;
  width: 780px;
  color: rgba(var(--title-color), 1);
  z-index: 0;
}
.header-style-1 .main-header .middle-header .search-form .input-group .form-control::placeholder {
  color: rgba(var(--content-color), 1);
}
@media (max-width: 1667px) {
  .header-style-1 .main-header .middle-header .search-form .input-group .form-control {
    width: 690px;
  }
}
@media (max-width: 1550px) {
  .header-style-1 .main-header .middle-header .search-form .input-group .form-control {
    width: 590px;
  }
}
@media (max-width: 1420px) {
  .header-style-1 .main-header .middle-header .search-form .input-group .form-control {
    width: 450px;
  }
}
@media (max-width: 1254px) {
  .header-style-1 .main-header .middle-header .search-form .input-group .form-control {
    width: 290px;
  }
}
@media (max-width: 1061px) {
  .header-style-1 .main-header .middle-header .search-form .input-group .form-control {
    border-radius: 0 6px 6px 0 !important;
    border: none;
    margin: 0 !important;
  }
}
@media (max-width: 992px) {
  .header-style-1 .main-header .middle-header .search-form .input-group .form-control {
    width: 100%;
    background-color: #f2f3f6;
    border-radius: 0 5px 5px 0 !important;
  }
}
.header-style-1 .main-header .middle-header .search-form .input-group .input-group-text .dropdown .dropdown-toggle::after {
  content: "\ea4e";
  color: rgba(var(--content-color), 1);
  font-size: 18px;
  margin: 0 0 0 5px;
  font-family: remixicon;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
}
[dir=rtl] .header-style-1 .main-header .middle-header .search-form .input-group .input-group-text .dropdown .dropdown-toggle::after {
  margin: 0 5px 0 0;
}
body.dark .header-style-1 .main-header .middle-header .search-form .input-group .input-group-text .dropdown .dropdown-menu li .dropdown-item:hover {
  background-color: #131921;
}
.header-style-1 .main-header .middle-header .search-form .input-group .input-group-text .dropdown .dropdown-menu li .dropdown-item:active {
  background-color: rgba(var(--base-gray), 1);
}
.header-style-1 .main-header .middle-header .search-form .input-group .search-button {
  background-color: rgba(var(--primary-color), 1);
  border: 1px solid transparent;
  padding: 14px 15px;
  line-height: 1;
  font-size: 19px;
  border-radius: 5px;
  color: #fff;
  z-index: 1;
}
@media (max-width: 1061px) {
  .header-style-1 .main-header .middle-header .search-form .input-group .search-button {
    position: absolute;
    right: 0;
    border: none;
    height: 100%;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media (max-width: 991.98px) {
  .header-style-1 .main-header .middle-header .search-form .input-group .search-button {
    display: none;
  }
}
.header-style-1 .main-header .middle-header .search-form .input-group .search-button-light {
  background-color: rgb(78, 145, 255);
}
.header-style-1 .main-header .right-header .header-icon {
  display: flex;
  align-items: center;
  gap: 14px;
}
@media (max-width: 991.98px) {
  .header-style-1 .main-header .right-header .header-icon {
    gap: calc(8px + 6 * (100vw - 320px) / 280);
  }
}
.header-style-1 .main-header .right-header .header-icon > li {
  position: relative;
}
@media (max-width: 575.98px) {
  .header-style-1 .main-header .right-header .header-icon > li {
    display: none;
  }
}
@media (max-width: 575.98px) {
  .header-style-1 .main-header .right-header .header-icon > li:first-child, .header-style-1 .main-header .right-header .header-icon > li:last-child {
    display: block;
  }
}
.header-style-1 .main-header .right-header .header-icon > li.contact-list {
  margin-right: 9px;
}
@media (max-width: 991.98px) {
  .header-style-1 .main-header .right-header .header-icon > li.contact-list {
    margin-right: 0;
  }
}
.header-style-1 .main-header .right-header .header-icon > li:first-child {
  display: none;
}
@media (max-width: 991.98px) {
  .header-style-1 .main-header .right-header .header-icon > li:first-child {
    display: block;
  }
}
.header-style-1 .main-header .right-header .header-icon > li > a {
  color: rgba(var(--white), 1);
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}
.header-style-1 .main-header .right-header .header-icon > li > a .label {
  position: absolute;
  padding-top: 1px;
  top: -4px;
  right: -6px;
  color: #fff;
  background-color: rgba(var(--primary-color2), 1);
  border-radius: 100%;
  font-size: calc(10px + 2 * (100vw - 320px) / 1600);
  font-weight: 500;
  width: calc(13px + 5 * (100vw - 320px) / 1600);
  height: calc(13px + 5 * (100vw - 320px) / 1600);
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-style-1 .main-header .right-header .header-icon > li > a .label span {
  margin-top: calc(0px + 2.6 * (100vw - 320px) / 1600);
  line-height: 1;
}
.header-style-1 .main-header .right-header .header-icon > li > a i {
  font-size: 25px;
  color: #fff;
}
@media (max-width: 991.98px) {
  .header-style-1 .main-header .right-header .header-icon > li > a i {
    font-size: calc(17px + 8 * (100vw - 320px) / 672);
  }
}
@media (max-width: 991.98px) {
  .header-style-1 .main-header .right-header .header-icon > li > a > div {
    display: none;
  }
}
.header-style-1 .main-header .right-header .header-icon > li > a h6,
.header-style-1 .main-header .right-header .header-icon > li > a h5 {
  font-size: 14px;
}
.header-style-1 .main-header .right-header .header-icon > li > a h5 {
  margin-bottom: 3px;
}
.header-style-1 .main-header-theme-color {
  background-color: rgba(var(--primary-color3), 1);
}
.header-style-1 .main-dark-header .middle-header .search-form .input-group .form-control::placeholder {
  color: rgba(var(--content-color), 0.8);
}
.header-style-1 .main-dark-header .middle-header .search-form .input-group .input-group-text .dropdown .dropdown-toggle::after {
  content: "\ea4e";
  color: rgba(var(--content-color), 1);
  font-size: 18px;
  font-family: remixicon;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
}
body.dark .header-style-1 .main-dark-header .middle-header .search-form .input-group .input-group-text .dropdown .dropdown-menu li .dropdown-item:hover {
  background-color: #07544f;
}
.header-style-1 .main-dark-header .middle-header .search-form .input-group .input-group-text .dropdown .dropdown-menu li .dropdown-item:active {
  background-color: rgba(var(--base-gray), 1);
}
.header-style-1 .nav-header .category-header .category-button::before {
  bottom: -3px;
  left: 0;
  background-color: rgba(var(--primary-color), 1);
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
}
@media (max-width: 1199.98px) {
  .header-style-1 .nav-header .category-header .category-button::before {
    bottom: 0;
  }
}
.header-style-1 .nav-header .category-header .category-button-2::before {
  content: none;
}
.header-style-1 .nav-light-header {
  background-color: rgba(var(--white), 1);
  color: rgba(var(--title-color), 1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 575.98px) {
  .header-style-1 .nav-light-header {
    height: 0;
  }
}
.header-style-1 .nav-light-header .category-header {
  padding-block: 12px;
}
.header-style-1 .nav-light-header .category-header .category-button {
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  border: none;
  padding: 0;
  gap: 15px;
  display: flex;
  align-items: center;
  line-height: 1;
  position: relative;
  padding: 15px 11px;
  transition: all 0.3s ease;
  border-radius: 4px;
}
.header-style-1 .nav-light-header .category-header .category-button:hover::before {
  background: linear-gradient(90deg, rgb(255, 84, 82) 13.1%, rgb(255, 168, 0) 174.18%);
}
.header-style-1 .nav-light-header .category-header .category-button::before {
  bottom: 0;
  left: 0;
  z-index: -1;
  background-color: rgb(255, 84, 82);
  background: linear-gradient(274.63deg, rgb(255, 84, 82) 13.1%, rgb(255, 168, 0) 174.18%);
  transition: all 0.15s ease-in-out;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
}
.header-style-1 .nav-light-header .category-header .category-button i {
  margin-top: -3px;
  font-size: 20px;
}
.header-style-1 .nav-light-header .category-header .category-button span {
  padding-top: 2px;
}
.header-style-1 .nav-light-header .category-header .category-button.bg-color {
  color: #fff;
  background-color: rgba(var(--primary-color3), 1);
}
.header-style-1 .nav-light-header .category-header .category-button.bg-color::before {
  content: unset;
}
.header-style-1 .recent-header .product-viwer > li + li::before {
  left: 0;
  background-color: rgba(var(--white), 0.2);
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 20px;
}
body.dark .header-style-1 .recent-header .product-viwer > li + li::before {
  background-color: rgba(255, 255, 255, 0.2);
}
[dir=rtl] .header-style-1 .recent-header .product-viwer > li + li::before {
  left: unset;
  right: 0;
}
.header-style-1 .recent-header .product-viwer > li.recent-product .product-link::after {
  content: "\ea4e";
  position: relative;
  font-family: remixicon;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
}
.header-style-1 .recent-light-header .product-viwer > li + li::before {
  left: 0;
  background-color: rgba(var(--title-color), 0.2);
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 20px;
}
[dir=rtl] .header-style-1 .recent-light-header .product-viwer > li + li::before {
  left: unset;
  right: 0;
}
.header-style-1 .recent-light-header .product-viwer > li.recent-product .product-link::after {
  content: "\ea4e";
  position: relative;
  font-family: remixicon;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
}
@media (max-width: 1399.98px) {
  .header-style-1 .recent-light-header .product-viwer > li.recent-product .product-link::after {
    content: none;
  }
}
.header-style-1 .top-header-banner {
  display: none;
}
@media (min-width: 1200px) {
  .header-style-1 .top-header-banner {
    display: block;
  }
}
.header-style-1 .top-header-banner .close-btn {
  position: absolute;
  top: 8px;
  right: 8%;
  padding: 0;
  background-color: rgba(var(--title-color), 1);
  color: rgba(var(--white), 1);
  line-height: 1;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 900;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-style-1 .top-header-banner .discount {
  font-size: 30px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  margin-bottom: -5px;
}
.header-style-1 .top-header-banner .discount .off {
  font-size: 18px;
}
.header-style-2 .top-header::before {
  left: 0;
  bottom: -11px;
  background-image: url(../svg/header-shape.svg);
  z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 11px;
}
body.dark .header-style-2 .top-header::before {
  background-color: #303438;
}
.header-style-2 .top-header .left-header .dropdown-box > ul > li .theme-form-select .dropdown-toggle:active {
  border-color: transparent;
}
.header-style-2 .top-header .left-header .dropdown-box > ul > li .theme-form-select .dropdown-toggle:focus {
  box-shadow: none;
}
.header-style-2 .top-header .left-header .dropdown-box > ul > li .theme-form-select .dropdown-toggle::after {
  margin-left: 3px;
  color: #fff;
  border: none;
  vertical-align: unset;
  font-size: 17px;
  content: "\ea4e";
  position: relative;
  font-family: remixicon;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
}
[dir=rtl] .header-style-2 .top-header .left-header .dropdown-box > ul > li .theme-form-select .dropdown-toggle::after {
  margin-left: unset;
  margin-right: 3px;
}
.header-style-2 .top-header .left-header .dropdown-box > ul > li .theme-form-select .dropdown-menu li .dropdown-item:hover, .header-style-2 .top-header .left-header .dropdown-box > ul > li .theme-form-select .dropdown-menu li .dropdown-item:focus {
  background-color: transparent;
}
 .header-style-2 .top-header .left-header .dropdown-box > ul > li .theme-form-select .dropdown-menu li .dropdown-item:active {
  color: rgba(var(--title-color), 1);
  background-color: transparent;
}
.header-style-2 .top-header .left-header .social-box .social-list li:hover a {
  color: rgba(var(--primary-color), 1);
}
.header-style-2 .top-header .left-header .social-box .social-list li:hover a::before {
  width: 100%;
  background-color: rgba(var(--primary-color), 1);
}
.header-style-2 .top-header .left-header .social-box .social-list li a::before {
  bottom: 0;
  left: 0;
  background-color: #fff;
  transition: all 0.5s ease-in-out;
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
}
[dir=rtl] .header-style-2 .top-header .left-header .social-box .social-list li a::before {
  left: unset;
  right: 0;
}
.header-style-2 .top-header .right-header .content-list li:hover a {
  color: rgba(var(--primary-color), 1);
}
.header-style-2 .top-header .right-header .content-list li:hover a::before {
  width: 100%;
  background-color: rgba(var(--primary-color), 1);
}
.header-style-2 .top-header .right-header .content-list li a::before {
  bottom: 0;
  left: 0;
  background-color: #fff;
  transition: all 0.5s ease-in-out;
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
}
[dir=rtl] .header-style-2 .top-header .right-header .content-list li a::before {
  left: unset;
  right: 0;
}
.header-style-2 .main-header .middle-header .search-form .input-group .form-control::placeholder {
  color: rgba(var(--content-color), 1);
}
.header-style-2 .main-header .middle-header .search-form .input-group .input-group-text .dropdown .dropdown-toggle::after {
  content: "\ea4e";
  color: rgba(var(--content-color), 1);
  font-size: 18px;
  font-family: remixicon;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
}
.header-style-2 .main-header .middle-header .search-form .input-group .input-group-text .dropdown .dropdown-menu li .dropdown-item:hover {
  background-color: rgba(var(--content-color), 0.05);
}
.header-style-2 .main-header .middle-header .search-form .input-group .input-group-text .dropdown .dropdown-menu li .dropdown-item:active {
  background-color: rgba(var(--base-gray), 1);
}
.header-style-2 .nav-header::before {
  left: 0;
  bottom: 0;
  background-image: url(../svg/cloud.svg);
  z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 76px;
}
body.dark .header-style-2 .nav-header::before {
  background-image: url(../svg/dark-cloud.svg);
}
@media (max-width: 575.98px) {
  .header-style-2 .nav-header::before {
    content: none;
  }
}
.header-style-2 .recent-header .product-viwer > li + li::before {
  left: 0;
  background-color: rgba(var(--title-color), 0.3);
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 20px;
}
[dir=rtl] .header-style-2 .recent-header .product-viwer > li + li::before {
  left: unset;
  right: 0;
}
.header-style-2 .recent-header .product-viwer > li.recent-product .product-link::after {
  content: "\ea4e";
  position: relative;
  font-family: remixicon;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
}
.header-style-2 .recent-light-header .product-viwer > li + li::before {
  left: 0;
  background-color: rgba(var(--title-color), 0.4);
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 20px;
}
.header-style-2 .recent-light-header .product-viwer > li.recent-product .product-link::after {
  content: "\ea4e";
  position: relative;
  font-family: remixicon;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
}

.result-box {
  position: absolute;
  top: 110%;
  left: 0;
  z-index: 1;
  background-color: rgba(var(--white), 1);
  border-radius: 5px;
  border: 1px solid rgba(var(--border-color), 1);
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  transition: height 0.15s ease-in-out, opacity 0.15s ease-in-out, visibility 0.15s ease-in-out;
  width: 100%;
  height: 0;
}
.result-box.show {
  height: auto;
  opacity: 1;
  visibility: visible;
}
.result-box .search-border-box {
  padding: calc(12px + 5 * (100vw - 320px) / 1600) calc(12px + 8 * (100vw - 320px) / 1600);
}
.result-box .search-border-box + .search-border-box {
  border-top: 1px solid rgba(var(--border-color), 1);
}
.result-box .search-result-box .result-list-box {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: calc(5px + 4 * (100vw - 320px) / 1600);
}
.result-box .search-result-box .result-list-box li {
  padding: 0;
  display: inline-block;
  width: auto;
}
.result-box .search-result-box .result-list-box li a {
  display: block;
  padding: 11px 12px 8px;
  color: rgba(var(--title-color), 1);
  border-radius: 4px;
  font-weight: 400;
  font-size: calc(13px + 2 * (100vw - 320px) / 1600);
  background-color: rgba(var(--content-color), 0.05);
  outline: 1px solid transparent;
  transition: all 0.15s ease-in-out;
  text-transform: capitalize;
}
@media (max-width: 991.98px) {
  .result-box .search-result-box .result-list-box li a {
    padding: calc(7px + 4 * (100vw - 320px) / 672) calc(8px + 4 * (100vw - 320px) / 672) calc(7px + 1 * (100vw - 320px) / 672);
  }
}
.result-box .search-result-box .result-list-box li a:hover {
  color: rgba(var(--primary-color), 1);
  background-color: transparent;
  outline: 1px solid rgba(var(--primary-color), 1);
}
.result-box .last-search-box .search-list-box li a:hover {
  color: rgba(var(--primary-color), 1);
}
.result-box .last-search-box .search-list-box li a:hover::before, .result-box .last-search-box .search-list-box li a:hover::after {
  color: rgba(var(--primary-color), 1);
}
.result-box .last-search-box .search-list-box li a::before {
  content: "\f20e";
  line-height: 1;
  font-size: calc(17px + 3 * (100vw - 320px) / 1600);
  transition: color 0.15s ease-in-out;
  color: rgba(var(--content-color), 1);
  font-family: remixicon;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
}
.result-box .last-search-box .search-list-box li a::after {
  content: "\eb99";
  line-height: 1;
  font-size: calc(16px + 2 * (100vw - 320px) / 1600);
  transition: color 0.15s ease-in-out;
  color: rgba(var(--content-color), 1);
  margin-left: auto;
  font-family: remixicon;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
}
[dir=rtl] .result-box .last-search-box .search-list-box li a::after {
  margin-left: unset;
  margin-right: auto;
}
.result-box .last-seen-search-box .search-list-box li a:hover img {
  transform: rotate(3deg) scale(1.05);
}
.result-box li {
  list-style: none;
  padding: 8px 12px;
  width: 100%;
  cursor: default;
}

.searchInput.active .result-box li {
  display: block;
}

.search-overlay {
  background-color: rgba(var(--title-color), 0.15);
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  width: 100vw;
  height: 100vh;
}
.search-overlay.show {
  visibility: visible;
  opacity: 1;
}
@media (max-width: 991.98px) {
  .search-overlay.show {
    opacity: 0;
    visibility: hidden;
  }
}

/* Mixin Files */
/**=====================
    3.6 Home CSS
==========================**/

@media (max-width: 767.98px) {
  .baby-home-section .banner-box::before {
    content: none;
  }
}

/**=====================
    3.6 Mobile Menu CSS
==========================**/
.mobile-menu {
  position: fixed;
  bottom: 0;
  padding: 15px 10px 10px;
  width: 100%;
  background-color: rgba(var(--white), 1);
  z-index: 4;
  overflow: hidden;
  box-shadow: 0 -3px 10px 0px rgba(var(--black), 0.08);
}
.mobile-menu ul {
  display: flex;
  width: 100%;
  margin: 0 auto;
}
.mobile-menu ul li {
  width: 100%;
  text-align: center;
}
.mobile-menu ul li.active {
  transition: 0.3s ease;
  position: relative;
}
.mobile-menu ul li.active i {
  color: rgba(var(--primary-color), 1);
}
.mobile-menu ul li.active span {
  color: rgba(var(--primary-color), 1);
}
.mobile-menu ul li a {
  display: block;
  color: rgba(var(--title-color), 1);
}
.mobile-menu ul li a.active, .mobile-menu ul li a:hover {
  color: rgba(var(--title-color), 1);
}
.mobile-menu ul li a i {
  display: block;
  margin: 0 auto;
  font-size: calc(20px + 2 * (100vw - 320px) / 1600);
  color: rgba(var(--content-color), 1);
  line-height: 1;
}
.mobile-menu ul li a span {
  display: inline-block;
  color: rgba(var(--content-color), 0.8);
  line-height: 1;
  margin-top: 5px;
}

/* Mixin Files */
/**=====================
    3.7 Nav CSS
==========================**/
header .main-nav {
  display: flex;
  align-items: center;
}
header .navbar-nav {
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
header .navbar-nav .nav-item {
  margin-bottom: 0;
}
header .navbar-nav .nav-item:hover {
  color: rgba(var(--white), 1);
}
header .navbar-nav .dropdown-menu {
  min-width: 200px;
  margin: 0;
  margin-top: -8px;
  background-color: rgba(var(--white), 1);
  border-color: transparent;
  box-shadow: none;
  border: 0;
  position: static;
  transition: all 0.5s ease;
  opacity: 0;
  visibility: hidden;
  display: block !important;
  transform: translateY(15px);
}
header .navbar-nav .dropdown-menu .sub-dropdown-hover > a::before {
  right: 0;
  content: "\ea6e";
  position: absolute;
  font-family: remixicon;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  top: 50%;
  transform: translateY(-50%);
}
[dir=rtl] header .navbar-nav .dropdown-menu .sub-dropdown-hover > a::before {
  right: unset;
  left: 0;
  transform: scaleX(-1) translateY(-50%);
}
header .navbar-nav .dropdown-menu .sub-dropdown-hover:hover .sub-menu {
  left: calc(100% + 22px);
  visibility: visible;
  opacity: 1;
}
@media (max-width: 1199.98px) {
  header .navbar-nav .dropdown-menu .sub-dropdown-hover:hover .sub-menu {
    inset: unset;
  }
}
[dir=rtl] header .navbar-nav .dropdown-menu .sub-dropdown-hover:hover .sub-menu {
  left: unset;
  right: calc(100% + 22px);
}
@media (max-width: 1199.98px) {
  [dir=rtl] header .navbar-nav .dropdown-menu .sub-dropdown-hover:hover .sub-menu {
    inset: unset;
  }
}
header .navbar-nav .dropdown-menu .sub-dropdown-hover .sub-menu li a:hover {
  letter-spacing: 0.03em;
}
@media (max-width: 1199.98px) {
  header .navbar-nav .dropdown-menu .sub-dropdown-hover .sub-menu li a:hover {
    letter-spacing: unset;
  }
}
header .navbar-nav .dropdown-menu .sub-dropdown-hover .sub-menu li a:hover::after {
  width: 40%;
}
@media (max-width: 1199.98px) {
  header .navbar-nav .dropdown-menu .sub-dropdown-hover .sub-menu li a:hover::after {
    width: 4px;
  }
}
header .navbar-nav .dropdown-menu .sub-dropdown-hover .sub-menu li a::after {
  bottom: -1px;
  left: 0;
  background-color: rgba(var(--primary-color), 0.5);
  border-radius: 100px;
  transition: all 0.15s ease-in-out;
  z-index: -1;
  content: "";
  position: absolute;
  width: 0;
  height: 4px;
}
@media (max-width: 1199.98px) {
  header .navbar-nav .dropdown-menu .sub-dropdown-hover .sub-menu li a::after {
    background-color: rgba(var(--content-color), 1);
    position: relative;
    inset: unset;
    display: block;
    width: 4px;
    height: 4px;
  }
}
[dir=rtl] header .navbar-nav .dropdown-menu .sub-dropdown-hover .sub-menu li a::after {
  left: unset;
  right: 0;
}
header .navbar-nav .dropdown-menu .dropdown {
  margin-right: 20px;
  margin-left: 20px;
}
header .navbar-nav .dropdown-menu .dropdown:last-child {
  margin-bottom: 12px;
}
header .navbar-nav .dropdown-menu .dropdown-menu {
  display: block;
  padding-right: 16px;
  padding-left: 16px;
}
header .navbar-nav .dropdown-image::after {
  content: none;
}
header .navbar-nav .dropdown-image .dropdown-column .dropdown-item::after {
  content: none;
}
header .navbar-nav .dropdown-image .dropdown-column .dropdown-item:hover img {
  box-shadow: 5px 20px 40px 0 rgba(var(--title-color), 0.07);
  transform: translateY(-4px);
}
header .navbar-nav .dropdown-image .dropdown-column .dropdown-item:hover span {
  color: rgba(var(--white), 1);
  font-weight: 600;
}
header .navbar-nav .dropdown-image .dropdown-column .dropdown-item:hover span::after {
  width: 100%;
}
header .navbar-nav .dropdown-image .dropdown-column .dropdown-item span::after {
  left: 0;
  bottom: 2px;
  background-color: rgba(var(--white), 1);
  opacity: 0.3;
  border-radius: 50px;
  transition: all 0.15s ease-in-out;
  z-index: -1;
  content: "";
  position: absolute;
  width: 0;
  height: 4px;
}
header .navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}
header .navbar-brand:hover {
  text-decoration: none;
}
header .navbar-brand:focus {
  text-decoration: none;
}
header .navbar.navbar-expand-xl .navbar-nav {
  position: unset;
  display: flex;
  align-items: center;
  gap: calc(22px + 18 * (100vw - 1200px) / 720);
}
header .navbar.navbar-expand-xl .navbar-nav .nav-link {
  padding: 0;
  font-size: 16px;
  font-weight: normal;
  box-shadow: none;
  position: relative;
  padding-block: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .navbar.navbar-expand-xl .navbar-nav .nav-link .label-menu::before {
  display: inline-block;
  top: 100%;
  left: 10px;
  border-right: 4px solid transparent;
  border-top: 4px solid var(--primary-color);
  content: "";
  position: absolute;
  width: 0;
  height: 0;
}
@media (max-width: 1199.98px) {
  header .navbar.navbar-expand-xl .navbar-nav .nav-link .label-menu::before {
    content: none;
  }
}
header .navbar.navbar-expand-xl .navbar-nav .nav-link-2::before {
  content: none;
}
header .navbar-toggler {
  background-color: transparent;
  transition: box-shadow 0.15s ease-in-out;
  padding: 12px;
  font-size: 18px;
  margin-right: 10px;
  padding: 0;
}
header .navbar-toggler:focus-visible {
  outline: none;
}
header .navbar-toggler:focus {
  box-shadow: none;
}
header .navbar-toggler-icon {
  font-size: 20px;
  color: rgba(var(--white), 1);
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767.98px) {
  header .navbar-toggler-icon {
    margin-right: 0;
  }
}
header .navbar-light .navbar-brand:hover {
  color: rgba(var(--title-color), 1);
}
header .navbar-light .navbar-brand:focus {
  color: rgba(var(--title-color), 1);
}
header .navbar-light .navbar-nav .nav-link {
  color: rgba(var(--white), 1);
}
header .navbar-light .navbar-nav .nav-link:hover {
  color: rgba(var(--white), 1);
}
header .navbar-light .navbar-nav .nav-link:focus {
  color: rgba(var(--white), 1);
}
header .navbar-light .navbar-nav .nav-link.active {
  color: rgba(var(--white), 1);
}
header .navbar-light .navbar-nav-dark .nav-item .nav-link {
  color: rgba(var(--title-color), 1);
}
header .navbar-light .navbar-nav-dark .nav-item .nav-link::after {
  color: rgba(var(--title-color), 1);
}
header .navbar-light .navbar-nav-dark .nav-item .nav-link:hover {
  color: rgba(var(--title-color), 1);
}
header .navbar-light .navbar-nav-dark .nav-item .nav-link:focus {
  color: rgba(var(--title-color), 1);
}
header .navbar-light .navbar-nav-dark .nav-item .nav-link.active {
  color: rgba(var(--title-color), 1);
}
header .navbar-light .navbar-toggler {
  color: rgba(var(--content-color), 1);
  border-color: transparent;
}
header .navbar-light .navbar-text a:hover {
  color: rgba(var(--white), 1);
}
header .navbar-light .navbar-text a:focus {
  color: rgba(var(--white), 1);
}
header .navbar {
  position: unset;
  display: inline-block;
  padding: 0;
}
header .offcanvas {
  position: fixed;
  bottom: 0;
  z-index: 1080;
  display: flex;
  flex-direction: column;
  max-width: 100%;
  visibility: hidden;
  background-color: rgba(var(--white), 1);
  background-clip: padding-box;
  outline: 0;
  box-shadow: -1px 0 10px 0 rgba(var(--title-color), 0.07), 5px 20px 40px 0 rgba(var(--title-color), 0.04);
  transition: transform 0.3s ease-in-out;
  will-change: transform, box-shadow;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s ease;
  visibility: visible !important;
}
header .offcanvas:not(.offcanvas-end):not(.offcanvas-bottom) {
  will-change: unset;
  transition: all 0.15s linear;
  top: 0;
  left: 0;
  box-shadow: none;
}
@media (max-width: 1199.98px) {
  header .offcanvas:not(.offcanvas-end):not(.offcanvas-bottom) {
    transform: translateX(-101%);
    z-index: 13;
    width: calc(310px + 40 * (100vw - 320px) / 880);
    height: 100vh;
  }
}
header .offcanvas.show {
  transform: none !important;
  box-shadow: -1px 0 10px 0 rgba(var(--title-color), 0.07), 5px 20px 40px 0 rgba(var(--title-color), 0.04) !important;
}
header .offcanvas-header {
  flex-shrink: 0;
  padding: 20px 24px;
  z-index: 1;
  padding: calc(16px + 10 * (100vw - 320px) / 1600) calc(19px + 13 * (100vw - 320px) / 1600) 16px;
  background-color: #f2f3f8;
  border-bottom: 1px solid rgba(var(--content-color), 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .offcanvas-header .btn-close {
  padding: 0;
  margin: 0;
  font-size: 20px;
  line-height: 1;
  background: unset;
  opacity: 1;
  color: rgba(var(--title-color), 1);
  width: unset;
  height: unset;
}
header .offcanvas-header h5 {
  color: rgba(var(--title-color), 1);
  font-weight: 500;
  line-height: 1;
  font-size: calc(17px + 5 * (100vw - 320px) / 1600);
}
header .offcanvas-body {
  flex-grow: 1;
  padding: 20px 24px;
  overflow-y: auto;
  height: 100%;
}
header .offcanvas-body::-webkit-scrollbar {
  width: 0;
  background-color: transparent;
  opacity: 0;
}
header .offcanvas-body::-webkit-scrollbar-thumb {
  border-radius: 4px;
}
@media (max-width: 1199.98px) {
  header .offcanvas-body {
    padding: calc(13px + 7 * (100vw - 320px) / 879) calc(15px + 9 * (100vw - 320px) / 879);
  }
}
header .offcanvas-end {
  top: 0;
  right: 0;
  width: 352px;
  border-left: 0 solid transparent;
  transform: translateX(100%);
}
header .dropdown {
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  border-left: 0;
}
header .dropdown .dropdown-toggle {
  position: relative;
  padding-right: 26px;
}
header .dropdown .dropdown-toggle::after {
  border: none;
  color: rgba(var(--white), 1);
  margin: 0;
  vertical-align: unset;
  margin-left: 5px;
  line-height: 1;
  content: "\ea4e";
  position: relative;
  font-family: remixicon;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  width: unset;
  height: unset;
}
body.dark header .dropdown .dropdown-toggle::after {
  color: #fff;
}
[dir=rtl] header .dropdown .dropdown-toggle::after {
  margin-left: unset;
  margin-right: 5px;
}
@media (max-width: 1199.98px) {
  header .dropdown .dropdown-toggle::after {
    color: rgba(var(--title-color), 1);
  }
}
header .dropdown:last-child {
  margin-bottom: 0;
}
header .navbar-expand-xl .offcanvas {
  -webkit-box-flex: 1;
}
@media (max-width: 1199.98px) {
  header .navbar-expand-xl .offcanvas {
    z-index: 4;
    -webkit-box-flex: 2;
  }
}
@media (max-width: 1199.98px) {
  header .navbar-expand-xl .menu-nav-tabs .nav-item .nav-link::before {
    left: 4px;
    border-radius: 100%;
    background-color: rgba(var(--content-color), 1);
    top: 50%;
    transform: translateY(-50%);
    content: "";
    position: absolute;
    width: 4px;
    height: 4px;
  }
  [dir=rtl] header .navbar-expand-xl .menu-nav-tabs .nav-item .nav-link::before {
    left: unset;
    right: 4px;
  }
}
@media (max-width: 1199.98px) {
  header .navbar-expand-xl .menu-nav-tabs .nav-item .nav-link h5::before {
    content: "";
    display: block;
    background-color: rgba(var(--content-color), 1);
    border-radius: 100%;
    width: 4px;
    height: 4px;
  }
}
header .productMain .product-image {
  height: 176px;
}
header .productMain .productImage {
  aspect-ratio: 36/25;
}
header .productMain .productName {
  word-break: break-all;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}
@media (prefers-reduced-motion: reduce) {
  header .navbar-toggler {
    transition: none;
  }
  header .offcanvas {
    transition: none;
  }
}
@media (min-width: 1200px) {
  header .navbar-expand-xl.navbar .offcanvas-body {
    overflow: visible;
  }
  header .navbar-expand-xl .navbar-nav {
    position: relative;
    padding-top: 0;
  }
  header .navbar-expand-xl .navbar-nav .nav-item {
    border: 0;
  }
  header .navbar-expand-xl .navbar-nav .nav-item:hover > .nav-link {
    color: rgba(var(--primary-color), 1);
  }
  body.dark header .navbar-expand-xl .navbar-nav .nav-item:hover > .nav-link {
    color: rgba(var(--primary-color), 1);
  }
  header .navbar-expand-xl .navbar-nav .nav-item:hover > .nav-link::after {
    color: rgba(var(--primary-color), 1);
  }
  header .navbar-expand-xl .navbar-nav .nav-item.mega-dropdown:hover .mega-menu {
    transform: translateX(-50%) translateY(0);
  }
  header .navbar-expand-xl .dropdown-menu {
    margin-top: 0;
    box-shadow: -1px 0 10px 0 rgba(var(--title-color), 0.07), 5px 20px 40px 0 rgba(var(--title-color), 0.04);
    background-color: rgba(var(--white), 1);
    border-color: rgba(var(--white), 1);
    padding: calc(12px + 8 * (100vw - 1200px) / 720);
    border-radius: 10px;
  }
  header .navbar-expand-xl .dropdown-menu li {
    display: block;
    width: 100%;
  }
  header .navbar-expand-xl .dropdown-menu li:first-child .dropdown-item {
    margin: 0;
    margin-top: -3px;
  }
  header .navbar-expand-xl .dropdown-menu li:last-child .dropdown-item {
    margin-bottom: -4px;
  }
  header .navbar-expand-xl .dropdown-menu .dropdown-item {
    color: rgba(var(--title-color), 1);
    padding: 0;
    margin: 10px 0 0 0;
    font-size: 16px;
    position: relative;
    transition: all 0.15s ease-in-out;
    z-index: 0;
    text-transform: capitalize;
  }
  header .navbar-expand-xl .dropdown-menu .dropdown-item:hover::after {
    width: 40%;
  }
  header .navbar-expand-xl .dropdown-menu .dropdown-item:active {
    color: rgba(var(--title-color), 1);
  }
  header .navbar-expand-xl .dropdown-menu .dropdown-item::after {
    bottom: -1px;
    left: 0;
    background-color: rgba(var(--primary-color), 0.5);
    border-radius: 50px;
    transition: all 0.15s ease-in-out;
    z-index: -1;
    content: "";
    position: absolute;
    width: 0;
    height: 4px;
  }
  [dir=rtl] header .navbar-expand-xl .dropdown-menu .dropdown-item::after {
    left: unset;
    right: 0;
  }
  header .navbar-expand-xl .dropdown-menu .dropdown-item:focus {
    background-color: transparent;
  }
  header .navbar-expand-xl .dropdown-menu .dropdown-item:hover {
    background-color: transparent;
    letter-spacing: 0.03em;
  }
  header .navbar-expand-xl .dropdown-menu .product-box {
    padding: 15px;
  }
  header .navbar-expand-xl .dropdown-menu .dropdown-menu {
    top: 0;
    right: auto;
    left: 100%;
    width: auto;
    margin-top: 0;
    margin-inline: 0px;
    padding-inline: 0;
    border-radius: 5px;
    background-color: rgba(var(--white), 1);
  }
  header .navbar-expand-xl .dropdown-menu .rating li {
    display: inline-block;
    width: auto;
  }
  header .navbar-expand-xl .dropdown-menu.show {
    display: none;
  }
  header .navbar-expand-xl .dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: block !important;
  }
  header .navbar-expand-xl .dropdown:hover .dropdown-menu-2 {
    transform: translateX(-50%) translateY(0);
    display: block !important;
  }
  header .navbar-expand-xl .dropdown:hover .dropdown-menu-center {
    transform: translateX(0%) translateY(0);
  }
  header .navbar-expand-xl .dropdown:hover .dropdown-menu-left {
    transform: translateX(0%) translateY(0);
  }
  header .navbar-expand-xl .dropdown-mega:hover > .dropdown-menu {
    display: flex;
  }
  header .offcanvas-collapse {
    display: block;
    position: static;
    inset: auto !important;
    max-width: 100% !important;
    height: auto !important;
    transform: none !important;
    background-color: transparent;
    box-shadow: none;
    width: auto !important;
    height: auto !important;
  }
  header .offcanvas-collapse .offcanvas-header {
    display: none;
  }
  header .offcanvas-collapse .offcanvas-body {
    padding: 0;
    overflow: initial;
  }
}
@media (max-width: 1199.98px) {
  header .offcanvas-collapse .offcanvas-body .navbar-nav {
    padding-top: 0;
    gap: 10px;
  }
  header .offcanvas-collapse .offcanvas-body .navbar-nav .nav-item {
    border-top: 0;
    width: 100%;
  }
  header .offcanvas-collapse .offcanvas-body .navbar-nav .nav-link {
    color: rgba(var(--title-color), 1);
    font-weight: 500;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  header .offcanvas-collapse .offcanvas-body .navbar-nav .nav-link:hover {
    color: rgba(var(--title-color), 1);
    background-color: transparent;
  }
  header .offcanvas-collapse .offcanvas-body .navbar-nav .nav-link.active {
    color: rgba(var(--white), 1);
    background-color: transparent;
  }
  header .offcanvas-collapse .offcanvas-body .navbar-nav .nav-link.disabled {
    color: rgba(var(--content-color), 1);
  }
  header .offcanvas-collapse .offcanvas-body .navbar-nav .show > .nav-link {
    color: rgba(var(--white), 1);
  }
  header .offcanvas-collapse .offcanvas-body .navbar-nav .active > .nav-link {
    color: rgba(var(--white), 1);
  }
  header .offcanvas-collapse .offcanvas-body .navbar-nav .dropdown-menu li {
    display: block;
    width: 100%;
  }
  header .offcanvas-collapse .offcanvas-body .navbar-nav .dropdown-menu .dropdown-item {
    background-color: transparent;
    text-transform: capitalize;
    color: rgba(var(--content-color), 1);
    font-size: 14px;
    padding: 6px calc(14px + 2 * (100vw - 320px) / 880);
    position: relative;
    line-height: 1;
  }
  header .offcanvas-collapse .offcanvas-body .navbar-nav .dropdown-menu .dropdown-item::before {
    left: 4px;
    border-radius: 100%;
    background-color: rgba(var(--content-color), 1);
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
  }
  [dir=rtl] header .offcanvas-collapse .offcanvas-body .navbar-nav .dropdown-menu .dropdown-item::before {
    left: unset;
    right: 4px;
  }
  header .offcanvas-collapse .offcanvas-body .navbar-nav .dropdown-menu .dropdown-item:hover {
    color: rgba(var(--content-color), 1);
    background-color: transparent;
  }
  header .offcanvas-collapse .offcanvas-body .navbar-nav .dropdown-menu .dropdown-item.active {
    color: rgba(var(--white), 1);
    background-color: transparent;
  }
  header .offcanvas-collapse .offcanvas-body .navbar-nav .dropdown-menu .dropdown-item.disabled {
    color: rgba(var(--content-color), 1);
  }
  header .navbar-nav .dropdown-menu {
    opacity: 1;
    visibility: visible;
    display: none !important;
    transform: translateY(0);
    margin-top: 0;
    min-width: unset;
    font-size: calc(14px + 2 * (100vw - 320px) / 880);
    padding: 8px 0 calc(0px + 8 * (100vw - 320px) / 880) !important;
    width: 100%;
  }
  header .navbar-nav .dropdown-menu.show {
    display: block !important;
    left: unset;
  }
  header .navbar-nav .product-box {
    padding: 15px;
  }
}

/* Mixin Files */
/**=====================
    3.8 Newsletter CSS
==========================**/
.newsletter-section .newsletter-box .newsletter-form .input-group .form-control::placeholder {
  color: rgba(var(--content-color), 1);
}
.newsletter-section-2 .newsletter-form .input-group .form-control::placeholder {
  color: rgba(var(--content-color), 1);
}
.newsletter-section-3 .newsletter-box .newsletter-form .input-group .form-control::placeholder {
  color: rgba(var(--content-color), 1);
}

/* Mixin Files */
/**=====================
    3.9 Product CSS
==========================**/
.product-box {
  background-color: rgba(var(--white), 1);
  border: 1px solid rgba(var(--content-color), 0.3);
  padding: 36px 15px 16px;
  transition: 0.3s ease-in-out;
  position: relative;
}
.product-box:hover {
  border-bottom: 0;
  border: 1px solid rgba(var(--primary-color), 1);
  box-shadow: 0px 4px 10px rgba(var(--black), 0.1);
}
.product-box:hover .compare-box {
  box-shadow: 0px 4px 10px rgba(var(--black), 0.1);
  transform: unset;
  border-color: rgba(var(--primary-color), 1);
  opacity: 1;
  visibility: visible;
  background-color: rgba(var(--white), 1);
}
@media (max-width: 767.98px) {
  .product-box:hover .compare-box {
    box-shadow: none;
  }
}
.product-box:hover .product-content a {
  color: rgba(var(--primary-color), 1);
}
.product-box:hover .product-image {
  transform: rotate(3deg) scale(1.05);
}
.product-box .product-image {
  margin: 0 auto 27px;
  transition: 0.3s ease-in-out;
  text-align: center;
  display: block;
  width: 100%;
  height: 170px;
}
.product-box .product-content a h4 {
  font-size: calc(14px + 2 * (100vw - 320px) / 1600);
  font-weight: 500;
  color: rgba(var(--title-color), 1);
  margin-bottom: 4px;
  transition: 0.3s ease-in-out;
}
.product-box .product-content .price {
  font-weight: 500;
  color: rgba(var(--theme-green), 1);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-block: 9px 10px;
}
.product-box .product-content .progress {
  height: 7px;
  border-radius: 0;
  background-color: #e3e6e6;
  margin-top: 10px;
}
.product-box .product-content .progress .progress-bar {
  width: 50%;
  background-color: rgba(var(--primary-color), 1);
}
.product-box .product-content .sold {
  padding-top: 10px;
  font-weight: 500;
  color: rgba(var(--title-color), 1);
  opacity: 0.8;
  transition: 0.3s ease-in-out;
}
.product-box .compare-box .compare-list li + li::before {
  left: 0;
  border-left: 1px solid rgba(var(--content-color), 0.2);
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 15px;
}
[dir=rtl] .product-box .compare-box .compare-list li + li::before {
  left: unset;
  right: 0;
}
.product-box .compare-box .compare-list li a:hover,
.product-box .compare-box .compare-list li .btn:hover {
  font-weight: 600;
  color: rgba(var(--primary-color), 1);
}
.product-box-3 > .row > div + div::before {
  left: 0;
  background: linear-gradient(0deg, rgba(var(--content-color), 0) -3.39%, rgba(var(--content-color), 0.2) 54.49%, rgba(var(--content-color), 0) 114.83%);
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 80%;
}
[dir=rtl] .product-box-3 > .row > div + div::before {
  left: unset;
  right: 0;
}
.product-box-3 > .row > div:nth-child(3n+1)::before {
  content: none;
}
@media (max-width: 1400px) {
  .product-box-3 > .row > div:nth-child(3n+1)::before {
    content: "";
  }
}
@media (max-width: 1400px) {
  .product-box-3 > .row > div:nth-child(odd)::before {
    content: none;
  }
}

.product-box-4 {
  padding: calc(7px + 3 * (100vw - 320px) / 1600);
  background-color: rgba(var(--light-gray), 1);
  transition: all 0.5s ease-in-out;
  position: relative;
  height: 100%;
  z-index: 0;
  border-radius: 6px;
}
.product-box-4.pro-bg-white {
  background-color: rgba(var(--white), 1);
}
body.dark .product-box-4.pro-bg-white:hover {
  background-color: rgba(var(--white), 1);
}
body.dark .product-box-4.pro-bg-white:hover .product-content .option-box {
  background-color: rgba(var(--white), 1);
}
.product-box-4:hover {
  z-index: 1;
  background-color: rgba(var(--white), 1);
  box-shadow: var(--shadow-2);
}
body.dark .product-box-4:hover {
  background-color: rgba(var(--base-gray), 1);
}
@media (max-width: 460px) {
  .product-box-4:hover {
    z-index: unset;
  }
}
.product-box-4:hover .product-image a {
  transform: scale(1.05);
}
.product-box-4:hover .product-image .quick-view-button-box {
  margin-top: 0;
  opacity: 1;
  visibility: visible;
}
.product-box-4:hover .product-content .option-box {
  bottom: -45px;
  opacity: 1;
  visibility: visible;
  box-shadow: 0px 4px 10px rgba(82, 77, 141, 0.1), 0px 8px 20px rgba(82, 77, 141, 0.06), 0px 12px 30px rgba(82, 77, 141, 0.04);
  background-color: rgba(var(--white), 1);
}
@media (max-width: 767.98px) {
  .product-box-4:hover .product-content .option-box {
    inset: unset;
    box-shadow: unset;
  }
}
.product-box-4 .product-image {
  width: 100%;
  aspect-ratio: 103/100;
  padding: 12px;
  background-color: rgba(var(--light-gray), 1);
  position: relative;
}
.product-box-4 .product-image a {
  mix-blend-mode: darken;
  display: block;
  transition: opacity 0.5s, transform 1.25s cubic-bezier(0, 0, 0.44, 1.18);
  width: 100%;
  height: 100%;
}
.product-box-4 .product-content {
  margin-top: calc(8px + 6 * (100vw - 320px) / 1600);
}
.product-box-4 .product-content .name h5,
.product-box-4 .product-content .name .h5 {
  text-transform: capitalize;
  margin-bottom: 4px;
  color: rgba(var(--title-color), 1);
  margin-top: 6px;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}
.product-box-4 .product-content .price {
  margin-top: 9px;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: calc(4px + 2 * (100vw - 320px) / 1600);
}
.product-box-4 .product-content .option-box .option-list li a:hover {
  color: rgba(var(--title-color), 1);
}
.product-box-4.product-box-hover:hover {
  background-color: #f5f6f9;
  box-shadow: unset;
}
.product-box-5:hover .product-image .product-option {
  opacity: 1;
  transition: all 0.5s ease-in-out;
  visibility: visible;
}
.product-box-5:hover .product-image .product-option li:first-child {
  animation: fadeInUp 400ms ease-in-out;
}
@media (max-width: 575.98px) {
  .product-box-5:hover .product-image .product-option li:first-child {
    animation: none;
  }
}
.product-box-5:hover .product-image .product-option li:nth-child(2) {
  animation: fadeInUp 600ms ease-in-out;
}
@media (max-width: 575.98px) {
  .product-box-5:hover .product-image .product-option li:nth-child(2) {
    animation: none;
  }
}
.product-box-5:hover .product-image .product-option li:last-child {
  animation: fadeInUp 800ms ease-in-out;
}
@media (max-width: 575.98px) {
  .product-box-5:hover .product-image .product-option li:last-child {
    animation: none;
  }
}
.product-box-5.no-hover::before {
  content: none;
}
.product-box-5.no-hover:hover {
  box-shadow: none;
}
.latest-product-box:hover a {
  border-color: rgba(var(--content-color), 0.5);
  background-color: rgba(var(--content-color), 0.05);
  box-shadow: 0 0 14px rgba(var(--title-color), 0.07);
}
.latest-product-box:hover a img {
  transform: scale(1.1) rotate(2deg);
}
.latest-product-box:hover h4 {
  color: rgba(var(--title-color), 1);
}

.vertical-product-box {
  display: flex;
  position: relative;
  gap: calc(8px + 7 * (100vw - 320px) / 1600);
  align-items: center;
}
.vertical-product-box:hover .product-image img {
  transform: scale(1.09) rotate(-3deg);
}
.vertical-product-box:hover .product-content a .name {
  color: rgba(var(--primary-color), 1);
}
.vertical-product-box .product-image {
  width: calc(82px + 32 * (100vw - 320px) / 1600);
  height: calc(80px + 32 * (100vw - 320px) / 1600);
  display: flex;
  align-items: center;
  justify-content: center;
}
.vertical-product-box .product-image img {
  transition: all 0.15s ease-in-out;
}
.vertical-product-box .product-content {
  width: calc(100% - (82px + 32 * (100vw - 320px) / 1600) - (8px + 7 * (100vw - 320px) / 1600));
}
.vertical-product-box .product-content a .name {
  font-size: calc(14px + 2 * (100vw - 320px) / 1600);
  transition: all 0.15s ease-in-out;
  margin-bottom: 5px;
  text-transform: capitalize;
  font-weight: 500;
  line-height: 1.3;
  color: rgba(var(--primary-color3), 1);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}
.vertical-product-box .product-content .price {
  font-size: calc(13px + 1 * (100vw - 320px) / 1600);
  margin-top: 5px;
  color: rgba(var(--theme-green), 1);
  font-weight: 500;
}
.vertical-product-box .product-content .quantity-box {
  padding: 5px;
  width: 80px;
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 8px;
  right: 0;
  background-color: rgba(var(--content-color), 0.05);
}
.vertical-product-box .product-content .quantity-box .btn {
  padding: 0;
  border: none;
  width: 100%;
}
.vertical-product-box .product-content .quantity-box span {
  width: 100%;
  display: block;
  text-align: center;
}
.vertical-product-box .product-content .quantity-box .qty-btn-minus {
  display: none;
}
.vertical-product-box .product-content .cart-btn {
  padding: 7px 15px;
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 8px;
  right: 0;
  background-color: rgba(var(--content-color), 0.05);
  font-size: 14px;
  overflow: hidden;
}
.vertical-product-box .product-content .cart-btn::before {
  bottom: 0;
  left: 0;
  background-color: rgba(var(--content-color), 1);
  transition: 0.5s;
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
}
.vertical-product-box .product-content .cart-btn:hover {
  color: rgba(var(--title-color), 1);
}
.vertical-product-box .product-content .cart-btn:hover::before {
  width: 100%;
}
.vertical-sm-product:hover .product-image img {
  transform: scale(1.09) rotate(-3deg);
}
.vertical-sm-product:hover .product-content a .name {
  color: rgba(var(--primary-color), 1);
}
body.dark .vertical-sm-product:hover .product-content a .name {
  color: rgba(var(--primary-color), 1);
}
.vertical-sm-product-box:hover .product-image img {
  transform: scale(1.09) rotate(-3deg);
}
.vertical-sm-product-box:hover .product-content a .name {
  color: rgba(var(--primary-color), 1);
}
body.dark .vertical-sm-product-box:hover .product-content a .name {
  color: rgba(var(--primary-color), 1);
}
.hot-deal-product-box .product-slider-box .product-timer li + li::before {
  left: -7px;
  font-weight: 700;
  font-size: 15px;
  color: rgba(var(--content-color), 0.5);
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.hot-tag-list li a:hover {
  color: rgba(var(--theme-blue2), 1);
  background-color: transparent;
  border-color: rgba(var(--theme-blue2), 1);
}
.small-product-box .hover-box a::after {
  left: 0;
  top: 0;
  background-color: #ffe500;
  transform: scale(0);
  z-index: -1;
  border-radius: 100%;
  transition: all 0.5s ease;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
}
.small-product-box .hover-box a:hover {
  color: #202326;
}
.small-product-box .hover-box a:hover.show i {
  color: rgba(var(--white), 1);
}
.small-product-box .hover-box a:hover::after {
  transform: scale(1);
}
.small-product-box:hover .hover-box {
  bottom: 0;
}
.product-white-box::before {
  border-radius: 6px;
  background: linear-gradient(180deg, #07544f 0%, rgba(7, 84, 79, 0) 100%);
  mask-composite: exclude;
  opacity: 0;
  transition: all 0.5s ease-in-out;
  left: -1px;
  top: -1px;
  z-index: -1;
  content: "";
  position: absolute;
  width: calc(100% + 2px);
  height: 100%;
}
.product-white-box:hover {
  box-shadow: 7px 5px 10px rgba(54, 97, 79, 0.1);
}
.product-white-box:hover::before {
  opacity: 1;
}
.product-white-box:hover .product-image .product-option {
  opacity: 1;
  transition: all 0.5s ease-in-out;
  visibility: visible;
}
.product-white-box:hover .product-image .product-option li:first-child {
  animation: fadeInUp 400ms ease-in-out;
}
@media (max-width: 575.98px) {
  .product-white-box:hover .product-image .product-option li:first-child {
    animation: none;
  }
}
.product-white-box:hover .product-image .product-option li:nth-child(2) {
  animation: fadeInUp 600ms ease-in-out;
}
@media (max-width: 575.98px) {
  .product-white-box:hover .product-image .product-option li:nth-child(2) {
    animation: none;
  }
}
.product-white-box:hover .product-image .product-option li:last-child {
  animation: fadeInUp 800ms ease-in-out;
}
@media (max-width: 575.98px) {
  .product-white-box:hover .product-image .product-option li:last-child {
    animation: none;
  }
}
.product-white-box:hover .product-image > a {
  transform: scale(1.09) rotate(-3deg);
}
.product-white-box:hover .product-content .name {
  color: rgba(var(--title-color), 1);
}
.product-white-box:hover .product-content .btn-box {
  bottom: -30px;
  visibility: visible;
  opacity: 1;
  box-shadow: 7px 5px 10px rgba(54, 97, 79, 0.1);
}
@media (max-width: 767.98px) {
  .product-white-box:hover .product-content .btn-box {
    inset: unset;
    box-shadow: unset;
  }
}
.product-white-box.no-hover::before {
  content: none;
}
.product-white-box.no-hover:hover {
  box-shadow: none;
}

.product-box-4-main {
  position: relative;
  height: 100%;
}
.product-box-4-main + .product-box-4-main {
  margin-top: 25px;
}
@media (max-width: 660px) {
  .product-box-4-main + .product-box-4-main {
    margin-top: 14px;
  }
}
.product-box-4-main .select-option-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  padding: 10px;
  text-align: center;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(var(--white), 1);
  z-index: 2;
  width: calc(100% - 15px);
  height: calc(100% - 15px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-box-4-main .select-option-box.show {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  visibility: visible;
}
.product-box-4-main .select-option-box .add-cart-btn:hover {
  color: rgba(var(--white), 1);
  background-color: rgba(var(--primary-color), 1);
}
.product-box-4-main .select-option-box .close-btn {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0;
  font-size: 20px;
  line-height: 1;
}
.deal-day-box .product-content-box .product-timer .product-timer li.time-list::before {
  z-index: -1;
  bottom: -7px;
  right: -7px;
  background-color: rgba(var(--white), 1);
  box-shadow: 0px 11px 20px rgba(49, 90, 152, 0.07);
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
}
[dir=rtl] .deal-day-box .product-content-box .product-timer .product-timer li.time-list::before {
  right: unset;
  left: -7px;
}
body.dark .deal-day-box .product-content-box .product-timer .product-timer li.time-list::before {
  background-color: #0f162c;
}
@media (max-width: 1199.98px) {
  .deal-day-box .product-content-box .product-timer .product-timer li.time-list::before {
    bottom: calc(-2px + -5 * (100vw - 320px) / 880);
    right: calc(-2px + -5 * (100vw - 320px) / 880);
  }
  [dir=rtl] .deal-day-box .product-content-box .product-timer .product-timer li.time-list::before {
    right: unset;
    left: calc(-2px + -5 * (100vw - 320px) / 880);
  }
}
.product-kid-box:hover .product-image-box::before {
  opacity: 0;
  visibility: hidden;
}
.product-kid-box:hover .product-image-box::after {
  opacity: 1;
  visibility: visible;
}
.product-kid-box:hover .product-image-box .product-option {
  top: 3px;
  opacity: 1;
  visibility: visible;
}
.product-kid-box:hover .product-image-box .p-shop-btn {
  bottom: 10px;
  opacity: 1;
  visibility: visible;
}
.product-kid-box .product-image-box::before {
  transition: all 0.15s ease-in-out;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(26deg);
  z-index: -1;
  background: linear-gradient(to right, #f0f9fe 0%, #f0f9fe 0%, #ffa7bf 5%, #ffa7bf 5%, #c4d9ff 10%, #c4d9ff 10%, #a1d9ff 15%, #a1d9ff 15%, #ffd1de 20%, #ffd1de 20%, #a1d9ff 25%, #d1f0ff 25%, #d1f0ff 30%, #ffd1de 30%, #ffd1de 35%, #ffd1de 35%, #f0f9fe 40%, #f0f9fe 40%, #ffa7bf 45%, #ffa7bf 45%, #ffa7bf 50%, #a1d9ff 50%, #a1d9ff 55%, #ffa7bf 55%, #a1d9ff 60%, #a1d9ff 60%, #a1d9ff 65%, #d1f0ff 65%, #d1f0ff 70%, #ffd1de 70%, #ffd1de 75%, #ffd1de 75%, #a1d9ff 80%, #a1d9ff 80%, #a1d9ff 85%, #d1f0ff 85%, #d1f0ff 90%, #ffd1de 90%, #ffd1de 100%, #ffd1de 100%);
  content: "";
  position: absolute;
  width: 150%;
  height: 150%;
}
.product-kid-box .product-image-box .product-option li::before {
  background-color: rgba(var(--content-color), 1);
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
body.dark .product-kid-box .product-image-box .product-option li::before {
  background-color: #5e6278;
}
.product-kid-box .product-image-box .product-option li::after {
  background-color: rgba(var(--content-color), 1);
  border-radius: 100%;
  top: 0;
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  left: 50%;
  transform: translateX(-50%);
}
body.dark .product-kid-box .product-image-box .product-option li::after {
  background-color: #5e6278;
}
.product-kid-box .product-image-box .product-option li a::before {
  border-radius: 100%;
  background-color: rgba(var(--primary-color), 1);
  top: 1px;
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  left: 50%;
  transform: translateX(-50%);
}

/* Mixin Files */
/**=====================
    3.10 Service CSS
==========================**/
.service-section {
  background-color: rgba(var(--title-color), 1);
  color: rgba(var(--white), 1);
}
.service-section .service-list {
  display: grid;
  grid-template-columns: auto auto auto auto;
  gap: calc(18px + 18 * (100vw - 320px) / 1600);
}
@media (max-width: 1199.98px) {
  .service-section .service-list {
    grid-template-columns: auto auto;
  }
}
@media (max-width: 664px) {
  .service-section .service-list {
    grid-template-columns: auto;
  }
}
.service-section .service-list li {
  position: relative;
  border-right: 1px solid rgba(var(--grey), 0.3);
  padding-right: calc(18px + 18 * (100vw - 320px) / 1600);
}
.service-section .service-list li:last-child {
  border-right: none;
  padding-right: unset;
}
@media (max-width: 1199.98px) {
  .service-section .service-list li:nth-child(2) {
    border-right: none;
    padding-right: unset;
  }
}
@media (max-width: 664px) {
  .service-section .service-list li {
    border-right: none;
    padding-right: 0;
  }
}
.service-section .service-box {
  display: flex;
  gap: calc(5px + 5 * (100vw - 320px) / 1600);
}
.service-section .service-box > div {
  width: calc(100% - 29px - 10px);
}
.service-section .service-box h4 {
  font-size: calc(15px + 3 * (100vw - 320px) / 1600);
  margin-bottom: calc(3px + 2 * (100vw - 320px) / 1600);
  font-weight: 500;
}
.service-section .service-box p {
  color: rgba(var(--white), 0.5);
  font-size: calc(14px + 2 * (100vw - 320px) / 1600);
}

/* Pages Files */
/* Mixin Files */
/**=====================
    4.1 Blog CSS
==========================**/
.blog-section .left-sidebar-box .left-search-box .search-box::after {
  right: 51px;
  opacity: 0.3;
  background-color: rgba(var(--border-color), 1);
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
}
[dir=rtl] .blog-section .left-sidebar-box .left-search-box .search-box::after {
  right: unset;
  left: 51px;
}
@media (max-width: 1199.98px) {
  .blog-section .left-sidebar-box .left-search-box .search-box::after {
    content: none;
  }
}
.blog-section .left-sidebar-box .left-search-box .search-box input::placeholder {
  color: rgba(var(--content-color), 1);
}
.blog-section .left-sidebar-box .left-search-box .search-box input:focus {
  border-color: #ced4da;
}
.blog-section .left-sidebar-box .left-accordion-box .accordion-item .accordion-header .accordion-button::after {
  content: unset;
}
.blog-section .left-sidebar-box .left-accordion-box .accordion-item .accordion-header .accordion-button:focus {
  border-color: transparent;
  box-shadow: none;
}
.blog-section .left-sidebar-box .left-accordion-box .accordion-item .accordion-collapse .accordion-body .recent-post-box .recent-box:hover .recent-image img {
  transform: scale(1.1) rotate(4deg);
}
.blog-section .left-sidebar-box .left-accordion-box .accordion-item .accordion-collapse .accordion-body .recent-post-box .recent-box:hover .recent-detail .recent-name {
  color: rgba(var(--primary-color), 1);
}
.blog-section .left-sidebar-box .left-accordion-box .accordion-item .accordion-collapse .accordion-body .recent-post-box .recent-box .recent-detail a:hover {
  color: rgba(var(--title-color), 1);
}
.blog-section .left-sidebar-box .left-accordion-box .accordion-item .accordion-collapse .accordion-body .category-list-box ul li a:hover h5,
.blog-section .left-sidebar-box .left-accordion-box .accordion-item .accordion-collapse .accordion-body .category-list-box ul li a:hover span {
  color: rgba(var(--primary-color), 1);
}
.blog-section .left-sidebar-box .left-accordion-box .accordion-item .accordion-collapse .accordion-body .category-list-box ul li a.category-name:hover h5,
.blog-section .left-sidebar-box .left-accordion-box .accordion-item .accordion-collapse .accordion-body .category-list-box ul li a.category-name:hover span {
  color: rgba(var(--primary-color), 1);
}
.blog-section .left-sidebar-box .left-accordion-box .accordion-item .accordion-collapse .accordion-body .product-tags-box ul li a:hover {
  background-color: rgba(var(--primary-color), 1);
  color: #fff;
}
.blog-section .left-sidebar-box .left-accordion-box .accordion-item .accordion-collapse .accordion-body .product-tags-box ul li a:hover::after {
  opacity: 1;
}
.blog-section .left-sidebar-box .left-accordion-box .accordion-item .accordion-collapse .accordion-body .product-list-2 li + li::after {
  top: -16px;
  width: calc(100% - 80px - (12px + 11 * (100vw - 320px) / 1600));
}
.blog-section .left-sidebar-box .blog-user-box .user-content .user-social-link li a:hover {
  background-color: rgba(var(--theme-blue), 1);
  color: rgba(var(--white), 1);
}
.blog-section .blog-box:hover .blog-image a:not(.blog-box .blog-name a, .blog-profile-box .blog-image) {
  transform: scale(1.1) rotate(4deg);
}
.blog-section .blog-box:hover .blog-contain h3,
.blog-section .blog-box:hover .blog-contain i {
  color: rgba(var(--primary-color), 1);
}
.blog-section .blog-box .blog-contain .blog-button:hover {
  background-color: rgba(var(--primary-color), 1);
  color: #fff;
}
.blog-section .blog-box .blog-contain .blog-button:hover i {
  --Color: #fff;
}
.blog-section .blog-box.blog-list-box:hover .blog-image img {
  transform: scale(1.02);
}
.blog-section .blog-box.sticky-blog-box > .blog-image::before {
  top: 8px;
  right: 8px;
  color: #fff;
  background-color: rgba(var(--primary-color), 1);
  z-index: 1;
  border-radius: calc(4px + 2 * (100vw - 320px) / 1600);
  font-size: calc(16px + 2 * (100vw - 320px) / 1600);
  content: "\f038";
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(29px + 4 * (100vw - 320px) / 1600);
  height: calc(29px + 4 * (100vw - 320px) / 1600);
  font-family: remixicon;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
}
.blog-section .blog-list:hover {
  box-shadow: 0 4px 9px rgba(var(--title-color), 1);
}
.blog-section .blog-list:hover .blog-image img {
  transform: scale(1.1);
}
.blog-section .blog-list:hover .blog-contain a h3 {
  color: rgba(var(--primary-color), 1);
}
.blog-section .blog-list:hover .blog-contain .blog-button {
  background-color: rgba(var(--primary-color), 1);
  color: rgba(var(--white), 1);
}
.blog-section .blog-image-contain .contain-list li + li::before {
  background-color: rgba(var(--title-color), 1);
  left: -24px;
  content: "";
  position: absolute;
  width: 15px;
  height: 1px;
  top: 50%;
  transform: translateY(-50%);
}
.blog-section .blog-image-contain .blog-list-box li form .form-check-input:checked {
  background-color: transparent;
}
.blog-section .blog-image-contain .blog-list-box li form .form-check-input:checked:before {
  content: "\ee0e";
  color: rgba(var(--primary-color), 1);
}
.blog-section .blog-detail-contain .blog-quote::before {
  font-size: calc(142px + 58 * (100vw - 320px) / 1600);
  color: rgba(var(--white), 0.06);
  top: calc(-42px + -4 * (100vw - 320px) / 1600);
  right: calc(-36px + 4 * (100vw - 320px) / 1600);
  line-height: 1;
  transform: rotate(-6deg);
  z-index: -1;
  content: "\ec52";
  position: absolute;
  font-family: remixicon;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
}
body.dark .blog-section .blog-detail-contain .blog-quote::before {
  color: rgba(255, 255, 255, 0.06);
}
[dir=rtl] .blog-section .blog-detail-contain .blog-quote::before {
  right: unset;
  left: calc(-36px + 4 * (100vw - 320px) / 1600);
  transform: scaleX(-1) rotate(6deg);
}
.blog-section .leave-box .leave-comment .blog-input .form-control:focus {
  background-color: rgba(var(--white), 1);
}
.blog-section .form-section form .form-box .form-control::placeholder {
  color: rgba(var(--content-color), 1);
}

/* Mixin Files */
/**=====================
    4.2 Checkout CSS
==========================**/
.return-login-section .return-box::before {
  top: 0;
  left: 0;
  background-color: rgba(var(--primary-color), 1);
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
}
[dir=rtl] .return-login-section .return-box::before {
  left: unset;
  right: 0;
}

/*-----------------------------------------------------------------------------------
Template Name: Kartify - 
Template URI: https://themes.pixelstrap.com/kartify/
Description: This is E-commerce website
Author: Pixelstrap
Author URI: https://themeforest.net/user/pixelstrap
-----------------------------------------------------------------------------------

1. Base Files
	1.1 Reset CSS
	1.2 Typography CSS

2. Components Files
	2.1 Accordion CSS
	2.2 Brand CSS
	2.3 Breadcrumb CSS
	2.4 Buttons CSS
	2.5 Dropdown CSS
	2.6 Form CSS 
	2.7 Layzload CSS
	2.8 Light Gallery CSS
	2.9 Modal CSS
	2.10 Nav-tabs CSS
	2.11 Offcanvas CSS
	2.12 Pagination CSS
	2.13 Rating CSS
	2.14 Ratio CSS
	2.15 Sidebar Category CSS
	2.16 Slider CSS
	2.17 Table CSS
	2.18 Title CSS

3. Layout Files
    3.1 Banner CSS
    3.2 Category CSS
    3.3 Cookie Bar CSS
    3.4 Footer CSS
    3.5 Header CSS
    3.6 Hone CSS
    3.7 Mobile Menu CSS
    3.8 Nav CSS
    3.9 Newsletter CSS
    3.10 Product CSS
    3.11 Service CSS

4. Pages Files
    4.1 Blog Page CSS
    4.2 Checkout CSS
    4.3 Inner Page CSS
    4.4 Portfolio CSS
    4.5 Product Page CSS
    4.6 Shop Page CSS
    4.7 Vendor Page CSS

5. Templates Files
    5.1 Dark CSS

6. Utils Files
    6.1 Mixin Files
        6.1.1 Animation CSS
        6.1.2 Common CSS
    6.2 Variables CSS */
/* Util Files */
/* Mixin Files */
/**=====================
    4.3 Inner Pages CSS
==========================**/
/* 404 Error Scss */

/* FAQs Scss */
.faqs-section .faq-wrapper:hover .faq-title,
.faqs-section .faq-wrapper:hover .contact-title,
.faqs-section .contact-wrapper:hover .faq-title,
.faqs-section .contact-wrapper:hover .contact-title,
.contact-section .faq-wrapper:hover .faq-title,
.contact-section .faq-wrapper:hover .contact-title,
.contact-section .contact-wrapper:hover .faq-title,
.contact-section .contact-wrapper:hover .contact-title {
  color: rgba(var(--white), 0.07);
  margin-left: 38px;
  transition: all 0.8s ease-in-out;
}
body.dark .faqs-section .faq-wrapper:hover .faq-title,
body.dark .faqs-section .faq-wrapper:hover .contact-title,
body.dark .faqs-section .contact-wrapper:hover .faq-title,
body.dark .faqs-section .contact-wrapper:hover .contact-title,
body.dark .contact-section .faq-wrapper:hover .faq-title,
body.dark .contact-section .faq-wrapper:hover .contact-title,
body.dark .contact-section .contact-wrapper:hover .faq-title,
body.dark .contact-section .contact-wrapper:hover .contact-title {
  color: rgba(255, 255, 255, 0.07);
}
[dir=rtl] .faqs-section .faq-wrapper:hover .faq-title,
[dir=rtl] .faqs-section .faq-wrapper:hover .contact-title,
[dir=rtl] .faqs-section .contact-wrapper:hover .faq-title,
[dir=rtl] .faqs-section .contact-wrapper:hover .contact-title,
[dir=rtl] .contact-section .faq-wrapper:hover .faq-title,
[dir=rtl] .contact-section .faq-wrapper:hover .contact-title,
[dir=rtl] .contact-section .contact-wrapper:hover .faq-title,
[dir=rtl] .contact-section .contact-wrapper:hover .contact-title {
  margin-left: unset;
  margin-right: 38px;
}
.faqs-section .faq-accordion .accordion-item .accordion-header .accordion-button::after,
.contact-section .faq-accordion .accordion-item .accordion-header .accordion-button::after {
  content: unset;
}
.faqs-section .faq-accordion .accordion-item .accordion-collapse .accordion-body .help-box .button-group .help-button:hover,
.contact-section .faq-accordion .accordion-item .accordion-collapse .accordion-body .help-box .button-group .help-button:hover {
  background-color: rgba(var(--primary-color), 1);
  color: #fff;
}

/* Cart Scss */
.cart-section .quick-box .quick-timer li + li::before {
  content: ":";
  font-size: calc(14px + 2 * (100vw - 320px) / 1600);
}
.cart-section .cart-table2 .cart-table-box tbody tr.table-row:hover .cart-contain h4 {
  color: rgba(var(--primary-color), 1);
}
.cart-table-box tbody tr.table-row:hover .cart-contain h4 {
  color: rgba(var(--primary-color), 1);
}

/* Checkout Scss */
.cart-table table tbody tr td.product-detail:hover .product .product-image img {
  transform: scale(1.1);
}
.cart-table table tbody tr td.product-detail .product .product-detail ul li.name a:hover {
  color: rgba(var(--title-color), 1);
}
.cart-table table tbody tr td.save-remove .save:hover {
  color: rgba(var(--primary-color), 1);
}

/* Summery cart box */
.right-summery-box .summery-box .summery-header a:hover {
  color: rgba(var(--primary-color), 1);
}
.right-summery-box .summery-box .summery-contain ul li .promo-code-accordion .accordion-item .accordion-header .accordion-button::after {
  content: "\ea6e";
  background: unset;
  font-size: 16px;
  width: unset;
  height: unset;
  font-family: remixicon;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
}
.right-summery-box .summery-box .summery-contain ul li .promo-code-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  transform: rotate(90deg);
}
.right-summery-box .summery-box .summery-contain ul li .promo-code-accordion .accordion-item .accordion-body input::placeholder {
  color: rgba(var(--content-color), 1);
}
.proceed-btn:hover {
  background-color: rgba(var(--primary-color), 1);
  color: #fff;
}
.checkout-section-new .checkout-left-box .billing-box .checkout-list .form-check .form-check-input:checked::after {
  border-color: rgba(var(--primary-color), 1);
}
.checkout-section-new .checkout-left-box .billing-box .checkout-list .form-check .form-check-input:checked ~ .form-check-label {
  color: rgba(var(--title-color), 1);
}
.checkout-section-new .checkout-left-box .billing-box .theme-form .form-control::placeholder,
.checkout-section-new .checkout-left-box .billing-box .theme-form .form-select::placeholder {
  font-weight: 400;
}

/* Contact Us Scss */

/* About Us Scss */
.review-title h2.center::before {
  color: rgba(var(--primary-color), 1);
  left: 50%;
  transform: translateX(-50%);
}
.team-section .team-box:hover ul {
  display: flex;
  bottom: 18px;
  transition: all 0.4s ease-in-out;
  transform: translateX(-50%) scale(1);
  opacity: 1;
}
@media (max-width: 575.98px) {
  .team-section .team-box:hover ul {
    bottom: 0;
  }
}

/* Compare Scss */
.compare-section .compare-table tr .compare-details-box .cart-button:hover {
  background-color: transparent;
  color: rgba(var(--primary-color), 1);
}
.compare-section .compare-table tr td a:hover {
  color: rgba(var(--title-color), 1);
}

/* User Dashboard Scss */
.user-dashboard-section .dashboard-right-sidebar .profile-contain .profile-name .profile-name-detail a::after {
  top: 0;
  left: 0;
  background: rgba(var(--primary-color), 1);
  opacity: 0.08;
  z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
}
.user-dashboard-section .dashboard-right-sidebar .profile-contain .profile-name .profile-name-detail a:hover {
  color: rgba(var(--primary-color), 1);
}
.user-dashboard-section .dashboard-right-sidebar .dashboard-home .dashboard-setting li .personal-detail:hover h4 {
  color: rgba(var(--primary-color), 1);
}
.user-dashboard-section .dashboard-right-sidebar .dashboard-address .address-box > div .form-check .form-check-input::before {
  transition: all 0.15s ease-in;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background-color: rgba(var(--primary-color), 1);
  border-radius: 100%;
  content: "";
  position: absolute;
  width: calc(10px + 3 * (100vw - 320px) / 1600);
  height: calc(10px + 3 * (100vw - 320px) / 1600);
}
.user-dashboard-section .dashboard-right-sidebar .dashboard-address .address-box > div .form-check .form-check-input:checked {
  background-color: rgba(var(--white), 1);
  border-color: rgba(var(--primary-color), 1);
}
.user-dashboard-section .dashboard-right-sidebar .dashboard-address .address-box > div .form-check .form-check-input:checked::before {
  transform: translate(-50%, -50%) scale(1);
}
.user-dashboard-section .dashboard-right-sidebar .dashboard-address .address-box > div .form-check .form-check-input:focus {
  box-shadow: none;
}
.user-dashboard-section .dashboard-right-sidebar .dashboard-address .address-box .button-group button:hover {
  background-color: rgba(var(--primary-color), 1);
  color: #fff;
}
.user-dashboard-section .dashboard-right-sidebar .dashboard-card .payment-card-detail:hover .edit-card {
  opacity: 1;
  transition: all 0.15s ease-in-out;
}
.user-dashboard-section .dashboard-right-sidebar .dashboard-card .payment-card-detail .card-details::before {
  background-image: url(../images/inner-page/user-dashboard/card-bg.png);
  background-position: center center;
  transform: scale(-1);
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.2;
  z-index: -1;
  filter: invert(1);
}
.user-dashboard-section .dashboard-right-sidebar .dashboard-profile .profile-detail a::after {
  top: 0;
  left: 0;
  background: rgba(var(--primary-color), 1);
  opacity: 0.08;
  z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
}
.user-dashboard-section .dashboard-right-sidebar .dashboard-profile .profile-detail a:hover {
  color: rgba(var(--primary-color), 1);
}
.user-dashboard-section .dashboard-right-sidebar .dashboard-profile .profile-about .table tbody tr td a:hover {
  color: rgba(var(--primary-color), 1);
}
.user-dashboard-section .dashboard-right-sidebar .dashboard-profile .profile-about .table tbody tr td a span::before {
  top: 0;
  left: 0;
  background: rgba(var(--primary-color), 1);
  opacity: 0.08;
  z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
}
.user-dashboard-section .dashboard-right-sidebar .dashboard-privacy .privacy-box .switch-radio .switch:checked + label:before {
  left: 39px;
}

/* Order Tracking & Success Scss */
.delivery-details .delivery-timeline li:first-child::before {
  top: 26px;
  height: calc(100% - 26px);
}
.delivery-details .delivery-timeline li:last-child::before {
  height: calc(100% - 26px);
}
.delivery-details .delivery-timeline li::before {
  background-color: transparent;
  border: calc(1px + 1 * (100vw - 320px) / 1600) solid #d4d5d9;
  top: 0;
  left: calc(10px + 6 * (100vw - 320px) / 1600);
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
}
[dir=rtl] .delivery-details .delivery-timeline li::before {
  left: unset;
  right: calc(10px + 6 * (100vw - 320px) / 1600);
}
body.dark .delivery-details .delivery-timeline li::before {
  border-color: #374658;
}
.delivery-details .delivery-timeline li::after {
  background-color: #d4d5d9;
  border-radius: 100%;
  outline: 2px solid rgba(var(--white), 1);
  left: calc(3px + 5 * (100vw - 320px) / 1600);
  color: rgba(var(--white), 1);
  font-weight: 900;
  content: "\eb7b";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: remixicon;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  width: calc(18px + 2 * (100vw - 320px) / 1600);
  height: calc(18px + 2 * (100vw - 320px) / 1600);
}
[dir=rtl] .delivery-details .delivery-timeline li::after {
  left: unset;
  right: calc(3px + 5 * (100vw - 320px) / 1600);
}
body.dark .delivery-details .delivery-timeline li::after {
  background-color: #374658;
  color: #fff;
}
.delivery-details .delivery-timeline li:nth-child(even)::after {
  content: "";
  left: calc(6px + 6 * (100vw - 320px) / 1600);
  outline: calc(2px + 1 * (100vw - 320px) / 1600) solid #fff;
  width: calc(10px + 2 * (100vw - 320px) / 1600);
  height: calc(10px + 2 * (100vw - 320px) / 1600);
}
[dir=rtl] .delivery-details .delivery-timeline li:nth-child(even)::after {
  left: unset;
  right: calc(6px + 6 * (100vw - 320px) / 1600);
}
body.dark .delivery-details .delivery-timeline li:nth-child(even)::after {
  outline: calc(2px + 1 * (100vw - 320px) / 1600) solid #374658;
}

/* Search Scss */
.search-section .search-suggestion-list a:hover {
  color: rgba(var(--primary-color), 1);
}

.empty-card {
  display: none;
  padding-block: 55px;
}
.empty-card.show {
  display: block;
}
.empty-card td {
  display: block !important;
  margin-inline: auto !important;
  max-width: unset !important;
  min-width: auto !important;
}

/* Testimonial Scss */
.testimonial-section .slider-btn:hover {
  background-color: rgba(var(--primary-color), 1);
  color: #fff;
}
.testimonial-section .slider-btn.swiper-button-disabled:hover {
  background-color: rgba(var(--white), 1);
  color: rgba(var(--title-color), 1);
}

/* Coming Soon Scss */
.coming-soon-section .coming-soon-contain .form-group .form-control::placeholder {
  color: rgba(var(--content-color), 1);
}
.coming-soon-section .coming-soon-contain .form-group .btn:hover {
  background-color: transparent;
  color: rgba(var(--primary-color), 1);
}
/* Mixin Files */
/**=====================
    4.4 Portfolio CSS
==========================**/
.portfolio-section .filters-button-list button:hover {
  color: #ffffff;
  background-color: rgba(var(--primary-color), 1);
  border-color: transparent;
}
.portfolio-section .portfolio-images-box .portfolio-box:hover .portfolio-content {
  bottom: 0;
}
.portfolio-section .portfolio-images-box .portfolio-box .m-p-g__thumbs-img:hover {
  filter: unset;
  transform: scale(1.1);
}

/* Mixin Files */
/**=====================
    4.5 Product Page CSS
==========================**/
.product-section .review-tabs .nav-item .nav-link.active::after,
.product-right-box .review-tabs .nav-item .nav-link.active::after {
  width: 100%;
}
.product-section .description-list li::marker,
.product-right-box .description-list li::marker {
  color: rgba(var(--title-color), 1);
}
.product-section .shipping-info-list li::marker,
.product-right-box .shipping-info-list li::marker {
  color: rgba(var(--title-color), 1);
}
.product-section .right-box-contain .qty-box .qty-btn:hover,
.product-right-box .right-box-contain .qty-box .qty-btn:hover {
  background-color: rgba(var(--primary-color), 1);
  color: #fff;
}
.product-section .right-box-contain .qty-box-2 .qty-btn:hover,
.product-right-box .right-box-contain .qty-box-2 .qty-btn:hover {
  background-color: rgba(var(--primary-color), 1);
  color: #fff;
}
.product-section .right-box-contain .product-package .select-package .disabled::after,
.product-right-box .right-box-contain .product-package .select-package .disabled::after {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  left: 0;
  background-color: #ff7272;
  cursor: default;
  user-select: none;
  z-index: 1;
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
}
.product-section .right-box-contain .product-package .select-package .form-check .form-check-input:checked ~ .form-check-label,
.product-right-box .right-box-contain .product-package .select-package .form-check .form-check-input:checked ~ .form-check-label {
  border: 1px solid rgba(var(--primary-color), 1);
  background-color: rgba(var(--primary-color), 1);
  color: #fff;
}
.product-section .right-box-contain .product-package .select-package.radio-package .form-check .form-check-input::before,
.product-right-box .right-box-contain .product-package .select-package.radio-package .form-check .form-check-input::before {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background-color: rgba(var(--primary-color), 1);
  border-radius: 100%;
  transition: all 0.15s ease-in-out;
  content: "";
  position: absolute;
  width: calc(100% - (3px + 1 * (100vw - 320px) / 1600));
  height: calc(100% - (3px + 1 * (100vw - 320px) / 1600));
}
.product-section .right-box-contain .product-package .select-package.radio-package .form-check .form-check-input:checked,
.product-right-box .right-box-contain .product-package .select-package.radio-package .form-check .form-check-input:checked {
  border-color: rgba(var(--primary-color), 1);
}
.product-section .right-box-contain .product-package .select-package.radio-package .form-check .form-check-input:checked::before,
.product-right-box .right-box-contain .product-package .select-package.radio-package .form-check .form-check-input:checked::before {
  transform: translate(-50%, -50%) scale(1);
}
.product-section .right-box-contain .product-package .select-package.radio-package .form-check .form-check-input:checked ~ .form-check-label,
.product-right-box .right-box-contain .product-package .select-package.radio-package .form-check .form-check-input:checked ~ .form-check-label {
  border: unset;
  background-color: transparent;
  color: rgba(var(--title-color), 1);
}
.product-section .right-box-contain .product-package .select-package.rectangle-package .form-check .form-check-input:checked ~ .form-check-label,
.product-right-box .right-box-contain .product-package .select-package.rectangle-package .form-check .form-check-input:checked ~ .form-check-label {
  border: 1px solid rgba(var(--primary-color), 1);
  background-color: transparent;
  color: rgba(var(--title-color), 1);
}
.product-section .right-box-contain .product-package .select-package.rectangle-package .form-check .form-check-input:checked ~ .form-check-label span,
.product-right-box .right-box-contain .product-package .select-package.rectangle-package .form-check .form-check-input:checked ~ .form-check-label span {
  background-color: rgba(var(--primary-color), 1);
  color: rgba(var(--white), 1);
}
.product-section .right-box-contain .product-package .select-package.image-package .form-check .form-check-input:checked,
.product-right-box .right-box-contain .product-package .select-package.image-package .form-check .form-check-input:checked {
  border-color: rgba(var(--primary-color), 1);
}
.product-section .right-box-contain .product-package .select-package.image-package .form-check .form-check-input:checked ~ .form-check-label,
.product-right-box .right-box-contain .product-package .select-package.image-package .form-check .form-check-input:checked ~ .form-check-label {
  border: 1px solid rgba(var(--primary-color), 1);
  background-color: transparent;
  color: rgba(var(--title-color), 1);
}
.product-section .right-box-contain .product-package .select-package.image-package .form-check .form-check-input:checked ~ .form-check-label span,
.product-right-box .right-box-contain .product-package .select-package.image-package .form-check .form-check-input:checked ~ .form-check-label span {
  background-color: rgba(var(--primary-color), 1);
  color: rgba(var(--white), 1);
}
.product-section .right-box-contain .product-package .select-package.circle-package .form-check .form-check-input:checked,
.product-right-box .right-box-contain .product-package .select-package.circle-package .form-check .form-check-input:checked {
  border-color: rgba(var(--primary-color), 1);
}
.product-section .right-box-contain .product-package .select-package.circle-package .form-check .form-check-input:checked::before,
.product-right-box .right-box-contain .product-package .select-package.circle-package .form-check .form-check-input:checked::before {
  transform: translate(-50%, -50%) scale(1);
}
.product-section .right-box-contain .product-package .select-package.circle-package .form-check .form-check-input:checked ~ .form-check-label,
.product-right-box .right-box-contain .product-package .select-package.circle-package .form-check .form-check-input:checked ~ .form-check-label {
  border: 1px solid rgba(var(--primary-color), 1);
  background-color: transparent;
  color: rgba(var(--title-color), 1);
}
.product-section .right-box-contain .product-package .select-package.circle-package .form-check .form-check-input:checked ~ .form-check-label span,
.product-right-box .right-box-contain .product-package .select-package.circle-package .form-check .form-check-input:checked ~ .form-check-label span {
  background-color: rgba(var(--primary-color), 1);
  color: #fff;
}
.product-section .right-box-contain .product-package .color-product .form-check .form-check-input:active,
.product-right-box .right-box-contain .product-package .color-product .form-check .form-check-input:active {
  filter: unset;
}
.product-section .right-box-contain .product-package .color-product .form-check .form-check-input:focus,
.product-right-box .right-box-contain .product-package .color-product .form-check .form-check-input:focus {
  box-shadow: unset;
}
.product-section .right-box-contain .product-package .color-product .form-check .form-check-input:checked,
.product-right-box .right-box-contain .product-package .color-product .form-check .form-check-input:checked {
  background: unset;
  border-color: transparent;
}
.product-section .right-box-contain .product-package .color-product .form-check .form-check-input:checked ~ .form-check-label,
.product-right-box .right-box-contain .product-package .color-product .form-check .form-check-input:checked ~ .form-check-label {
  border: 4px solid rgba(var(--white), 1);
  background-color: transparent;
}
.product-section .right-box-contain .product-package .color-product .form-check .form-check-input:checked ~ .form-check-label::before,
.product-right-box .right-box-contain .product-package .color-product .form-check .form-check-input:checked ~ .form-check-label::before {
  opacity: 1;
}
.product-section .right-box-contain .product-package .color-product .form-check .form-check-input:checked ~ .form-check-label::after,
.product-right-box .right-box-contain .product-package .color-product .form-check .form-check-input:checked ~ .form-check-label::after {
  opacity: 1;
  border-color: rgba(var(--primary-color), 1);
}
.product-section .right-box-contain .product-package .color-product .form-check .form-check-input:checked ~ .form-check-label::after:hover,
.product-right-box .right-box-contain .product-package .color-product .form-check .form-check-input:checked ~ .form-check-label::after:hover {
  border-color: rgba(var(--primary-color), 1);
}
.product-section .right-box-contain .product-package .color-product .form-check .form-check-input:checked:hover ~ .form-check-label::after,
.product-right-box .right-box-contain .product-package .color-product .form-check .form-check-input:checked:hover ~ .form-check-label::after {
  border-color: rgba(var(--primary-color), 0.5);
}
.product-section .right-box-contain .product-package .color-product .form-check .form-check-input:hover,
.product-right-box .right-box-contain .product-package .color-product .form-check .form-check-input:hover {
  background: unset;
  border-color: transparent;
}
.product-section .right-box-contain .product-package .color-product .form-check .form-check-input:hover ~ .form-check-label,
.product-right-box .right-box-contain .product-package .color-product .form-check .form-check-input:hover ~ .form-check-label {
  border: 4px solid rgba(var(--white), 1);
  background-color: transparent;
}
.product-section .right-box-contain .product-package .color-product .form-check .form-check-input:hover ~ .form-check-label::after,
.product-right-box .right-box-contain .product-package .color-product .form-check .form-check-input:hover ~ .form-check-label::after {
  opacity: 1;
  border-color: rgba(var(--content-color), 0.5);
}
.product-section .right-box-contain .product-package .color-product .form-check .form-check-label::after,
.product-right-box .right-box-contain .product-package .color-product .form-check .form-check-label::after {
  transition: all 0.15s ease-in-out;
  border-radius: 0;
  border: 1px solid #efeff1;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 7px + 1 * (100vw - 320px) / 1600);
  height: calc(100% + 7px + 1 * (100vw - 320px) / 1600);
}
body.dark .product-section .right-box-contain .product-package .color-product .form-check .form-check-label::after,
body.dark .product-right-box .right-box-contain .product-package .color-product .form-check .form-check-label::after {
  border-color: #374658;
}
.product-section .right-box-contain .product-package .color-product.radio-package .form-check .form-check-input:active,
.product-right-box .right-box-contain .product-package .color-product.radio-package .form-check .form-check-input:active {
  filter: unset;
}
.product-section .right-box-contain .product-package .color-product.radio-package .form-check .form-check-input:focus,
.product-right-box .right-box-contain .product-package .color-product.radio-package .form-check .form-check-input:focus {
  box-shadow: unset;
}
.product-section .right-box-contain .product-package .color-product.radio-package .form-check .form-check-input:checked,
.product-right-box .right-box-contain .product-package .color-product.radio-package .form-check .form-check-input:checked {
  background: unset;
  border-color: rgba(var(--primary-color), 1);
}
.product-section .right-box-contain .product-package .color-product.radio-package .form-check .form-check-input:hover,
.product-right-box .right-box-contain .product-package .color-product.radio-package .form-check .form-check-input:hover {
  background: unset;
  border-color: rgba(var(--primary-color), 1);
}
.product-section .right-box-contain .product-package .color-product.radio-package .form-check .form-check-input:hover ~ .form-check-label,
.product-right-box .right-box-contain .product-package .color-product.radio-package .form-check .form-check-input:hover ~ .form-check-label {
  border: unset;
  background-color: transparent;
}
.product-section .right-box-contain .product-package .color-product.radio-package .form-check .form-check-label::after,
.product-right-box .right-box-contain .product-package .color-product.radio-package .form-check .form-check-label::after {
  content: unset;
}
.product-section .right-box-contain .timer .product-timer li + li::before,
.product-right-box .right-box-contain .timer .product-timer li + li::before {
  content: ":";
  color: rgba(var(--primary-color2), 1);
  margin-top: 5px;
  font-size: 19px;
}
.product-section .right-box-contain .note-box .product-qty .qty-box .input-group button:focus,
.product-right-box .right-box-contain .note-box .product-qty .qty-box .input-group button:focus {
  box-shadow: none;
}
@media (max-width: 480px) {
  .product-section .right-box-contain .pickup-box .product-info .product-info-list li::after,
  .product-right-box .right-box-contain .pickup-box .product-info .product-info-list li::after {
    content: none !important;
  }
}
.product-section .right-box-contain .pickup-box .product-info .product-info-list li::after,
.product-right-box .right-box-contain .pickup-box .product-info .product-info-list li::after {
  left: 0;
  background-color: rgba(var(--content-color), 1);
  border-radius: 100%;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
}
.product-section .right-box-contain .social-option ul li:hover,
.product-right-box .right-box-contain .social-option ul li:hover {
  transform: translateY(-6px);
}
.product-section .right-box-contain .social-option ul li:hover a,
.product-right-box .right-box-contain .social-option ul li:hover a {
  color: rgba(var(--primary-color), 1);
}
.product-section .right-sidebar-box .side-product-detail .qty-stock-box .qty-box .qty-btn:hover,
.product-right-box .right-sidebar-box .side-product-detail .qty-stock-box .qty-box .qty-btn:hover {
  background-color: rgba(var(--primary-color), 1);
  color: #fff;
}
.sticky-bottom-cart .selection-section .form-control:focus {
  box-shadow: none;
}
.product-frequently-section .frequently-box .frequently-detail .form-check .form-check-input:checked::after {
  transform: rotate(40deg) scale(1);
}
.product-frequently-section .frequently-box .frequently-detail .form-check .form-check-input:checked::before {
  border-color: rgba(var(--primary-color), 1);
}
.product-frequently-section .frequently-box .frequently-detail .form-check .form-check-input::before {
  background-color: rgba(var(--white), 1);
  border: 1px solid rgba(var(--border-color), 1);
  transition: all 0.15s ease-in-out;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
.product-frequently-section .frequently-box .frequently-detail .form-check .form-check-input::after {
  top: 3px;
  left: 7px;
  transform: rotate(40deg) scale(0);
  border: 2px solid rgba(var(--primary-color), 1);
  border-top: unset;
  border-left: unset;
  transition: all 0.15s ease-in-out;
  content: "";
  position: absolute;
  width: 6px;
  height: 10px;
}
.lg-container .lg-prev::after {
  content: "\ea60";
  font-family: remixicon;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
}
.lg-container .lg-prev::before {
  content: unset;
}
.lg-container .lg-next::after {
  content: "\ea6c";
  font-family: remixicon;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
}
.lg-container .lg-next::before {
  content: unset;
}
 .lg-container .lg-outer .lg-thumb-item:hover {
  border-color: rgba(var(--primary-color), 1);
}

/* Mixin Files */
/**=====================
    4.6 Shop Page CSS
==========================**/
.custom-padding {
  padding-right: 10px;
}
.color-box-list li .btn.active::after {
  opacity: 1;
  width: calc(100% - 3px);
  height: calc(100% - 3px);
}
.color-box-list li .btn::after {
  border-radius: 100%;
  border: 2px solid rgba(var(--white), 1);
  opacity: 0;
  transition: all 0.15s ease-in-out;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}

.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: calc(6px + 6 * (100vw - 320px) / 1600);
}
.category-list li {
  display: block;
  width: 100%;
}
.category-list li .category-list-box {
  display: flex;
  align-items: center;
  gap: calc(9px + 2 * (100vw - 320px) / 1600);
  min-height: unset;
  padding: 0;
  margin: 0;
}
.category-list li .category-list-box input {
  margin: 0;
  width: 17px;
  height: 17px;
}
.category-list li .category-list-box input:checked::after {
  border-color: rgba(var(--primary-color), 1);
}
.category-list li .category-list-box input:checked ~ .form-check-label .name {
  color: rgba(var(--primary-color), 1);
}
.category-list li .category-list-box input:checked ~ .form-check-label .number,
.category-list li .category-list-box input:checked ~ .form-check-label .text-content {
  background-color: rgba(var(--primary-color), 0.1);
  color: rgba(var(--primary-color), 1);
}
.category-list li .category-list-box .form-check-label {
  cursor: pointer;
  width: calc(100% - 17px - 11px);
  line-height: 1;
  transition: all 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.category-list li .category-list-box .form-check-label .name {
  font-size: calc(15px + 1 * (100vw - 320px) / 1600);
  text-transform: capitalize;
  color: rgba(var(--content-color), 1);
  font-weight: 400;
  padding-top: 3px;
  transition: all 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}
.category-list li .category-list-box .form-check-label .number {
  color: rgba(var(--content-color), 1);
  font-weight: 400;
  background-color: rgba(var(--light-gray), 1);
  font-size: 12px;
  padding: 5px 5px 3px;
  line-height: 1;
  border-radius: 2px;
  margin-top: 3px;
  transition: all 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
}
.category-list li .category-list-box .form-check-label .text-content {
  color: rgba(var(--content-color), 1);
  font-weight: 400;
  background-color: rgba(var(--light-gray), 1);
  font-size: 12px;
  padding: 3px 5px;
  transition: all 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  line-height: 1;
  border-radius: 2px;
}
.category-list li .category-list-box .rating li i {
  font-size: calc(15px + 2 * (100vw - 320px) / 1600);
}
.offcanvas-button button:hover, .offcanvas-button button:first-child:active {
  color: #fff;
  background-color: rgba(var(--primary-color), 1);
}
.left-box .shop-left-sidebar .search-box .form-control::placeholder {
  color: rgba(var(--content-color), 1);
}
.left-box .shop-left-sidebar .custom-accordion-2 .accordion-item .accordion-header .accordion-button.collapsed::before {
  content: "\ea13";
  transform: rotate(180deg);
}
.left-box .shop-left-sidebar .custom-accordion-2 .accordion-item .accordion-header .accordion-button:focus {
  border-color: unset;
  box-shadow: none;
}
.left-box .shop-left-sidebar .custom-accordion-2 .accordion-item .accordion-header .accordion-button::after {
  content: none;
}
.left-box .shop-left-sidebar .custom-accordion-2 .accordion-item .accordion-header .accordion-button::before {
  order: 1;
  inset: unset;
  background-color: rgba(var(--base-gray), 1);
  font-size: calc(14px + 1 * (100vw - 320px) / 1600);
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  content: "\f1af";
  position: relative;
  font-family: remixicon;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  width: calc(22px + 4 * (100vw - 320px) / 1600);
  height: calc(22px + 4 * (100vw - 320px) / 1600);
  display: flex;
  align-items: center;
  justify-content: center;
}
.left-box .shop-left-sidebar .custom-nav-tab .nav-item .nav-link:hover(not) img {
  transform: translateY(-50%) rotate(-4deg);
  right: -12px;
  opacity: 0.45;
  width: 75px;
  height: 75px;
}
.left-box .shop-left-sidebar .custom-nav-tab .nav-item .nav-link:hover img {
  transform: translateY(-50%) rotate(-4deg);
  right: -12px;
  opacity: 0.29;
  width: 75px;
  height: 75px;
}

.shop-section {
  z-index: unset;
  position: relative;
}
.shop-section .show-button-2 {
  margin-bottom: 14px;
  padding: calc(14px + 6 * (100vw - 320px) / 1600);
  background-color: rgba(var(--white), 1);
  border-radius: 5px;
}
.shop-section .show-button-2 .top-filter-menu {
  display: flex;
  align-items: center;
}
@media (max-width: 991.98px) {
  .shop-section .show-button-2 .top-filter-menu {
    margin-top: 0;
  }
}
.shop-section .show-button-2 .top-filter-menu .category-dropdown-2 .dropdown .dropdown-toggle::after {
  content: none;
}
.shop-section .show-button-2 .top-filter-menu .category-dropdown-2 .dropdown .dropdown-menu li a:hover, .shop-section .show-button-2 .top-filter-menu .category-dropdown-2 .dropdown .dropdown-menu li a:focus {
  background-color: transparent;
}
.shop-section .show-button-2 .category-dropdown {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: calc(8px + 4 * (100vw - 320px) / 1600);
}
.shop-section .show-button-2 .category-dropdown .form-select {
  border: none;
  background-color: rgba(var(--content-color), 0.05);
  font-size: calc(14px + 1 * (100vw - 320px) / 1600);
  padding: 12px 15px 9px;
  border-radius: 5px;
  color: rgba(var(--content-color), 1);
  flex-wrap: nowrap;
  width: 150px;
  text-align: left;
  margin-left: 10px;
}
.shop-section .show-button-2 .category-dropdown .dropdown {
  margin-left: 10px;
}
.shop-section .show-button-2 .category-dropdown .dropdown .dropdown-toggle {
  border: none;
  background-color: rgba(var(--content-color), 0.05);
  font-size: calc(14px + 1 * (100vw - 320px) / 1600);
  padding: calc(8px + 4 * (100vw - 320px) / 1600) calc(12px + 3 * (100vw - 320px) / 1600) calc(6px + 3 * (100vw - 320px) / 1600);
  border-radius: calc(4px + 1 * (100vw - 320px) / 1600);
  color: rgba(var(--content-color), 1);
  flex-wrap: nowrap;
  gap: calc(6px + 4 * (100vw - 320px) / 1600);
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.shop-section .show-button-2 .category-dropdown .dropdown .dropdown-toggle::after {
  content: none;
}
.shop-section .show-button-2 .category-dropdown .dropdown .dropdown-toggle i {
  margin-top: -3px;
  line-height: 1;
}
.shop-section .show-button-2 .category-dropdown .dropdown .dropdown-toggle span {
  white-space: normal;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}
.shop-section .show-button-2 .category-dropdown .dropdown .dropdown-menu {
  background-color: rgba(var(--white), 1);
  border: none;
  box-shadow: var(--shadow-2);
}
.shop-section .show-button-2 .category-dropdown .dropdown .dropdown-menu li {
  display: block;
}
.shop-section .show-button-2 .category-dropdown .dropdown .dropdown-menu li a {
  font-size: 14px;
  color: rgba(var(--title-color), 1);
}
.shop-section .show-button-2 .category-dropdown .dropdown .dropdown-menu li a:hover, .shop-section .show-button-2 .category-dropdown .dropdown .dropdown-menu li a:focus, .shop-section .show-button-2 .category-dropdown .dropdown .dropdown-menu li a:active {
  background-color: rgba(var(--base-gray), 1);
  color: rgba(var(--title-color), 1);
}
.shop-section .show-button-2 .category-dropdown:has(.seller-title) {
  width: 100%;
}
.shop-section .show-button-2 .category-dropdown h3 {
  margin-top: 3px;
}
.shop-section .show-button-2 .category-dropdown > .d-flex.align-items-center {
  margin-left: auto;
}
@media (max-width: 400px) {
  .shop-section .show-button-2 .category-dropdown > .d-flex.align-items-center {
    margin-left: unset;
  }
}
.shop-section .product-filter-box .product-filter li::before {
  right: 13px;
  color: rgba(var(--content-color), 1);
  cursor: pointer;
  font-family: remixicon;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  content: "\eb99";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.shop-section .seller-box .category-list li:hover {
  background-color: rgba(var(--primary-color), 0.15);
  color: rgba(var(--primary-color), 1);
}
.shop-section .seller-box .seller-bottom .product-list li:hover {
  transform: translateY(calc(-3px + -3 * (100vw - 320px) / 1600));
}

/* Mixin Files */
/**=====================
    4.7 Vendor Page CSS
==========================**/
.seller-box:hover {
  box-shadow: 6px 4px 8px 3px rgba(var(--title-color), 0.05);
}
body.dark .seller-box:hover {
  box-shadow: 6px 4px 8px 3px rgba(119, 119, 119, 0.0509803922);
}
.seller-box .seller-bottom .left-box li::before {
  top: 0;
  right: 0;
  border-right: 1px solid rgba(var(--border-color), 1);
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
}
[dir=rtl] .seller-box .seller-bottom .left-box li::before {
  right: unset;
  left: 0;
}
.seller-box .seller-bottom .left-box li:last-child::before {
  content: unset;
}
.seller-box .seller-bottom .right-box .btn:hover {
  color: #fff;
  background-color: rgba(var(--primary-color), 1);
}
.seller-details-section .seller-top-box .vendor-contact .footer-social i:hover {
  color: rgba(var(--primary-color), 1);
}
.seller-details-section .seller-top-box .page-link:hover {
  background-color: #f1f1f1;
}
.seller-details-section-2 .seller-main-box .brand-related-product .related-box .related-list ul li .form-check-input:hover ~ .form-check-label {
  background-color: rgba(var(--primary-color), 0.15);
  color: rgba(var(--primary-color), 1);
  border-color: rgba(var(--primary-color), 0.6);
}
.seller-details-section-2 .seller-main-box .brand-related-product .related-box .related-list ul li .form-check-input:checked ~ .form-check-label {
  background-color: rgba(var(--primary-color), 1);
  color: #fff;
  border-color: rgba(var(--primary-color), 1);
}
.seller-details-section-2 .seller-main-box .brand-related-product .related-box .find-button:hover {
  color: rgba(var(--theme-blue), 1);
  background-color: transparent;
}
body.dark .seller-details-section-2 .seller-main-box .brand-related-product .related-box .find-button:hover {
  color: #fff;
}
.sell-theme-section-2 .sell-box .top-box::before {
  bottom: 12px;
  z-index: -1;
  left: 0;
  border-top: 1px solid rgba(var(--border-color), 1);
  content: "";
  position: absolute;
  width: calc(100% + 38px);
  height: 1px;
}
.sell-theme-section-2 .sell-box .top-box::after {
  content: "";
  display: block;
  border-radius: 100%;
  background-color: rgba(var(--primary-color), 1);
  border: 8px solid rgba(var(--white), 1);
  margin-inline: auto;
  box-shadow: 0px 0px 9.1px 2px rgba(var(--title-color), 0.07);
  width: 24px;
  height: 24px;
}
.sell-theme-section-2 .sell-box .top-box .contain-text::before {
  z-index: -1;
  bottom: -14px;
  border: 0 solid transparent;
  border-left-width: calc(14px + 9 * (100vw - 320px) / 1600);
  border-right-width: calc(14px + 9 * (100vw - 320px) / 1600);
  border-top: calc(10px + 5 * (100vw - 320px) / 1600) solid rgba(var(--white), 1);
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  content: "";
  position: absolute;
}

/* Theme Files */
/* Mixin Files */
/**=====================
    5.1 Dark CSS
==========================**/
body.dark.demo-4 header .main-dark-header .middle-header .search-form .input-group .input-group-text .dropdown .dropdown-menu li .dropdown-item:hover {
  background-color: rgba(94, 98, 120, 0.102);
}
body.dark.demo-6 .category-full-box .category-menu-list .sub-menu-list li .sub-category-box:hover {
  background-color: #303438;
}

