@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  /**
  @font family declaration
  */
  --st-ff-body: 'Poppins', sans-serif;
  --st-ff-heading: 'Poppins', sans-serif;
  --st-ff-p: 'Poppins', sans-serif;
  --st-ff-menu: 'Poppins', sans-serif;
  --st-ff-button: 'Poppins', sans-serif;
  --st-ff-fontawesome: "Font Awesome 6 Pro";
  /**
  @color declaration
  */
  --st-common-white: #ffffff;
  --st-common-black: #000;
  --st-common-black2: #111827;
  --st-common-star: #fdb022;
  --st-heading-primary: #002366;
  --st-grey-1: #70747D;
  --st-grey-2: #414652;
  --st-text-body: #70747D;
  --st-text-1: #70747D;
  --st-text-top-header: #f5ba68;
  --st-text-top-header-hover: #f04a00;
  --st-text-menu: #ffffff;
  --st-text-menu-hover: #f04a00;
  --st-text-link: #f04a00;
  --st-text-link-hover: #002366;
  --st-text-button: #ffffff;
  --st-text-btn-hover: #f04a00;
  --st-text-price: #a0a3a9;
  --st-text-sale-price: #F04A00;
  --st-text-topmenu: #F2F4F7;
  --st-text-topmenu-hover: #70747d;
  --st-text-stock: #5fa745;
  --st-text-onsale: #70747d;
  --st-text-rating: #f04a00;
  --st-theme-1: #F04A00;
  --st-theme-2: #002366;
  --st-theme-primary: #f04a00;
  --st-theme-secondery: #002366;
  --st-theme-top-header: #111827;
  --st-theme-button: #f04a00;
  --st-theme-btn-hover: #ffffff;
  --st-theme-onsale: #ffffff;
  --st-border-1: #000;
  --st-border-button: #F04A00;
  --st-border-btn-hover: #F04A00;
  /**
  @font weight declaration
  */
  --st-fw-normal: normal;
  --st-fw-elight: 200;
  --st-fw-light: 300;
  --st-fw-regular: 400;
  --st-fw-medium: 500;
  --st-fw-sbold: 600;
  --st-fw-bold: 700;
  --st-fw-ebold: 800;
  --st-fw-black: 900;
  --st-fw-heading: 600;
  --st-fw-button: 600;
  --st-fw-menu: 500;
  /**
  @font size declaration
  */
  --st-fz-body: 18px;
  --st-fz-p: 18px;
  --st-fz-h1: 80px;
  --st-fz-h2: 60px;
  --st-fz-h3: 48px;
  --st-fz-h4: 32px;
  --st-fz-h5: 24px;
  --st-fz-h6: 20px;
  --st-fz-button: 18px;
  --st-fz-menu: 18px;
  --st-fz-mob-h1: 48px;
  --st-fz-mob-h2: 38px;
  --st-fz-mob-h3: 28px;
  --st-fz-mob-h4: 24px;
  --st-fz-mob-h5: 22px;
  --st-fz-mob-h6: 20px;
  --st-fz-tab-body: 18px;
  --st-fz-tab-h1: 65px;
  --st-fz-tab-h2: 50px;
  --st-fz-tab-h3: 46px;
  --st-fz-tab-h4: 42px;
  --st-fz-tab-h5: 34px;
  --st-fz-tab-h6: 30px;
  /**
  @line height declaration
  */
  --st-lh-body: 20px;
  --st-lh-h1: 90px;
  --st-lh-h2: 70px;
  --st-lh-h3: 58px;
  --st-lh-h4: 42px;
  --st-lh-h5: 34px;
  --st-lh-h6: 30px;
  --st-lh-button: 28px;
  --st-lh-h1-tab: 75px;
  --st-lh-h2-tab: 60px;
  --st-lh-h3-tab: 48px;
  --st-lh-h4-tab: 38px;
  --st-lh-h5-tab: 34px;
  --st-lh-h6-tab: 28px;
  --st-lh-h1-mob: 58px;
  --st-lh-h2-mob: 48px;
  --st-lh-h3-mob: 34px;
  --st-lh-h4-mob: 32px;
  --st-lh-h5-mob: 30px;
  --st-lh-h6-mob: 24px;
}

/*-----------------------------------------------------------------------------------

    Theme Name: Template Name – HTML5 Template
    Author: SOFTZINO
    Support: info@softzino.com
    Description: Template Name  – HTML5 Template
    Version: 1.0

-----------------------------------------------------------------------------------

/************ TABLE OF CONTENTS ***************

    01. THEME DEFAULT CSS
    02. HEADER CSS



**********************************************/
/*----------------------------------------*/
/*  01. THEME DEFAULT CSS START
/*----------------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*---------------------------------
    typography css start 
---------------------------------*/
body {
  font-family: var(--st-ff-body);
  font-size: var(--st-fz-body);
  font-weight: normal;
  color: var(--st-text-body);
  line-height: var(--st-lh-body);
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--st-ff-heading);
  color: var(--st-heading-primary);
  margin-top: 0px;
  font-weight: var(--st-fw-heading);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

h1 {
  font-size: var(--st-fz-h1);
  line-height: var(--st-lh-h1);
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  h1 {
    font-size: var(--st-fz-tab-h1);
    line-height: var(--st-lh-h1-tab);
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  h1 {
    font-size: var(--st-fz-mob-h1);
    line-height: var(--st-lh-h1-mob);
  }
}

h2 {
  font-size: var(--st-fz-h2);
  line-height: var(--st-lh-h2);
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px) {
  h2 {
    font-size: var(--st-fz-tab-h2);
    line-height: var(--st-lh-h2-tab);
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  h2 {
    font-size: var(--st-fz-mob-h2);
    line-height: var(--st-lh-h2-mob);
  }
}

h3 {
  font-size: var(--st-fz-h3);
  line-height: var(--st-lh-h3);
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  h3 {
    font-size: var(--st-fz-tab-h3);
    line-height: var(--st-lh-h3-tab);
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  h3 {
    font-size: var(--st-fz-mob-h3);
    line-height: var(--st-lh-h3-mob);
  }
}

h4 {
  font-size: var(--st-fz-h4);
  line-height: var(--st-lh-h4);
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  h4 {
    font-size: var(--st-fz-tab-h4);
    line-height: var(--st-lh-h4-tab);
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  h4 {
    font-size: var(--st-fz-mob-h4);
    line-height: var(--st-lh-h4-mob);
  }
}

h5 {
  font-size: var(--st-fz-h5);
  line-height: var(--st-lh-h5);
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  h5 {
    font-size: var(--st-fz-tab-h5);
    line-height: var(--st-lh-h5-tab);
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  h5 {
    font-size: var(--st-fz-mob-h5);
    line-height: var(--st-lh-h5-mob);
  }
}

h6 {
  font-size: var(--st-fz-h6);
  line-height: var(--st-lh-h6);
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  h6 {
    font-size: var(--st-fz-tab-h6);
    line-height: var(--st-lh-h6-tab);
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  h6 {
    font-size: var(--st-fz-mob-h6);
    line-height: var(--st-lh-h6-mob);
  }
}

ul {
  margin: 0px;
  padding: 0px;
}

p {
  font-family: var(--st-ff-p);
  font-size: var(--st-fz-body);
  font-weight: var(--st-fw-normal);
  color: var(--st-text-body);
  line-height: 26px;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  p {
    font-size: var(--st-fz-tab-body);
  }
}

a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}

a:focus,
a:hover {
  color: inherit;
  text-decoration: none;
}

a,
button {
  color: inherit;
  outline: none;
  border: none;
  background: transparent;
}

button:hover {
  cursor: pointer;
}

button:focus {
  outline: 0;
  border: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

input {
  outline: none;
}

input[type=color] {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 0;
  cursor: pointer;
  height: 100%;
  width: 100%;
  padding: 0;
  border-radius: 50%;
}

*::-moz-selection {
  background: var(--st-common-black);
  color: var(--st-common-white);
  text-shadow: none;
}

::-moz-selection {
  background: var(--st-common-black);
  color: var(--st-common-white);
  text-shadow: none;
}

::selection {
  background: var(--st-common-black);
  color: var(--st-common-white);
  text-shadow: none;
}

*::-moz-placeholder {
  color: var(--st-common-black);
  font-size: var(--st-fz-body);
  opacity: 1;
}

*::placeholder {
  color: var(--st-common-black);
  font-size: var(--st-fz-body);
  opacity: 1;
}

/*---------------------------------
    common classes css start 
---------------------------------*/
.w-img img {
  width: 100%;
}

.m-img img {
  max-width: 100%;
}

.fix {
  overflow: hidden;
}

.clear {
  clear: both;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

.z-index-1 {
  z-index: 1;
}

.z-index-11 {
  z-index: 11;
}

.overflow-y-visible {
  overflow-x: hidden;
  overflow-y: visible;
}

.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

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

/*----------------------------------------
    Body Overlay 
-----------------------------------------*/
.body-overlay {
  background-color: rgba(var(--st-common-black), 0.5);
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 99;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.body-overlay:hover {
  cursor: pointer;
}

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

/*----------------------------------------
    Progress Wrap
-----------------------------------------*/
@media (max-width: 575.98px) {
  .progress-wrap {
    right: 15px;
    bottom: 15px;
  }
}

.basic-pagination ul li {
  display: inline-block;
}
.basic-pagination ul li:not(:last-child) {
  margin-right: 10px;
}
.basic-pagination ul li a, .basic-pagination ul li span {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 46px;
  text-align: center;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -o-border-radius: 7px;
  -ms-border-radius: 7px;
  border-radius: 7px;
  border: 2px solid #f1f1f1;
  font-size: 18px;
  font-weight: 600;
}
.basic-pagination ul li a:hover, .basic-pagination ul li a.current, .basic-pagination ul li span:hover, .basic-pagination ul li span.current {
  background: var(--st-theme-primary);
  border-color: var(--st-theme-primary);
  color: var(--st-common-white);
}

select {
  appearance: none;
  padding: 10px 15px;
  font-size: 18px;
  color: var(--st-heading-primary);
  background-color: #fff;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  outline: none;
  font-weight: 500;
  border: 1px solid #E6E9F0;
}
select option {
  background: #fff;
}
select option:hover {
  background: #f7f7f7;
}

/* Style for when the select is focused */
select:focus {
  border: 1px solid #dedada;
}

/* Optional: Add custom arrow */
select {
  background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23002366"%3E%3Cpath d="M11.9999 13.1714L16.9497 8.22168L18.3639 9.63589L11.9999 15.9999L5.63599 9.63589L7.0502 8.22168L11.9999 13.1714Z"%3E%3C/path%3E%3C/svg%3E');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 20px;
}

.lanCur__changer select {
  background: transparent;
  border: none;
  color: #F2F4F7;
}

#products-per-page {
  width: 80px;
}
@media (max-width: 509px) {
  #products-per-page {
    width: 60px;
  }
}

.select2-selection {
  height: 56px !important;
}

.select2-selection__rendered {
  line-height: 50px !important;
}

.select2-selection__arrow b {
  margin-top: 10px !important;
}

.shipping-calculator-form .select2-selection__rendered {
  line-height: 28px !important;
}

.checkout__form .select2-selection__rendered {
  line-height: 28px !important;
}
.checkout__form .select2-selection__arrow b {
  margin-top: -2px !important;
}

.mb-120 {
  margin-bottom: 120px;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .mb-120 {
    margin-bottom: 80px;
  }
}
@media (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .mb-120 {
    margin-bottom: 50px;
  }
}

.mt-120 {
  margin-top: 120px;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .mt-120 {
    margin-top: 80px;
  }
}
@media (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .mt-120 {
    margin-top: 50px;
  }
}

:root {
  /**
  @font family declaration
  */
  --st-ff-body: 'Poppins', sans-serif;
  --st-ff-heading: 'Poppins', sans-serif;
  --st-ff-p: 'Poppins', sans-serif;
  --st-ff-menu: 'Poppins', sans-serif;
  --st-ff-button: 'Poppins', sans-serif;
  --st-ff-fontawesome: "Font Awesome 6 Pro";
  /**
  @color declaration
  */
  --st-common-white: #ffffff;
  --st-common-black: #000;
  --st-common-black2: #111827;
  --st-common-star: #fdb022;
  --st-heading-primary: #002366;
  --st-grey-1: #70747D;
  --st-grey-2: #414652;
  --st-text-body: #70747D;
  --st-text-1: #70747D;
  --st-text-top-header: #f5ba68;
  --st-text-top-header-hover: #f04a00;
  --st-text-menu: #ffffff;
  --st-text-menu-hover: #f04a00;
  --st-text-link: #f04a00;
  --st-text-link-hover: #002366;
  --st-text-button: #ffffff;
  --st-text-btn-hover: #f04a00;
  --st-text-price: #a0a3a9;
  --st-text-sale-price: #F04A00;
  --st-text-topmenu: #F2F4F7;
  --st-text-topmenu-hover: #70747d;
  --st-text-stock: #5fa745;
  --st-text-onsale: #70747d;
  --st-text-rating: #f04a00;
  --st-theme-1: #F04A00;
  --st-theme-2: #002366;
  --st-theme-primary: #f04a00;
  --st-theme-secondery: #002366;
  --st-theme-top-header: #111827;
  --st-theme-button: #f04a00;
  --st-theme-btn-hover: #ffffff;
  --st-theme-onsale: #ffffff;
  --st-border-1: #000;
  --st-border-button: #F04A00;
  --st-border-btn-hover: #F04A00;
  /**
  @font weight declaration
  */
  --st-fw-normal: normal;
  --st-fw-elight: 200;
  --st-fw-light: 300;
  --st-fw-regular: 400;
  --st-fw-medium: 500;
  --st-fw-sbold: 600;
  --st-fw-bold: 700;
  --st-fw-ebold: 800;
  --st-fw-black: 900;
  --st-fw-heading: 600;
  --st-fw-button: 600;
  --st-fw-menu: 500;
  /**
  @font size declaration
  */
  --st-fz-body: 18px;
  --st-fz-p: 18px;
  --st-fz-h1: 80px;
  --st-fz-h2: 60px;
  --st-fz-h3: 48px;
  --st-fz-h4: 32px;
  --st-fz-h5: 24px;
  --st-fz-h6: 20px;
  --st-fz-button: 18px;
  --st-fz-menu: 18px;
  --st-fz-mob-h1: 48px;
  --st-fz-mob-h2: 38px;
  --st-fz-mob-h3: 28px;
  --st-fz-mob-h4: 24px;
  --st-fz-mob-h5: 22px;
  --st-fz-mob-h6: 20px;
  --st-fz-tab-body: 18px;
  --st-fz-tab-h1: 65px;
  --st-fz-tab-h2: 50px;
  --st-fz-tab-h3: 46px;
  --st-fz-tab-h4: 42px;
  --st-fz-tab-h5: 34px;
  --st-fz-tab-h6: 30px;
  /**
  @line height declaration
  */
  --st-lh-body: 20px;
  --st-lh-h1: 90px;
  --st-lh-h2: 70px;
  --st-lh-h3: 58px;
  --st-lh-h4: 42px;
  --st-lh-h5: 34px;
  --st-lh-h6: 30px;
  --st-lh-button: 28px;
  --st-lh-h1-tab: 75px;
  --st-lh-h2-tab: 60px;
  --st-lh-h3-tab: 48px;
  --st-lh-h4-tab: 38px;
  --st-lh-h5-tab: 34px;
  --st-lh-h6-tab: 28px;
  --st-lh-h1-mob: 58px;
  --st-lh-h2-mob: 48px;
  --st-lh-h3-mob: 34px;
  --st-lh-h4-mob: 32px;
  --st-lh-h5-mob: 30px;
  --st-lh-h6-mob: 24px;
}

/*--
    - Background color
-----------------------------------------*/
.grey-bg {
  background: var(--st-grey-1);
}

.grey-bg-2 {
  background: var(--st-grey-2);
}

.white-bg {
  background: var(--st-common-white);
}

.black-bg {
  background: var(--st-common-black);
}

/*--
    - Spacing
-----------------------------------------*/
:root {
  /**
  @font family declaration
  */
  --st-ff-body: 'Poppins', sans-serif;
  --st-ff-heading: 'Poppins', sans-serif;
  --st-ff-p: 'Poppins', sans-serif;
  --st-ff-menu: 'Poppins', sans-serif;
  --st-ff-button: 'Poppins', sans-serif;
  --st-ff-fontawesome: "Font Awesome 6 Pro";
  /**
  @color declaration
  */
  --st-common-white: #ffffff;
  --st-common-black: #000;
  --st-common-black2: #111827;
  --st-common-star: #fdb022;
  --st-heading-primary: #002366;
  --st-grey-1: #70747D;
  --st-grey-2: #414652;
  --st-text-body: #70747D;
  --st-text-1: #70747D;
  --st-text-top-header: #f5ba68;
  --st-text-top-header-hover: #f04a00;
  --st-text-menu: #ffffff;
  --st-text-menu-hover: #f04a00;
  --st-text-link: #f04a00;
  --st-text-link-hover: #002366;
  --st-text-button: #ffffff;
  --st-text-btn-hover: #f04a00;
  --st-text-price: #a0a3a9;
  --st-text-sale-price: #F04A00;
  --st-text-topmenu: #F2F4F7;
  --st-text-topmenu-hover: #70747d;
  --st-text-stock: #5fa745;
  --st-text-onsale: #70747d;
  --st-text-rating: #f04a00;
  --st-theme-1: #F04A00;
  --st-theme-2: #002366;
  --st-theme-primary: #f04a00;
  --st-theme-secondery: #002366;
  --st-theme-top-header: #111827;
  --st-theme-button: #f04a00;
  --st-theme-btn-hover: #ffffff;
  --st-theme-onsale: #ffffff;
  --st-border-1: #000;
  --st-border-button: #F04A00;
  --st-border-btn-hover: #F04A00;
  /**
  @font weight declaration
  */
  --st-fw-normal: normal;
  --st-fw-elight: 200;
  --st-fw-light: 300;
  --st-fw-regular: 400;
  --st-fw-medium: 500;
  --st-fw-sbold: 600;
  --st-fw-bold: 700;
  --st-fw-ebold: 800;
  --st-fw-black: 900;
  --st-fw-heading: 600;
  --st-fw-button: 600;
  --st-fw-menu: 500;
  /**
  @font size declaration
  */
  --st-fz-body: 18px;
  --st-fz-p: 18px;
  --st-fz-h1: 80px;
  --st-fz-h2: 60px;
  --st-fz-h3: 48px;
  --st-fz-h4: 32px;
  --st-fz-h5: 24px;
  --st-fz-h6: 20px;
  --st-fz-button: 18px;
  --st-fz-menu: 18px;
  --st-fz-mob-h1: 48px;
  --st-fz-mob-h2: 38px;
  --st-fz-mob-h3: 28px;
  --st-fz-mob-h4: 24px;
  --st-fz-mob-h5: 22px;
  --st-fz-mob-h6: 20px;
  --st-fz-tab-body: 18px;
  --st-fz-tab-h1: 65px;
  --st-fz-tab-h2: 50px;
  --st-fz-tab-h3: 46px;
  --st-fz-tab-h4: 42px;
  --st-fz-tab-h5: 34px;
  --st-fz-tab-h6: 30px;
  /**
  @line height declaration
  */
  --st-lh-body: 20px;
  --st-lh-h1: 90px;
  --st-lh-h2: 70px;
  --st-lh-h3: 58px;
  --st-lh-h4: 42px;
  --st-lh-h5: 34px;
  --st-lh-h6: 30px;
  --st-lh-button: 28px;
  --st-lh-h1-tab: 75px;
  --st-lh-h2-tab: 60px;
  --st-lh-h3-tab: 48px;
  --st-lh-h4-tab: 38px;
  --st-lh-h5-tab: 34px;
  --st-lh-h6-tab: 28px;
  --st-lh-h1-mob: 58px;
  --st-lh-h2-mob: 48px;
  --st-lh-h3-mob: 34px;
  --st-lh-h4-mob: 32px;
  --st-lh-h5-mob: 30px;
  --st-lh-h6-mob: 24px;
}

.explore__btn,
.checkout-button,
.place-order button {
  color: var(--st-text-button);
  background: var(--st-theme-button);
  padding: 10px 24px;
  font-weight: var(--st-fw-button);
  font-size: var(--st-fz-button);
  line-height: var(--st-lh-button);
  font-family: var(--st-ff-button);
  border-radius: 8px;
  display: block !important;
  transition: all ease 0.3s;
  border: 1px solid var(--st-border-button);
}
@media (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .explore__btn,
  .checkout-button,
  .place-order button {
    padding: 10px 15px;
    font-size: 16px;
  }
}
.explore__btn:hover,
.checkout-button:hover,
.place-order button:hover {
  background-color: var(--st-theme-btn-hover);
  color: var(--st-text-btn-hover);
  border: 1px solid var(--st-border-btn-hover);
}

.explore__btn-large {
  color: var(--st-text-button);
  background: var(--st-theme-button);
  padding: 16px 44px;
  font-weight: var(--st-fw-button);
  font-size: var(--st-fz-button);
  line-height: var(--st-lh-button);
  font-family: var(--st-ff-button);
  border-radius: 4px;
  display: block !important;
  transition: all ease 0.3s;
  border: 1px solid var(--st-border-button);
}
@media (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .explore__btn-large {
    padding: 10px 15px;
    font-size: 14px;
  }
}
.explore__btn-large:hover {
  background-color: var(--st-theme-btn-hover);
  color: var(--st-text-btn-hover);
  border: 1px solid var(--st-border-btn-hover);
}

.shop__btn {
  color: #fff;
  background: var(--st-theme-1);
  padding: 8px 15px;
  font-weight: 600;
  border-radius: 7px;
  font-size: 18px;
  line-height: 27px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .shop__btn {
    font-size: 14px;
  }
}
.shop__btn:hover {
  color: var(--st-heading-primary);
}

.shop_primary__btn {
  color: #a57e60;
  background: transparent;
  padding: 8px 15px;
  font-weight: 600;
  border: 1px solid;
  border-radius: 8px;
  font-size: 18px;
  line-height: 27px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .shop_primary__btn {
    font-size: 14px;
  }
}
.shop_primary__btn:hover {
  color: var(--st-heading-primary);
}

@media (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .simple__button {
    font-size: 14px !important;
  }
}

.view__btn {
  background-color: var(--st-text-button);
  color: var(--st-theme-button);
  border: 1px solid var(--st-theme-button);
  font-weight: var(--st-fw-button);
  font-size: var(--st-fz-button);
  line-height: var(--st-lh-button);
  font-family: var(--st-ff-button);
  padding: 10px 24px;
  font-weight: var(--st-fw-button);
  border-radius: 8px;
  cursor: pointer;
  transition: border 0.4s ease-in-out, color 0.4s ease-in-out, background-color 0.4s ease-in-out !important;
}
.view__btn:hover {
  border-color: var(--st-theme-btn-hover);
  background-color: var(--st-theme-btn-hover);
  color: var(--st-text-btn-hover);
}

.main__btn {
  background-color: var(--st-theme-1);
  color: var(--st-common-white);
  border: 1px solid var(--st-theme-1);
  font-size: 18px;
  line-height: 27px;
  padding: 8px 20px;
  font-weight: 600;
  border-radius: 7px;
  cursor: pointer;
  text-align: center;
  transition: border 0.4s ease-in-out, color 0.4s ease-in-out, background-color 0.4s ease-in-out !important;
}
.main__btn:hover {
  border-color: var(--st-theme-1);
  background-color: var(--st-common-white);
  color: var(--st-theme-1);
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  #typewriter-text1,
  #typewriter-text2,
  #typewriter-text3 {
    margin-bottom: 0 !important;
  }
}

.compare__btn {
  display: inline-block;
  text-align: center;
  background-color: var(--st-theme-1);
  color: var(--st-common-white);
  border: 1px solid var(--st-theme-1);
  font-size: 18px;
  line-height: 27px;
  padding: 4px 16px;
  font-weight: 600;
  border-radius: 7px;
  transition: border 0.4s ease-in-out, color 0.4s ease-in-out, background-color 0.4s ease-in-out !important;
}
.compare__btn:hover {
  border-color: var(--st-theme-1);
  background-color: var(--st-common-white);
  color: var(--st-theme-1);
}

.jewelry__btn {
  display: inline-block;
  position: relative;
  background: var(--st-theme-button);
  color: var(--st-text-button);
  font-weight: var(--st-fw-button);
  font-size: var(--st-fz-button);
  line-height: var(--st-lh-button);
  font-family: var(--st-ff-button);
  padding: 12px 20px;
  z-index: 1;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.jewelry__btn::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: -100%;
  background: var(--st-theme-btn-hover);
  z-index: -1;
  transition: all 0.3s ease-in-out;
}
.jewelry__btn svg {
  transition: all 0.3s ease-in-out;
  margin-left: 4px;
  transition: all 0.3s ease-in-out;
}
.jewelry__btn svg path {
  fill: var(--st-text-button);
}
.jewelry__btn:hover {
  color: var(--st-text-btn-hover);
}
.jewelry__btn:hover::after {
  left: 0;
}
.jewelry__btn:hover svg {
  transform: rotate(45deg);
}
.jewelry__btn:hover svg path {
  fill: var(--st-text-btn-hover);
}

.medical__btn {
  display: inline-block;
  background: var(--st-theme-1);
  border-radius: 999px;
  padding: 10px 10px 10px 24px;
  color: var(--st-common-white);
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.medical__btn i {
  font-size: 24px;
  line-height: 28px;
  margin: 15px 0 0 20px;
  color: var(--st-theme-1);
  position: relative;
  z-index: 1;
}
.medical__btn::after {
  content: "";
  background: var(--st-common-white);
  width: 32px;
  height: 32px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  z-index: -1;
  transition: all 0.3s ease-in-out;
}
.medical__btn:hover {
  color: var(--st-theme-1);
  background: var(--st-common-white);
}
.medical__btn:hover::after {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  top: 0;
  right: 0;
  transform: translateY(0);
}

.equipment__btn {
  display: inline-block;
  background: var(--st-theme-button);
  color: var(--st-text-button);
  font-weight: var(--st-fw-button);
  font-size: var(--st-fz-button);
  line-height: var(--st-lh-button);
  font-family: var(--st-ff-button);
  border-radius: 999px;
  padding: 10px 10px 10px 24px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.equipment__btn i {
  font-size: 24px;
  line-height: 28px;
  margin: 15px 0 0 20px;
  color: var(--st-theme-button);
}
.equipment__btn svg {
  margin: 0 0 0 16px;
  width: 24px;
  height: 24px;
  position: relative;
  z-index: 1;
}
.equipment__btn svg path {
  fill: var(--st-text-button);
}
.equipment__btn::after {
  content: "";
  background: var(--st-theme-btn-hover);
  width: 32px;
  height: 32px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  z-index: -1;
  transition: all 0.3s ease-in-out;
}
.equipment__btn:hover {
  color: var(--st-text-btn-hover);
  background: var(--st-theme-btn-hover);
}
.equipment__btn:hover::after {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  top: 0;
  right: 0;
  transform: translateY(0);
}
.equipment__btn:hover svg path {
  fill: var(--st-text-btn-hover);
}

:root {
  /**
  @font family declaration
  */
  --st-ff-body: 'Poppins', sans-serif;
  --st-ff-heading: 'Poppins', sans-serif;
  --st-ff-p: 'Poppins', sans-serif;
  --st-ff-menu: 'Poppins', sans-serif;
  --st-ff-button: 'Poppins', sans-serif;
  --st-ff-fontawesome: "Font Awesome 6 Pro";
  /**
  @color declaration
  */
  --st-common-white: #ffffff;
  --st-common-black: #000;
  --st-common-black2: #111827;
  --st-common-star: #fdb022;
  --st-heading-primary: #002366;
  --st-grey-1: #70747D;
  --st-grey-2: #414652;
  --st-text-body: #70747D;
  --st-text-1: #70747D;
  --st-text-top-header: #f5ba68;
  --st-text-top-header-hover: #f04a00;
  --st-text-menu: #ffffff;
  --st-text-menu-hover: #f04a00;
  --st-text-link: #f04a00;
  --st-text-link-hover: #002366;
  --st-text-button: #ffffff;
  --st-text-btn-hover: #f04a00;
  --st-text-price: #a0a3a9;
  --st-text-sale-price: #F04A00;
  --st-text-topmenu: #F2F4F7;
  --st-text-topmenu-hover: #70747d;
  --st-text-stock: #5fa745;
  --st-text-onsale: #70747d;
  --st-text-rating: #f04a00;
  --st-theme-1: #F04A00;
  --st-theme-2: #002366;
  --st-theme-primary: #f04a00;
  --st-theme-secondery: #002366;
  --st-theme-top-header: #111827;
  --st-theme-button: #f04a00;
  --st-theme-btn-hover: #ffffff;
  --st-theme-onsale: #ffffff;
  --st-border-1: #000;
  --st-border-button: #F04A00;
  --st-border-btn-hover: #F04A00;
  /**
  @font weight declaration
  */
  --st-fw-normal: normal;
  --st-fw-elight: 200;
  --st-fw-light: 300;
  --st-fw-regular: 400;
  --st-fw-medium: 500;
  --st-fw-sbold: 600;
  --st-fw-bold: 700;
  --st-fw-ebold: 800;
  --st-fw-black: 900;
  --st-fw-heading: 600;
  --st-fw-button: 600;
  --st-fw-menu: 500;
  /**
  @font size declaration
  */
  --st-fz-body: 18px;
  --st-fz-p: 18px;
  --st-fz-h1: 80px;
  --st-fz-h2: 60px;
  --st-fz-h3: 48px;
  --st-fz-h4: 32px;
  --st-fz-h5: 24px;
  --st-fz-h6: 20px;
  --st-fz-button: 18px;
  --st-fz-menu: 18px;
  --st-fz-mob-h1: 48px;
  --st-fz-mob-h2: 38px;
  --st-fz-mob-h3: 28px;
  --st-fz-mob-h4: 24px;
  --st-fz-mob-h5: 22px;
  --st-fz-mob-h6: 20px;
  --st-fz-tab-body: 18px;
  --st-fz-tab-h1: 65px;
  --st-fz-tab-h2: 50px;
  --st-fz-tab-h3: 46px;
  --st-fz-tab-h4: 42px;
  --st-fz-tab-h5: 34px;
  --st-fz-tab-h6: 30px;
  /**
  @line height declaration
  */
  --st-lh-body: 20px;
  --st-lh-h1: 90px;
  --st-lh-h2: 70px;
  --st-lh-h3: 58px;
  --st-lh-h4: 42px;
  --st-lh-h5: 34px;
  --st-lh-h6: 30px;
  --st-lh-button: 28px;
  --st-lh-h1-tab: 75px;
  --st-lh-h2-tab: 60px;
  --st-lh-h3-tab: 48px;
  --st-lh-h4-tab: 38px;
  --st-lh-h5-tab: 34px;
  --st-lh-h6-tab: 28px;
  --st-lh-h1-mob: 58px;
  --st-lh-h2-mob: 48px;
  --st-lh-h3-mob: 34px;
  --st-lh-h4-mob: 32px;
  --st-lh-h5-mob: 30px;
  --st-lh-h6-mob: 24px;
}

@media (min-width: 768px) {
  .review__content-left .modal .modal-dialog {
    max-width: 50%;
  }
}
@media (max-width: 768px) {
  .review__content-left .modal .modal-dialog {
    max-width: 80%;
  }
}
@media (max-width: 575px) {
  .review__content-left .modal .modal-dialog {
    max-width: 100%;
  }
}
.review__content-left .modal .modal-dialog .modal-content {
  padding: 20px 40px 40px 40px;
}
@media (max-width: 575px) {
  .review__content-left .modal .modal-dialog .modal-content {
    padding: 20px;
  }
}
.review__content-left .modal .modal-dialog .modal-content .close span {
  font-size: 35px;
}
.review__content-left .modal .modal-dialog .modal-content h4 {
  font-size: 32px;
  color: rgb(65, 70, 82);
}
.review__content-left .modal .modal-dialog .modal-content .modal__note {
  font-size: 14px;
  color: rgb(112, 116, 125);
}
.review__content-left .modal .modal-dialog .modal-content .modal__note label {
  font-weight: 600;
}
.review__content-left .modal .modal-dialog .modal-content .modal__note span {
  font-weight: 400;
}
.review__content-left .modal .modal-dialog .modal-content .modal__rating {
  padding: 24px 0px 0px 0px;
}
.review__content-left .modal .modal-dialog .modal-content .modal__rating .rating {
  margin-left: 8px;
}
.review__content-left .modal .modal-dialog .modal-content .modal__rating label {
  color: rgb(65, 70, 82);
  font-weight: 400;
}
.review__content-left .modal .modal-dialog .modal-content .modal__rating .star__rating {
  padding-left: 10px;
  font-size: 16px;
  color: rgb(253, 176, 34);
}
.review__content-left .modal .modal-dialog .modal-content form .upload__area {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  border: 1px dashed rgb(230, 233, 240);
  padding: 22px 0;
  background-color: rgb(250, 250, 251);
}
.review__content-left .modal .modal-dialog .modal-content form .upload__area i {
  color: #A0A3A9;
}
.review__content-left .modal .modal-dialog .modal-content form .upload__area span {
  font-size: 14px;
  font-weight: 400;
  color: #A0A3A9;
}
.review__content-left .modal .modal-dialog .modal-content form .image-preview-container {
  padding: 5px 0;
}
.review__content-left .modal .modal-dialog .modal-content form div {
  display: flex;
  padding: 24px 0;
}
.review__content-left .modal .modal-dialog .modal-content form div .form-control {
  border: 1px solid rgb(230, 233, 240);
  border-radius: 8px;
}
.review__content-left .modal .modal-dialog .modal-content form div .form-control::placeholder {
  font-size: 18px;
  font-weight: 400;
  color: rgb(160, 163, 169);
  padding: 14px 0 14px 18px;
}
.review__content-left .modal .modal-dialog .modal-content form div input:nth-of-type(1) {
  margin-right: 24px;
}
.review__content-left .modal .modal-dialog .modal-content form textarea {
  border: 1px solid rgb(230, 233, 240);
  border-radius: 8px;
}
.review__content-left .modal .modal-dialog .modal-content form textarea::placeholder {
  font-size: 18px;
  font-weight: 400;
  color: rgb(160, 163, 169);
  padding: 0px 0 0px 18px;
}
.review__content-left .modal .modal-dialog .modal-content .review__btn {
  padding-top: 30px;
}
.review__content-left .modal .modal-dialog .modal-content .review__btn .p__review-btn {
  padding: 4px 16px !important;
  border-radius: 4px;
  line-height: 28px;
}
@media (max-width: 768px) {
  .review__content-left .p__name-email {
    display: flex;
    flex-direction: column;
    padding: 14px 0 !important;
  }
  .review__content-left .p__name-email .form-control::placeholder {
    font-size: 14px !important;
    padding: 10px 0 10px 14px !important;
  }
  .review__content-left .p__name-email input:nth-of-type(1) {
    margin-bottom: 14px;
  }
  .review__content-left textarea::placeholder {
    font-size: 14px !important;
  }
  .review__content-left .p__review-btn {
    font-size: 14px !important;
    padding: 9px 19px;
  }
  .review__content-left .modal-dialog {
    max-width: 80%;
  }
}

:root {
  /**
  @font family declaration
  */
  --st-ff-body: 'Poppins', sans-serif;
  --st-ff-heading: 'Poppins', sans-serif;
  --st-ff-p: 'Poppins', sans-serif;
  --st-ff-menu: 'Poppins', sans-serif;
  --st-ff-button: 'Poppins', sans-serif;
  --st-ff-fontawesome: "Font Awesome 6 Pro";
  /**
  @color declaration
  */
  --st-common-white: #ffffff;
  --st-common-black: #000;
  --st-common-black2: #111827;
  --st-common-star: #fdb022;
  --st-heading-primary: #002366;
  --st-grey-1: #70747D;
  --st-grey-2: #414652;
  --st-text-body: #70747D;
  --st-text-1: #70747D;
  --st-text-top-header: #f5ba68;
  --st-text-top-header-hover: #f04a00;
  --st-text-menu: #ffffff;
  --st-text-menu-hover: #f04a00;
  --st-text-link: #f04a00;
  --st-text-link-hover: #002366;
  --st-text-button: #ffffff;
  --st-text-btn-hover: #f04a00;
  --st-text-price: #a0a3a9;
  --st-text-sale-price: #F04A00;
  --st-text-topmenu: #F2F4F7;
  --st-text-topmenu-hover: #70747d;
  --st-text-stock: #5fa745;
  --st-text-onsale: #70747d;
  --st-text-rating: #f04a00;
  --st-theme-1: #F04A00;
  --st-theme-2: #002366;
  --st-theme-primary: #f04a00;
  --st-theme-secondery: #002366;
  --st-theme-top-header: #111827;
  --st-theme-button: #f04a00;
  --st-theme-btn-hover: #ffffff;
  --st-theme-onsale: #ffffff;
  --st-border-1: #000;
  --st-border-button: #F04A00;
  --st-border-btn-hover: #F04A00;
  /**
  @font weight declaration
  */
  --st-fw-normal: normal;
  --st-fw-elight: 200;
  --st-fw-light: 300;
  --st-fw-regular: 400;
  --st-fw-medium: 500;
  --st-fw-sbold: 600;
  --st-fw-bold: 700;
  --st-fw-ebold: 800;
  --st-fw-black: 900;
  --st-fw-heading: 600;
  --st-fw-button: 600;
  --st-fw-menu: 500;
  /**
  @font size declaration
  */
  --st-fz-body: 18px;
  --st-fz-p: 18px;
  --st-fz-h1: 80px;
  --st-fz-h2: 60px;
  --st-fz-h3: 48px;
  --st-fz-h4: 32px;
  --st-fz-h5: 24px;
  --st-fz-h6: 20px;
  --st-fz-button: 18px;
  --st-fz-menu: 18px;
  --st-fz-mob-h1: 48px;
  --st-fz-mob-h2: 38px;
  --st-fz-mob-h3: 28px;
  --st-fz-mob-h4: 24px;
  --st-fz-mob-h5: 22px;
  --st-fz-mob-h6: 20px;
  --st-fz-tab-body: 18px;
  --st-fz-tab-h1: 65px;
  --st-fz-tab-h2: 50px;
  --st-fz-tab-h3: 46px;
  --st-fz-tab-h4: 42px;
  --st-fz-tab-h5: 34px;
  --st-fz-tab-h6: 30px;
  /**
  @line height declaration
  */
  --st-lh-body: 20px;
  --st-lh-h1: 90px;
  --st-lh-h2: 70px;
  --st-lh-h3: 58px;
  --st-lh-h4: 42px;
  --st-lh-h5: 34px;
  --st-lh-h6: 30px;
  --st-lh-button: 28px;
  --st-lh-h1-tab: 75px;
  --st-lh-h2-tab: 60px;
  --st-lh-h3-tab: 48px;
  --st-lh-h4-tab: 38px;
  --st-lh-h5-tab: 34px;
  --st-lh-h6-tab: 28px;
  --st-lh-h1-mob: 58px;
  --st-lh-h2-mob: 48px;
  --st-lh-h3-mob: 34px;
  --st-lh-h4-mob: 32px;
  --st-lh-h5-mob: 30px;
  --st-lh-h6-mob: 24px;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 992px) and (max-width: 1199.98px) {
  section {
    padding-top: 5rem;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  section {
    padding-top: 3rem;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 992px) and (max-width: 1199.98px) {
  section.tab__area {
    padding-top: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  section.tab__area {
    padding-top: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 992px) and (max-width: 1199.98px) {
  section.blog__v3 {
    padding-top: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  section.blog__v3 {
    padding-top: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .shipping__info {
    padding-bottom: 5rem;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .shipping__info {
    padding-bottom: 3rem;
  }
}

.sub__title {
  font-size: 30px;
  font-weight: 600;
  color: var(--st-theme-1);
  display: block;
}
@media (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .sub__title {
    font-size: 18px !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .sub__title {
    font-size: 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .sub__title {
    font-size: 28px;
  }
}

@media (max-width: 575.98px) {
  .main__title {
    padding-bottom: 20px !important;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px) {
  .main__title {
    padding-bottom: 0 !important;
  }
}
.main__title span {
  color: var(--st-theme-1);
}

@media (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .tab__title {
    padding-bottom: 0 !important;
  }
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    -webkit-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    -moz-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
/*--
    - Menu
-----------------------------------------*/
.header__main-area {
  background: var(--st-theme-2);
}
.header__main-area .browse__categories {
  background: #FFFFFF;
  display: flex;
  align-items: center;
  width: 300px;
  justify-content: center;
  padding: 5px 0;
  border-radius: 10px;
}
.header__main-area .browse__categories img {
  width: 25px;
  height: 25px;
  margin-right: 12px;
}
.header__main-area .browse__categories .nice-select {
  color: #334f85 !important;
  font-weight: 500;
  font-size: 18px;
  border: none;
  background-color: transparent;
}
.header__main-area .browse__categories .nice-select::after {
  color: #334f85 !important;
  font-weight: 600;
  font-size: 16px;
}
.header__main-area .main__menu {
  position: relative;
  font-family: var(--st-ff-menu);
}
.header__main-area .main__menu ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  padding: 8px;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .header__main-area .main__menu ul {
    gap: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .header__main-area .main__menu ul {
    gap: 20px;
  }
}
.header__main-area .main__menu ul .menu-item {
  position: relative;
}
.header__main-area .main__menu ul .menu-item .sub-menu {
  position: absolute;
  background-color: var(--st-heading-primary);
  border-radius: 0 0 8px 8px;
  color: #414652;
  z-index: 99;
  width: 200px;
  display: none;
  top: 60px;
  left: 0;
  border-top: 1px solid #E6E9F0;
}
.header__main-area .main__menu ul .menu-item .sub-menu li {
  padding: 12px 20px;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  cursor: pointer;
}
.header__main-area .main__menu ul .menu-item .sub-menu li a {
  color: #fff;
}
.header__main-area .main__menu ul .menu-item .sub-menu li:hover {
  color: #F04A00;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .header__main-area .main__menu ul .menu-item .sub-menu {
    position: unset;
    background-color: unset;
    width: 100%;
  }
  .header__main-area .main__menu ul .menu-item .sub-menu li a {
    color: var(--st-heading-primary);
  }
  .header__main-area .main__menu ul .menu-item .sub-menu li {
    padding: 0;
  }
}
.header__main-area .main__menu ul .menu-item:hover .sub-menu {
  display: block;
}
.header__main-area .main__menu ul .menu-item .menu-close {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 20px;
  border-left: 1px solid #f2f4f7;
  color: var(--st-heading-primary);
  font-weight: 500;
  padding: 10px 30px;
  transition: all 0.4s ease-in-out;
}
@media (min-width: 992px) {
  .header__main-area .main__menu ul .menu-item .menu-close {
    display: none;
  }
}
.header__main-area .main__menu ul .current-menu-item a {
  color: var(--st-theme-1);
}
.header__main-area .main__menu ul li {
  list-style: none;
  font-size: 18px;
}
.header__main-area .main__menu ul li a {
  color: var(--st-text-menu);
  font-weight: var(--st-fw-menu);
  font-size: var(--st-fz-menu);
  transition: color 0.3s, border-bottom 0.3s;
  position: relative;
}
.header__main-area .main__menu ul li a:hover {
  color: var(--st-text-menu-hover);
}
.header__main-area .main__menu ul li a:focus {
  color: var(--st-text-menu-hover);
}
.header__main-area .main__menu ul li a::after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  /* Thickness of the line */
  background-color: var(--st-text-menu-hover);
  /* Line color */
  position: absolute;
  bottom: 30px;
  left: 0;
  z-index: 99;
  transition: width 0.3s;
  /* Smooth transition for the line width */
}
.header__main-area .main__menu ul li a:hover::after {
  width: 100%;
}
.header__main-area .main__menu ul li a:focus::after {
  width: 100%;
  /* Line expands to full width on hover */
}
.header__main-area .main__menu ul li a img {
  padding-right: 8px;
}
.header__main-area .support__center {
  justify-content: end;
}
.header__main-area .support__center i {
  font-size: 40px;
  line-height: 42px;
  color: var(--st-common-white);
  margin-right: 15px;
}
.header__main-area .support__center .help__no span {
  font-size: 18px;
  color: #fff;
  font-weight: 500;
}
.header__main-area .support__center .help__no p {
  padding: 0;
  margin: 0;
  font-size: 14px;
  color: #fff;
}

.menu-item:hover .mega-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.menu-item .mega-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: -150px;
  background-color: #fff;
  color: #0f0a0a;
  width: 100vh;
  /* Full viewport width */
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  transform: translateY(20px);
  border-top: 6px solid var(--st-theme-1);
  /* Optional: Adds a colored border at the top */
}
.menu-item .mega-menu .mega-menu-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.menu-item .mega-menu .mega-menu-content .section {
  flex: 1;
  min-width: 250px;
  /* Adjust as needed */
  margin: 10px;
  padding: 10px;
  border-radius: 8px;
}
.menu-item .mega-menu .mega-menu-content .section ul {
  display: flex;
  flex-direction: column;
  border-right: 2px solid var(--st-theme-1);
}
.menu-item .mega-menu .mega-menu-content .section ul li {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
}
.menu-item .mega-menu .mega-menu-content .section ul li a {
  color: var(--st-heading-1);
  transition: color 0.3s, border-bottom 0.3s;
  position: relative;
}
.menu-item .mega-menu .mega-menu-content .section ul li a::after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  /* Thickness of the line */
  background-color: rgb(4, 4, 54);
  /* Line color */
  position: absolute;
  bottom: -5px;
  left: 0;
  z-index: 99;
  transition: width 0.3s;
  /* Smooth transition for the line width */
}
.menu-item .mega-menu .mega-menu-content .section ul li a:hover {
  color: var(--st-theme-1);
}
.menu-item .mega-menu .mega-menu-content .section ul li a:hover::after {
  width: 100%;
}
.menu-item .mega-menu .mega-menu-content .section ul li a:focus::after {
  width: 100%;
  /* Line expands to full width on hover */
}
.menu-item .mega-menu .mega-menu-content h2 {
  margin-top: 0;
  font-size: 18px;
  color: #333;
}
.menu-item .mega-menu .mega-menu-content .images {
  display: flex;
  flex-direction: column;
}
.menu-item .mega-menu .mega-menu-content .images img {
  max-width: 200px;
  height: 200px;
  object-fit: cover;
  margin-top: 10px;
  border-radius: 5px;
  transition: transform 0.3s ease-in-out;
}
.menu-item .mega-menu .mega-menu-content .images img:hover {
  transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .mega-menu {
    width: 100%;
    left: 0;
  }
  .mega-menu-content {
    flex-direction: column;
  }
  .section {
    margin: 0;
    padding: 10px;
    border-bottom: 1px solid #ddd;
  }
  .main__menu .menu-items .elementor li a {
    padding: 0 !important;
  }
  .main__menu .menu-items .elementor li a:hover {
    color: var(--st-theme-1);
    background: transparent !important;
  }
}
.br-t {
  border-right: 2px solid var(--st-theme-1);
}

@media only screen and (min-width: 768px) and (max-width: 796px) {
  .header__main-area .main__menu ul {
    gap: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header__main-area .main__menu ul {
    gap: 20px;
    justify-content: end;
  }
  .header__main-area .main__menu .elementor ul {
    margin-left: 0px !important;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header__main-area .main__menu ul {
    justify-content: end;
  }
  .header__main-area .main__menu .elementor ul {
    margin-left: 0px !important;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .main__menu ul li .elementor {
    left: -18% !important;
    width: 85vw !important;
  }
}
@media only screen and (max-width: 991px) {
  .main__menu {
    display: block;
  }
}
:root {
  /**
  @font family declaration
  */
  --st-ff-body: 'Poppins', sans-serif;
  --st-ff-heading: 'Poppins', sans-serif;
  --st-ff-p: 'Poppins', sans-serif;
  --st-ff-menu: 'Poppins', sans-serif;
  --st-ff-button: 'Poppins', sans-serif;
  --st-ff-fontawesome: "Font Awesome 6 Pro";
  /**
  @color declaration
  */
  --st-common-white: #ffffff;
  --st-common-black: #000;
  --st-common-black2: #111827;
  --st-common-star: #fdb022;
  --st-heading-primary: #002366;
  --st-grey-1: #70747D;
  --st-grey-2: #414652;
  --st-text-body: #70747D;
  --st-text-1: #70747D;
  --st-text-top-header: #f5ba68;
  --st-text-top-header-hover: #f04a00;
  --st-text-menu: #ffffff;
  --st-text-menu-hover: #f04a00;
  --st-text-link: #f04a00;
  --st-text-link-hover: #002366;
  --st-text-button: #ffffff;
  --st-text-btn-hover: #f04a00;
  --st-text-price: #a0a3a9;
  --st-text-sale-price: #F04A00;
  --st-text-topmenu: #F2F4F7;
  --st-text-topmenu-hover: #70747d;
  --st-text-stock: #5fa745;
  --st-text-onsale: #70747d;
  --st-text-rating: #f04a00;
  --st-theme-1: #F04A00;
  --st-theme-2: #002366;
  --st-theme-primary: #f04a00;
  --st-theme-secondery: #002366;
  --st-theme-top-header: #111827;
  --st-theme-button: #f04a00;
  --st-theme-btn-hover: #ffffff;
  --st-theme-onsale: #ffffff;
  --st-border-1: #000;
  --st-border-button: #F04A00;
  --st-border-btn-hover: #F04A00;
  /**
  @font weight declaration
  */
  --st-fw-normal: normal;
  --st-fw-elight: 200;
  --st-fw-light: 300;
  --st-fw-regular: 400;
  --st-fw-medium: 500;
  --st-fw-sbold: 600;
  --st-fw-bold: 700;
  --st-fw-ebold: 800;
  --st-fw-black: 900;
  --st-fw-heading: 600;
  --st-fw-button: 600;
  --st-fw-menu: 500;
  /**
  @font size declaration
  */
  --st-fz-body: 18px;
  --st-fz-p: 18px;
  --st-fz-h1: 80px;
  --st-fz-h2: 60px;
  --st-fz-h3: 48px;
  --st-fz-h4: 32px;
  --st-fz-h5: 24px;
  --st-fz-h6: 20px;
  --st-fz-button: 18px;
  --st-fz-menu: 18px;
  --st-fz-mob-h1: 48px;
  --st-fz-mob-h2: 38px;
  --st-fz-mob-h3: 28px;
  --st-fz-mob-h4: 24px;
  --st-fz-mob-h5: 22px;
  --st-fz-mob-h6: 20px;
  --st-fz-tab-body: 18px;
  --st-fz-tab-h1: 65px;
  --st-fz-tab-h2: 50px;
  --st-fz-tab-h3: 46px;
  --st-fz-tab-h4: 42px;
  --st-fz-tab-h5: 34px;
  --st-fz-tab-h6: 30px;
  /**
  @line height declaration
  */
  --st-lh-body: 20px;
  --st-lh-h1: 90px;
  --st-lh-h2: 70px;
  --st-lh-h3: 58px;
  --st-lh-h4: 42px;
  --st-lh-h5: 34px;
  --st-lh-h6: 30px;
  --st-lh-button: 28px;
  --st-lh-h1-tab: 75px;
  --st-lh-h2-tab: 60px;
  --st-lh-h3-tab: 48px;
  --st-lh-h4-tab: 38px;
  --st-lh-h5-tab: 34px;
  --st-lh-h6-tab: 28px;
  --st-lh-h1-mob: 58px;
  --st-lh-h2-mob: 48px;
  --st-lh-h3-mob: 34px;
  --st-lh-h4-mob: 32px;
  --st-lh-h5-mob: 30px;
  --st-lh-h6-mob: 24px;
}

.products-per-page-dropdown {
  display: flex;
}
@media (max-width: 509px) {
  .products-per-page-dropdown {
    align-items: center;
  }
  .products-per-page-dropdown select {
    padding: 4px 8px;
    font-size: 14px;
  }
}
@media (max-width: 412px) {
  .products-per-page-dropdown {
    padding-bottom: 5px;
  }
}

@media (min-width: 595px) {
  .filter__sidebar-area .before-loop-wrapper {
    display: none;
  }
}
.filter__sidebar-area .before-loop-wrapper .products-per-page-dropdown {
  align-items: center;
  margin-bottom: 10px;
}
.filter__sidebar-area .before-loop-wrapper .show__label {
  font-size: 18px;
  color: #7a7a7a;
  font-weight: 500;
  border-radius: 8px 0 0 8px;
  padding: 8px 10px;
  border-style: solid;
  border-width: 1px 0 1px 1px;
  border-color: #E6E9F0;
  line-height: 29px;
  margin-right: -5px;
}
.filter__sidebar-area .before-loop-wrapper select {
  padding: 8px 28px 8px 10px;
  font-size: 16px;
  color: rgb(0, 35, 102);
  font-weight: 500;
  border: 1px solid #E6E9F0;
  background-color: #fff;
  appearance: none;
}
.filter__sidebar-area .before-loop-wrapper select:focus {
  color: rgb(0, 35, 102);
  outline: none;
  box-shadow: none;
}

.shop__product-wrapper {
  position: relative;
}
.shop__product-wrapper .shop__right-area {
  padding-left: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .shop__product-wrapper .shop__right-area {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 509px) {
  .shop__product-wrapper .explore__btn {
    padding: 4px 15px;
  }
}
.shop__product-wrapper .listing__header {
  padding-bottom: 20px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 594px) {
  .shop__product-wrapper .listing__header {
    flex-direction: column;
  }
}
.shop__product-wrapper .listing__header .filter-btn {
  color: #002366;
}
.shop__product-wrapper .listing__header .view__options {
  align-self: center;
}
@media (max-width: 991px) {
  .shop__product-wrapper .listing__header .view__options {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
  }
}
@media (max-width: 594px) {
  .shop__product-wrapper .listing__header .view__options {
    align-self: unset;
    justify-content: space-between;
    display: flex;
    gap: 5px;
  }
}
.shop__product-wrapper .listing__header .view__options span {
  font-size: 18px;
  color: rgb(112, 116, 125);
}
@media (max-width: 509px) {
  .shop__product-wrapper .listing__header .view__options span {
    font-size: 14px;
  }
}
.shop__product-wrapper .listing__header .view__options .fa-grid {
  margin: 0 10px;
}
.shop__product-wrapper .listing__header .view__options .fa-list,
.shop__product-wrapper .listing__header .view__options .fa-grid {
  color: rgb(160, 163, 169);
}
.shop__product-wrapper .listing__header .view__options .fa-list:hover,
.shop__product-wrapper .listing__header .view__options .fa-grid:hover {
  color: rgb(0, 35, 102);
}
@media (max-width: 594px) {
  .shop__product-wrapper .listing__header .before-loop-wrapper {
    display: none !important;
  }
}
.shop__product-wrapper .listing__header .sorting__options {
  display: flex;
  align-items: center;
}
@media (max-width: 412px) {
  .shop__product-wrapper .listing__header .sorting__options {
    flex-direction: column;
    align-items: unset;
  }
}
.shop__product-wrapper .listing__header .sorting__options .woocommerce-notices-wrapper {
  display: none;
}
@media (max-width: 700px) {
  .shop__product-wrapper .listing__header .sorting__options #products-per-page {
    width: 70px;
    font-size: 14px;
    line-height: 20px;
    padding: 8px 10px;
  }
}
@media (min-width: 992px) and (max-width: 1060px) {
  .shop__product-wrapper .listing__header .sorting__options #products-per-page {
    width: 70px;
    font-size: 14px;
    line-height: 20px;
    padding: 8px 10px;
  }
}
.shop__product-wrapper .listing__header .sorting__options .show__label {
  font-size: 18px;
  color: #7a7a7a;
  font-weight: 500;
  border-radius: 8px 0 0 8px;
  padding: 8px 10px;
  border-style: solid;
  border-width: 1px 0 1px 1px;
  border-color: #E6E9F0;
  line-height: 29px;
}
@media (max-width: 700px) {
  .shop__product-wrapper .listing__header .sorting__options .show__label {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1060px) {
  .shop__product-wrapper .listing__header .sorting__options .show__label {
    font-size: 14px;
    line-height: 20px;
  }
}
.shop__product-wrapper .listing__header .sorting__options .products__per-page {
  border-radius: 0px 4px 4px 0px !important;
  position: relative;
}
.shop__product-wrapper .listing__header .sorting__options .products__per-page select {
  padding: 4px 8px;
  font-size: 16px;
  color: rgb(0, 35, 102);
  font-weight: 500;
  border: 1px solid #E6E9F0;
  background-color: #fff;
  appearance: none;
}
.shop__product-wrapper .listing__header .sorting__options .products__per-page select:focus {
  color: rgb(0, 35, 102);
  outline: none;
  box-shadow: none;
}
.shop__product-wrapper .listing__header .sorting__options .sort__order {
  margin-left: 20px;
  position: relative;
}
@media (max-width: 509px) {
  .shop__product-wrapper .listing__header .sorting__options .sort__order {
    margin-left: 10px;
  }
}
@media (max-width: 412px) {
  .shop__product-wrapper .listing__header .sorting__options .sort__order {
    margin-left: 0;
  }
}
.shop__product-wrapper .listing__header .sorting__options .sort__order .sort-by-wrapper {
  display: flex;
}
.shop__product-wrapper .listing__header .sorting__options .sort__order .sort-by-wrapper select {
  padding: 4px 28px 4px 8px;
}
@media (max-width: 700px) {
  .shop__product-wrapper .listing__header .sorting__options .sort__order .sort-by-wrapper {
    align-items: center;
  }
  .shop__product-wrapper .listing__header .sorting__options .sort__order .sort-by-wrapper select {
    padding: 4px 20px 4px 8px;
    font-size: 14px;
    background-position: right 0 center;
  }
}
@media (min-width: 992px) and (max-width: 1060px) {
  .shop__product-wrapper .listing__header .sorting__options .sort__order .sort-by-wrapper select {
    padding: 4px 20px 4px 8px;
    font-size: 14px;
    background-position: right 0 center;
  }
}

@media (max-width: 991px) {
  .shop__product-wrapper .listing__header {
    padding-top: 15px;
  }
}
@media (max-width: 768px) {
  .shop__product-wrapper .listing__header {
    padding-top: 15px;
  }
  .shop__header .breadcrumb-container .breadcrumb-title {
    font-size: 50px;
    line-height: 60px;
  }
}
@media (max-width: 510px) {
  .shop__product-wrapper .listing__header {
    display: block;
    padding-top: 5px;
  }
  .shop__product-wrapper .listing__header .view__options {
    padding-bottom: 5px;
  }
}
:root {
  /**
  @font family declaration
  */
  --st-ff-body: 'Poppins', sans-serif;
  --st-ff-heading: 'Poppins', sans-serif;
  --st-ff-p: 'Poppins', sans-serif;
  --st-ff-menu: 'Poppins', sans-serif;
  --st-ff-button: 'Poppins', sans-serif;
  --st-ff-fontawesome: "Font Awesome 6 Pro";
  /**
  @color declaration
  */
  --st-common-white: #ffffff;
  --st-common-black: #000;
  --st-common-black2: #111827;
  --st-common-star: #fdb022;
  --st-heading-primary: #002366;
  --st-grey-1: #70747D;
  --st-grey-2: #414652;
  --st-text-body: #70747D;
  --st-text-1: #70747D;
  --st-text-top-header: #f5ba68;
  --st-text-top-header-hover: #f04a00;
  --st-text-menu: #ffffff;
  --st-text-menu-hover: #f04a00;
  --st-text-link: #f04a00;
  --st-text-link-hover: #002366;
  --st-text-button: #ffffff;
  --st-text-btn-hover: #f04a00;
  --st-text-price: #a0a3a9;
  --st-text-sale-price: #F04A00;
  --st-text-topmenu: #F2F4F7;
  --st-text-topmenu-hover: #70747d;
  --st-text-stock: #5fa745;
  --st-text-onsale: #70747d;
  --st-text-rating: #f04a00;
  --st-theme-1: #F04A00;
  --st-theme-2: #002366;
  --st-theme-primary: #f04a00;
  --st-theme-secondery: #002366;
  --st-theme-top-header: #111827;
  --st-theme-button: #f04a00;
  --st-theme-btn-hover: #ffffff;
  --st-theme-onsale: #ffffff;
  --st-border-1: #000;
  --st-border-button: #F04A00;
  --st-border-btn-hover: #F04A00;
  /**
  @font weight declaration
  */
  --st-fw-normal: normal;
  --st-fw-elight: 200;
  --st-fw-light: 300;
  --st-fw-regular: 400;
  --st-fw-medium: 500;
  --st-fw-sbold: 600;
  --st-fw-bold: 700;
  --st-fw-ebold: 800;
  --st-fw-black: 900;
  --st-fw-heading: 600;
  --st-fw-button: 600;
  --st-fw-menu: 500;
  /**
  @font size declaration
  */
  --st-fz-body: 18px;
  --st-fz-p: 18px;
  --st-fz-h1: 80px;
  --st-fz-h2: 60px;
  --st-fz-h3: 48px;
  --st-fz-h4: 32px;
  --st-fz-h5: 24px;
  --st-fz-h6: 20px;
  --st-fz-button: 18px;
  --st-fz-menu: 18px;
  --st-fz-mob-h1: 48px;
  --st-fz-mob-h2: 38px;
  --st-fz-mob-h3: 28px;
  --st-fz-mob-h4: 24px;
  --st-fz-mob-h5: 22px;
  --st-fz-mob-h6: 20px;
  --st-fz-tab-body: 18px;
  --st-fz-tab-h1: 65px;
  --st-fz-tab-h2: 50px;
  --st-fz-tab-h3: 46px;
  --st-fz-tab-h4: 42px;
  --st-fz-tab-h5: 34px;
  --st-fz-tab-h6: 30px;
  /**
  @line height declaration
  */
  --st-lh-body: 20px;
  --st-lh-h1: 90px;
  --st-lh-h2: 70px;
  --st-lh-h3: 58px;
  --st-lh-h4: 42px;
  --st-lh-h5: 34px;
  --st-lh-h6: 30px;
  --st-lh-button: 28px;
  --st-lh-h1-tab: 75px;
  --st-lh-h2-tab: 60px;
  --st-lh-h3-tab: 48px;
  --st-lh-h4-tab: 38px;
  --st-lh-h5-tab: 34px;
  --st-lh-h6-tab: 28px;
  --st-lh-h1-mob: 58px;
  --st-lh-h2-mob: 48px;
  --st-lh-h3-mob: 34px;
  --st-lh-h4-mob: 32px;
  --st-lh-h5-mob: 30px;
  --st-lh-h6-mob: 24px;
}

.ps-28 {
  padding-left: 28px;
}

.ps-20 {
  padding-left: 20px;
}

.pt-20 {
  padding-top: 20px;
}

.pe-28 {
  padding-right: 28px;
}

.product__details-tab .product__tab .p__tab-btn {
  color: rgb(160, 163, 169);
  font-size: 24px;
  line-height: 32px;
  font-weight: 500 !important;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  margin-right: 30px;
  padding-bottom: 10px !important;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 1400px) and (max-width: 1600px) {
  .product__details-tab .product__tab .p__tab-btn {
    font-size: 20px;
    padding: 0;
    margin-right: 20px;
  }
}
@media (max-width: 575.98px) {
  .product__details-tab .product__tab .p__tab-btn {
    font-size: 18px;
    margin-right: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), only screen and (min-width: 768px) and (max-width: 991.98px) {
  .product__details-tab .product__tab .p__tab-btn {
    margin-right: 15px;
  }
}
.product__details-tab .product__tab .p__tab-btn:last-child {
  margin-right: 0;
}
.product__details-tab .product__tab .active {
  border-bottom: 2px solid var(--st-theme-1);
  color: var(--st-theme-1);
  font-weight: 700;
}
.product__details-tab .product__tabcontent {
  color: rgb(160, 163, 169);
  border-top: 1px solid rgb(230, 233, 240);
}
.product__details-tab .product__tabcontent .decription__content p {
  color: rgb(112, 116, 125);
  font-weight: 400;
  line-height: 28px;
  padding-bottom: 10px;
}
.product__details-tab .product__tabcontent .decription__content .d__content-left h4 {
  font-size: 18px;
  font-weight: 400;
  color: rgb(65, 70, 82);
}
.product__details-tab .product__tabcontent .decription__content .d__content-left ul {
  margin-left: 25px;
  line-height: 28px;
  font-weight: 400;
  color: rgb(112, 116, 125);
}
.product__details-tab .product__tabcontent .decription__content .d__content-right h4 {
  font-size: 18px;
  font-weight: 400;
  color: rgb(65, 70, 82);
}
.product__details-tab .product__tabcontent .decription__content .d__content-right p {
  color: rgb(112, 116, 125);
  font-weight: 400;
  line-height: 28px;
}
.product__details-tab .product__tabcontent .decription__content a {
  width: 100%;
}
.product__details-tab .product__tabcontent .decription__content a img {
  margin: 28px 0;
  width: 100%;
}
.product__details-tab .product__tabcontent .decription__content .view__btn {
  display: inline-block;
  padding: 4px 16px;
  font-weight: 600;
}
.product__details-tab .product__tabcontent .decription__content #extraContent {
  display: none;
}

.product__tabcontent .modal {
  left: 50%;
  transform: translateX(-50%);
}
.product__tabcontent .decription__content {
  padding-top: 15px;
}
.product__tabcontent .additional__info-content {
  padding-top: 40px;
}
.product__tabcontent .additional__info-content table {
  background-color: rgb(250, 250, 251);
}
.product__tabcontent .additional__info-content table tbody tr td {
  padding: 10px 35px;
  border: 1px solid rgb(230, 233, 240);
}
.product__tabcontent .additional__info-content table tbody tr .t__heading {
  color: rgb(65, 70, 82);
  font-weight: 500;
}
.product__tabcontent .additional__info-content table tbody tr .t__content {
  color: rgb(112, 116, 125);
  font-weight: 400;
}

.related__product {
  padding: 100px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .related__product {
    padding: 80px 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .related__product {
    padding: 50px 0;
  }
}

.product__tabcontent .review__content {
  padding-top: 35px;
}
.product__tabcontent .review__content .review__content-wrapper {
  row-gap: 30px;
}
.product__tabcontent .review__content .review__content-left .average__rating {
  color: var(--st-heading-primary);
  display: inline-block;
  margin-bottom: 0;
}
.product__tabcontent .review__content .review__content-left .product__rating {
  padding-left: 10px;
  display: inline-block;
}
.product__tabcontent .review__content .review__content-left .product__rating .rating_wrapper {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}
.product__tabcontent .review__content .review__content-left .product__rating .ratings__text {
  font-weight: 500;
  color: rgb(112, 116, 125);
  line-height: 28px;
}
.product__tabcontent .review__content .review__content-left .product__rating .product__review {
  padding-top: 3px;
  display: inline-block;
  color: rgb(253, 176, 34);
  font-size: 20px;
}
.product__tabcontent .review__content .review__content-left .product__rating .product__review svg path {
  fill: var(--st-common-star);
}
.product__tabcontent .review__content .review__content-left .product__rating .total__reviews {
  padding-top: 3px;
  display: inline-block;
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
}
.product__tabcontent .review__content .review__content-left .product__progress-bar {
  margin-bottom: 12px;
}
.product__tabcontent .review__content .review__content-left .product__progress-bar .rating__text {
  font-size: 20px;
  font-weight: 600;
  color: rgb(112, 116, 125);
}
.product__tabcontent .review__content .review__content-left .product__progress-bar .rating__text-2 {
  margin-left: 35px;
}
.product__tabcontent .review__content .review__content-left .product__progress-bar .rating__bar {
  background-color: rgb(230, 233, 240);
  border-radius: 5px;
  height: 8px;
  margin-left: 30px;
}
.product__tabcontent .review__content .review__content-left .product__progress-bar .rating__bar .rating__bar-fill {
  background-color: var(--st-theme-1);
  height: 100%;
  border-radius: 5px;
}
.product__tabcontent .review__content .review__content-left .review__btn {
  padding-top: 15px;
}
.product__tabcontent .review__content .review__content-left .review__btn .p__review-btn {
  padding: 15px 43px;
  color: #fff;
  background: var(--st-theme-1);
  font-weight: 600;
  border-radius: 8px;
  display: inline-block;
  font-size: 18px;
  transition: all ease-in-out 0.3s;
  border: 1px solid var(--st-theme-1);
}
.product__tabcontent .review__content .review__content-left .review__btn .p__review-btn a {
  text-decoration: none !important;
}
.product__tabcontent .review__content .review__content-left .review__btn .p__review-btn:hover {
  background-color: var(--st-common-white);
  color: var(--st-theme-1);
}
.product__tabcontent .review__content .review__content-right .p__top-review {
  text-align: right;
}
.product__tabcontent .review__content .review__content-right .p__top-review .dropdown .dropdown-toggle {
  color: rgb(0, 35, 102);
  font-size: 14px;
  font-weight: 500;
}
.product__tabcontent .review__content .review__content-right .p__top-review .dropdown .dropdown-toggle::after {
  display: none;
}
.product__tabcontent .review__content .review__content-right .p__top-review .dropdown .dropdown-toggle i {
  padding-left: 10px;
}
.product__tabcontent .review__content .review__content-right .p__top-review .dropdown div select {
  padding: 8px 40px 8px 12px;
  border-radius: 8px;
}
.product__tabcontent .review__content .review__content-right .top__review img.review_image {
  width: 60px;
  height: 56px;
  object-fit: contain;
  border-radius: 4px;
  background-color: #F2F4F7;
}
.product__tabcontent .review__content .review__content-right .top__review,
.product__tabcontent .review__content .review__content-right .top__review-reply {
  background-color: rgb(250, 250, 251);
  border-radius: 8px;
  padding: 24px 40px;
  margin-top: 28px;
}
.product__tabcontent .review__content .review__content-right .top__review a img,
.product__tabcontent .review__content .review__content-right .top__review-reply a img {
  margin-top: 10px;
  border-radius: 50px;
  margin-right: 10px;
}
.product__tabcontent .review__content .review__content-right .top__review .reviewer__content,
.product__tabcontent .review__content .review__content-right .top__review-reply .reviewer__content {
  padding-left: 10px;
}
@media (max-width: 475px) {
  .product__tabcontent .review__content .review__content-right .top__review .reviewer__content .reviewer__content-top,
  .product__tabcontent .review__content .review__content-right .top__review-reply .reviewer__content .reviewer__content-top {
    flex-direction: column;
    margin-bottom: 10px;
  }
}
.product__tabcontent .review__content .review__content-right .top__review .reviewer__content .reviewer__content-top a,
.product__tabcontent .review__content .review__content-right .top__review-reply .reviewer__content .reviewer__content-top a {
  color: rgb(160, 163, 169);
}
.product__tabcontent .review__content .review__content-right .top__review .reviewer__content .reviewer__content-top h4,
.product__tabcontent .review__content .review__content-right .top__review-reply .reviewer__content .reviewer__content-top h4 {
  color: rgb(65, 70, 82);
  font-weight: 500;
  font-size: 20px;
  display: inline-block;
  margin: 0;
}
.product__tabcontent .review__content .review__content-right .top__review .reviewer__content .reviewer__content-top span,
.product__tabcontent .review__content .review__content-right .top__review-reply .reviewer__content .reviewer__content-top span {
  padding-left: 10px;
  font-weight: 400;
}
.product__tabcontent .review__content .review__content-right .top__review .reviewer__content .star__rating,
.product__tabcontent .review__content .review__content-right .top__review-reply .reviewer__content .star__rating {
  color: rgb(253, 176, 34);
  font-size: 16px;
}
.product__tabcontent .review__content .review__content-right .top__review .reviewer__content .star__rating svg path,
.product__tabcontent .review__content .review__content-right .top__review-reply .reviewer__content .star__rating svg path {
  fill: var(--st-common-star);
}
.product__tabcontent .review__content .review__content-right .top__review .reviewer__content p,
.product__tabcontent .review__content .review__content-right .top__review-reply .reviewer__content p {
  padding-top: 15px;
  font-weight: 400;
  color: rgb(160, 163, 169);
}
.product__tabcontent .review__content .review__content-right .top__review-reply .p__triangle {
  top: -20px;
  left: 50px;
  border-bottom: solid 20px rgb(250, 250, 251);
  border-left: solid 20px transparent;
  border-right: solid 20px transparent;
}
.product__tabcontent .review__content .review__content-right .top__review-reply p {
  padding: 0 !important;
}
.product__tabcontent .review__content .review__content-right .top__review-btn {
  padding-top: 30px;
}
.product__tabcontent .review__content .review__content-right .top__review-btn .view__btn {
  display: inline-block;
}

.rating {
  --dir: right;
  --fill: rgba(253, 176, 34, 1);
  --fillbg: rgba(100, 100, 100, 0.15);
  --star: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 17.25l-6.188 3.75 1.641-7.031-5.438-4.734 7.172-0.609 2.813-6.609 2.813 6.609 7.172 0.609-5.438 4.734 1.641 7.031z"/></svg>');
  --stars: 5;
  --starsize: 24px;
  --symbol: var(--star);
  --value: 5;
  --w: calc(var(--stars) * var(--starsize));
  --x: calc(100% * (var(--value) / var(--stars)));
  block-size: var(--starsize);
  inline-size: var(--w);
  position: relative;
  touch-action: manipulation;
  -webkit-appearance: none;
}
.rating::-moz-range-track {
  background: linear-gradient(to var(--dir), var(--fill) 0 var(--x), var(--fillbg) 0 var(--x));
  block-size: 100%;
  mask: repeat left center/var(--starsize) var(--symbol);
}
.rating::-webkit-slider-runnable-track {
  background: linear-gradient(to var(--dir), var(--fill) 0 var(--x), var(--fillbg) 0 var(--x));
  block-size: 100%;
  mask: repeat left center/var(--starsize) var(--symbol);
  -webkit-mask: repeat left center/var(--starsize) var(--symbol);
}
.rating::-moz-range-thumb {
  height: var(--starsize);
  opacity: 0;
  width: var(--starsize);
}
.rating::-webkit-slider-thumb {
  height: var(--starsize);
  opacity: 0;
  width: var(--starsize);
  -webkit-appearance: none;
}

[dir=rtl] .rating {
  --dir: left;
}

.rating,
.rating-label {
  display: block;
  font-family: ui-sans-serif, system-ui, sans-serif;
}

.rating-label {
  margin-block-end: 1rem;
}

.blog__pagination {
  text-align: center;
  padding: 25px 0;
}
.blog__pagination .pagination {
  justify-content: center;
  gap: 5px;
}
.blog__pagination .page-numbers {
  color: var(--st-theme-1);
  display: inline-block;
  outline: 1px dashed var(--st-theme-1);
  outline-offset: 4px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin-right: 13px;
}
.blog__pagination .page-numbers:hover {
  background-color: var(--st-theme-1);
  color: var(--st-common-white);
  border: none;
}
.blog__pagination .current {
  background-color: var(--st-theme-1);
  color: var(--st-common-white);
}
@media (max-width: 991px) {
  .blog__pagination .page-numbers {
    margin-top: 10px;
    width: 25px;
    height: 25px;
    line-height: 25px;
    margin-right: 10px;
    font-size: 16px;
  }
}

.swiper-button-next,
.swiper-button-prev {
  display: block !important;
}

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

/* Pagination dots */
.swiper-pagination {
  position: relative;
  margin-top: 20px;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #ccc;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #000; /* Change active dot color as needed */
}

.custom__product-widget .swiper-pagination-bullet:not(:last-child)::after {
  display: none !important;
}

.custom__product-widget .swiper-button-next,
.custom__product-widget .swiper-button-prev {
  display: block !important;
}

.custom__product-widget .swiper-button-next i,
.custom__product-widget .swiper-button-prev i {
  background: #fff;
  font-size: 40px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  color: var(--st-theme-1);
  align-items: center;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px !important;
  justify-content: center;
}

.navigation__wrapper .swiper-button-next-grid {
  right: 0px !important;
}

.navigation__wrapper .swiper-button-prev-grid {
  left: -22px !important;
}

:root {
  /**
  @font family declaration
  */
  --st-ff-body: 'Poppins', sans-serif;
  --st-ff-heading: 'Poppins', sans-serif;
  --st-ff-p: 'Poppins', sans-serif;
  --st-ff-menu: 'Poppins', sans-serif;
  --st-ff-button: 'Poppins', sans-serif;
  --st-ff-fontawesome: "Font Awesome 6 Pro";
  /**
  @color declaration
  */
  --st-common-white: #ffffff;
  --st-common-black: #000;
  --st-common-black2: #111827;
  --st-common-star: #fdb022;
  --st-heading-primary: #002366;
  --st-grey-1: #70747D;
  --st-grey-2: #414652;
  --st-text-body: #70747D;
  --st-text-1: #70747D;
  --st-text-top-header: #f5ba68;
  --st-text-top-header-hover: #f04a00;
  --st-text-menu: #ffffff;
  --st-text-menu-hover: #f04a00;
  --st-text-link: #f04a00;
  --st-text-link-hover: #002366;
  --st-text-button: #ffffff;
  --st-text-btn-hover: #f04a00;
  --st-text-price: #a0a3a9;
  --st-text-sale-price: #F04A00;
  --st-text-topmenu: #F2F4F7;
  --st-text-topmenu-hover: #70747d;
  --st-text-stock: #5fa745;
  --st-text-onsale: #70747d;
  --st-text-rating: #f04a00;
  --st-theme-1: #F04A00;
  --st-theme-2: #002366;
  --st-theme-primary: #f04a00;
  --st-theme-secondery: #002366;
  --st-theme-top-header: #111827;
  --st-theme-button: #f04a00;
  --st-theme-btn-hover: #ffffff;
  --st-theme-onsale: #ffffff;
  --st-border-1: #000;
  --st-border-button: #F04A00;
  --st-border-btn-hover: #F04A00;
  /**
  @font weight declaration
  */
  --st-fw-normal: normal;
  --st-fw-elight: 200;
  --st-fw-light: 300;
  --st-fw-regular: 400;
  --st-fw-medium: 500;
  --st-fw-sbold: 600;
  --st-fw-bold: 700;
  --st-fw-ebold: 800;
  --st-fw-black: 900;
  --st-fw-heading: 600;
  --st-fw-button: 600;
  --st-fw-menu: 500;
  /**
  @font size declaration
  */
  --st-fz-body: 18px;
  --st-fz-p: 18px;
  --st-fz-h1: 80px;
  --st-fz-h2: 60px;
  --st-fz-h3: 48px;
  --st-fz-h4: 32px;
  --st-fz-h5: 24px;
  --st-fz-h6: 20px;
  --st-fz-button: 18px;
  --st-fz-menu: 18px;
  --st-fz-mob-h1: 48px;
  --st-fz-mob-h2: 38px;
  --st-fz-mob-h3: 28px;
  --st-fz-mob-h4: 24px;
  --st-fz-mob-h5: 22px;
  --st-fz-mob-h6: 20px;
  --st-fz-tab-body: 18px;
  --st-fz-tab-h1: 65px;
  --st-fz-tab-h2: 50px;
  --st-fz-tab-h3: 46px;
  --st-fz-tab-h4: 42px;
  --st-fz-tab-h5: 34px;
  --st-fz-tab-h6: 30px;
  /**
  @line height declaration
  */
  --st-lh-body: 20px;
  --st-lh-h1: 90px;
  --st-lh-h2: 70px;
  --st-lh-h3: 58px;
  --st-lh-h4: 42px;
  --st-lh-h5: 34px;
  --st-lh-h6: 30px;
  --st-lh-button: 28px;
  --st-lh-h1-tab: 75px;
  --st-lh-h2-tab: 60px;
  --st-lh-h3-tab: 48px;
  --st-lh-h4-tab: 38px;
  --st-lh-h5-tab: 34px;
  --st-lh-h6-tab: 28px;
  --st-lh-h1-mob: 58px;
  --st-lh-h2-mob: 48px;
  --st-lh-h3-mob: 34px;
  --st-lh-h4-mob: 32px;
  --st-lh-h5-mob: 30px;
  --st-lh-h6-mob: 24px;
}

.benariz__popup-video {
  height: 120px;
  width: 120px;
  background-color: var(--st-theme-1);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  outline: 20px solid rgba(255, 255, 255, 0.1);
}
.benariz__popup-video i {
  color: #FAFAFB;
  font-size: 45px;
}

.play-button-main-wapper {
  display: flex;
}
.play-button-main-wapper .play-button-wapper {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid var(--st-common-white);
  color: var(--st-common-white);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

:root {
  /**
  @font family declaration
  */
  --st-ff-body: 'Poppins', sans-serif;
  --st-ff-heading: 'Poppins', sans-serif;
  --st-ff-p: 'Poppins', sans-serif;
  --st-ff-menu: 'Poppins', sans-serif;
  --st-ff-button: 'Poppins', sans-serif;
  --st-ff-fontawesome: "Font Awesome 6 Pro";
  /**
  @color declaration
  */
  --st-common-white: #ffffff;
  --st-common-black: #000;
  --st-common-black2: #111827;
  --st-common-star: #fdb022;
  --st-heading-primary: #002366;
  --st-grey-1: #70747D;
  --st-grey-2: #414652;
  --st-text-body: #70747D;
  --st-text-1: #70747D;
  --st-text-top-header: #f5ba68;
  --st-text-top-header-hover: #f04a00;
  --st-text-menu: #ffffff;
  --st-text-menu-hover: #f04a00;
  --st-text-link: #f04a00;
  --st-text-link-hover: #002366;
  --st-text-button: #ffffff;
  --st-text-btn-hover: #f04a00;
  --st-text-price: #a0a3a9;
  --st-text-sale-price: #F04A00;
  --st-text-topmenu: #F2F4F7;
  --st-text-topmenu-hover: #70747d;
  --st-text-stock: #5fa745;
  --st-text-onsale: #70747d;
  --st-text-rating: #f04a00;
  --st-theme-1: #F04A00;
  --st-theme-2: #002366;
  --st-theme-primary: #f04a00;
  --st-theme-secondery: #002366;
  --st-theme-top-header: #111827;
  --st-theme-button: #f04a00;
  --st-theme-btn-hover: #ffffff;
  --st-theme-onsale: #ffffff;
  --st-border-1: #000;
  --st-border-button: #F04A00;
  --st-border-btn-hover: #F04A00;
  /**
  @font weight declaration
  */
  --st-fw-normal: normal;
  --st-fw-elight: 200;
  --st-fw-light: 300;
  --st-fw-regular: 400;
  --st-fw-medium: 500;
  --st-fw-sbold: 600;
  --st-fw-bold: 700;
  --st-fw-ebold: 800;
  --st-fw-black: 900;
  --st-fw-heading: 600;
  --st-fw-button: 600;
  --st-fw-menu: 500;
  /**
  @font size declaration
  */
  --st-fz-body: 18px;
  --st-fz-p: 18px;
  --st-fz-h1: 80px;
  --st-fz-h2: 60px;
  --st-fz-h3: 48px;
  --st-fz-h4: 32px;
  --st-fz-h5: 24px;
  --st-fz-h6: 20px;
  --st-fz-button: 18px;
  --st-fz-menu: 18px;
  --st-fz-mob-h1: 48px;
  --st-fz-mob-h2: 38px;
  --st-fz-mob-h3: 28px;
  --st-fz-mob-h4: 24px;
  --st-fz-mob-h5: 22px;
  --st-fz-mob-h6: 20px;
  --st-fz-tab-body: 18px;
  --st-fz-tab-h1: 65px;
  --st-fz-tab-h2: 50px;
  --st-fz-tab-h3: 46px;
  --st-fz-tab-h4: 42px;
  --st-fz-tab-h5: 34px;
  --st-fz-tab-h6: 30px;
  /**
  @line height declaration
  */
  --st-lh-body: 20px;
  --st-lh-h1: 90px;
  --st-lh-h2: 70px;
  --st-lh-h3: 58px;
  --st-lh-h4: 42px;
  --st-lh-h5: 34px;
  --st-lh-h6: 30px;
  --st-lh-button: 28px;
  --st-lh-h1-tab: 75px;
  --st-lh-h2-tab: 60px;
  --st-lh-h3-tab: 48px;
  --st-lh-h4-tab: 38px;
  --st-lh-h5-tab: 34px;
  --st-lh-h6-tab: 28px;
  --st-lh-h1-mob: 58px;
  --st-lh-h2-mob: 48px;
  --st-lh-h3-mob: 34px;
  --st-lh-h4-mob: 32px;
  --st-lh-h5-mob: 30px;
  --st-lh-h6-mob: 24px;
}

.testimonial__wrapper {
  /* Progress bar container */
}
.testimonial__wrapper .swiper {
  padding: 20px;
}
.testimonial__wrapper .swiper .swiper-button-prev,
.testimonial__wrapper .swiper .swiper-button-next {
  display: block !important;
  top: 45%;
  transform: translateY(-45%);
}
.testimonial__wrapper .swiper .swiper-button-prev i,
.testimonial__wrapper .swiper .swiper-button-next i {
  font-size: 20px;
  height: 40px;
  width: 40px;
  color: var(--st-theme-1);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #fff;
}
.testimonial__wrapper .swiper .swiper-button-prev::after,
.testimonial__wrapper .swiper .swiper-button-next::after {
  display: none;
}
.testimonial__wrapper .swiper .swiper-button-next {
  right: 24px !important;
}
.testimonial__wrapper .testimonial {
  padding: 40px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px), (max-width: 575.98px) {
  .testimonial__wrapper .testimonial {
    padding: 20px;
  }
}
.testimonial__wrapper .testimonial .testimonial__title {
  padding-bottom: 16px;
}
.testimonial__wrapper .testimonial .testimonial__title .client__author .client__des {
  margin-left: 12px;
}
.testimonial__wrapper .testimonial .testimonial__title .client__author .client__des span {
  font-size: 14px;
}
.testimonial__wrapper .testimonial .testimonial__content {
  padding-top: 16px;
}
.testimonial__wrapper .testimonial .testimonial__content p {
  color: #70747D;
  margin: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px), (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .testimonial__wrapper .testimonial .testimonial__content p {
    font-size: 14px;
  }
}
.testimonial__wrapper .testimonial .client__reviews {
  padding-top: 16px;
}
.testimonial__wrapper .testimonial .client__reviews li {
  margin-right: 5px;
}
.testimonial__wrapper .testimonial .client__reviews li i {
  color: #FDB022;
}
.testimonial__wrapper .client__img {
  width: 60px;
  height: 60px;
  position: relative;
}
.testimonial__wrapper .client__img img {
  width: 100%;
  height: 100%;
}
.testimonial__wrapper .client__img .testimonial__image-icon {
  position: absolute;
  display: flex;
  bottom: 5px;
  right: 5px;
}
.testimonial__wrapper .client__img .testimonial__image-icon svg, .testimonial__wrapper .client__img .testimonial__image-icon i {
  width: 100%;
  height: 100%;
}
.testimonial__wrapper .pagination__wrapper {
  margin-top: 40px;
}
.testimonial__wrapper .swiper-pagination {
  text-align: center;
  display: flex;
}
.testimonial__wrapper .swiper-pagination-bullet {
  margin: 0 0 !important;
  z-index: 999;
  display: inline-block;
  height: 4px;
  width: 40px;
  background: #FEEDE6;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .testimonial__wrapper .swiper-pagination-bullet {
    width: 30px;
  }
}
@media (max-width: 575.98px) {
  .testimonial__wrapper .swiper-pagination-bullet {
    width: 20px;
  }
}
.testimonial__wrapper .swiper-pagination-bullet::after {
  width: 0;
}
.testimonial__wrapper .swiper-pagination-bullet-active {
  background: var(--st-theme-primary);
  height: 4px;
  border-radius: 4px;
  transition: width 0.3s ease-in-out;
}
.testimonial__wrapper .swiper-pagination-bullet-active::after {
  width: 0;
}
.testimonial__wrapper .swiper-pagination-bullet:not(:last-child)::after {
  background-color: unset;
}

.testimonial__wrapper {
  display: flex;
  justify-content: center;
  gap: 0px;
}
.testimonial__wrapper .testimonial-swiper {
  width: 100%;
  padding: 0 0 25px;
}
.testimonial__wrapper .testimonial-swiper .swiper-wrapper .swiper-slide .testimonial__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  text-align: center;
  max-width: 552px;
  padding: 32px 32px 64px 32px;
  width: 100%;
}
.testimonial__wrapper .testimonial-swiper .swiper-wrapper .swiper-slide .testimonial__card img {
  width: 60px;
  height: 60px;
}
.testimonial__wrapper .testimonial-swiper .swiper-wrapper .swiper-slide .testimonial__card .testimonial__content__2 {
  padding-top: 8px;
  width: 100%;
}
.testimonial__wrapper .testimonial-swiper .swiper-wrapper .swiper-slide .testimonial__card .testimonial__content__2 .testimonial__review_2 {
  width: 168px;
  height: 48px;
  position: absolute;
  bottom: -24px;
  left: 35%;
}
.testimonial__wrapper .testimonial-swiper .swiper-wrapper .swiper-slide .testimonial__card .testimonial__content__2 .testimonial__review_2 ul {
  display: flex;
}
.testimonial__wrapper .testimonial-swiper .swiper-wrapper .swiper-slide .testimonial__card .testimonial__content__2 .testimonial__review_2 ul li {
  list-style: none;
  text-decoration: none;
}
.testimonial__wrapper .testimonial-swiper .swiper-wrapper .swiper-slide .testimonial__card .testimonial__icon {
  width: 30px;
  position: absolute;
  right: 30px;
  top: 30px;
}
.testimonial__wrapper .testimonial-swiper .swiper-button-next:after, .testimonial__wrapper .testimonial-swiper .swiper-button-prev:after {
  display: none !important;
}
.testimonial__wrapper .testimonial-swiper .swiper-button-prev i, .testimonial__wrapper .testimonial-swiper .swiper-button-next i {
  font-size: 40px;
  height: 40px;
  width: 40px;
  color: #daa14c;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
}

/**
* Tailors - Testimonials Slider _ Layout 3
*/
.nttt__testimonial-layout-3-wrapper.testimonial__wrapper .testimonial-swiper {
  padding-bottom: 0;
  height: auto;
}
.nttt__testimonial-layout-3-wrapper.testimonial__wrapper .testimonial-swiper.swiper-with-navigation {
  padding: 0 38px;
}
@media (max-width: 575.98px) {
  .nttt__testimonial-layout-3-wrapper.testimonial__wrapper .testimonial-swiper.swiper-with-navigation {
    padding: 0 2px;
  }
}
.nttt__testimonial-layout-3-wrapper .testimonial-card {
  border: 1px solid #fff;
  position: relative;
  padding: 40px 55px 72px 55px;
  margin-bottom: 50px;
  z-index: 9;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .nttt__testimonial-layout-3-wrapper .testimonial-card {
    padding: 40px 40px 72px 40px;
  }
}
@media (max-width: 991px) {
  .nttt__testimonial-layout-3-wrapper .testimonial-card {
    padding: 30px 20px 72px 20px;
  }
}
.nttt__testimonial-layout-3-wrapper .testimonial-card .client__reviews {
  padding-bottom: 30px;
}
@media (max-width: 991px) {
  .nttt__testimonial-layout-3-wrapper .testimonial-card .client__reviews {
    padding-bottom: 20px;
  }
}
.nttt__testimonial-layout-3-wrapper .testimonial-card .client__reviews li {
  margin: 0 9px;
  font-size: 32px;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .nttt__testimonial-layout-3-wrapper .testimonial-card .client__reviews li {
    margin: 0 6px;
  }
}
@media (max-width: 991px) {
  .nttt__testimonial-layout-3-wrapper .testimonial-card .client__reviews li {
    margin: 0 3px;
    font-size: 24px;
  }
}
.nttt__testimonial-layout-3-wrapper .testimonial-card .client__reviews li i {
  color: #F3C640;
}
.nttt__testimonial-layout-3-wrapper .testimonial-card .testimonial-text p {
  text-align: center;
}
.nttt__testimonial-layout-3-wrapper .testimonial-card .customer-info {
  width: 274px;
  height: 100px;
  padding: 5px 30px;
  gap: 12px;
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
  border: 1px solid #fff;
  background: var(--st-theme-secondery);
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .nttt__testimonial-layout-3-wrapper .testimonial-card .customer-info {
    width: 260px;
  }
}
@media (max-width: 991px) {
  .nttt__testimonial-layout-3-wrapper .testimonial-card .customer-info {
    padding: 5px 20px;
  }
}
@media (max-width: 575.98px) {
  .nttt__testimonial-layout-3-wrapper .testimonial-card .customer-info {
    width: 250px;
  }
}
.nttt__testimonial-layout-3-wrapper .testimonial-card .customer-info .customer-info-left {
  width: 60px;
  height: 60px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  overflow: hidden;
}
.nttt__testimonial-layout-3-wrapper .testimonial-card .customer-info .customer-info-left img {
  height: 100%;
}
.nttt__testimonial-layout-3-wrapper .testimonial-card .customer-info .customer-info-right h6 {
  margin-bottom: 0;
  font-weight: 600;
}
.nttt__testimonial-layout-3-wrapper .testimonial-card .customer-info .customer-info-right p {
  margin-bottom: 0;
}
.nttt__testimonial-layout-3-wrapper .testimonial-card .testimonial__icon {
  width: 30px;
  position: absolute;
  right: 30px;
  top: 30px;
}
.nttt__testimonial-layout-3-wrapper .swiper .swiper-button-prev, .nttt__testimonial-layout-3-wrapper .swiper .swiper-button-next {
  width: 32px;
  height: 32px;
}
.nttt__testimonial-layout-3-wrapper .swiper .swiper-button-prev i, .nttt__testimonial-layout-3-wrapper .swiper .swiper-button-next i {
  font-size: 24px;
  height: 30px;
  width: 30px;
  background: transparent;
}
@media (max-width: 575.98px) {
  .nttt__testimonial-layout-3-wrapper .swiper .swiper-button-prev, .nttt__testimonial-layout-3-wrapper .swiper .swiper-button-next {
    display: none !important;
  }
}
.nttt__testimonial-layout-3-wrapper .swiper .swiper-button-prev {
  left: 2px;
}
.nttt__testimonial-layout-3-wrapper .swiper .swiper-button-next {
  right: 2px !important;
}

.testimonial__wrapper .pagination__wrapper .swiper-pagination {
  margin-top: 60px;
}
@media (max-width: 991px) {
  .testimonial__wrapper .pagination__wrapper .swiper-pagination {
    margin-top: 40px;
  }
}
.testimonial__wrapper .pagination__wrapper .swiper-pagination .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  background: var(--st-theme-1);
  margin: 0 8px !important;
  border-radius: 50%;
  position: relative;
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .testimonial__wrapper .pagination__wrapper .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    margin: 0 4px !important;
  }
}
.testimonial__wrapper .pagination__wrapper .swiper-pagination .swiper-pagination-bullet:after {
  content: none;
}
.testimonial__wrapper .pagination__wrapper .swiper-pagination .swiper-pagination-bullet-active {
  background: #fff;
  margin: 0 12px !important;
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .testimonial__wrapper .pagination__wrapper .swiper-pagination .swiper-pagination-bullet-active {
    margin: 0 8px !important;
  }
}
.testimonial__wrapper .pagination__wrapper .swiper-pagination .swiper-pagination-bullet-active:before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: transparent;
  border: 1px solid #fff;
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .testimonial__wrapper .pagination__wrapper .swiper-pagination .swiper-pagination-bullet-active:before {
    width: 20px;
    height: 20px;
  }
}

:root {
  /**
  @font family declaration
  */
  --st-ff-body: 'Poppins', sans-serif;
  --st-ff-heading: 'Poppins', sans-serif;
  --st-ff-p: 'Poppins', sans-serif;
  --st-ff-menu: 'Poppins', sans-serif;
  --st-ff-button: 'Poppins', sans-serif;
  --st-ff-fontawesome: "Font Awesome 6 Pro";
  /**
  @color declaration
  */
  --st-common-white: #ffffff;
  --st-common-black: #000;
  --st-common-black2: #111827;
  --st-common-star: #fdb022;
  --st-heading-primary: #002366;
  --st-grey-1: #70747D;
  --st-grey-2: #414652;
  --st-text-body: #70747D;
  --st-text-1: #70747D;
  --st-text-top-header: #f5ba68;
  --st-text-top-header-hover: #f04a00;
  --st-text-menu: #ffffff;
  --st-text-menu-hover: #f04a00;
  --st-text-link: #f04a00;
  --st-text-link-hover: #002366;
  --st-text-button: #ffffff;
  --st-text-btn-hover: #f04a00;
  --st-text-price: #a0a3a9;
  --st-text-sale-price: #F04A00;
  --st-text-topmenu: #F2F4F7;
  --st-text-topmenu-hover: #70747d;
  --st-text-stock: #5fa745;
  --st-text-onsale: #70747d;
  --st-text-rating: #f04a00;
  --st-theme-1: #F04A00;
  --st-theme-2: #002366;
  --st-theme-primary: #f04a00;
  --st-theme-secondery: #002366;
  --st-theme-top-header: #111827;
  --st-theme-button: #f04a00;
  --st-theme-btn-hover: #ffffff;
  --st-theme-onsale: #ffffff;
  --st-border-1: #000;
  --st-border-button: #F04A00;
  --st-border-btn-hover: #F04A00;
  /**
  @font weight declaration
  */
  --st-fw-normal: normal;
  --st-fw-elight: 200;
  --st-fw-light: 300;
  --st-fw-regular: 400;
  --st-fw-medium: 500;
  --st-fw-sbold: 600;
  --st-fw-bold: 700;
  --st-fw-ebold: 800;
  --st-fw-black: 900;
  --st-fw-heading: 600;
  --st-fw-button: 600;
  --st-fw-menu: 500;
  /**
  @font size declaration
  */
  --st-fz-body: 18px;
  --st-fz-p: 18px;
  --st-fz-h1: 80px;
  --st-fz-h2: 60px;
  --st-fz-h3: 48px;
  --st-fz-h4: 32px;
  --st-fz-h5: 24px;
  --st-fz-h6: 20px;
  --st-fz-button: 18px;
  --st-fz-menu: 18px;
  --st-fz-mob-h1: 48px;
  --st-fz-mob-h2: 38px;
  --st-fz-mob-h3: 28px;
  --st-fz-mob-h4: 24px;
  --st-fz-mob-h5: 22px;
  --st-fz-mob-h6: 20px;
  --st-fz-tab-body: 18px;
  --st-fz-tab-h1: 65px;
  --st-fz-tab-h2: 50px;
  --st-fz-tab-h3: 46px;
  --st-fz-tab-h4: 42px;
  --st-fz-tab-h5: 34px;
  --st-fz-tab-h6: 30px;
  /**
  @line height declaration
  */
  --st-lh-body: 20px;
  --st-lh-h1: 90px;
  --st-lh-h2: 70px;
  --st-lh-h3: 58px;
  --st-lh-h4: 42px;
  --st-lh-h5: 34px;
  --st-lh-h6: 30px;
  --st-lh-button: 28px;
  --st-lh-h1-tab: 75px;
  --st-lh-h2-tab: 60px;
  --st-lh-h3-tab: 48px;
  --st-lh-h4-tab: 38px;
  --st-lh-h5-tab: 34px;
  --st-lh-h6-tab: 28px;
  --st-lh-h1-mob: 58px;
  --st-lh-h2-mob: 48px;
  --st-lh-h3-mob: 34px;
  --st-lh-h4-mob: 32px;
  --st-lh-h5-mob: 30px;
  --st-lh-h6-mob: 24px;
}

.container-fluid {
  width: 90% !important;
}
@media (max-width: 575.98px) {
  .container-fluid {
    width: 100% !important;
  }
}

#voice-search-btn .ri-mic-line {
  font-size: 22px;
}

.header__area .header__top-area {
  background: var(--st-theme-top-header);
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .header__area .header__top-area {
    display: none;
  }
}
@media (max-width: 575.98px) {
  .header__area .header__top-area .top__nav {
    text-align: start !important;
    padding-right: 28px;
  }
}
.header__area .header__top-area .top__nav ul {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .header__area .header__top-area .top__nav ul {
    gap: 10px;
  }
}
.header__area .header__top-area .top__nav ul li {
  display: inline;
}
.header__area .header__top-area .top__nav ul li a {
  font-size: 14px;
  line-height: 21px;
  color: var(--st-text-topmenu);
}
.header__area .header__top-area .top__nav ul li a:hover {
  color: var(--st-text-topmenu-hover);
}
.header__area .header__top-area .header__notification {
  position: relative;
  width: 100%;
  justify-content: center;
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 40px; /* Adjust as needed */
  line-height: 40px;
}
.header__area .header__top-area .header__notification .notification_header {
  position: absolute;
  width: 100%;
  opacity: 0;
  transform: translateY(-100%);
  transition: opacity 0.5s ease-in, transform 0.5s ease-out;
}
.header__area .header__top-area .header__notification p {
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 21px;
  color: var(--st-text-top-header);
  transition: all ease-in-out 0.5s;
  cursor: pointer;
}
.header__area .header__top-area .header__notification p:hover {
  color: var(--st-text-top-header-hover);
}
.header__area .header__top-area .lanCur__changer p {
  margin: 0;
  padding: 0;
  color: var(--st-text-topmenu);
  font-size: 14px;
}
.header__area .header__top-area .lanCur__changer i {
  color: var(--st-text-topmenu);
  margin-right: 5px;
}
@media (max-width: 575.98px) {
  .header__area .header__top-area .lanCur__changer {
    justify-content: left !important;
  }
}
.header__area .header__mid-area {
  padding-top: 20px;
  padding-bottom: 20px;
}
.header__area .header__mid-area .sz-cart-total {
  margin-left: 8px;
}
.header__area .header__mid-area .wishlist a {
  margin-right: 8px;
}
@media (max-width: 575.98px) {
  .header__area .header__mid-area .logo {
    text-align: center;
  }
}
.header__area .header__mid-area .logo img {
  max-width: 136px;
  width: 100%;
  height: auto;
}
.header__area .header__mid-area .search__bar {
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header__area .header__mid-area .search__bar .search__category {
  background-color: #F3F3F3;
  width: 80%;
  display: flex;
  align-items: center;
  border-radius: 10px;
}
@media (max-width: 575.98px) {
  .header__area .header__mid-area .search__bar .search__category {
    width: 100%;
  }
}
.header__area .header__mid-area .search__bar .search__feild {
  width: 100%;
  position: relative;
}
.header__area .header__mid-area .search__bar .search__feild input[type=search] {
  border: none;
  outline: none;
  background: transparent;
  width: 90%;
  padding-left: 20px;
}
.header__area .header__mid-area .search__bar .search__feild input::placeholder {
  font-size: 16px;
  color: #757589;
  font-weight: 500;
}
.header__area .header__mid-area .search__bar .search__feild .search__icon {
  background: var(--st-theme-1);
  width: 75px;
  padding: 10px 0;
  border-radius: 0px 10px 10px 0;
  color: var(--st-common-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header__area .header__mid-area .search__bar .search__feild .search__icon {
    width: 50px;
  }
}
@media (max-width: 400px) {
  .header__area .header__mid-area .wishlist__account .account span {
    display: none;
  }
}
.header__area .header__mid-area .wishlist__account ul {
  display: flex;
  justify-content: end;
  align-items: center;
}
@media (max-width: 575.98px) {
  .header__area .header__mid-area .wishlist__account ul {
    justify-content: center;
    padding-top: 20px;
  }
}
.header__area .header__mid-area .wishlist__account ul li {
  list-style: none;
  margin-left: 25px;
  text-align: center;
  display: flex;
  font-size: 16px;
  font-weight: 500;
  color: var(--st-heading-primary);
}
.header__area .header__mid-area .wishlist__account ul li:hover {
  color: var(--st-theme-1);
}
@media (max-width: 575.98px) {
  .header__area .header__mid-area .wishlist__account ul li {
    font-size: 14px;
  }
}
@media (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px), only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 1400px) and (max-width: 1600px) {
  .header__area .header__mid-area .wishlist__account ul li {
    margin-left: 15px;
  }
}
@media (max-width: 575.98px) {
  .header__area .header__mid-area .wishlist__account ul li {
    margin-left: 12px;
  }
}
.header__area .header__mid-area .wishlist__account ul li a img {
  margin-right: 8px;
}
.header__area .header__mid-area .wishlist__account ul li i {
  font-size: 24px;
  margin-right: 12px;
}
.header__area .header__mid-area .wishlist__account ul .wishlist {
  position: relative;
}
.header__area .header__mid-area .wishlist__account ul .wishlist::before {
  position: absolute;
  content: "0";
  background: var(--st-theme-1);
  color: #fff;
  display: flex;
  width: 20px;
  height: 20px;
  font-size: 12px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  top: -6px;
  left: 15px;
}
.header__area .header__mid-area .wishlist__account ul .shop {
  position: relative;
}
.header__area .header__mid-area .wishlist__account ul .shop::before {
  position: absolute;
  content: "5";
  background: var(--st-theme-1);
  color: #fff;
  display: flex;
  width: 20px;
  font-size: 12px;
  height: 20px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  top: -6px;
  left: 15px;
}

.br {
  border-right: 1px solid #fff;
}

.lanCur__changer > .nice-select {
  -webkit-tap-highlight-color: transparent;
  background-color: transparent !important;
  border-radius: 0 !important;
  border: none !important;
  box-sizing: border-box;
  clear: none !important;
  cursor: pointer;
  display: block;
  float: none !important;
  color: #B9B9B9;
}

.lanCur__changer > .nice-select .list {
  color: var(--st-theme-1);
}

.s__c > .nice-select {
  color: var(--st-heading-primary) !important;
  font-weight: 600;
  font-size: 16px;
  border: none;
  background-color: transparent;
}
.s__c > .nice-select::after {
  color: var(--st-heading-primary);
  font-weight: 600;
  font-size: 16px;
}

:root {
  /**
  @font family declaration
  */
  --st-ff-body: 'Poppins', sans-serif;
  --st-ff-heading: 'Poppins', sans-serif;
  --st-ff-p: 'Poppins', sans-serif;
  --st-ff-menu: 'Poppins', sans-serif;
  --st-ff-button: 'Poppins', sans-serif;
  --st-ff-fontawesome: "Font Awesome 6 Pro";
  /**
  @color declaration
  */
  --st-common-white: #ffffff;
  --st-common-black: #000;
  --st-common-black2: #111827;
  --st-common-star: #fdb022;
  --st-heading-primary: #002366;
  --st-grey-1: #70747D;
  --st-grey-2: #414652;
  --st-text-body: #70747D;
  --st-text-1: #70747D;
  --st-text-top-header: #f5ba68;
  --st-text-top-header-hover: #f04a00;
  --st-text-menu: #ffffff;
  --st-text-menu-hover: #f04a00;
  --st-text-link: #f04a00;
  --st-text-link-hover: #002366;
  --st-text-button: #ffffff;
  --st-text-btn-hover: #f04a00;
  --st-text-price: #a0a3a9;
  --st-text-sale-price: #F04A00;
  --st-text-topmenu: #F2F4F7;
  --st-text-topmenu-hover: #70747d;
  --st-text-stock: #5fa745;
  --st-text-onsale: #70747d;
  --st-text-rating: #f04a00;
  --st-theme-1: #F04A00;
  --st-theme-2: #002366;
  --st-theme-primary: #f04a00;
  --st-theme-secondery: #002366;
  --st-theme-top-header: #111827;
  --st-theme-button: #f04a00;
  --st-theme-btn-hover: #ffffff;
  --st-theme-onsale: #ffffff;
  --st-border-1: #000;
  --st-border-button: #F04A00;
  --st-border-btn-hover: #F04A00;
  /**
  @font weight declaration
  */
  --st-fw-normal: normal;
  --st-fw-elight: 200;
  --st-fw-light: 300;
  --st-fw-regular: 400;
  --st-fw-medium: 500;
  --st-fw-sbold: 600;
  --st-fw-bold: 700;
  --st-fw-ebold: 800;
  --st-fw-black: 900;
  --st-fw-heading: 600;
  --st-fw-button: 600;
  --st-fw-menu: 500;
  /**
  @font size declaration
  */
  --st-fz-body: 18px;
  --st-fz-p: 18px;
  --st-fz-h1: 80px;
  --st-fz-h2: 60px;
  --st-fz-h3: 48px;
  --st-fz-h4: 32px;
  --st-fz-h5: 24px;
  --st-fz-h6: 20px;
  --st-fz-button: 18px;
  --st-fz-menu: 18px;
  --st-fz-mob-h1: 48px;
  --st-fz-mob-h2: 38px;
  --st-fz-mob-h3: 28px;
  --st-fz-mob-h4: 24px;
  --st-fz-mob-h5: 22px;
  --st-fz-mob-h6: 20px;
  --st-fz-tab-body: 18px;
  --st-fz-tab-h1: 65px;
  --st-fz-tab-h2: 50px;
  --st-fz-tab-h3: 46px;
  --st-fz-tab-h4: 42px;
  --st-fz-tab-h5: 34px;
  --st-fz-tab-h6: 30px;
  /**
  @line height declaration
  */
  --st-lh-body: 20px;
  --st-lh-h1: 90px;
  --st-lh-h2: 70px;
  --st-lh-h3: 58px;
  --st-lh-h4: 42px;
  --st-lh-h5: 34px;
  --st-lh-h6: 30px;
  --st-lh-button: 28px;
  --st-lh-h1-tab: 75px;
  --st-lh-h2-tab: 60px;
  --st-lh-h3-tab: 48px;
  --st-lh-h4-tab: 38px;
  --st-lh-h5-tab: 34px;
  --st-lh-h6-tab: 28px;
  --st-lh-h1-mob: 58px;
  --st-lh-h2-mob: 48px;
  --st-lh-h3-mob: 34px;
  --st-lh-h4-mob: 32px;
  --st-lh-h5-mob: 30px;
  --st-lh-h6-mob: 24px;
}

.header__area-v2 {
  border-bottom: 1px solid #E6E9F0;
}
.header__area-v2 .top__nav p {
  font-size: 14px;
  color: var(--st-text-top-header);
}
.header__area-v2 .top__nav ul {
  justify-content: flex-end;
}
.header__area-v2 .header__mid-area {
  padding: 0;
}
@media (max-width: 992px) {
  .header__area-v2 .header__mid-area {
    padding: 20px 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .header__area-v2 .header__mid-area .logo img {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .header__area-v2 .header__mid-area .account__area-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
  }
}
@media (max-width: 575.98px) {
  .header__area-v2 .header__mid-area .account__area-wrapper {
    padding-top: 20px;
    justify-content: space-between;
  }
}
.header__area-v2 .header__main-area {
  background: #fff;
}
.header__area-v2 .header__main-area .main__menu ul {
  justify-content: center;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .header__area-v2 .header__main-area .main__menu ul {
    justify-content: center;
  }
}
@media (max-width: 991px) {
  .header__area-v2 .header__main-area .main__menu ul li {
    padding: 0;
  }
}
.header__area-v2 .header__main-area .main__menu ul li a {
  color: var(--st-heading-primary);
}
.header__area-v2 .header__main-area .main__menu ul li a:hover {
  color: var(--st-theme-1);
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .header__area-v2 .wishlist__account .sz-cart-total,
  .header__area-v2 .wishlist__account .wishlist-label {
    display: none;
  }
}
@media (max-width: 575.98px) {
  .header__area-v2 .wishlist__account ul li i {
    font-size: 24px !important;
  }
}
@media (max-width: 575.98px) {
  .header__area-v2 .wishlist__account ul {
    padding: 0 !important;
  }
}
.header__area-v2 .search-icon {
  position: relative;
  display: block;
  z-index: 1;
}
@media (max-width: 991px) {
  .header__area-v2 .menu-items li a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #fff;
    transition: background 0.3s;
  }
}
.header__area-v2 .menu-toggle i {
  color: #002366;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .header__area-v2 .header-main-menu {
    position: relative;
  }
  .header__area-v2 .header-main-menu .header__main-area {
    position: absolute;
    right: 0;
    top: 0;
  }
}
@media (max-width: 575.98px) {
  .header__area-v2 .header-main-menu {
    position: relative;
  }
  .header__area-v2 .header__main-area {
    position: absolute;
    display: inline-block;
    right: 0;
    bottom: 0;
  }
  .header__area-v2 .menu-toggle {
    position: absolute;
    display: inline-block;
    right: 0;
    bottom: 0;
  }
}

:root {
  /**
  @font family declaration
  */
  --st-ff-body: 'Poppins', sans-serif;
  --st-ff-heading: 'Poppins', sans-serif;
  --st-ff-p: 'Poppins', sans-serif;
  --st-ff-menu: 'Poppins', sans-serif;
  --st-ff-button: 'Poppins', sans-serif;
  --st-ff-fontawesome: "Font Awesome 6 Pro";
  /**
  @color declaration
  */
  --st-common-white: #ffffff;
  --st-common-black: #000;
  --st-common-black2: #111827;
  --st-common-star: #fdb022;
  --st-heading-primary: #002366;
  --st-grey-1: #70747D;
  --st-grey-2: #414652;
  --st-text-body: #70747D;
  --st-text-1: #70747D;
  --st-text-top-header: #f5ba68;
  --st-text-top-header-hover: #f04a00;
  --st-text-menu: #ffffff;
  --st-text-menu-hover: #f04a00;
  --st-text-link: #f04a00;
  --st-text-link-hover: #002366;
  --st-text-button: #ffffff;
  --st-text-btn-hover: #f04a00;
  --st-text-price: #a0a3a9;
  --st-text-sale-price: #F04A00;
  --st-text-topmenu: #F2F4F7;
  --st-text-topmenu-hover: #70747d;
  --st-text-stock: #5fa745;
  --st-text-onsale: #70747d;
  --st-text-rating: #f04a00;
  --st-theme-1: #F04A00;
  --st-theme-2: #002366;
  --st-theme-primary: #f04a00;
  --st-theme-secondery: #002366;
  --st-theme-top-header: #111827;
  --st-theme-button: #f04a00;
  --st-theme-btn-hover: #ffffff;
  --st-theme-onsale: #ffffff;
  --st-border-1: #000;
  --st-border-button: #F04A00;
  --st-border-btn-hover: #F04A00;
  /**
  @font weight declaration
  */
  --st-fw-normal: normal;
  --st-fw-elight: 200;
  --st-fw-light: 300;
  --st-fw-regular: 400;
  --st-fw-medium: 500;
  --st-fw-sbold: 600;
  --st-fw-bold: 700;
  --st-fw-ebold: 800;
  --st-fw-black: 900;
  --st-fw-heading: 600;
  --st-fw-button: 600;
  --st-fw-menu: 500;
  /**
  @font size declaration
  */
  --st-fz-body: 18px;
  --st-fz-p: 18px;
  --st-fz-h1: 80px;
  --st-fz-h2: 60px;
  --st-fz-h3: 48px;
  --st-fz-h4: 32px;
  --st-fz-h5: 24px;
  --st-fz-h6: 20px;
  --st-fz-button: 18px;
  --st-fz-menu: 18px;
  --st-fz-mob-h1: 48px;
  --st-fz-mob-h2: 38px;
  --st-fz-mob-h3: 28px;
  --st-fz-mob-h4: 24px;
  --st-fz-mob-h5: 22px;
  --st-fz-mob-h6: 20px;
  --st-fz-tab-body: 18px;
  --st-fz-tab-h1: 65px;
  --st-fz-tab-h2: 50px;
  --st-fz-tab-h3: 46px;
  --st-fz-tab-h4: 42px;
  --st-fz-tab-h5: 34px;
  --st-fz-tab-h6: 30px;
  /**
  @line height declaration
  */
  --st-lh-body: 20px;
  --st-lh-h1: 90px;
  --st-lh-h2: 70px;
  --st-lh-h3: 58px;
  --st-lh-h4: 42px;
  --st-lh-h5: 34px;
  --st-lh-h6: 30px;
  --st-lh-button: 28px;
  --st-lh-h1-tab: 75px;
  --st-lh-h2-tab: 60px;
  --st-lh-h3-tab: 48px;
  --st-lh-h4-tab: 38px;
  --st-lh-h5-tab: 34px;
  --st-lh-h6-tab: 28px;
  --st-lh-h1-mob: 58px;
  --st-lh-h2-mob: 48px;
  --st-lh-h3-mob: 34px;
  --st-lh-h4-mob: 32px;
  --st-lh-h5-mob: 30px;
  --st-lh-h6-mob: 24px;
}

.header__area-v3 .header__top-area p {
  color: var(--st-text-top-header);
}
.header__area-v3 .header__top-area .top__nav-btn {
  text-align: right;
}
.header__area-v3 .header__top-area .top__nav-btn .explore__btn {
  border-radius: unset;
  padding: 7px 20px;
  display: inline !important;
}
@media (max-width: 991px) {
  .header__area-v3 .header__top-area {
    padding: 8px 0;
  }
}
.header__area-v3 .header__main-area .main__menu ul {
  justify-content: flex-start;
}
.header__area-v3 .header__mid-area {
  background: #fff;
}

:root {
  /**
  @font family declaration
  */
  --st-ff-body: 'Poppins', sans-serif;
  --st-ff-heading: 'Poppins', sans-serif;
  --st-ff-p: 'Poppins', sans-serif;
  --st-ff-menu: 'Poppins', sans-serif;
  --st-ff-button: 'Poppins', sans-serif;
  --st-ff-fontawesome: "Font Awesome 6 Pro";
  /**
  @color declaration
  */
  --st-common-white: #ffffff;
  --st-common-black: #000;
  --st-common-black2: #111827;
  --st-common-star: #fdb022;
  --st-heading-primary: #002366;
  --st-grey-1: #70747D;
  --st-grey-2: #414652;
  --st-text-body: #70747D;
  --st-text-1: #70747D;
  --st-text-top-header: #f5ba68;
  --st-text-top-header-hover: #f04a00;
  --st-text-menu: #ffffff;
  --st-text-menu-hover: #f04a00;
  --st-text-link: #f04a00;
  --st-text-link-hover: #002366;
  --st-text-button: #ffffff;
  --st-text-btn-hover: #f04a00;
  --st-text-price: #a0a3a9;
  --st-text-sale-price: #F04A00;
  --st-text-topmenu: #F2F4F7;
  --st-text-topmenu-hover: #70747d;
  --st-text-stock: #5fa745;
  --st-text-onsale: #70747d;
  --st-text-rating: #f04a00;
  --st-theme-1: #F04A00;
  --st-theme-2: #002366;
  --st-theme-primary: #f04a00;
  --st-theme-secondery: #002366;
  --st-theme-top-header: #111827;
  --st-theme-button: #f04a00;
  --st-theme-btn-hover: #ffffff;
  --st-theme-onsale: #ffffff;
  --st-border-1: #000;
  --st-border-button: #F04A00;
  --st-border-btn-hover: #F04A00;
  /**
  @font weight declaration
  */
  --st-fw-normal: normal;
  --st-fw-elight: 200;
  --st-fw-light: 300;
  --st-fw-regular: 400;
  --st-fw-medium: 500;
  --st-fw-sbold: 600;
  --st-fw-bold: 700;
  --st-fw-ebold: 800;
  --st-fw-black: 900;
  --st-fw-heading: 600;
  --st-fw-button: 600;
  --st-fw-menu: 500;
  /**
  @font size declaration
  */
  --st-fz-body: 18px;
  --st-fz-p: 18px;
  --st-fz-h1: 80px;
  --st-fz-h2: 60px;
  --st-fz-h3: 48px;
  --st-fz-h4: 32px;
  --st-fz-h5: 24px;
  --st-fz-h6: 20px;
  --st-fz-button: 18px;
  --st-fz-menu: 18px;
  --st-fz-mob-h1: 48px;
  --st-fz-mob-h2: 38px;
  --st-fz-mob-h3: 28px;
  --st-fz-mob-h4: 24px;
  --st-fz-mob-h5: 22px;
  --st-fz-mob-h6: 20px;
  --st-fz-tab-body: 18px;
  --st-fz-tab-h1: 65px;
  --st-fz-tab-h2: 50px;
  --st-fz-tab-h3: 46px;
  --st-fz-tab-h4: 42px;
  --st-fz-tab-h5: 34px;
  --st-fz-tab-h6: 30px;
  /**
  @line height declaration
  */
  --st-lh-body: 20px;
  --st-lh-h1: 90px;
  --st-lh-h2: 70px;
  --st-lh-h3: 58px;
  --st-lh-h4: 42px;
  --st-lh-h5: 34px;
  --st-lh-h6: 30px;
  --st-lh-button: 28px;
  --st-lh-h1-tab: 75px;
  --st-lh-h2-tab: 60px;
  --st-lh-h3-tab: 48px;
  --st-lh-h4-tab: 38px;
  --st-lh-h5-tab: 34px;
  --st-lh-h6-tab: 28px;
  --st-lh-h1-mob: 58px;
  --st-lh-h2-mob: 48px;
  --st-lh-h3-mob: 34px;
  --st-lh-h4-mob: 32px;
  --st-lh-h5-mob: 30px;
  --st-lh-h6-mob: 24px;
}

.header__area-v4 .header__top-area {
  border-bottom: 1px solid var(--st-theme-secondery);
  padding: 10px 0;
}
.header__area-v4 .header__top-area .top__nav p {
  color: var(--st-text-top-header);
}
.header__area-v4 .header__top-area .top__nav-social ul {
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: flex-end;
}
.header__area-v4 .header__top-area .top__nav-social ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border: 1px solid var(--st-theme-secondery);
  height: 28px;
  width: 28px;
  z-index: 1;
  overflow: hidden;
}
.header__area-v4 .header__top-area .top__nav-social ul li::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--st-theme-1);
  z-index: -1;
  transition: all 0.3s ease-in-out;
}
.header__area-v4 .header__top-area .top__nav-social ul li:hover::after {
  top: 0;
}
.header__area-v4 .header__top-area .top__nav-social ul li:hover i {
  color: var(--st-common-white);
}
.header__area-v4 .header__top-area .top__nav-social ul li i {
  font-size: 12px;
  color: var(--st-theme-1);
  transition: all 0.3s ease-in-out;
}
.header__area-v4 .header__mid-area {
  position: relative;
  padding: 0;
  background: var(--st-common-white);
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .header__area-v4 .header__mid-area {
    padding: 20px 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .header__area-v4 .header__mid-area {
    padding: 15px 0;
  }
}
.header__area-v4 .header__main-area {
  background: unset;
}
.header__area-v4 .header__main-area .main__menu ul {
  padding: 0;
  justify-content: flex-start;
}
@media (min-width: 1400px) and (max-width: 1440px) {
  .header__area-v4 .header__main-area .main__menu ul {
    gap: 25px;
  }
}
.header__area-v4 .header__main-area .main__menu ul li {
  padding: 24px 0;
}
@media (max-width: 991px) {
  .header__area-v4 .header__main-area .main__menu ul li {
    padding: 0;
  }
}
.header__area-v4 .header__main-area .main__menu ul .menu-item .sub-menu {
  background-color: var(--st-common-white);
}
.header__area-v4 .header__main-area .main__menu ul .menu-item .sub-menu li a {
  color: var(--st-common-black2);
}
.header__area-v4 .header__main-area .main__menu ul li a {
  color: var(--st-text-menu);
}
.header__area-v4 .header__main-area .main__menu ul li a:hover {
  color: --st-text-menu-hover;
}
.header__area-v4 .header__main-area .main__menu ul li a::after {
  background-color: var(--st-text-menu-hover);
}
.header__area-v4 .header__main-area .main__menu .menu-toggle {
  margin-top: 6px;
}
.header__area-v4 .header__main-area .main__menu .menu-toggle i {
  color: var(--st-common-black2);
}
@media (max-width: 575.98px) {
  .header__area-v4 .header__main-area .main__menu .menu-toggle {
    position: absolute;
    bottom: -83px;
  }
}
.header__area-v4 .logo {
  text-align: center;
}
.header__area-v4 .wishlist__account {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 40px;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .header__area-v4 .wishlist__account {
    gap: 10px;
  }
}
.header__area-v4 .wishlist__account .cart-count,
.header__area-v4 .wishlist__account .wishlist-count,
.header__area-v4 .wishlist__account .shop::before,
.header__area-v4 .wishlist__account .wishlist::before {
  background: var(--st-theme-primary) !important;
}
.header__area-v4 .wishlist__account ul li i {
  color: var(--st-common-black2);
}
.header__area-v4 .search-icon {
  position: relative;
  display: block;
  z-index: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 768px) and (max-width: 991.98px) {
  .header__area-v4 .buttom__wrapper {
    display: none;
  }
}
@media (max-width: 803px) {
  .header__area-v4 .buttom__wrapper {
    display: none;
  }
}

:root {
  /**
  @font family declaration
  */
  --st-ff-body: 'Poppins', sans-serif;
  --st-ff-heading: 'Poppins', sans-serif;
  --st-ff-p: 'Poppins', sans-serif;
  --st-ff-menu: 'Poppins', sans-serif;
  --st-ff-button: 'Poppins', sans-serif;
  --st-ff-fontawesome: "Font Awesome 6 Pro";
  /**
  @color declaration
  */
  --st-common-white: #ffffff;
  --st-common-black: #000;
  --st-common-black2: #111827;
  --st-common-star: #fdb022;
  --st-heading-primary: #002366;
  --st-grey-1: #70747D;
  --st-grey-2: #414652;
  --st-text-body: #70747D;
  --st-text-1: #70747D;
  --st-text-top-header: #f5ba68;
  --st-text-top-header-hover: #f04a00;
  --st-text-menu: #ffffff;
  --st-text-menu-hover: #f04a00;
  --st-text-link: #f04a00;
  --st-text-link-hover: #002366;
  --st-text-button: #ffffff;
  --st-text-btn-hover: #f04a00;
  --st-text-price: #a0a3a9;
  --st-text-sale-price: #F04A00;
  --st-text-topmenu: #F2F4F7;
  --st-text-topmenu-hover: #70747d;
  --st-text-stock: #5fa745;
  --st-text-onsale: #70747d;
  --st-text-rating: #f04a00;
  --st-theme-1: #F04A00;
  --st-theme-2: #002366;
  --st-theme-primary: #f04a00;
  --st-theme-secondery: #002366;
  --st-theme-top-header: #111827;
  --st-theme-button: #f04a00;
  --st-theme-btn-hover: #ffffff;
  --st-theme-onsale: #ffffff;
  --st-border-1: #000;
  --st-border-button: #F04A00;
  --st-border-btn-hover: #F04A00;
  /**
  @font weight declaration
  */
  --st-fw-normal: normal;
  --st-fw-elight: 200;
  --st-fw-light: 300;
  --st-fw-regular: 400;
  --st-fw-medium: 500;
  --st-fw-sbold: 600;
  --st-fw-bold: 700;
  --st-fw-ebold: 800;
  --st-fw-black: 900;
  --st-fw-heading: 600;
  --st-fw-button: 600;
  --st-fw-menu: 500;
  /**
  @font size declaration
  */
  --st-fz-body: 18px;
  --st-fz-p: 18px;
  --st-fz-h1: 80px;
  --st-fz-h2: 60px;
  --st-fz-h3: 48px;
  --st-fz-h4: 32px;
  --st-fz-h5: 24px;
  --st-fz-h6: 20px;
  --st-fz-button: 18px;
  --st-fz-menu: 18px;
  --st-fz-mob-h1: 48px;
  --st-fz-mob-h2: 38px;
  --st-fz-mob-h3: 28px;
  --st-fz-mob-h4: 24px;
  --st-fz-mob-h5: 22px;
  --st-fz-mob-h6: 20px;
  --st-fz-tab-body: 18px;
  --st-fz-tab-h1: 65px;
  --st-fz-tab-h2: 50px;
  --st-fz-tab-h3: 46px;
  --st-fz-tab-h4: 42px;
  --st-fz-tab-h5: 34px;
  --st-fz-tab-h6: 30px;
  /**
  @line height declaration
  */
  --st-lh-body: 20px;
  --st-lh-h1: 90px;
  --st-lh-h2: 70px;
  --st-lh-h3: 58px;
  --st-lh-h4: 42px;
  --st-lh-h5: 34px;
  --st-lh-h6: 30px;
  --st-lh-button: 28px;
  --st-lh-h1-tab: 75px;
  --st-lh-h2-tab: 60px;
  --st-lh-h3-tab: 48px;
  --st-lh-h4-tab: 38px;
  --st-lh-h5-tab: 34px;
  --st-lh-h6-tab: 28px;
  --st-lh-h1-mob: 58px;
  --st-lh-h2-mob: 48px;
  --st-lh-h3-mob: 34px;
  --st-lh-h4-mob: 32px;
  --st-lh-h5-mob: 30px;
  --st-lh-h6-mob: 24px;
}

.header__area-v5 .header__top-area {
  background-color: var(--st-theme-top-header);
}
.header__area-v5 .header__top-area .top__office-info ul {
  display: flex;
  flex-direction: row;
  gap: 40px;
}
@media (max-width: 991px) {
  .header__area-v5 .header__top-area .top__office-info ul {
    justify-content: center;
    padding: 5px 0;
  }
}
.header__area-v5 .header__top-area .top__office-info ul li {
  font-size: 14px;
  line-height: 20px;
  color: var(--st-text-topmenu);
}
.header__area-v5 .header__top-area .top__office-info ul li i {
  margin-right: 4px;
}
.header__area-v5 .header__top-area .top__nav ul li {
  color: var(--st-text-topmenu);
}
.header__area-v5 .wishlist__account .search-icon {
  border-right: 1px solid #CDDBF5;
}
.header__area-v5 .wishlist__account a {
  border-right: 1px solid #CDDBF5;
  padding-right: 15px;
}
.header__area-v5 .wishlist__account a:last-of-type {
  border-right: unset;
  padding-right: unset;
}
.header__area-v5 .wishlist__account .shop {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: left;
}
@media (min-width: 631px) {
  .header__area-v5 .wishlist__account .shop::before {
    top: 4px !important;
  }
  .header__area-v5 .wishlist__account .shop .cart-count {
    top: 4px !important;
    left: 15px !important;
  }
  .header__area-v5 .wishlist__account .shop .sz-cart-total {
    text-align: left;
    margin: 0;
  }
}
.header__area-v5 .wishlist__account .text-area {
  display: flex;
  flex-direction: column;
}
@media (max-width: 631px) {
  .header__area-v5 .wishlist__account .text-area {
    display: none;
  }
}
.header__area-v5 .wishlist__account .text-area .label {
  font-size: 14px;
  line-height: 20px;
  color: var(--st-body-text);
}
.header__area-v5 .header__mid-area .search__bar .search__category {
  border-radius: 999px;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .header__area-v5 .header__mid-area .search__bar .search__category {
    border-radius: 30px;
    width: 100%;
  }
}
.header__area-v5 .header__mid-area .search__bar .search__feild .search__icon {
  border-radius: 0px 999px 999px 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .header__area-v5 .header__mid-area .search__bar .search__feild .search__icon {
    border-radius: 0px 30px 30px 0;
    width: 60px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header__area-v5 .header__mid-area .search__bar .search__feild .search__icon {
    width: 60px;
  }
}
.header__area-v5 .header__main-area {
  background: var(--st-common-white);
  border-top: 1px solid var(--st-theme-2);
}
.header__area-v5 .header__main-area .category__dropdown-menu {
  position: relative;
}
.header__area-v5 .header__main-area .category__dropdown-menu::before {
  content: "";
  background-color: var(--st-theme-1);
  width: 100%;
  height: 100%;
  position: absolute;
  left: -100px;
  top: 0;
}
@media (max-width: 1025px) {
  .header__area-v5 .header__main-area .category__dropdown-menu::before {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
  }
}
@media (max-width: 1025px) {
  .header__area-v5 .header__main-area .dropdown__multilevel-menu .all_categories {
    display: none;
  }
}
.header__area-v5 .header__main-area .dropdown__multilevel-menu .dropdown__menu-toggle {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  position: relative;
}
.header__area-v5 .header__main-area .menu-toggle {
  color: #111827;
}
.header__area-v5 .header__main-area .menu-toggle span {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  font-size: 18px;
  line-height: 24px;
  color: var(--st-body-text);
}
.header__area-v5 .header__main-area .menu-toggle span i {
  font-size: 35px;
  color: #111827;
}
.header__area-v5 .header__main-area .all__categories-text {
  background: var(--st-theme-1);
  padding: 10px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}
.header__area-v5 .header__main-area .all__categories-text .all_categories {
  color: var(--st-common-white) !important;
}
.header__area-v5 .header__main-area .all__categories-text i {
  color: var(--st-common-white);
}
.header__area-v5 .header__main-area .dropdown__multilevel-menu nav .menu .all-categories-item {
  padding: 0;
}
.header__area-v5 .header__main-area .main__menu ul {
  padding: 0;
  justify-content: flex-start;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .header__area-v5 .header__main-area .main__menu ul {
    justify-content: center;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header__area-v5 .header__main-area .main__menu ul {
    justify-content: flex-end;
  }
}
.header__area-v5 .header__main-area .my_account-wrapper {
  justify-content: flex-end;
}
.header__area-v5 .header__main-area .my_account-wrapper .account {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.header__area-v5 .header__main-area .my_account-wrapper .account i {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--st-theme-2);
  border-radius: 50%;
  color: #111827;
  font-size: 16px;
  height: 48px;
  width: 48px;
}
.header__area-v5 .header__main-area .my_account-wrapper .account .not__login-account {
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
  gap: 12px;
}
.header__area-v5 .header__main-area .my_account-wrapper .account .not__login-account .account__text-wrapper {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 1200px) and (max-width: 1399px), (max-width: 575.98px) {
  .header__area-v5 .header__main-area .my_account-wrapper .account .not__login-account .account__text-wrapper {
    display: none;
  }
}
.header__area-v5 .header__main-area .my_account-wrapper .account .not__login-account .account-label {
  font-size: 14px;
  line-height: 20px;
  color: var(--st-body-text);
}
.header__area-v5 .header__main-area .my_account-wrapper .dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  min-width: 180px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 999;
  padding: 5px 0 15px 0;
}
.header__area-v5 .header__main-area .my_account-wrapper .dropdown-content a {
  display: block;
  padding: 7px 12px;
  color: #333;
  text-decoration: none;
  text-align: left;
}
.header__area-v5 .header__main-area .my_account-wrapper .dropdown-content a:hover {
  background-color: #f1f1f1;
}
.header__area-v5 .header__main-area .my_account-wrapper .account:hover .dropdown-content {
  display: block;
}
.header__area-v5 .header__main-area .my_account-wrapper .account {
  position: relative;
}
.header__area-v5 .header__main-area .my_account-wrapper .account a {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .header__area-v5 .header__main-area .my_account-wrapper .account a span {
    display: none;
  }
}
.header__area-v5 .header__main-area .my_account-wrapper .account img {
  width: 30px;
  height: 30px;
  border-radius: 100%;
}
.header__area-v5 .header__main-area .my_account-wrapper .account span {
  margin-top: 4px;
}
@media (max-width: 575px) {
  .header__area-v5 .header__main-area .my_account-wrapper .account span {
    display: none;
  }
}
.header__area-v5 .header__main-area .my_account-wrapper .account .not__login-image {
  width: 24px;
  height: 24px;
}
.header__area-v5 .header__main-area .my_account-wrapper .account .not__login-username {
  margin-top: 0;
}
.header__area-v5 .dropdown__multilevel-menu nav .menu .sub-menu {
  top: 60px;
}

:root {
  /**
  @font family declaration
  */
  --st-ff-body: 'Poppins', sans-serif;
  --st-ff-heading: 'Poppins', sans-serif;
  --st-ff-p: 'Poppins', sans-serif;
  --st-ff-menu: 'Poppins', sans-serif;
  --st-ff-button: 'Poppins', sans-serif;
  --st-ff-fontawesome: "Font Awesome 6 Pro";
  /**
  @color declaration
  */
  --st-common-white: #ffffff;
  --st-common-black: #000;
  --st-common-black2: #111827;
  --st-common-star: #fdb022;
  --st-heading-primary: #002366;
  --st-grey-1: #70747D;
  --st-grey-2: #414652;
  --st-text-body: #70747D;
  --st-text-1: #70747D;
  --st-text-top-header: #f5ba68;
  --st-text-top-header-hover: #f04a00;
  --st-text-menu: #ffffff;
  --st-text-menu-hover: #f04a00;
  --st-text-link: #f04a00;
  --st-text-link-hover: #002366;
  --st-text-button: #ffffff;
  --st-text-btn-hover: #f04a00;
  --st-text-price: #a0a3a9;
  --st-text-sale-price: #F04A00;
  --st-text-topmenu: #F2F4F7;
  --st-text-topmenu-hover: #70747d;
  --st-text-stock: #5fa745;
  --st-text-onsale: #70747d;
  --st-text-rating: #f04a00;
  --st-theme-1: #F04A00;
  --st-theme-2: #002366;
  --st-theme-primary: #f04a00;
  --st-theme-secondery: #002366;
  --st-theme-top-header: #111827;
  --st-theme-button: #f04a00;
  --st-theme-btn-hover: #ffffff;
  --st-theme-onsale: #ffffff;
  --st-border-1: #000;
  --st-border-button: #F04A00;
  --st-border-btn-hover: #F04A00;
  /**
  @font weight declaration
  */
  --st-fw-normal: normal;
  --st-fw-elight: 200;
  --st-fw-light: 300;
  --st-fw-regular: 400;
  --st-fw-medium: 500;
  --st-fw-sbold: 600;
  --st-fw-bold: 700;
  --st-fw-ebold: 800;
  --st-fw-black: 900;
  --st-fw-heading: 600;
  --st-fw-button: 600;
  --st-fw-menu: 500;
  /**
  @font size declaration
  */
  --st-fz-body: 18px;
  --st-fz-p: 18px;
  --st-fz-h1: 80px;
  --st-fz-h2: 60px;
  --st-fz-h3: 48px;
  --st-fz-h4: 32px;
  --st-fz-h5: 24px;
  --st-fz-h6: 20px;
  --st-fz-button: 18px;
  --st-fz-menu: 18px;
  --st-fz-mob-h1: 48px;
  --st-fz-mob-h2: 38px;
  --st-fz-mob-h3: 28px;
  --st-fz-mob-h4: 24px;
  --st-fz-mob-h5: 22px;
  --st-fz-mob-h6: 20px;
  --st-fz-tab-body: 18px;
  --st-fz-tab-h1: 65px;
  --st-fz-tab-h2: 50px;
  --st-fz-tab-h3: 46px;
  --st-fz-tab-h4: 42px;
  --st-fz-tab-h5: 34px;
  --st-fz-tab-h6: 30px;
  /**
  @line height declaration
  */
  --st-lh-body: 20px;
  --st-lh-h1: 90px;
  --st-lh-h2: 70px;
  --st-lh-h3: 58px;
  --st-lh-h4: 42px;
  --st-lh-h5: 34px;
  --st-lh-h6: 30px;
  --st-lh-button: 28px;
  --st-lh-h1-tab: 75px;
  --st-lh-h2-tab: 60px;
  --st-lh-h3-tab: 48px;
  --st-lh-h4-tab: 38px;
  --st-lh-h5-tab: 34px;
  --st-lh-h6-tab: 28px;
  --st-lh-h1-mob: 58px;
  --st-lh-h2-mob: 48px;
  --st-lh-h3-mob: 34px;
  --st-lh-h4-mob: 32px;
  --st-lh-h5-mob: 30px;
  --st-lh-h6-mob: 24px;
}

.header__area-v6 .header__area .header__top-area {
  background: var(--st-common-white);
  padding: 14px 0;
  border-bottom: 1px solid #E8E8EA;
}
.header__area-v6 .header__area-v5 .header__main-area {
  background: unset;
  border-top: unset;
}
.header__area-v6 .header__top-area .top__office-info ul {
  justify-content: flex-start;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .header__area-v6 .header__top-area .top__office-info ul {
    gap: 20px;
  }
}
.header__area-v6 .header__top-area .top__office-info ul li {
  color: var(--st-theme-top-header);
}
.header__area-v6 .account__v6 {
  text-align: right;
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .header__area-v6 .account__v6 {
    display: none;
  }
}
.header__area-v6 .account__v6-small {
  text-align: right;
  display: none;
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .header__area-v6 .account__v6-small {
    display: block;
  }
}
.header__area-v6 .wishlist__account .dropdown-content {
  left: unset;
  right: 0;
}
.header__area-v6 .wishlist__account .account {
  margin-top: 0;
}
@media (min-width: 450px) {
  .header__area-v6 .wishlist__account .shop .cart-count {
    top: -5px !important;
  }
}
.header__area-v6 .wishlist__account .shop::before {
  content: none !important;
  display: none !important;
}
.header__area-v6 .compare {
  position: relative;
}
@media (max-width: 992px) {
  .header__area-v6 .menu-toggle {
    margin: 5px 0 0 0;
  }
}
@media (max-width: 575) {
  .header__area-v6 .menu-toggle {
    margin: 0;
  }
}

:root {
  /**
  @font family declaration
  */
  --st-ff-body: 'Poppins', sans-serif;
  --st-ff-heading: 'Poppins', sans-serif;
  --st-ff-p: 'Poppins', sans-serif;
  --st-ff-menu: 'Poppins', sans-serif;
  --st-ff-button: 'Poppins', sans-serif;
  --st-ff-fontawesome: "Font Awesome 6 Pro";
  /**
  @color declaration
  */
  --st-common-white: #ffffff;
  --st-common-black: #000;
  --st-common-black2: #111827;
  --st-common-star: #fdb022;
  --st-heading-primary: #002366;
  --st-grey-1: #70747D;
  --st-grey-2: #414652;
  --st-text-body: #70747D;
  --st-text-1: #70747D;
  --st-text-top-header: #f5ba68;
  --st-text-top-header-hover: #f04a00;
  --st-text-menu: #ffffff;
  --st-text-menu-hover: #f04a00;
  --st-text-link: #f04a00;
  --st-text-link-hover: #002366;
  --st-text-button: #ffffff;
  --st-text-btn-hover: #f04a00;
  --st-text-price: #a0a3a9;
  --st-text-sale-price: #F04A00;
  --st-text-topmenu: #F2F4F7;
  --st-text-topmenu-hover: #70747d;
  --st-text-stock: #5fa745;
  --st-text-onsale: #70747d;
  --st-text-rating: #f04a00;
  --st-theme-1: #F04A00;
  --st-theme-2: #002366;
  --st-theme-primary: #f04a00;
  --st-theme-secondery: #002366;
  --st-theme-top-header: #111827;
  --st-theme-button: #f04a00;
  --st-theme-btn-hover: #ffffff;
  --st-theme-onsale: #ffffff;
  --st-border-1: #000;
  --st-border-button: #F04A00;
  --st-border-btn-hover: #F04A00;
  /**
  @font weight declaration
  */
  --st-fw-normal: normal;
  --st-fw-elight: 200;
  --st-fw-light: 300;
  --st-fw-regular: 400;
  --st-fw-medium: 500;
  --st-fw-sbold: 600;
  --st-fw-bold: 700;
  --st-fw-ebold: 800;
  --st-fw-black: 900;
  --st-fw-heading: 600;
  --st-fw-button: 600;
  --st-fw-menu: 500;
  /**
  @font size declaration
  */
  --st-fz-body: 18px;
  --st-fz-p: 18px;
  --st-fz-h1: 80px;
  --st-fz-h2: 60px;
  --st-fz-h3: 48px;
  --st-fz-h4: 32px;
  --st-fz-h5: 24px;
  --st-fz-h6: 20px;
  --st-fz-button: 18px;
  --st-fz-menu: 18px;
  --st-fz-mob-h1: 48px;
  --st-fz-mob-h2: 38px;
  --st-fz-mob-h3: 28px;
  --st-fz-mob-h4: 24px;
  --st-fz-mob-h5: 22px;
  --st-fz-mob-h6: 20px;
  --st-fz-tab-body: 18px;
  --st-fz-tab-h1: 65px;
  --st-fz-tab-h2: 50px;
  --st-fz-tab-h3: 46px;
  --st-fz-tab-h4: 42px;
  --st-fz-tab-h5: 34px;
  --st-fz-tab-h6: 30px;
  /**
  @line height declaration
  */
  --st-lh-body: 20px;
  --st-lh-h1: 90px;
  --st-lh-h2: 70px;
  --st-lh-h3: 58px;
  --st-lh-h4: 42px;
  --st-lh-h5: 34px;
  --st-lh-h6: 30px;
  --st-lh-button: 28px;
  --st-lh-h1-tab: 75px;
  --st-lh-h2-tab: 60px;
  --st-lh-h3-tab: 48px;
  --st-lh-h4-tab: 38px;
  --st-lh-h5-tab: 34px;
  --st-lh-h6-tab: 28px;
  --st-lh-h1-mob: 58px;
  --st-lh-h2-mob: 48px;
  --st-lh-h3-mob: 34px;
  --st-lh-h4-mob: 32px;
  --st-lh-h5-mob: 30px;
  --st-lh-h6-mob: 24px;
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .header__area-v7 .top__office-info ul {
    gap: 20px !important;
  }
}
.header__area-v7 .header__wrapper {
  position: relative;
}
.header__area-v7 .header__mid-area .search__bar .search__category {
  border-radius: unset;
}
.header__area-v7 .header__mid-area .search__bar .search__feild .search__icon {
  border-radius: unset;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .header__area-v7 .header__mid-area .search__bar .search__feild .search__icon {
    width: 75px;
  }
}
.header__area-v7 .header__main-area .main__menu ul {
  justify-content: center;
}
.header__area-v7 .header__main-area .main__menu .menu-toggle {
  padding: 10px 0;
}
@media (max-width: 992px) {
  .header__area-v7 .header__main-area .main__menu .menu-toggle {
    display: none;
  }
}
.header__area-v7 .wishlist__account ul {
  gap: 10px;
}
@media (min-width: 450px) {
  .header__area-v7 .wishlist__account .shop::before {
    top: -5px !important;
  }
  .header__area-v7 .wishlist__account .shop .cart-count {
    top: -5px !important;
    left: 15px !important;
  }
}
.header__area-v7 .wishlist__account .account {
  margin-top: 1px;
}
.header__area-v7 .wishlist__account .account img {
  margin-right: 0;
}
.header__area-v7 .wishlist__account .menu-toggle {
  border-left: 1px solid #CDDBF5;
  padding-left: 15px;
}
.header__area-v7 .wishlist__account .menu-toggle i {
  font-size: 35px;
  color: #111827;
  font-weight: 600;
}

:root {
  /**
  @font family declaration
  */
  --st-ff-body: 'Poppins', sans-serif;
  --st-ff-heading: 'Poppins', sans-serif;
  --st-ff-p: 'Poppins', sans-serif;
  --st-ff-menu: 'Poppins', sans-serif;
  --st-ff-button: 'Poppins', sans-serif;
  --st-ff-fontawesome: "Font Awesome 6 Pro";
  /**
  @color declaration
  */
  --st-common-white: #ffffff;
  --st-common-black: #000;
  --st-common-black2: #111827;
  --st-common-star: #fdb022;
  --st-heading-primary: #002366;
  --st-grey-1: #70747D;
  --st-grey-2: #414652;
  --st-text-body: #70747D;
  --st-text-1: #70747D;
  --st-text-top-header: #f5ba68;
  --st-text-top-header-hover: #f04a00;
  --st-text-menu: #ffffff;
  --st-text-menu-hover: #f04a00;
  --st-text-link: #f04a00;
  --st-text-link-hover: #002366;
  --st-text-button: #ffffff;
  --st-text-btn-hover: #f04a00;
  --st-text-price: #a0a3a9;
  --st-text-sale-price: #F04A00;
  --st-text-topmenu: #F2F4F7;
  --st-text-topmenu-hover: #70747d;
  --st-text-stock: #5fa745;
  --st-text-onsale: #70747d;
  --st-text-rating: #f04a00;
  --st-theme-1: #F04A00;
  --st-theme-2: #002366;
  --st-theme-primary: #f04a00;
  --st-theme-secondery: #002366;
  --st-theme-top-header: #111827;
  --st-theme-button: #f04a00;
  --st-theme-btn-hover: #ffffff;
  --st-theme-onsale: #ffffff;
  --st-border-1: #000;
  --st-border-button: #F04A00;
  --st-border-btn-hover: #F04A00;
  /**
  @font weight declaration
  */
  --st-fw-normal: normal;
  --st-fw-elight: 200;
  --st-fw-light: 300;
  --st-fw-regular: 400;
  --st-fw-medium: 500;
  --st-fw-sbold: 600;
  --st-fw-bold: 700;
  --st-fw-ebold: 800;
  --st-fw-black: 900;
  --st-fw-heading: 600;
  --st-fw-button: 600;
  --st-fw-menu: 500;
  /**
  @font size declaration
  */
  --st-fz-body: 18px;
  --st-fz-p: 18px;
  --st-fz-h1: 80px;
  --st-fz-h2: 60px;
  --st-fz-h3: 48px;
  --st-fz-h4: 32px;
  --st-fz-h5: 24px;
  --st-fz-h6: 20px;
  --st-fz-button: 18px;
  --st-fz-menu: 18px;
  --st-fz-mob-h1: 48px;
  --st-fz-mob-h2: 38px;
  --st-fz-mob-h3: 28px;
  --st-fz-mob-h4: 24px;
  --st-fz-mob-h5: 22px;
  --st-fz-mob-h6: 20px;
  --st-fz-tab-body: 18px;
  --st-fz-tab-h1: 65px;
  --st-fz-tab-h2: 50px;
  --st-fz-tab-h3: 46px;
  --st-fz-tab-h4: 42px;
  --st-fz-tab-h5: 34px;
  --st-fz-tab-h6: 30px;
  /**
  @line height declaration
  */
  --st-lh-body: 20px;
  --st-lh-h1: 90px;
  --st-lh-h2: 70px;
  --st-lh-h3: 58px;
  --st-lh-h4: 42px;
  --st-lh-h5: 34px;
  --st-lh-h6: 30px;
  --st-lh-button: 28px;
  --st-lh-h1-tab: 75px;
  --st-lh-h2-tab: 60px;
  --st-lh-h3-tab: 48px;
  --st-lh-h4-tab: 38px;
  --st-lh-h5-tab: 34px;
  --st-lh-h6-tab: 28px;
  --st-lh-h1-mob: 58px;
  --st-lh-h2-mob: 48px;
  --st-lh-h3-mob: 34px;
  --st-lh-h4-mob: 32px;
  --st-lh-h5-mob: 30px;
  --st-lh-h6-mob: 24px;
}

.header__area-v8 .header__area .header__top-area {
  padding: 10px 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .header__area-v8 .header__area .header__top-area .top__office-info ul {
    gap: 20px;
  }
}
.header__area-v8 .header__area .header__top-area .top__nav ul {
  gap: 16px;
}
.header__area-v8 .header__area .header__top-area .top__nav ul li a {
  border-right: 1px solid #fff;
  padding-right: 16px;
}
.header__area-v8 .header__area .header__top-area .top__nav ul li:last-child a {
  border-right: unset !important;
  padding-right: unset !important;
}
.header__area-v8 .header__area .header__main-area {
  border-top: 0;
}
.header__area-v8 .header__area .header__main-area .main__menu ul {
  flex-wrap: wrap;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .header__area-v8 .header__area .header__main-area .main__menu ul {
    justify-content: flex-start;
    gap: 15px;
  }
}
@media (max-width: 992px) {
  .header__area-v8 .header__area .header__main-area .menu-toggle {
    margin: 5px 0 0 0;
  }
}
@media (max-width: 575) {
  .header__area-v8 .header__area .header__main-area .menu-toggle {
    margin: 0;
  }
}
.header__area-v8 .header__mid-area {
  padding: 25px 0;
}
.header__area-v8 .wishlist__account .account {
  margin-top: 0;
}
.header__area-v8 .wishlist__account .dropdown-content {
  left: unset;
  right: 0;
}
.header__area-v8 .wishlist__account .shop .cart-count {
  top: -5px !important;
  left: 15px !important;
}
.header__area-v8 .wishlist__account .shop::before {
  top: -5px !important;
  left: 15px !important;
}

:root {
  /**
  @font family declaration
  */
  --st-ff-body: 'Poppins', sans-serif;
  --st-ff-heading: 'Poppins', sans-serif;
  --st-ff-p: 'Poppins', sans-serif;
  --st-ff-menu: 'Poppins', sans-serif;
  --st-ff-button: 'Poppins', sans-serif;
  --st-ff-fontawesome: "Font Awesome 6 Pro";
  /**
  @color declaration
  */
  --st-common-white: #ffffff;
  --st-common-black: #000;
  --st-common-black2: #111827;
  --st-common-star: #fdb022;
  --st-heading-primary: #002366;
  --st-grey-1: #70747D;
  --st-grey-2: #414652;
  --st-text-body: #70747D;
  --st-text-1: #70747D;
  --st-text-top-header: #f5ba68;
  --st-text-top-header-hover: #f04a00;
  --st-text-menu: #ffffff;
  --st-text-menu-hover: #f04a00;
  --st-text-link: #f04a00;
  --st-text-link-hover: #002366;
  --st-text-button: #ffffff;
  --st-text-btn-hover: #f04a00;
  --st-text-price: #a0a3a9;
  --st-text-sale-price: #F04A00;
  --st-text-topmenu: #F2F4F7;
  --st-text-topmenu-hover: #70747d;
  --st-text-stock: #5fa745;
  --st-text-onsale: #70747d;
  --st-text-rating: #f04a00;
  --st-theme-1: #F04A00;
  --st-theme-2: #002366;
  --st-theme-primary: #f04a00;
  --st-theme-secondery: #002366;
  --st-theme-top-header: #111827;
  --st-theme-button: #f04a00;
  --st-theme-btn-hover: #ffffff;
  --st-theme-onsale: #ffffff;
  --st-border-1: #000;
  --st-border-button: #F04A00;
  --st-border-btn-hover: #F04A00;
  /**
  @font weight declaration
  */
  --st-fw-normal: normal;
  --st-fw-elight: 200;
  --st-fw-light: 300;
  --st-fw-regular: 400;
  --st-fw-medium: 500;
  --st-fw-sbold: 600;
  --st-fw-bold: 700;
  --st-fw-ebold: 800;
  --st-fw-black: 900;
  --st-fw-heading: 600;
  --st-fw-button: 600;
  --st-fw-menu: 500;
  /**
  @font size declaration
  */
  --st-fz-body: 18px;
  --st-fz-p: 18px;
  --st-fz-h1: 80px;
  --st-fz-h2: 60px;
  --st-fz-h3: 48px;
  --st-fz-h4: 32px;
  --st-fz-h5: 24px;
  --st-fz-h6: 20px;
  --st-fz-button: 18px;
  --st-fz-menu: 18px;
  --st-fz-mob-h1: 48px;
  --st-fz-mob-h2: 38px;
  --st-fz-mob-h3: 28px;
  --st-fz-mob-h4: 24px;
  --st-fz-mob-h5: 22px;
  --st-fz-mob-h6: 20px;
  --st-fz-tab-body: 18px;
  --st-fz-tab-h1: 65px;
  --st-fz-tab-h2: 50px;
  --st-fz-tab-h3: 46px;
  --st-fz-tab-h4: 42px;
  --st-fz-tab-h5: 34px;
  --st-fz-tab-h6: 30px;
  /**
  @line height declaration
  */
  --st-lh-body: 20px;
  --st-lh-h1: 90px;
  --st-lh-h2: 70px;
  --st-lh-h3: 58px;
  --st-lh-h4: 42px;
  --st-lh-h5: 34px;
  --st-lh-h6: 30px;
  --st-lh-button: 28px;
  --st-lh-h1-tab: 75px;
  --st-lh-h2-tab: 60px;
  --st-lh-h3-tab: 48px;
  --st-lh-h4-tab: 38px;
  --st-lh-h5-tab: 34px;
  --st-lh-h6-tab: 28px;
  --st-lh-h1-mob: 58px;
  --st-lh-h2-mob: 48px;
  --st-lh-h3-mob: 34px;
  --st-lh-h4-mob: 32px;
  --st-lh-h5-mob: 30px;
  --st-lh-h6-mob: 24px;
}

.header__area-v9 {
  position: relative;
}
.header__area-v9 .header__area-v5 .header__main-area {
  border-top: 1px solid #E8F6E9;
}
.header__area-v9 .header__area-v5 .header__top-area {
  background-color: var(--st-theme-primary);
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .header__area-v9 .header__area-v5 .header__top-area {
    padding: 10px 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .header__area-v9 .header__area-v5 .header__top-area .top__office-info ul {
    justify-content: center;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .header__area-v9 .header__area-v5 .header__top-area .top__office-info ul {
    gap: 30px;
  }
}
.header__area-v9 .header__area .top__nav ul {
  gap: 0;
}
.header__area-v9 .header__area .top__nav li {
  padding: 10px 30px;
  border-right: 1px solid var(--st-text-topmenu);
}
.header__area-v9 .header__area .top__nav li:first-of-type {
  border-left: 1px solid var(--st-text-topmenu);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header__area-v9 .header__area .top__nav li {
    padding: 10px 20px;
  }
}
.header__area-v9 .header__mid-area {
  padding-top: 24px;
  padding-bottom: 24px;
  position: relative;
}
@media (max-width: 991px) {
  .header__area-v9 .header__mid-area {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
@media (max-width: 992px) {
  .header__area-v9 .header__mid-area .logo {
    text-align: center;
  }
}
.header__area-v9 .header__mid-area .wishlist__account ul {
  gap: 20px;
}
@media (max-width: 575.98px) {
  .header__area-v9 .header__mid-area .wishlist__account ul {
    justify-content: flex-end;
  }
}
@media (max-width: 350px) {
  .header__area-v9 .header__mid-area .wishlist__account ul {
    gap: 12px;
  }
}
.header__area-v9 .header__mid-area .wishlist__account ul li {
  margin-left: 0;
}
.header__area-v9 .header__mid-area .wishlist__account a {
  padding-right: 0;
  border: unset;
}
@media (min-width: 450px) {
  .header__area-v9 .header__mid-area .wishlist__account .shop .cart-count {
    top: -5px !important;
  }
}
.header__area-v9 .header__mid-area .wishlist__account .shop::before {
  content: none !important;
  display: none !important;
}
.header__area-v9 .header__mid-area .search__category {
  border-radius: 4px !important;
  border: 1px solid #E8F6E9;
  background-color: var(--st-common-white) !important;
}
.header__area-v9 .header__mid-area .search__bar .search__feild .search__icon {
  background: unset;
  width: unset;
  padding: 0px 16px;
  border-radius: 0 0 0 0;
  color: var(--st-theme-primary);
  border-left: 1px solid #E8F6E9;
}
.header__area-v9 .search-overlay-content .search__category .search__icon {
  background: var(--st-theme-primary);
}
.header__area-v9 .main__menu ul {
  justify-content: center !important;
}
.header__area-v9 .main__menu .menu-toggle {
  margin-top: 5px;
}
@media (max-width: 992px) {
  .header__area-v9 .main__menu .menu-toggle {
    position: absolute;
    bottom: 8px;
    margin-top: unset;
  }
}
.header__area-v9 .wishlist__account .dropdown-content {
  left: unset;
  right: 0;
  z-index: 9999;
}

:root {
  /**
  @font family declaration
  */
  --st-ff-body: 'Poppins', sans-serif;
  --st-ff-heading: 'Poppins', sans-serif;
  --st-ff-p: 'Poppins', sans-serif;
  --st-ff-menu: 'Poppins', sans-serif;
  --st-ff-button: 'Poppins', sans-serif;
  --st-ff-fontawesome: "Font Awesome 6 Pro";
  /**
  @color declaration
  */
  --st-common-white: #ffffff;
  --st-common-black: #000;
  --st-common-black2: #111827;
  --st-common-star: #fdb022;
  --st-heading-primary: #002366;
  --st-grey-1: #70747D;
  --st-grey-2: #414652;
  --st-text-body: #70747D;
  --st-text-1: #70747D;
  --st-text-top-header: #f5ba68;
  --st-text-top-header-hover: #f04a00;
  --st-text-menu: #ffffff;
  --st-text-menu-hover: #f04a00;
  --st-text-link: #f04a00;
  --st-text-link-hover: #002366;
  --st-text-button: #ffffff;
  --st-text-btn-hover: #f04a00;
  --st-text-price: #a0a3a9;
  --st-text-sale-price: #F04A00;
  --st-text-topmenu: #F2F4F7;
  --st-text-topmenu-hover: #70747d;
  --st-text-stock: #5fa745;
  --st-text-onsale: #70747d;
  --st-text-rating: #f04a00;
  --st-theme-1: #F04A00;
  --st-theme-2: #002366;
  --st-theme-primary: #f04a00;
  --st-theme-secondery: #002366;
  --st-theme-top-header: #111827;
  --st-theme-button: #f04a00;
  --st-theme-btn-hover: #ffffff;
  --st-theme-onsale: #ffffff;
  --st-border-1: #000;
  --st-border-button: #F04A00;
  --st-border-btn-hover: #F04A00;
  /**
  @font weight declaration
  */
  --st-fw-normal: normal;
  --st-fw-elight: 200;
  --st-fw-light: 300;
  --st-fw-regular: 400;
  --st-fw-medium: 500;
  --st-fw-sbold: 600;
  --st-fw-bold: 700;
  --st-fw-ebold: 800;
  --st-fw-black: 900;
  --st-fw-heading: 600;
  --st-fw-button: 600;
  --st-fw-menu: 500;
  /**
  @font size declaration
  */
  --st-fz-body: 18px;
  --st-fz-p: 18px;
  --st-fz-h1: 80px;
  --st-fz-h2: 60px;
  --st-fz-h3: 48px;
  --st-fz-h4: 32px;
  --st-fz-h5: 24px;
  --st-fz-h6: 20px;
  --st-fz-button: 18px;
  --st-fz-menu: 18px;
  --st-fz-mob-h1: 48px;
  --st-fz-mob-h2: 38px;
  --st-fz-mob-h3: 28px;
  --st-fz-mob-h4: 24px;
  --st-fz-mob-h5: 22px;
  --st-fz-mob-h6: 20px;
  --st-fz-tab-body: 18px;
  --st-fz-tab-h1: 65px;
  --st-fz-tab-h2: 50px;
  --st-fz-tab-h3: 46px;
  --st-fz-tab-h4: 42px;
  --st-fz-tab-h5: 34px;
  --st-fz-tab-h6: 30px;
  /**
  @line height declaration
  */
  --st-lh-body: 20px;
  --st-lh-h1: 90px;
  --st-lh-h2: 70px;
  --st-lh-h3: 58px;
  --st-lh-h4: 42px;
  --st-lh-h5: 34px;
  --st-lh-h6: 30px;
  --st-lh-button: 28px;
  --st-lh-h1-tab: 75px;
  --st-lh-h2-tab: 60px;
  --st-lh-h3-tab: 48px;
  --st-lh-h4-tab: 38px;
  --st-lh-h5-tab: 34px;
  --st-lh-h6-tab: 28px;
  --st-lh-h1-mob: 58px;
  --st-lh-h2-mob: 48px;
  --st-lh-h3-mob: 34px;
  --st-lh-h4-mob: 32px;
  --st-lh-h5-mob: 30px;
  --st-lh-h6-mob: 24px;
}

@media (max-width: 992px) {
  .header__area-v10 .menu-toggle {
    margin: 13px 0 0 0;
  }
}
@media (max-width: 575px) {
  .header__area-v10 .menu-toggle {
    margin: 0;
  }
}
.header__area-v10 .header__area-v2 {
  border-bottom: none;
}
.header__area-v10 .account {
  margin-left: 24px;
}

:root {
  /**
  @font family declaration
  */
  --st-ff-body: 'Poppins', sans-serif;
  --st-ff-heading: 'Poppins', sans-serif;
  --st-ff-p: 'Poppins', sans-serif;
  --st-ff-menu: 'Poppins', sans-serif;
  --st-ff-button: 'Poppins', sans-serif;
  --st-ff-fontawesome: "Font Awesome 6 Pro";
  /**
  @color declaration
  */
  --st-common-white: #ffffff;
  --st-common-black: #000;
  --st-common-black2: #111827;
  --st-common-star: #fdb022;
  --st-heading-primary: #002366;
  --st-grey-1: #70747D;
  --st-grey-2: #414652;
  --st-text-body: #70747D;
  --st-text-1: #70747D;
  --st-text-top-header: #f5ba68;
  --st-text-top-header-hover: #f04a00;
  --st-text-menu: #ffffff;
  --st-text-menu-hover: #f04a00;
  --st-text-link: #f04a00;
  --st-text-link-hover: #002366;
  --st-text-button: #ffffff;
  --st-text-btn-hover: #f04a00;
  --st-text-price: #a0a3a9;
  --st-text-sale-price: #F04A00;
  --st-text-topmenu: #F2F4F7;
  --st-text-topmenu-hover: #70747d;
  --st-text-stock: #5fa745;
  --st-text-onsale: #70747d;
  --st-text-rating: #f04a00;
  --st-theme-1: #F04A00;
  --st-theme-2: #002366;
  --st-theme-primary: #f04a00;
  --st-theme-secondery: #002366;
  --st-theme-top-header: #111827;
  --st-theme-button: #f04a00;
  --st-theme-btn-hover: #ffffff;
  --st-theme-onsale: #ffffff;
  --st-border-1: #000;
  --st-border-button: #F04A00;
  --st-border-btn-hover: #F04A00;
  /**
  @font weight declaration
  */
  --st-fw-normal: normal;
  --st-fw-elight: 200;
  --st-fw-light: 300;
  --st-fw-regular: 400;
  --st-fw-medium: 500;
  --st-fw-sbold: 600;
  --st-fw-bold: 700;
  --st-fw-ebold: 800;
  --st-fw-black: 900;
  --st-fw-heading: 600;
  --st-fw-button: 600;
  --st-fw-menu: 500;
  /**
  @font size declaration
  */
  --st-fz-body: 18px;
  --st-fz-p: 18px;
  --st-fz-h1: 80px;
  --st-fz-h2: 60px;
  --st-fz-h3: 48px;
  --st-fz-h4: 32px;
  --st-fz-h5: 24px;
  --st-fz-h6: 20px;
  --st-fz-button: 18px;
  --st-fz-menu: 18px;
  --st-fz-mob-h1: 48px;
  --st-fz-mob-h2: 38px;
  --st-fz-mob-h3: 28px;
  --st-fz-mob-h4: 24px;
  --st-fz-mob-h5: 22px;
  --st-fz-mob-h6: 20px;
  --st-fz-tab-body: 18px;
  --st-fz-tab-h1: 65px;
  --st-fz-tab-h2: 50px;
  --st-fz-tab-h3: 46px;
  --st-fz-tab-h4: 42px;
  --st-fz-tab-h5: 34px;
  --st-fz-tab-h6: 30px;
  /**
  @line height declaration
  */
  --st-lh-body: 20px;
  --st-lh-h1: 90px;
  --st-lh-h2: 70px;
  --st-lh-h3: 58px;
  --st-lh-h4: 42px;
  --st-lh-h5: 34px;
  --st-lh-h6: 30px;
  --st-lh-button: 28px;
  --st-lh-h1-tab: 75px;
  --st-lh-h2-tab: 60px;
  --st-lh-h3-tab: 48px;
  --st-lh-h4-tab: 38px;
  --st-lh-h5-tab: 34px;
  --st-lh-h6-tab: 28px;
  --st-lh-h1-mob: 58px;
  --st-lh-h2-mob: 48px;
  --st-lh-h3-mob: 34px;
  --st-lh-h4-mob: 32px;
  --st-lh-h5-mob: 30px;
  --st-lh-h6-mob: 24px;
}

.header__area-v11 .header__top-area {
  background: none;
  padding: 12px 0;
  border-bottom: 1px solid #E8E8EA;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .header__area-v11 .top__office-info ul {
    gap: 20px !important;
  }
}
.header__area-v11 .top__office-info ul li {
  color: var(--st-theme-primary) !important;
}
.header__area-v11 .top__nav-social ul {
  display: flex;
  flex-direction: row;
  gap: 24px;
  justify-content: flex-end;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .header__area-v11 .top__nav-social ul {
    gap: 12px;
  }
}
.header__area-v11 .top__nav-social ul li:hover i {
  color: var(--st-theme-primary);
}
.header__area-v11 .top__nav-social ul li i {
  font-size: 16px;
  color: var(--st-text-1);
  transition: all 0.3s ease-in-out;
}
.header__area-v11 .support__center {
  gap: 12px;
}
.header__area-v11 .help__icon {
  height: 48px;
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--st-theme-primary);
}
.header__area-v11 .help__icon i {
  color: var(--st-theme-primary);
  font-size: 24px;
}
.header__area-v11 .help__no p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 20px;
  color: var(--st-grey-2);
}
.header__area-v11 .help__no span {
  color: var(--st-theme-primary);
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
}
.header__area-v11 .search-form .search-field {
  padding: 10px;
}
.header__area-v11 .search__feild input[type=search] {
  width: 100% !important;
}
.header__area-v11 .search__bar {
  height: unset !important;
}
.header__area-v11 .search__category {
  border-radius: 0 !important;
  width: 100% !important;
  border: 1px solid #E6EDFA;
  background-color: var(--st-common-white) !important;
}
.header__area-v11 .search__icon {
  width: unset !important;
  border-radius: 0 !important;
  outline: 1px solid var(--st-theme-primary);
  padding: 10px 28px !important;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .header__area-v11 .search__icon {
    padding: 7px 15px !important;
  }
}
.header__area-v11 .search__icon span {
  font-size: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .header__area-v11 .search__icon span {
    font-size: 16px !important;
  }
}
.header__area-v11 .header__main-area {
  border: 1px solid #E6EDFA;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .header__area-v11 .header__main-area .header__main-menu-wrapper {
    position: relative;
  }
}
.header__area-v11 .category__dropdown-menu::before {
  content: none !important;
}
.header__area-v11 .all__categories-text {
  padding: 15px 24px !important;
  border-radius: 0 !important;
}
.header__area-v11 .dropdown__category-menu .sub-menu {
  top: 70px !important;
}
.header__area-v11 .main__menu {
  position: unset;
}
.header__area-v11 .main__menu a::after {
  bottom: -23px !important;
}
.header__area-v11 .main__menu ul {
  justify-content: center !important;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .header__area-v11 .main__menu ul {
    justify-content: left !important;
  }
}
.header__area-v11 .wishlist__account ul {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 20px;
}
@media (max-width: 992px) {
  .header__area-v11 .wishlist__account ul {
    padding-top: 5px;
  }
}
@media (max-width: 575.98px) {
  .header__area-v11 .wishlist__account ul {
    justify-content: center;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .header__area-v11 .wishlist__account ul {
    gap: 10px;
    justify-content: start;
  }
}
.header__area-v11 .wishlist__account ul li {
  list-style: none;
  margin-left: 0;
  text-align: center;
  display: flex;
  font-size: 16px;
  font-weight: 500;
  color: var(--st-theme-primary);
}
@media (max-width: 575.98px) {
  .header__area-v11 .wishlist__account ul li {
    font-size: 14px;
  }
}
.header__area-v11 .wishlist__account ul li a img {
  margin-right: 8px;
}
.header__area-v11 .wishlist__account ul li i {
  font-size: 24px;
  margin-right: 12px;
}
.header__area-v11 .wishlist__account ul .wishlist {
  position: relative;
}
.header__area-v11 .wishlist__account ul .shop {
  position: relative;
}
.header__area-v11 .wishlist__account ul .shop .cart-count {
  top: -5px !important;
}
.header__area-v11 .wishlist__account a {
  border-right: 0;
  padding-right: 0;
}
@media (max-width: 1330px) {
  .header__area-v11 .dropdown__multilevel-menu nav .menu .all-categories-item {
    width: unset !important;
  }
}
@media (max-width: 1330px) {
  .header__area-v11 .all_categories {
    display: none !important;
  }
}
.header__area-v11 .dropdown__menu-toggle span {
  background: var(--st-theme-primary);
  padding: 5px;
}
.header__area-v11 .dropdown__menu-toggle span i {
  margin-right: 0;
}
.header__area-v11 .menu-toggle {
  position: absolute;
  right: 0;
  top: 12px;
}
@media (max-width: 800px) {
  .header__area-v11 .menu-toggle {
    padding-right: 15px;
  }
}
.header__area-v11 .menu-toggle i {
  font-size: 25px !important;
  color: var(--st-common-white) !important;
  padding: 5px;
  background: var(--st-theme-primary);
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .header__area-v11 .header__mid-area {
    text-align: center;
  }
}

:root {
  /**
  @font family declaration
  */
  --st-ff-body: 'Poppins', sans-serif;
  --st-ff-heading: 'Poppins', sans-serif;
  --st-ff-p: 'Poppins', sans-serif;
  --st-ff-menu: 'Poppins', sans-serif;
  --st-ff-button: 'Poppins', sans-serif;
  --st-ff-fontawesome: "Font Awesome 6 Pro";
  /**
  @color declaration
  */
  --st-common-white: #ffffff;
  --st-common-black: #000;
  --st-common-black2: #111827;
  --st-common-star: #fdb022;
  --st-heading-primary: #002366;
  --st-grey-1: #70747D;
  --st-grey-2: #414652;
  --st-text-body: #70747D;
  --st-text-1: #70747D;
  --st-text-top-header: #f5ba68;
  --st-text-top-header-hover: #f04a00;
  --st-text-menu: #ffffff;
  --st-text-menu-hover: #f04a00;
  --st-text-link: #f04a00;
  --st-text-link-hover: #002366;
  --st-text-button: #ffffff;
  --st-text-btn-hover: #f04a00;
  --st-text-price: #a0a3a9;
  --st-text-sale-price: #F04A00;
  --st-text-topmenu: #F2F4F7;
  --st-text-topmenu-hover: #70747d;
  --st-text-stock: #5fa745;
  --st-text-onsale: #70747d;
  --st-text-rating: #f04a00;
  --st-theme-1: #F04A00;
  --st-theme-2: #002366;
  --st-theme-primary: #f04a00;
  --st-theme-secondery: #002366;
  --st-theme-top-header: #111827;
  --st-theme-button: #f04a00;
  --st-theme-btn-hover: #ffffff;
  --st-theme-onsale: #ffffff;
  --st-border-1: #000;
  --st-border-button: #F04A00;
  --st-border-btn-hover: #F04A00;
  /**
  @font weight declaration
  */
  --st-fw-normal: normal;
  --st-fw-elight: 200;
  --st-fw-light: 300;
  --st-fw-regular: 400;
  --st-fw-medium: 500;
  --st-fw-sbold: 600;
  --st-fw-bold: 700;
  --st-fw-ebold: 800;
  --st-fw-black: 900;
  --st-fw-heading: 600;
  --st-fw-button: 600;
  --st-fw-menu: 500;
  /**
  @font size declaration
  */
  --st-fz-body: 18px;
  --st-fz-p: 18px;
  --st-fz-h1: 80px;
  --st-fz-h2: 60px;
  --st-fz-h3: 48px;
  --st-fz-h4: 32px;
  --st-fz-h5: 24px;
  --st-fz-h6: 20px;
  --st-fz-button: 18px;
  --st-fz-menu: 18px;
  --st-fz-mob-h1: 48px;
  --st-fz-mob-h2: 38px;
  --st-fz-mob-h3: 28px;
  --st-fz-mob-h4: 24px;
  --st-fz-mob-h5: 22px;
  --st-fz-mob-h6: 20px;
  --st-fz-tab-body: 18px;
  --st-fz-tab-h1: 65px;
  --st-fz-tab-h2: 50px;
  --st-fz-tab-h3: 46px;
  --st-fz-tab-h4: 42px;
  --st-fz-tab-h5: 34px;
  --st-fz-tab-h6: 30px;
  /**
  @line height declaration
  */
  --st-lh-body: 20px;
  --st-lh-h1: 90px;
  --st-lh-h2: 70px;
  --st-lh-h3: 58px;
  --st-lh-h4: 42px;
  --st-lh-h5: 34px;
  --st-lh-h6: 30px;
  --st-lh-button: 28px;
  --st-lh-h1-tab: 75px;
  --st-lh-h2-tab: 60px;
  --st-lh-h3-tab: 48px;
  --st-lh-h4-tab: 38px;
  --st-lh-h5-tab: 34px;
  --st-lh-h6-tab: 28px;
  --st-lh-h1-mob: 58px;
  --st-lh-h2-mob: 48px;
  --st-lh-h3-mob: 34px;
  --st-lh-h4-mob: 32px;
  --st-lh-h5-mob: 30px;
  --st-lh-h6-mob: 24px;
}

.hero {
  background: #FFF2EB !important;
}

.hero__area {
  z-index: -2;
  background-color: #FFF2EB !important;
  background-position: top right;
  background-repeat: no-repeat, no-repeat;
}
.hero__area .section__title {
  padding-top: 5rem;
}
.hero__area p {
  padding-top: 30px;
  padding-bottom: 30px;
}
@media (max-width: 575.98px) {
  .hero__area .heroBtn__wrapper {
    flex-direction: column;
    row-gap: 10px;
    align-items: flex-start !important;
  }
}
.hero__area .heroBtn__wrapper .simple__button {
  font-size: 18px;
  font-weight: 600;
  color: var(--st-heading-primary) !important;
  margin: 0 25px;
}
@media (max-width: 575.98px) {
  .hero__area .heroBtn__wrapper .simple__button {
    margin: 0;
  }
}
.hero__area .heroBtn__wrapper .simple__button:hover {
  color: var(--st-theme-1) !important;
}
.hero__area .heroBtn__wrapper .play__btn {
  font-size: 45px;
  color: var(--st-theme-1);
}
.hero__area .heroBtn__wrapper .play__btn:hover {
  color: var(--st-heading-primary);
}
.hero__area .hero__image {
  z-index: 3;
}
.hero__area .hero__image .hero__overlay {
  position: relative;
}
.hero__area .hero__image .hero__overlay::before {
  position: absolute;
  content: "";
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(230, 98, 34, 0.1);
  top: -30px;
  left: 30px;
}
.hero__area .hero__image .hero__overlay-2::before {
  background: rgba(122, 38, 58, 0.1);
}
.hero__area .hero__image .hero__overlay-3::before {
  background: rgba(208, 184, 149, 0.25);
}
.hero__area .hero__image a img.hero-image-1 {
  width: 80%;
  background-size: contain;
  background-repeat: no-repeat;
  padding-top: 70px;
  animation: moveBackground 4s linear infinite;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .hero__area .slider__card-wrapper {
    padding-bottom: 120px;
  }
}
.hero__area .slider__single-card {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  animation: moveBackground 4s linear infinite;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 60px;
  margin-right: 30px;
}
@media (max-width: 575.98px) {
  .hero__area .slider__single-card {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
  }
}
.hero__area .slider__single-card .card__image {
  margin-top: 40px;
  max-width: 340px;
  width: 100%;
}
.hero__area .slider__single-card .card__image img {
  background: #FEEDE6;
  width: 100%;
  max-width: 340px;
  height: 340px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}
.hero__area .slider__single-card .card__author {
  max-width: 340px;
  width: 100%;
  background: #fff;
  padding: 24px 32px;
  border-radius: 0px 0px 12px 12px;
}
.hero__area .slider__single-card .card__author span {
  font-size: 14px;
}
.hero__area .slider__single-card .card__author p {
  font-weight: 600;
  color: var(--st-heading-primary);
  padding: 0;
}

.hero__area-2 {
  background-color: #FFF0EA !important;
}
.hero__area-2 span {
  color: #C23B5A !important;
}

.hero__area-3 {
  background-color: #FFF5E7 !important;
}
.hero__area-3 span {
  color: #AF874C !important;
}

/* Navigation arrows (next and previous) */
.swiper-button-next,
.swiper-button-prev {
  display: none;
}

/* Pagination container */
.hero .swiper-pagination {
  margin-bottom: 30px !important;
}

.swiper-pagination {
  bottom: 10px; /* Adjust positioning as needed */
  text-align: center;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Pagination bullets */
.swiper-pagination-bullet {
  display: inline-block;
  width: 30px; /* Adjust width to accommodate text and gap */
  height: 30px; /* Size of the bullet */
  border-radius: 50%; /* Makes the bullets circular */
  background-color: #ccc; /* Default background color */
  color: #000; /* Default text color */
  font-size: 18px; /* Font size */
  line-height: 30px; /* Vertical alignment */
  margin: 0 15px !important; /* Spacing between bullets, half of the 30px gap */
  text-align: center;
  cursor: pointer;
  font-weight: 600;
  position: relative; /* For positioning the line */
}

/* Style for the active bullet */
.swiper-pagination-bullet-active {
  background-color: #ff0000; /* Active bullet background color */
  color: #fff; /* Active bullet text color */
}

/* Adding a separator line */
.swiper-pagination-bullet:not(:last-child)::after {
  content: "";
  display: block;
  width: 30px; /* Length of the line */
  height: 3px; /* Thickness of the line */
  background-color: #ff0000; /* Color of the line */
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 30px;
}

@keyframes moveBackground {
  0% {
    transform: translateY(0) translateX(0);
  }
  25% {
    transform: translateY(20px) translateX(20px);
  }
  50% {
    transform: translateY(40px) translateX(0);
  }
  75% {
    transform: translateY(20px) translateX(20px);
  }
  100% {
    transform: translateY(0) translateX(0);
  }
}
.fade-in {
  opacity: 0;
  transform: translateX(20px);
  display: inline-block;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateX(0);
}

.banner__v2 {
  background: #FAFAFB;
}
.banner__v2 .banner__wrapper .left__img {
  width: 450px;
}
@media (max-width: 991px) {
  .banner__v2 .banner__wrapper .left__img {
    width: 100%;
  }
}
.banner__v2 .banner__wrapper .left__img img {
  max-width: 496px;
  height: 740px;
  object-fit: cover;
}
@media (max-width: 767px) {
  .banner__v2 .banner__wrapper .left__img img {
    max-width: 100%;
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .banner__v2 .banner__wrapper .left__img img {
    width: 100%;
    height: 296px;
    object-fit: cover;
  }
}
.banner__v2 .banner__wrapper .left__img .sort__videos-wrapper {
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.05);
  background: #fff;
  bottom: 80px;
  width: 400px;
  left: 235px;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .banner__v2 .banner__wrapper .left__img .sort__videos-wrapper {
    width: calc(100% - 30px);
    left: 0px;
    bottom: 40px;
    margin: 0 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .banner__v2 .banner__wrapper .left__img .sort__videos-wrapper {
    max-width: 410px;
    width: 100%;
    left: 32px;
    bottom: 70px;
  }
}
@media (min-width: 992px) and (max-width: 1080px) {
  .banner__v2 .banner__wrapper .left__img .sort__videos-wrapper {
    left: 80px;
  }
}
.banner__v2 .banner__wrapper .left__img .sort__videos-wrapper .videoss .overlay__videoss {
  position: relative;
}
.banner__v2 .banner__wrapper .left__img .sort__videos-wrapper .videoss .overlay__videoss img {
  max-width: 108px;
  height: 108px;
  border-radius: 8px;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .banner__v2 .banner__wrapper .left__img .sort__videos-wrapper .videoss .overlay__videoss img {
    width: 108px;
  }
}
@media (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .banner__v2 .banner__wrapper .left__img .sort__videos-wrapper .videoss .overlay__videoss img {
    width: 108px;
  }
}
@media (max-width: 403px) {
  .banner__v2 .banner__wrapper .left__img .sort__videos-wrapper .videoss .overlay__videoss img {
    height: 143px;
    object-fit: cover;
  }
}
@media (max-width: 333px) {
  .banner__v2 .banner__wrapper .left__img .sort__videos-wrapper .videoss .overlay__videoss img {
    height: 160px;
    object-fit: cover;
  }
}
.banner__v2 .banner__wrapper .left__img .sort__videos-wrapper .videoss .overlay__videoss::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #002366;
  opacity: 0.5;
  top: 0;
  left: 0;
  z-index: 1;
  border-radius: 8px 0 0 8px;
}
.banner__v2 .banner__wrapper .left__img .sort__videos-wrapper .videoss .overlay__videoss i {
  font-size: 50px;
  z-index: 9;
  position: absolute;
  position: absolute;
  left: 30px;
  top: 42px;
  color: #fff;
}
@media (max-width: 403px) {
  .banner__v2 .banner__wrapper .left__img .sort__videos-wrapper .videoss .overlay__videoss i {
    top: 57px;
  }
}
@media (max-width: 333px) {
  .banner__v2 .banner__wrapper .left__img .sort__videos-wrapper .videoss .overlay__videoss i {
    top: 67px;
  }
}
.banner__v2 .banner__wrapper .left__img .sort__videos-wrapper .videoss p {
  margin: 0;
  padding: 15px 20px;
  font-size: 14px;
}
.banner__v2 .banner__wrapper .middle__title {
  padding: 40px 40px 0 80px;
}
@media (max-width: 991px) {
  .banner__v2 .banner__wrapper .middle__title {
    padding: 20px 16px;
  }
}
.banner__v2 .banner__wrapper .middle__title h1 {
  font-weight: 600;
  line-height: 100px;
  padding-bottom: 20px;
}
@media (max-width: 767px) {
  .banner__v2 .banner__wrapper .middle__title h1 {
    font-size: var(--st-fz-mob-h1);
    line-height: var(--st-lh-h1-mob);
    padding-bottom: 0px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .banner__v2 .banner__wrapper .middle__title h1 {
    font-size: 60px;
    line-height: 68px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .banner__v2 .banner__wrapper .middle__title h1 {
    font-size: 55px;
    line-height: 60px;
  }
}
.banner__v2 .banner__wrapper .middle__title .text-stroke {
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--st-theme-1);
  font-family: "Poppins", sans-serif;
  font-size: 80px;
  font-weight: 600;
  line-height: 90px;
  color: white;
  padding-left: 140px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .banner__v2 .banner__wrapper .middle__title .text-stroke {
    padding-left: 0px;
    font-size: var(--st-fz-mob-h1);
    line-height: var(--st-lh-h1-mob);
    margin-bottom: 0px;
    padding: 10px 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .banner__v2 .banner__wrapper .middle__title .text-stroke {
    font-size: 60px;
    line-height: 68px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .banner__v2 .banner__wrapper .middle__title .text-stroke {
    font-size: 55px;
    line-height: 60px;
    padding-left: 0px;
  }
}
@media (min-width: 992px) and (max-width: 1080px) {
  .banner__v2 .banner__wrapper .middle__title .text-stroke {
    padding-left: 0px;
  }
}
.banner__v2 .banner__wrapper .middle__title .simple__btnn {
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
  text-decoration-line: underline;
  margin-left: 140px;
  color: var(--st-theme-1);
}
@media (max-width: 1080px) {
  .banner__v2 .banner__wrapper .middle__title .simple__btnn {
    margin-left: 0px;
    font-size: 18px;
    line-height: 28px;
  }
}
.banner__v2 .banner__wrapper .middle__title .banner2__social {
  position: absolute;
  bottom: 28px;
  right: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .banner__v2 .banner__wrapper .middle__title .banner2__social {
    bottom: -160px;
  }
}
.banner__v2 .banner__wrapper .middle__title .banner2__social ul {
  display: flex;
  justify-content: space-between;
}
.banner__v2 .banner__wrapper .middle__title .banner2__social ul li {
  list-style-type: none;
}
.banner__v2 .banner__wrapper .middle__title .banner2__social ul li a {
  font-size: 14px;
  padding: 0 14px;
  color: #A0A3A9;
}
.banner__v2 .banner__wrapper .middle__title .banner__bottom {
  padding-top: 55px;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .banner__v2 .banner__wrapper .middle__title .banner__bottom {
    padding-left: 35px;
  }
}
.banner__v2 .banner__wrapper .middle__title .banner__bottom img {
  max-width: 552px;
  width: 100%;
  height: 292px;
  object-fit: cover;
}
.banner__v2 .banner__wrapper .right__img {
  width: 348px;
}
.banner__v2 .banner__wrapper .right__img div {
  left: 0;
  bottom: 0;
}
.banner__v2 .banner__wrapper .right__img img {
  max-width: 348px;
  width: 100%;
  height: 600px;
  object-fit: cover;
}

@media (max-width: 991px) {
  .desktop-screen-banner {
    display: none;
  }
}

@media (min-width: 768px) {
  .mobile-screen-hero {
    display: none;
  }
}

@media (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px), only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 1400px) and (max-width: 1600px) {
  .tablet-screen {
    display: none;
  }
}
@media (min-width: 992px) {
  .tablet-screen {
    display: none;
  }
}
.tablet-screen .banner__bottom {
  margin-top: -100px;
}

.hero__slider-v3 {
  padding: 90px 0;
  background-color: #F6F2EF;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left;
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .hero__slider-v3 .row {
    display: flex;
    flex-direction: column-reverse;
  }
}
.hero__slider-v3 .hero__left {
  padding: 110px 50px 110px 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .hero__slider-v3 .hero__left {
    padding: 110px 30px 110px 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .hero__slider-v3 .hero__left {
    padding: 60px 20px 60px 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .hero__slider-v3 .hero__left {
    padding: 40px 0 40px 0;
  }
}
.hero__slider-v3 .hero__left .section__title .sub__title {
  font-size: 24px;
  line-height: 32px;
  font-weight: 400;
  color: #414652;
  margin-bottom: 8px;
}
.hero__slider-v3 .hero__left .section__title .main__title {
  color: #111827;
  font-weight: 400;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero__slider-v3 .hero__left .section__title .main__title {
    font-size: 70px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .hero__slider-v3 .hero__left .section__title .main__title {
    font-size: 60px;
  }
}
.hero__slider-v3 .hero__left p {
  color: #414652;
  margin: 0;
}
.hero__slider-v3 .hero__left .description-wrapper {
  max-width: 850px;
  width: 100%;
}
.hero__slider-v3 .hero__left .buttom__wrapper {
  margin-top: 40px;
}
.hero__slider-v3 .hero__image {
  padding: 0 28px 28px 0;
  position: relative;
}
.hero__slider-v3 .hero__image .jewelry__image-wrapper {
  max-width: 552px;
}
.hero__slider-v3 .hero__image .jewelry__image-wrapper::before {
  content: "";
  background: transparent;
  border: 1px solid #A57E60;
  max-width: 552px;
  width: 100%;
  height: 550px;
  position: absolute;
  right: -28px;
  bottom: -28px;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), (max-width: 575.98px) {
  .hero__slider-v3 .hero__image .jewelry__image-wrapper::before {
    height: 400px;
  }
}
.hero__slider-v3 .hero__image img {
  position: relative;
  max-width: 552px;
  width: 100%;
  height: 540px;
  object-fit: cover;
  z-index: 1;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), (max-width: 575.98px) {
  .hero__slider-v3 .hero__image img {
    height: 400px;
  }
}
.hero__slider-v3 .hero__right {
  position: relative;
  padding-bottom: 52px;
  padding-right: 100px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero__slider-v3 .hero__right {
    padding-right: 52px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px) {
  .hero__slider-v3 .hero__right {
    padding-right: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px) {
  .hero__slider-v3 .hero__right {
    padding-right: 52px;
  }
}
@media (max-width: 575.98px) {
  .hero__slider-v3 .hero__right {
    padding-right: 20px;
  }
}
.hero__slider-v3 .hero__right .header-wrapper {
  position: absolute;
  background: #A57E60;
  max-width: 316px;
  width: 100%;
  padding: 32px 20px;
  right: 0;
  bottom: 0;
  z-index: 2;
}
@media (max-width: 575.98px) {
  .hero__slider-v3 .hero__right .header-wrapper {
    width: 80%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .hero__slider-v3 .hero__right .header-wrapper {
    width: 80%;
  }
}
.hero__slider-v3 .hero__right h3 {
  display: inline-block;
  font-size: 48px;
  line-height: 60px;
  color: #fff;
  text-align: center;
}
@media (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .hero__slider-v3 .hero__right h3 {
    font-size: 25px !important;
    line-height: 30px !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .hero__slider-v3 .hero__right h3 {
    font-size: 25px;
    line-height: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .hero__slider-v3 .hero__right h3 {
    font-size: 30px;
    line-height: 40px;
  }
}
.hero__slider-v3 .hero__content-wrapper.swiper-slide-active [data-animate] {
  opacity: 1;
  transform: none;
}
.hero__slider-v3 .hero__content-wrapper.swiper-slide-active .sub__title {
  transition-delay: 0.8s;
}
.hero__slider-v3 .hero__content-wrapper.swiper-slide-active .main__title {
  transition-delay: 0.9s;
}
.hero__slider-v3 .hero__content-wrapper.swiper-slide-active .description-wrapper {
  transition-delay: 1s;
}
.hero__slider-v3 .hero__content-wrapper.swiper-slide-active .buttom__wrapper {
  transition-delay: 1.3s;
}
.hero__slider-v3 [data-animate] {
  opacity: 0;
  transition: all 1s ease-out;
}
.hero__slider-v3 [data-animate=top] {
  transform: translate3d(0, -50px, 0);
}
.hero__slider-v3 [data-animate=bottom] {
  transform: translate3d(0, 50px, 0);
}

.hero__slider-v4 {
  background-color: var(--st-theme-2);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .hero__slider-v4 .row {
    display: flex;
    flex-direction: column-reverse;
  }
}
.hero__slider-v4 .slider-wrapper {
  padding: 80px 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.hero__slider-v4 .hero__left-text {
  padding: 120px 110px 120px 0;
  margin-left: 168px;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .hero__slider-v4 .hero__left-text {
    padding: 60px 30px 0 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .hero__slider-v4 .hero__left-text {
    padding: 60px 20px 60px 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .hero__slider-v4 .hero__left-text {
    padding: 40px 0 40px 0;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .hero__slider-v4 .hero__left-text {
    margin-left: 0;
  }
}
.hero__slider-v4 .hero__left-text .section__title .sub__title {
  font-size: 24px;
  line-height: 32px;
  font-weight: 400;
  color: var(--st-text-body);
  margin-bottom: 8px;
}
.hero__slider-v4 .hero__left-text .section__title .main__title {
  color: var(--st-heading-primary);
  font-size: 80px;
  line-height: 100px;
  font-weight: 400;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero__slider-v4 .hero__left-text .section__title .main__title {
    font-size: 70px;
    line-height: 80px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .hero__slider-v4 .hero__left-text .section__title .main__title {
    font-size: 60px;
    line-height: 65px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .hero__slider-v4 .hero__left-text .section__title .main__title {
    font-size: 50px;
    line-height: 58px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .hero__slider-v4 .hero__left-text .section__title .main__title {
    font-size: 32px;
    line-height: 40px;
  }
}
.hero__slider-v4 .hero__left-text p {
  color: var(--st-text-body);
  margin: 0;
}
.hero__slider-v4 .hero__left-text .description-wrapper {
  max-width: 700px;
  width: 100%;
}
.hero__slider-v4 .hero__left-text .buttom__wrapper {
  margin-top: 40px;
}
.hero__slider-v4 .hero__image {
  border: 1px solid #6A92E0;
  outline: 1px solid #6A92E0;
  outline-offset: 20px;
  padding: 20px;
  border-radius: 50%;
  width: 600px;
  height: 600px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 768px) and (max-width: 991.98px) {
  .hero__slider-v4 .hero__image {
    width: 550px;
    height: 550px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .hero__slider-v4 .hero__image {
    width: 450px;
    height: 450px;
  }
}
@media (max-width: 575.98px) {
  .hero__slider-v4 .hero__image {
    width: 310px;
    height: 310px;
    padding: 5px;
    outline-offset: 5px;
  }
}
.hero__slider-v4 .hero__image .equipment__image-slider {
  border: 4px solid var(--st-theme-1);
  width: 560px;
  height: 560px;
  border-radius: 50%;
  padding: 20px;
  background: #F3F6FC;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 768px) and (max-width: 991.98px) {
  .hero__slider-v4 .hero__image .equipment__image-slider {
    width: 500px;
    height: 500px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .hero__slider-v4 .hero__image .equipment__image-slider {
    width: 400px;
    height: 400px;
  }
}
@media (max-width: 575.98px) {
  .hero__slider-v4 .hero__image .equipment__image-slider {
    width: 300px;
    height: 300px;
  }
}
.hero__slider-v4 .hero__image img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 1;
}
.hero__slider-v4 .hero__right {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .hero__slider-v4 .hero__right {
    justify-content: center;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .hero__slider-v4 .hero__right {
    padding-top: 20px;
  }
}
.hero__slider-v4 .header-wrapper {
  position: absolute;
  background: var(--st-theme-1);
  border: 4px solid var(--st-common-white);
  border-radius: 50%;
  width: 140px;
  height: 140px;
  padding: 32px 20px;
  right: 0;
  bottom: 50px;
  z-index: 2;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .hero__slider-v4 .header-wrapper {
    right: unset;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 200px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px) {
  .hero__slider-v4 .header-wrapper {
    margin-left: 180px;
  }
}
@media (max-width: 575.98px) {
  .hero__slider-v4 .header-wrapper {
    margin-left: 114px;
    padding: 28px 20px;
  }
}
@media (max-width: 575.98px) {
  .hero__slider-v4 .header-wrapper {
    height: 100px;
    width: 100px;
  }
}
.hero__slider-v4 .header-wrapper h3 {
  display: inline-block;
  font-size: 32px;
  line-height: 40px;
  color: var(--st-common-white);
  text-align: center;
}
@media (max-width: 575.98px) {
  .hero__slider-v4 .header-wrapper h3 {
    font-size: 20px !important;
    line-height: 24px !important;
  }
}
.hero__slider-v4 .hero__content-wrapper.swiper-slide-active [data-animate] {
  opacity: 1;
  transform: none;
}
.hero__slider-v4 .hero__content-wrapper.swiper-slide-active .sub__title {
  transition-delay: 0.8s;
}
.hero__slider-v4 .hero__content-wrapper.swiper-slide-active .main__title {
  transition-delay: 0.9s;
}
.hero__slider-v4 .hero__content-wrapper.swiper-slide-active .description-wrapper {
  transition-delay: 1s;
}
.hero__slider-v4 .hero__content-wrapper.swiper-slide-active .buttom__wrapper {
  transition-delay: 1.3s;
}
.hero__slider-v4 [data-animate] {
  opacity: 0;
  transition: all 1s ease-out;
}
.hero__slider-v4 [data-animate=top] {
  transform: translate3d(0, -50px, 0);
}
.hero__slider-v4 [data-animate=bottom] {
  transform: translate3d(0, 50px, 0);
}

.sanitary__slider-content-wrapper {
  width: 51%;
  --p: 120px;
  height: 100%;
  aspect-ratio: 3/2;
  clip-path: polygon(var(--p) 0, 100% 0, calc(100% - var(--p)) 100%, 0 100%);
  background: #fff;
  padding: 40px;
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 100px;
  justify-content: center;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .sanitary__slider-content-wrapper {
    width: 80%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .sanitary__slider-content-wrapper {
    width: 100%;
    left: 10px;
  }
}
@media (max-width: 575.98px) {
  .sanitary__slider-content-wrapper {
    --p: 45px;
  }
}
.sanitary__slider-content-wrapper .sanitary__slider-content {
  padding: 0 85px;
}
@media (max-width: 575.98px) {
  .sanitary__slider-content-wrapper .sanitary__slider-content {
    padding: 0 15px;
  }
}
.sanitary__slider-content-wrapper .sanitary__slider-content .sanitary__sub-title span {
  display: block;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 8px;
  color: rgb(65, 70, 82);
}
@media (max-width: 575.98px) {
  .sanitary__slider-content-wrapper .sanitary__slider-content .sanitary__sub-title span {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 5px;
  }
}
.sanitary__slider-content-wrapper .sanitary__slider-content .sanitary__main-title h2 {
  font-size: 80px;
  line-height: 100px;
  color: rgb(17, 24, 39);
  font-weight: 400;
  margin-bottom: 16px;
}
.sanitary__slider-content-wrapper .sanitary__slider-content .sanitary__main-title h2 span {
  display: block;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .sanitary__slider-content-wrapper .sanitary__slider-content .sanitary__main-title h2 {
    font-size: 50px;
    line-height: 60px;
  }
}
@media (max-width: 575.98px) {
  .sanitary__slider-content-wrapper .sanitary__slider-content .sanitary__main-title h2 {
    font-size: 30px;
    line-height: 37px;
    margin-bottom: 8px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .sanitary__slider-content-wrapper .sanitary__slider-content .sanitary__main-title h2 {
    font-size: 55px;
    line-height: 78px;
  }
}
.sanitary__slider-content-wrapper .sanitary__slider-content p {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 40px;
  color: rgb(112, 116, 125);
}
@media (max-width: 575.98px) {
  .sanitary__slider-content-wrapper .sanitary__slider-content p {
    margin-bottom: 20px;
  }
}

.card-slider-wrpper {
  width: 50%;
  position: absolute;
  right: 0;
  bottom: 3px;
  background: rgba(17, 24, 39, 0.7) !important;
  z-index: 1;
  opacity: 1;
  height: 156px;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .card-slider-wrpper {
    position: relative;
    width: 100%;
    height: 110px;
  }
}
.card-slider-wrpper .white-shape-overlay {
  position: relative;
}
.card-slider-wrpper .white-shape-overlay::after {
  content: "";
  position: absolute;
  width: 109px;
  height: 156px;
  top: 0;
  left: 0;
  background: #fff;
  -webkit-clip-path: polygon(0 0, 100% 0, 0 100%);
  clip-path: polygon(0 0, 21% 0, 0 98%);
  z-index: 2;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .card-slider-wrpper .white-shape-overlay::after {
    clip-path: polygon(0 0, 19% 0, 0 70%);
  }
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sanitarySwiper .swiper-slide {
  opacity: 0.4;
}

.sanitarySwiper .swiper-slide-thumb-active {
  opacity: 1;
  border: 2px solid rgb(218, 161, 76);
}

.swiper-button-prev:after,
.swiper-button-next:after {
  display: none;
}

.card-next {
  width: 40px !important;
  height: 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgb(218, 161, 76);
  top: 83% !important;
  position: absolute !important;
  color: #fff !important;
}
.card-next i {
  font-size: 24px;
}

.swiper-button-next {
  right: var(--swiper-navigation-sides-offset, 10px) !important;
  left: auto;
}

.slider-mainbg {
  position: relative;
  display: inline-block;
  height: 800px;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .slider-mainbg {
    height: 550px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .slider-mainbg {
    height: 650px;
  }
}

.slider-mainbg::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 1 !important;
  cursor: pointer !important;
  pointer-events: auto !important;
}

.sanitary-slider-wrapper [data-animate] {
  opacity: 0;
  transition: all 1s ease-out;
}
.sanitary-slider-wrapper [data-animate=left] {
  transform: translate3d(50px, 0, 0);
}
.sanitary-slider-wrapper [data-animate=right] {
  transform: translate3d(-50px, 0, 0);
}
.sanitary-slider-wrapper [data-animate=top] {
  transform: translate3d(0, -50px, 0);
}
.sanitary-slider-wrapper [data-animate=bottom] {
  transform: translate3d(0, 50px, 0);
}

.sanitary-slider-wrapper .swiper-slide-active [data-animate] {
  opacity: 1;
  transform: none;
}

.horizontal_scroll-area {
  background: #E6EDFA;
  overflow: hidden;
}
.horizontal_scroll-area .swiper-container,
.horizontal_scroll-area .swiper-wrapper {
  display: flex;
  align-items: flex-end;
}
.horizontal_scroll-area .swiper-wrapper {
  display: flex;
  align-items: flex-end;
}
.horizontal_scroll-area .swiper-slide {
  display: flex;
  align-items: flex-end;
  width: 100% !important;
  margin-right: 8px;
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .horizontal_scroll-area .swiper-slide:last-child .banner-content-area {
    padding-left: 0;
  }
}
.horizontal_scroll-area .swiper-slide img {
  max-width: 780px;
  width: 100%;
  height: 673px;
  object-fit: contain;
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .horizontal_scroll-area .swiper-slide img {
    height: 450px;
  }
}
.horizontal_scroll-area .projectInfo {
  position: relative;
  margin: 14px 0 13px 0;
  z-index: 1;
}
.horizontal_scroll-area .projectInfo h1 {
  margin: 0;
}
.horizontal_scroll-area .projectInfo .category,
.horizontal_scroll-area .projectInfo .medium {
  text-transform: none;
  opacity: 0.4;
}
.horizontal_scroll-area .projectInfo .medium {
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 100px;
  font-style: italic;
  padding: 0px 7px 1px 7px;
}
.horizontal_scroll-area .thumbContainer {
  opacity: 1;
  transform: translateY(60%);
  display: flex;
  flex-direction: column;
  width: 100%;
}
.horizontal_scroll-area .thumbContainer h4 {
  margin: 12px 0 24px 0;
}
.horizontal_scroll-area .thumbContainer .banner-content-area {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 60px;
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .horizontal_scroll-area .thumbContainer .banner-content-area {
    justify-content: flex-start;
    padding-bottom: 30px;
    padding-left: 30px;
  }
}
.horizontal_scroll-area .thumbContainer .reverse-layout-control {
  flex-direction: row-reverse;
}
.horizontal_scroll-area .thumbContainer .reverse-layout-control .banner-content-area {
  justify-content: flex-start;
  padding-right: unset;
  padding-left: 60px;
}
.horizontal_scroll-area .fadeInSlide {
  animation-name: fadeInSlide;
  animation-duration: 1.5s;
  animation-timing-function: cubic-bezier(1, 0.055, 0.32, 1);
  animation-fill-mode: forwards;
}
@keyframes fadeInSlide {
  0% {
    transform: translateY(60%);
  }
  100% {
    transform: translateY(0);
  }
}

.hero__slider-v8 {
  /* Animation from left */
  /* Animation from right */
}
.hero__slider-v8 .homeo__content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .hero__slider-v8 .homeo__content {
    padding: 50px 0;
  }
}
.hero__slider-v8 .homeo__image {
  height: 100%;
  width: 100%;
  position: relative;
  display: flex;
  align-items: end;
}
.hero__slider-v8 .homeo__image img {
  width: 100%;
}
.hero__slider-v8 .homeo__row {
  position: relative;
  min-height: 700px;
  z-index: 10;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .hero__slider-v8 .homeo__row {
    min-height: 500px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .hero__slider-v8 .homeo__row {
    min-height: unset;
  }
}
.hero__slider-v8 .slide-in-left {
  animation: slideInLeft 1s ease forwards;
}
@keyframes slideInLeft {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.hero__slider-v8 .slide-in-right {
  animation: slideInRight 1s ease forwards;
}
@keyframes slideInRight {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.hero__slider-v8 .swiper-pagination {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: center;
  gap: 24px;
  z-index: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px) {
  .hero__slider-v8 .swiper-pagination {
    gap: 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .hero__slider-v8 .swiper-pagination {
    gap: 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .hero__slider-v8 .swiper-pagination {
    top: unset;
  }
}
.hero__slider-v8 .swiper-pagination-bullet {
  width: 4px;
  height: 60px;
  background-color: #D2EED4;
  border-radius: 2px;
  transition: background-color 0.3s ease;
  margin: 0 90px 0 0 !important;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px) {
  .hero__slider-v8 .swiper-pagination-bullet {
    height: 40px;
    margin: 0 50px 0 0 !important;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .hero__slider-v8 .swiper-pagination-bullet {
    height: 30px;
    margin: 0 30px 0 0 !important;
  }
}
.hero__slider-v8 .swiper-pagination-bullet-active {
  background-color: var(--st-theme-primary);
}
.hero__slider-v8 .swiper-pagination-bullet:not(:last-child)::after {
  display: none;
}

.best__product-category .category-1 {
  background-color: #E5E6ED !important;
}
.best__product-category .category-2 {
  background-color: #FFEBE5 !important;
}
.best__product-category .category-3 {
  background-color: #EFEEEE !important;
}
.best__product-category .product-category {
  row-gap: 30px;
}
.best__product-category .category {
  overflow: hidden;
  height: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .best__product-category .category {
    height: 320px;
  }
}
.best__product-category .category:hover .category__img img {
  transform: scale(1.1) translate(5px, 5px); /* Zooms in the image and translates it */
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .best__product-category .category .category__author {
    padding-left: 15px;
  }
}
.best__product-category .category .category__author h5 {
  font-size: 30px;
}
.best__product-category .category .category__author span {
  margin-bottom: 30px !important;
}
.best__product-category .category .category__author .count__products {
  bottom: -90px;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 1200px) and (max-width: 1399px), (max-width: 575.98px) {
  .best__product-category .category .category__author .count__products {
    bottom: -40px;
  }
}
.best__product-category .category .category__author .count__products a {
  display: flex;
  align-items: center;
  font-size: 18px;
  line-height: 27px;
  font-weight: 600;
  color: var(--st-heading-primary);
}
.best__product-category .category .category__author .count__products a img {
  margin-right: 8px;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 1200px) and (max-width: 1399px), (max-width: 575.98px) {
  .best__product-category .category .category__author .count__products a {
    font-size: 14px;
  }
}
.best__product-category .category .category__img {
  height: 100%;
}
.best__product-category .category .category__img img {
  transition: transform 0.4s ease, translate 0.4s ease;
  width: 100%;
  height: 100%;
}

.categories__wrapper .categories2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}
.categories__wrapper .categories2 .categories2__img img {
  border-radius: 198px;
  max-width: 220px;
  width: 100%;
  height: 320px;
  object-fit: cover;
  background-color: #EFEEEE;
}
.categories__wrapper .categories2 .categories2__content {
  flex-direction: column;
  display: flex;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
  background: var(--st-common-white);
  justify-content: center;
  padding: 20px;
  border-radius: 5px;
  margin-top: -40px;
  width: 236px;
  height: 84px;
}
.categories__wrapper .categories2 .categories2__content h6 {
  font-size: 18px;
}
.categories__wrapper .categories2 .categories2__content span {
  font-size: 14px;
}
.categories__wrapper .categories2 .round__shape-image img {
  border-radius: 50%;
  max-width: unset;
  width: 256px;
  height: 256px;
  object-fit: cover;
}
@media (min-width: 1600px) and (max-width: 1780px) {
  .categories__wrapper .categories2 .round__shape-image img {
    width: 226px;
    height: 226px;
  }
}
@media (min-width: 1400px) and (max-width: 1600px) {
  .categories__wrapper .categories2 .round__shape-image img {
    width: 210px;
    height: 210px;
  }
}
@media (min-width: 992px) and (max-width: 1100px) {
  .categories__wrapper .categories2 .round__shape-image img {
    width: 230px;
    height: 230px;
  }
}
.categories__wrapper .categories2 .disable__box-shadow {
  box-shadow: unset;
  border-radius: unset;
}
.categories__wrapper .categories2 .enable__top-border {
  border-top: 1px solid #EDE5DF;
}

.social__engage .social__engage-wrapper {
  text-align: center;
}
.social__engage .social__engage-wrapper div {
  display: inline-block;
  overflow: hidden;
}
.social__engage .social__engage-wrapper div:hover img {
  transform: scale(1.1) translate(4px, 4px); /* Zooms in the image and translates it */
}
.social__engage .social__engage-wrapper img {
  width: 100%;
  height: 350px;
  transition: transform 0.4s ease, translate 0.4s ease; /* Smooth transition for both scale and translate */
}

.category_v5 {
  position: relative;
}
.category_v5 .category-carrousel {
  position: relative;
}
.category_v5 .category-carrousel::after {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 100%;
  border-bottom: 1px solid var(--st-theme-2);
}
.category_v5 .category-carrousel::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 100%;
  height: 100%;
  border-top: 1px solid var(--st-theme-2);
}
.category_v5 .category-container .cat__5-img {
  text-align: center;
}
.category_v5 .category-container .cat__5-img a {
  display: flex;
  justify-content: center;
}
.category_v5 .category-container .cat__5-img img {
  max-width: 60px;
  width: 100%;
  height: 60px;
  object-fit: contain;
  margin-bottom: 12px;
}
.category_v5 .category-container .category__5-wrapper {
  padding: 32px;
  border-right: 1px solid var(--st-theme-2);
}
.category_v5 .category-container .category__5-wrapper:first-child {
  border-left: 1px solid var(--st-theme-2);
}
.category_v5 .category-container .cat__5-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.category_v5 .category-container .cat__5-info h6 {
  color: var(--st-theme-1);
  margin: 0;
}
.category_v5 .category-container .cat__5-info span {
  color: var(--st-grey-2);
  font-size: 12px;
  line-height: 16px;
}
.category_v5 .swiper-button-next, .category_v5 .swiper-button-prev {
  height: 24px;
  width: 24px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1019607843);
  background: var(--st-common-white);
  display: flex !important;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.category_v5 .swiper-button-next::after, .category_v5 .swiper-button-prev::after {
  color: var(--st-theme-1);
  font-size: 10px;
  font-weight: 900;
}
.category_v5 .swiper-button-prev {
  left: 5px;
}
.category_v5 .swiper-button-next {
  right: 5px !important;
}
.category_v5 .buttom__wrapper {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .category_v5 .buttom__wrapper {
    margin-top: 30px;
  }
}
.category_v5 .buttom__wrapper .equipment__btn {
  border: 1px solid var(--st-theme-1);
  background: var(--st-common-white);
  color: var(--st-theme-1);
}
.category_v5 .buttom__wrapper .equipment__btn::after {
  background: var(--st-theme-1);
}
.category_v5 .buttom__wrapper .equipment__btn i {
  color: var(--st-common-white);
}
.category_v5 .buttom__wrapper .equipment__btn:hover {
  color: var(--st-common-white);
}

:root {
  /**
  @font family declaration
  */
  --st-ff-body: 'Poppins', sans-serif;
  --st-ff-heading: 'Poppins', sans-serif;
  --st-ff-p: 'Poppins', sans-serif;
  --st-ff-menu: 'Poppins', sans-serif;
  --st-ff-button: 'Poppins', sans-serif;
  --st-ff-fontawesome: "Font Awesome 6 Pro";
  /**
  @color declaration
  */
  --st-common-white: #ffffff;
  --st-common-black: #000;
  --st-common-black2: #111827;
  --st-common-star: #fdb022;
  --st-heading-primary: #002366;
  --st-grey-1: #70747D;
  --st-grey-2: #414652;
  --st-text-body: #70747D;
  --st-text-1: #70747D;
  --st-text-top-header: #f5ba68;
  --st-text-top-header-hover: #f04a00;
  --st-text-menu: #ffffff;
  --st-text-menu-hover: #f04a00;
  --st-text-link: #f04a00;
  --st-text-link-hover: #002366;
  --st-text-button: #ffffff;
  --st-text-btn-hover: #f04a00;
  --st-text-price: #a0a3a9;
  --st-text-sale-price: #F04A00;
  --st-text-topmenu: #F2F4F7;
  --st-text-topmenu-hover: #70747d;
  --st-text-stock: #5fa745;
  --st-text-onsale: #70747d;
  --st-text-rating: #f04a00;
  --st-theme-1: #F04A00;
  --st-theme-2: #002366;
  --st-theme-primary: #f04a00;
  --st-theme-secondery: #002366;
  --st-theme-top-header: #111827;
  --st-theme-button: #f04a00;
  --st-theme-btn-hover: #ffffff;
  --st-theme-onsale: #ffffff;
  --st-border-1: #000;
  --st-border-button: #F04A00;
  --st-border-btn-hover: #F04A00;
  /**
  @font weight declaration
  */
  --st-fw-normal: normal;
  --st-fw-elight: 200;
  --st-fw-light: 300;
  --st-fw-regular: 400;
  --st-fw-medium: 500;
  --st-fw-sbold: 600;
  --st-fw-bold: 700;
  --st-fw-ebold: 800;
  --st-fw-black: 900;
  --st-fw-heading: 600;
  --st-fw-button: 600;
  --st-fw-menu: 500;
  /**
  @font size declaration
  */
  --st-fz-body: 18px;
  --st-fz-p: 18px;
  --st-fz-h1: 80px;
  --st-fz-h2: 60px;
  --st-fz-h3: 48px;
  --st-fz-h4: 32px;
  --st-fz-h5: 24px;
  --st-fz-h6: 20px;
  --st-fz-button: 18px;
  --st-fz-menu: 18px;
  --st-fz-mob-h1: 48px;
  --st-fz-mob-h2: 38px;
  --st-fz-mob-h3: 28px;
  --st-fz-mob-h4: 24px;
  --st-fz-mob-h5: 22px;
  --st-fz-mob-h6: 20px;
  --st-fz-tab-body: 18px;
  --st-fz-tab-h1: 65px;
  --st-fz-tab-h2: 50px;
  --st-fz-tab-h3: 46px;
  --st-fz-tab-h4: 42px;
  --st-fz-tab-h5: 34px;
  --st-fz-tab-h6: 30px;
  /**
  @line height declaration
  */
  --st-lh-body: 20px;
  --st-lh-h1: 90px;
  --st-lh-h2: 70px;
  --st-lh-h3: 58px;
  --st-lh-h4: 42px;
  --st-lh-h5: 34px;
  --st-lh-h6: 30px;
  --st-lh-button: 28px;
  --st-lh-h1-tab: 75px;
  --st-lh-h2-tab: 60px;
  --st-lh-h3-tab: 48px;
  --st-lh-h4-tab: 38px;
  --st-lh-h5-tab: 34px;
  --st-lh-h6-tab: 28px;
  --st-lh-h1-mob: 58px;
  --st-lh-h2-mob: 48px;
  --st-lh-h3-mob: 34px;
  --st-lh-h4-mob: 32px;
  --st-lh-h5-mob: 30px;
  --st-lh-h6-mob: 24px;
}

.f__product-img {
  border-radius: 8px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.f__product-img:hover {
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
}
.f__product-img:hover img {
  transform: scale(0.9) translate(4px, 4px);
}
.f__product-img img {
  transition: transform 0.4s ease, translate 0.4s ease;
}

.f__product {
  border-radius: 10px;
}

.product__carousel .swiper-button-next, .product__carousel .swiper-button-prev {
  display: block;
}
.product__carousel .f__product-img img {
  height: 1022px;
  object-fit: cover;
}
@media (max-width: 576px) {
  .product__carousel .f__product-img img {
    height: 450px;
  }
}
@media (max-width: 767px) {
  .product__carousel .f__product-img img {
    height: 680px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .product__carousel .f__product-img img {
    height: 700px;
  }
}
.product__carousel .swiper-button-next {
  right: 25px !important;
}
.product__carousel .swiper-button-next, .product__carousel .swiper-button-prev {
  display: block;
}
.product__carousel .swiper-button-next i, .product__carousel .swiper-button-prev i {
  font-size: 20px;
  height: 40px;
  width: 40px;
  color: var(--st-theme-1);
  outline: 1px dashed var(--st-theme-1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
}
.product__carousel .swiper-button-next::after, .product__carousel .swiper-button-prev::after {
  display: none;
}

.f__product-img {
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.f__product-img:hover {
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}
.f__product-img:hover img {
  transform: scale(0.9) translate(5px, 5px);
}
@media (min-width: 1400px) and (max-width: 1499px) {
  .f__product-img {
    max-height: 400px;
    height: 100%;
  }
}
@media (min-width: 992px) and (max-width: 1150px) {
  .f__product-img {
    max-height: 350px;
    height: 100%;
  }
}
@media (max-width: 375px) {
  .f__product-img {
    max-height: 350px;
    height: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px) {
  .f__product-img {
    max-height: 350px;
    height: 100%;
  }
}
.f__product-img img {
  width: 100%;
  transition: transform 0.4s ease, translate 0.4s ease;
}
@media (min-width: 1400px) and (max-width: 1499px) {
  .f__product-img img {
    max-height: 400px;
    height: 100%;
  }
}
@media (min-width: 992px) and (max-width: 1150px) {
  .f__product-img img {
    max-height: 350px;
    height: auto !important;
  }
}
@media (max-width: 375px) {
  .f__product-img img {
    max-height: 350px;
    height: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px) {
  .f__product-img img {
    max-height: 350px;
    height: 100%;
  }
}

.list__product-content .featured__author {
  justify-content: space-between;
  padding-top: 5px;
}
.list__product-content .featured__author .f__p-price {
  display: flex;
}
.list__product-content .featured__author .f__p-price .old__price {
  padding-right: 10px;
}

.color-options li {
  margin-right: 5px;
  border-radius: 5px;
}
.color-options li a {
  width: 16px;
  height: 16px;
  list-style: none;
  margin: 2px;
  cursor: pointer;
  display: block;
  border-radius: 2px;
}
.color-options .list__color {
  margin-bottom: 16px;
}
.color-options .active__border {
  border-style: solid;
  border-width: 1px;
}

.single-product .featured__author {
  padding-top: 10px;
}

.featured__author {
  justify-content: space-between;
  padding-top: 5px;
}
.featured__author .f__p-content span {
  font-size: 14px;
}
.featured__author .f__p-content h6 {
  font-size: 18px;
}
.featured__author .f__p-price .old__price {
  font-size: 14px;
  display: flex;
  justify-content: end;
  text-decoration: line-through;
}
.featured__author .f__p-price .current__price {
  font-size: 24px;
  color: var(--st-theme-1);
  font-weight: 600;
}
@media (max-width: 1024px) {
  .featured__author .f__p-price .current__price {
    font-size: 12px;
  }
}

.small__p-wrapper .f__product-small .f__product-img img {
  padding: 30px 0;
  height: 450px;
  object-fit: contain;
}
@media (max-width: 575.98px) {
  .small__p-wrapper .f__product-small .f__product-img img {
    padding: 5px 0;
    height: 250px;
    object-fit: contain;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px) {
  .small__p-wrapper .f__product-small .f__product-img img {
    padding: 15px 0;
    height: 280px;
    object-fit: contain;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .small__p-wrapper .f__product-small .f__product-img img {
    padding: 20px 0;
    height: 350px;
    object-fit: contain;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .small__p-wrapper .f__product-small .f__product-img img {
    padding: 20px 0;
    height: 350px;
    object-fit: contain;
  }
}

.f__product-1 {
  background: #EFE8E3;
}

.f__product-2 {
  background: #FAF6E5;
}

.f__product-3 {
  background: #FFE8F1;
}

.f__product-4 {
  background: #E6F1F2;
}

.f__product-5 {
  background: #E9F0FF;
}

.f__product-6 {
  background: #FFEDEF;
}

.bp-1 {
  background: #FFE8F1;
}

.bp-2 {
  background: #FBF4D5;
}

.bp-3 {
  background: #E6F1F2;
}

.bp-4 {
  background: #EFE8E3;
}

.bp-5 {
  background: #D9EDFF;
}

.bp-6 {
  background: #FFF2EB;
}

.bp-7 {
  background: #EDF7F5;
}

.bp-8 {
  background: #FFE8F1;
}

.bp-9 {
  background: #DFF3FF;
  background: #F8F8F8;
}

.swiper-button-next {
  right: 33px !important;
}

:root {
  /**
  @font family declaration
  */
  --st-ff-body: 'Poppins', sans-serif;
  --st-ff-heading: 'Poppins', sans-serif;
  --st-ff-p: 'Poppins', sans-serif;
  --st-ff-menu: 'Poppins', sans-serif;
  --st-ff-button: 'Poppins', sans-serif;
  --st-ff-fontawesome: "Font Awesome 6 Pro";
  /**
  @color declaration
  */
  --st-common-white: #ffffff;
  --st-common-black: #000;
  --st-common-black2: #111827;
  --st-common-star: #fdb022;
  --st-heading-primary: #002366;
  --st-grey-1: #70747D;
  --st-grey-2: #414652;
  --st-text-body: #70747D;
  --st-text-1: #70747D;
  --st-text-top-header: #f5ba68;
  --st-text-top-header-hover: #f04a00;
  --st-text-menu: #ffffff;
  --st-text-menu-hover: #f04a00;
  --st-text-link: #f04a00;
  --st-text-link-hover: #002366;
  --st-text-button: #ffffff;
  --st-text-btn-hover: #f04a00;
  --st-text-price: #a0a3a9;
  --st-text-sale-price: #F04A00;
  --st-text-topmenu: #F2F4F7;
  --st-text-topmenu-hover: #70747d;
  --st-text-stock: #5fa745;
  --st-text-onsale: #70747d;
  --st-text-rating: #f04a00;
  --st-theme-1: #F04A00;
  --st-theme-2: #002366;
  --st-theme-primary: #f04a00;
  --st-theme-secondery: #002366;
  --st-theme-top-header: #111827;
  --st-theme-button: #f04a00;
  --st-theme-btn-hover: #ffffff;
  --st-theme-onsale: #ffffff;
  --st-border-1: #000;
  --st-border-button: #F04A00;
  --st-border-btn-hover: #F04A00;
  /**
  @font weight declaration
  */
  --st-fw-normal: normal;
  --st-fw-elight: 200;
  --st-fw-light: 300;
  --st-fw-regular: 400;
  --st-fw-medium: 500;
  --st-fw-sbold: 600;
  --st-fw-bold: 700;
  --st-fw-ebold: 800;
  --st-fw-black: 900;
  --st-fw-heading: 600;
  --st-fw-button: 600;
  --st-fw-menu: 500;
  /**
  @font size declaration
  */
  --st-fz-body: 18px;
  --st-fz-p: 18px;
  --st-fz-h1: 80px;
  --st-fz-h2: 60px;
  --st-fz-h3: 48px;
  --st-fz-h4: 32px;
  --st-fz-h5: 24px;
  --st-fz-h6: 20px;
  --st-fz-button: 18px;
  --st-fz-menu: 18px;
  --st-fz-mob-h1: 48px;
  --st-fz-mob-h2: 38px;
  --st-fz-mob-h3: 28px;
  --st-fz-mob-h4: 24px;
  --st-fz-mob-h5: 22px;
  --st-fz-mob-h6: 20px;
  --st-fz-tab-body: 18px;
  --st-fz-tab-h1: 65px;
  --st-fz-tab-h2: 50px;
  --st-fz-tab-h3: 46px;
  --st-fz-tab-h4: 42px;
  --st-fz-tab-h5: 34px;
  --st-fz-tab-h6: 30px;
  /**
  @line height declaration
  */
  --st-lh-body: 20px;
  --st-lh-h1: 90px;
  --st-lh-h2: 70px;
  --st-lh-h3: 58px;
  --st-lh-h4: 42px;
  --st-lh-h5: 34px;
  --st-lh-h6: 30px;
  --st-lh-button: 28px;
  --st-lh-h1-tab: 75px;
  --st-lh-h2-tab: 60px;
  --st-lh-h3-tab: 48px;
  --st-lh-h4-tab: 38px;
  --st-lh-h5-tab: 34px;
  --st-lh-h6-tab: 28px;
  --st-lh-h1-mob: 58px;
  --st-lh-h2-mob: 48px;
  --st-lh-h3-mob: 34px;
  --st-lh-h4-mob: 32px;
  --st-lh-h5-mob: 30px;
  --st-lh-h6-mob: 24px;
}

.blog-show .author {
  display: flex;
  align-items: center;
  gap: 5px;
}
.blog-show .author__name {
  font-size: 14px;
}

@media (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px), only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .blog-post {
    margin-bottom: 30px;
  }
}
.blog-post .blog__img {
  border-radius: 12px;
  overflow: hidden;
}
.blog-post .blog__img:hover img {
  transform: scale(1.1) translate(4px, 4px);
  border-radius: 12px;
}
.blog-post .blog__img img {
  transition: transform 1s ease, translate 1s ease;
  border-radius: 12px;
}
.blog-post .blog__author {
  margin-top: 20px;
  margin-bottom: 10px;
}
@media (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px), only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .blog-post .blog__author {
    margin-top: 5px;
  }
}
.blog-post .blog__author a {
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 33px;
}
.blog-post .blog__author a img {
  margin-right: 10px;
}
@media (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px), only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 1400px) and (max-width: 1600px) {
  .blog-post .blog__author a img {
    margin-left: 5px;
    margin-right: 5px;
  }
}
.blog-post .small__blog-author {
  margin-top: 0 !important;
}
@media (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px), only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .blog-post .small__blog-author h4 {
    margin-top: 15px;
  }
}
.blog-post .small__blog-author .author {
  display: flex;
  align-items: center;
  gap: 5px;
}
.blog-post .small__blog-author .author img {
  width: 5px;
  height: 5px;
}
.blog-post h4 {
  transition: color 0.4s ease-in-out;
}
@media (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px), only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .blog-post h4 {
    font-size: 25px;
    line-height: 40px;
  }
}
.blog-post h4:hover {
  color: var(--st-theme-1);
}

.blog-meta {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
}
.blog-meta span {
  font-size: 14px;
  line-height: 33px;
}
.blog-meta .author img, .blog-meta .author a {
  display: inline;
}

.blog__views img {
  width: 16px;
}

.main__title {
  text-transform: capitalize;
}

@media (max-width: 575.98px) {
  .f__product-small {
    margin-bottom: 30px;
  }
}

.blog-show .blog__author {
  flex-direction: column !important;
  align-items: start !important;
}
.small__p-wrapper {
  margin-bottom: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1601px) and (max-width: 1700px) {
  .small__p-wrapper {
    margin-bottom: 30px;
  }
}

.blog__v2-wrapper .blog__v2 .blog__img {
  position: relative;
}
.blog__v2-wrapper .blog__v2 .blog__img img {
  height: 444px;
  object-fit: cover;
  border-radius: 12px;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .blog__v2-wrapper .blog__v2 .blog__img img {
    max-width: 552px;
    width: 100%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .blog__v2-wrapper .blog__v2 .blog__img img {
    height: 700px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .blog__v2-wrapper .blog__v2 .blog__img img {
    height: 232px;
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .blog__v2-wrapper .blog__v2 .blog__img img {
    width: 100%;
  }
}
.blog__v2-wrapper .blog__v2 .blog__img .blogimg__content {
  position: absolute;
  background-color: #fff;
  bottom: -55px;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  padding: 40px;
  left: 150px;
}
@media (max-width: 575.98px) {
  .blog__v2-wrapper .blog__v2 .blog__img .blogimg__content {
    left: 0px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .blog__v2-wrapper .blog__v2 .blog__img .blogimg__content {
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .blog__v2-wrapper .blog__v2 .blog__img .blogimg__content {
    position: unset;
    margin-top: 30px;
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .blog__v2-wrapper .blog__v2 .blog__img .blogimg__content {
    left: 0px;
    bottom: -100px;
  }
}
@media (min-width: 992px) and (max-width: 1080px) {
  .blog__v2-wrapper .blog__v2 .blog__img .blogimg__content {
    left: 0px;
  }
}
.blog__v2-wrapper .blog__v2 .blog__img .blogimg__content .publish__details {
  margin-bottom: 12px;
}
@media (max-width: 420px) {
  .blog__v2-wrapper .blog__v2 .blog__img .blogimg__content .publish__details {
    flex-direction: column;
    align-items: flex-start !important;
  }
}
.blog__v2-wrapper .blog__v2 .blog__img .blogimg__content .publish__details .date {
  color: #70747D;
}
.blog__v2-wrapper .blog__v2 .blog__img .blogimg__content .publish__details .date i {
  margin-right: 10px;
}
.blog__v2-wrapper .blog__v2 .blog__img .blogimg__content .publish__details .by__admin {
  color: #70747D;
  margin-left: 30px;
}
.blog__v2-wrapper .blog__v2 .blog__img .blogimg__content .publish__details .by__admin svg {
  margin-right: 10px;
}
@media (max-width: 420px) {
  .blog__v2-wrapper .blog__v2 .blog__img .blogimg__content .publish__details .by__admin {
    margin-left: 0 !important;
  }
}
.blog__v2-wrapper .blog__v2 .blog__img .blogimg__content h6 {
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
}
.blog__v2-wrapper .blog__v2 .blog__img .blogimg__content p {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 20px;
}
.blog__v2-wrapper .blog__v2 .blog__img .blogimg__content .simple__btn {
  cursor: pointer;
  color: var(--st-theme-1);
  font-weight: 600;
}
.blog__v2-wrapper .small__blog .blog__right {
  height: 232px;
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px), only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .blog__v2-wrapper .small__blog .blog__right {
    margin-bottom: 30px;
  }
}
.blog__v2-wrapper .small__blog img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 768px) and (max-width: 991.98px) {
  .blog__v2-wrapper .small__blog img {
    max-width: 404px;
    width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .blog__v2-wrapper .small__blog img {
    width: 100%;
  }
}
.blog__v2-wrapper .small__blog .blogimg__content-small {
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  padding: 40px;
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .blog__v2-wrapper .small__blog .blogimg__content-small {
    margin-left: 0px;
  }
}
@media (min-width: 992px) and (max-width: 1250px) {
  .blog__v2-wrapper .small__blog .blogimg__content-small {
    margin-left: 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .blog__v2-wrapper .small__blog .blogimg__content-small {
    margin-left: 0;
  }
}
.blog__v2-wrapper .small__blog .blogimg__content-small .publish__details {
  margin-bottom: 12px;
}
@media (max-width: 420px) {
  .blog__v2-wrapper .small__blog .blogimg__content-small .publish__details {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
}
.blog__v2-wrapper .small__blog .blogimg__content-small .publish__details .date {
  color: #70747D;
}
.blog__v2-wrapper .small__blog .blogimg__content-small .publish__details .date i {
  margin-right: 10px;
}
.blog__v2-wrapper .small__blog .blogimg__content-small .publish__details .by__admin {
  color: #70747D;
  margin-left: 30px;
}
.blog__v2-wrapper .small__blog .blogimg__content-small .publish__details .by__admin svg {
  margin-right: 10px;
}
.blog__v2-wrapper .small__blog .blogimg__content-small h6 {
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
  margin-bottom: 25px;
}
.blog__v2-wrapper .small__blog .blogimg__content-small .simple__btn {
  cursor: pointer;
  color: var(--st-theme-1);
  font-weight: 600;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .blog__v2-wrapper .right-small-blog {
    margin-top: 90px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .blog__v2-wrapper .right-small-blog {
    margin-top: 30px;
  }
}

@media (min-width: 1200px) and (max-width: 1453px) {
  .small__blog .publish__details {
    flex-direction: column;
  }
  .small__blog .by__admin {
    margin-left: 0px !important;
  }
}
@media (max-width: 420px) {
  .small__blog .by__admin {
    margin-left: 0 !important;
  }
}

.blog__v4_wrapper .blog__img {
  height: 430px;
}
@media (max-width: 575.98px) {
  .blog__v4_wrapper .blog__img {
    height: 360px;
  }
}
.blog__v4_wrapper .blog__img a {
  height: 100%;
}
.blog__v4_wrapper .blog__img a img {
  height: 100%;
  object-fit: cover;
}
.blog__v4_wrapper .blog__author {
  font-size: 18px;
  gap: 30px;
  padding: 20px 0 10px 0;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .blog__v4_wrapper .blog__author {
    gap: 20px;
    font-size: 16px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .blog__v4_wrapper .blog__author {
    gap: 15px;
    font-size: 14px;
  }
}
@media (max-width: 400px) {
  .blog__v4_wrapper .blog__author {
    gap: 10px;
  }
}
.blog__v4_wrapper .btn__medical {
  margin-top: 24px;
  background: var(--st-common-white);
  color: var(--st-theme-button);
}
.blog__v4_wrapper .btn__medical::after {
  background: var(--st-common-white);
}
.blog__v4_wrapper .btn__medical:hover {
  color: var(--st-common-black2);
}
.blog__v4_wrapper .btn__medical .btn__wrapper {
  display: flex;
}

.blog__v5_wrapper .blog__img__4 {
  height: 340px;
}
@media (max-width: 575.98px) {
  .blog__v5_wrapper .blog__img__4 {
    height: 260px;
  }
}
.blog__v5_wrapper .blog__img__4 a {
  height: 100%;
}
.blog__v5_wrapper .blog__img__4 a img {
  height: 100%;
  object-fit: cover;
}
.blog__v5_wrapper .blog-author-v5 {
  position: relative;
}
.blog__v5_wrapper .blog-author-v5 .blog__author {
  position: absolute;
  bottom: 40px;
  right: 0;
  background: #fff;
  padding: 16px 24px;
  font-size: 18px;
  gap: 30px;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .blog__v5_wrapper .blog-author-v5 .blog__author {
    gap: 20px;
    font-size: 16px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .blog__v5_wrapper .blog-author-v5 .blog__author {
    gap: 15px;
    font-size: 14px;
  }
}
@media (max-width: 575.98px), (max-width: 400px) {
  .blog__v5_wrapper .blog-author-v5 .blog__author {
    bottom: 0px;
    font-size: 12px;
    padding: 11px 11px;
    gap: 10px;
  }
}
.blog__v5_wrapper .blog__content .blog__heading {
  margin-top: 24px;
}
.blog__v5_wrapper .btn__sanitary {
  margin-top: 24px;
  background: var(--st-common-white);
  color: var(--st-theme-button);
}
.blog__v5_wrapper .btn__sanitary::after {
  background: var(--st-common-white);
}
.blog__v5_wrapper .btn__sanitary:hover {
  color: var(--st-common-black2);
}
.blog__v5_wrapper .btn__sanitary .btn__wrapper {
  display: flex;
}

:root {
  /**
  @font family declaration
  */
  --st-ff-body: 'Poppins', sans-serif;
  --st-ff-heading: 'Poppins', sans-serif;
  --st-ff-p: 'Poppins', sans-serif;
  --st-ff-menu: 'Poppins', sans-serif;
  --st-ff-button: 'Poppins', sans-serif;
  --st-ff-fontawesome: "Font Awesome 6 Pro";
  /**
  @color declaration
  */
  --st-common-white: #ffffff;
  --st-common-black: #000;
  --st-common-black2: #111827;
  --st-common-star: #fdb022;
  --st-heading-primary: #002366;
  --st-grey-1: #70747D;
  --st-grey-2: #414652;
  --st-text-body: #70747D;
  --st-text-1: #70747D;
  --st-text-top-header: #f5ba68;
  --st-text-top-header-hover: #f04a00;
  --st-text-menu: #ffffff;
  --st-text-menu-hover: #f04a00;
  --st-text-link: #f04a00;
  --st-text-link-hover: #002366;
  --st-text-button: #ffffff;
  --st-text-btn-hover: #f04a00;
  --st-text-price: #a0a3a9;
  --st-text-sale-price: #F04A00;
  --st-text-topmenu: #F2F4F7;
  --st-text-topmenu-hover: #70747d;
  --st-text-stock: #5fa745;
  --st-text-onsale: #70747d;
  --st-text-rating: #f04a00;
  --st-theme-1: #F04A00;
  --st-theme-2: #002366;
  --st-theme-primary: #f04a00;
  --st-theme-secondery: #002366;
  --st-theme-top-header: #111827;
  --st-theme-button: #f04a00;
  --st-theme-btn-hover: #ffffff;
  --st-theme-onsale: #ffffff;
  --st-border-1: #000;
  --st-border-button: #F04A00;
  --st-border-btn-hover: #F04A00;
  /**
  @font weight declaration
  */
  --st-fw-normal: normal;
  --st-fw-elight: 200;
  --st-fw-light: 300;
  --st-fw-regular: 400;
  --st-fw-medium: 500;
  --st-fw-sbold: 600;
  --st-fw-bold: 700;
  --st-fw-ebold: 800;
  --st-fw-black: 900;
  --st-fw-heading: 600;
  --st-fw-button: 600;
  --st-fw-menu: 500;
  /**
  @font size declaration
  */
  --st-fz-body: 18px;
  --st-fz-p: 18px;
  --st-fz-h1: 80px;
  --st-fz-h2: 60px;
  --st-fz-h3: 48px;
  --st-fz-h4: 32px;
  --st-fz-h5: 24px;
  --st-fz-h6: 20px;
  --st-fz-button: 18px;
  --st-fz-menu: 18px;
  --st-fz-mob-h1: 48px;
  --st-fz-mob-h2: 38px;
  --st-fz-mob-h3: 28px;
  --st-fz-mob-h4: 24px;
  --st-fz-mob-h5: 22px;
  --st-fz-mob-h6: 20px;
  --st-fz-tab-body: 18px;
  --st-fz-tab-h1: 65px;
  --st-fz-tab-h2: 50px;
  --st-fz-tab-h3: 46px;
  --st-fz-tab-h4: 42px;
  --st-fz-tab-h5: 34px;
  --st-fz-tab-h6: 30px;
  /**
  @line height declaration
  */
  --st-lh-body: 20px;
  --st-lh-h1: 90px;
  --st-lh-h2: 70px;
  --st-lh-h3: 58px;
  --st-lh-h4: 42px;
  --st-lh-h5: 34px;
  --st-lh-h6: 30px;
  --st-lh-button: 28px;
  --st-lh-h1-tab: 75px;
  --st-lh-h2-tab: 60px;
  --st-lh-h3-tab: 48px;
  --st-lh-h4-tab: 38px;
  --st-lh-h5-tab: 34px;
  --st-lh-h6-tab: 28px;
  --st-lh-h1-mob: 58px;
  --st-lh-h2-mob: 48px;
  --st-lh-h3-mob: 34px;
  --st-lh-h4-mob: 32px;
  --st-lh-h5-mob: 30px;
  --st-lh-h6-mob: 24px;
}

.best__selling-item .swiper-button-next, .best__selling-item .swiper-button-prev {
  display: block !important;
  height: 40px;
  width: 40px;
  color: var(--st-theme-1);
  outline: 1px dashed var(--st-theme-1);
  border-radius: 50%;
  display: flex !important;
  justify-content: center;
  align-items: center;
  background-color: #fff;
}
.best__selling-item .swiper-button-next i, .best__selling-item .swiper-button-prev i {
  font-size: 20px;
}
.best__selling-item .swiper-button-next::after, .best__selling-item .swiper-button-prev::after {
  display: none;
}
.best__selling-item .selling__wrapper {
  border: 3px solid #F8F8F8;
  border-radius: 12px;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .best__selling-item .selling__wrapper {
    margin-bottom: 40px;
  }
}
.best__selling-item .selling__wrapper .swipper__btn {
  right: 20px;
  top: 70px;
}
.best__selling-item .selling__wrapper .swipper__btn .swiper-button-prev {
  left: -125px;
  position: absolute;
}
.best__selling-item .selling__wrapper h4 {
  font-size: 30px;
  line-height: 45px;
  background: #F8F8F8;
  padding: 44px 20px;
  border-radius: 12px;
  margin-bottom: 30px;
}
.best__selling-item .selling__wrapper .b__product {
  width: 95%;
  margin: 15px auto;
  background: #F8F8F8;
  border-radius: 12px;
  border: 1px solid var(--st-common-white);
  transition: border-color 0.5s ease, color 0.5s ease;
  grid-template-columns: 1.5fr 2.5fr;
  display: grid;
}
.best__selling-item .selling__wrapper .b__product a {
  width: 100%;
}
.best__selling-item .selling__wrapper .b__product:hover {
  border-color: rgba(243, 97, 39, 0.244);
}
.best__selling-item .selling__wrapper .b__product:hover .b__product-img img {
  transform: scale(1.1) translate(4px, 4px); /* Zooms in the image and translates it */
}
.best__selling-item .selling__wrapper .b__product .b__product-img {
  display: flex;
  align-items: center;
  border-radius: 12px 0 0 12px;
  overflow: hidden;
}
.best__selling-item .selling__wrapper .b__product .b__product-img img {
  width: 100%;
  transition: transform 0.4s ease, translate 0.4s ease; /* Smooth transition for both scale and translate */
}
.best__selling-item .selling__wrapper .b__product .b__product-content {
  padding: 10px 15px;
}
.best__selling-item .selling__wrapper .b__product .b__product-content h6 {
  font-size: 18px;
  margin: 0;
  padding-bottom: 7px !important;
}
.best__selling-item .selling__wrapper .b__product .b__product-content span {
  font-size: 14px;
}
.best__selling-item .selling__wrapper .b__product .b__product-content p {
  padding-top: 12px !important;
  font-size: 18px;
  color: var(--st-theme-1);
  font-weight: 600;
  padding: 0;
  margin: 0;
}
.best__selling-item .selling__wrapper .b__product .b__product-content p span {
  font-size: 18px;
}

:root {
  /**
  @font family declaration
  */
  --st-ff-body: 'Poppins', sans-serif;
  --st-ff-heading: 'Poppins', sans-serif;
  --st-ff-p: 'Poppins', sans-serif;
  --st-ff-menu: 'Poppins', sans-serif;
  --st-ff-button: 'Poppins', sans-serif;
  --st-ff-fontawesome: "Font Awesome 6 Pro";
  /**
  @color declaration
  */
  --st-common-white: #ffffff;
  --st-common-black: #000;
  --st-common-black2: #111827;
  --st-common-star: #fdb022;
  --st-heading-primary: #002366;
  --st-grey-1: #70747D;
  --st-grey-2: #414652;
  --st-text-body: #70747D;
  --st-text-1: #70747D;
  --st-text-top-header: #f5ba68;
  --st-text-top-header-hover: #f04a00;
  --st-text-menu: #ffffff;
  --st-text-menu-hover: #f04a00;
  --st-text-link: #f04a00;
  --st-text-link-hover: #002366;
  --st-text-button: #ffffff;
  --st-text-btn-hover: #f04a00;
  --st-text-price: #a0a3a9;
  --st-text-sale-price: #F04A00;
  --st-text-topmenu: #F2F4F7;
  --st-text-topmenu-hover: #70747d;
  --st-text-stock: #5fa745;
  --st-text-onsale: #70747d;
  --st-text-rating: #f04a00;
  --st-theme-1: #F04A00;
  --st-theme-2: #002366;
  --st-theme-primary: #f04a00;
  --st-theme-secondery: #002366;
  --st-theme-top-header: #111827;
  --st-theme-button: #f04a00;
  --st-theme-btn-hover: #ffffff;
  --st-theme-onsale: #ffffff;
  --st-border-1: #000;
  --st-border-button: #F04A00;
  --st-border-btn-hover: #F04A00;
  /**
  @font weight declaration
  */
  --st-fw-normal: normal;
  --st-fw-elight: 200;
  --st-fw-light: 300;
  --st-fw-regular: 400;
  --st-fw-medium: 500;
  --st-fw-sbold: 600;
  --st-fw-bold: 700;
  --st-fw-ebold: 800;
  --st-fw-black: 900;
  --st-fw-heading: 600;
  --st-fw-button: 600;
  --st-fw-menu: 500;
  /**
  @font size declaration
  */
  --st-fz-body: 18px;
  --st-fz-p: 18px;
  --st-fz-h1: 80px;
  --st-fz-h2: 60px;
  --st-fz-h3: 48px;
  --st-fz-h4: 32px;
  --st-fz-h5: 24px;
  --st-fz-h6: 20px;
  --st-fz-button: 18px;
  --st-fz-menu: 18px;
  --st-fz-mob-h1: 48px;
  --st-fz-mob-h2: 38px;
  --st-fz-mob-h3: 28px;
  --st-fz-mob-h4: 24px;
  --st-fz-mob-h5: 22px;
  --st-fz-mob-h6: 20px;
  --st-fz-tab-body: 18px;
  --st-fz-tab-h1: 65px;
  --st-fz-tab-h2: 50px;
  --st-fz-tab-h3: 46px;
  --st-fz-tab-h4: 42px;
  --st-fz-tab-h5: 34px;
  --st-fz-tab-h6: 30px;
  /**
  @line height declaration
  */
  --st-lh-body: 20px;
  --st-lh-h1: 90px;
  --st-lh-h2: 70px;
  --st-lh-h3: 58px;
  --st-lh-h4: 42px;
  --st-lh-h5: 34px;
  --st-lh-h6: 30px;
  --st-lh-button: 28px;
  --st-lh-h1-tab: 75px;
  --st-lh-h2-tab: 60px;
  --st-lh-h3-tab: 48px;
  --st-lh-h4-tab: 38px;
  --st-lh-h5-tab: 34px;
  --st-lh-h6-tab: 28px;
  --st-lh-h1-mob: 58px;
  --st-lh-h2-mob: 48px;
  --st-lh-h3-mob: 34px;
  --st-lh-h4-mob: 32px;
  --st-lh-h5-mob: 30px;
  --st-lh-h6-mob: 24px;
}

@media (max-width: 400px) {
  .tab__area .main__title {
    font-size: 25px !important;
    line-height: 30px !important;
  }
}
.tab__area .tab__product .f__product-img {
  background: rgb(242, 244, 247);
  text-align: center;
  position: relative;
  border-radius: 12px;
}
.tab__area .tab__product .f__product-img:hover .overlay {
  opacity: 1;
}
.tab__area .tab__product .f__product-img img {
  border-radius: 12px;
  object-fit: contain;
}
.tab__area .tab__product .f__product-img .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(194, 202, 218, 0.4078431373);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.tab__area .tab__product .f__product-img .overlay .icons {
  position: absolute;
  bottom: 40px;
  display: flex;
}
.tab__area .tab__product .f__product-img .overlay .icons > a {
  display: block;
}
.tab__area .tab__product .f__product-img .overlay i {
  font-size: 24px;
  height: 50px;
  width: 50px;
  background: var(--st-common-white);
  vertical-align: middle;
  line-height: 50px;
  color: var(--st-theme-1);
  font-weight: 400;
  margin: 0 4px;
  border-radius: 3px;
  padding: 10px;
}
.tab__area .tab__product .f__product-img .overlay i:hover {
  background-color: var(--st-theme-1);
  color: var(--st-common-white);
}
.tab__area .tab__product .f__product-img .img-fluid {
  width: 90% !important;
}
.tab__area .swiper-button-next {
  display: block;
  right: 20px !important;
}
.tab__area .swiper-button-next i {
  font-size: 20px;
  height: 40px;
  width: 40px;
  color: var(--st-theme-1);
  outline: 1px dashed var(--st-theme-1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
}
.tab__area .swiper-button-next::after {
  display: none;
}
.tab__area .swiper-button-prev {
  display: block !important;
  left: 20px !important;
}
.tab__area .swiper-button-prev i {
  font-size: 20px;
  height: 40px;
  width: 40px;
  color: var(--st-theme-1);
  outline: 1px dashed var(--st-theme-1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
}
.tab__area .swiper-button-prev::after {
  display: none;
}

/* Style the tab */
.tab {
  right: 0;
  bottom: 80px;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .tab {
    left: 13px;
    bottom: -11px;
  }
}
@media (max-width: 575.98px) {
  .tab {
    bottom: 10px;
    left: 13px;
  }
}

/* Style the buttons that are used to open the tab content */
.tab button {
  color: var(--st-gray-1);
  font-size: 30px;
  line-height: 47px;
  font-weight: 500 !important;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  margin-right: 30px;
  border-bottom: 1px solid #ccc;
  padding: 0 !important;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 1400px) and (max-width: 1600px) {
  .tab button {
    font-size: 24px;
    padding: 0;
    margin-right: 20px;
  }
}
@media (max-width: 575.98px) {
  .tab button {
    font-size: 18px;
    margin-right: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), only screen and (min-width: 768px) and (max-width: 991.98px) {
  .tab button {
    margin-right: 15px;
  }
}
.tab button:last-child {
  margin-right: 0;
}

/* Create an active/current tablink class */
.tab button.active {
  border-bottom: 1px solid var(--st-theme-1);
  color: var(--st-theme-1);
}

#London {
  display: block;
}

.tabcontent {
  display: none;
  animation: fadeEffect 1s; /* Fading effect takes 1 second */
}

/* Go from zero to full opacity */
@keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .tabcontent {
    margin-top: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .tabcontent .tab__product {
    margin-bottom: 30px;
  }
}

@media (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .current__price {
    font-size: 18px !important;
  }
}

.homemade__tab-widget .homemade__tab-heading {
  display: flex;
  justify-content: center;
  align-items: center;
}
.homemade__tab-widget .heading__icon {
  height: 32px;
  width: 32px;
  border: 1px solid #E8E8EA;
  border-radius: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 0;
}
.homemade__tab-widget .heading__icon svg {
  width: 100%;
  height: 100%;
  align-self: center;
}
.homemade__tab-widget .heading__title {
  display: none;
  font-size: 24px;
  line-height: 32px;
  padding-left: 8px;
  font-family: var(--st-ff-heading);
}
.homemade__tab-widget .nav-tabs {
  border-bottom: 0;
}
.homemade__tab-widget .nav-item {
  margin-top: 2px;
}
.homemade__tab-widget .nav-item .nav-link {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  padding: 12px;
  margin-bottom: -2px;
}
.homemade__tab-widget .nav-item .active {
  border-color: #E8E8EA #E8E8EA #fff;
  border-width: 2px;
}
.homemade__tab-widget .nav-item .active .heading__title {
  display: block;
}
.homemade__tab-widget .homemade__tab-image {
  width: 100%;
  height: 400px;
  border: 2px solid #E8E8EA;
  border-radius: 8px 8px 8px 8px;
}
.homemade__tab-widget .homemade__tab-image a {
  width: 100%;
  height: 100%;
}
.homemade__tab-widget .homemade__tab-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px 8px 8px 8px;
}
.homemade__tab-widget .tab-pane:first-of-type.show .homemade__tab-image {
  border-radius: 0 8px 8px 8px;
}
.homemade__tab-widget .tab-pane:first-of-type.show .homemade__tab-image img {
  border-radius: 0 8px 8px 8px;
}

/**
 * Tailors - Product grid widget Design-2 Style
 */
.nttt__custom-product-widget-design-2 .product-grid {
  display: grid;
  gap: 40px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .nttt__custom-product-widget-design-2 .product-grid {
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .nttt__custom-product-widget-design-2 .product-grid {
    gap: 20px;
  }
}
.nttt__custom-product-widget-design-2 .product__grid-content .f__product-img {
  height: auto;
}
.nttt__custom-product-widget-design-2 .f__product {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
}
.nttt__custom-product-widget-design-2 .tab__area .tab__product .f__product-img {
  background: transparent;
}
.nttt__custom-product-widget-design-2 .tab__area .tab__product .f__product-img .overlay {
  background-color: transparent;
}
.nttt__custom-product-widget-design-2 .tab__area .tab__product .f__product-img .overlay .icons {
  bottom: 70px;
}
.nttt__custom-product-widget-design-2 .f__product-img {
  border: 1px solid #E9ECEA;
}
.nttt__custom-product-widget-design-2 .f__product-img .add__success-message {
  bottom: 50px;
}
.nttt__custom-product-widget-design-2 .f__product-img .overlay {
  z-index: 999;
}
.nttt__custom-product-widget-design-2 .f__product-img .overlay i {
  border: 1px solid #E9ECEA;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), (max-width: 991px) {
  .nttt__custom-product-widget-design-2 .f__product-img .overlay i {
    font-size: 20px !important;
    line-height: 42px !important;
    padding: 8px !important;
  }
}
.nttt__custom-product-widget-design-2 .f__product-img .overlay i:hover {
  border-color: var(--st-theme-1);
}
.nttt__custom-product-widget-design-2 .f__product-img .overlay .active__icon-cart {
  border-color: var(--st-theme-1);
}
.nttt__custom-product-widget-design-2 .f__product-img:hover {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}
.nttt__custom-product-widget-design-2 .f__product-img:hover img {
  -webkit-transform: unset;
  -moz-transform: unset;
  -ms-transform: unset;
  -o-transform: unset;
  transform: unset;
}
.nttt__custom-product-widget-design-2 .f__product-img:hover .sz-add-to-cart-button-2 {
  opacity: 1;
}
.nttt__custom-product-widget-design-2 .f__product-img .sz-add-to-cart-button-2 {
  position: absolute;
  z-index: 99;
  left: 0;
  bottom: 12px;
  width: 100%;
  padding: 0 12px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.nttt__custom-product-widget-design-2 .f__product-img .sz-add-to-cart-button-2 .icons {
  width: 100%;
}
.nttt__custom-product-widget-design-2 .f__product-img .sz-add-to-cart-button-2 .icons button {
  width: 100%;
}
.nttt__custom-product-widget-design-2 .f__product-img .sz-add-to-cart-button-2 a, .nttt__custom-product-widget-design-2 .f__product-img .sz-add-to-cart-button-2 .sz-add-to-cart-button {
  background: var(--st-theme-1);
  display: block;
  text-align: center;
  padding: 12px;
  width: 100%;
  font-family: var(--st-ff-button);
  font-size: var(--st-fz-button);
  color: var(--st-text-button);
  line-height: var(--st-lh-button);
  font-weight: var(--st-fw-button);
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), (max-width: 991px) {
  .nttt__custom-product-widget-design-2 .f__product-img .sz-add-to-cart-button-2 a, .nttt__custom-product-widget-design-2 .f__product-img .sz-add-to-cart-button-2 .sz-add-to-cart-button {
    padding: 10px;
  }
}
.nttt__custom-product-widget-design-2 .featured__author {
  border-style: solid;
  border-width: 1px;
  border-color: #E9ECEA;
  border-top: 0;
  padding: 24px 10px 16px 10px;
}
@media (max-width: 991px) {
  .nttt__custom-product-widget-design-2 .featured__author {
    padding-top: 18px;
  }
}
.nttt__custom-product-widget-design-2 .featured__author .product__review {
  padding-bottom: 5px;
}
.nttt__custom-product-widget-design-2 .featured__author .f__p-content {
  padding-top: 0;
  text-align: center;
}
.nttt__custom-product-widget-design-2 .featured__author .f__p-content > h5 {
  margin-bottom: 4px;
}
.nttt__custom-product-widget-design-2 .featured__author .f__p-content h6 {
  font-size: var(--st-fz-h6);
  font-weight: 600;
}
.nttt__custom-product-widget-design-2 .featured__author .f__p-category {
  margin-bottom: 4px;
}
.nttt__custom-product-widget-design-2 .featured__author .f__p-price {
  gap: 4px;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .nttt__custom-product-widget-design-2 .featured__author .f__p-price {
    padding-top: 2px;
  }
}
.nttt__custom-product-widget-design-2 .featured__author .f__p-price h5, .nttt__custom-product-widget-design-2 .featured__author .f__p-price h6 {
  margin-bottom: 0;
}
.nttt__custom-product-widget-design-2 .featured__author .original-price {
  color: var(--st-text-price);
}
.nttt__custom-product-widget-design-2 .featured__author .original-price span {
  font-size: unset;
}
.nttt__custom-product-widget-design-2 .featured__author .current-price {
  font-size: var(--st-fz-h5);
  font-weight: var(--st-fw-heading);
  color: var(--st-text-sale-price);
}
.nttt__custom-product-widget-design-2 .featured__author .current-price span {
  font-size: unset;
}
@media (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .nttt__custom-product-widget-design-2 .featured__author .current-price {
    font-size: 20px !important;
  }
}
.nttt__custom-product-widget-design-2 .color-options .list__color {
  margin-bottom: 10px;
}

:root {
  /**
  @font family declaration
  */
  --st-ff-body: 'Poppins', sans-serif;
  --st-ff-heading: 'Poppins', sans-serif;
  --st-ff-p: 'Poppins', sans-serif;
  --st-ff-menu: 'Poppins', sans-serif;
  --st-ff-button: 'Poppins', sans-serif;
  --st-ff-fontawesome: "Font Awesome 6 Pro";
  /**
  @color declaration
  */
  --st-common-white: #ffffff;
  --st-common-black: #000;
  --st-common-black2: #111827;
  --st-common-star: #fdb022;
  --st-heading-primary: #002366;
  --st-grey-1: #70747D;
  --st-grey-2: #414652;
  --st-text-body: #70747D;
  --st-text-1: #70747D;
  --st-text-top-header: #f5ba68;
  --st-text-top-header-hover: #f04a00;
  --st-text-menu: #ffffff;
  --st-text-menu-hover: #f04a00;
  --st-text-link: #f04a00;
  --st-text-link-hover: #002366;
  --st-text-button: #ffffff;
  --st-text-btn-hover: #f04a00;
  --st-text-price: #a0a3a9;
  --st-text-sale-price: #F04A00;
  --st-text-topmenu: #F2F4F7;
  --st-text-topmenu-hover: #70747d;
  --st-text-stock: #5fa745;
  --st-text-onsale: #70747d;
  --st-text-rating: #f04a00;
  --st-theme-1: #F04A00;
  --st-theme-2: #002366;
  --st-theme-primary: #f04a00;
  --st-theme-secondery: #002366;
  --st-theme-top-header: #111827;
  --st-theme-button: #f04a00;
  --st-theme-btn-hover: #ffffff;
  --st-theme-onsale: #ffffff;
  --st-border-1: #000;
  --st-border-button: #F04A00;
  --st-border-btn-hover: #F04A00;
  /**
  @font weight declaration
  */
  --st-fw-normal: normal;
  --st-fw-elight: 200;
  --st-fw-light: 300;
  --st-fw-regular: 400;
  --st-fw-medium: 500;
  --st-fw-sbold: 600;
  --st-fw-bold: 700;
  --st-fw-ebold: 800;
  --st-fw-black: 900;
  --st-fw-heading: 600;
  --st-fw-button: 600;
  --st-fw-menu: 500;
  /**
  @font size declaration
  */
  --st-fz-body: 18px;
  --st-fz-p: 18px;
  --st-fz-h1: 80px;
  --st-fz-h2: 60px;
  --st-fz-h3: 48px;
  --st-fz-h4: 32px;
  --st-fz-h5: 24px;
  --st-fz-h6: 20px;
  --st-fz-button: 18px;
  --st-fz-menu: 18px;
  --st-fz-mob-h1: 48px;
  --st-fz-mob-h2: 38px;
  --st-fz-mob-h3: 28px;
  --st-fz-mob-h4: 24px;
  --st-fz-mob-h5: 22px;
  --st-fz-mob-h6: 20px;
  --st-fz-tab-body: 18px;
  --st-fz-tab-h1: 65px;
  --st-fz-tab-h2: 50px;
  --st-fz-tab-h3: 46px;
  --st-fz-tab-h4: 42px;
  --st-fz-tab-h5: 34px;
  --st-fz-tab-h6: 30px;
  /**
  @line height declaration
  */
  --st-lh-body: 20px;
  --st-lh-h1: 90px;
  --st-lh-h2: 70px;
  --st-lh-h3: 58px;
  --st-lh-h4: 42px;
  --st-lh-h5: 34px;
  --st-lh-h6: 30px;
  --st-lh-button: 28px;
  --st-lh-h1-tab: 75px;
  --st-lh-h2-tab: 60px;
  --st-lh-h3-tab: 48px;
  --st-lh-h4-tab: 38px;
  --st-lh-h5-tab: 34px;
  --st-lh-h6-tab: 28px;
  --st-lh-h1-mob: 58px;
  --st-lh-h2-mob: 48px;
  --st-lh-h3-mob: 34px;
  --st-lh-h4-mob: 32px;
  --st-lh-h5-mob: 30px;
  --st-lh-h6-mob: 24px;
}

.shipping__info .container, .benariz__shipping-info .container {
  max-width: 90%;
}
.shipping__info .free__shipping, .benariz__shipping-info .free__shipping {
  justify-content: left;
  transition: border-color 0.5s ease, color 0.5s ease;
}
.shipping__info .free__shipping:hover, .benariz__shipping-info .free__shipping:hover {
  border-color: var(--st-theme-1);
}
.shipping__info .free__shipping .media-wrapper, .benariz__shipping-info .free__shipping .media-wrapper {
  flex: 0 0 auto;
}
.shipping__info .free__shipping .shipping__content a h6, .benariz__shipping-info .free__shipping .shipping__content a h6 {
  margin: 0;
}
.shipping__info .free__shipping .shipping__content p, .benariz__shipping-info .free__shipping .shipping__content p {
  font-size: 14px;
  margin: 0;
}

@media (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .cta__section {
    padding-bottom: 100px;
    padding-top: 35px;
  }
}
.cta__section h3 {
  color: var(--st-common-white);
}
@media (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px), only screen and (min-width: 768px) and (max-width: 991.98px) {
  .cta__section h3 {
    font-size: 40px;
    line-height: 50px;
    padding-top: 20px;
  }
}
@media (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .cta__section h3 {
    padding-top: 50px;
  }
}
.cta__section p {
  color: var(--st-common-white);
}

.subscribe__form-wrapper {
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
}

.cta__subscribe form {
  margin-top: 30px;
}
.cta__subscribe form input[type=email] {
  padding-left: 15px;
  padding-right: 185px;
  border-radius: 10px 15px 15px 10px;
  border: none;
  outline: none;
  height: 54px;
  width: 65%;
}
.cta__subscribe form input[type=email]::placeholder {
  color: var(--st-grey-1);
}
@media (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .cta__subscribe form input[type=email] {
    width: 60%;
  }
}
@media (max-width: 575.98px) {
  .cta__subscribe form input[type=email] {
    border-radius: 10px;
    padding-right: 15px;
  }
}
.cta__subscribe form button {
  width: unset;
  height: 54px;
  background: var(--st-theme-1);
  color: #fff;
  font-weight: 600;
  border: none;
  padding: 1px 30px 0 30px;
  border-radius: 0 10px 10px 0;
  outline: none;
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 575.98px) {
  .cta__subscribe form button {
    font-size: 16px;
    margin: 0;
    border-radius: 10px;
    position: relative;
    width: 100%;
  }
}

@media (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .cta__section_medical {
    padding-bottom: 200px;
    padding-top: 35px;
  }
}
.cta__section_medical h3 {
  color: var(--st-common-black);
}
@media (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px), only screen and (min-width: 768px) and (max-width: 991.98px) {
  .cta__section_medical h3 {
    font-size: 40px;
    line-height: 50px;
    padding-top: 20px;
  }
}
@media (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .cta__section_medical h3 {
    padding-top: 50px;
  }
}
.cta__section_medical p {
  color: var(--st-common-black);
}
.cta__section_medical form {
  margin-top: 30px;
}
.cta__section_medical form input[type=email] {
  width: 62%;
  border: 1px solid #CDDBF5;
  border-radius: 30px;
  margin-right: 19px;
  margin-bottom: 10px;
  padding: 0 15px;
  outline: none;
  height: 50px;
}
.cta__section_medical form input[type=email]::placeholder {
  color: var(--st-grey-1);
}
@media (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .cta__section_medical form input[type=email] {
    width: 100%;
  }
}
.cta__section_medical form button {
  background: var(--st-theme-1);
  color: #fff;
  font-weight: 600;
  border-radius: 999px;
  outline: none;
}
@media (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .cta__section_medical form button {
    padding: -1px;
    width: 100%;
  }
}

@media (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .el-section .medical__btn i {
    position: absolute;
    right: 12px;
    top: -4px;
  }
}

.social__events {
  width: 80%;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  position: absolute;
  right: 10%;
  background: #fff;
  padding: 30px 20px;
  margin-top: -35px;
  border-radius: 10px;
}
@media (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .social__events {
    margin-top: -140px;
  }
}
.social__events .social__icon-f nav ul {
  display: flex;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .social__events .social__icon-f nav ul {
    justify-content: center;
    margin-bottom: 25px;
  }
}
.social__events .social__icon-f nav ul li {
  margin: 0 15px;
  list-style: none;
}
@media (max-width: 575.98px) {
  .social__events .social__icon-f nav ul li {
    margin: 0 7px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px) {
  .social__events .social__icon-f nav ul li {
    margin: 0 10px;
  }
}
.social__events .social__icon-f nav ul li i {
  font-size: 30px;
  color: var(--st-heading-primary);
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #F2F4F7;
  border-radius: 50%;
  transition: background-color 0.3s ease-in, color 0.3s ease-in-out;
}
@media (max-width: 575.98px) {
  .social__events .social__icon-f nav ul li i {
    width: 30px;
    height: 30px;
    font-size: 24px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px) {
  .social__events .social__icon-f nav ul li i {
    width: 35px;
    height: 35px;
    font-size: 26px;
  }
}
.social__events .social__icon-f nav ul li i:hover {
  background: var(--st-theme-1);
  color: var(--st-common-white);
}
.social__events .footer__navigations ul {
  display: flex;
  justify-content: end;
  align-items: center;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .social__events .footer__navigations ul {
    justify-content: center;
  }
}
@media (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .social__events .footer__navigations ul {
    flex-direction: column;
  }
}
.social__events .footer__navigations ul li {
  list-style: none;
  padding-left: 27px;
}
@media (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .social__events .footer__navigations ul li {
    padding: 10px 0;
  }
}
.social__events .footer__navigations ul li a {
  color: #414652;
}
.social__events .footer__navigations ul li a:hover {
  color: var(--st-theme-1);
}
.social__events .footer__navigations ul li:last-child {
  margin-right: 20px;
}

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

:root {
  /**
  @font family declaration
  */
  --st-ff-body: 'Poppins', sans-serif;
  --st-ff-heading: 'Poppins', sans-serif;
  --st-ff-p: 'Poppins', sans-serif;
  --st-ff-menu: 'Poppins', sans-serif;
  --st-ff-button: 'Poppins', sans-serif;
  --st-ff-fontawesome: "Font Awesome 6 Pro";
  /**
  @color declaration
  */
  --st-common-white: #ffffff;
  --st-common-black: #000;
  --st-common-black2: #111827;
  --st-common-star: #fdb022;
  --st-heading-primary: #002366;
  --st-grey-1: #70747D;
  --st-grey-2: #414652;
  --st-text-body: #70747D;
  --st-text-1: #70747D;
  --st-text-top-header: #f5ba68;
  --st-text-top-header-hover: #f04a00;
  --st-text-menu: #ffffff;
  --st-text-menu-hover: #f04a00;
  --st-text-link: #f04a00;
  --st-text-link-hover: #002366;
  --st-text-button: #ffffff;
  --st-text-btn-hover: #f04a00;
  --st-text-price: #a0a3a9;
  --st-text-sale-price: #F04A00;
  --st-text-topmenu: #F2F4F7;
  --st-text-topmenu-hover: #70747d;
  --st-text-stock: #5fa745;
  --st-text-onsale: #70747d;
  --st-text-rating: #f04a00;
  --st-theme-1: #F04A00;
  --st-theme-2: #002366;
  --st-theme-primary: #f04a00;
  --st-theme-secondery: #002366;
  --st-theme-top-header: #111827;
  --st-theme-button: #f04a00;
  --st-theme-btn-hover: #ffffff;
  --st-theme-onsale: #ffffff;
  --st-border-1: #000;
  --st-border-button: #F04A00;
  --st-border-btn-hover: #F04A00;
  /**
  @font weight declaration
  */
  --st-fw-normal: normal;
  --st-fw-elight: 200;
  --st-fw-light: 300;
  --st-fw-regular: 400;
  --st-fw-medium: 500;
  --st-fw-sbold: 600;
  --st-fw-bold: 700;
  --st-fw-ebold: 800;
  --st-fw-black: 900;
  --st-fw-heading: 600;
  --st-fw-button: 600;
  --st-fw-menu: 500;
  /**
  @font size declaration
  */
  --st-fz-body: 18px;
  --st-fz-p: 18px;
  --st-fz-h1: 80px;
  --st-fz-h2: 60px;
  --st-fz-h3: 48px;
  --st-fz-h4: 32px;
  --st-fz-h5: 24px;
  --st-fz-h6: 20px;
  --st-fz-button: 18px;
  --st-fz-menu: 18px;
  --st-fz-mob-h1: 48px;
  --st-fz-mob-h2: 38px;
  --st-fz-mob-h3: 28px;
  --st-fz-mob-h4: 24px;
  --st-fz-mob-h5: 22px;
  --st-fz-mob-h6: 20px;
  --st-fz-tab-body: 18px;
  --st-fz-tab-h1: 65px;
  --st-fz-tab-h2: 50px;
  --st-fz-tab-h3: 46px;
  --st-fz-tab-h4: 42px;
  --st-fz-tab-h5: 34px;
  --st-fz-tab-h6: 30px;
  /**
  @line height declaration
  */
  --st-lh-body: 20px;
  --st-lh-h1: 90px;
  --st-lh-h2: 70px;
  --st-lh-h3: 58px;
  --st-lh-h4: 42px;
  --st-lh-h5: 34px;
  --st-lh-h6: 30px;
  --st-lh-button: 28px;
  --st-lh-h1-tab: 75px;
  --st-lh-h2-tab: 60px;
  --st-lh-h3-tab: 48px;
  --st-lh-h4-tab: 38px;
  --st-lh-h5-tab: 34px;
  --st-lh-h6-tab: 28px;
  --st-lh-h1-mob: 58px;
  --st-lh-h2-mob: 48px;
  --st-lh-h3-mob: 34px;
  --st-lh-h4-mob: 32px;
  --st-lh-h5-mob: 30px;
  --st-lh-h6-mob: 24px;
}

.offer__left .product-imgs {
  flex-direction: row-reverse;
  gap: 40px;
}
@media (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .offer__left .product-imgs {
    flex-direction: column;
    gap: 20px;
  }
  .offer__left .product-imgs .img-item {
    margin-bottom: 0;
  }
}
.offer__left .product-imgs .img-display {
  overflow: hidden;
  width: calc(100% - 200px);
}
@media (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .offer__left .product-imgs .img-display {
    width: 100%;
  }
}
.offer__left .product-imgs .img-display .img-showcase {
  display: flex;
  width: 100%;
  max-height: 848px;
  height: 100%;
  transition: all 0.5s ease;
  background: #FAFAFB;
  border-radius: 12px;
}
.offer__left .product-imgs .img-display .img-showcase img {
  width: 100%;
  height: auto;
  background: #FAFAFB;
  border-radius: 12px;
  object-fit: contain;
  aspect-ratio: 4/3;
}
@media (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .offer__left .product-imgs .img-display .img-showcase img {
    min-width: 100%;
  }
}
.offer__left .product-imgs .img-select {
  display: flex;
  flex-direction: column;
  max-width: 200px;
  width: 100%;
}
@media (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .offer__left .product-imgs .img-select {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-right: 0;
  }
}
.offer__left .product-imgs .img-select .img-item {
  width: 200px;
  height: 200px !important;
  display: flex;
  justify-content: center;
  background: #FAFAFB;
  border: none;
  align-items: center;
  margin-bottom: 40px;
  border-radius: 12px;
  padding: 15px;
}
@media (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .offer__left .product-imgs .img-select .img-item {
    margin-bottom: 0;
  }
}
.offer__left .product-imgs .img-select .img-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: contain;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .offer__left .product-imgs .img-select .img-item {
    height: 200px;
    width: 150px;
    object-fit: contain;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .offer__left .product-imgs .img-select .img-item {
    height: 150px !important;
    width: 150px !important;
    object-fit: contain;
  }
}
.offer__left .offer__content {
  background: #FAFAFB;
}
.offer__left .slider__prev,
.offer__left .slider__next {
  cursor: pointer;
  text-align: center;
  font-size: 14px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  position: absolute;
}
@media (min-width: 768px) {
  .offer__left .slider__prev,
  .offer__left .slider__next {
    left: 50%;
    transform: translateX(-50%);
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .offer__left .slider__prev,
  .offer__left .slider__next {
    top: 50%;
    transform: translateY(-50%);
  }
}
.offer__left .slider__prev i,
.offer__left .slider__next i {
  font-size: 28px;
  line-height: 32px;
  color: var(--st-heading-primary);
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .offer__left .slider__prev i,
  .offer__left .slider__next i {
    transform: rotate(-90deg);
  }
}
.offer__left .slider__next {
  bottom: 0;
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .offer__left .slider__next {
    right: 0;
  }
}
.offer__left .slider__prev:focus,
.offer__left .slider__next:focus {
  outline: none;
}
.offer__left .slider__thumbs {
  position: relative;
  height: 848px;
  overflow: hidden;
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .offer__left .slider__thumbs {
    height: unset;
  }
}
.offer__left .slider__thumbs .swiper-container {
  width: 100%;
  height: 100%;
}
.offer__left .slider__images {
  height: 400px;
}
.offer__left .slider__images .slider__image img {
  transition: 3s;
}
.offer__left .slider__images .slider__image:hover img {
  transform: scale(1.1);
}
.offer__left .slider__image {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
}
.offer__left .img-item img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 767.98px) {
  .offer__left .slider__images {
    width: 100%;
  }
  .offer__left .slider__prev,
  .offer__left .slider__next {
    height: auto;
    width: 32px;
  }
}

@media (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px), only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .offer__content {
    padding-left: 0;
  }
}
.offer__content span {
  font-size: 14px;
  padding-bottom: 10px;
  display: block;
}
.offer__content h4 {
  padding-bottom: 5px;
}
.offer__content .product__reviews {
  padding-bottom: 40px;
}
.offer__content .product__reviews i {
  color: #FDB022;
  margin-right: 5px;
}
.offer__content p {
  padding-bottom: 25px;
}
.offer__content .price {
  color: var(--st-theme-1);
  line-height: 0;
  margin-bottom: 72px;
}
.offer__content .counters {
  margin-bottom: 40px;
}
.offer__content .counters .count {
  width: 108px;
  height: 124px;
  border: 1px solid #E6E9F0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.offer__content .counters .count h3 {
  margin: 0;
}
.offer__content .add__cart-btn i {
  font-size: 30px;
  color: var(--st-theme-1);
}
.offer__content .add__cart-btn i:hover {
  color: var(--st-heaing-primary);
}

.img-item:nth-child(1),
.img-item:nth-child(2),
.img-item:nth-child(3) {
  margin-right: 0;
}

.img-item:hover {
  opacity: 0.8;
}

.offer__left img {
  width: 100%;
}

:root {
  /**
  @font family declaration
  */
  --st-ff-body: 'Poppins', sans-serif;
  --st-ff-heading: 'Poppins', sans-serif;
  --st-ff-p: 'Poppins', sans-serif;
  --st-ff-menu: 'Poppins', sans-serif;
  --st-ff-button: 'Poppins', sans-serif;
  --st-ff-fontawesome: "Font Awesome 6 Pro";
  /**
  @color declaration
  */
  --st-common-white: #ffffff;
  --st-common-black: #000;
  --st-common-black2: #111827;
  --st-common-star: #fdb022;
  --st-heading-primary: #002366;
  --st-grey-1: #70747D;
  --st-grey-2: #414652;
  --st-text-body: #70747D;
  --st-text-1: #70747D;
  --st-text-top-header: #f5ba68;
  --st-text-top-header-hover: #f04a00;
  --st-text-menu: #ffffff;
  --st-text-menu-hover: #f04a00;
  --st-text-link: #f04a00;
  --st-text-link-hover: #002366;
  --st-text-button: #ffffff;
  --st-text-btn-hover: #f04a00;
  --st-text-price: #a0a3a9;
  --st-text-sale-price: #F04A00;
  --st-text-topmenu: #F2F4F7;
  --st-text-topmenu-hover: #70747d;
  --st-text-stock: #5fa745;
  --st-text-onsale: #70747d;
  --st-text-rating: #f04a00;
  --st-theme-1: #F04A00;
  --st-theme-2: #002366;
  --st-theme-primary: #f04a00;
  --st-theme-secondery: #002366;
  --st-theme-top-header: #111827;
  --st-theme-button: #f04a00;
  --st-theme-btn-hover: #ffffff;
  --st-theme-onsale: #ffffff;
  --st-border-1: #000;
  --st-border-button: #F04A00;
  --st-border-btn-hover: #F04A00;
  /**
  @font weight declaration
  */
  --st-fw-normal: normal;
  --st-fw-elight: 200;
  --st-fw-light: 300;
  --st-fw-regular: 400;
  --st-fw-medium: 500;
  --st-fw-sbold: 600;
  --st-fw-bold: 700;
  --st-fw-ebold: 800;
  --st-fw-black: 900;
  --st-fw-heading: 600;
  --st-fw-button: 600;
  --st-fw-menu: 500;
  /**
  @font size declaration
  */
  --st-fz-body: 18px;
  --st-fz-p: 18px;
  --st-fz-h1: 80px;
  --st-fz-h2: 60px;
  --st-fz-h3: 48px;
  --st-fz-h4: 32px;
  --st-fz-h5: 24px;
  --st-fz-h6: 20px;
  --st-fz-button: 18px;
  --st-fz-menu: 18px;
  --st-fz-mob-h1: 48px;
  --st-fz-mob-h2: 38px;
  --st-fz-mob-h3: 28px;
  --st-fz-mob-h4: 24px;
  --st-fz-mob-h5: 22px;
  --st-fz-mob-h6: 20px;
  --st-fz-tab-body: 18px;
  --st-fz-tab-h1: 65px;
  --st-fz-tab-h2: 50px;
  --st-fz-tab-h3: 46px;
  --st-fz-tab-h4: 42px;
  --st-fz-tab-h5: 34px;
  --st-fz-tab-h6: 30px;
  /**
  @line height declaration
  */
  --st-lh-body: 20px;
  --st-lh-h1: 90px;
  --st-lh-h2: 70px;
  --st-lh-h3: 58px;
  --st-lh-h4: 42px;
  --st-lh-h5: 34px;
  --st-lh-h6: 30px;
  --st-lh-button: 28px;
  --st-lh-h1-tab: 75px;
  --st-lh-h2-tab: 60px;
  --st-lh-h3-tab: 48px;
  --st-lh-h4-tab: 38px;
  --st-lh-h5-tab: 34px;
  --st-lh-h6-tab: 28px;
  --st-lh-h1-mob: 58px;
  --st-lh-h2-mob: 48px;
  --st-lh-h3-mob: 34px;
  --st-lh-h4-mob: 32px;
  --st-lh-h5-mob: 30px;
  --st-lh-h6-mob: 24px;
}

footer {
  cursor: default;
}
footer .footer__area {
  width: 80%;
  margin: 0 auto;
  border-bottom: 1px solid #A0A3A9;
}
@media (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px), only screen and (min-width: 768px) and (max-width: 991.98px) {
  footer .footer__area {
    padding-top: 50px;
  }
}
@media (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px), only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 992px) and (max-width: 1199.98px) {
  footer .footer__area .footer__logo {
    padding-right: 0;
    margin-bottom: 30px;
  }
}
@media (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px), only screen and (min-width: 768px) and (max-width: 991.98px) {
  footer .footer__area .footer__nav {
    margin-bottom: 30px;
  }
}
footer .footer__area .footer__nav h6 {
  margin: 0;
}
footer .footer__area .footer__nav ul li {
  list-style: none;
  margin: 25px 0;
}
footer .footer__area .footer__nav ul li a {
  transition: color 0.3s ease-in-out !important;
}
footer .footer__area .footer__nav ul li a:hover {
  color: var(--st-theme-1);
}
@media (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px), only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 768px) and (max-width: 991.98px) {
  footer .footer__area .footer__contact {
    padding-left: 0;
  }
}
footer .footer__area .footer__contact li i {
  font-size: 18px;
  color: var(--st-theme-1);
  padding-right: 10px;
}
footer .copyright__section {
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
footer .copyright__section ul li {
  list-style: none;
  padding-left: 20px;
}
footer .copyright__section ul li img {
  width: 100%;
}

#page {
  overflow: hidden;
}

/* header css override */
.menu__items-inner-menu {
  display: none;
}

.main__menu ul li {
  padding: 16px 0;
}
.main__menu ul li .elementor {
  position: absolute;
  top: 70px;
  left: -25%;
  width: 70vw;
  z-index: 9999;
  background-color: #fff;
}
.main__menu ul li .elementor .elementor-widget-image a:after,
.main__menu ul li .elementor .elementor-widget-button a:after {
  background-color: transparent;
}
.main__menu ul li .elementor li {
  margin-bottom: 10px;
  padding: 0;
}
.main__menu ul li .elementor li:hover {
  color: var(--st-theme-1);
}
.main__menu ul li .elementor li a {
  color: black;
}
.main__menu ul li .elementor li a:after {
  background-color: transparent;
}
.main__menu ul li .fa-angle-down {
  font-weight: 400;
  margin-left: 5px;
  font-size: 16px;
}
.main__menu ul li a img {
  margin-top: -4px;
}

/* Show the mega menu when hovering over the main menu item */
.menu-item:hover .menu__items-inner-menu,
.menu-item .menu__items-inner-menu ul {
  display: block;
}

.woocommerce-pagination {
  text-align: center;
  padding: 25px 0;
}
.woocommerce-pagination ul {
  list-style: none;
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}
@media (max-width: 575.98px) {
  .woocommerce-pagination ul {
    gap: 15px;
  }
}
.woocommerce-pagination ul .prev-arrow {
  outline: 1px dashed var(--st-theme-1);
  outline-offset: 4px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  line-height: 40px;
}
@media (max-width: 575.98px) {
  .woocommerce-pagination ul .prev-arrow {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
  }
}
.woocommerce-pagination ul .pagination__list {
  display: inline-block;
  outline: 1px dashed var(--st-theme-1);
  outline-offset: 4px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  line-height: 40px;
}
@media (max-width: 575.98px) {
  .woocommerce-pagination ul .pagination__list {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
  }
}
.woocommerce-pagination ul .pagination__list:hover {
  background-color: var(--st-theme-1);
  color: var(--st-common-white);
  border: none;
  display: inline-block;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}
@media (max-width: 575.98px) {
  .woocommerce-pagination ul .pagination__list:hover {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
  }
}
.woocommerce-pagination ul .pagination__list .current {
  background-color: var(--st-theme-1);
  color: var(--st-common-white);
  border: none;
  display: inline-block;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}
@media (max-width: 575.98px) {
  .woocommerce-pagination ul .pagination__list .current {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
  }
}

.orders__pagination {
  padding-top: 50px;
}
.orders__pagination ul {
  display: flex;
  justify-content: center;
}
.orders__pagination li {
  outline: 1px dashed var(--st-theme-1);
  outline-offset: 4px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin-right: 25px;
}
.orders__pagination li .current {
  background: var(--st-theme-1);
  color: var(--st-common-white);
  width: 40px;
  height: 40px;
  display: block;
  border-radius: 50%;
}

.wishlist__account .dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  min-width: 170px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 999;
  padding: 5px 0 15px 0;
}
.wishlist__account .dropdown-content a {
  display: block;
  padding: 7px 12px;
  color: #333;
  text-decoration: none;
  text-align: left;
}
.wishlist__account .dropdown-content a:hover {
  background-color: #f1f1f1;
}
.wishlist__account .account:hover .dropdown-content {
  display: block;
}
.wishlist__account .account {
  margin-top: -10px;
  position: relative;
}
.wishlist__account .account img {
  width: 30px;
  height: 30px;
  border-radius: 100%;
}
.wishlist__account .account span {
  margin-top: 4px;
}
.wishlist__account .account .not__login-image {
  width: 24px;
  height: 24px;
}
.wishlist__account .account .not__login-username {
  margin-top: 0;
}
.wishlist__account .account img,
.wishlist__account .shop img {
  margin-right: 10px;
}
.wishlist__account .wishlist img {
  margin-right: 18px;
}

.wishlist-count,
.cart-count,
.compare-count {
  display: block;
  position: absolute;
  top: -5px;
  left: 16px;
  color: #fff;
  font-weight: 400;
  font-size: 12px;
  padding: 4px;
  line-height: 12px;
  width: 20px;
  height: 20px;
  background: var(--st-theme-1);
  border-radius: 100%;
}

.search-suggestions {
  background: #fff;
  position: absolute;
  z-index: 1000;
  display: none;
  overflow-x: hidden;
  top: 60px;
  padding: 20px;
  border: 1px solid #e9ecef;
  border-radius: 10px;
  width: 100%;
  max-height: 500px;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .search-suggestions {
    min-width: 550px;
  }
}
@media (max-width: 575.98px) {
  .search-suggestions {
    padding: 10px;
    max-height: 300px;
  }
}
.search-suggestions .product__title {
  color: var(--st-heading-primary) !important;
  font-weight: 500 !important;
}
.search-suggestions .card-text {
  font-size: 24px;
  color: var(--st-theme-1);
  font-weight: 600;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .search-suggestions .card-text {
    font-size: 20px;
  }
}
.search-suggestions .card-text small {
  color: var(--st-heading-primary);
  font-weight: 400;
}
.search-suggestions .card {
  height: 100%;
  flex-direction: row;
  padding: 15px;
  border-radius: 10px;
}
@media (max-width: 575.98px) {
  .search-suggestions .card {
    padding: 10px;
  }
}
.search-suggestions .card-img-top {
  height: 100px;
  width: 100px;
  object-fit: cover;
  border-radius: 5px;
}
@media (max-width: 575.98px) {
  .search-suggestions .card-img-top {
    height: 100%;
    min-height: 50px;
    width: 50px;
  }
}
.search-suggestions .card-title {
  text-align: left;
  margin-bottom: 0;
  padding: 0 15px;
}
@media (max-width: 575.98px) {
  .search-suggestions .card-title {
    padding: 0 10px;
  }
}
.search-suggestions .card-body {
  justify-content: space-between;
  align-items: center;
  display: flex;
  padding: 0 0;
}
@media (max-width: 575.98px) {
  .search-suggestions .g-3 {
    --bs-gutter-y: 10px;
  }
}

.btn-search {
  display: inline-block !important;
}

.search-suggestion-item {
  padding: 10px;
  cursor: pointer;
}

.search-suggestion-item:hover {
  background-color: #f0f0f0;
}

.mySwipers .margin-left {
  left: 82px;
}
.mySwipers .swiper-pagination {
  display: block;
}

@media (max-width: 1199px) {
  .ajax_tab-area .sz-swiper-container {
    margin-top: 0;
  }
}

.sz-swiper-container {
  overflow: hidden;
}
@media (max-width: 1199px) {
  .sz-swiper-container {
    margin-top: 45px;
  }
}

.tab__area .tabs .tab-link {
  display: inline-block;
  cursor: pointer;
  border-bottom: 1px solid grey;
  list-style: none;
  color: var(--st-gray-1);
  font-size: 30px;
  line-height: 47px;
  font-weight: 500 !important;
  float: left;
  border: none;
  outline: none;
  transition: 0.3s;
  margin-right: 30px;
  border-bottom: 1px solid #ccc;
  padding: 0 !important;
}
.tab__area .tabs .active {
  border-bottom: 1px solid var(--st-theme-1);
  color: var(--st-theme-1);
}
.tab__area .left__content .section__title, .tab__area .right__content .section__title {
  padding-bottom: 30px;
}
.tab__area .left__content .section__title span, .tab__area .right__content .section__title span {
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .tab__area .left__content .section__title, .tab__area .right__content .section__title {
    padding-bottom: 20px;
  }
  .tab__area .left__content .section__title span, .tab__area .right__content .section__title span {
    margin-bottom: 20px;
  }
}
@media (max-width: 575.98px) {
  .tab__area .left__content .section__title, .tab__area .right__content .section__title {
    padding-bottom: 10px;
  }
  .tab__area .left__content .section__title span, .tab__area .right__content .section__title span {
    margin-bottom: 10px;
  }
}
.tab__area .left__content-tab, .tab__area .right__content-tab {
  padding-bottom: 40px;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .tab__area .left__content-tab, .tab__area .right__content-tab {
    padding-bottom: 30px;
  }
}
@media (max-width: 575.98px) {
  .tab__area .left__content-tab, .tab__area .right__content-tab {
    padding-bottom: 20px;
  }
}
.tab__area .right__content {
  text-align: center;
}
.tab__area .right__content-tab {
  display: flex;
  justify-content: center;
}

.ajax-product-tabs .swiper-button-next, .ajax-product-tabs .swiper-button-prev {
  top: 40%;
}

.blog-post .blog__img img {
  width: 100%;
}

.blog-post .blog__img img {
  width: 100%;
}

.active__icon-cart {
  background-color: var(--st-theme-1) !important;
  color: var(--st-common-white) !important;
  align-items: center;
}

.compare__product-table .active__icon-cart {
  padding: 12px;
  border-radius: 10px;
}
.compare__product-table .add__success-message {
  display: none;
}

.limited__offer-area .active__icon-cart {
  padding: 6px;
  border-radius: 6px;
}

.single-product .single__after-cart .active__icon-cart,
.modal-content .single__after-cart .active__icon-cart {
  padding: 6px;
  border-radius: 6px;
  margin-right: 15px;
}
.single-product .single__after-cart .add__success-message,
.modal-content .single__after-cart .add__success-message {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 999999;
  background-color: #fff;
  color: green;
  padding: 20px 30px;
  margin-bottom: 10px;
  border-radius: 5px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  font-size: 16px;
  max-width: 350px;
}
.single-product #buy-now-button,
.modal-content #buy-now-button {
  display: inline-block !important;
  line-height: 27px;
  margin-left: 15px;
}
@media (max-width: 400px) {
  .single-product #buy-now-button,
  .modal-content #buy-now-button {
    margin-left: 3px;
  }
}

.wpc-tooltip-cart {
  position: relative;
  cursor: pointer;
}

.wpc-tooltip-cart[data-tooltip]:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--st-heading-primary);
  color: #fff;
  padding: 0px 10px;
  border-radius: 4px;
  white-space: nowrap;
  font-size: 12px;
  z-index: 10;
  opacity: 1;
  visibility: visible;
}

.wpc-tooltip-cart[data-tooltip]::after {
  content: "";
  /* This ensures that the tooltip only appears on hover */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.f__product-img .add__success-message {
  position: absolute;
  bottom: 60px;
  background-color: #fff;
  color: green;
  padding: 10px 15px;
  margin-bottom: 10px;
  border-radius: 5px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  font-size: 16px;
}

.wishlist-product-name,
.compare-product-name,
.cart-product-name {
  font-weight: bold;
  color: var(--st-heading-primary);
}

.page-link-style {
  color: var(--st-text-link);
}
.page-link-style:hover {
  color: var(--st-text-link);
}

.modal-dialog {
  max-width: 960px;
}
.modal-dialog .sz-product-image img {
  width: 100%;
  height: auto;
}

/* Main Menu Styles for Desktop */
/* Responsive Menu for Smaller Screens */
/* General Styles */
/* Mobile Menu Styles */
.menu-toggle, .dropdown__menu-toggle {
  display: none;
}

.back-btn {
  display: none;
  font-size: 18px;
  font-weight: 400;
  color: #6e6868;
  padding: 15px 20px;
  cursor: pointer;
  width: 100%;
  z-index: 99999;
  position: fixed;
  top: 0;
  left: -10px;
  margin-top: -10px;
}

/* Close menu button styling */
.close-menu {
  display: none;
  font-size: 18px;
  font-weight: bold;
  color: #000;
  padding: 15px 20px;
  cursor: pointer;
  width: 100%;
  z-index: 99999;
  position: fixed;
  top: 0;
  margin-top: -10px;
  margin-left: 160px;
}

/* Hide menu on mobile initially */
@media (max-width: 415px) {
  .header__main-area .browse__categories {
    width: 220px !important;
  }
}
@media (max-width: 459px) {
  .best__selling-item .selling__wrapper .swipper__btn {
    right: -25px;
    top: 60px;
  }
}
@media (max-width: 506px) {
  .best__selling-item .selling__wrapper .b__product {
    width: 92%;
  }
}
@media (max-width: 651px) {
  .header__area .header__mid-area .logo img {
    width: 140px;
  }
}
@media (max-width: 768px) {
  .shipping__info .free__shipping {
    padding: 0 45px;
  }
}
@media screen and (max-width: 992px) {
  /* When the menu is active, show the close button */
  .menu-content.active .close-menu {
    display: block;
  }
  /* mega menu image */
  .header__main-area .main__menu ul li a::after {
    background: transparent;
  }
  .menu-items li .elementor img {
    display: block;
    text-align: left;
    max-width: 200px;
    width: 100%;
  }
  .main__menu ul li .elementor {
    left: 0;
    position: relative;
  }
  .header__main-area .support__center {
    margin-top: -35px;
  }
  .menu-toggle {
    display: block;
    margin-top: 22px;
    margin-bottom: 5px;
  }
  .menu-items {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
  }
  /* Hide Menu */
  .main-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100%;
    background-color: #fff;
    transition: left 0.4s ease;
    z-index: 999;
    padding-top: 10px;
    overflow-y: auto;
    z-index: 9999;
  }
  /* Active state for sliding menu */
  .main-menu.active {
    left: 0;
    padding-top: 40px;
  }
  .main-menu.active ul li {
    border-bottom: 1px solid #f2f4f7;
  }
  .main-menu.active ul li a {
    color: #000;
  }
  .main-menu.active ul li a i {
    border-left: 1px solid #f2f4f7;
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 10px 30px;
  }
  .main-menu.active ul li .elementor {
    top: 0;
  }
  .main-menu.active ul li .elementor ul li {
    border-bottom: none;
  }
  .main-menu.active ul li ul li:last-of-type {
    border-bottom: unset;
  }
  /* Active state for sliding menu */
  .menu-items li {
    width: 100%;
    text-align: left;
  }
  .main__menu ul li {
    padding: 0;
  }
  .menu-items li a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #fff;
    transition: background 0.3s;
  }
  /* Menu Toggle Button */
  .menu-toggle {
    display: block;
    font-size: 35px;
    color: #fff;
    cursor: pointer;
    position: relative;
    z-index: 1000;
    margin-top: -2px;
  }
  /* Overlay for background effect when menu opens */
  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
    z-index: 998;
  }
  .menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 991px) {
  .hero__area .row {
    flex-direction: column-reverse;
  }
  .hero__area .row .hero__left {
    padding-bottom: 30px;
  }
  .hero__area .row .hero__left .section__title {
    padding-top: 60px;
  }
  .browse__categories {
    background: transparent !important;
    width: auto !important;
  }
  .browse__categories ul li:first-child {
    display: none;
  }
}
@media (max-width: 1024px) {
  .dropdown__multilevel-menu .dropdown__menu-toggle {
    display: block;
    width: 200px;
    color: #fff;
    padding: 10px 0;
    text-align: left !important;
  }
  .dropdown__multilevel-menu .dropdown__menu-toggle i {
    font-size: 24px;
    margin-right: 5px;
  }
  .dropdown__multilevel-menu .all-categories-item {
    background: transparent;
  }
  .dropdown__multilevel-menu .all-categories-item .all__categories-text {
    display: none;
  }
  .dropdown__multilevel-menu .dropdown__category-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100%;
    background-color: #e2e5ec;
    transition: left 0.4s ease;
    z-index: 999;
    padding-top: 10px;
    overflow-y: auto;
    z-index: 9999;
  }
  .dropdown__multilevel-menu .dropdown__category-menu.active {
    left: 0;
  }
  .dropdown__multilevel-menu .sub-menu {
    display: block !important;
    top: 0 !important;
  }
  .dropdown__multilevel-menu .sub-menu li {
    width: 100%;
    text-align: left;
    padding: 5px 0 !important;
  }
  .dropdown__multilevel-menu .sub-menu li a {
    display: block;
    padding: 15px;
    text-decoration: none;
    color: #fff;
    transition: background 0.3s;
  }
  .dropdown__multilevel-menu .sub-menu li a:hover {
    background-color: #444;
  }
}
@media (min-width: 1025px) and (max-width: 1275px) {
  .best__selling-item .selling__wrapper .swipper__btn {
    right: -25px;
  }
  .best__selling-item .selling__wrapper .b__product .b__product-content {
    margin-left: 10px;
  }
  .best__selling-item .selling__wrapper .b__product {
    width: 92%;
  }
  .best__selling-item .selling__wrapper .b__product .b__product-img {
    padding: 0;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .shipping__info .free__shipping {
    padding: 0;
  }
  .dropdown__multilevel-menu .all_categories {
    display: none;
  }
}
@media (min-width: 1200px) and (max-width: 1660px) {
  .blog-post .blog__author a {
    display: block;
  }
  .blog-post .blog__author a span {
    margin-left: 10px !important;
  }
  .blog-post .blog__author a img {
    margin-right: 5px;
  }
}
/* Hide search form initially on smaller devices */
/* Hide the overlay initially */
.search-icon {
  display: none;
}

.search-overlay {
  display: none;
  position: fixed;
  top: -80px;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  /* Background overlay */
  z-index: 9999;
  /* Make sure it's above other elements */
  justify-content: center;
  align-items: center;
  padding: 0 15px;
}

/* Center the search content */
.search-overlay-content {
  position: relative;
  width: 100%;
  max-width: 600px;
  padding: 20px;
  background: #fff;
  text-align: center;
}
@media (max-width: 360px) {
  .search-overlay-content {
    max-width: 300px;
  }
}
@media (max-width: 575.98px) {
  .search-overlay-content {
    padding: 15px;
  }
}

/* Search form styles */
.search-form .search-field {
  width: 80%;
  padding: 15px;
  font-size: 18px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

/* Close button style */
.close-search {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  color: #333;
  cursor: pointer;
}
@media (max-width: 575.98px) {
  .close-search {
    top: 0;
  }
}

/* Style for the search submit button */
.search-submit {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  margin-left: 10px;
  color: #333;
}

@media (max-width: 991px) {
  /* Hide the search form initially */
  .search-icon {
    display: block !important;
  }
  .search-form {
    width: 100%;
    padding: 20px 0;
  }
  /* Adjust search icon */
  .search-icon {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-size: 20px;
    margin-top: -3px;
  }
  /* Show the form when active */
  .search-form.active {
    display: block;
  }
  /* Style for the submit icon button */
  .search-submit {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
  }
}
/* Show the form when active */
.search-form.active {
  display: block;
}

@media (max-width: 991px) {
  .product__title {
    font-size: 16px !important;
    line-height: 22px !important;
    text-align: left;
    padding: 0 60px;
  }
}
.subscribe-email {
  padding-bottom: 0px;
}

.elementor-2298 {
  background: transparent;
}

/**
* Shop Page CSS
*/
.price_slider_amount button,
.shop__right-area .woocommerce-result-count {
  display: none;
}

.shop__main-products .product-grid-view .featured__author .f__p-content {
  padding-bottom: 40px;
  padding-top: 2px;
}

.f__p-content {
  margin-top: 0;
}
.f__p-content .color-options {
  margin-top: 11px;
}
.f__p-content h6 {
  margin-top: 0;
}

/* Default Grid View */
.filter__sidebar-area section {
  border: 1px solid rgb(230, 233, 240);
  border-radius: 12px;
  padding: 24px;
  margin-top: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .filter__sidebar-area section {
    padding: 15px;
  }
}
.filter__sidebar-area section .widget-title {
  font-size: 24px;
  font-weight: 600;
  padding-bottom: 15px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgb(230, 233, 240);
  line-height: 32px;
}
@media (min-width: 1200px) and (max-width: 1359px) {
  .filter__sidebar-area section .widget-title {
    font-size: 22px;
    line-height: 30px;
  }
}
@media (min-width: 992px) and (max-width: 1020px) {
  .filter__sidebar-area section .widget-title {
    font-size: 22px;
    line-height: 30px;
  }
}
.filter__sidebar-area section label {
  font-weight: 400;
  font-size: 18px;
  padding: 10px 0;
  line-height: 18px;
  color: #414652;
}
.filter__sidebar-area section input[type=checkbox] {
  width: 18px;
  height: 18px;
  vertical-align: top;
  margin-right: 12px;
}
.filter__sidebar-area section .product__count {
  font-size: 14px;
  color: #A0A3A9;
  font-weight: 500;
}
.filter__sidebar-area section:nth-child(1) {
  margin-top: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .shop__product-wrapper .shop__left-area {
    padding: 0;
  }
}
.shop__product-wrapper .shop__left-area .filter__sidebar-area section .benariz__filter-attributes .filter__color-value {
  display: inline-block;
  border-radius: 100%;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  margin-top: -1px;
}
.shop__product-wrapper .shop__left-area .filter__sidebar-area section .benariz__filter-attributes .color__product-count {
  display: inline-block;
  margin-top: -1px;
  position: absolute;
}
.shop__product-wrapper .shop__left-area .filter__sidebar-area section .filter__status {
  margin-right: 8px !important;
}
.shop__product-wrapper .shop__left-area .filter__sidebar-area section .benariz__rating-checkboxes input {
  margin-right: 8px !important;
}
.shop__product-wrapper .shop__left-area .filter__sidebar-area section .benariz__rating-checkboxes .fa-star {
  padding: 0 5px;
}
.shop__product-wrapper .shop__left-area .filter__sidebar-area section .benariz__rating-checkboxes .fas {
  color: #FDB022;
}
.shop__product-wrapper .shop__left-area .filter__sidebar-area section .benariz__rating-checkboxes .fa {
  color: #E8E8EA;
}
.shop__product-wrapper .shop__left-area .filter__sidebar-area section .sz-product-widget {
  padding-top: 10px;
}
.shop__product-wrapper .shop__left-area .filter__sidebar-area section .sz-product-widget .b__product-img {
  border-radius: 8px;
}
.shop__product-wrapper .shop__left-area .filter__sidebar-area section .sz-product-widget img {
  width: auto;
  height: auto;
}
.shop__product-wrapper .shop__left-area .filter__sidebar-area section .sz-product-widget .b__product-content {
  margin-left: 20px;
}
.shop__product-wrapper .shop__left-area .filter__sidebar-area section .sz-product-widget .b__product-content h6 {
  font-weight: 600;
  font-size: 18px;
}
.shop__product-wrapper .shop__left-area .filter__sidebar-area section .sz-product-widget .b__product-content span {
  font-size: 14px;
}
.shop__product-wrapper .shop__left-area .filter__sidebar-area section .sz-product-widget .b__product-content p {
  padding-top: 7px !important;
  color: var(--st-theme-1);
  font-weight: 600;
}
.shop__product-wrapper .shop__left-area .filter__sidebar-area section .sz-product-widget .b__product-content p span {
  font-size: 18px;
}
.shop__product-wrapper .shop__left-area .filter__sidebar-area section:nth-child(2) {
  margin-top: 0;
}
.shop__product-wrapper .shop__left-area .filter__sidebar-area section input:checked {
  background-color: rgb(240, 74, 0);
  border: 0;
}
.shop__product-wrapper .shop__left-area .filter__sidebar-area section .price_slider {
  margin-top: 30px;
}
.shop__product-wrapper .shop__left-area .filter__sidebar-area section .price_slider .ui-slider-range {
  background: var(--st-theme-1);
}
.shop__product-wrapper .shop__left-area .filter__sidebar-area section .price_slider .ui-slider-handle {
  background: var(--st-theme-1);
  border-radius: 4px;
  margin-top: -6px;
  width: 16px;
  height: 16px;
}
.shop__product-wrapper .shop__right-area .nice-select::after {
  color: #000;
  right: 5px;
}
.shop__product-wrapper .listing__header .shop__view-toggle i {
  font-size: 22px;
}
.shop__product-wrapper .listing__header .shop__view-toggle .active i {
  color: #002366;
}
.shop__product-wrapper .listing__header .nice-select {
  display: inline-block;
  float: revert;
}

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

.list__product-content .old__price,
.list__product-content .current__price {
  display: inline-block !important;
}
.list__product-content .current__price span {
  font-size: 20px !important;
  font-weight: 700 !important;
  color: var(--st-theme-1) !important;
}
.list__product-content .p-size p label {
  font-weight: 500;
}

.woocommerce-pagination .current {
  cursor: not-allowed !important;
}

.shop__product-wrapper .filter__sidebar-area {
  background: white;
  /* Background color */
  transition: left 0.3s ease;
  /* Slide effect */
  z-index: 1000;
  /* Ensure it appears above other content */
}
.shop__product-wrapper .filter__sidebar-area.active {
  left: 0;
  /* Slide in */
}
@media (max-width: 991px) {
  .shop__product-wrapper .close-filter {
    display: block;
  }
  .shop__product-wrapper #toggle-filter {
    display: block !important;
  }
  .shop__product-wrapper .filter__sidebar-area {
    top: 0;
    padding: 15px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    position: absolute;
    left: -350px;
    width: 350px;
  }
  .shop__product-wrapper .filter__sidebar-area .see-more-btn {
    margin-bottom: 15px;
  }
  .shop__product-wrapper .filter__sidebar-area .widget-title {
    font-size: 20px !important;
    padding-top: 10px;
  }
  .shop__product-wrapper .filter__sidebar-area .filter_heading {
    padding: 0 25px;
  }
  .shop__product-wrapper .filter__sidebar-area section {
    padding: 0 25px !important;
  }
}
@media (max-width: 1420px) {
  .shop__product-wrapper .filter__sidebar-area .sz-product-widget .b__product {
    display: block !important;
  }
  .shop__product-wrapper .filter__sidebar-area .sz-product-widget .b__product-content {
    margin-left: 0 !important;
    margin-top: 15px;
  }
}

#toggle-filter {
  display: none !important;
}

.close-filter {
  display: none;
}

/* Hide sidebar and overlay initially */
#filter-sidebar {
  width: 300px;
  position: fixed;
  top: 0;
  left: -300px;
  height: 100%;
  background-color: white;
  z-index: 1000;
  transition: left 0.3s ease;
  overflow-y: auto;
}

#filter-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.open-filter-btn {
  display: none;
}

/* Responsive for smaller screens */
@media (max-width: 1024px) {
  .benariz__popup-content {
    width: 80%;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .benariz__popup-content {
    width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 992px) {
  .mySwipers .margin-left {
    left: 40px;
  }
  .hero__area .heroBtn__wrapper {
    padding-bottom: 60px;
  }
  #filter-sidebar {
    width: 80%;
    /* Makes the sidebar take 80% of the width on smaller screens */
  }
  .open-filter-btn {
    display: block;
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1001;
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
}
/* Show sidebar and overlay when active */
#filter-sidebar.active {
  left: 0;
}

#filter-overlay.active {
  display: block;
}

.single-product .woocommerce-message,
.modal-content .woocommerce-message {
  padding: 10px;
  max-width: 1050px;
  text-align: center;
  margin: 0 auto 40px auto;
}
.single-product .woocommerce-message a,
.modal-content .woocommerce-message a {
  color: #fff;
}
.single-product .single__after-cart,
.modal-content .single__after-cart {
  padding: 25px 0 0 0;
}
.single-product .single__after-cart .add__to-wishlist,
.modal-content .single__after-cart .add__to-wishlist {
  margin-right: 20px;
  display: inline;
}
@media (max-width: 575px) {
  .single-product .single__after-cart .add__to-wishlist,
  .modal-content .single__after-cart .add__to-wishlist {
    margin-bottom: 20px;
  }
  .single-product .single__after-cart .add__to-wishlist a,
  .modal-content .single__after-cart .add__to-wishlist a {
    display: flex;
    align-items: center;
    gap: 10px;
  }
}
.single-product .single__after-cart .add__to-compare,
.modal-content .single__after-cart .add__to-compare {
  display: inline;
}
@media (max-width: 575px) {
  .single-product .single__after-cart .add__to-compare a,
  .modal-content .single__after-cart .add__to-compare a {
    display: flex;
    align-items: center;
    gap: 10px;
  }
}
.single-product .single__after-cart span p,
.modal-content .single__after-cart span p {
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  margin-left: 10px;
  color: #70747D;
}
.single-product .single__after-cart i,
.modal-content .single__after-cart i {
  font-size: 24px;
  color: #70747D;
}

.benariz__popup-content {
  height: 700px;
  overflow-y: scroll;
}
.benariz__popup-content .reset_variations {
  display: none;
}
.benariz__popup-content .quick__view-product .quick-view-wrapper {
  row-gap: 30px;
}
.benariz__popup-content .quick__view-product .main-image img {
  width: 100%;
  background: #FAFAFB;
  height: 645px;
  object-fit: cover;
}
@media (max-width: 575.98px) {
  .benariz__popup-content .quick__view-product .main-image img {
    height: 300px;
    object-fit: contain;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px) {
  .benariz__popup-content .quick__view-product .main-image img {
    height: 400px;
    object-fit: contain;
  }
}
.benariz__popup-content .quick__view-product .variation-row {
  display: flex;
  align-items: center;
}
.benariz__popup-content .quick__view-product .variation-row label {
  max-width: 70px;
  width: 100%;
}
.benariz__popup-content .quick__view-product .variation-row select {
  background-color: #fff;
  border-radius: 5px;
  border: solid 1px #e8e8e8;
  width: 200px;
  margin: 8px 0;
  background-position: right 5px center;
  font-size: 16px;
}
.benariz__popup-content .quick__view-product .variation-row select option {
  text-align: center;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px), (max-width: 400px) {
  .variations_form .modal__ajax-cart {
    margin-bottom: 10px;
  }
}
#sz-product-modal .modal-body {
  padding: 0;
}

.variations {
  margin-top: 10px;
  border-spacing: 0 15px;
  border-collapse: separate;
}
.variations tbody tr th {
  width: 112px;
}
.variations tbody tr th label {
  color: #414652;
  font-weight: 500;
  text-transform: capitalize;
}
.variations tbody tr .value {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}
.variations tbody tr .value select {
  background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%2370747D"%3E%3Cpath d="M11.9999 13.1714L16.9497 8.22168L18.3639 9.63589L11.9999 15.9999L5.63599 9.63589L7.0502 8.22168L11.9999 13.1714Z"%3E%3C/path%3E%3C/svg%3E');
}
.variations select {
  background-color: #fff;
  border-radius: 5px;
  border: solid 1px #e8e8e8;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  color: #70747D;
  font-family: inherit;
  font-size: 18px;
  font-weight: 600;
  height: 42px;
  line-height: 20px;
  outline: none;
  padding-left: 18px;
  padding-right: 50px;
  position: relative;
  text-align: left !important;
}

.woocommerce-filters-selected {
  display: none;
  margin-bottom: 28px;
  border-radius: 5px;
}
.woocommerce-filters-selected .selected-filters {
  display: inline-block;
}
.woocommerce-filters-selected .selected-filters .filter-item {
  display: inline-flex;
  padding: 4px 8px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 4px;
  font-size: 14px;
  color: #70747D;
  border: 1px solid #E6E9F0;
  line-height: 20px;
  margin-right: 4px;
}
.woocommerce-filters-selected .selected-filters .filter-item .remove-filter {
  margin-right: 4px;
  cursor: pointer;
  font-size: 22px;
}
.woocommerce-filters-selected .clear-filters {
  margin-left: 10px;
  cursor: pointer;
  color: #70747D;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-decoration-line: underline;
}

.p__top-review .nice-select {
  padding: 0;
  border: none;
  font-size: 18px;
  margin-top: 0;
  margin-left: -20px;
  position: inherit;
  height: 11px;
  line-height: 10px;
  margin-left: 0px;
}
.p__top-review .nice-select::after {
  color: #002366;
  font-size: 18px;
  right: 15px;
}

.see-more-btn {
  color: var(--st-theme-1);
  margin-top: 10px;
}

.image-preview-container {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
}

.image-preview {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 5px;
}

.no-review-text p {
  text-align: center;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header__main-area .main__menu .sz-elementor-menu ul {
    margin-left: 0px;
  }
}

.mfp-arrow {
  display: block !important;
  /* Ensure arrows are visible */
}

.woocommerce-widget-layered-nav-dropdown:nth-of-type(2) {
  display: none;
}

.woocommerce-widget-layered-nav-dropdown .select2-container--default:nth-of-type(2),
.woocommerce-widget-layered-nav .select2-container--default:nth-of-type(2) {
  display: none;
}

.tab__area .f__product-img img,
.shop__main-products .f__product-img img,
.related__product-wrapper .f__product-img img {
  height: 480px;
  object-fit: cover;
}

/* Brand carousel widget style starts */
.benariz__brand-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

.benariz__brand-carousel .swiper-container {
  width: 100%;
}

.benariz__brand-carousel .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10px;
}

.benariz__brand-carousel .brand-image {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0.6;
}

.benariz__brand-carousel .swiper-slide:hover .brand-image {
  opacity: 1;
  transform: scale(1.1);
}

@media (max-width: 1200px) {
  .benariz__brand-carousel .brand-image {
    max-height: 70px;
  }
}
@media (max-width: 991px) {
  .benariz__brand-carousel .brand-image {
    max-height: 60px;
  }
}
@media (max-width: 768px) {
  .benariz__brand-carousel .brand-image {
    max-height: 50px;
  }
}
.benariz__carousel-btn .swiper-button-next {
  right: 20px;
}

.benariz__carousel-btn .swiper-button-next,
.benariz__carousel-btn .swiper-button-prev {
  position: absolute;
  top: 70%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
  display: block;
}
.benariz__carousel-btn .swiper-button-next i,
.benariz__carousel-btn .swiper-button-prev i {
  font-size: 20px;
  height: 40px;
  width: 40px;
  color: var(--st-theme-1);
  outline: 1px dashed var(--st-theme-1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
}
.benariz__carousel-btn .swiper-button-next i:hover,
.benariz__carousel-btn .swiper-button-prev i:hover {
  color: #fff;
  background: var(--st-theme-1);
  outline: 1px dashed #fff;
}
.benariz__carousel-btn .swiper-button-next::after,
.benariz__carousel-btn .swiper-button-prev::after {
  display: none;
}

.benariz__carousel-btn .swiper-button-next {
  right: 25px;
}

.benariz__carousel-btn .swiper-button-prev {
  left: 10px;
}

/* Brand carousel widget style ends */
/* SZ Custom widget style starts */
.benariz__tab-widget .nav-tabs {
  border-bottom: none;
  margin-bottom: 30px;
  row-gap: 15px;
}
@media (max-width: 575.98px) {
  .benariz__tab-widget .nav-tabs {
    flex-direction: column;
  }
}
.benariz__tab-widget .nav-item {
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
  margin-right: 40px;
}
.benariz__tab-widget .nav-item:last-child {
  margin-right: 0;
}
.benariz__tab-widget .nav-item .nav-link {
  display: inline-block;
  border: none;
  color: #70747D;
  padding: 0;
  border-bottom: 1px solid #70747D;
}
.benariz__tab-widget .nav-item .active {
  font-weight: 700;
  color: var(--st-theme-1);
  border-bottom: 2px solid var(--st-theme-1);
}
.benariz__tab-widget .tab-content p {
  color: #A0A3A9;
  font-weight: 400;
  line-height: 28px;
}

/* SZ Custom widget style starts */
/* Brand carousel widget style starts */
.benariz__brand-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

.benariz__brand-carousel .swiper-container {
  width: 100%;
}

.benariz__brand-carousel .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10px;
}

.benariz__brand-carousel .brand-image {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0.6;
}

.benariz__brand-carousel .swiper-slide:hover .brand-image {
  opacity: 1;
  transform: scale(1.1);
}

@media (max-width: 1200px) {
  .benariz__brand-carousel .brand-image {
    max-height: 70px;
  }
}
@media (max-width: 991px) {
  .benariz__brand-carousel .brand-image {
    max-height: 60px;
  }
}
@media (max-width: 768px) {
  .benariz__brand-carousel .brand-image {
    max-height: 50px;
  }
}
.benariz__carousel-btn .swiper-button-next {
  right: 20px;
}

.benariz__carousel-btn .swiper-button-next,
.benariz__carousel-btn .swiper-button-prev {
  position: absolute;
  top: 70%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
  display: block;
}
.benariz__carousel-btn .swiper-button-next i,
.benariz__carousel-btn .swiper-button-prev i {
  font-size: 20px;
  height: 40px;
  width: 40px;
  color: var(--st-theme-1);
  outline: 1px dashed var(--st-theme-1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
}
.benariz__carousel-btn .swiper-button-next i:hover,
.benariz__carousel-btn .swiper-button-prev i:hover {
  color: #fff;
  background: var(--st-theme-1);
  outline: 1px dashed #fff;
}
.benariz__carousel-btn .swiper-button-next::after,
.benariz__carousel-btn .swiper-button-prev::after {
  display: none;
}

.benariz__carousel-btn .swiper-button-next {
  right: 25px;
}

.benariz__carousel-btn .swiper-button-prev {
  left: 10px;
}

/* Brand carousel widget style ends */
/* SZ Custom widget style starts */
.benariz__tab-widget .nav-tabs {
  border-bottom: none;
  margin-bottom: 30px;
}
.benariz__tab-widget .nav-item {
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
  margin-right: 40px;
}
.benariz__tab-widget .nav-item:last-child {
  margin-right: 0;
}
.benariz__tab-widget .nav-item .nav-link {
  border: none;
  color: #70747D;
  padding: 0;
  border-bottom: 1px solid #70747D;
}
.benariz__tab-widget .nav-item .active {
  font-weight: 700;
  color: var(--st-theme-1);
  border-bottom: 2px solid var(--st-theme-1);
}
.benariz__tab-widget .tab-content p {
  color: #A0A3A9;
  font-weight: 400;
  line-height: 28px;
}

.menu-items li h3 span {
  font-size: 24px;
  line-height: 32px;
  color: #002366;
}
.menu-items li a.shop__btn:hover {
  color: #ffffff !important;
}
.menu-items li a.shop__btn:hover::after {
  display: none;
}
.menu-items li .elementor {
  border-radius: 0 0 12px 12px;
}

@media only screen and (min-width: 576px) and (max-width: 767.98px), only screen and (min-width: 768px) and (max-width: 991.98px), (max-width: 575.98px) {
  .sz-elementor-menu ul li a {
    padding: 0;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .sz-elementor-menu ul.sz-elementor-menu {
    margin-left: 0px !important;
  }
}

.return-to-shop {
  margin-bottom: 60px;
}

.single-product div#elementor-lightbox-slideshow-single-img {
  display: none !important;
}

@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .elementor-element-4c377517 .free__shipping p {
    font-size: 16px !important;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .elementor-element-4c377517 {
    display: flex;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .elementor-element-b757a81 .free__shipping p {
    font-size: 14px !important;
  }
  .elementor-element-b757a81 i {
    font-size: 20px;
  }
  .elementor-element-4c377517 .elementor-widget-container {
    padding: 12px !important;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .elementor-element.elementor-element-85e4282 {
    gap: 0 120px;
  }
  .elementor-element.elementor-element-1d55eba h2 {
    font-size: 40px !important;
    line-height: 50px !important;
  }
  .elementor-element.elementor-element-b1d69df h4 {
    font-size: 24px !important;
    line-height: 30px !important;
  }
  .elementor-element.elementor-element-4940d13 > .elementor-widget-container,
  .elementor-element.elementor-element-5f63d6e > .elementor-widget-container,
  .elementor-element.elementor-element-be1c455 > .elementor-widget-container,
  .elementor-element.elementor-element-cb073c8 > .elementor-widget-container {
    padding: 0 !important;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .elementor-element.elementor-element-4940d13 > .elementor-widget-container,
  .elementor-element.elementor-element-5f63d6e > .elementor-widget-container,
  .elementor-element.elementor-element-be1c455 > .elementor-widget-container,
  .elementor-element.elementor-element-cb073c8 > .elementor-widget-container {
    font-size: 16px;
  }
}
.woocommerce-NoticeGroup ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wc-empty-cart-message {
  text-align: center;
  margin-top: 30px;
}
.wc-empty-cart-message .woocommerce-info {
  width: 100% !important;
  background: none !important;
  color: var(--st-text-body);
}

.woocommerce-info,
.woocommerce-message,
.woocommerce-error {
  width: 66.2%;
  padding: 10px 20px;
  margin: 0 0 20px 0;
  background: rgb(230, 233, 240) !important;
  border-radius: 5px;
  color: #008000;
}
@media (max-width: 1200px) {
  .woocommerce-info,
  .woocommerce-message,
  .woocommerce-error {
    width: 57.5%;
  }
}
@media (max-width: 991px) {
  .woocommerce-info,
  .woocommerce-message,
  .woocommerce-error {
    width: 100%;
  }
}

.woocommerce-message a {
  color: #f44336 !important;
}

.woocommerce-error {
  color: #f44336 !important;
}

.left-sidebar-layout {
  display: flex;
  flex-direction: row-reverse;
}

.right-sidebar-layout {
  display: flex;
  flex-direction: row;
}

.no-side-bar-layout {
  display: none;
}

.breadcrumb-container {
  text-align: center;
  padding: 80px 0 70px 0;
}
.breadcrumb-container nav {
  padding: 10px 0;
  color: #414652;
}
.breadcrumb-container a {
  color: #414652;
}
.breadcrumb-container .custom-breadcrumb label {
  padding: 0 13px;
}
.breadcrumb-container .custom-breadcrumb label i {
  font-size: 16px;
  line-height: 16px;
  font-weight: 900;
}
.breadcrumb-container .custom-breadcrumb span {
  color: var(--st-theme-1) !important;
}

.breadcrumb-item::before {
  content: "" !important;
}

#toast__message-area {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  display: none;
}

.notification {
  background-color: #fff;
  color: green;
  padding: 20px 30px;
  margin-bottom: 10px;
  border-radius: 5px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  font-size: 16px;
  max-width: 350px;
}

.notification-success {
  background-color: #fff;
}

.notification-error {
  background-color: #f44336;
}

.notification a {
  color: var(--st-theme-1);
  text-decoration: underline;
}

.tracking-form {
  max-width: 862px;
  width: 100%;
  text-align: center;
  margin: 0 auto;
  padding: 140px 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px) {
  .tracking-form {
    padding: 80px 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .tracking-form {
    padding: 50px 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .tracking-form .form-content-wrap p {
    margin-bottom: 0;
    font-size: 16px;
  }
}
@media (max-width: 575.98px) {
  .tracking-form .form-content-wrap p {
    padding: 0 10px;
  }
}
.tracking-form h3 {
  margin-bottom: 20px;
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .tracking-form h3 {
    margin-bottom: 10px;
  }
}
.tracking-form .tracking-input {
  display: flex;
  gap: 20px;
  max-width: 450px;
  margin: 40px auto 0 auto;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .tracking-form .tracking-input {
    gap: 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .tracking-form .tracking-input {
    gap: 10px;
    margin: 20px auto 0 auto;
  }
}
.tracking-form .tracking-input .track_btn {
  padding: 0 25px;
}
.tracking-form input[type=text] {
  width: 100%;
  height: 48px;
  border-radius: 8px;
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem !important;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px !important;
  color: #70747D !important;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.tracking-form input[type=text]:focus {
  color: #212529;
  background-color: #fff;
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.tracking-form input[type=text]::placeholder {
  color: #70747D;
  font-size: 18px;
  line-height: 28px;
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .tracking-form input[type=text]::placeholder {
    font-size: 16px;
    line-height: 24px;
  }
}

.search__results .page-header {
  padding-bottom: 30px;
  padding-top: 60px;
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .search__results .page-header {
    padding-bottom: 20px;
  }
}

.benariz__image-carousel {
  width: 100%;
  height: 550px;
  overflow: hidden;
  position: relative;
}
.benariz__image-carousel .carousel-image {
  height: 100%;
  width: inherit;
  object-fit: cover;
}
.benariz__image-carousel .benariz__carousel-btn .swiper-button-next,
.benariz__image-carousel .benariz__carousel-btn .swiper-button-prev {
  position: absolute;
  top: 54%;
}
.benariz__image-carousel .swiper-container {
  height: 100%;
}
.benariz__image-carousel .swiper-wrapper {
  padding-left: 200px;
}

.benariz__custom-marquee {
  overflow: hidden;
  position: relative;
  background-color: #f5f5f5;
  padding: 10px 0;
}

.marquee__content {
  width: 100%;
  height: 100%;
  display: inline-block;
  white-space: nowrap;
  animation: marquee 15s linear infinite;
}
.marquee__content:hover {
  animation-play-state: paused;
}
.marquee__content .marquee-divider svg {
  height: 20px;
}

.marquee-item {
  height: 100%;
  display: inline-block;
  padding: 0 50px;
  font-size: 18px;
  color: #333;
}

/* Marquee animation */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.fa-shuffle:active {
  color: var(--st-common-white);
  background: var(--st-theme-1);
}

.benariz__compare-search {
  margin-bottom: 10px;
  padding: 10px;
  width: 100%;
  border: 2px solid rgb(230, 233, 240);
  border-radius: 12px;
}
.benariz__compare-search::placeholder {
  color: rgb(112, 116, 125);
}
@media (max-width: 575.98px) {
  .benariz__compare-search::placeholder {
    font-size: 16px;
  }
}

.compare__product-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 99;
}

.compare__product-popup {
  padding: 0 10px 10px 10px;
  text-align: right;
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90vw;
  height: 90vh;
  z-index: 9999;
  overflow: auto;
  background-color: #fff;
  z-index: 100;
}
@media (max-width: 575.98px) {
  .compare__product-popup {
    width: 95vw;
  }
}
.compare__product-popup .close-popup-btn {
  padding: 15px 10px;
  background: none;
  border: none;
  font-size: 24px;
  color: rgb(160, 163, 169);
  cursor: pointer;
}

.cancell__order-popup {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
}
.cancell__order-popup .close-popup-btn {
  background: none;
  border: none;
  font-size: 24px;
  color: #333;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 15px;
}
.cancell__order-popup .popup-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 40px;
  border-radius: 5px;
  width: 90%;
  max-width: 700px;
  height: 800px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  position: relative;
  top: 40%;
  transform: translateY(-50%);
  overflow-y: scroll;
}
.cancell__order-popup .alert__area {
  background: #F2F4F7;
  padding: 15px;
}
.cancell__order-popup .alert__area .alert__message {
  color: #334F85;
  margin-left: 20px;
  line-height: 23px;
}
.cancell__order-popup .reasons__heading {
  color: #414652;
  font-size: 18px;
  font-weight: 600;
}
.cancell__order-popup .reasons__form label {
  color: #70747D;
  font-size: 18px;
  font-weight: 400;
  display: flex;
  align-items: center;
}
.cancell__order-popup .reasons__form input {
  width: 16px;
  height: 16px;
  margin-right: 8px;
}
.cancell__order-popup .reasons__form textarea {
  border: 1px solid #E6E9F0;
  border-radius: 8px;
  border: 1px solid #E6E9F0;
  border-radius: 8px;
  color: #A0A3A9;
  padding: 15px;
}
.cancell__order-popup .reasons__form textarea::placeholder {
  color: #A0A3A9;
}
.cancell__order-popup .submit-cancel-order {
  margin-top: 20px;
}
.cancell__order-popup .close-popup {
  background-color: #dc3545;
}

.swiper-pagination {
  display: flex;
  width: 100% !important;
}

.wpc-cart-sidebar-content .woocommerce-mini-cart li {
  margin: 30px 0;
  border-bottom: 1px solid #dcdcde;
  padding: 0 20px;
}
.wpc-cart-sidebar-content .woocommerce-mini-cart li .cart__content .cart__item-image {
  padding-bottom: 10px;
}
.wpc-cart-sidebar-content .woocommerce-mini-cart li .cart__content .cart__item-image a img {
  padding: 5px;
  background: rgb(242, 244, 247);
  min-width: 65px;
  max-width: 100px;
  border-radius: 3px;
  height: auto;
}
.wpc-cart-sidebar-content .woocommerce-mini-cart li .cart__content .cart__item {
  padding-left: 20px;
}
.wpc-cart-sidebar-content .woocommerce-mini-cart li .cart__content .remove__side-cart {
  margin-left: 20px;
}
.wpc-cart-sidebar-content .woocommerce-mini-cart__empty-message {
  text-align: center;
}
.wpc-cart-sidebar-content .woocommerce-mini-cart__total {
  margin-left: 20px;
}
.wpc-cart-sidebar-content .woocommerce-mini-cart__buttons {
  margin-left: 20px;
}
.wpc-cart-sidebar-content .woocommerce-mini-cart__buttons .button {
  color: #fff;
  background: var(--st-theme-1);
  padding: 5px 15px;
  font-weight: 600;
  border-radius: 4px;
  display: inline-block;
  transition: all ease 0.3s;
  border: 1px solid var(--st-theme-1);
  margin-right: 20px;
}
.wpc-cart-sidebar-content .woocommerce-mini-cart__buttons .button:hover {
  background-color: var(--st-common-white);
  color: var(--st-theme-1);
  border: 1px solid var(--st-theme-1);
}
.wpc-cart-sidebar-content .woocommerce-mini-cart__buttons .checkout {
  background-color: var(--st-common-white);
  color: var(--st-theme-1);
  border: 1px solid var(--st-theme-1);
}
.wpc-cart-sidebar-content .woocommerce-mini-cart__buttons .checkout:hover {
  border-color: var(--st-theme-1);
  background-color: var(--st-theme-1);
  color: var(--st-common-white) !important;
}

.cart__item .variation {
  padding-left: 20px;
}

.menu-category-dropdown-container .menu-items {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  color: #334F85;
  text-align: left;
  padding: 16px 0;
  position: relative;
}
.menu-category-dropdown-container .sub-menu {
  position: absolute;
  background-color: #FFFFFF;
  border-radius: 0 0 8px 8px;
  color: #414652;
  z-index: 99;
  width: 300px;
  display: none;
  top: 50px;
  left: -71px;
  border-top: 1px solid #E6E9F0;
}
.menu-category-dropdown-container .sub-menu li {
  padding: 12px 20px;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  cursor: pointer;
}
.menu-category-dropdown-container .sub-menu li:hover {
  color: #F04A00;
  background-color: #FAFAFB;
}
.menu-category-dropdown-container:hover .sub-menu {
  display: block;
}

@media only screen and (max-width: 1525px) and (min-width: 1367px) {
  .elementor-widget-sz-infobox02 .elementor-widget-container {
    padding: 10px !important;
  }
  .elementor-widget-sz-infobox02 .free__shipping i {
    font-size: 25px !important;
  }
  .elementor-widget-sz-infobox02 .free__shipping p {
    font-size: 17px !important;
  }
  .elementor-widget-sz-infobox02 .free__shipping .media-wrapper {
    padding-right: 10px !important;
  }
}
@media (max-width: 630px) {
  .best__selling-item .selling__wrapper .b__product .b__product-img {
    padding: 15px 10px;
    width: 100%;
    max-width: 150px;
  }
}
.title__search {
  font-size: 25px;
  font-weight: 600;
  margin-top: -80px;
}

.prev-arrow, .test-prev-arrow {
  display: none;
}

.recent-sales-count {
  padding: 10px 0;
}
.recent-sales-count i {
  color: #5fa745 !important;
  font-size: 18px !important;
  margin-right: 10px;
  margin-top: 10px;
}

.dropdown__multilevel-menu .all__categories-text {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dropdown__multilevel-menu .all__categories-text i {
  color: #002366;
  font-size: 22px;
}
.dropdown__multilevel-menu .dropdown__cat-text {
  display: none;
  z-index: 9999;
}
.dropdown__multilevel-menu nav .menu {
  float: left;
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
  border-radius: 8px;
}
.dropdown__multilevel-menu nav .menu .all-categories-item {
  position: relative;
  position: relative;
  background: #fff;
  padding: 0 30px;
  border-radius: 8px;
  width: 320px;
}
.dropdown__multilevel-menu nav .menu .all-categories-item:hover .sub-menu {
  display: inherit;
  z-index: 999;
}
.dropdown__multilevel-menu nav .menu .all-categories-item .all_categories {
  display: block;
  color: #334F85;
  font-size: 18px;
  font-weight: 600;
  line-height: 40px;
  text-decoration: none;
}
.dropdown__multilevel-menu nav .menu .sub-menu {
  display: none;
  position: absolute;
  top: 40px;
  background: #fff;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.0509803922);
  left: 0px;
  width: 300px;
  min-height: 100%;
  border-radius: 8px;
}
.dropdown__multilevel-menu nav .menu .sub-menu li {
  width: 100%;
  text-align: left;
  float: none;
  display: list-item;
  position: static;
}
.dropdown__multilevel-menu nav .menu .sub-menu li:hover .submenu__inner-menu {
  display: block;
}
.dropdown__multilevel-menu nav .menu .sub-menu li .category-icon {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  margin-top: -6px;
}
.dropdown__multilevel-menu nav .menu .sub-menu li i {
  float: right;
  width: 30%;
  padding: 0 40px;
  border-left: 1px solid #f2f4f7;
}
.dropdown__multilevel-menu nav .menu li {
  margin: 0px;
  display: inline-block;
  float: left;
}
.dropdown__multilevel-menu nav .menu li a {
  display: block;
  padding: 0 20px;
  color: #414652;
  font-size: 18px;
  font-weight: 400;
  line-height: 46px;
  text-decoration: none;
  border-radius: 8px;
}
.dropdown__multilevel-menu nav .menu li a:hover {
  background: #FAFAFB;
}
.dropdown__multilevel-menu nav .inner__menu-close {
  display: none !important;
}
.dropdown__multilevel-menu nav .inner__menu-open {
  display: block !important;
}
.dropdown__multilevel-menu nav .inner__menu-close .elementor {
  display: none !important;
}
.dropdown__multilevel-menu nav .inner__menu-open .elementor {
  display: block !important;
}
.dropdown__multilevel-menu nav .submenu__inner-menu {
  display: none;
  position: absolute;
  background: white;
  top: 0%;
  left: 100%;
  width: 50vw;
  height: auto;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.0509803922);
  border-radius: 0 8px 8px 8px;
  border-left: 1px solid rgb(230, 233, 240);
}
.dropdown__multilevel-menu nav .submenu__inner-menu li a {
  padding: 0;
  line-height: 30px;
}

@media (max-width: 768px) {
  .dropdown__multilevel-menu nav .submenu__inner-menu {
    top: 100%;
    left: 0;
    position: relative;
    width: 300px;
  }
  .dropdown__cat-text {
    display: block;
  }
  .dropdown__multilevel-menu nav .menu .sub-menu li {
    border-bottom: 1px solid #f2f4f7;
  }
  .dropdown__multilevel-menu nav .menu .sub-menu .submenu__inner-menu li {
    border-bottom: none;
  }
}
.product_meta .tagged_as {
  display: block;
  color: #848484;
  font-weight: 500;
}
.product_meta .tagged_as a {
  color: #848484;
  font-weight: 400;
}

.custom-social-share {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.custom-social-share span {
  font-size: 18px;
  color: rgb(65, 70, 82);
}
.custom-social-share .social__share-icon {
  margin-left: 20px;
}
.custom-social-share .social__share-icon a {
  padding: 10px;
}

.f__product-carousel {
  padding: 0 10px;
}

section.best__selling-item {
  padding-top: 0;
}

.woocommerce-MyAccount-content button {
  width: unset !important;
}

.no-results .page-header {
  padding-top: 0;
}

.search__page-form div {
  display: flex;
  justify-content: space-between;
  width: 100%;
  border-radius: 12px;
}
.search__page-form input[type=text] {
  border: none;
  border-radius: 12px 0 0 12px;
  width: 100%;
  background-color: #F3F3F3;
  padding: 20px;
}
@media (max-width: 575.98px) {
  .search__page-form input[type=text] {
    padding: 15px;
  }
}
.search__page-form input[type=submit] {
  background-color: var(--st-border-button);
  color: var(--st-common-white);
  border: none;
  border-radius: 0 12px 12px 0;
  padding: 20px;
}
@media (max-width: 575.98px) {
  .search__page-form input[type=submit] {
    padding: 15px;
  }
}

.nt-elementor-menu {
  display: flex;
  flex-wrap: wrap;
}
.nt-elementor-menu ul li {
  color: var(--st-heading-primary);
  transition: all 0.4s ease-in-out;
}
.nt-elementor-menu ul li:hover {
  color: var(--st-theme-1);
}

.notifications-scroll {
  max-height: 800px;
  overflow-y: auto;
}

.notifications-scroll::-webkit-scrollbar {
  width: 5px;
}

.notifications-scroll::-webkit-scrollbar-thumb {
  background: #aaa;
  border-radius: 5px;
}

.notifications-scroll::-webkit-scrollbar-track {
  background: #f0f0f0;
}

.product__content #product-view-count {
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
}
.product__content #product-view-count i {
  margin-right: 5px;
}
.product__content .product_meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.product__content .product_meta .p__key-value {
  margin-top: 0;
}
.product__content table {
  margin-bottom: -20px;
}
@media (max-width: 405px) {
  .product__content table {
    margin-bottom: -35px;
  }
}
.product__content .p__key-value {
  margin-top: 20px;
}
.product__content .p__key-value .p__social-icon {
  display: inline-block;
  margin-left: 10px;
}
.product__content .p__key-value .p__social-icon ul {
  display: flex;
  flex-direction: row;
  gap: 15px;
}

.benariz__no-products-found {
  text-align: center;
  padding-top: 50px;
}
.benariz__no-products-found .woocommerce-info {
  width: 100%;
  background: transparent !important;
  color: #000;
}

.limited__offer-area .offer__content .add__success-message {
  display: none;
}

@media (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .tab__area .tab-right {
    bottom: -35px;
    padding: 10px 0;
  }
}

.product__grid-content .f__p-content {
  padding-top: 15px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.product__grid-content .f__p-price {
  display: flex;
  align-items: center;
  gap: 10px;
}
.product__grid-content .f__p-price p {
  margin-bottom: 3px;
}
.product__grid-content .f__product-img {
  height: 480px;
}
.product__grid-content .f__product-img img {
  height: 100%;
}
.product__grid-content .product__discount {
  position: absolute;
  top: 24px;
  left: 24px;
  background: #111827;
  color: #fff;
  font-size: 14px;
  line-height: 20px;
  padding: 4px 16px;
  z-index: 99;
  transition: 0.5s;
}
.product__grid-content .icons {
  width: 90%;
  justify-content: center;
}

@media (max-width: 400px), (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .upcoming__area .row {
    display: flex;
    flex-direction: column-reverse;
    margin-bottom: 50px;
  }
}
.upcoming__area .section__title span {
  margin-bottom: 0;
}
.upcoming__area .sub__title {
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  color: #414652;
  margin-bottom: 10px;
}
.upcoming__area .main__title {
  line-height: 74px;
  font-weight: 400;
  color: #111827;
}
.upcoming__area .upcoming_description {
  font-size: 18px;
  line-height: 28px;
  color: #414652;
  margin-bottom: 32px;
}
.upcoming__area .upcoming-counters {
  margin-bottom: 32px;
  gap: 20px;
}
.upcoming__area .upcoming-counters .count {
  margin: 0;
  border-radius: 0;
}
.upcoming__area .upcoming-counters .count h3 {
  color: #111827;
  font-weight: 400;
}
.upcoming__area .upcoming-counters .count span {
  color: #414652;
}
.upcoming__area .upcoming__wrapper-left {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.upcoming__wrapper-right {
  /* Adding a separator line */
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .upcoming__wrapper-right {
    padding-top: 30px;
  }
}
.upcoming__wrapper-right .special__day-wrapper .img-wrapper img {
  width: 100%;
  height: 700px;
  object-fit: cover;
}
@media (max-width: 575.98px) {
  .upcoming__wrapper-right .special__day-wrapper .img-wrapper img {
    height: 400px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .upcoming__wrapper-right .special__day-wrapper .offer-content {
    flex-direction: column-reverse;
  }
}
.upcoming__wrapper-right .product__tab-carosel {
  width: 100%;
}
.upcoming__wrapper-right .product__tab-carosel .tab__content-wrapper {
  display: flex;
  flex-direction: row;
  padding-bottom: 32px;
}
.upcoming__wrapper-right .product__tab-carosel .tab__content-wrapper .product-image {
  width: 100%;
  background: #F6F2EF;
}
.upcoming__wrapper-right .product__tab-carosel .tab__content-wrapper .product-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
@media (max-width: 575.98px) {
  .upcoming__wrapper-right .product__tab-carosel .tab__content-wrapper .product-image img {
    height: 360px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .upcoming__wrapper-right .product__tab-carosel .tab__content-wrapper .product-image img {
    height: 400px;
  }
}
.upcoming__wrapper-right .product__tab-carosel .tab__content-wrapper .product-info {
  text-align: center;
  padding: 20px 10px;
  width: 100%;
}
.upcoming__wrapper-right .product__tab-carosel .tab__content-wrapper .product-info p {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  color: #414652;
}
.upcoming__wrapper-right .product__tab-carosel .tab__content-wrapper .product-info h5 {
  color: #111827;
  font-size: 24px;
  line-height: 32px;
  font-weight: 400;
  margin-top: 4px;
  margin-bottom: 8px;
}
.upcoming__wrapper-right .product__tab-carosel .swiper-pagination-bullet {
  color: #EDE5DF !important;
  width: 60px !important;
  height: 3px !important;
  border-radius: unset !important;
  transition: width 150ms ease-in-out;
}
@media (max-width: 575.98px) {
  .upcoming__wrapper-right .product__tab-carosel .swiper-pagination-bullet {
    width: 10px !important;
    height: 3px !important;
  }
}
.upcoming__wrapper-right .product__tab-carosel .swiper-pagination-bullet-active {
  width: 60px !important;
  height: 3px !important;
  background: #A57E60 !important;
  border-radius: unset !important;
}
@media (max-width: 575.98px) {
  .upcoming__wrapper-right .product__tab-carosel .swiper-pagination-bullet-active {
    width: 10px !important;
    height: 3px !important;
  }
}
.upcoming__wrapper-right .product__tab-carosel .swiper-horizontal > .swiper-pagination-bullets,
.upcoming__wrapper-right .product__tab-carosel .swiper-pagination-bullets.swiper-pagination-horizontal,
.upcoming__wrapper-right .product__tab-carosel .swiper-pagination-custom, .upcoming__wrapper-right .product__tab-carosel .swiper-pagination-fraction {
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
}
.upcoming__wrapper-right .product__tab-carosel .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
  display: unset !important;
}
.upcoming__wrapper-right .swiper-pagination-bullet:not(:last-child)::after {
  background-color: unset;
}
.upcoming__wrapper-right .swiper-slide {
  transition: transform 1.5s ease-in-out;
}

.subcription__mailchimp-form {
  position: relative;
}
.subcription__mailchimp-form .cta__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.subcription__mailchimp-form .container-fluid {
  position: relative;
  z-index: 2;
}
.subcription__mailchimp-form .subscribe-email {
  display: flex;
  justify-content: center;
  position: relative;
}
@media (max-width: 575.98px) {
  .subcription__mailchimp-form .subscribe-email {
    flex-direction: column;
    gap: 10px;
  }
}
.subcription__mailchimp-form .cta__subscribe form input[type=email] {
  width: 100%;
}
.subcription__mailchimp-form .cta__subscribe form button {
  width: unset;
  padding: 0 20px;
  position: absolute;
  right: 0;
  top: 0;
}
@media (max-width: 575.98px) {
  .subcription__mailchimp-form .cta__subscribe form button {
    position: relative;
  }
}

.discount__card-wrapper {
  min-height: 400px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.discount__card-wrapper .section__title span {
  margin-bottom: 0;
}
.discount__card-wrapper .section__title .main__title {
  line-height: 60px;
}
.discount__card-wrapper .discount__content {
  height: 100%;
  display: flex;
  align-items: center;
}
@media (max-width: 400px) {
  .discount__card-wrapper .discount__content {
    flex-direction: column;
  }
  .discount__card-wrapper .discount__content .discount__info {
    padding: 0 15px 15px 15px;
  }
}
.discount__card-wrapper .discount__image {
  height: 100%;
}
.discount__card-wrapper .discount__image img {
  height: inherit;
}

.discount__card-wrapper__v3 {
  min-height: 400px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.discount__card-wrapper__v3 .section__title__v3 span {
  margin-bottom: 0;
}
.discount__card-wrapper__v3 .section__title__v3 .main__title__v3 {
  line-height: 60px;
}
.discount__card-wrapper__v3 .discount__content__v3 {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px), (max-width: 400px) {
  .discount__card-wrapper__v3 .discount__content__v3 {
    flex-direction: column !important;
  }
  .discount__card-wrapper__v3 .discount__content__v3 .discount__info__v3 {
    padding: 0 15px 15px 15px;
  }
}
.discount__card-wrapper__v3 .discount__image__v3 {
  height: 100%;
  min-width: 30% !important;
}
.discount__card-wrapper__v3 .discount__image__v3 img {
  height: inherit;
}

.cta_wapper_2 .subscribe-email {
  display: flex;
}
@media (max-width: 575.98px) {
  .cta_wapper_2 .subscribe-email {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
}
.cta_wapper_2 .subscribe-email i, .cta_wapper_2 .subscribe-email span {
  display: none;
}
.cta_wapper_2 .subscribe-email .medical__btn:after {
  display: none;
}

.cta__wrapper-1 .subscribe-email input::placeholder {
  font-size: inherit;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px), (max-width: 400px) {
  .cta_wapper_4 .cta__v4-wrapper .cta__v4-flex {
    flex-direction: column;
  }
}
.cta_wapper_4 .cta__v4-wrapper .cta__v4-flex .cta__img {
  width: 40%;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .cta_wapper_4 .cta__v4-wrapper .cta__v4-flex .cta__img {
    width: 60%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .cta_wapper_4 .cta__v4-wrapper .cta__v4-flex .cta__img {
    width: 70%;
  }
}
.cta_wapper_4 .cta__v4-wrapper .cta__v4-flex .cta-subs {
  padding: 0 5%;
  text-align: center;
}
.cta_wapper_4 .cta__v4-wrapper .cta__v4-flex .cta-subs .cta__content .cta__title h3 {
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: 74px;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px), (max-width: 400px) {
  .cta_wapper_4 .cta__v4-wrapper .cta__v4-flex .cta-subs .cta__content .cta__title h3 {
    font-size: 40px;
    line-height: 60px;
  }
}
.cta_wapper_4 .cta__v4-wrapper .cta__v4-flex .cta-subs .cta__content p {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin: 0;
  padding-bottom: 28px;
  padding-top: 10px;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px), (max-width: 400px) {
  .cta_wapper_4 .cta__v4-wrapper .cta__v4-flex .cta-subs .cta__content p {
    font-size: 14px;
    line-height: 20px;
  }
}
.cta_wapper_4 .cta__v4-wrapper .cta__v4-flex .cta-subs .cta__content .cta__subscribe_v4 form {
  margin-top: 30px;
}
.cta_wapper_4 .cta__v4-wrapper .cta__v4-flex .cta-subs .cta__content .cta__subscribe_v4 form input[type=email] {
  margin-bottom: 10px;
  width: 62%;
  border: 1px solid #CDDBF5;
  margin-right: 19px;
  padding: 0 15px;
  outline: none;
  height: 50px;
}
.cta_wapper_4 .cta__v4-wrapper .cta__v4-flex .cta-subs .cta__content .cta__subscribe_v4 form input[type=email]::placeholder {
  color: var(--st-grey-1);
}
@media (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .cta_wapper_4 .cta__v4-wrapper .cta__v4-flex .cta-subs .cta__content .cta__subscribe_v4 form input[type=email] {
    width: 100%;
  }
}
.cta_wapper_4 .cta__v4-wrapper .cta__v4-flex .cta-subs .cta__content .cta__subscribe_v4 form button {
  background: var(--st-theme-1);
  color: #fff;
  font-weight: 600;
  outline: none;
}
.cta_wapper_4 .cta__v4-wrapper .cta__v4-flex .cta-subs .cta__content .cta__subscribe_v4 form button:hover {
  color: var(--st-theme-1);
  background-color: var(--st-theme-2);
}
@media (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .cta_wapper_4 .cta__v4-wrapper .cta__v4-flex .cta-subs .cta__content .cta__subscribe_v4 form button {
    padding: -1px;
    width: 100%;
  }
}

.benariz__brand-grid {
  width: 100%;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px) {
  .benariz__brand-grid {
    grid-template-columns: repeat(4, 1fr) !important;
  }
  .benariz__brand-grid .brand-item:nth-child(4),
  .benariz__brand-grid .brand-item:nth-child(8),
  .benariz__brand-grid .brand-item:nth-child(12),
  .benariz__brand-grid .brand-item:nth-child(16),
  .benariz__brand-grid .brand-item:nth-child(20),
  .benariz__brand-grid .brand-item:nth-child(24),
  .benariz__brand-grid .brand-item:nth-child(28) {
    border-right: none !important;
  }
  .benariz__brand-grid .brand-item:nth-child(6),
  .benariz__brand-grid .brand-item:nth-child(18) {
    border-right: 1px solid #E8E8EA !important;
  }
  .benariz__brand-grid .brand-item:nth-child(25),
  .benariz__brand-grid .brand-item:nth-child(26),
  .benariz__brand-grid .brand-item:nth-child(27),
  .benariz__brand-grid .brand-item:nth-child(28) {
    border-bottom: 1px solid #E8E8EA !important;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px) {
  .benariz__brand-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  .benariz__brand-grid .brand-item:nth-child(3),
  .benariz__brand-grid .brand-item:nth-child(6),
  .benariz__brand-grid .brand-item:nth-child(9),
  .benariz__brand-grid .brand-item:nth-child(12),
  .benariz__brand-grid .brand-item:nth-child(15),
  .benariz__brand-grid .brand-item:nth-child(18),
  .benariz__brand-grid .brand-item:nth-child(21),
  .benariz__brand-grid .brand-item:nth-child(24),
  .benariz__brand-grid .brand-item:nth-child(27),
  .benariz__brand-grid .brand-item:nth-child(30) {
    border-right: none !important;
  }
  .benariz__brand-grid .brand-item:nth-child(25),
  .benariz__brand-grid .brand-item:nth-child(26),
  .benariz__brand-grid .brand-item:nth-child(27) {
    border-bottom: 1px solid #E8E8EA !important;
  }
}
@media (max-width: 575.98px) {
  .benariz__brand-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .benariz__brand-grid .brand-item:nth-child(2),
  .benariz__brand-grid .brand-item:nth-child(4),
  .benariz__brand-grid .brand-item:nth-child(6),
  .benariz__brand-grid .brand-item:nth-child(8),
  .benariz__brand-grid .brand-item:nth-child(10),
  .benariz__brand-grid .brand-item:nth-child(12),
  .benariz__brand-grid .brand-item:nth-child(14),
  .benariz__brand-grid .brand-item:nth-child(16),
  .benariz__brand-grid .brand-item:nth-child(18),
  .benariz__brand-grid .brand-item:nth-child(20),
  .benariz__brand-grid .brand-item:nth-child(22),
  .benariz__brand-grid .brand-item:nth-child(24),
  .benariz__brand-grid .brand-item:nth-child(26),
  .benariz__brand-grid .brand-item:nth-child(28),
  .benariz__brand-grid .brand-item:nth-child(30) {
    border-right: none !important;
  }
  .benariz__brand-grid .brand-item:nth-child(25),
  .benariz__brand-grid .brand-item:nth-child(26),
  .benariz__brand-grid .brand-item:nth-child(27),
  .benariz__brand-grid .brand-item:nth-child(28) {
    border-bottom: 1px solid #E8E8EA !important;
  }
}
@media (max-width: 400px) {
  .benariz__brand-grid {
    grid-template-columns: repeat(1, 1fr) !important;
  }
  .benariz__brand-grid .brand-item:nth-child(1),
  .benariz__brand-grid .brand-item:nth-child(2),
  .benariz__brand-grid .brand-item:nth-child(3),
  .benariz__brand-grid .brand-item:nth-child(4),
  .benariz__brand-grid .brand-item:nth-child(5),
  .benariz__brand-grid .brand-item:nth-child(6),
  .benariz__brand-grid .brand-item:nth-child(7),
  .benariz__brand-grid .brand-item:nth-child(8),
  .benariz__brand-grid .brand-item:nth-child(9),
  .benariz__brand-grid .brand-item:nth-child(10),
  .benariz__brand-grid .brand-item:nth-child(11),
  .benariz__brand-grid .brand-item:nth-child(12),
  .benariz__brand-grid .brand-item:nth-child(13),
  .benariz__brand-grid .brand-item:nth-child(14),
  .benariz__brand-grid .brand-item:nth-child(15),
  .benariz__brand-grid .brand-item:nth-child(16),
  .benariz__brand-grid .brand-item:nth-child(17),
  .benariz__brand-grid .brand-item:nth-child(18),
  .benariz__brand-grid .brand-item:nth-child(19),
  .benariz__brand-grid .brand-item:nth-child(20),
  .benariz__brand-grid .brand-item:nth-child(21),
  .benariz__brand-grid .brand-item:nth-child(22),
  .benariz__brand-grid .brand-item:nth-child(23),
  .benariz__brand-grid .brand-item:nth-child(24),
  .benariz__brand-grid .brand-item:nth-child(25),
  .benariz__brand-grid .brand-item:nth-child(26),
  .benariz__brand-grid .brand-item:nth-child(27),
  .benariz__brand-grid .brand-item:nth-child(28),
  .benariz__brand-grid .brand-item:nth-child(29),
  .benariz__brand-grid .brand-item:nth-child(30) {
    border-right: none !important;
  }
  .benariz__brand-grid .brand-item:nth-child(29) {
    border-bottom: 1px solid #E8E8EA !important;
  }
}
.benariz__brand-grid .brand-item {
  position: relative;
  height: 130px;
  width: 100%;
}
.benariz__brand-grid .brand-item a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.benariz__brand-grid .brand-item a img {
  max-height: 52px;
  transition: transform 0.3s ease;
}
.benariz__brand-grid .brand-item a img:hover {
  transform: scale(1.1);
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .benariz__brand-grid-col-5 {
    gap: 20px;
  }
  .benariz__brand-grid-col-5 .brand-item {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1019607843);
    border: none !important;
    padding: 10px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px) {
  .benariz__brand-grid-col-5 .brand-item:nth-child(6),
  .benariz__brand-grid-col-5 .brand-item:nth-child(18) {
    border-right: none !important;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .benariz__brand-grid-col-4 {
    gap: 20px;
  }
  .benariz__brand-grid-col-4 .brand-item {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1019607843);
    border: none !important;
    padding: 10px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px) {
  .benariz__brand-grid-col-3 {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  .benariz__brand-grid-col-3 .brand-item:nth-child(4),
  .benariz__brand-grid-col-3 .brand-item:nth-child(8),
  .benariz__brand-grid-col-3 .brand-item:nth-child(12),
  .benariz__brand-grid-col-3 .brand-item:nth-child(16),
  .benariz__brand-grid-col-3 .brand-item:nth-child(20),
  .benariz__brand-grid-col-3 .brand-item:nth-child(24),
  .benariz__brand-grid-col-3 .brand-item:nth-child(28) {
    border-right: 1px solid #E8E8EA !important;
  }
  .benariz__brand-grid-col-3 .brand-item:nth-child(3),
  .benariz__brand-grid-col-3 .brand-item:nth-child(6),
  .benariz__brand-grid-col-3 .brand-item:nth-child(9),
  .benariz__brand-grid-col-3 .brand-item:nth-child(12),
  .benariz__brand-grid-col-3 .brand-item:nth-child(15),
  .benariz__brand-grid-col-3 .brand-item:nth-child(18),
  .benariz__brand-grid-col-3 .brand-item:nth-child(21),
  .benariz__brand-grid-col-3 .brand-item:nth-child(24),
  .benariz__brand-grid-col-3 .brand-item:nth-child(27),
  .benariz__brand-grid-col-3 .brand-item:nth-child(30) {
    border-right: none !important;
  }
}
@media (max-width: 575.98px) {
  .benariz__brand-grid-col-3 {
    gap: 20px;
  }
  .benariz__brand-grid-col-3 .brand-item {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1019607843);
    border: none !important;
    padding: 10px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .benariz__brand-grid-col-2 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px) {
  .benariz__brand-grid-col-2 .brand-item:nth-child(6),
  .benariz__brand-grid-col-2 .brand-item:nth-child(18) {
    border-right: none !important;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px) {
  .benariz__brand-grid-col-2 .brand-item:nth-child(3),
  .benariz__brand-grid-col-2 .brand-item:nth-child(6),
  .benariz__brand-grid-col-2 .brand-item:nth-child(9),
  .benariz__brand-grid-col-2 .brand-item:nth-child(12),
  .benariz__brand-grid-col-2 .brand-item:nth-child(15),
  .benariz__brand-grid-col-2 .brand-item:nth-child(18),
  .benariz__brand-grid-col-2 .brand-item:nth-child(21),
  .benariz__brand-grid-col-2 .brand-item:nth-child(24),
  .benariz__brand-grid-col-2 .brand-item:nth-child(27),
  .benariz__brand-grid-col-2 .brand-item:nth-child(30) {
    border-right: 1px solid #E8E8EA !important;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px) {
  .benariz__brand-grid-col-2 .brand-item:nth-child(2),
  .benariz__brand-grid-col-2 .brand-item:nth-child(4),
  .benariz__brand-grid-col-2 .brand-item:nth-child(6),
  .benariz__brand-grid-col-2 .brand-item:nth-child(8),
  .benariz__brand-grid-col-2 .brand-item:nth-child(10),
  .benariz__brand-grid-col-2 .brand-item:nth-child(12),
  .benariz__brand-grid-col-2 .brand-item:nth-child(14),
  .benariz__brand-grid-col-2 .brand-item:nth-child(16),
  .benariz__brand-grid-col-2 .brand-item:nth-child(18),
  .benariz__brand-grid-col-2 .brand-item:nth-child(20),
  .benariz__brand-grid-col-2 .brand-item:nth-child(22),
  .benariz__brand-grid-col-2 .brand-item:nth-child(24),
  .benariz__brand-grid-col-2 .brand-item:nth-child(26),
  .benariz__brand-grid-col-2 .brand-item:nth-child(28),
  .benariz__brand-grid-col-2 .brand-item:nth-child(30) {
    border-right: none !important;
  }
}
@media (max-width: 400px) {
  .benariz__brand-grid-col-2 .brand-item:last-child {
    border-top: 1px solid #E8E8EA;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .benariz__brand-grid-col-1 {
    grid-template-columns: repeat(1, 1fr) !important;
  }
}

.cat__v4-section .swiper-button-next, .cat__v4-section .swiper-button-prev {
  display: flex !important;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 40px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 35%;
}
.cat__v4-section .swiper-button-next i, .cat__v4-section .swiper-button-prev i {
  color: var(--st-theme-primary);
  font-size: 24px;
}
.cat__v4-section .swiper-button-prev {
  left: 33px;
}

.category-v4 {
  padding-right: 30px;
}

.category__4-wrapper {
  min-height: 350px;
  margin-right: 0;
}
.category__4-wrapper .cat__4-img {
  height: 244px;
  position: relative;
}
.category__4-wrapper .cat__4-img a, .category__4-wrapper .cat__4-img img {
  width: 100%;
  height: 100%;
}
.category__4-wrapper .cat__4-img img {
  object-fit: cover;
}
.category__4-wrapper .cat__4-info {
  background: #fff;
  padding: 16px 24px;
  width: 100%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
  position: absolute;
  bottom: -42px;
  left: 24px;
  z-index: 99;
}

.hotspot__product .hotspot__product-container .hotspot__area {
  position: relative;
  width: 100%;
}
.hotspot__product .hotspot__product-container .hotspot__area img {
  width: 100%;
  height: 100%;
  display: block;
}
.hotspot__product .hotspot__product-container .hotspot {
  position: absolute;
  cursor: pointer;
}
.hotspot__product .hotspot__product-container .hotspot .hotspot__dot {
  position: absolute;
  width: 24px;
  height: 24px;
  outline: 8px solid rgba(255, 255, 255, 0.4);
  background: white;
  border-radius: 50%;
}
.hotspot__product .hotspot__product-container .hotspot .hotspot__dot:hover {
  outline: 8px solid rgba(218, 161, 76, 0.4);
  background: #DAA14C;
}
.hotspot__product .hotspot__product-container .hotspot .active__hotspot {
  outline: 8px solid rgba(218, 161, 76, 0.4);
  background: #DAA14C;
}
.hotspot__product .hotspot__product-container .hotspot .hotspot__popup {
  display: none;
  width: 100px;
  height: 100px;
  position: absolute;
  top: 12px;
  left: 12px;
  background: #F3F3F4;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.9);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.hotspot__product .hotspot__product-container .hotspot .hotspot__popup img {
  width: 100%;
  height: 100%;
}
.hotspot__product .hotspot__product-container .hotspot:hover .hotspot__popup {
  display: block;
  z-index: 1;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.hotspot__product .hotspot__product-container .f__product-img {
  border-radius: 0;
  overlay: unset;
}
.hotspot__product .hotspot__product-container .f__product-img:hover {
  box-shadow: unset;
}
.hotspot__product .hotspot__product-container .f__product-img:hover img {
  transform: unset;
}
.hotspot__product .hotspot__product-container .f__product-img img {
  border-radius: 0;
}
.hotspot__product .hotspot__product-container .f__p-price {
  display: flex;
  gap: 5px;
}
.hotspot__product .hotspot__product-container .f__p-price .current__price {
  display: flex;
  gap: 10px;
}
.hotspot__product .hotspot__product-container .f__p-price p {
  margin-bottom: 0 !important;
}
.hotspot__product .hotspot__product-container .f__p-content {
  display: flex;
  flex-direction: column;
}
.hotspot__product .hotspot__product-container .single__product-wrapper {
  height: 100%;
}
.hotspot__product .hotspot__product-container .single__product-wrapper .tab__area {
  height: inherit;
  display: flex;
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .hotspot__product .hotspot__product-container .single__product-wrapper .tab__area {
    justify-content: center;
  }
}

.custom-list ul li {
  display: flex;
  align-items: center;
}

.bz-social-icons {
  display: flex;
}
.bz-social-icons a {
  border: 1px solid var(--st-theme-primary);
}
.bz-social-icons a:hover {
  background: var(--st-theme-primary);
}
.bz-social-icons a:hover svg path {
  fill: var(--st-common-white);
}
.bz-social-icons a svg path {
  fill: var(--st-theme-primary);
}

.hero__slider-v6 {
  background-repeat: no-repeat;
  background-size: cover;
}
.hero__slider-v6::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.9490196078);
  z-index: 1;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .hero__slider-v6 .homemade__content {
    width: 75vw;
  }
  .hero__slider-v6 .homemade__img {
    right: 100px;
  }
}

.homemade__slider .homemade__container {
  min-height: 800px;
  display: flex;
  position: relative;
  overflow: hidden;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .homemade__slider .homemade__container {
    flex-direction: column-reverse;
    align-items: center;
  }
}
.homemade__slider .homemade__content {
  display: flex;
  align-items: center;
  height: 800px;
  width: 65vw;
  background-color: #FEF6F2;
  background-position: center;
  background-repeat: no-repeat;
  clip-path: polygon(0 0, 60% 0, 100% 100%, 0% 100%);
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .homemade__slider .homemade__content {
    width: 80vw;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .homemade__slider .homemade__content {
    width: 85vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .homemade__slider .homemade__content {
    width: 100%;
    clip-path: unset;
    height: unset;
    padding: 50px 0;
  }
}
.homemade__slider .homemade__img {
  max-width: 800px;
  max-height: 800px;
  position: absolute;
  z-index: -1;
  right: 240px;
}
.homemade__slider .homemade__img img {
  width: 100%;
  height: 100%;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .homemade__slider .homemade__img {
    right: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .homemade__slider .homemade__img {
    max-width: 500px;
    max-height: 500px;
    position: unset;
    margin: 50px 0;
  }
}
@media (max-width: 575.98px) {
  .homemade__slider .homemade__img {
    padding: 10px;
  }
}
.homemade__slider .homemade__content-wrapper {
  width: 85%;
  padding: 0 90px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .homemade__slider .homemade__content-wrapper {
    padding: 0 120px 0 90px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .homemade__slider .homemade__content-wrapper {
    padding: 0 100px 0 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .homemade__slider .homemade__content-wrapper {
    width: 100%;
    padding: 0 40px;
  }
}
.homemade__slider .homemade__content-wrapper .homemade__btn a {
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--st-theme-primary);
  display: inline-block;
  color: var(--st-text-button);
}
.homemade__slider .section__title {
  padding-bottom: 30px;
}
.homemade__slider .swiper-pagination {
  position: absolute;
  bottom: 40px;
  text-align: center;
  display: flex;
}
.homemade__slider .swiper-pagination-bullet {
  margin: 0 0 !important;
  z-index: 999;
  display: inline-block;
  height: 4px;
  background: #FEEDE6;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}
.homemade__slider .swiper-pagination-bullet::after {
  width: 0;
}
.homemade__slider .swiper-pagination-bullet-active {
  background: var(--st-theme-primary);
  height: 4px;
  border-radius: 4px;
  transition: width 0.3s ease-in-out;
}
.homemade__slider .swiper-pagination-bullet-active::after {
  width: 0;
}

.custom-list .list-icon {
  border: 1px solid var(--st-theme-primary);
}
.custom-list .list-icon svg path {
  fill: var(--st-theme-primary);
}
.custom-list .list-icon svg rect {
  fill: var(--st-theme-primary);
}

.grid__masonry-wrapper {
  width: 100%;
  display: grid;
  grid-gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  grid-auto-rows: 80px;
  grid-auto-flow: dense;
}
@media (max-width: 1024px) {
  .grid__masonry-wrapper {
    grid-template-columns: repeat(2, minmax(100px, 1fr));
    grid-gap: 30px;
  }
}
@media (max-width: 595px) {
  .grid__masonry-wrapper {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 20px;
  }
}
.grid__masonry-wrapper .masonry__image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 8px;
}
.grid__masonry-wrapper .masonry__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.grid__masonry-wrapper .masonry__image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 8px;
}
.grid__masonry-wrapper .masonry__image:hover .masonry__heading {
  opacity: 1;
  visibility: visible;
}
.grid__masonry-wrapper .masonry__image:hover::before {
  opacity: 1;
}
.grid__masonry-wrapper .short {
  grid-row: span 3;
}
.grid__masonry-wrapper .tall {
  grid-row: span 4;
}
.grid__masonry-wrapper .masonry__info {
  position: absolute;
  bottom: 30px;
  left: 30px;
}
.grid__masonry-wrapper .masonry__btn {
  color: var(--st-common-white);
}
.grid__masonry-wrapper .masonry__btn a {
  display: flex;
  align-items: center;
  gap: 8px;
}
.grid__masonry-wrapper .masonry__btn span {
  font-size: 20px;
}
.grid__masonry-wrapper .masonry__heading {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

@media (min-width: 992px) {
  .header__area-v4 .search-suggestions {
    width: 600px;
    left: -75px;
  }
}

.subscribe__form-wrapper_5 {
  width: 100%;
  max-width: 523px;
  margin: 0 auto;
}

.subscribe-email .from-main-wrapper {
  width: 100%;
  background-color: transparent;
  position: relative;
  border-radius: 30px;
  border: 1px solid var(--st-common-white);
}
@media (max-width: 575.98px), (max-width: 400px) {
  .subscribe-email .from-main-wrapper {
    margin-bottom: 75px;
  }
}
.subscribe-email .from-main-wrapper .from-layout-5 {
  background: transparent;
  border: none !important;
  outline: none;
  color: var(--st-common-white);
  width: 100% !important;
  border-radius: 30px !important;
  padding: 0 175px 0 20px;
  text-align: center;
}
@media (max-width: 575.98px), (max-width: 400px) {
  .subscribe-email .from-main-wrapper .from-layout-5 {
    padding: 0 20px;
  }
}
.subscribe-email .from-main-wrapper .from-layout-5::placeholder {
  color: var(--st-common-white);
  font-family: "jost";
}
.subscribe-email .from-main-wrapper .button-layout-5 {
  right: 0px;
  top: 0px;
  position: absolute;
  padding: 11px 24px;
  border-radius: 30px;
  color: var(--st-common-white);
  font-size: 18px;
  font-weight: 500;
  background: var(--st-theme-primary);
  border: none;
  outline: none;
  font-family: "jost";
  width: unset;
}
.subscribe-email .from-main-wrapper .button-layout-5:hover {
  background-color: var(--st-theme-2);
  color: var(--st-common-black);
}
@media (max-width: 575.98px), (max-width: 400px) {
  .subscribe-email .from-main-wrapper .button-layout-5 {
    right: 0px;
    top: 75px;
    width: 100%;
  }
}

.homeo__form .form__group {
  position: relative;
  margin-bottom: 24px;
}
.homeo__form .form__group input::placeholder,
.homeo__form .form__group textarea::placeholder {
  color: var(--st-text-body);
}
.homeo__form .icon__field input,
.homeo__form .icon__field textarea,
.homeo__form .icon__field select {
  width: 100%;
}
.homeo__form input,
.homeo__form textarea,
.homeo__form select {
  padding: 12px 16px;
  padding-right: 40px;
  border: 1px solid #E8E8EA;
  font-size: 15px;
  box-sizing: border-box;
}
.homeo__form textarea {
  vertical-align: middle;
  padding-right: 40px;
  min-height: 126px;
  resize: none;
}
.homeo__form .textarea__icon-field .field__icon {
  top: 25px;
}
.homeo__form .field__icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  pointer-events: none;
  font-size: 16px;
}
.homeo__form .btn__wrapper {
  position: relative;
}
.homeo__form .btn__wrapper i {
  position: absolute;
  left: 118px;
  top: 12px;
  color: var(--st-common-white);
  transition: all 0.3s ease;
}
.homeo__form .submit-btn {
  background-color: var(--st-theme-primary);
  color: var(--st-common-white);
  padding: 12px 40px 12px 25px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.homeo__form .date__custom {
  position: relative;
}
.homeo__form .date__custom input[type=date]::-webkit-calendar-picker-indicator {
  opacity: 0;
  position: absolute;
  right: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.homeo__form .date__custom .date__wrapper {
  position: relative;
  display: block;
}
.homeo__form .date__custom input[type=date] {
  padding-right: 40px;
}
.homeo__form .wpcf7-not-valid-tip {
  position: absolute;
  bottom: -40px;
  left: 15px;
  font-size: 12px;
  color: #f00;
  width: 100%;
}
.homeo__form .form__group.icon__field {
  position: relative;
}
.homeo__form input[type=date].empty-date {
  position: relative;
}
.homeo__form input[type=date].empty-date:before {
  position: absolute;
  content: attr(data-placeholder);
  color: var(--st-text-body);
  width: 100%;
  font-size: var(--st-fz-body);
  line-height: var(--st-lh-button);
  font-weight: var(--st-fw-regular);
}
.homeo__form input[type=date].empty-date::-webkit-datetime-edit {
  color: transparent;
}
.homeo__form input[type=date]:not(.empty-date)::-webkit-datetime-edit {
  color: inherit;
}

.homeo__image-content {
  height: 100%;
  padding-bottom: 51px;
}
.homeo__image-content .homeo__image {
  height: 100%;
  width: 100%;
}
.homeo__image-content .homeo__image img {
  height: 100%;
  width: 100%;
}
.homeo__image-content .homeo__content {
  background: var(--st-common-white);
  clip-path: polygon(100% 0, 95% 50%, 100% 100%, 0 100%, 5% 50%, 0 0);
  margin: 0 20px;
  margin-top: -51px !important;
}
.homeo__image-content .homeo__content .homeo__text {
  font-size: var(--st-fz-h3);
  line-height: 64px;
  font-weight: var(--st-fw-bold);
  padding: 20px 96px;
}

.tailor__hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  display: flex;
  align-items: center;
  height: 800px;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .tailor__hero {
    height: 600px;
  }
}
@media (max-width: 575.98px) {
  .tailor__hero {
    height: 500px;
  }
}
.tailor__hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.tailor__hero .hero__content {
  position: relative;
  z-index: 2;
}
.tailor__hero .tailor__hero-bg {
  background-size: cover;
  background-position: center left;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .tailor__hero .tailor__hero-bg {
    background-position: center center;
  }
}
.tailor__hero .video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tailor__hero .shop__btn {
  border-radius: 0;
  padding: 14px 28px;
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .tailor__hero .shop__btn {
    padding: 10px 20px;
  }
}

.call-to-action-wapper {
  padding: 0 5%;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .call-to-action-wapper {
    text-align: center;
  }
}
.call-to-action-wapper .action-wapper .btn-wrapper-call {
  gap: 35px;
}
@media (max-width: 1460px) {
  .call-to-action-wapper .action-wapper .btn-wrapper-call {
    flex-direction: column-reverse;
    justify-content: flex-end;
    gap: 20px;
  }
}
.call-to-action-wapper .action-wapper .btn-wrapper-call .call-action-btn {
  display: flex;
  align-items: center;
  gap: 10px;
}
.call-to-action-wapper .action-wapper .btn-wrapper-call .call-action-btn .call-btn-icon {
  height: 48px;
  width: 48px;
  color: var(--st-theme-primary);
  border-radius: 30px;
  border: 1px solid var(--st-theme-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.call-to-action-wapper .action-wapper .btn-wrapper-call .call-action-btn .call-btn-icon svg {
  fill: var(--st-theme-primary);
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .call-to-action-wapper .action-wapper .btn-wrapper-call .call-action-btn .call-text {
    text-align: left;
  }
}
.call-to-action-wapper .action-wapper .btn-wrapper-call .call-action-btn .call-text span {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}
.call-to-action-wapper .action-wapper .btn-wrapper-call .call-action-btn .call-text h6 {
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
}

.crockery__hero {
  margin-bottom: 70px;
  height: 650px;
  background-color: #F3F3F4;
  display: flex;
  align-items: end;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .crockery__hero {
    margin-bottom: 50px;
  }
}
.crockery__hero .hero__content-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: end;
}
.crockery__hero .hero__content-container {
  width: 100%;
}
.crockery__hero .discount__container {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  padding: 20px 32px;
  background-color: var(--st-theme-primary);
  display: inline-block;
}
.crockery__hero .discount__container h3 {
  color: var(--st-common-white);
  margin-bottom: 0;
  font-size: 52px;
  line-height: 68px;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .crockery__hero .discount__container {
    top: -30px;
    padding: 15px 25px;
  }
  .crockery__hero .discount__container h3 {
    font-size: 36px;
    line-height: 52px;
  }
}
@media (max-width: 575.98px) {
  .crockery__hero .discount__container {
    padding: 10px 20px;
  }
  .crockery__hero .discount__container h3 {
    font-size: 26px !important;
    line-height: 36px !important;
  }
}
@media (max-width: 380px) {
  .crockery__hero .discount__container {
    padding: 10px 15px;
  }
  .crockery__hero .discount__container h3 {
    font-size: 20px !important;
    line-height: 30px !important;
  }
}
.crockery__hero .hero__content {
  margin-bottom: -70px;
  padding: 100px 80px 80px 80px;
  text-align: center;
  position: relative;
  background: var(--st-common-white);
  box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.07);
  animation: riseUp 1.5s ease-out forwards;
  opacity: 0;
  transform: translateY(100%);
  position: relative;
}
@keyframes riseUp {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .crockery__hero .hero__content {
    padding: 80px 60px 60px 60px;
    margin-bottom: -50px;
  }
}
@media (max-width: 575.98px) {
  .crockery__hero .hero__content {
    padding: 50px 30px 30px 30px;
    margin-bottom: -50px;
  }
}
.crockery__hero .content__bottom {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .crockery__hero .content__bottom {
    gap: 20px;
  }
}
.crockery__hero .hero__title h2, .crockery__hero .hero__title p, .crockery__hero .hero__description h2, .crockery__hero .hero__description p {
  margin-bottom: 0;
}
.crockery__hero .hero__title h2, .crockery__hero .hero__description h2 {
  font-size: 80px;
  line-height: 96px;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .crockery__hero .hero__title h2, .crockery__hero .hero__description h2 {
    font-size: 60px;
    line-height: 76px;
  }
}
@media (max-width: 575.98px) {
  .crockery__hero .hero__title h2, .crockery__hero .hero__description h2 {
    font-size: 36px;
    line-height: 52px;
  }
}
.crockery__hero .shop__btn {
  padding: 12px 28px;
  border-radius: 0;
  color: var(--st-common-white);
  background-color: var(--st-theme-primary);
  border: 1px solid transparent;
  transition: all 0.3s ease;
  margin-top: 0;
  font-size: 20px;
  line-height: 24px;
}
.crockery__hero .shop__btn:hover {
  border: 1px solid var(--st-theme-primary);
  color: var(--st-theme-primary);
  background-color: var(--st-common-white);
}

.Before-After-main-wapper {
  place-items: center;
}
.Before-After-main-wapper .Before-After-wapper {
  place-content: center;
  position: relative;
  overflow: hidden;
  --position: 50%;
}
.Before-After-main-wapper .Before-After-wapper .Before-After-img {
  max-width: 700px;
  aspect-ratio: 1/1;
}
.Before-After-main-wapper .Before-After-wapper .Before-After-img .slider-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
}
.Before-After-main-wapper .Before-After-wapper .Before-After-img .image-before {
  position: absolute;
  inset: 0;
  width: var(--position);
  filter: grayscale(100%);
}
.Before-After-main-wapper .Before-After-wapper .Before-After-img .before-left-img .overlay-before-date {
  position: absolute;
  bottom: 28px;
  left: 28px;
  color: #fff;
}
.Before-After-main-wapper .Before-After-wapper .Before-After-img .before-left-img .overlay-before-date span {
  display: block;
}
.Before-After-main-wapper .Before-After-wapper .Before-After-img .after-right-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.Before-After-main-wapper .Before-After-wapper .Before-After-img .after-right-img .overlay-after-date {
  position: absolute;
  bottom: 28px;
  right: 28px;
  color: #fff;
}
.Before-After-main-wapper .Before-After-wapper .Before-After-img .after-right-img .overlay-after-date span {
  display: block;
}
.Before-After-main-wapper .slider {
  position: absolute;
  inset: 0;
  cursor: pointer;
  opacity: 0;
  /* for Firefox */
  width: 100%;
  height: 100%;
}
.Before-After-main-wapper .slider:focus-visible ~ .slider-button {
  outline: 5px solid black;
  outline-offset: 3px;
}
.Before-After-main-wapper .slider-line {
  position: absolute;
  inset: 0;
  width: 0.5rem;
  height: 100%;
  background-color: var(--st-common-white);
  left: var(--position);
  transform: translateX(-50%);
  pointer-events: none;
}
.Before-After-main-wapper .slider-button {
  position: absolute;
  width: 100px;
  height: 100px;
  background-color: var(--st-common-white);
  border-radius: 50%;
  place-items: center;
  top: 50%;
  left: var(--position);
  transform: translate(-50%, -50%);
  pointer-events: none;
  box-shadow: 1px 1px 1px hsla(0, 50%, 2%, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}
.Before-After-main-wapper .slider-button svg {
  fill: var(--st-theme-1);
}
.Before-After-main-wapper .slider-button svg path {
  fill: var(--st-theme-1);
}

/**
* Crockery Category Tab Style
*/
.ntct__product-tabs {
  /** 
  *  Loading and error message style
  */
}
.ntct__product-tabs .ntct__tab-link {
  text-align: center;
  color: var(--st-theme-primary);
  padding: 12px 0;
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
  cursor: pointer;
}
@media (max-width: 1288px) {
  .ntct__product-tabs .ntct__tab-link {
    font-size: 22px;
    line-height: 32px;
  }
}
@media (max-width: 380px) {
  .ntct__product-tabs .ntct__tab-link {
    padding: 7px 0;
    font-size: 17px;
    line-height: 24px;
  }
}
.ntct__product-tabs .tabs__nav .active {
  border-bottom: 3px solid var(--st-theme-primary);
}
.ntct__product-tabs .crockery__top-wrapper {
  border-top: 1px solid #E8E8EA;
  border-bottom: 1px solid #E8E8EA;
}
.ntct__product-tabs .ntct__products-content {
  margin-top: 45px;
  padding: 0 25px;
}
@media (max-width: 610px) {
  .ntct__product-tabs .ntct__products-content {
    margin-top: 30px;
  }
}
.ntct__product-tabs .ntct__products-content .product__wrapper {
  border: 1px solid #E8E8EA;
  position: relative;
  min-height: 420px;
  overflow: hidden;
}
.ntct__product-tabs .ntct__products-content .product__wrapper:hover .product__overlay {
  opacity: 1;
}
.ntct__product-tabs .ntct__products-content .product__overlay {
  position: absolute;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--st-theme-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 24px 24px 47px 24px;
}
.ntct__product-tabs .ntct__products-content .overlay__content {
  width: 100%;
  height: 100%;
  border: 1px solid var(--st-common-white);
  position: relative;
}
.ntct__product-tabs .crockery__icons {
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  background: var(--st-theme-primary);
}
.ntct__product-tabs .crockery__icons button {
  width: 48px;
  height: 48px;
  background: var(--st-theme-primary);
  border: 1px solid var(--st-theme-secondery);
}
.ntct__product-tabs .crockery__icons i {
  width: 100%;
  height: 100%;
  font-size: 24px;
  color: var(--st-theme-secondery);
}
.ntct__product-tabs .crockery__icons button:nth-of-type(1),
.ntct__product-tabs .crockery__icons button:nth-of-type(2),
.ntct__product-tabs .crockery__icons button:nth-of-type(3) {
  transition: background 0.3s ease, border 0.3s ease;
}
.ntct__product-tabs .crockery__icons button:nth-of-type(1):hover,
.ntct__product-tabs .crockery__icons button:nth-of-type(2):hover,
.ntct__product-tabs .crockery__icons button:nth-of-type(3):hover {
  background: var(--st-theme-secondery);
  border: 1px solid var(--st-theme-secondery);
}
.ntct__product-tabs .crockery__icons button:nth-of-type(1):hover i,
.ntct__product-tabs .crockery__icons button:nth-of-type(2):hover i,
.ntct__product-tabs .crockery__icons button:nth-of-type(3):hover i {
  color: var(--st-theme-primary);
}
.ntct__product-tabs .active__icon-cart {
  display: flex;
  justify-content: center;
  background: var(--st-theme-secondery) !important;
  border: 1px solid var(--st-theme-secondery) !important;
  color: var(--st-theme-primary) !important;
}
.ntct__product-tabs .content__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 70px;
  padding: 0 10px;
}
.ntct__product-tabs .product__title {
  padding: 0;
}
.ntct__product-tabs .product__title h5 {
  margin-bottom: 0;
  color: var(--st-theme-secondery);
  text-align: center;
}
@media (max-width: 1288px) {
  .ntct__product-tabs .product__title h5 {
    font-size: 22px !important;
    line-height: 32px !important;
  }
}
@media (max-width: 768px) {
  .ntct__product-tabs .product__title h5 {
    font-size: 18px !important;
    line-height: 28px !important;
  }
}
.ntct__product-tabs .product__review {
  color: #F3C640;
}
.ntct__product-tabs .wpc-tooltip-cart[data-tooltip]:hover::after {
  background: var(--st-theme-secondery);
  color: var(--st-theme-primary);
  bottom: unset;
  top: -40px;
}
.ntct__product-tabs .add__success-message {
  position: absolute;
  background: var(--st-theme-secondery);
  left: -42px;
  top: -80px;
  width: 150%;
  padding: 10px;
  font-size: 16px;
  z-index: 1;
}
.ntct__product-tabs .wishlist-product-name,
.ntct__product-tabs .compare-product-name {
  display: none;
}
.ntct__product-tabs .page-link-style {
  color: var(--st-theme-primary);
}
.ntct__product-tabs .product__prices {
  display: flex;
  gap: 8px;
  text-align: center;
}
.ntct__product-tabs .product__prices .regular__price {
  font-size: 18px;
  line-height: 28px;
  color: #E8E8EA;
  text-decoration: line-through;
  display: flex;
  align-items: center;
}
@media (max-width: 1288px) {
  .ntct__product-tabs .product__prices .regular__price {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (max-width: 768px) {
  .ntct__product-tabs .product__prices .regular__price {
    font-size: 14px;
    line-height: 22px;
  }
}
.ntct__product-tabs .product__prices .sale__price,
.ntct__product-tabs .product__prices .no__sale {
  font-size: 24px;
  line-height: 36px;
  font-weight: 600;
  color: var(--st-theme-secondery);
  text-decoration: none;
}
@media (max-width: 1288px) {
  .ntct__product-tabs .product__prices .sale__price,
  .ntct__product-tabs .product__prices .no__sale {
    font-size: 22px;
    line-height: 32px;
  }
}
@media (max-width: 768px) {
  .ntct__product-tabs .product__prices .sale__price,
  .ntct__product-tabs .product__prices .no__sale {
    font-size: 18px;
    line-height: 28px;
  }
}
.ntct__product-tabs .product__prices .no__sale {
  display: flex;
  align-self: center;
}
.ntct__product-tabs .product__offer {
  background: var(--st-theme-primary);
  color: var(--st-theme-secondery);
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  transform: rotate(-45deg);
  position: absolute;
  text-align: center;
  width: 150px;
  top: 30px;
  left: -30px;
}
.ntct__product-tabs .product__offer span {
  padding: 5px 0;
}
.ntct__product-tabs .product__image {
  width: 100%;
  height: 100%;
}
.ntct__product-tabs .product__image img {
  width: inherit;
  height: inherit;
  object-fit: contain;
}
.ntct__product-tabs .cart__button {
  position: relative;
}
.ntct__product-tabs .cart__button button {
  padding: 12px 24px;
  background: var(--st-theme-secondery);
  color: var(--st-theme-primary);
  border: 1px solid var(--st-theme-primary);
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
}
@media (max-width: 1288px) {
  .ntct__product-tabs .cart__button button {
    padding: 7px 18px;
    font-size: 18px;
    line-height: 22px;
  }
}
@media (max-width: 610px) {
  .ntct__product-tabs .cart__button button {
    padding: 5px 15px;
    font-size: 16px;
    line-height: 20px;
  }
}
.ntct__product-tabs .cart__button .sz-add-to-cart-button {
  background: var(--st-theme-primary);
  color: var(--st-theme-secondery);
  border: 1px solid var(--st-theme-secondery);
  transition: background 0.3s ease, color 0.3s ease, border 0.3s ease;
}
.ntct__product-tabs .cart__button .sz-add-to-cart-button:hover {
  background: var(--st-theme-secondery);
  color: var(--st-theme-primary);
  border: 1px solid transparent;
}
.ntct__product-tabs .cart__button .add__success-message {
  width: 100%;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.ntct__product-tabs .tab__title-nav .swiper-button-next,
.ntct__product-tabs .tab__title-nav .swiper-button-prev {
  display: flex !important;
  align-items: center;
}
.ntct__product-tabs .tab__title-nav i {
  color: var(--st-theme-primary);
  font-size: 24px;
}
.ntct__product-tabs .tab__title-nav .swiper-button-next {
  right: 7px !important;
}
.ntct__product-tabs .tab__title-nav .swiper-button-prev {
  left: 7px;
}
.ntct__product-tabs .tab__content-nav .swiper-button-next,
.ntct__product-tabs .tab__content-nav .swiper-button-prev {
  height: 48px;
  width: 48px;
  display: flex !important;
  justify-content: center;
  align-items: center;
  background: var(--st-theme-secondery);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.07);
}
.ntct__product-tabs .tab__content-nav i {
  color: var(--st-theme-primary);
  font-size: 24px;
}
.ntct__product-tabs .tab__content-nav .swiper-button-next {
  right: 7px !important;
}
.ntct__product-tabs .tab__content-nav .swiper-button-prev {
  left: 7px;
}
.ntct__product-tabs .container-fluid {
  padding: 0;
  width: 95% !important;
}
.ntct__product-tabs .crockery__tabs-nav {
  padding: 0 25px;
}
.ntct__product-tabs .custom-loading,
.ntct__product-tabs .custom-error {
  text-align: center;
  padding: 40px 20px;
  color: #444;
  background: var(--st-common-white);
}
.ntct__product-tabs .custom-loading .spinner {
  width: 40px;
  height: 40px;
  margin: 0 auto 15px;
  border: 4px solid #ddd;
  border-top: 4px solid var(--st-theme-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.ntct__product-tabs .custom-error .error-icon {
  font-size: 30px;
  display: block;
  margin-bottom: 10px;
  color: #e74c3c;
}
.ntct__product-tabs .custom-loading p,
.ntct__product-tabs .custom-error p {
  font-size: 16px;
  margin: 0;
}

/**
 * Tailors - Image carousel layout 2 
 */
.nttt__image-carousel-layout-2 {
  position: relative;
}
.nttt__image-carousel-layout-2.slick-dotted {
  margin: 0 0 80px 0;
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .nttt__image-carousel-layout-2.slick-dotted {
    margin: 0 0 40px 0;
  }
}
.nttt__image-carousel-layout-2 .slide-item {
  padding: 80px 0;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 991px) {
  .nttt__image-carousel-layout-2 .slide-item {
    padding: 60px 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .nttt__image-carousel-layout-2 .slide-item {
    padding: 40px 0;
  }
}
.nttt__image-carousel-layout-2 .slide-item img {
  margin: 0 auto;
  transition: all 0.5s ease-in-out;
}
.nttt__image-carousel-layout-2 .slick-center {
  transform: scale(1.46);
}
.nttt__image-carousel-layout-2 .slick-dots {
  position: absolute;
  bottom: -68px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  z-index: 9;
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .nttt__image-carousel-layout-2 .slick-dots {
    bottom: -25px;
  }
}
.nttt__image-carousel-layout-2 .slick-dots li {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 0 8px;
  padding: 0;
  cursor: pointer;
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .nttt__image-carousel-layout-2 .slick-dots li {
    margin: 0 4px;
    width: 12px;
    height: 12px;
  }
}
.nttt__image-carousel-layout-2 .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 16px;
  height: 16px;
  padding: 5px;
  cursor: pointer;
  border: 0;
  outline: none;
  background: #D3D8D5;
  border-radius: 50%;
  position: relative;
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .nttt__image-carousel-layout-2 .slick-dots li button {
    width: 12px;
    height: 12px;
  }
}
.nttt__image-carousel-layout-2 .slick-dots li.slick-active {
  margin: 0 12px;
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .nttt__image-carousel-layout-2 .slick-dots li.slick-active {
    margin: 0 8px;
  }
}
.nttt__image-carousel-layout-2 .slick-dots li.slick-active button {
  background: var(--st-theme-1);
}
.nttt__image-carousel-layout-2 .slick-dots li.slick-active button:before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--st-theme-1);
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .nttt__image-carousel-layout-2 .slick-dots li.slick-active button:before {
    width: 20px;
    height: 20px;
  }
}

.social-plus-icon {
  position: absolute;
  bottom: 0px;
  width: 56px;
  height: 56px;
  display: flex;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
  justify-content: center;
  background-color: #E8E6E9;
  align-items: center;
  right: 28px;
}
.social-plus-icon i {
  font-size: 24px;
  color: var(--st-theme-primary);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.social-plus-icon .icons {
  position: absolute;
  bottom: 55px;
  width: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  background-color: #E8E6E9;
  transform: translateY(20px);
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  z-index: 9999;
}
.social-plus-icon .icons i {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s ease-out 0s;
  color: var(--st-common-black);
}
.social-plus-icon .icons i:hover {
  color: var(--st-theme-primary);
}
.social-plus-icon.active .icons {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.social-plus-icon:hover .icons {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.hero__after__main__wrapper .hero__after__wrapper .hero__after img {
  width: 100%;
  max-height: 460px;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
}
.hero__after__main__wrapper .hero__after__wrapper .hero__after .hero__banner__overlay {
  background: #253d2f;
  padding: 20px 24px;
}
.hero__after__main__wrapper .hero__after__wrapper .hero__after .hero__banner__overlay p {
  color: var(--st-common-white);
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
  margin: 0;
}

.redux-group-tab h2, .redux-group-tab h3 {
  color: #161616;
  background-color: #dceeff !important;
  line-height: 46px;
  padding: 0 20px !important;
  margin: 20px 0;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 1px;
  border: 0;
  border-left: 5px solid #0068c8;
}

/***************** 3. Meta Boxes *****************/
.ts-meta-box-field {
  width: 100%;
  overflow: hidden;
  margin-bottom: 6px;
}

.form-table td.ts-meta-box-field {
  width: 85%;
}

.ts-meta-box-field label {
  float: left;
  line-height: 28px;
  width: 27%;
  font-weight: 600;
}

.ts-meta-box-field .field {
  float: left;
  width: 68%;
}

.ts-meta-box-field .field input:not(.colorpicker):not(.wp-picker-clear),
.ts-meta-box-field .field select, .ts-meta-box-field .field textarea {
  min-width: 250px;
}

.ts-meta-box-field .field textarea {
  height: 100px;
  width: 364px;
}

.ts-meta-box-field .field input[type=button] {
  font-size: 13px;
  line-height: 30px;
  margin-left: 5px;
  min-width: 50px !important;
  padding: 0 5px;
  border: none;
  background-color: #00aef0;
  color: #fff;
}

.ts-meta-box-field .field input[type=button]:hover {
  background-color: #0089bd;
  cursor: pointer;
}

.ts-meta-box-field .field input[type=button]:disabled {
  background-color: #ebebeb;
  color: #666;
}

.ts-meta-box-field .field input[type=button]:disabled:hover {
  cursor: auto;
}

.ts-meta-box-field .field input[type=button].wp-picker-clear {
  padding: 0;
}

.ts-meta-box-field .field input.upload_field {
  width: 65%;
}

.ts-meta-box-field .field .preview-image {
  max-width: 50%;
  max-height: 200px;
  margin-top: 5px;
  margin-left: 1px;
  display: block;
}

.ts-meta-box-field .field .description {
  display: block;
  font-style: italic;
}

.ts-meta-box-field.ts-heading-box {
  margin-top: 20px;
  margin-bottom: 20px;
}

.ts-meta-box-field.ts-heading-box h2 {
  margin-bottom: 0 !important;
  font-size: 20px !important;
  background-color: rgba(240, 240, 241, 0.5);
}

#page_options.ts-hidden {
  display: none !important;
}

.admin__order-cancel-reasons ul {
  margin-left: 30px;
}
.admin__order-cancel-reasons ul li {
  list-style: disc;
}

:root {
  /**
  @font family declaration
  */
  --st-ff-body: 'Poppins', sans-serif;
  --st-ff-heading: 'Poppins', sans-serif;
  --st-ff-p: 'Poppins', sans-serif;
  --st-ff-menu: 'Poppins', sans-serif;
  --st-ff-button: 'Poppins', sans-serif;
  --st-ff-fontawesome: "Font Awesome 6 Pro";
  /**
  @color declaration
  */
  --st-common-white: #ffffff;
  --st-common-black: #000;
  --st-common-black2: #111827;
  --st-common-star: #fdb022;
  --st-heading-primary: #002366;
  --st-grey-1: #70747D;
  --st-grey-2: #414652;
  --st-text-body: #70747D;
  --st-text-1: #70747D;
  --st-text-top-header: #f5ba68;
  --st-text-top-header-hover: #f04a00;
  --st-text-menu: #ffffff;
  --st-text-menu-hover: #f04a00;
  --st-text-link: #f04a00;
  --st-text-link-hover: #002366;
  --st-text-button: #ffffff;
  --st-text-btn-hover: #f04a00;
  --st-text-price: #a0a3a9;
  --st-text-sale-price: #F04A00;
  --st-text-topmenu: #F2F4F7;
  --st-text-topmenu-hover: #70747d;
  --st-text-stock: #5fa745;
  --st-text-onsale: #70747d;
  --st-text-rating: #f04a00;
  --st-theme-1: #F04A00;
  --st-theme-2: #002366;
  --st-theme-primary: #f04a00;
  --st-theme-secondery: #002366;
  --st-theme-top-header: #111827;
  --st-theme-button: #f04a00;
  --st-theme-btn-hover: #ffffff;
  --st-theme-onsale: #ffffff;
  --st-border-1: #000;
  --st-border-button: #F04A00;
  --st-border-btn-hover: #F04A00;
  /**
  @font weight declaration
  */
  --st-fw-normal: normal;
  --st-fw-elight: 200;
  --st-fw-light: 300;
  --st-fw-regular: 400;
  --st-fw-medium: 500;
  --st-fw-sbold: 600;
  --st-fw-bold: 700;
  --st-fw-ebold: 800;
  --st-fw-black: 900;
  --st-fw-heading: 600;
  --st-fw-button: 600;
  --st-fw-menu: 500;
  /**
  @font size declaration
  */
  --st-fz-body: 18px;
  --st-fz-p: 18px;
  --st-fz-h1: 80px;
  --st-fz-h2: 60px;
  --st-fz-h3: 48px;
  --st-fz-h4: 32px;
  --st-fz-h5: 24px;
  --st-fz-h6: 20px;
  --st-fz-button: 18px;
  --st-fz-menu: 18px;
  --st-fz-mob-h1: 48px;
  --st-fz-mob-h2: 38px;
  --st-fz-mob-h3: 28px;
  --st-fz-mob-h4: 24px;
  --st-fz-mob-h5: 22px;
  --st-fz-mob-h6: 20px;
  --st-fz-tab-body: 18px;
  --st-fz-tab-h1: 65px;
  --st-fz-tab-h2: 50px;
  --st-fz-tab-h3: 46px;
  --st-fz-tab-h4: 42px;
  --st-fz-tab-h5: 34px;
  --st-fz-tab-h6: 30px;
  /**
  @line height declaration
  */
  --st-lh-body: 20px;
  --st-lh-h1: 90px;
  --st-lh-h2: 70px;
  --st-lh-h3: 58px;
  --st-lh-h4: 42px;
  --st-lh-h5: 34px;
  --st-lh-h6: 30px;
  --st-lh-button: 28px;
  --st-lh-h1-tab: 75px;
  --st-lh-h2-tab: 60px;
  --st-lh-h3-tab: 48px;
  --st-lh-h4-tab: 38px;
  --st-lh-h5-tab: 34px;
  --st-lh-h6-tab: 28px;
  --st-lh-h1-mob: 58px;
  --st-lh-h2-mob: 48px;
  --st-lh-h3-mob: 34px;
  --st-lh-h4-mob: 32px;
  --st-lh-h5-mob: 30px;
  --st-lh-h6-mob: 24px;
}

.single_product_breadcrumb_wrap {
  background-color: #f2f4f7;
}
.single_product_breadcrumb_wrap .breadcrumb-item {
  color: #F04A00;
}

section.product__details-slider {
  padding-top: 60px;
}

.related__product .related__product-wrapper .related__product-title {
  padding-bottom: 60px;
}
@media (max-width: 420px) {
  .related__product .related__product-wrapper .related__product-title h3 {
    font-size: 26px !important;
    line-height: 32px !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .related__product .related__product-wrapper .related__product-title {
    padding-bottom: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .related__product .related__product-wrapper .related__product-title {
    padding-bottom: 30px;
  }
}
@media (max-width: 380px) {
  .related__product .related__product-wrapper .related__product-title {
    padding-bottom: 80px;
  }
}
.related__product .related__product-wrapper .f__product-small .f__product-img {
  background: #f8f8f8;
  text-align: center;
  position: relative;
  border-radius: 12px;
}
.related__product .related__product-wrapper .f__product-small .f__product-img img {
  border-radius: 12px;
}
.related__product .related__product-wrapper .f__product-small .f__product-img:hover .overlay {
  opacity: 1;
}
.related__product .related__product-wrapper .f__product-small .f__product-img .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(194, 202, 218, 0.4078431373);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  border-radius: 12px;
}
.related__product .related__product-wrapper .f__product-small .f__product-img .overlay .icons {
  position: absolute;
  bottom: 40px;
  display: flex;
}
.related__product .related__product-wrapper .f__product-small .f__product-img .overlay .icons a {
  display: block;
}
.related__product .related__product-wrapper .f__product-small .f__product-img .overlay i {
  font-size: 24px;
  height: 50px;
  width: 50px;
  background: var(--st-common-white);
  vertical-align: middle;
  line-height: 50px;
  color: var(--st-theme-1);
  font-weight: 400;
  margin: 0 4px;
  border-radius: 3px;
  padding: 10px;
}
.related__product .related__product-wrapper .f__product-small .f__product-img .overlay i:hover {
  background-color: var(--st-theme-1);
  color: var(--st-common-white);
}
.related__product .related__product-wrapper .f__product-small .f__product-img .img-fluid {
  width: 90% !important;
}
.related__product .related__product-wrapper .swiper-button-next,
.related__product .related__product-wrapper .swiper-button-prev {
  display: block;
}
.related__product .related__product-wrapper .swiper-button-next i,
.related__product .related__product-wrapper .swiper-button-prev i {
  font-size: 20px;
  height: 40px;
  width: 40px;
  color: var(--st-theme-1);
  outline: 1px dashed var(--st-theme-1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
}
@media (max-width: 420px) {
  .related__product .related__product-wrapper .swiper-button-next i,
  .related__product .related__product-wrapper .swiper-button-prev i {
    height: 33px;
    width: 33px;
  }
}
.related__product .related__product-wrapper .swiper-button-next::after,
.related__product .related__product-wrapper .swiper-button-prev::after {
  display: none;
}

.swiper__button-wrapper {
  top: 35%;
  right: 6%;
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .swiper__button-wrapper {
    top: 23px !important;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px) and (max-width: 380px), (max-width: 575.98px) and (max-width: 380px) {
  .swiper__button-wrapper {
    top: 80px !important;
    right: unset;
    left: 50%;
    transform: translateX(-50%);
  }
}
.swiper__button-wrapper .swiper-button-next {
  right: -45px !important;
}
@media (max-width: 380px) {
  .swiper__button-wrapper .swiper-button-next {
    left: 0;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 10px;
  }
}
.swiper__button-wrapper .swiper-button-prev {
  left: -35px !important;
}

.related__product-wrapper .swiper__button-wrapper {
  top: 35%;
  right: 60px;
}
@media (max-width: 575.98px) {
  .related__product-wrapper .swiper__button-wrapper {
    top: 60%;
  }
}
.related__product-wrapper .swiper__button-wrapper .swiper-button-next {
  right: -45px !important;
}
.related__product-wrapper .swiper__button-wrapper .swiper-button-prev {
  left: -35px !important;
}
@media (max-width: 380px) {
  .related__product-wrapper .swiper__button-wrapper .swiper-button-prev {
    left: 0 !important;
  }
}

@media (max-width: 991px) {
  .swiper__button-wrapper .swiper-button-next {
    right: 0 !important;
  }
  .swiper__button-wrapper .swiper-button-prev {
    left: -75px !important;
  }
}
.product__quantity {
  margin: 20px 0;
  display: flex;
  justify-content: left;
  gap: 30px;
}
.product__quantity .size {
  align-items: center;
  display: flex;
}
.product__quantity .size label {
  color: #414652;
  font-weight: 500;
}
.product__quantity .quantity__btn {
  width: 36px;
  display: inline-block;
  text-align: center;
  cursor: pointer;
}
.product__quantity .minus,
.product__quantity .plus {
  border: 1px solid #e6e9f0;
  color: #70747D;
}
.product__quantity .minus:hover,
.product__quantity .plus:hover {
  border: 1px solid #f04a00;
}
.product__quantity .minus {
  margin-right: 4px;
  height: 36px;
}
.product__quantity .plus {
  margin-left: 4px;
  height: 36px;
}

.quantity__selector {
  font-size: 18px;
  color: #70747d;
  border-radius: 2px;
  height: 36px;
  align-items: center;
}
.quantity__selector .quantity {
  font-size: 18px;
  color: #70747d;
  border: 1px solid #e6e9f0;
  border-radius: 2px;
  height: 36px;
}
.quantity__selector .quantity input {
  height: 100%;
  width: 100px;
  border: 0;
  text-align: center;
  font-weight: 600;
  color: #70747D;
}
.quantity__selector .quantity input[type=number]::-webkit-inner-spin-button,
.quantity__selector .quantity input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.quantity__selector .quantity input[type=number] {
  -moz-appearance: textfield;
}

.product__tab {
  margin-top: 10px;
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .product__tab {
    margin-top: 0;
  }
}
.product__tab ul.tabs {
  border-bottom: 1px solid rgb(230, 233, 240);
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
@media only screen and (min-width: 576px) and (max-width: 767.98px) {
  .product__tab ul.tabs {
    gap: 20px;
  }
}
@media (max-width: 575.98px) {
  .product__tab ul.tabs {
    flex-direction: column;
    gap: 20px;
  }
}
.product__tab ul.tabs li a {
  padding: 0 0 12px 0 !important;
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
}
.product__tab .p__tab-btn {
  color: rgb(160, 163, 169);
  font-size: 20px;
  line-height: 32px;
  font-weight: 500 !important;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  margin-right: 30px;
}
.product__tab .p__tab-btn.active {
  border-bottom: 2px solid var(--st-theme-1);
  color: var(--st-theme-1);
  font-weight: 700;
}
.product__tab .product__tabcontent .woocommerce-product-attributes .woocommerce-product-attributes-item__label {
  padding-right: 10px;
}
.product__tab .product__tabcontent .woocommerce-product-attributes p {
  margin: 0;
}

.product__details-slider .onsale {
  color: var(--st-text-onsale);
  background-color: var(--st-theme-onsale);
}
.product__details-slider .product__content {
  padding-left: 10px;
}
.product__details-slider .product__content .product_meta .posted_in a {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #414652;
}
.product__details-slider .product__content .product_title {
  margin: 5px 0 12px 0;
}
.product__details-slider .product__content .product-stock {
  margin: 20px 0;
}
.product__details-slider .product__content .product-stock span {
  color: var(--st-text-stock);
  font-size: 18px;
  font-weight: 500;
}
.product__details-slider .product__content .product-stock span i {
  padding-right: 5px;
}
.product__details-slider .product__content .product__review i {
  color: var(--st-common-star);
  margin-right: 5px;
}
.product__details-slider .product__content .product__review svg path {
  fill: var(--st-common-star);
}
.product__details-slider .product__content .product__review span {
  color: var(--st-text-rating);
  font-size: 14px;
  line-height: 22px;
  margin-left: 10px;
}
.product__details-slider .product__content .f__p-price {
  margin-top: 20px;
  align-items: center;
}
.product__details-slider .product__content .f__p-price .old__price {
  padding-left: 25px;
  padding-bottom: 0;
  text-decoration: line-through;
  font-size: 24px;
  color: var(--st-text-price);
  font-weight: 500;
  line-height: 32px;
}
.product__details-slider .product__content .f__p-price .current__price {
  font-weight: 600;
  font-size: 30px;
  color: var(--st-text-sale-price);
  margin: 0;
}
.product__details-slider .product__content .product__content-top {
  border-bottom: 1px solid #e6e9f0;
  padding-bottom: 10px;
  padding-bottom: 20px;
}
.product__details-slider .product__content .product__content-top span {
  font-size: 14px;
  padding-bottom: 10px;
  display: block;
}
.product__details-slider .product__content .product__content-top h4 {
  padding-bottom: 5px;
}
.product__details-slider .product__content .product__content-middle {
  margin-top: 25px;
  padding-top: 28px;
  border-top: 1px solid #e6e9f0;
}
.product__details-slider .product__content .product__content-middle p {
  color: #70747d;
  font-size: 18px;
  font-weight: 400;
}
.product__details-slider .product__content .product__content-details .product__options .product__size,
.product__details-slider .product__content .product__content-details .product__options .product__color,
.product__details-slider .product__content .product__content-details .product__options .product__quantity {
  display: flex;
  justify-content: space-between;
}
.product__details-slider .product__content .product__content-details .product__options .product__size .size,
.product__details-slider .product__content .product__content-details .product__options .product__color .size,
.product__details-slider .product__content .product__content-details .product__options .product__quantity .size {
  padding-top: 5px;
}
.product__details-slider .product__content .product__content-details .product__options .product__size .size label,
.product__details-slider .product__content .product__content-details .product__options .product__color .size label,
.product__details-slider .product__content .product__content-details .product__options .product__quantity .size label {
  font-weight: 500;
  font-size: 18px;
}
.product__details-slider .product__content .product__content-details .product__options .product__size .size span,
.product__details-slider .product__content .product__content-details .product__options .product__color .size span,
.product__details-slider .product__content .product__content-details .product__options .product__quantity .size span {
  color: rgb(112, 116, 125);
}
.product__details-slider .product__content .product__content-details .product__options .product__size .size__options,
.product__details-slider .product__content .product__content-details .product__options .product__color .size__options,
.product__details-slider .product__content .product__content-details .product__options .product__quantity .size__options {
  display: inline-block;
  gap: 10px;
}
.product__details-slider .product__content .product__content-details .product__options .product__size .size__options .size__option,
.product__details-slider .product__content .product__content-details .product__options .product__color .size__options .size__option,
.product__details-slider .product__content .product__content-details .product__options .product__quantity .size__options .size__option {
  display: inline-block;
  padding-top: 5px;
  text-align: center;
  height: 32px;
  width: 32px;
  border: 1px solid #e6e9f0;
  border-radius: 2px;
  font-size: 18px;
  color: #70747d;
  font-weight: 500;
}
.product__details-slider .product__content .product__content-details .product__options .product__size .size__options .size__option:hover,
.product__details-slider .product__content .product__content-details .product__options .product__color .size__options .size__option:hover,
.product__details-slider .product__content .product__content-details .product__options .product__quantity .size__options .size__option:hover {
  border: 1px solid #f04a00;
}
.product__details-slider .product__content .product__content-details .product__options .product__size {
  padding-top: 24px;
}
.product__details-slider .product__content .product__content-details .product__options .product__color {
  padding: 15px 0 12px 0;
}
.product__details-slider .product__content .product__content-details .product__options .product__color .color__options .color__option {
  display: inline-block;
  height: 32px;
  width: 32px;
  border-radius: 2px;
}
.product__details-slider .product__content .product__content-details .product__options .product__color .color__options .color__option:hover {
  border: 1px solid #f04a00;
}
.product__details-slider .product__content .product__content-details .product__options .product__quantity .quantity__selector {
  font-size: 18px;
  color: #70747d;
  border: 1px solid #e6e9f0;
  border-radius: 2px;
  height: 32px;
}
.product__details-slider .product__content .product__content-details .product__options .product__quantity .quantity__selector .quantity__btn {
  width: 32px;
  display: inline-block;
  text-align: center;
}
.product__details-slider .product__content .product__content-details .product__options .product__quantity .quantity__selector input {
  color: #70747d;
}
.product__details-slider .product__content .product__content-details .product__options .product__quantity .quantity__selector .minus {
  border-right: 1px solid #e6e9f0;
}
.product__details-slider .product__content .product__content-details .product__options .product__quantity .quantity__selector .minus:hover {
  border: 1px solid #f04a00;
}
.product__details-slider .product__content .product__content-details .product__options .product__quantity .quantity__selector .plus {
  border-left: 1px solid #e6e9f0;
}
.product__details-slider .product__content .product__content-details .product__options .product__quantity .quantity__selector .plus:hover {
  border: 1px solid #f04a00;
}
.product__details-slider .product__content .product__content-details .product__options .product__quantity .quantity__selector input {
  height: 100%;
  width: 70px;
  border: 0;
  text-align: center;
}
.product__details-slider .product__content .product__content-details .product__content-btn .view__btn {
  margin: 15px 10px 0 0;
}
.product__details-slider .product__content .product__content-details .product__content-btn .shop__btn {
  text-align: center;
}
.product__details-slider .product__content .product__content-details .product__compare {
  color: rgb(112, 116, 125);
  padding: 24px 0;
  display: flex;
}
.product__details-slider .product__content .product__content-details .product__compare div i {
  padding-right: 10px;
}
.product__details-slider .product__content .product__content-details .product__compare div:nth-child(1) {
  padding-right: 28px;
}
.product__details-slider .product__content .express-delivery-option {
  padding-top: 5px;
  margin: 15px 0;
}
.product__details-slider .product__content .express-delivery-option label {
  display: flex;
  gap: 12px;
  align-items: center;
  color: #70747d;
}
.product__details-slider .product__content .express-delivery-option label input[type=checkbox]::after,
.product__details-slider .product__content .express-delivery-option label input[type=checkbox]::before {
  top: 0;
}
.product__details-slider .product__content .express-delivery-option label input[type=checkbox]:checked::after {
  top: 5px;
}
.product__details-slider .product__content .single_add_to_cart_button:focus {
  outline: unset;
  border: 1px solid var(--st-theme-button);
}

.content__middle-bottom {
  border-bottom: 1px solid #e6e9f0;
}

.product__content-bottom {
  margin-top: 26px;
  padding-top: 8px;
  border-top: 1px solid #e6e9f0;
}
.product__content-bottom .p__key-value {
  display: flex;
  justify-content: left;
  padding-top: 12px;
}
.product__content-bottom .p__key-value label {
  width: 25%;
  font-weight: 500;
  font-size: 18px;
  margin-right: 20px;
  color: #414652;
}
.product__content-bottom .p__key-value span {
  width: 75%;
  color: rgb(112, 116, 125);
}
.product__content-bottom .p__social-event .p__social-icon {
  display: inline-block;
  padding-left: 48px;
}
.product__content-bottom .p__social-event .p__social-icon nav ul {
  display: flex;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .product__content-bottom .p__social-event .p__social-icon nav ul {
    justify-content: center;
    margin-bottom: 25px;
  }
}
.product__content-bottom .p__social-event .p__social-icon nav ul li {
  margin: 0 5px;
  list-style: none;
}
@media (max-width: 575.98px) {
  .product__content-bottom .p__social-event .p__social-icon nav ul li {
    margin: 0 7px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px) {
  .product__content-bottom .p__social-event .p__social-icon nav ul li {
    margin: 0 10px;
  }
}
.product__content-bottom .p__social-event .p__social-icon nav ul li i {
  font-size: 20px;
  color: var(--st-heading-primary);
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f2f4f7;
  border-radius: 50%;
  transition: background-color 0.3s ease-in, color 0.3s ease-in-out;
}
@media (max-width: 575.98px) {
  .product__content-bottom .p__social-event .p__social-icon nav ul li i {
    width: 30px;
    height: 30px;
    font-size: 24px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px) {
  .product__content-bottom .p__social-event .p__social-icon nav ul li i {
    width: 35px;
    height: 35px;
    font-size: 26px;
  }
}
.product__content-bottom .p__social-event .p__social-icon nav ul li i:hover {
  background: var(--st-theme-1);
  color: var(--st-common-white);
}

@media (max-width: 518px) {
  .p__key-value label {
    font-weight: 500;
    font-size: 16px;
  }
  .p__key-value span {
    color: rgb(112, 116, 125);
  }
  .product__size,
  .product__color,
  .product__quantity,
  .product__compare,
  .p__key-value {
    font-size: 16px;
  }
  .product__size label,
  .product__color label,
  .product__quantity label,
  .product__compare label,
  .p__key-value label {
    font-size: 16px;
  }
  .product__content-bottom:nth-child(1) span {
    padding-left: 52px;
  }
  .product__content-bottom:nth-child(2) {
    padding-top: 5px;
  }
  .product__content-bottom:nth-child(2) span {
    padding-left: 13px;
  }
  .product__content-bottom:nth-child(3) {
    padding: 5px 0 5px 0;
  }
  .product__content-bottom:nth-child(3) span {
    padding-left: 16px;
  }
}
.group_quantity_wrapper table,
.group_quantity_wrapper h5 {
  background-color: #FAFAFB;
  max-width: 700px;
  width: 100%;
}
.group_quantity_wrapper table td label,
.group_quantity_wrapper h5 td label {
  padding: 15px 30px 15px 30px;
}
.group_quantity_wrapper table td > span,
.group_quantity_wrapper h5 td > span {
  padding: 0 30px;
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .group_quantity_wrapper table,
  .group_quantity_wrapper h5 {
    width: 100%;
  }
}
.group_quantity_wrapper table td > span {
  padding: 0 30px 0 0;
}
.group_quantity_wrapper h5 {
  margin: 10px 0 0 0 !important;
  color: #414652;
  padding: 20px 30px 5px 30px !important;
  font-size: 24px !important;
  border-radius: 12px 12px 0 0;
}
.group_quantity_wrapper table {
  display: block;
  overflow-x: auto;
}
.group_quantity_wrapper table tr {
  position: relative;
}
.group_quantity_wrapper table tr .product-stock {
  position: absolute;
  left: 30px;
  bottom: 0;
  margin: 0 !important;
}
.group_quantity_wrapper table .woocommerce-grouped-product-list-item__price {
  padding-left: 10px;
}
.group_quantity_wrapper .extra_desingn_purpose {
  max-width: 700px;
  width: 100%;
  height: 15px;
  background-color: #FAFAFB;
  margin-bottom: 25px;
  border-radius: 0 0 12px 12px;
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .group_quantity_wrapper .extra_desingn_purpose {
    width: 100%;
  }
}

.layout-with-reverse {
  flex-direction: row-reverse;
}

.layout-without-reverse {
  flex-direction: row;
  row-gap: 50px;
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .layout-without-reverse {
    row-gap: 30px;
  }
}

.quick__view-content .grouped-product-table {
  margin-bottom: 30px;
}
.quick__view-content .group_quantity_wrapper table td label {
  width: 185px;
  padding: 0 0 0 30px;
}
.quick__view-content .group_quantity_wrapper .woocommerce-grouped-product-list-item__price {
  padding-left: 10px;
}

:root {
  /**
  @font family declaration
  */
  --st-ff-body: 'Poppins', sans-serif;
  --st-ff-heading: 'Poppins', sans-serif;
  --st-ff-p: 'Poppins', sans-serif;
  --st-ff-menu: 'Poppins', sans-serif;
  --st-ff-button: 'Poppins', sans-serif;
  --st-ff-fontawesome: "Font Awesome 6 Pro";
  /**
  @color declaration
  */
  --st-common-white: #ffffff;
  --st-common-black: #000;
  --st-common-black2: #111827;
  --st-common-star: #fdb022;
  --st-heading-primary: #002366;
  --st-grey-1: #70747D;
  --st-grey-2: #414652;
  --st-text-body: #70747D;
  --st-text-1: #70747D;
  --st-text-top-header: #f5ba68;
  --st-text-top-header-hover: #f04a00;
  --st-text-menu: #ffffff;
  --st-text-menu-hover: #f04a00;
  --st-text-link: #f04a00;
  --st-text-link-hover: #002366;
  --st-text-button: #ffffff;
  --st-text-btn-hover: #f04a00;
  --st-text-price: #a0a3a9;
  --st-text-sale-price: #F04A00;
  --st-text-topmenu: #F2F4F7;
  --st-text-topmenu-hover: #70747d;
  --st-text-stock: #5fa745;
  --st-text-onsale: #70747d;
  --st-text-rating: #f04a00;
  --st-theme-1: #F04A00;
  --st-theme-2: #002366;
  --st-theme-primary: #f04a00;
  --st-theme-secondery: #002366;
  --st-theme-top-header: #111827;
  --st-theme-button: #f04a00;
  --st-theme-btn-hover: #ffffff;
  --st-theme-onsale: #ffffff;
  --st-border-1: #000;
  --st-border-button: #F04A00;
  --st-border-btn-hover: #F04A00;
  /**
  @font weight declaration
  */
  --st-fw-normal: normal;
  --st-fw-elight: 200;
  --st-fw-light: 300;
  --st-fw-regular: 400;
  --st-fw-medium: 500;
  --st-fw-sbold: 600;
  --st-fw-bold: 700;
  --st-fw-ebold: 800;
  --st-fw-black: 900;
  --st-fw-heading: 600;
  --st-fw-button: 600;
  --st-fw-menu: 500;
  /**
  @font size declaration
  */
  --st-fz-body: 18px;
  --st-fz-p: 18px;
  --st-fz-h1: 80px;
  --st-fz-h2: 60px;
  --st-fz-h3: 48px;
  --st-fz-h4: 32px;
  --st-fz-h5: 24px;
  --st-fz-h6: 20px;
  --st-fz-button: 18px;
  --st-fz-menu: 18px;
  --st-fz-mob-h1: 48px;
  --st-fz-mob-h2: 38px;
  --st-fz-mob-h3: 28px;
  --st-fz-mob-h4: 24px;
  --st-fz-mob-h5: 22px;
  --st-fz-mob-h6: 20px;
  --st-fz-tab-body: 18px;
  --st-fz-tab-h1: 65px;
  --st-fz-tab-h2: 50px;
  --st-fz-tab-h3: 46px;
  --st-fz-tab-h4: 42px;
  --st-fz-tab-h5: 34px;
  --st-fz-tab-h6: 30px;
  /**
  @line height declaration
  */
  --st-lh-body: 20px;
  --st-lh-h1: 90px;
  --st-lh-h2: 70px;
  --st-lh-h3: 58px;
  --st-lh-h4: 42px;
  --st-lh-h5: 34px;
  --st-lh-h6: 30px;
  --st-lh-button: 28px;
  --st-lh-h1-tab: 75px;
  --st-lh-h2-tab: 60px;
  --st-lh-h3-tab: 48px;
  --st-lh-h4-tab: 38px;
  --st-lh-h5-tab: 34px;
  --st-lh-h6-tab: 28px;
  --st-lh-h1-mob: 58px;
  --st-lh-h2-mob: 48px;
  --st-lh-h3-mob: 34px;
  --st-lh-h4-mob: 32px;
  --st-lh-h5-mob: 30px;
  --st-lh-h6-mob: 24px;
}

.shop__product-wrapper {
  padding-top: 60px;
  padding-bottom: 140px;
}
@media (max-width: 575.98px) {
  .shop__product-wrapper .container-fluid {
    width: 90% !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .shop__product-wrapper {
    padding-bottom: 80px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .shop__product-wrapper {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.shop__product-wrapper .list__products-wrapper {
  margin-bottom: 40px;
}
.shop__product-wrapper .list__products-wrapper .list__product {
  background-color: rgb(248, 248, 248);
  border-radius: 12px;
}
.shop__product-wrapper .list__products-wrapper .list__product .f__product-img {
  height: 100%;
  background: rgb(242, 244, 247);
  position: relative;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shop__product-wrapper .list__products-wrapper .list__product .f__product-img a img {
  width: 100%;
  max-width: 282px !important;
  height: 300px !important;
  min-height: 300px;
  border-radius: 12px;
}
.shop__product-wrapper .list__products-wrapper .list__product .f__product-img:hover .overlay {
  opacity: 1;
}
.shop__product-wrapper .list__products-wrapper .list__product .f__product-img .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(194, 202, 218, 0.4078431373);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  border-radius: 12px;
  transition: opacity 0.3s ease-in-out;
}
.shop__product-wrapper .list__products-wrapper .list__product .f__product-img .overlay .icons {
  position: absolute;
  bottom: 40px;
  display: flex;
}
.shop__product-wrapper .list__products-wrapper .list__product .f__product-img .overlay i {
  font-size: 24px;
  height: 50px;
  width: 50px;
  background: var(--st-common-white);
  line-height: 50px;
  color: var(--st-theme-1);
  font-weight: 400;
  margin: 0 4px;
  border-radius: 3px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shop__product-wrapper .list__products-wrapper .list__product .f__product-img .overlay i:hover {
  background-color: var(--st-theme-1);
  color: var(--st-common-white);
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .shop__product-wrapper .list__products-wrapper .list__product .f__product-img .overlay i {
    font-size: 20px;
    height: 40px;
    width: 40px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px), (max-width: 575.98px) {
  .shop__product-wrapper .list__products-wrapper .list__product .f__product-img .overlay i {
    font-size: 18px;
    height: 35px;
    width: 35px;
  }
}
.shop__product-wrapper .list__products-wrapper .list__product .f__product-img .img-fluid {
  width: 90% !important;
}
.shop__product-wrapper .list__products-wrapper .list__product .list__product-content {
  padding: 40px 30px 40px 20px;
}
@media (max-width: 575.98px) {
  .shop__product-wrapper .list__products-wrapper .list__product .list__product-content {
    text-align: center;
  }
  .shop__product-wrapper .list__products-wrapper .list__product .list__product-content .f__p-price,
  .shop__product-wrapper .list__products-wrapper .list__product .list__product-content .color-options,
  .shop__product-wrapper .list__products-wrapper .list__product .list__product-content .p-size {
    justify-content: center;
  }
}
.shop__product-wrapper .list__products-wrapper .list__product .list__product-content span {
  font-size: 14px;
  font-weight: 400;
  color: rgb(112, 116, 125);
}
.shop__product-wrapper .list__products-wrapper .list__product .list__product-content h4 {
  font-size: 32px;
  padding-top: 5px;
  padding-bottom: 21px;
  margin: 0;
}
.shop__product-wrapper .list__products-wrapper .list__product .list__product-content p {
  font-weight: 400;
  color: rgb(112, 116, 125);
  padding-bottom: 16px;
  margin: 0;
}
.shop__product-wrapper .list__products-wrapper .list__product .list__product-content .product-price {
  padding-bottom: 16px;
}
.shop__product-wrapper .list__products-wrapper .list__product .list__product-content .product-price span {
  text-decoration: line-through;
  font-size: 14px;
  line-height: 20px;
  color: rgb(160, 163, 169);
}
.shop__product-wrapper .list__products-wrapper .list__product .list__product-content .product-price p {
  display: inline;
}
.shop__product-wrapper .list__products-wrapper .list__product .list__product-content .product-price p span {
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  color: rgb(240, 74, 0);
  padding-left: 10px;
}
.shop__product-wrapper .list__products-wrapper .list__product .list__product-content .p-color ul li {
  margin-right: 5px;
  border-radius: 3px;
  margin-bottom: 16px;
}
.shop__product-wrapper .list__products-wrapper .list__product .list__product-content .p-color ul li a {
  width: 16px;
  height: 16px;
  list-style: none;
  margin: 3px;
  cursor: pointer;
  display: block;
  border-radius: 2px;
}
.shop__product-wrapper .list__products-wrapper .list__product:nth-child(2) .f__product-img {
  background: rgb(242, 244, 247);
}
.shop__product-wrapper .list__products-wrapper .list__product:nth-child(3) .f__product-img {
  background: rgb(254, 246, 242);
}
.shop__product-wrapper .list__products-wrapper .list__product:nth-child(4) .f__product-img {
  background: rgb(254, 237, 230);
}
.shop__product-wrapper .list__products-wrapper .list__product:nth-child(5) .f__product-img {
  background: rgb(230, 233, 240);
}
.shop__product-wrapper .list__products-wrapper .list__product:nth-child(6) .f__product-img {
  background: rgb(254, 237, 230);
}
.shop__product-wrapper .list__products-wrapper .list__product:nth-child(7) .f__product-img {
  background: rgb(230, 233, 240);
}

:root {
  /**
  @font family declaration
  */
  --st-ff-body: 'Poppins', sans-serif;
  --st-ff-heading: 'Poppins', sans-serif;
  --st-ff-p: 'Poppins', sans-serif;
  --st-ff-menu: 'Poppins', sans-serif;
  --st-ff-button: 'Poppins', sans-serif;
  --st-ff-fontawesome: "Font Awesome 6 Pro";
  /**
  @color declaration
  */
  --st-common-white: #ffffff;
  --st-common-black: #000;
  --st-common-black2: #111827;
  --st-common-star: #fdb022;
  --st-heading-primary: #002366;
  --st-grey-1: #70747D;
  --st-grey-2: #414652;
  --st-text-body: #70747D;
  --st-text-1: #70747D;
  --st-text-top-header: #f5ba68;
  --st-text-top-header-hover: #f04a00;
  --st-text-menu: #ffffff;
  --st-text-menu-hover: #f04a00;
  --st-text-link: #f04a00;
  --st-text-link-hover: #002366;
  --st-text-button: #ffffff;
  --st-text-btn-hover: #f04a00;
  --st-text-price: #a0a3a9;
  --st-text-sale-price: #F04A00;
  --st-text-topmenu: #F2F4F7;
  --st-text-topmenu-hover: #70747d;
  --st-text-stock: #5fa745;
  --st-text-onsale: #70747d;
  --st-text-rating: #f04a00;
  --st-theme-1: #F04A00;
  --st-theme-2: #002366;
  --st-theme-primary: #f04a00;
  --st-theme-secondery: #002366;
  --st-theme-top-header: #111827;
  --st-theme-button: #f04a00;
  --st-theme-btn-hover: #ffffff;
  --st-theme-onsale: #ffffff;
  --st-border-1: #000;
  --st-border-button: #F04A00;
  --st-border-btn-hover: #F04A00;
  /**
  @font weight declaration
  */
  --st-fw-normal: normal;
  --st-fw-elight: 200;
  --st-fw-light: 300;
  --st-fw-regular: 400;
  --st-fw-medium: 500;
  --st-fw-sbold: 600;
  --st-fw-bold: 700;
  --st-fw-ebold: 800;
  --st-fw-black: 900;
  --st-fw-heading: 600;
  --st-fw-button: 600;
  --st-fw-menu: 500;
  /**
  @font size declaration
  */
  --st-fz-body: 18px;
  --st-fz-p: 18px;
  --st-fz-h1: 80px;
  --st-fz-h2: 60px;
  --st-fz-h3: 48px;
  --st-fz-h4: 32px;
  --st-fz-h5: 24px;
  --st-fz-h6: 20px;
  --st-fz-button: 18px;
  --st-fz-menu: 18px;
  --st-fz-mob-h1: 48px;
  --st-fz-mob-h2: 38px;
  --st-fz-mob-h3: 28px;
  --st-fz-mob-h4: 24px;
  --st-fz-mob-h5: 22px;
  --st-fz-mob-h6: 20px;
  --st-fz-tab-body: 18px;
  --st-fz-tab-h1: 65px;
  --st-fz-tab-h2: 50px;
  --st-fz-tab-h3: 46px;
  --st-fz-tab-h4: 42px;
  --st-fz-tab-h5: 34px;
  --st-fz-tab-h6: 30px;
  /**
  @line height declaration
  */
  --st-lh-body: 20px;
  --st-lh-h1: 90px;
  --st-lh-h2: 70px;
  --st-lh-h3: 58px;
  --st-lh-h4: 42px;
  --st-lh-h5: 34px;
  --st-lh-h6: 30px;
  --st-lh-button: 28px;
  --st-lh-h1-tab: 75px;
  --st-lh-h2-tab: 60px;
  --st-lh-h3-tab: 48px;
  --st-lh-h4-tab: 38px;
  --st-lh-h5-tab: 34px;
  --st-lh-h6-tab: 28px;
  --st-lh-h1-mob: 58px;
  --st-lh-h2-mob: 48px;
  --st-lh-h3-mob: 34px;
  --st-lh-h4-mob: 32px;
  --st-lh-h5-mob: 30px;
  --st-lh-h6-mob: 24px;
}

ul li {
  list-style-type: none;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .blog__grid .filter__sidebar-area,
  .blog__details .filter__sidebar-area,
  .blog__list .filter__sidebar-area {
    margin-top: 20px;
  }
}

.blog__grid {
  padding: 120px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .blog__grid {
    padding: 80px 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .blog__grid {
    padding: 50px 0;
  }
}
.blog__grid .single__blog {
  height: 100%;
}
.blog__grid section {
  padding-top: 0;
}
.blog__grid section .widget-title {
  padding-top: 15px;
}
.blog__grid .single__blog-wrapper {
  height: 100%;
  padding: 20px;
  border: 1px solid #e6e9f0;
  border-radius: 24px;
}
@media only screen and (min-width: 1601px) and (max-width: 1700px), only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px), (max-width: 575.98px), (max-width: 400px) {
  .blog__grid .single__blog-wrapper .blog__author {
    flex-direction: column;
  }
}
.blog__grid .blog__content .blog__author {
  font-size: 16px;
  color: #70747d;
  font-weight: 400;
  padding: 20px 0;
}
@media (max-width: 991px) {
  .blog__grid .blog__content .blog__author {
    padding: 10px 0;
  }
}
@media (max-width: 400px) {
  .blog__grid .blog__content .blog__author {
    font-size: 14px;
  }
}
.blog__grid .blog__heading h4 {
  padding-bottom: 20px;
}
@media (max-width: 991px) {
  .blog__grid .blog__heading h4 {
    padding-bottom: 0;
    font-size: 24px;
    line-height: 32px;
  }
}
.blog__grid .blog__img {
  border-radius: 12px;
  overflow: hidden;
}
.blog__grid .blog__img .img-fluid {
  border-radius: 12px;
  width: 100%;
  height: 324px;
  object-fit: cover;
  transition: transform 0.5s ease, translate 0.5s ease;
}
@media (max-width: 575.98px) {
  .blog__grid .blog__img .img-fluid {
    height: 280px;
  }
}
.blog__grid .blog__img .img-fluid:hover {
  transform: scale(1.1);
}

.blog__content-bottom .read__more {
  cursor: pointer;
  color: var(--st-theme-1);
  font-weight: 500;
}
.blog__content-bottom .read__more:hover {
  text-decoration: underline;
}
.blog__content-bottom div img {
  width: 16px;
}
.blog__content-bottom div span {
  padding-left: 5px;
}

.blog__search .search__bar {
  padding-top: 10px;
  display: flex;
  align-items: center;
}
.blog__search .search__bar .search__category {
  background-color: #f3f3f3;
  width: 100%;
  display: flex;
  align-items: center;
  border-radius: 10px;
}
.blog__search .search__bar .search__feild {
  justify-content: space-between;
  width: 100%;
}
.blog__search .search__bar .search__feild input[type=search] {
  border: none;
  outline: none;
  background: transparent;
  width: 90%;
  padding-left: 20px;
}
.blog__search .search__bar .search__feild input::placeholder {
  font-size: 18px;
  color: #a0a3a9;
  font-weight: 400;
  padding: 14px 0;
}
.blog__search .search__bar .search__feild .search__icon {
  text-align: center;
  background: var(--st-theme-1);
  width: 75px;
  padding: 10px 0;
  border-radius: 0px 10px 10px 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .blog__search .search__bar .search__feild .search__icon {
    width: 50px;
  }
}

.blog__categories .categories__wrapper .form__check-wrapper,
.blog__categories .categories__wrapper .color__check-wrapper,
.blog__categories .color__filter-wrapper .form__check-wrapper,
.blog__categories .color__filter-wrapper .color__check-wrapper {
  display: flex;
  justify-content: space-between;
}
.blog__categories .categories__wrapper .form__check-wrapper .form-check .form-check-input,
.blog__categories .categories__wrapper .color__check-wrapper .form-check .form-check-input,
.blog__categories .color__filter-wrapper .form__check-wrapper .form-check .form-check-input,
.blog__categories .color__filter-wrapper .color__check-wrapper .form-check .form-check-input {
  margin-top: 10px;
}
.blog__categories .categories__wrapper .form__check-wrapper .form-check .form-check-input:checked,
.blog__categories .categories__wrapper .color__check-wrapper .form-check .form-check-input:checked,
.blog__categories .color__filter-wrapper .form__check-wrapper .form-check .form-check-input:checked,
.blog__categories .color__filter-wrapper .color__check-wrapper .form-check .form-check-input:checked {
  background-color: var(--st-theme-1);
  border: 0;
}
.blog__categories .categories__wrapper .form__check-wrapper .form-check .form-check-label,
.blog__categories .categories__wrapper .color__check-wrapper .form-check .form-check-label,
.blog__categories .color__filter-wrapper .form__check-wrapper .form-check .form-check-label,
.blog__categories .color__filter-wrapper .color__check-wrapper .form-check .form-check-label {
  padding: 10px 0;
  font-weight: 400;
  font-size: 18px;
}
.blog__categories .categories__wrapper .form__check-wrapper .form__value,
.blog__categories .categories__wrapper .color__check-wrapper .form__value,
.blog__categories .color__filter-wrapper .form__check-wrapper .form__value,
.blog__categories .color__filter-wrapper .color__check-wrapper .form__value {
  padding: 10px 0;
}
.blog__categories .see__more {
  color: var(--st-theme-1);
  padding: 10px 0;
  font-weight: 500;
}

.recent__post {
  margin-top: 12px;
  padding: 12px;
  border: 1px solid #e6e9f0;
  border-radius: 12px;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199.98px), (max-width: 575.98px) {
  .recent__post {
    flex-direction: column;
  }
}
.recent__post .recent__img {
  padding-right: 20px;
}
.recent__post .recent__img img {
  height: 100%;
}
.recent__post .recent__content h5 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
}
.recent__post .recent__post-wrapper {
  padding: 15px;
}

.blog__insta .blog__insta-content .col-4 {
  padding: 10px;
}
.blog__insta .blog__insta-content a img {
  width: 100%;
}

.blog__tags-content a {
  font-weight: 600;
  color: #70747d;
  padding: 8px 20px;
  border-radius: 4px;
  border: 1px solid #e6e9f0;
  display: inline-block;
  margin: 10px 12px 10px 0;
}

@media (max-width: 575.98px) {
  .blog__content .blog__author,
  .recent__content .blog__author,
  .blog__list-content .blog__author {
    font-size: 12px;
  }
  .blog__content .blog__author .ml-20,
  .recent__content .blog__author .ml-20,
  .blog__list-content .blog__author .ml-20 {
    margin-left: 10px;
  }
  .blog__content .blog__author .mr-10,
  .recent__content .blog__author .mr-10,
  .blog__list-content .blog__author .mr-10 {
    margin-right: 5px;
  }
  .blog__content .blog__heading h4,
  .recent__content .blog__heading h4,
  .blog__list-content .blog__heading h4 {
    padding: 0 0 10px 0;
  }
  .blog__content .blog__content-bottom,
  .recent__content .blog__content-bottom,
  .blog__list-content .blog__content-bottom {
    font-size: 14px;
  }
  .blog__content {
    padding-bottom: 0 !important;
  }
}
.widget_search .searchform {
  padding-top: 20px;
}
.widget_search .searchform div {
  display: flex;
  justify-content: space-between;
  width: 100%;
  border-radius: 12px;
}
.widget_search .searchform div input:nth-of-type(1) {
  border: none;
  border-radius: 12px 0 0 12px;
  width: 100%;
  background-color: #F3F3F3;
  padding: 20px;
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .widget_search .searchform div input:nth-of-type(1) {
    padding: 15px;
  }
}
.widget_search .searchform div input:nth-of-type(2) {
  background-color: var(--st-theme-1);
  color: var(--st-common-white);
  border: none;
  border-radius: 0 12px 12px 0;
  padding: 20px;
}
@media (max-width: 575.98px) {
  .widget_search .searchform div input:nth-of-type(2) {
    padding: 10px;
    font-size: 16px;
  }
}

.widget_categories ul li {
  font-size: 14px !important;
  color: #70747d;
  margin: 10px 0;
}
.widget_categories ul li a {
  color: #414652;
  font-size: 18px !important;
}

.widget_archive ul li {
  font-size: 14px !important;
  color: #70747d;
  margin: 9px 0;
}
.widget_archive ul li a {
  color: #414652;
  font-size: 18px !important;
}

:root {
  /**
  @font family declaration
  */
  --st-ff-body: 'Poppins', sans-serif;
  --st-ff-heading: 'Poppins', sans-serif;
  --st-ff-p: 'Poppins', sans-serif;
  --st-ff-menu: 'Poppins', sans-serif;
  --st-ff-button: 'Poppins', sans-serif;
  --st-ff-fontawesome: "Font Awesome 6 Pro";
  /**
  @color declaration
  */
  --st-common-white: #ffffff;
  --st-common-black: #000;
  --st-common-black2: #111827;
  --st-common-star: #fdb022;
  --st-heading-primary: #002366;
  --st-grey-1: #70747D;
  --st-grey-2: #414652;
  --st-text-body: #70747D;
  --st-text-1: #70747D;
  --st-text-top-header: #f5ba68;
  --st-text-top-header-hover: #f04a00;
  --st-text-menu: #ffffff;
  --st-text-menu-hover: #f04a00;
  --st-text-link: #f04a00;
  --st-text-link-hover: #002366;
  --st-text-button: #ffffff;
  --st-text-btn-hover: #f04a00;
  --st-text-price: #a0a3a9;
  --st-text-sale-price: #F04A00;
  --st-text-topmenu: #F2F4F7;
  --st-text-topmenu-hover: #70747d;
  --st-text-stock: #5fa745;
  --st-text-onsale: #70747d;
  --st-text-rating: #f04a00;
  --st-theme-1: #F04A00;
  --st-theme-2: #002366;
  --st-theme-primary: #f04a00;
  --st-theme-secondery: #002366;
  --st-theme-top-header: #111827;
  --st-theme-button: #f04a00;
  --st-theme-btn-hover: #ffffff;
  --st-theme-onsale: #ffffff;
  --st-border-1: #000;
  --st-border-button: #F04A00;
  --st-border-btn-hover: #F04A00;
  /**
  @font weight declaration
  */
  --st-fw-normal: normal;
  --st-fw-elight: 200;
  --st-fw-light: 300;
  --st-fw-regular: 400;
  --st-fw-medium: 500;
  --st-fw-sbold: 600;
  --st-fw-bold: 700;
  --st-fw-ebold: 800;
  --st-fw-black: 900;
  --st-fw-heading: 600;
  --st-fw-button: 600;
  --st-fw-menu: 500;
  /**
  @font size declaration
  */
  --st-fz-body: 18px;
  --st-fz-p: 18px;
  --st-fz-h1: 80px;
  --st-fz-h2: 60px;
  --st-fz-h3: 48px;
  --st-fz-h4: 32px;
  --st-fz-h5: 24px;
  --st-fz-h6: 20px;
  --st-fz-button: 18px;
  --st-fz-menu: 18px;
  --st-fz-mob-h1: 48px;
  --st-fz-mob-h2: 38px;
  --st-fz-mob-h3: 28px;
  --st-fz-mob-h4: 24px;
  --st-fz-mob-h5: 22px;
  --st-fz-mob-h6: 20px;
  --st-fz-tab-body: 18px;
  --st-fz-tab-h1: 65px;
  --st-fz-tab-h2: 50px;
  --st-fz-tab-h3: 46px;
  --st-fz-tab-h4: 42px;
  --st-fz-tab-h5: 34px;
  --st-fz-tab-h6: 30px;
  /**
  @line height declaration
  */
  --st-lh-body: 20px;
  --st-lh-h1: 90px;
  --st-lh-h2: 70px;
  --st-lh-h3: 58px;
  --st-lh-h4: 42px;
  --st-lh-h5: 34px;
  --st-lh-h6: 30px;
  --st-lh-button: 28px;
  --st-lh-h1-tab: 75px;
  --st-lh-h2-tab: 60px;
  --st-lh-h3-tab: 48px;
  --st-lh-h4-tab: 38px;
  --st-lh-h5-tab: 34px;
  --st-lh-h6-tab: 28px;
  --st-lh-h1-mob: 58px;
  --st-lh-h2-mob: 48px;
  --st-lh-h3-mob: 34px;
  --st-lh-h4-mob: 32px;
  --st-lh-h5-mob: 30px;
  --st-lh-h6-mob: 24px;
}

.pt-30 {
  padding-top: 30px;
}

.blog__comment {
  padding-bottom: 10px;
}
.blog__comment .heading-title span {
  margin-right: 8px;
}

.single__post .post__image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}
@media (max-width: 575px) {
  .single__post .post__image img {
    height: 350px;
    object-fit: cover;
  }
}
.single__post .blog__author-right img {
  width: 16px;
}
.single__post .blog__author {
  padding: 30px 0 20px 0;
  color: #70747d;
  font-weight: 400;
}
@media (max-width: 575.98px) {
  .single__post .blog__author {
    flex-direction: column;
    font-size: 14px;
    padding: 20px 0 15px 0;
  }
  .single__post .blog__author .blog__author-right {
    padding-top: 10px;
  }
}

.comments-area.blog__details {
  padding-top: 60px;
  padding-bottom: 0;
}

.blog__details {
  padding: 140px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .blog__details {
    padding: 80px 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .blog__details {
    padding: 50px 0;
  }
}
.blog__details .blog__post-content {
  padding-top: 30px;
}
@media (max-width: 991px) {
  .blog__details .widget_search {
    margin-top: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .blog__details .author-area {
    flex-direction: column;
  }
}
.blog__details .avatar-wrapper {
  margin-right: 20px;
}
.blog__details .review-wrapper {
  margin-left: 10px;
  width: 90%;
}
.blog__details .reviewer-wrapper {
  margin-right: 20px;
}

section#comment-wrapper, .widget_benariz_filter_posts_widget, .widget_benariz_total_tag_widget {
  padding-top: 0px;
}

.tag__share {
  border-bottom: 1px solid #e6e9f0;
  padding: 40px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .tag__share {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .tag__share .blog__tags-content a {
    font-size: 14px;
    padding: 5px 12px;
    margin: 7px 7px 7px 0;
  }
}
.tag__share .blog__tags-content label {
  font-weight: 600;
  color: #002366;
  padding-right: 10px;
}
.tag__share .p__key-value {
  display: flex;
  align-items: center;
  gap: 15px;
}
.tag__share .p__key-value label {
  font-weight: 600;
  color: #002366;
}
.tag__share .p__social-icon nav ul {
  display: flex;
  gap: 12px;
}
.tag__share .p__social-icon nav ul li i {
  color: #70747d;
}
.tag__share .p__social-icon nav ul li i:hover {
  color: #fff;
}

.blog__tags-content a:hover {
  color: #002366;
  border: 1px solid #002366;
}

.blog__details #comment-wrapper {
  margin-top: 20px;
  padding: 40px;
  border: 1px solid #e8e8ea;
  border-radius: 12px;
}
.blog__details #comment-wrapper h4 {
  font-size: 32px;
  color: rgb(65, 70, 82);
}
.blog__details #comment-wrapper .modal__note {
  font-size: 14px;
  color: rgb(112, 116, 125);
}
.blog__details #comment-wrapper .modal__note label {
  font-weight: 600;
}
.blog__details #comment-wrapper .modal__note span {
  font-weight: 400;
}
.blog__details #comment-wrapper form {
  margin-top: 10px;
}
.blog__details #comment-wrapper form .p__name-email .input-wrapper {
  display: flex;
  padding: 24px 0;
}
.blog__details #comment-wrapper form .p__name-email .input-wrapper p {
  width: 100%;
}
.blog__details #comment-wrapper form .p__name-email .form-control {
  border: 1px solid rgb(230, 233, 240);
  border-radius: 8px;
}
.blog__details #comment-wrapper form .p__name-email .form-control::placeholder {
  font-size: 18px;
  font-weight: 400;
  color: rgb(160, 163, 169);
  padding: 14px 0 14px 18px;
}
.blog__details #comment-wrapper form .p__name-email p.author {
  padding-right: 24px;
}
.blog__details #comment-wrapper form .message-wrapper label {
  display: none;
}
.blog__details #comment-wrapper form textarea {
  border: 1px solid rgb(230, 233, 240);
  border-radius: 8px;
  width: 100%;
  max-width: 100%;
  padding: 12px 15px;
}
.blog__details #comment-wrapper form textarea::placeholder {
  font-size: 18px;
  font-weight: 400;
  color: rgb(160, 163, 169);
}
.blog__details #comment-wrapper form textarea:focus {
  color: #212529;
  background-color: #fff;
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.blog__details #comment-wrapper form .coupon__btn {
  margin: 30px 0;
  display: inline-block;
  padding: 16px 44px;
  border-radius: 12px;
}
.blog__details #comment-wrapper .heading-title small {
  margin-left: 15px;
}
@media (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .blog__details #comment-wrapper .heading-title small {
    margin-left: 10px;
  }
}
.blog__details #comment-wrapper .heading-title small a {
  color: var(--st-theme-button);
  background: var(--st-text-button);
  padding: 10px 24px;
  font-weight: var(--st-fw-button);
  font-size: var(--st-fz-button);
  line-height: var(--st-lh-button);
  font-family: var(--st-ff-button);
  border-radius: 8px;
  transition: all ease 0.3s;
  border: 1px solid var(--st-border-button);
}
@media (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .blog__details #comment-wrapper .heading-title small a {
    padding: 10px 15px;
    font-size: 14px;
  }
}
.blog__details #comment-wrapper .heading-title small a:hover {
  color: var(--st-theme-btn-hover);
  background-color: var(--st-text-btn-hover);
  border: 1px solid var(--st-border-btn-hover);
}
.blog__details .form-check {
  margin-bottom: 40px;
}
.blog__details .form-check .form-check-input {
  border-radius: 2px;
  border: 1px solid #70747d;
}
.blog__details .form-check .form-check-input:checked {
  background-color: var(--st-theme-1);
}
.blog__details .form-check .form-check-label {
  padding-top: 3px;
  color: #70747d;
  font-weight: 400;
}
@media (max-width: 575.98px) {
  .blog__details .p__name-email {
    flex-direction: column;
    gap: 20px;
  }
  .blog__details .form-check {
    font-size: 14px;
  }
  .blog__details .form-check .form-check-label {
    padding-top: 0;
  }
  .blog__details .coupon__btn {
    margin: 20px 0;
    display: inline-block;
    padding: 8px 18px !important;
    border-radius: 12px;
  }
  .blog__details .post__review-content {
    margin-bottom: 40px;
  }
}

.p__social-icon ul li {
  background: #F2F4F7;
  height: 28px;
  width: 28px;
  border-radius: 50%;
  text-align: center;
}
.p__social-icon ul li:hover {
  background: var(--st-theme-1);
}
.p__social-icon ul li:hover i {
  color: var(--st-common-white) !important;
}

.blog__details .top__review {
  margin: 50px 0;
  padding: 40px;
  border: 1px solid #e6e9f0;
  border-radius: 16px;
}
@media (max-width: 575.98px), (max-width: 400px) {
  .blog__details .top__review {
    padding: 20px;
    text-align: center;
  }
}
.blog__details .top__review .reviewer__img img {
  border-radius: 50%;
  width: 100px;
  height: auto;
  object-fit: cover;
}
@media (max-width: 575.98px) {
  .blog__details .top__review .p__social-icon {
    padding: 0 0 0 0;
    display: flex;
    justify-content: center;
  }
}
.blog__details .top__review .p__social-icon nav ul {
  margin-top: 10px;
  display: flex;
  gap: 8px;
}
.blog__details .top__review .p__social-icon nav ul li i {
  font-size: 15px;
  width: 25px;
  height: 25px;
  color: #002366;
}
.blog__details .top__review .reviewer__content p {
  margin-top: 20px;
  color: #a0a3a9;
}

ol {
  padding: 0;
}
ol li {
  list-style: none;
}
ol .top__review-btn {
  margin: 30px 0;
  text-align: center;
  display: flex;
  justify-content: end;
  gap: 20px;
}

.blog__comment h4 {
  color: #414652;
}

@media (max-width: 575.98px) {
  .blog__commentlist .reviewer__img {
    margin-bottom: 20px;
  }
}
.blog__commentlist .reviewer__img img {
  border-radius: 50%;
}
.blog__commentlist .reviewer__content {
  position: relative;
  padding: 24px;
  background-color: #fafafb;
  border-radius: 16px;
}
.blog__commentlist .reviewer__content .reviewer__content-top h5 > a {
  font-size: 20px !important;
  font-weight: 500;
  color: #414652;
}
.blog__commentlist .reviewer__content .reviewer__content-top a {
  font-size: 14px;
  font-weight: 400;
  color: #a0a3a9;
}
.blog__commentlist .reviewer__content .reviewer__content-top a span {
  padding-left: 5px;
}
.blog__commentlist .reviewer__content .reviewer__content-top h5 a {
  font-size: 20px;
  line-height: 28px;
  color: #414652;
}
.blog__commentlist .reviewer__content .reviewer__content-top span {
  color: #A0A3A9;
}
.blog__commentlist .reviewer__content p {
  padding-top: 12px;
  font-size: 18px;
  font-weight: 400;
  color: #a0a3a9;
}
.blog__commentlist .reviewer__content .p__triangle {
  top: 24px;
  left: -20px;
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-right: 20px solid #fafafb;
  border-bottom: 15px solid transparent;
}
@media (max-width: 575.98px) {
  .blog__commentlist .reviewer__content .p__triangle {
    top: -25px;
    left: 20px;
    border-top: 15px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 15px solid #fafafb;
  }
}
.blog__commentlist .blog__comment-reply a {
  color: var(--st-theme-1) !important;
  font-weight: 400;
  font-size: 18px !important;
}
.blog__commentlist .blog__comment-reply a:hover {
  font-weight: 700;
}

.blog__post-btn .col-3,
.blog__post-btn .col-6 {
  padding: 0;
}
.blog__post-btn .btn-line {
  display: flex;
  align-items: center;
}
.blog__post-btn .left-post {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.blog__post-btn .post__btn-left {
  border-radius: 50px;
  width: 100%;
  background-color: #fafafb;
}
.blog__post-btn .post__btn-left i {
  font-size: 25px;
  height: 50px;
  width: 50px;
  color: var(--st-theme-1);
  outline: 1px dashed var(--st-theme-1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
}
.blog__post-btn .post__btn-left i:hover {
  color: #fff;
  outline: 1px dashed var(--st-theme-1);
  background: var(--st-theme-1);
}
.blog__post-btn .post__btn-left span {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  padding-left: 15px;
  color: #70747d;
}
@media (max-width: 1450px) {
  .blog__post-btn .post__btn-left i {
    font-size: 20px;
    height: 40px;
    width: 40px;
  }
  .blog__post-btn .post__btn-left span {
    font-size: 16px;
    line-height: 20px;
    padding-left: 15px;
  }
  .blog__post-btn .post__btn-left .post__btn-right span {
    padding: 0 15px 0 0;
  }
}
@media (max-width: 991px) {
  .blog__post-btn .post__btn-left span {
    font-size: 12px;
    padding-left: 7px;
  }
  .blog__post-btn .post__btn-left i {
    font-size: 15px;
    height: 30px;
    width: 30px;
  }
}
@media (max-width: 575.98px) {
  .blog__post-btn .post__btn-left span {
    display: none;
  }
  .blog__post-btn .post__btn-left i {
    font-size: 25px;
    height: 50px;
    width: 50px;
  }
}
.blog__post-btn .post__btn-last i {
  color: #70747d;
  outline: 1px dashed #70747d;
  cursor: default;
}
.blog__post-btn .post__btn-last i:hover {
  background: none;
  color: #70747d;
  outline: 1px dashed #70747d;
}
.blog__post-btn .post__btn-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.blog__post-btn .post__btn-right span {
  padding: 0 15px 0 0;
  color: #70747d;
}
.blog__post-btn .post__btn-line {
  height: 1px;
  width: 100%;
  background-color: #e6e9f0;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  #blog__categories-accordion,
  #blog__recent-accordion,
  #blog__insta-accordion,
  #blog__tags-accordion {
    margin-bottom: 20px;
  }
  .blog__search {
    margin-top: 20px;
  }
  .content-wrapper {
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .blog__search {
    margin-top: 40px;
  }
}
.recent__post-wrapper {
  border: 1px solid #E6E9F0;
  padding-left: 24px;
  border-radius: 12px;
  margin-top: 20px;
  padding: 15px !important;
}
@media only screen and (min-width: 1601px) and (max-width: 1700px), only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199.98px), (max-width: 575.98px) {
  .recent__post-wrapper .blog_author {
    font-size: 14px;
  }
}
.recent__post-wrapper .recent__img {
  height: 100%;
  border-radius: 8px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199.98px), (max-width: 575.98px) {
  .recent__post-wrapper .recent__img {
    margin-right: 10px;
    margin-bottom: 10px;
  }
}
.recent__post-wrapper .recent__img img {
  height: 100%;
}
@media (max-width: 575.98px) {
  .recent__post-wrapper .recent__img img {
    width: 100%;
    object-fit: cover;
  }
}
.recent__post-wrapper .recent__content .blog__author {
  font-size: 12px;
  line-height: 20px;
}
.recent__post-wrapper .sz-rc-post-img {
  padding-right: 0;
}

.blog__recent-post .col-xl-8 {
  padding: 0px;
}

.recent__img {
  border-radius: 8px !important;
}
.recent__img img {
  max-height: 130px;
  width: 100%;
  border-radius: 8px !important;
  object-fit: cover;
}
@media (max-width: 575.98px) {
  .recent__img img {
    width: 100px;
  }
}

.recent__content-wrapper {
  display: flex;
  align-items: center;
}

@media (max-width: 575.98px), (max-width: 400px) {
  .recent__content h5 {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (max-width: 1199px) and (min-width: 992px) {
  .recent__content .rp_ft {
    padding-top: 0px;
  }
}
@media (max-width: 1199px) and (min-width: 992px) {
  .recent__content {
    padding: 0;
    margin-top: 0px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .recent__content {
    padding: 0;
  }
}
.recent__content .res-post {
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
}
.recent__content .blog__date_at {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}

.p-mob-0 {
  padding: 0 !important;
}

.recent__img, .blog__insta-img {
  overflow: hidden;
}
.recent__img img, .blog__insta-img img {
  transition: transform 0.5s ease, translate 0.5s ease;
}
@media (max-width: 1199px) and (min-width: 992px) {
  .recent__img img, .blog__insta-img img {
    object-fit: cover;
  }
}
.recent__img img:hover, .blog__insta-img img:hover {
  transform: scale(1.1);
}

.post__image {
  overflow: hidden;
  border-radius: 8px;
}
.post__image img {
  transition: transform 1s ease, translate 1s ease;
}
.post__image img:hover {
  transform: scale(1.05);
  border-radius: 8px;
}

@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .recent__content h5 {
    font-size: 18px;
    line-height: 24px;
  }
  .blog__author {
    font-size: 14px;
  }
}
.post-recent-wrapper {
  display: flex;
  gap: 16px;
  align-items: center;
}

.recent__post-elementor-widgets .post-recent-wrapper {
  display: flex;
  gap: 16px;
  align-items: center;
}
@media (max-width: 575.98px) {
  .recent__post-elementor-widgets .post-recent-wrapper {
    flex-direction: column;
  }
}
.recent__post-elementor-widgets .post-recent-wrapper .recent-img-wrapper {
  max-width: 100px;
  max-height: 100px;
  width: 100%;
}
@media (max-width: 575.98px) {
  .recent__post-elementor-widgets .post-recent-wrapper .recent-img-wrapper {
    max-width: unset;
    width: 100%;
  }
  .recent__post-elementor-widgets .post-recent-wrapper .recent-img-wrapper img {
    width: 100%;
    height: unset;
    aspect-ratio: 16/8;
  }
}

.login__register-wrap .reset__message, .login__register-wrap .register__form, .login__register-wrap .reset__password-form {
  display: none;
}
.login__register-wrap .reset__message, .login__register-wrap .error__message, .login__register-wrap .success__message {
  background: rgb(230, 233, 240);
  width: 100%;
  max-width: 490px;
  margin: 20px auto 0 auto;
  border-radius: 5px;
}
.login__register-wrap .reset__message .reset__success-message, .login__register-wrap .error__message .reset__success-message, .login__register-wrap .success__message .reset__success-message {
  padding: 20px;
  color: green;
}
.login__register-wrap .reset__message .reset__success-message a, .login__register-wrap .error__message .reset__success-message a, .login__register-wrap .success__message .reset__success-message a {
  color: var(--st-theme-1);
}
.login__register-wrap .reset__message .reset__error-message, .login__register-wrap .error__message .reset__error-message, .login__register-wrap .success__message .reset__error-message {
  padding: 20px;
  color: #f04a00;
}
.login__register-wrap .reset__message .reset__error-message span, .login__register-wrap .error__message .reset__error-message span, .login__register-wrap .success__message .reset__error-message span {
  color: #000;
  cursor: pointer;
}
.login__register-wrap .verification-inputs {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
}
.login__register-wrap .verification-inputs input {
  width: 60px;
  height: 60px;
  border: 1px solid #E6E9F0;
  border-radius: 8px;
  padding: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), (max-width: 575.98px) {
  .login__register-wrap .verification-inputs {
    gap: 20px;
  }
  .login__register-wrap .verification-inputs input {
    width: 50px;
    height: 50px;
  }
}
.login__register-wrap .login__right-area {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.0509803922);
}
@media (max-width: 575.98px) {
  .login__register-wrap .login__right-area {
    box-shadow: unset;
  }
}
.login__register-wrap .login__right-area .form__wrapper {
  text-align: center;
  padding: 40px;
  max-width: 580px;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .login__register-wrap .login__right-area .form__wrapper {
    padding: 30px;
  }
}
@media only screen and (max-width: 417px) {
  .login__register-wrap .login__right-area .form__wrapper {
    padding: 0 20px !important;
  }
}
@media (max-width: 575.98px) {
  .login__register-wrap .login__right-area .form__wrapper {
    padding: 0 40px;
  }
}
.login__register-wrap .login__right-area .form__wrapper .login__register-buttons {
  background: #F2F4F7;
  border-radius: 50px;
  display: inline-block;
  padding: 8px 30px;
}
.login__register-wrap .login__right-area .form__wrapper .login__register-buttons .btn {
  font-size: 24px;
  font-weight: 500;
  color: #70747D;
}
.login__register-wrap .login__right-area .form__wrapper .login__register-buttons .btn:focus {
  box-shadow: none;
}
.login__register-wrap .login__right-area .form__wrapper .login__register-buttons .active {
  color: var(--st-theme-1);
  font-weight: 700;
  background: #fff;
  padding: 6px 40px;
  border-radius: 50px;
}
.login__register-wrap .login__right-area .form__wrapper .login__register-buttons .active span {
  border: none;
}
.login__register-wrap .login__right-area .form__wrapper .login__register-buttons span {
  border-bottom: 1px solid grey;
}
.login__register-wrap .login__right-area .form__wrapper .logo img {
  width: 100%;
  max-width: 116px !important;
  height: auto;
  padding: 25px 0 20px 0;
}
@media (max-width: 575.98px) {
  .login__register-wrap .login__right-area .form__wrapper .logo img {
    padding: 15px 0 10px 0;
  }
}
.login__register-wrap .login__right-area .form__wrapper .main-title {
  font-size: 32px;
}
.login__register-wrap .login__right-area .form__wrapper .sub-title {
  margin-bottom: 20px;
  color: #A0A3A9;
  font-size: 18px;
  font-weight: 400;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .login__register-wrap .login__right-area .form__wrapper .sub-title {
    font-size: 16px;
    margin: 20px 0;
  }
}
@media (max-width: 575.98px) {
  .login__register-wrap .login__right-area .form__wrapper .sub-title {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
.login__register-wrap .login__right-area .form__wrapper .sub-title a {
  border-bottom: 1px solid #A0A3A9;
}
.login__register-wrap .login__right-area .form__wrapper .login__form {
  display: block;
}
.login__register-wrap .login__right-area .form__wrapper .form__input-field input {
  width: 100%;
  border: 1px solid #E6E9F0;
  border-radius: 8px;
  padding: 20px;
}
.login__register-wrap .login__right-area .form__wrapper .form__input-field input::placeholder {
  margin-left: 10px;
  color: #A0A3A9;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), (max-width: 575.98px) {
  .login__register-wrap .login__right-area .form__wrapper .form__input-field input {
    font-size: 16px;
    padding: 10px;
  }
  .login__register-wrap .login__right-area .form__wrapper .form__input-field input::placeholder {
    font-size: 16px;
  }
}
.login__register-wrap .login__right-area .form__wrapper .password__show-icon {
  position: absolute;
  margin-left: -40px;
  margin-top: 20px;
  color: #A0A3A9;
  cursor: pointer;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), (max-width: 575.98px) {
  .login__register-wrap .login__right-area .form__wrapper .password__show-icon {
    margin-left: -30px;
    margin-top: 10px;
  }
}
.login__register-wrap .login__right-area .form__wrapper .form__remember-me {
  display: flex;
  align-items: center;
  gap: 7px;
  text-align: left;
}
@media (min-width: 767px) and (max-width: 797px) {
  .login__register-wrap .login__right-area .form__wrapper .form__remember-me {
    align-items: baseline;
  }
}
.login__register-wrap .login__right-area .form__wrapper .form__remember-me input {
  width: 16px;
  height: 16px;
}
.login__register-wrap .login__right-area .form__wrapper .form__remember-me span {
  color: #A0A3A9;
  font-size: 18px;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), (max-width: 575.98px) {
  .login__register-wrap .login__right-area .form__wrapper .form__remember-me span {
    font-size: 16px;
  }
}
.login__register-wrap .login__right-area .form__wrapper .form__field.verification_wrapper {
  width: 100%;
}
.login__register-wrap .login__right-area .form__wrapper .woocommerce-form-login__submit, .login__register-wrap .login__right-area .form__wrapper .woocommerce-form-register__submit, .login__register-wrap .login__right-area .form__wrapper .reset__password-button, .login__register-wrap .login__right-area .form__wrapper .woocommerce-form-confirm-password__submit {
  width: 100%;
}
.login__register-wrap .login__right-area .form__wrapper .woocommerce-form-verify__submit {
  width: 100%;
  margin-top: 20px;
}
.login__register-wrap .login__right-area .form__wrapper .lost__password {
  float: right;
  color: #002366;
  font-size: 18px;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), (max-width: 575.98px) {
  .login__register-wrap .login__right-area .form__wrapper .lost__password {
    font-size: 16px;
  }
}
.login__register-wrap .login__right-area .form__wrapper .login__register-submit {
  padding-top: 10px;
}

.page-id-2625 .elementor .elementor-element {
  margin-top: 0 !important;
}

.reset__link-expired {
  padding: 30px 0 60px 0;
}
.reset__link-expired a {
  color: var(--st-heading-primary);
}

@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .login__register-wrap .login__left-area {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .login__register-wrap .login__right-area .form__wrapper .login__register-buttons {
    padding: 8px 15px;
  }
}
@media (max-width: 441px) {
  .header__area .header__mid-area .wishlist__account ul li {
    display: block;
  }
}
/**
 * Login/Register issue resolve CSS
 */
.login__register-wrap {
  padding: 120px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .login__register-wrap {
    padding: 80px 0;
  }
}
@media (max-width: 575.98px) {
  .login__register-wrap {
    padding: 50px 0;
  }
}
.login__register-wrap .login__image {
  width: 100%;
  height: 100%;
}
.login__register-wrap .login__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.login__register-wrap .form__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .login__register-wrap .form__wrapper {
    padding: 30px;
  }
}
.login__register-wrap .pass__remember-wrapper {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), (max-width: 575.98px) {
  .login__register-wrap .pass__remember-wrapper {
    flex-direction: column;
    align-items: start;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .login__register-wrap .login__register-submit {
    padding-top: 0 !important;
  }
  .login__register-wrap .login__register-submit p {
    margin-bottom: 0;
  }
}

:root {
  /**
  @font family declaration
  */
  --st-ff-body: 'Poppins', sans-serif;
  --st-ff-heading: 'Poppins', sans-serif;
  --st-ff-p: 'Poppins', sans-serif;
  --st-ff-menu: 'Poppins', sans-serif;
  --st-ff-button: 'Poppins', sans-serif;
  --st-ff-fontawesome: "Font Awesome 6 Pro";
  /**
  @color declaration
  */
  --st-common-white: #ffffff;
  --st-common-black: #000;
  --st-common-black2: #111827;
  --st-common-star: #fdb022;
  --st-heading-primary: #002366;
  --st-grey-1: #70747D;
  --st-grey-2: #414652;
  --st-text-body: #70747D;
  --st-text-1: #70747D;
  --st-text-top-header: #f5ba68;
  --st-text-top-header-hover: #f04a00;
  --st-text-menu: #ffffff;
  --st-text-menu-hover: #f04a00;
  --st-text-link: #f04a00;
  --st-text-link-hover: #002366;
  --st-text-button: #ffffff;
  --st-text-btn-hover: #f04a00;
  --st-text-price: #a0a3a9;
  --st-text-sale-price: #F04A00;
  --st-text-topmenu: #F2F4F7;
  --st-text-topmenu-hover: #70747d;
  --st-text-stock: #5fa745;
  --st-text-onsale: #70747d;
  --st-text-rating: #f04a00;
  --st-theme-1: #F04A00;
  --st-theme-2: #002366;
  --st-theme-primary: #f04a00;
  --st-theme-secondery: #002366;
  --st-theme-top-header: #111827;
  --st-theme-button: #f04a00;
  --st-theme-btn-hover: #ffffff;
  --st-theme-onsale: #ffffff;
  --st-border-1: #000;
  --st-border-button: #F04A00;
  --st-border-btn-hover: #F04A00;
  /**
  @font weight declaration
  */
  --st-fw-normal: normal;
  --st-fw-elight: 200;
  --st-fw-light: 300;
  --st-fw-regular: 400;
  --st-fw-medium: 500;
  --st-fw-sbold: 600;
  --st-fw-bold: 700;
  --st-fw-ebold: 800;
  --st-fw-black: 900;
  --st-fw-heading: 600;
  --st-fw-button: 600;
  --st-fw-menu: 500;
  /**
  @font size declaration
  */
  --st-fz-body: 18px;
  --st-fz-p: 18px;
  --st-fz-h1: 80px;
  --st-fz-h2: 60px;
  --st-fz-h3: 48px;
  --st-fz-h4: 32px;
  --st-fz-h5: 24px;
  --st-fz-h6: 20px;
  --st-fz-button: 18px;
  --st-fz-menu: 18px;
  --st-fz-mob-h1: 48px;
  --st-fz-mob-h2: 38px;
  --st-fz-mob-h3: 28px;
  --st-fz-mob-h4: 24px;
  --st-fz-mob-h5: 22px;
  --st-fz-mob-h6: 20px;
  --st-fz-tab-body: 18px;
  --st-fz-tab-h1: 65px;
  --st-fz-tab-h2: 50px;
  --st-fz-tab-h3: 46px;
  --st-fz-tab-h4: 42px;
  --st-fz-tab-h5: 34px;
  --st-fz-tab-h6: 30px;
  /**
  @line height declaration
  */
  --st-lh-body: 20px;
  --st-lh-h1: 90px;
  --st-lh-h2: 70px;
  --st-lh-h3: 58px;
  --st-lh-h4: 42px;
  --st-lh-h5: 34px;
  --st-lh-h6: 30px;
  --st-lh-button: 28px;
  --st-lh-h1-tab: 75px;
  --st-lh-h2-tab: 60px;
  --st-lh-h3-tab: 48px;
  --st-lh-h4-tab: 38px;
  --st-lh-h5-tab: 34px;
  --st-lh-h6-tab: 28px;
  --st-lh-h1-mob: 58px;
  --st-lh-h2-mob: 48px;
  --st-lh-h3-mob: 34px;
  --st-lh-h4-mob: 32px;
  --st-lh-h5-mob: 30px;
  --st-lh-h6-mob: 24px;
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .cart__progress-bar {
    padding-top: 5rem;
  }
}
@media (max-width: 575.98px) {
  .cart__progress-bar {
    padding-top: 0;
  }
  .thanks__details {
    padding-top: 0;
  }
}
@media (max-width: 520px) {
  .progress__bar-top {
    padding-top: 20px;
  }
}
.progress__bar-top .container {
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.progress__bar-top .container .progress-bar {
  width: 80% !important;
  position: relative;
  background-color: #fff;
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .progress__bar-top .container .progress-bar {
    width: 100% !important;
  }
}
.progress__bar-top .container .progress-bar .progress {
  width: 100%;
  height: 150px;
  list-style: none;
  counter-reset: step;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 520px) {
  .progress__bar-top .container .progress-bar .progress {
    height: 100px;
  }
}
@media (max-width: 435px) {
  .progress__bar-top .container .progress-bar .progress {
    height: 80px;
  }
}
.progress__bar-top .container .progress-bar .progress li {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  background-color: rgb(112, 116, 125);
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.progress__bar-top .container .progress-bar .progress li span {
  padding-top: 5px;
  position: absolute;
  top: 130%;
  color: rgb(112, 116, 125);
  white-space: nowrap;
  font-size: 18px;
}
@media (max-width: 575.98px) {
  .progress__bar-top .container .progress-bar .progress li span {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
  }
}
@media (max-width: 535px) {
  .progress__bar-top .container .progress-bar .progress li span {
    display: none;
  }
}
.progress__bar-top .container .progress-bar .progress li .active {
  color: var(--st-theme-1);
}
.progress__bar-top .container .progress-bar .progress li.active {
  background-color: var(--st-theme-1);
  color: var(--st-common-white);
}
.progress__bar-top .container .progress-bar .progress li.active::before {
  content: "\f00c" !important;
  font-family: Fontawesome;
}
.progress__bar-top .container .progress-bar .progress li:nth-child(1),
.progress__bar-top .container .progress-bar .progress li:nth-child(5) {
  height: 15px;
  width: 15px;
}
.progress__bar-top .container .progress-bar .progress li:nth-child(1) {
  background-color: var(--st-theme-1);
}
.progress__bar-top .container .progress-bar .progress li.active:nth-child(5)::before {
  content: "" !important;
}
.progress__bar-top .container .progress-bar .progress li:nth-child(2) .active,
.progress__bar-top .container .progress-bar .progress li:nth-child(3) .active,
.progress__bar-top .container .progress-bar .progress li:nth-child(4) .active {
  color: var(--st-theme-1);
}
.progress__bar-top .container .progress-bar .progress li:nth-child(2) .active span,
.progress__bar-top .container .progress-bar .progress li:nth-child(3) .active span,
.progress__bar-top .container .progress-bar .progress li:nth-child(4) .active span {
  color: var(--st-theme-1) !important;
}
.progress__bar-top .container .progress-bar .progress li:nth-child(2):before,
.progress__bar-top .container .progress-bar .progress li:nth-child(3):before,
.progress__bar-top .container .progress-bar .progress li:nth-child(4):before {
  content: counter(step);
  counter-increment: step;
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
}
.progress__bar-top .container .progress-bar .bar {
  position: absolute;
  width: 99%;
  height: 3px;
  overflow-x: hidden;
  background-color: rgb(112, 116, 125);
}
.progress__bar-top .container .progress-bar .bar .fill {
  position: absolute;
  height: 3px;
  background-color: var(--st-theme-1);
}

.cart__details {
  padding-top: 60px;
}
.cart__details .cart__details-left .cart-container,
.cart__details .cart__details-right .cart-container {
  border: 1px solid rgb(230, 233, 240);
  padding: 20px 40px 40px 40px;
  border-radius: 12px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px) {
  .cart__details .cart__details-left .cart-container,
  .cart__details .cart__details-right .cart-container {
    padding: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .cart__details .cart__details-left .cart-container,
  .cart__details .cart__details-right .cart-container {
    padding: 20px;
  }
}
.cart__details .cart__details-left .cart-container .cart-header,
.cart__details .cart__details-right .cart-container .cart-header {
  padding-bottom: 20px;
  font-weight: 600;
  color: rgb(112, 116, 125);
  border-bottom: 1px solid rgb(230, 233, 240);
}
.cart__details .cart__details-left .cart-container .cart-header th,
.cart__details .cart__details-right .cart-container .cart-header th {
  text-align: center;
  padding-bottom: 20px;
}
.cart__details .cart__details-left .cart-container .product-thumbnail-img,
.cart__details .cart__details-right .cart-container .product-thumbnail-img {
  border-radius: 4px;
  width: 68px;
  height: 120px;
  padding: 10px 0;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .cart__details .cart__details-left .cart-container .product-thumbnail-img,
  .cart__details .cart__details-right .cart-container .product-thumbnail-img {
    height: 100px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .cart__details .cart__details-left .cart-container .product-thumbnail-img,
  .cart__details .cart__details-right .cart-container .product-thumbnail-img {
    height: 80px;
  }
}
@media (max-width: 575.98px) {
  .cart__details .cart__details-left .cart-container .product-thumbnail-img,
  .cart__details .cart__details-right .cart-container .product-thumbnail-img {
    height: 68px;
  }
}
.cart__details .cart__details-left .cart-container .product-thumbnail-img img,
.cart__details .cart__details-right .cart-container .product-thumbnail-img img {
  background-color: rgb(243, 243, 244);
  border-radius: 4px;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart__details .cart__details-left .cart-container .cart__item,
.cart__details .cart__details-right .cart-container .cart__item {
  border-bottom: 1px solid rgb(230, 233, 240);
}
.cart__details .cart__details-left .cart-container .cart__item .product-price, .cart__details .cart__details-left .cart-container .cart__item .product-subtotal,
.cart__details .cart__details-right .cart-container .cart__item .product-price,
.cart__details .cart__details-right .cart-container .cart__item .product-subtotal {
  text-align: center;
  color: #70747D;
  font-weight: 600;
}
.cart__details .cart__details-left .cart-container .cart__item h4,
.cart__details .cart__details-right .cart-container .cart__item h4 {
  font-size: 18px;
  line-height: 28px;
  margin: 0 0 0 20px;
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .cart__details .cart__details-left .cart-container .cart__item h4,
  .cart__details .cart__details-right .cart-container .cart__item h4 {
    font-size: 18px !important;
    line-height: 28px !important;
  }
}
.cart__details .cart__details-left .cart-container .cart__item .product-quantity,
.cart__details .cart__details-right .cart-container .cart__item .product-quantity {
  font-size: 18px;
  color: #70747d;
  flex-direction: row;
  vertical-align: middle;
}
.cart__details .cart__details-left .cart-container .cart__item .product-quantity input,
.cart__details .cart__details-right .cart-container .cart__item .product-quantity input {
  color: #70747d;
  width: 82px;
  border-radius: 2px;
  height: 32px;
  border: 1px solid #e6e9f0;
  text-align: center;
}
.cart__details .cart__details-left .cart-container .cart__item .product-quantity input[type=number]::-webkit-inner-spin-button,
.cart__details .cart__details-left .cart-container .cart__item .product-quantity input[type=number]::-webkit-outer-spin-button,
.cart__details .cart__details-right .cart-container .cart__item .product-quantity input[type=number]::-webkit-inner-spin-button,
.cart__details .cart__details-right .cart-container .cart__item .product-quantity input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.cart__details .cart__details-left .cart-container .cart__item .product-quantity input[type=number],
.cart__details .cart__details-right .cart-container .cart__item .product-quantity input[type=number] {
  -moz-appearance: textfield;
}
.cart__details .cart__details-left .cart-container .cart__item .product-quantity .quantity__btn,
.cart__details .cart__details-right .cart-container .cart__item .product-quantity .quantity__btn {
  width: 32px;
  display: inline-block;
  text-align: center;
  cursor: pointer;
}
.cart__details .cart__details-left .cart-container .cart__item .product-quantity .minus, .cart__details .cart__details-left .cart-container .cart__item .product-quantity .plus,
.cart__details .cart__details-right .cart-container .cart__item .product-quantity .minus,
.cart__details .cart__details-right .cart-container .cart__item .product-quantity .plus {
  border: 1px solid #e6e9f0;
}
.cart__details .cart__details-left .cart-container .cart__item .product-quantity .minus:hover, .cart__details .cart__details-left .cart-container .cart__item .product-quantity .plus:hover,
.cart__details .cart__details-right .cart-container .cart__item .product-quantity .minus:hover,
.cart__details .cart__details-right .cart-container .cart__item .product-quantity .plus:hover {
  border: 1px solid var(--st-theme-1);
}
.cart__details .cart__details-left .cart-container .cart__item .variation-ExpressDelivery,
.cart__details .cart__details-right .cart-container .cart__item .variation-ExpressDelivery {
  display: inline-block;
  color: #70747D;
}
.cart__details .cart__details-left .cart-container .cart__item .variation-ExpressDelivery p,
.cart__details .cart__details-right .cart-container .cart__item .variation-ExpressDelivery p {
  margin: 0;
}
.cart__details .cart__details-left .cart-container .coupon-area-wrapper,
.cart__details .cart__details-right .cart-container .coupon-area-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-top: 40px;
  align-items: center;
}
@media (max-width: 1250px) {
  .cart__details .cart__details-left .cart-container .coupon-area-wrapper,
  .cart__details .cart__details-right .cart-container .coupon-area-wrapper {
    flex-direction: column;
    align-items: start;
    gap: 20px;
  }
}
.cart__details .cart__details-left .cart-container .coupon,
.cart__details .cart__details-right .cart-container .coupon {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.cart__details .cart__details-left .cart-container .coupon input,
.cart__details .cart__details-right .cart-container .coupon input {
  border-radius: 8px;
  border: 1px solid rgb(230, 233, 240);
  padding: 16px;
  width: 280px;
  height: 52px;
}
.cart__details .cart__details-left .cart-container .coupon input::placeholder,
.cart__details .cart__details-right .cart-container .coupon input::placeholder {
  font-weight: 400;
  color: rgb(160, 163, 169);
  font-size: 14px;
}
.cart__details .cart__details-left table,
.cart__details .cart__details-right table {
  width: 100%;
  border-collapse: collapse;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .cart__details .cart__details-left table,
  .cart__details .cart__details-right table {
    width: 820px;
    padding-right: 30px;
  }
}
.cart__details .cart__details-left .address_btn, .cart__details .cart__details-left .address_update,
.cart__details .cart__details-right .address_btn,
.cart__details .cart__details-right .address_update {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: var(--st-theme-1);
  margin: 5px;
}
.cart__details .cart__details-left .address_update:hover,
.cart__details .cart__details-right .address_update:hover {
  color: var(--st-common-white);
}
.cart__details .cart__details-left .cart-shipping-form .select2-selection__rendered,
.cart__details .cart__details-right .cart-shipping-form .select2-selection__rendered {
  width: 100%;
  height: 46px;
  border: 1px solid #ced4da !important;
  border-radius: 4px;
  color: #70747D;
  text-align: left;
  padding: 8px 13px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cart__details .cart__details-left .cart-shipping-form .select2-selection__rendered:focus,
.cart__details .cart__details-right .cart-shipping-form .select2-selection__rendered:focus {
  color: #212529;
  background-color: #fff;
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.cart__details .cart__details-left .cart-shipping-form .select2-selection__rendered::placeholder,
.cart__details .cart__details-right .cart-shipping-form .select2-selection__rendered::placeholder {
  color: #70747D;
  font-size: 18px;
  line-height: 28px;
}
.cart__details .cart__details-left .cart-shipping-form .select2-selection--single,
.cart__details .cart__details-right .cart-shipping-form .select2-selection--single {
  border: none !important;
  height: 46px;
}
.cart__details .cart__details-left .cart-shipping-form .select2-selection--single .select2-selection__arrow,
.cart__details .cart__details-right .cart-shipping-form .select2-selection--single .select2-selection__arrow {
  display: none;
}
.cart__details .cart__details-left .cart-shipping-form input[type=text], .cart__details .cart__details-left .cart-shipping-form input[type=number], .cart__details .cart__details-left .cart-shipping-form select, .cart__details .cart__details-left .cart-shipping-form .nice-select,
.cart__details .cart__details-right .cart-shipping-form input[type=text],
.cart__details .cart__details-right .cart-shipping-form input[type=number],
.cart__details .cart__details-right .cart-shipping-form select,
.cart__details .cart__details-right .cart-shipping-form .nice-select {
  width: 100%;
  height: 46px;
  border-radius: 8px;
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem !important;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px !important;
  color: #70747D !important;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cart__details .cart__details-left .cart-shipping-form input[type=text]:focus, .cart__details .cart__details-left .cart-shipping-form input[type=number]:focus, .cart__details .cart__details-left .cart-shipping-form select:focus, .cart__details .cart__details-left .cart-shipping-form .nice-select:focus,
.cart__details .cart__details-right .cart-shipping-form input[type=text]:focus,
.cart__details .cart__details-right .cart-shipping-form input[type=number]:focus,
.cart__details .cart__details-right .cart-shipping-form select:focus,
.cart__details .cart__details-right .cart-shipping-form .nice-select:focus {
  color: #212529;
  background-color: #fff;
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.cart__details .cart__details-left .cart-shipping-form input[type=text]::placeholder, .cart__details .cart__details-left .cart-shipping-form input[type=number]::placeholder, .cart__details .cart__details-left .cart-shipping-form select::placeholder, .cart__details .cart__details-left .cart-shipping-form .nice-select::placeholder,
.cart__details .cart__details-right .cart-shipping-form input[type=text]::placeholder,
.cart__details .cart__details-right .cart-shipping-form input[type=number]::placeholder,
.cart__details .cart__details-right .cart-shipping-form select::placeholder,
.cart__details .cart__details-right .cart-shipping-form .nice-select::placeholder {
  color: #70747D;
  font-size: 18px;
  line-height: 28px;
}
.cart__details .cart__details-left .cart-shipping-form .shipping-calculator-form,
.cart__details .cart__details-right .cart-shipping-form .shipping-calculator-form {
  padding-top: 20px;
  padding-left: 20px;
}
.cart__details .cart__details-left .product-quantity button {
  color: #70747d;
  width: 32px;
  border-radius: 2px;
  height: 32px;
  border: 1px solid #e6e9f0;
  text-align: center;
  font-size: 16px;
  line-height: 15px;
}
.cart__details .cart__details-left .product-quantity input {
  font-size: 16px;
  line-height: 16px;
}
.cart__details .quantity-wrapper {
  display: flex;
  justify-content: center;
}
.cart__details .quantity-wrapper .quantity {
  display: flex;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .cart__details .cart__details-right {
    margin-top: 30px;
  }
}
.cart__details .cart__details-right .cart_totals .checkout-button {
  padding: 16px 0;
  text-align: center;
  margin-top: 20px;
  margin-bottom: -20px;
}
.cart__details .cart__details-right .cart_totals td {
  padding: 20px 0;
}
.cart__details .cart__details-right .cart_totals h5 {
  font-size: 18px;
}
.cart__details .cart__details-right .cart_totals .amount__heading {
  color: rgb(112, 116, 125);
}
.cart__details .cart__details-right .cart_totals .cart__amount, .cart__details .cart__details-right .cart_totals .cart__amount strong {
  font-weight: 600;
  color: #70747D;
}
.cart__details .cart__details-right .cart_totals .shipping {
  border-bottom: 1px solid rgb(230, 233, 240);
  color: #70747D;
}
.cart__details .cart__details-right .cart_totals table {
  width: 100%;
}
.cart__details .cart__details-right .cart-container {
  padding: 25px 40px 47px 40px;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), (max-width: 575.98px) {
  .cart__details .cart__details-right .cart-container {
    padding: 20px 20px 37px 20px;
  }
}
.cart__details .cart__details-right .cart-container .cart__item {
  padding-bottom: 20px;
  margin: 0;
}
.cart__details .cart__details-right .cart-container li label {
  margin: 0 0 8px 8px;
  color: #A0A3A9;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .cart__details .cart_totals .shop_table_responsive th {
    max-width: 35%;
  }
  .cart__details .cart_totals .shop_table_responsive td {
    max-width: 65%;
  }
}

.cart-container input[type=radio]::before {
  top: 2px !important;
}

.cart-container input[type=radio]:checked::after {
  top: 8px !important;
}

.cart-container .woocommerce-shipping-totals .woocommerce-shipping-destination {
  margin-top: 10px;
  font-size: 14px;
  line-height: 20px;
}

.empty-cart-btn {
  display: inline-block !important;
}

.return-to-shop {
  text-align: center;
}

:root {
  /**
  @font family declaration
  */
  --st-ff-body: 'Poppins', sans-serif;
  --st-ff-heading: 'Poppins', sans-serif;
  --st-ff-p: 'Poppins', sans-serif;
  --st-ff-menu: 'Poppins', sans-serif;
  --st-ff-button: 'Poppins', sans-serif;
  --st-ff-fontawesome: "Font Awesome 6 Pro";
  /**
  @color declaration
  */
  --st-common-white: #ffffff;
  --st-common-black: #000;
  --st-common-black2: #111827;
  --st-common-star: #fdb022;
  --st-heading-primary: #002366;
  --st-grey-1: #70747D;
  --st-grey-2: #414652;
  --st-text-body: #70747D;
  --st-text-1: #70747D;
  --st-text-top-header: #f5ba68;
  --st-text-top-header-hover: #f04a00;
  --st-text-menu: #ffffff;
  --st-text-menu-hover: #f04a00;
  --st-text-link: #f04a00;
  --st-text-link-hover: #002366;
  --st-text-button: #ffffff;
  --st-text-btn-hover: #f04a00;
  --st-text-price: #a0a3a9;
  --st-text-sale-price: #F04A00;
  --st-text-topmenu: #F2F4F7;
  --st-text-topmenu-hover: #70747d;
  --st-text-stock: #5fa745;
  --st-text-onsale: #70747d;
  --st-text-rating: #f04a00;
  --st-theme-1: #F04A00;
  --st-theme-2: #002366;
  --st-theme-primary: #f04a00;
  --st-theme-secondery: #002366;
  --st-theme-top-header: #111827;
  --st-theme-button: #f04a00;
  --st-theme-btn-hover: #ffffff;
  --st-theme-onsale: #ffffff;
  --st-border-1: #000;
  --st-border-button: #F04A00;
  --st-border-btn-hover: #F04A00;
  /**
  @font weight declaration
  */
  --st-fw-normal: normal;
  --st-fw-elight: 200;
  --st-fw-light: 300;
  --st-fw-regular: 400;
  --st-fw-medium: 500;
  --st-fw-sbold: 600;
  --st-fw-bold: 700;
  --st-fw-ebold: 800;
  --st-fw-black: 900;
  --st-fw-heading: 600;
  --st-fw-button: 600;
  --st-fw-menu: 500;
  /**
  @font size declaration
  */
  --st-fz-body: 18px;
  --st-fz-p: 18px;
  --st-fz-h1: 80px;
  --st-fz-h2: 60px;
  --st-fz-h3: 48px;
  --st-fz-h4: 32px;
  --st-fz-h5: 24px;
  --st-fz-h6: 20px;
  --st-fz-button: 18px;
  --st-fz-menu: 18px;
  --st-fz-mob-h1: 48px;
  --st-fz-mob-h2: 38px;
  --st-fz-mob-h3: 28px;
  --st-fz-mob-h4: 24px;
  --st-fz-mob-h5: 22px;
  --st-fz-mob-h6: 20px;
  --st-fz-tab-body: 18px;
  --st-fz-tab-h1: 65px;
  --st-fz-tab-h2: 50px;
  --st-fz-tab-h3: 46px;
  --st-fz-tab-h4: 42px;
  --st-fz-tab-h5: 34px;
  --st-fz-tab-h6: 30px;
  /**
  @line height declaration
  */
  --st-lh-body: 20px;
  --st-lh-h1: 90px;
  --st-lh-h2: 70px;
  --st-lh-h3: 58px;
  --st-lh-h4: 42px;
  --st-lh-h5: 34px;
  --st-lh-h6: 30px;
  --st-lh-button: 28px;
  --st-lh-h1-tab: 75px;
  --st-lh-h2-tab: 60px;
  --st-lh-h3-tab: 48px;
  --st-lh-h4-tab: 38px;
  --st-lh-h5-tab: 34px;
  --st-lh-h6-tab: 28px;
  --st-lh-h1-mob: 58px;
  --st-lh-h2-mob: 48px;
  --st-lh-h3-mob: 34px;
  --st-lh-h4-mob: 32px;
  --st-lh-h5-mob: 30px;
  --st-lh-h6-mob: 24px;
}

.blog__list {
  padding-top: 60px;
}
@media (max-width: 991px) and (min-width: 768px) {
  .blog__list .list-post-blog {
    justify-content: space-between;
  }
}

.blog__list-post {
  border: 1px solid #e6e9f0;
  border-radius: 24px;
  padding: 20px;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .blog__list-post {
    margin-bottom: 20px;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .blog__list-post {
    width: 48.3%;
  }
}

.blog__list-img {
  height: 100%;
  overflow: hidden;
  border-radius: 12px;
}
.blog__list-img img {
  width: 100%;
  height: 360px;
  border-radius: 12px;
  transition: transform 0.5s ease, translate 0.5s ease;
  object-fit: cover;
}
.blog__list-img img:hover {
  transform: scale(1.1);
}
@media (max-width: 991px) and (min-width: 768px) {
  .blog__list-img img {
    height: 190px;
    object-fit: cover;
  }
}
@media (max-width: 1275px) and (min-width: 992px) {
  .blog__list-img img {
    height: 250px;
  }
}

.blog__list-content .blog__heading h4 {
  padding-top: 20px;
}
@media (max-width: 1275px) and (min-width: 992px) {
  .blog__list-content .blog__heading h4 {
    padding-top: 10px;
    font-size: 28px;
  }
}
.blog__list-content .blog__author {
  padding-top: 5px;
  color: #70747d;
  font-weight: 400;
}
.blog__list-content p {
  font-weight: 400;
  line-height: 28px;
  color: #a0a3a9;
  padding: 20px 0;
}
@media (max-width: 1275px) and (min-width: 992px) {
  .blog__list-content p {
    padding: 0;
  }
}
.blog__list-content .blog__content-bottom {
  color: #70747d;
  font-weight: 400;
}
@media (max-width: 575.98px) {
  .blog__list-content .blog__author {
    font-size: 14px;
    padding-top: 10px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .blog__list-content .blog__author {
    padding-top: 20px;
  }
}
@media (max-width: 400px) {
  .blog__list-content .blog__author {
    font-size: 12px;
  }
  .blog__list-content .blog__author span:nth-of-type(2) {
    margin-left: 10px !important;
  }
  .blog__list-content .blog__author img:nth-of-type(2) {
    margin-left: 10px !important;
  }
}

:root {
  /**
  @font family declaration
  */
  --st-ff-body: 'Poppins', sans-serif;
  --st-ff-heading: 'Poppins', sans-serif;
  --st-ff-p: 'Poppins', sans-serif;
  --st-ff-menu: 'Poppins', sans-serif;
  --st-ff-button: 'Poppins', sans-serif;
  --st-ff-fontawesome: "Font Awesome 6 Pro";
  /**
  @color declaration
  */
  --st-common-white: #ffffff;
  --st-common-black: #000;
  --st-common-black2: #111827;
  --st-common-star: #fdb022;
  --st-heading-primary: #002366;
  --st-grey-1: #70747D;
  --st-grey-2: #414652;
  --st-text-body: #70747D;
  --st-text-1: #70747D;
  --st-text-top-header: #f5ba68;
  --st-text-top-header-hover: #f04a00;
  --st-text-menu: #ffffff;
  --st-text-menu-hover: #f04a00;
  --st-text-link: #f04a00;
  --st-text-link-hover: #002366;
  --st-text-button: #ffffff;
  --st-text-btn-hover: #f04a00;
  --st-text-price: #a0a3a9;
  --st-text-sale-price: #F04A00;
  --st-text-topmenu: #F2F4F7;
  --st-text-topmenu-hover: #70747d;
  --st-text-stock: #5fa745;
  --st-text-onsale: #70747d;
  --st-text-rating: #f04a00;
  --st-theme-1: #F04A00;
  --st-theme-2: #002366;
  --st-theme-primary: #f04a00;
  --st-theme-secondery: #002366;
  --st-theme-top-header: #111827;
  --st-theme-button: #f04a00;
  --st-theme-btn-hover: #ffffff;
  --st-theme-onsale: #ffffff;
  --st-border-1: #000;
  --st-border-button: #F04A00;
  --st-border-btn-hover: #F04A00;
  /**
  @font weight declaration
  */
  --st-fw-normal: normal;
  --st-fw-elight: 200;
  --st-fw-light: 300;
  --st-fw-regular: 400;
  --st-fw-medium: 500;
  --st-fw-sbold: 600;
  --st-fw-bold: 700;
  --st-fw-ebold: 800;
  --st-fw-black: 900;
  --st-fw-heading: 600;
  --st-fw-button: 600;
  --st-fw-menu: 500;
  /**
  @font size declaration
  */
  --st-fz-body: 18px;
  --st-fz-p: 18px;
  --st-fz-h1: 80px;
  --st-fz-h2: 60px;
  --st-fz-h3: 48px;
  --st-fz-h4: 32px;
  --st-fz-h5: 24px;
  --st-fz-h6: 20px;
  --st-fz-button: 18px;
  --st-fz-menu: 18px;
  --st-fz-mob-h1: 48px;
  --st-fz-mob-h2: 38px;
  --st-fz-mob-h3: 28px;
  --st-fz-mob-h4: 24px;
  --st-fz-mob-h5: 22px;
  --st-fz-mob-h6: 20px;
  --st-fz-tab-body: 18px;
  --st-fz-tab-h1: 65px;
  --st-fz-tab-h2: 50px;
  --st-fz-tab-h3: 46px;
  --st-fz-tab-h4: 42px;
  --st-fz-tab-h5: 34px;
  --st-fz-tab-h6: 30px;
  /**
  @line height declaration
  */
  --st-lh-body: 20px;
  --st-lh-h1: 90px;
  --st-lh-h2: 70px;
  --st-lh-h3: 58px;
  --st-lh-h4: 42px;
  --st-lh-h5: 34px;
  --st-lh-h6: 30px;
  --st-lh-button: 28px;
  --st-lh-h1-tab: 75px;
  --st-lh-h2-tab: 60px;
  --st-lh-h3-tab: 48px;
  --st-lh-h4-tab: 38px;
  --st-lh-h5-tab: 34px;
  --st-lh-h6-tab: 28px;
  --st-lh-h1-mob: 58px;
  --st-lh-h2-mob: 48px;
  --st-lh-h3-mob: 34px;
  --st-lh-h4-mob: 32px;
  --st-lh-h5-mob: 30px;
  --st-lh-h6-mob: 24px;
}

.compare__table {
  padding: 60px 0 140px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .compare__table {
    padding: 60px 0 80px 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .compare__table {
    padding: 50px 0 50px 0;
  }
}
.compare__table .return-to-shop {
  padding-bottom: 25px;
}

.compare__table-wrapper {
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: #888 #f1f1f1;
  border-radius: 12px;
  border: 1px solid rgb(230, 233, 240);
}
.compare__table-wrapper::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.compare__table-wrapper::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.compare__table-wrapper::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}
.compare__table-wrapper::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.compare__table-wrapper .fa-shuffle {
  font-size: 27px;
  height: 50px;
  width: 50px;
  background: var(--st-common-white);
  vertical-align: middle;
  line-height: 50px;
  color: var(--st-theme-1);
  font-weight: 400;
  margin: 0 4px;
  border-radius: 3px;
}
.compare__table-wrapper .fa-shuffle:hover {
  color: var(--st-common-white);
  background: var(--st-theme-1);
}
.compare__table-wrapper .product__top img {
  background-color: rgb(230, 233, 240);
  border-radius: 12px;
  width: 100%;
  height: 400px;
  object-fit: cover;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .compare__table-wrapper .product__top img {
    height: 300px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .compare__table-wrapper .product__top img {
    height: 200px;
  }
}
.compare__table-wrapper .product__top .f__p-content {
  padding-top: 12px;
}
.compare__table-wrapper .product__top .f__p-content span {
  font-size: 14px;
  font-weight: 400;
  color: rgb(112, 116, 125);
}
.compare__table-wrapper .product__top .f__p-content h6 {
  padding-top: 7px;
  font-size: 18px !important;
}
.compare__table-wrapper p.compare-list {
  padding: 0 20px;
}
.compare__table-wrapper table {
  width: 100%;
}
.compare__table-wrapper table th {
  align-self: center;
  font-weight: 600;
  color: rgb(112, 116, 125);
  line-height: 28px;
  padding-left: 30px;
}
.compare__table-wrapper table tr {
  border: 1px solid rgb(230, 233, 240);
}
.compare__table-wrapper table tr td {
  border-left: 1px solid rgb(230, 233, 240);
  padding: 12px 30px;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: rgb(112, 116, 125);
}
.compare__table-wrapper table tr td .compare__price {
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  color: var(--st-theme-1);
}
.compare__table-wrapper .image__placeholder {
  cursor: pointer;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.0509803922);
  width: 100%;
  padding-top: 100%;
  position: relative;
  margin: 35px 0;
  height: 80%;
}
.compare__table-wrapper .image__placeholder::before {
  content: "+";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
}

.product__remove {
  text-align: right;
  cursor: pointer;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  padding: 0 0 10px 0;
}
.product__remove .fa-xmark {
  padding-right: 3px;
  color: rgb(160, 163, 169);
}

@media (max-width: 991px) {
  .compare__table-wrapper th.col {
    width: 800px !important;
  }
  .compare__table-wrapper .product__top .f__p-content {
    padding-top: 8px;
  }
  .compare__table-wrapper .product__top .f__p-content span {
    font-size: 10px;
    font-weight: 400;
    color: rgb(112, 116, 125);
  }
  .compare__table-wrapper .product__top h6 {
    padding-top: 5px;
    font-size: 16px;
  }
  .compare__table-wrapper table th {
    line-height: 18px;
    padding-left: 20px;
    font-size: 16px;
  }
  .compare__table-wrapper table tr td {
    padding: 7px 20px;
    font-size: 16px;
    line-height: 18px;
  }
  .compare__table-wrapper table tr td .compare__price {
    font-size: 18px;
    line-height: 24px;
  }
}
.compare__btn {
  font-size: 18px;
  line-height: 28px;
  padding: 7px 12px;
  display: inline-block !important;
}

@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .compare__table-wrapper .product__top .f__p-content {
    padding-top: 3px;
  }
  .compare__table-wrapper .product__top .f__p-content span {
    font-size: 7px;
    font-weight: 400;
    color: rgb(112, 116, 125);
  }
  .compare__table-wrapper .product__top h6 {
    padding-top: 5px;
    font-size: 14px !important;
    line-height: 18px !important;
  }
  .compare__table-wrapper table th {
    font-size: 12px;
    line-height: 16px;
    padding-left: 20px;
  }
  .compare__table-wrapper table tr td {
    padding: 5px 7px;
    font-size: 12px;
    line-height: 16px;
  }
  .compare__table-wrapper table tr td .compare__price {
    font-size: 14px;
    line-height: 18px;
  }
  .compare__btn {
    font-size: 10px;
    line-height: 12px;
    padding: 5px 7px;
  }
}
@media (max-width: 575.98px) {
  .product__remove {
    font-size: 12px;
    line-height: 16px;
  }
}
.table-responsive::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.table-responsive::-webkit-scrollbar-thumb {
  background-color: #002366;
  border-radius: 10px;
}

.table-responsive::-webkit-scrollbar-track {
  background-color: #f1f1f1;
  border-radius: 5px;
}

:root {
  /**
  @font family declaration
  */
  --st-ff-body: 'Poppins', sans-serif;
  --st-ff-heading: 'Poppins', sans-serif;
  --st-ff-p: 'Poppins', sans-serif;
  --st-ff-menu: 'Poppins', sans-serif;
  --st-ff-button: 'Poppins', sans-serif;
  --st-ff-fontawesome: "Font Awesome 6 Pro";
  /**
  @color declaration
  */
  --st-common-white: #ffffff;
  --st-common-black: #000;
  --st-common-black2: #111827;
  --st-common-star: #fdb022;
  --st-heading-primary: #002366;
  --st-grey-1: #70747D;
  --st-grey-2: #414652;
  --st-text-body: #70747D;
  --st-text-1: #70747D;
  --st-text-top-header: #f5ba68;
  --st-text-top-header-hover: #f04a00;
  --st-text-menu: #ffffff;
  --st-text-menu-hover: #f04a00;
  --st-text-link: #f04a00;
  --st-text-link-hover: #002366;
  --st-text-button: #ffffff;
  --st-text-btn-hover: #f04a00;
  --st-text-price: #a0a3a9;
  --st-text-sale-price: #F04A00;
  --st-text-topmenu: #F2F4F7;
  --st-text-topmenu-hover: #70747d;
  --st-text-stock: #5fa745;
  --st-text-onsale: #70747d;
  --st-text-rating: #f04a00;
  --st-theme-1: #F04A00;
  --st-theme-2: #002366;
  --st-theme-primary: #f04a00;
  --st-theme-secondery: #002366;
  --st-theme-top-header: #111827;
  --st-theme-button: #f04a00;
  --st-theme-btn-hover: #ffffff;
  --st-theme-onsale: #ffffff;
  --st-border-1: #000;
  --st-border-button: #F04A00;
  --st-border-btn-hover: #F04A00;
  /**
  @font weight declaration
  */
  --st-fw-normal: normal;
  --st-fw-elight: 200;
  --st-fw-light: 300;
  --st-fw-regular: 400;
  --st-fw-medium: 500;
  --st-fw-sbold: 600;
  --st-fw-bold: 700;
  --st-fw-ebold: 800;
  --st-fw-black: 900;
  --st-fw-heading: 600;
  --st-fw-button: 600;
  --st-fw-menu: 500;
  /**
  @font size declaration
  */
  --st-fz-body: 18px;
  --st-fz-p: 18px;
  --st-fz-h1: 80px;
  --st-fz-h2: 60px;
  --st-fz-h3: 48px;
  --st-fz-h4: 32px;
  --st-fz-h5: 24px;
  --st-fz-h6: 20px;
  --st-fz-button: 18px;
  --st-fz-menu: 18px;
  --st-fz-mob-h1: 48px;
  --st-fz-mob-h2: 38px;
  --st-fz-mob-h3: 28px;
  --st-fz-mob-h4: 24px;
  --st-fz-mob-h5: 22px;
  --st-fz-mob-h6: 20px;
  --st-fz-tab-body: 18px;
  --st-fz-tab-h1: 65px;
  --st-fz-tab-h2: 50px;
  --st-fz-tab-h3: 46px;
  --st-fz-tab-h4: 42px;
  --st-fz-tab-h5: 34px;
  --st-fz-tab-h6: 30px;
  /**
  @line height declaration
  */
  --st-lh-body: 20px;
  --st-lh-h1: 90px;
  --st-lh-h2: 70px;
  --st-lh-h3: 58px;
  --st-lh-h4: 42px;
  --st-lh-h5: 34px;
  --st-lh-h6: 30px;
  --st-lh-button: 28px;
  --st-lh-h1-tab: 75px;
  --st-lh-h2-tab: 60px;
  --st-lh-h3-tab: 48px;
  --st-lh-h4-tab: 38px;
  --st-lh-h5-tab: 34px;
  --st-lh-h6-tab: 28px;
  --st-lh-h1-mob: 58px;
  --st-lh-h2-mob: 48px;
  --st-lh-h3-mob: 34px;
  --st-lh-h4-mob: 32px;
  --st-lh-h5-mob: 30px;
  --st-lh-h6-mob: 24px;
}

.wishlist__table-style table th {
  padding: 10px 10px;
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .wishlist__table-style h5 {
    font-size: 14px !important;
    line-height: 20px !important;
  }
}

.wishlist__table {
  padding: 120px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .wishlist__table {
    padding: 80px 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .wishlist__table {
    padding: 50px;
  }
}
.wishlist__table .table__wrapper {
  padding: 0 30px;
}
.wishlist__table table th {
  padding: 20px 0;
}

.wishlist__table .table-responsive-sm, .wishlist__table-style .table-responsive-sm {
  overflow-x: auto;
}
.wishlist__table .table__wrapper, .wishlist__table-style .table__wrapper {
  width: 100%;
  border: 1px solid rgb(230, 233, 240);
  border-radius: 12px;
  overflow-x: scroll;
}
.wishlist__table table, .wishlist__table-style table {
  width: 100%;
  border-collapse: collapse;
}
.wishlist__table table th, .wishlist__table-style table th {
  text-align: center;
  color: rgb(112, 116, 125);
  font-weight: 600;
}
.wishlist__table table td, .wishlist__table-style table td {
  padding: 20px;
  text-align: center;
  color: rgb(112, 116, 125);
  font-weight: 600;
}
@media (max-width: 1199px) {
  .wishlist__table table td, .wishlist__table-style table td {
    padding: 10px;
  }
}
.wishlist__table table td .coupon__btn, .wishlist__table-style table td .coupon__btn {
  padding: 4px 16px;
  display: inline-block;
}
.wishlist__table table td .fa-regular, .wishlist__table-style table td .fa-regular {
  cursor: pointer;
}
.wishlist__table table td .fa-regular:hover, .wishlist__table-style table td .fa-regular:hover {
  color: rgb(0, 35, 102);
}
.wishlist__table table tr .table__data, .wishlist__table-style table tr .table__data {
  padding: 30px;
}
.wishlist__table table .table__content, .wishlist__table-style table .table__content {
  border-top: 1px solid rgb(230, 233, 240);
}

.product__content {
  text-align: left;
}
.product__content img {
  background-color: rgb(243, 243, 244);
  border-radius: 4px;
  width: 100%;
  max-width: 50px;
  height: 50px;
  font-size: 0;
  object-fit: cover;
}
.product__content h5 {
  font-size: 18px;
  display: inline-block;
  padding-left: 10px;
}

@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .wishlist__table .table__wrapper {
    overflow-x: auto;
  }
  .wishlist__table tr {
    font-size: 14px;
  }
  .wishlist__table tr .table__data {
    padding: 0;
  }
  .wishlist__table tr td {
    padding: 10px;
  }
  .wishlist__table tr td .coupon__btn {
    font-size: 14px;
    padding: 4px 8px;
  }
  .wishlist__table h5 {
    font-size: 14px !important;
    line-height: 18px !important;
    padding-left: 0 !important;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), (max-width: 991px) {
  .wishlist__table table {
    width: 100%;
  }
  .wishlist__table table th {
    padding: 10px 0;
  }
  .wishlist__table table td {
    padding: 10px;
  }
  .wishlist__table table td .coupon__btn {
    padding: 4px 10px;
  }
  .wishlist__table table tr .table__data {
    padding: 10px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), (max-width: 991px) {
  .wishlist__table .table__wrapper {
    padding: 0;
  }
  .wishlist__table table {
    width: 100%;
  }
  .wishlist__table table th {
    font-size: 14px;
  }
  .wishlist__table table td {
    font-size: 14px;
  }
  .wishlist__table table td .coupon__btn {
    font-size: 14px;
    line-height: 18px;
  }
  .wishlist__table .product__content {
    text-align: left;
    padding-left: 0px;
  }
  .wishlist__table .product__content img {
    background-color: rgb(243, 243, 244);
    border-radius: 4px;
  }
  .wishlist__table .product__content h5 {
    font-size: 14px;
    line-height: 18px;
    display: inline-block;
    padding-left: 0px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), (max-width: 991px) {
  .wishlist__table tr td:nth-child(1) {
    width: 30%;
  }
}
.table-responsive-sm {
  overflow-x: auto;
}

@media (max-width: 991px) {
  .table-responsive-sm {
    overflow-x: visible;
  }
}
@media (max-width: 575.98px) {
  .wishlist__table-style table {
    width: 500px;
  }
}
.wishlist__table-small {
  padding: 80px 0;
}
@media (max-width: 575.98px) {
  .wishlist__table-small {
    padding: 50px 0;
  }
}
.wishlist__table-small .wishlist__table-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.wishlist__table-small .wishlist__table-content .table__content {
  position: relative;
  flex: 0 0 calc(50% - 10px);
  max-width: calc(50% - 10px);
  border: 1px solid #E6E9F0;
  border-radius: 12px;
  padding: 20px;
}
@media (max-width: 768px) {
  .wishlist__table-small .wishlist__table-content .table__content {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.wishlist__table-small .wishlist__table-content .table__content .fa-trash-can {
  color: rgb(112, 116, 125);
  cursor: pointer;
}
.wishlist__table-small .wishlist__table-content .table__content .fa-trash-can:hover {
  color: rgb(0, 35, 102);
}
.wishlist__table-small .wishlist__table-content .table__content .product__remove {
  position: absolute;
  top: 20px;
  right: 18px;
  font-size: 20px;
  cursor: pointer;
  transition: color 0.3s ease;
}
.wishlist__table-small .wishlist__table-content .table__content .product__remove:hover {
  color: var(--st-theme-primary);
}
.wishlist__table-small .wishlist__item-wrapper {
  position: relative;
}
.wishlist__table-small .wishlist__item-wrapper .product__thumbnail {
  margin-right: 20px;
  width: 100px;
}
@media xs {
  .wishlist__table-small .wishlist__item-wrapper .product__thumbnail {
    margin-right: 0;
  }
}
.wishlist__table-small .wishlist__item-wrapper .product__thumbnail img {
  width: 100%;
  font-size: 0;
}
.wishlist__table-small .wishlist__item-wrapper .wishlist__product-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.wishlist__table-small .wishlist__item-wrapper .wishlist__product-details .product__name h5 {
  font-size: 15px !important;
  line-height: 20px !important;
  padding-right: 23px;
}
.wishlist__table-small .wishlist__item-wrapper .wishlist__details-table {
  font-size: 15px;
}
.wishlist__table-small .wishlist__item-wrapper .wishlist__details-table .value span:nth-of-type(1) {
  color: rgb(132, 132, 132);
  padding-right: 2px;
}
.wishlist__table-small .wishlist__item-wrapper .wishlist__details-table .value span:nth-of-type(2) {
  color: var(--st-theme-1);
}
.wishlist__table-small .additional__info-wrapper {
  position: relative;
}
.wishlist__table-small .additional__info-wrapper .additional__info td {
  color: #297e29;
  font-size: 13.5px;
}
.wishlist__table-small .additional__info-wrapper .additional__info .label {
  padding-right: 5px;
}
.wishlist__table-small .additional__info-wrapper .coupon__btn {
  margin-top: 10px;
  padding: 7px 20px;
}

.wishlist__table-small {
  display: none;
}

.wishlist__table {
  display: block;
}

@media (max-width: 991px) {
  .wishlist__table-small {
    display: block !important;
  }
  .wishlist__table {
    display: none !important;
  }
  .additional__info .out__stock-color {
    color: red;
  }
}
.benariz__wishlist-message {
  text-align: center;
}

.button__disabled button {
  cursor: default;
  opacity: 0.7;
  border: 1px solid grey;
  padding: 4px 16px;
  border-radius: 7px;
  line-height: 27px;
}

.wishlist__cart-message {
  display: none;
  margin-top: -25px;
  padding: 10px 0;
}
.wishlist__cart-message a {
  font-weight: 400;
}

/**
 * Styles to make responsive
 */
@media (min-width: 1199px) and (max-width: 1214px) {
  .coupon__btn {
    font-size: 16px;
  }
}
.wishlist__table .product__content {
  padding-top: 0;
}
.wishlist__table .remove-from-wishlist {
  cursor: pointer;
  transition: color 0.3s ease;
}
.wishlist__table .remove-from-wishlist:hover {
  color: var(--st-theme-primary);
}

.wishlist__table-small .button__disabled {
  margin-top: 10px;
}
.wishlist__table-small .button__disabled button {
  padding: 7px 20px;
  width: 100%;
}
.wishlist__table-small .additional__info {
  margin: 10px 0;
}

:root {
  /**
  @font family declaration
  */
  --st-ff-body: 'Poppins', sans-serif;
  --st-ff-heading: 'Poppins', sans-serif;
  --st-ff-p: 'Poppins', sans-serif;
  --st-ff-menu: 'Poppins', sans-serif;
  --st-ff-button: 'Poppins', sans-serif;
  --st-ff-fontawesome: "Font Awesome 6 Pro";
  /**
  @color declaration
  */
  --st-common-white: #ffffff;
  --st-common-black: #000;
  --st-common-black2: #111827;
  --st-common-star: #fdb022;
  --st-heading-primary: #002366;
  --st-grey-1: #70747D;
  --st-grey-2: #414652;
  --st-text-body: #70747D;
  --st-text-1: #70747D;
  --st-text-top-header: #f5ba68;
  --st-text-top-header-hover: #f04a00;
  --st-text-menu: #ffffff;
  --st-text-menu-hover: #f04a00;
  --st-text-link: #f04a00;
  --st-text-link-hover: #002366;
  --st-text-button: #ffffff;
  --st-text-btn-hover: #f04a00;
  --st-text-price: #a0a3a9;
  --st-text-sale-price: #F04A00;
  --st-text-topmenu: #F2F4F7;
  --st-text-topmenu-hover: #70747d;
  --st-text-stock: #5fa745;
  --st-text-onsale: #70747d;
  --st-text-rating: #f04a00;
  --st-theme-1: #F04A00;
  --st-theme-2: #002366;
  --st-theme-primary: #f04a00;
  --st-theme-secondery: #002366;
  --st-theme-top-header: #111827;
  --st-theme-button: #f04a00;
  --st-theme-btn-hover: #ffffff;
  --st-theme-onsale: #ffffff;
  --st-border-1: #000;
  --st-border-button: #F04A00;
  --st-border-btn-hover: #F04A00;
  /**
  @font weight declaration
  */
  --st-fw-normal: normal;
  --st-fw-elight: 200;
  --st-fw-light: 300;
  --st-fw-regular: 400;
  --st-fw-medium: 500;
  --st-fw-sbold: 600;
  --st-fw-bold: 700;
  --st-fw-ebold: 800;
  --st-fw-black: 900;
  --st-fw-heading: 600;
  --st-fw-button: 600;
  --st-fw-menu: 500;
  /**
  @font size declaration
  */
  --st-fz-body: 18px;
  --st-fz-p: 18px;
  --st-fz-h1: 80px;
  --st-fz-h2: 60px;
  --st-fz-h3: 48px;
  --st-fz-h4: 32px;
  --st-fz-h5: 24px;
  --st-fz-h6: 20px;
  --st-fz-button: 18px;
  --st-fz-menu: 18px;
  --st-fz-mob-h1: 48px;
  --st-fz-mob-h2: 38px;
  --st-fz-mob-h3: 28px;
  --st-fz-mob-h4: 24px;
  --st-fz-mob-h5: 22px;
  --st-fz-mob-h6: 20px;
  --st-fz-tab-body: 18px;
  --st-fz-tab-h1: 65px;
  --st-fz-tab-h2: 50px;
  --st-fz-tab-h3: 46px;
  --st-fz-tab-h4: 42px;
  --st-fz-tab-h5: 34px;
  --st-fz-tab-h6: 30px;
  /**
  @line height declaration
  */
  --st-lh-body: 20px;
  --st-lh-h1: 90px;
  --st-lh-h2: 70px;
  --st-lh-h3: 58px;
  --st-lh-h4: 42px;
  --st-lh-h5: 34px;
  --st-lh-h6: 30px;
  --st-lh-button: 28px;
  --st-lh-h1-tab: 75px;
  --st-lh-h2-tab: 60px;
  --st-lh-h3-tab: 48px;
  --st-lh-h4-tab: 38px;
  --st-lh-h5-tab: 34px;
  --st-lh-h6-tab: 28px;
  --st-lh-h1-mob: 58px;
  --st-lh-h2-mob: 48px;
  --st-lh-h3-mob: 34px;
  --st-lh-h4-mob: 32px;
  --st-lh-h5-mob: 30px;
  --st-lh-h6-mob: 24px;
}

.checkout__container {
  padding-bottom: 140px;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .checkout__container {
    padding-bottom: 80px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .checkout__container {
    padding-bottom: 50px;
  }
}
.checkout__container .checkout__form, .checkout__container .order__details {
  border: 1px solid rgb(230, 233, 240);
  padding: 25px 40px 0 40px;
  border-radius: 12px;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px) {
  .checkout__container .checkout__form, .checkout__container .order__details {
    padding: 25px 30px 0 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .checkout__container .checkout__form, .checkout__container .order__details {
    padding: 15px 20px 0 20px;
  }
}
.checkout__container .order__details {
  padding: 40px;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px) {
  .checkout__container .order__details {
    padding: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .checkout__container .order__details {
    padding: 20px;
  }
}
.checkout__container .order__details table {
  width: 100%;
}
.checkout__container .order__details table th {
  color: #002366;
}
.checkout__container .order__details .product-thumbnail img {
  width: 68px;
  height: 80px;
  object-fit: cover;
  background: #F3F3F4;
  border-radius: 12px;
  margin: 10px 0;
}
.checkout__container .order__details .cart_item .product-name {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: #002366;
  padding: 0 10px;
}
.checkout__container .order__details .product-total {
  text-align: right;
}
.checkout__container .order__details .product-total span {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  color: #70747D;
}
.checkout__container .order__details tfoot {
  border-top: 1px solid #E6E9F0;
}
.checkout__container .order__details tfoot th {
  color: #70747D;
}
.checkout__container .order__details tfoot td {
  text-align: right;
  font-weight: 500;
  color: #111827;
}
.checkout__container .order__details tfoot tr {
  height: 68px;
  border-bottom: 1px solid #E6E9F0;
}
.checkout__container .order__details thead {
  border-bottom: 1px solid #E6E9F0;
  height: 28px;
}
.checkout__container .order__details thead th {
  padding-bottom: 20px;
}
.checkout__container .order__details .payment__wrapper {
  padding-top: 28px;
}
.checkout__container .order__details .payment__wrapper label {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #70747D;
  margin-left: 6px;
}
.checkout__container .order__details .payment__wrapper .wc_payment_methods {
  margin-top: 20px;
}
.checkout__container .order__details .payment__wrapper li {
  margin: 7px 0;
}
.checkout__container .order__details .payment__wrapper .payment_box p, .checkout__container .order__details .payment__wrapper .woocommerce-privacy-policy-text p {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #A0A3A9;
  padding-top: 8px;
}
.checkout__container .order__details .place-order-btn {
  margin-top: 30px;
  width: 100%;
  padding: 16px 0;
}
@media (max-width: 991px) {
  .checkout__container .order__details {
    margin-top: 40px;
  }
}
.checkout__container .order__details .custom-terms-checkbox {
  display: flex;
  align-items: center;
  gap: 5px;
}
.checkout__container .order__details .checkbox-text-wrapper label {
  color: #A0A3A9 !important;
}
.checkout__container .order__details .variation-ExpressDelivery {
  display: inline-block;
  color: #70747D;
}
.checkout__container .order__details .variation-ExpressDelivery p {
  margin: 0;
}
.checkout__container input[type=radio]::before {
  border-radius: 50% !important;
}
.checkout__container .checkout__form .form-row.woocommerce-validated input.input-text,
.checkout__container .checkout__form .form-row.woocommerce-invalid input.input-text {
  box-shadow: none;
}
.checkout__container .checkout__form input[type=text],
.checkout__container .checkout__form textarea, .checkout__container .checkout__form input[type=tel],
.checkout__container .checkout__form input[type=email],
.checkout__container .checkout__form select,
.checkout__container .checkout__form .select2-selection--single {
  width: 100%;
  height: 56px;
  border-radius: 8px;
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem !important;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px !important;
  color: #70747D !important;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.checkout__container .checkout__form input[type=text]:focus,
.checkout__container .checkout__form textarea:focus, .checkout__container .checkout__form input[type=tel]:focus,
.checkout__container .checkout__form input[type=email]:focus,
.checkout__container .checkout__form select:focus,
.checkout__container .checkout__form .select2-selection--single:focus {
  color: #212529;
  background-color: #fff;
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.checkout__container .checkout__form input[type=text]::placeholder,
.checkout__container .checkout__form textarea::placeholder, .checkout__container .checkout__form input[type=tel]::placeholder,
.checkout__container .checkout__form input[type=email]::placeholder,
.checkout__container .checkout__form select::placeholder,
.checkout__container .checkout__form .select2-selection--single::placeholder {
  color: #70747D;
  font-size: 18px;
  line-height: 28px;
}
.checkout__container .checkout__form .select2-selection__rendered {
  padding: 7px 0;
  font-size: 18px;
  line-height: 28px;
  color: #70747D !important;
  background-color: #fff;
}
.checkout__container .checkout__form .select2-selection__rendered:focus {
  color: #212529;
  background-color: #fff;
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.checkout__container .checkout__form .select2-selection__rendered::placeholder {
  color: #70747D;
}
.checkout__container .checkout__form .select2-selection__arrow {
  top: 15px !important;
  right: 10px !important;
}
.checkout__container .checkout__form textarea {
  height: 120px;
}
.checkout__container .checkout__form label {
  font-size: 18px;
  line-height: 28px;
  color: #414652;
  margin: 20px 0 12px 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .checkout__container .checkout__form label {
    margin: 10px 0 10px 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .checkout__container .checkout__form label {
    margin: 0 0 10px 0;
  }
}
.checkout__container .checkout__form label abbr {
  color: #414652;
  text-decoration: none !important;
}
.checkout__container .checkout__form input[type=checkbox]:checked::after {
  top: 9px;
}
.checkout__container .checkout__form input[type=checkbox]::before {
  top: 3px;
}
.checkout__container .checkout__form select.state_select {
  display: block !important;
}
.checkout__container .checkout__form .nice-select {
  display: none;
}
.checkout__container .woocommerce-additional-fields__field-wrapper {
  padding-bottom: 25px;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .checkout__container .woocommerce-additional-fields__field-wrapper {
    padding-bottom: 10px;
  }
}
.checkout__container .woocommerce-additional-fields__field-wrapper #order_comments_field label {
  margin: 0px 0 12px 0;
}
.checkout__container .woocommerce-additional-fields h3 {
  padding-top: 20px;
}
@media (max-width: 440px) {
  .checkout__container .checkout__table-wrapper {
    overflow-x: auto;
    display: block;
    width: 100%;
  }
  .checkout__container .checkout__table-wrapper .shop_table {
    width: 440px;
  }
  .checkout__container .checkout__table-wrapper::-webkit-scrollbar {
    height: 5px;
  }
  .checkout__container .checkout__table-wrapper::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
  }
}

.coupon__form {
  margin: 40px 0;
  padding-bottom: 0;
}
@media (max-width: 575.98px) {
  .coupon__form {
    margin: 20px 0 40px 0;
  }
}
.coupon__form .woocommerce-info {
  background-color: #fff !important;
  color: #70747D;
  padding: 0 !important;
  margin-bottom: 10px !important;
}
.coupon__form .woocommerce-info a {
  text-decoration: underline;
  color: #414652;
}
.coupon__form .woocommerce-info,
.coupon__form .woocommerce-message,
.coupon__form .woocommerce-error {
  margin: 0 0 16px 0;
}
.coupon__form .woocommerce-form-coupon-toggle {
  margin-bottom: 16px;
}
.coupon__form .checkout_coupon {
  margin-top: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .coupon__form .checkout_coupon {
    margin-top: 0;
  }
}
.coupon__form .input-text {
  margin: 25px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .coupon__form .input-text {
    margin: 10px 0;
  }
}

.select2-container--default .select2-results__option--highlighted[data-selected],
.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: var(--st-theme-1) !important;
}

.cart-container input[type=radio], .cart-container input[type=checkbox],
.checkout__container input[type=radio],
.checkout__container input[type=checkbox], .product__content input[type=radio], .product__content input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  border: none;
  width: 18px;
  height: 18px;
  position: relative;
  cursor: pointer;
}
.cart-container input[type=radio]::before, .cart-container input[type=checkbox]::before,
.checkout__container input[type=radio]::before,
.checkout__container input[type=checkbox]::before, .product__content input[type=radio]::before, .product__content input[type=checkbox]::before {
  content: "";
  width: 18px;
  height: 18px;
  border: 1px solid #70747D;
  background-color: var(--st-common-white);
  position: absolute;
  top: 4px;
  left: 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.cart-container input[type=radio]:checked::before, .cart-container input[type=checkbox]:checked::before,
.checkout__container input[type=radio]:checked::before,
.checkout__container input[type=checkbox]:checked::before, .product__content input[type=radio]:checked::before, .product__content input[type=checkbox]:checked::before {
  background-color: var(--st-theme-1);
  border-color: var(--st-theme-1);
  border-radius: 2px;
}
.cart-container input[type=radio]:checked::after, .cart-container input[type=checkbox]:checked::after,
.checkout__container input[type=radio]:checked::after,
.checkout__container input[type=checkbox]:checked::after, .product__content input[type=radio]:checked::after, .product__content input[type=checkbox]:checked::after {
  content: "";
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M3.71497 7.43L0 3.71503L1.23834 2.47663L3.71497 4.95336L8.66835 0L9.90667 1.23833L3.71497 7.43Z' fill='white'/%3e%3c/svg%3e");
  position: absolute;
  top: 10px;
  left: 4px;
  display: block;
  z-index: 9;
  opacity: 2;
  background-repeat: no-repeat;
  background-position: center center;
  height: 7.43px;
  width: 9.91px;
}

.order__details #place_order {
  width: 100%;
  margin-top: 28px;
}
.order__details .wc_payment_methods label {
  font-size: 14px;
  font-weight: 500;
}
.order__details .payment_box p,
.order__details .woocommerce-privacy-policy-text p {
  font-size: 14px;
}
.order__details .payment_box a,
.order__details .woocommerce-privacy-policy-text a {
  text-decoration: underline;
}
.order__details .checkbox-text-wrapper label {
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  margin-left: 10px;
}
.order__details .checkbox-text-wrapper label a {
  text-decoration: underline;
}
.order__details .woocommerce-checkout-payment {
  margin-top: 28px;
}

:root {
  /**
  @font family declaration
  */
  --st-ff-body: 'Poppins', sans-serif;
  --st-ff-heading: 'Poppins', sans-serif;
  --st-ff-p: 'Poppins', sans-serif;
  --st-ff-menu: 'Poppins', sans-serif;
  --st-ff-button: 'Poppins', sans-serif;
  --st-ff-fontawesome: "Font Awesome 6 Pro";
  /**
  @color declaration
  */
  --st-common-white: #ffffff;
  --st-common-black: #000;
  --st-common-black2: #111827;
  --st-common-star: #fdb022;
  --st-heading-primary: #002366;
  --st-grey-1: #70747D;
  --st-grey-2: #414652;
  --st-text-body: #70747D;
  --st-text-1: #70747D;
  --st-text-top-header: #f5ba68;
  --st-text-top-header-hover: #f04a00;
  --st-text-menu: #ffffff;
  --st-text-menu-hover: #f04a00;
  --st-text-link: #f04a00;
  --st-text-link-hover: #002366;
  --st-text-button: #ffffff;
  --st-text-btn-hover: #f04a00;
  --st-text-price: #a0a3a9;
  --st-text-sale-price: #F04A00;
  --st-text-topmenu: #F2F4F7;
  --st-text-topmenu-hover: #70747d;
  --st-text-stock: #5fa745;
  --st-text-onsale: #70747d;
  --st-text-rating: #f04a00;
  --st-theme-1: #F04A00;
  --st-theme-2: #002366;
  --st-theme-primary: #f04a00;
  --st-theme-secondery: #002366;
  --st-theme-top-header: #111827;
  --st-theme-button: #f04a00;
  --st-theme-btn-hover: #ffffff;
  --st-theme-onsale: #ffffff;
  --st-border-1: #000;
  --st-border-button: #F04A00;
  --st-border-btn-hover: #F04A00;
  /**
  @font weight declaration
  */
  --st-fw-normal: normal;
  --st-fw-elight: 200;
  --st-fw-light: 300;
  --st-fw-regular: 400;
  --st-fw-medium: 500;
  --st-fw-sbold: 600;
  --st-fw-bold: 700;
  --st-fw-ebold: 800;
  --st-fw-black: 900;
  --st-fw-heading: 600;
  --st-fw-button: 600;
  --st-fw-menu: 500;
  /**
  @font size declaration
  */
  --st-fz-body: 18px;
  --st-fz-p: 18px;
  --st-fz-h1: 80px;
  --st-fz-h2: 60px;
  --st-fz-h3: 48px;
  --st-fz-h4: 32px;
  --st-fz-h5: 24px;
  --st-fz-h6: 20px;
  --st-fz-button: 18px;
  --st-fz-menu: 18px;
  --st-fz-mob-h1: 48px;
  --st-fz-mob-h2: 38px;
  --st-fz-mob-h3: 28px;
  --st-fz-mob-h4: 24px;
  --st-fz-mob-h5: 22px;
  --st-fz-mob-h6: 20px;
  --st-fz-tab-body: 18px;
  --st-fz-tab-h1: 65px;
  --st-fz-tab-h2: 50px;
  --st-fz-tab-h3: 46px;
  --st-fz-tab-h4: 42px;
  --st-fz-tab-h5: 34px;
  --st-fz-tab-h6: 30px;
  /**
  @line height declaration
  */
  --st-lh-body: 20px;
  --st-lh-h1: 90px;
  --st-lh-h2: 70px;
  --st-lh-h3: 58px;
  --st-lh-h4: 42px;
  --st-lh-h5: 34px;
  --st-lh-h6: 30px;
  --st-lh-button: 28px;
  --st-lh-h1-tab: 75px;
  --st-lh-h2-tab: 60px;
  --st-lh-h3-tab: 48px;
  --st-lh-h4-tab: 38px;
  --st-lh-h5-tab: 34px;
  --st-lh-h6-tab: 28px;
  --st-lh-h1-mob: 58px;
  --st-lh-h2-mob: 48px;
  --st-lh-h3-mob: 34px;
  --st-lh-h4-mob: 32px;
  --st-lh-h5-mob: 30px;
  --st-lh-h6-mob: 24px;
}

.contact__us-wrapper {
  padding: 60px;
  border: 1px solid #E6E9F0;
  border-radius: 12px;
}

.contact__us-left {
  margin-right: 40px;
}
@media (max-width: 991px) {
  .contact__us-left {
    margin-right: 0;
  }
}
.contact__us-left .section__title {
  padding-bottom: 40px;
}
.contact__us-left .section__title span {
  margin-bottom: 20px;
}
@media (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px), only screen and (min-width: 768px) and (max-width: 991.98px) {
  .contact__us-left .section__title span {
    margin-bottom: 10px;
  }
}
.contact__us-left .section__title .main__title {
  font-weight: 700;
}
@media (max-width: 991px) {
  .contact__us-left .section__title .main__title {
    padding-bottom: 0 !important;
  }
}
@media (max-width: 991px) {
  .contact__us-left .section__title {
    padding-bottom: 20px;
  }
}
@media (max-width: 575.98px) {
  .contact__us-left .section__title {
    padding-bottom: 10px;
  }
}
.contact__us-left form {
  margin-top: 10px;
}
.contact__us-left form .form-control {
  padding: 18px 15px;
  border-radius: 8px;
}
@media (max-width: 575.98px) {
  .contact__us-left form .form-control {
    padding: 10px;
  }
  .contact__us-left form .form-control::placeholder {
    font-size: 15px;
    padding: 10px;
  }
}
.contact__us-left form .form-control input:nth-of-type(1) {
  margin-bottom: 28px;
}
@media (max-width: 991px) {
  .contact__us-left form .form-control input:nth-of-type(1) {
    margin-bottom: 18px;
  }
}
@media (max-width: 991px) {
  .contact__us-left form .mb-30 {
    margin-bottom: 18px;
  }
}
.contact__us-left form .p__name-email {
  padding: 0 0 28px 0;
}
@media (max-width: 991px) {
  .contact__us-left form .p__name-email {
    padding: 0 0 18px 0;
    flex-direction: column;
    gap: 18px;
  }
}
.contact__us-left form .p__name-email input:nth-of-type(1) {
  margin-right: 28px;
}
@media (max-width: 991px) {
  .contact__us-left form .p__name-email input:nth-of-type(1) {
    margin-right: 18px;
  }
}
.contact__us-left form textarea {
  border: 1px solid rgb(230, 233, 240);
  border-radius: 8px;
}
.contact__us-left form .coupon__btn {
  margin-top: 30px;
  display: inline-block;
  padding: 12px 44px;
  border-radius: 12px;
}
@media (max-width: 991px) {
  .contact__us-left form .coupon__btn {
    margin-top: 18px;
  }
}
@media (max-width: 575.98px) {
  .contact__us-left form .coupon__btn {
    padding: 7px 20px;
    font-size: 15px;
  }
}

.contact__us-right {
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}
.contact__us-right h4 {
  font-size: 30px;
  color: #414652;
  padding-bottom: 20px;
}
.contact__us-right iframe {
  height: 220px;
}
.contact__us-right .contact__info {
  margin-top: 22px;
}
.contact__us-right .contact__info .info__item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
@media (max-width: 575.98px) {
  .contact__us-right .contact__info .info__item {
    margin-bottom: 5px;
  }
}
.contact__us-right .contact__info i {
  margin-right: 10px;
  font-size: 22px;
  color: #70747D;
}
@media (max-width: 575.98px) {
  .contact__us-right .contact__info i {
    font-size: 18px;
  }
}
.contact__us-right .contact__info p {
  margin: 0;
  color: #70747D;
  font-weight: 400;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px) {
  .contact__us-right .contact__info p {
    font-size: 16px;
  }
}
@media (max-width: 575.98px) {
  .contact__us-right .contact__info p {
    font-size: 12px;
  }
}
.contact__us-right .p__social-icon {
  margin-left: -5px;
  padding: 0;
}
.contact__us-right .p__social-icon nav ul li i {
  color: #70747D;
  font-size: 16px;
  width: 28px;
  height: 28px;
}

@media (max-width: 575.98px) {
  .contact__us-right {
    padding: 15px;
  }
  .contact__us-wrapper {
    padding: 20px;
  }
}
.benariz__contact-form {
  padding: 40px;
  border: 1px solid #E6E9F0;
  border-radius: 12px;
}
@media (max-width: 575.98px) {
  .benariz__contact-form {
    padding: 20px;
  }
}
.benariz__contact-form .wpcf7-submit {
  margin-top: 12px;
  cursor: pointer;
  text-align: center;
  background-color: var(--st-theme-1);
  color: var(--st-common-white);
  border: 1px solid var(--st-theme-1);
  font-size: 18px;
  line-height: 27px;
  padding: 12px 20px;
  font-weight: 600;
  border-radius: 7px;
  transition: border 0.4s ease-in-out, color 0.4s ease-in-out, background-color 0.4s ease-in-out !important;
}
.benariz__contact-form .wpcf7-submit:hover {
  border-color: var(--st-theme-1);
  background-color: var(--st-common-white);
  color: var(--st-theme-1);
}
.benariz__contact-form .p__name-email {
  width: 100%;
  padding-bottom: 12px;
}
.benariz__contact-form .p__name-email p {
  display: flex;
  gap: 12px;
  width: 100%;
}
@media (max-width: 575.98px) {
  .benariz__contact-form .p__name-email p {
    flex-direction: column;
    gap: 0;
  }
}
.benariz__contact-form .p__name-email p span {
  width: 100%;
}

:root {
  /**
  @font family declaration
  */
  --st-ff-body: 'Poppins', sans-serif;
  --st-ff-heading: 'Poppins', sans-serif;
  --st-ff-p: 'Poppins', sans-serif;
  --st-ff-menu: 'Poppins', sans-serif;
  --st-ff-button: 'Poppins', sans-serif;
  --st-ff-fontawesome: "Font Awesome 6 Pro";
  /**
  @color declaration
  */
  --st-common-white: #ffffff;
  --st-common-black: #000;
  --st-common-black2: #111827;
  --st-common-star: #fdb022;
  --st-heading-primary: #002366;
  --st-grey-1: #70747D;
  --st-grey-2: #414652;
  --st-text-body: #70747D;
  --st-text-1: #70747D;
  --st-text-top-header: #f5ba68;
  --st-text-top-header-hover: #f04a00;
  --st-text-menu: #ffffff;
  --st-text-menu-hover: #f04a00;
  --st-text-link: #f04a00;
  --st-text-link-hover: #002366;
  --st-text-button: #ffffff;
  --st-text-btn-hover: #f04a00;
  --st-text-price: #a0a3a9;
  --st-text-sale-price: #F04A00;
  --st-text-topmenu: #F2F4F7;
  --st-text-topmenu-hover: #70747d;
  --st-text-stock: #5fa745;
  --st-text-onsale: #70747d;
  --st-text-rating: #f04a00;
  --st-theme-1: #F04A00;
  --st-theme-2: #002366;
  --st-theme-primary: #f04a00;
  --st-theme-secondery: #002366;
  --st-theme-top-header: #111827;
  --st-theme-button: #f04a00;
  --st-theme-btn-hover: #ffffff;
  --st-theme-onsale: #ffffff;
  --st-border-1: #000;
  --st-border-button: #F04A00;
  --st-border-btn-hover: #F04A00;
  /**
  @font weight declaration
  */
  --st-fw-normal: normal;
  --st-fw-elight: 200;
  --st-fw-light: 300;
  --st-fw-regular: 400;
  --st-fw-medium: 500;
  --st-fw-sbold: 600;
  --st-fw-bold: 700;
  --st-fw-ebold: 800;
  --st-fw-black: 900;
  --st-fw-heading: 600;
  --st-fw-button: 600;
  --st-fw-menu: 500;
  /**
  @font size declaration
  */
  --st-fz-body: 18px;
  --st-fz-p: 18px;
  --st-fz-h1: 80px;
  --st-fz-h2: 60px;
  --st-fz-h3: 48px;
  --st-fz-h4: 32px;
  --st-fz-h5: 24px;
  --st-fz-h6: 20px;
  --st-fz-button: 18px;
  --st-fz-menu: 18px;
  --st-fz-mob-h1: 48px;
  --st-fz-mob-h2: 38px;
  --st-fz-mob-h3: 28px;
  --st-fz-mob-h4: 24px;
  --st-fz-mob-h5: 22px;
  --st-fz-mob-h6: 20px;
  --st-fz-tab-body: 18px;
  --st-fz-tab-h1: 65px;
  --st-fz-tab-h2: 50px;
  --st-fz-tab-h3: 46px;
  --st-fz-tab-h4: 42px;
  --st-fz-tab-h5: 34px;
  --st-fz-tab-h6: 30px;
  /**
  @line height declaration
  */
  --st-lh-body: 20px;
  --st-lh-h1: 90px;
  --st-lh-h2: 70px;
  --st-lh-h3: 58px;
  --st-lh-h4: 42px;
  --st-lh-h5: 34px;
  --st-lh-h6: 30px;
  --st-lh-button: 28px;
  --st-lh-h1-tab: 75px;
  --st-lh-h2-tab: 60px;
  --st-lh-h3-tab: 48px;
  --st-lh-h4-tab: 38px;
  --st-lh-h5-tab: 34px;
  --st-lh-h6-tab: 28px;
  --st-lh-h1-mob: 58px;
  --st-lh-h2-mob: 48px;
  --st-lh-h3-mob: 34px;
  --st-lh-h4-mob: 32px;
  --st-lh-h5-mob: 30px;
  --st-lh-h6-mob: 24px;
}

.thanks__content {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.thanks__content .coupon__btn {
  display: inline-block;
}
.thanks__content p {
  color: rgb(160, 163, 169);
  font-weight: 400;
}
.thanks__content h2 {
  padding-top: 20px;
}
.thanks__content .thanks__circle {
  margin: 0 auto;
  border: 4px solid var(--st-theme-1);
  height: 100px;
  width: 100px;
  border-radius: 50%;
  color: var(--st-theme-1);
}
.thanks__content .thanks__circle i {
  font-size: 45px;
}

@media (max-width: 991px) {
  .container .progress-bar .progress li span {
    font-size: 16px !important;
  }
}
@media (max-width: 575.98px) {
  .container .progress-bar .progress li span {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .thanks__content h2 {
    font-size: 32px;
    line-height: 40px;
  }
}
.thanks__details {
  border: 1px solid #E6E9F0;
  border-radius: 12px;
  padding: 60px 0 !important;
  margin-top: 30px;
}
@media (max-width: 575.98px) {
  .thanks__details {
    padding: 20px 0 !important;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px) {
  .thanks__details {
    padding: 30px 0 !important;
  }
}

.woocommerce-order section {
  padding: 0;
}
.woocommerce-order .woocommerce-order-details,
.woocommerce-order .woocommerce-customer-details {
  border: 1px solid #E6E9F0;
  border-radius: 12px;
  background: #FAFAFB;
  padding: 40px;
  margin: 60px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .woocommerce-order .woocommerce-order-details,
  .woocommerce-order .woocommerce-customer-details {
    margin: 40px 0;
  }
}
@media (max-width: 575.98px) {
  .woocommerce-order .woocommerce-order-details,
  .woocommerce-order .woocommerce-customer-details {
    padding: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px) {
  .woocommerce-order .woocommerce-order-details,
  .woocommerce-order .woocommerce-customer-details {
    padding: 30px;
  }
}
.woocommerce-order .woocommerce-order-details .woocommerce-order-details__title,
.woocommerce-order .woocommerce-order-details .woocommerce-column__title,
.woocommerce-order .woocommerce-customer-details .woocommerce-order-details__title,
.woocommerce-order .woocommerce-customer-details .woocommerce-column__title {
  font-size: 38px;
  line-height: 44px;
  padding-bottom: 10px;
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .woocommerce-order .woocommerce-order-details .woocommerce-order-details__title,
  .woocommerce-order .woocommerce-order-details .woocommerce-column__title,
  .woocommerce-order .woocommerce-customer-details .woocommerce-order-details__title,
  .woocommerce-order .woocommerce-customer-details .woocommerce-column__title {
    font-size: 24px;
    line-height: 28px;
  }
}
.woocommerce-order .woocommerce-order-details table,
.woocommerce-order .woocommerce-customer-details table {
  width: 100%;
}
@media (max-width: 575.98px) {
  .woocommerce-order .woocommerce-order-details table,
  .woocommerce-order .woocommerce-customer-details table {
    font-size: 16px;
    line-height: 24px;
  }
}
.woocommerce-order .woocommerce-order-details table thead th,
.woocommerce-order .woocommerce-customer-details table thead th {
  font-size: 28px;
  padding-bottom: 10px;
  color: var(--st-heading-primary);
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .woocommerce-order .woocommerce-order-details table thead th,
  .woocommerce-order .woocommerce-customer-details table thead th {
    font-size: 18px;
    line-height: 27px;
  }
}
.woocommerce-order .woocommerce-columns--addresses {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .woocommerce-order .woocommerce-columns--addresses {
    flex-direction: column;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .woocommerce-order .woocommerce-columns--addresses {
    gap: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px) {
  .woocommerce-order .woocommerce-columns--addresses {
    gap: 30px;
  }
}
@media (max-width: 575.98px) {
  .woocommerce-order .woocommerce-columns--addresses {
    gap: 20px;
  }
}
.woocommerce-order .woocommerce-columns--addresses .woocommerce-column__title {
  font-size: 38px;
  line-height: 44px;
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .woocommerce-order .woocommerce-columns--addresses .woocommerce-column__title {
    font-size: 24px;
    line-height: 28px;
  }
}
.woocommerce-order .woocommerce-column--billing-address {
  width: 49%;
  border: 1px solid #E6E9F0;
  border-radius: 12px;
  background: #FAFAFB;
  padding: 40px;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .woocommerce-order .woocommerce-column--billing-address {
    width: 100%;
  }
}
@media (max-width: 575.98px) {
  .woocommerce-order .woocommerce-column--billing-address {
    padding: 20px;
  }
  .woocommerce-order .woocommerce-column--billing-address address {
    font-size: 16px;
    line-height: 24px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px) {
  .woocommerce-order .woocommerce-column--billing-address {
    padding: 30px;
  }
}
.woocommerce-order .woocommerce-column--billing-address p,
.woocommerce-order .woocommerce-column--billing-address address {
  margin-bottom: 0;
}
.woocommerce-order .woocommerce-column--shipping-address {
  width: 49%;
  border: 1px solid #E6E9F0;
  border-radius: 12px;
  background: #FAFAFB;
  padding: 40px;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .woocommerce-order .woocommerce-column--shipping-address {
    width: 100%;
  }
}
@media (max-width: 575.98px) {
  .woocommerce-order .woocommerce-column--shipping-address {
    padding: 20px;
  }
  .woocommerce-order .woocommerce-column--shipping-address address {
    font-size: 16px;
    line-height: 24px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px) {
  .woocommerce-order .woocommerce-column--shipping-address {
    padding: 30px;
  }
}
.woocommerce-order .woocommerce-column--shipping-address p,
.woocommerce-order .woocommerce-column--shipping-address address {
  margin-bottom: 0;
}

:root {
  /**
  @font family declaration
  */
  --st-ff-body: 'Poppins', sans-serif;
  --st-ff-heading: 'Poppins', sans-serif;
  --st-ff-p: 'Poppins', sans-serif;
  --st-ff-menu: 'Poppins', sans-serif;
  --st-ff-button: 'Poppins', sans-serif;
  --st-ff-fontawesome: "Font Awesome 6 Pro";
  /**
  @color declaration
  */
  --st-common-white: #ffffff;
  --st-common-black: #000;
  --st-common-black2: #111827;
  --st-common-star: #fdb022;
  --st-heading-primary: #002366;
  --st-grey-1: #70747D;
  --st-grey-2: #414652;
  --st-text-body: #70747D;
  --st-text-1: #70747D;
  --st-text-top-header: #f5ba68;
  --st-text-top-header-hover: #f04a00;
  --st-text-menu: #ffffff;
  --st-text-menu-hover: #f04a00;
  --st-text-link: #f04a00;
  --st-text-link-hover: #002366;
  --st-text-button: #ffffff;
  --st-text-btn-hover: #f04a00;
  --st-text-price: #a0a3a9;
  --st-text-sale-price: #F04A00;
  --st-text-topmenu: #F2F4F7;
  --st-text-topmenu-hover: #70747d;
  --st-text-stock: #5fa745;
  --st-text-onsale: #70747d;
  --st-text-rating: #f04a00;
  --st-theme-1: #F04A00;
  --st-theme-2: #002366;
  --st-theme-primary: #f04a00;
  --st-theme-secondery: #002366;
  --st-theme-top-header: #111827;
  --st-theme-button: #f04a00;
  --st-theme-btn-hover: #ffffff;
  --st-theme-onsale: #ffffff;
  --st-border-1: #000;
  --st-border-button: #F04A00;
  --st-border-btn-hover: #F04A00;
  /**
  @font weight declaration
  */
  --st-fw-normal: normal;
  --st-fw-elight: 200;
  --st-fw-light: 300;
  --st-fw-regular: 400;
  --st-fw-medium: 500;
  --st-fw-sbold: 600;
  --st-fw-bold: 700;
  --st-fw-ebold: 800;
  --st-fw-black: 900;
  --st-fw-heading: 600;
  --st-fw-button: 600;
  --st-fw-menu: 500;
  /**
  @font size declaration
  */
  --st-fz-body: 18px;
  --st-fz-p: 18px;
  --st-fz-h1: 80px;
  --st-fz-h2: 60px;
  --st-fz-h3: 48px;
  --st-fz-h4: 32px;
  --st-fz-h5: 24px;
  --st-fz-h6: 20px;
  --st-fz-button: 18px;
  --st-fz-menu: 18px;
  --st-fz-mob-h1: 48px;
  --st-fz-mob-h2: 38px;
  --st-fz-mob-h3: 28px;
  --st-fz-mob-h4: 24px;
  --st-fz-mob-h5: 22px;
  --st-fz-mob-h6: 20px;
  --st-fz-tab-body: 18px;
  --st-fz-tab-h1: 65px;
  --st-fz-tab-h2: 50px;
  --st-fz-tab-h3: 46px;
  --st-fz-tab-h4: 42px;
  --st-fz-tab-h5: 34px;
  --st-fz-tab-h6: 30px;
  /**
  @line height declaration
  */
  --st-lh-body: 20px;
  --st-lh-h1: 90px;
  --st-lh-h2: 70px;
  --st-lh-h3: 58px;
  --st-lh-h4: 42px;
  --st-lh-h5: 34px;
  --st-lh-h6: 30px;
  --st-lh-button: 28px;
  --st-lh-h1-tab: 75px;
  --st-lh-h2-tab: 60px;
  --st-lh-h3-tab: 48px;
  --st-lh-h4-tab: 38px;
  --st-lh-h5-tab: 34px;
  --st-lh-h6-tab: 28px;
  --st-lh-h1-mob: 58px;
  --st-lh-h2-mob: 48px;
  --st-lh-h3-mob: 34px;
  --st-lh-h4-mob: 32px;
  --st-lh-h5-mob: 30px;
  --st-lh-h6-mob: 24px;
}

#orders__container {
  height: 1000px;
  overflow-x: scroll;
}

.my__account {
  padding-top: 90px;
  padding-bottom: 140px;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .my__account {
    padding-bottom: 80px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .my__account {
    padding-bottom: 50px;
  }
}
@media (max-width: 575.98px) {
  .my__account {
    width: 100% !important;
  }
}
.my__account .order__no--mobile {
  display: none;
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .my__account .orders__heading {
    display: none;
  }
  .my__account .order__no--mobile {
    display: block !important;
  }
  .my__account .order__no {
    display: none;
  }
}
.my__account .account__profile {
  padding-top: 75px;
  border: 1px solid #E6E9F0;
  border-radius: 12px;
  padding-bottom: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .my__account .account__profile {
    margin-bottom: 2rem;
  }
}
.my__account .account__profile .account__img {
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .my__account .account__profile .account__img {
    top: -60px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .my__account .account__profile .account__img {
    top: -45px;
  }
}
.my__account .account__profile .account__img img {
  width: 140px;
  height: 140px;
  border-radius: 100%;
  object-fit: cover;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .my__account .account__profile .account__img img {
    width: 120px;
    height: 120px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .my__account .account__profile .account__img img {
    width: 100px;
    height: 100px;
  }
}
.my__account .account__profile .account__name {
  padding-bottom: 20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .my__account .account__profile .account__name h5 {
    font-size: 20px;
    line-height: 24px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .my__account .account__profile .account__name h5 {
    font-size: 18px;
    line-height: 22px;
    padding: 0 5px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .my__account .account__profile .account__name span {
    font-size: 16px;
    line-height: 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .my__account .account__profile .account__name span {
    font-size: 14px;
    line-height: 18px;
  }
}
.my__account .account__profile .my__settings ul .is-active {
  color: var(--st-theme-1);
  background-color: #FAFAFB;
}
.my__account .account__profile .my__settings ul li {
  font-size: 18px;
  line-height: 28px;
  display: flex;
  font-weight: 600;
  color: #70747d;
  padding: 10px 40px;
  transition: color ease 0.3s;
  transition: background-color ease 0.3s;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .my__account .account__profile .my__settings ul li {
    padding: 10px 15px;
    font-size: 14px;
  }
}
@media (max-width: 575.98px) {
  .my__account .account__profile .my__settings ul li {
    padding: 10px 20px;
  }
}
.my__account .account__profile .my__settings ul li:hover {
  background-color: #FAFAFB;
  color: var(--st-theme-1);
}
.my__account .account__profile .my__settings ul li i {
  margin-right: 8px;
  width: 20px;
  transition: color ease 0.3s !important;
  font-weight: 500 !important;
}
.my__account .account__wrapper {
  padding-top: 40px;
  border: 1px solid #E6E9F0;
  border-radius: 12px;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .my__account .account__wrapper {
    padding-top: 20px;
  }
}
.my__account .account__wrapper .title__sorts {
  padding: 0 40px 30px 40px;
  align-items: center;
  border-bottom: 1px solid #E6E9F0;
}
@media (max-width: 575.98px), only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .my__account .account__wrapper .title__sorts {
    padding: 0 20px 20px 20px;
  }
}
@media (max-width: 400px) {
  .my__account .account__wrapper .title__sorts {
    flex-direction: column;
    gap: 15px;
    align-items: unset;
  }
}
.my__account .account__wrapper .wrapper__title h4 {
  margin: 0;
}
.my__account .account__wrapper .wrapper__title h6 {
  margin: 0;
  color: #70747D;
}
.my__account .account__wrapper .filter-dropdown .nice-select {
  padding-right: 40px;
  line-height: 28px;
}
.my__account .account__wrapper .notification__not-found {
  padding: 25px;
}
.my__account .account__wrapper .notification__not-found p {
  text-align: center;
}
.my__account .account__wrapper .order__no {
  padding: 25px 40px;
  background: #fff;
  border-bottom: 1px solid #E6E9F0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 768px) and (max-width: 991.98px) {
  .my__account .account__wrapper .order__no {
    padding: 15px 40px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .my__account .account__wrapper .order__no {
    padding: 15px 20px;
  }
}
@media (max-width: 575.98px) {
  .my__account .account__wrapper .order__no {
    padding: 10px 20px;
  }
}
.my__account .account__wrapper .order__no li {
  font-weight: 500;
  color: #70747D;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .my__account .account__wrapper .order__no li {
    font-size: 14px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .my__account .account__wrapper .order__no li {
    margin: 5px 0;
  }
}
@media (max-width: 575.98px) {
  .my__account .account__wrapper .order__no li {
    margin: 2px 0;
  }
}
.my__account .account__wrapper .order__no li span {
  font-weight: 500;
}
.my__account .account__wrapper .order__no .statuss {
  text-align: left;
}
.my__account .account__wrapper .coupon__usage-limit {
  border-bottom: 1px dashed;
}
.my__account .account__wrapper .orders__heading .order__no li {
  list-style: none !important;
  color: #000;
}
.my__account .account__wrapper .acount__form .edit__account-input label {
  font-size: 18px;
  line-height: 28px;
  color: #414652;
  margin-bottom: 12px;
}
.my__account .account__wrapper .woocommerce-address-fields__field-wrapper {
  padding-top: 20px;
}
.my__account .woocommerce-Addresses {
  padding: 24px 24px 0 24px;
}

details {
  cursor: pointer;
}
details summary {
  list-style-type: "+";
  list-style: none;
  justify-content: space-between;
  align-items: center;
}
details summary::marker {
  font-size: 1.2em;
  margin-right: 20px;
}
details summary::after {
  content: "+";
  font-size: 1.2em;
  color: #595c59;
  display: flex;
  justify-content: end;
  position: absolute;
  right: 60px;
  top: 32%;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  details summary::after {
    top: 26%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  details summary::after {
    top: 24%;
    right: 35px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  details summary::after {
    top: 24%;
    right: 55px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px) {
  details summary::after {
    right: 40px;
    top: 15%;
  }
}
@media (max-width: 575.98px) {
  details summary::after {
    right: 20px;
    top: 8%;
  }
}
details .content {
  padding: 0 40px;
}
@media (max-width: 575.98px), only screen and (min-width: 992px) and (max-width: 1199.98px) {
  details .content {
    padding: 0 20px;
  }
}
details .content .ordered__title {
  padding: 30px 0 20px 0;
  border-bottom: 1px solid #E6E9F0;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 575.98px) {
  details .content .ordered__title {
    flex-direction: column;
    justify-content: left;
    align-items: start;
    gap: 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px) {
  details .content .ordered__title .order__buy-all {
    margin-left: 10px;
  }
}
details .content .ordered__title h5 {
  margin: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 992px) and (max-width: 1199.98px), (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  details .content .ordered__title .explore__btn {
    font-weight: 500;
  }
}
@media (max-width: 575.98px) {
  details .content .ordered__title .view__btn {
    padding: 10px 20px;
  }
}
@media (max-width: 575.98px) {
  details .content .ordered__title .order__buy-all {
    margin-left: 10px;
  }
}
details .content .ordered__details {
  margin: 15px 0;
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  details .content .ordered__details {
    flex-direction: column;
  }
}
details .content .ordered__details .ordered__product {
  align-items: center;
}
@media only screen and (min-width: 576px) and (max-width: 767.98px) {
  details .content .ordered__details .ordered__product {
    width: 100%;
  }
}
@media (max-width: 575.98px) {
  details .content .ordered__details .ordered__product {
    width: 100%;
    flex-direction: column;
    align-items: start;
    gap: 10px;
  }
}
details .content .ordered__details .ordered__product-img {
  width: 116px;
  height: 140px;
  background: #f3f3f4;
  display: flex;
  justify-content: center;
  align-items: center;
}
details .content .ordered__details .ordered__product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
details .content .ordered__details .products__des {
  margin-left: 30px;
}
@media (max-width: 575.98px) {
  details .content .ordered__details .products__des {
    margin-left: 0;
  }
}
@media (max-width: 575.98px), only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  details .content .ordered__details .products__des .mini_reverse {
    flex-direction: column;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  details .content .ordered__details .products__des .mini_reverse {
    font-size: 16px;
  }
}
details .content .ordered__details .products__des h6 {
  margin-bottom: 20px;
  color: rgb(0, 35, 102);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  details .content .ordered__details .products__des h6 {
    margin-bottom: 12px;
  }
}
details .content .ordered__details .products__des .first_ul {
  margin-right: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  details .content .ordered__details .products__des .first_ul {
    margin-right: 0;
  }
}
details .content .ordered__details .products__des ul li {
  margin: 10px 0;
  font-weight: 600;
  color: #70747D;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  details .content .ordered__details .products__des ul li {
    margin: 0;
  }
}
details .content .ordered__details .products__des ul li span {
  font-weight: 400;
}

.ordered__btn-wrapper > .explore__btn {
  display: inline !important;
  margin-left: 20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .ordered__btn-wrapper > .explore__btn {
    margin-left: 3px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .ordered__btn-wrapper > .explore__btn {
    margin-left: 10px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .ordered__btn-wrapper > .explore__btn {
    font-size: 14px !important;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .ordered__btn-wrapper > .explore__btn {
    font-size: 12px !important;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 768px) and (max-width: 991.98px), (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px), only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .ordered__btn-wrapper > .explore__btn {
    padding: 5px 5px !important;
    font-weight: 500;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .ordered__btn-wrapper > .view__btn {
    font-size: 14px !important;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .ordered__btn-wrapper > .view__btn {
    font-size: 12px !important;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 768px) and (max-width: 991.98px), (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px), only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .ordered__btn-wrapper > .view__btn {
    padding: 5px 5px !important;
    font-weight: 500;
  }
}

details[open] {
  border: none;
  background: #FAFAFB;
}

details[open] summary::after {
  content: "-";
  float: right;
  font-size: 1.5em;
  color: rgb(89, 92, 89);
}

.border_b {
  border-bottom: 1px solid #E6E9F0;
  padding-bottom: 20px;
}

.border_t {
  border-top: 1px solid #E6E9F0;
}

.completed {
  color: #2e4453 !important;
}

.canceled {
  color: #F04A00 !important;
}

.processing {
  color: #5b841b !important;
}

.onhold {
  color: #94660c !important;
}

.refunded, .pending-payment {
  color: #777 !important;
}

.failed {
  color: #761919 !important;
}

.order__buy-all {
  margin-left: 20px;
}

.orders__buy-again {
  color: var(--st-heading-primary);
  border-bottom: 1px solid var(--st-heading-primary);
  font-size: 18px;
  font-weight: 600;
}
.orders__buy-again:hover {
  color: var(--st-theme-1);
  border-bottom: 1px solid var(--st-theme-1);
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .orders__buy-again {
    font-size: 16px;
  }
}

.account__wrapper-details .title__sorts {
  padding-bottom: 20px !important;
  margin: 0 40px !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
@media (max-width: 575.98px) {
  .account__wrapper-details .title__sorts {
    flex-direction: column;
    display: block !important;
    margin: 0 20px !important;
  }
}
.account__wrapper-details .wrapper__title {
  margin: 0 !important;
  padding: 0;
}
.account__wrapper-details .wrapper__title h4 {
  margin-bottom: 20px !important;
}
@media (max-width: 575.98px) {
  .account__wrapper-details .wrapper__title h4 {
    margin-bottom: 0 !important;
  }
}
.account__wrapper-details .wrapper__title p {
  margin: 0;
}
.account__wrapper-details .image_update {
  margin-top: 40px;
}
@media (max-width: 575.98px) {
  .account__wrapper-details .image_update {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.account__wrapper-details .image_update a {
  border: 1px solid var(--st-theme-1);
  padding: 5px 10px;
  color: var(--st-theme-1);
  border-radius: 4px;
  transition: all ease 0.3s;
}
@media (max-width: 575.98px) {
  .account__wrapper-details .image_update a {
    font-size: 14px;
  }
}
.account__wrapper-details .image_update a:hover {
  background: var(--st-theme-1);
  color: var(--st-common-white);
}
.account__wrapper-details .personal__info--form {
  margin: 30px 40px 0 40px;
}
@media (max-width: 575.98px) {
  .account__wrapper-details .personal__info--form {
    margin: 30px 20px 0 20px;
  }
}
.account__wrapper-details .personal__info--form p {
  color: #70747D;
}
@media (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .account__wrapper-details .personal__info--form p {
    font-size: 14px;
  }
}
.account__wrapper-details .personal__info--form .acount__form input {
  outline: none;
  border: 1px solid #E6E9F0;
  padding: 12px 15px;
  width: 100%;
  border-radius: 4px;
  margin-bottom: 30px;
  color: #70747D;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .account__wrapper-details .personal__info--form .acount__form input {
    margin-bottom: 20px;
  }
}
@media (max-width: 575.98px) {
  .account__wrapper-details .personal__info--form .acount__form #account_display_name {
    width: 100%;
  }
  .account__wrapper-details .personal__info--form .acount__form input {
    margin-bottom: 0;
    width: 100%;
  }
}
@media (max-width: 575.98px) {
  .account__wrapper-details .personal__info--form .acount__form .c__reverse {
    flex-direction: column !important;
  }
}
.account__wrapper-details .personal__info--form .acount__form input::placeholder {
  color: #A0A3A9;
}
@media (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px), only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .account__wrapper-details .personal__info--form .acount__form input::placeholder {
    font-size: 14px;
  }
}
.account__wrapper-details .personal__info--form .upload__images img {
  height: 128px;
}
.account__wrapper-details .personal__info--form .change__pass--form li {
  margin: 30px 0;
  position: relative;
}
.account__wrapper-details .personal__info--form .change__pass--form li i {
  position: absolute;
  top: 14px;
  right: 20px;
  color: #70747D;
}
.account__wrapper-details .personal__info--form .change__pass--form input {
  outline: none;
  border: 1px solid #E6E9F0;
  padding: 12px 15px;
  width: 100%;
  border-radius: 4px;
}
.account__wrapper-details .personal__info--form .change__pass--form input::placeholder {
  color: #A0A3A9;
}
@media (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px), only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .account__wrapper-details .personal__info--form .change__pass--form input::placeholder {
    font-size: 14px;
  }
}
.account__wrapper-details .update__button {
  margin: 0 0 45px 40px;
}
@media (max-width: 575.98px) {
  .account__wrapper-details .update__button {
    margin: 0 0 45px 20px;
  }
}
.account__wrapper-details .update__button .explore__btn {
  display: inline !important;
  color: #fff;
}
@media (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .account__wrapper-details.mt-50 {
    margin-top: 30px;
  }
}

@media only screen and (max-width: 417px) {
  .title__sorts-notifications {
    flex-direction: column;
    align-items: stretch !important;
    gap: 15px;
  }
}

.notification__area .notification__label {
  background: #F3F3F4;
  padding: 12px 40px;
}
@media (max-width: 575.98px) {
  .notification__area .notification__label {
    padding: 12px 15px;
  }
}
.notification__area .notification__label ul li {
  font-size: 14px;
  font-weight: 600;
  color: #70747D;
  transition: all ease 0.3s;
}
.notification__area .notification__label ul li:hover {
  color: var(--st-heading-primary);
}
.notification__area .notification__label ul .active {
  color: var(--st-heading-primary);
}
.notification__area .notification__label .read__mark a {
  font-size: 14px;
  font-weight: 600;
  color: var(--st-heading-primary);
}
.notification__area .notification__label .read__mark a i {
  margin-right: 6px;
}
.notification__area .single__notifications {
  padding: 20px 40px;
  border-top: 1px solid #E6E9F0;
  cursor: pointer;
}
@media (max-width: 575.98px) {
  .notification__area .single__notifications {
    padding: 20px 15px;
  }
}
@media (max-width: 575.98px) {
  .notification__area .single__notifications .notifications__flex {
    align-items: center !important;
  }
}
.notification__area .single__notifications .notifications__icon {
  margin-right: 20px;
}
@media only screen and (max-width: 417px) {
  .notification__area .single__notifications .notifications__icon {
    margin-right: 3px;
  }
}
@media (max-width: 575.98px) {
  .notification__area .single__notifications .notifications__icon {
    margin-right: 10px;
  }
}
.notification__area .single__notifications .notifications__icon a img {
  background: var(--st-heading-primary);
  padding: 5px;
  border-radius: 50%;
}
@media only screen and (max-width: 417px) {
  .notification__area .single__notifications .notifications__icon a img {
    padding: 3px;
  }
}
.notification__area .single__notifications .notifications__text h6 {
  font-size: 18px;
  margin: 0;
}
@media only screen and (max-width: 417px) {
  .notification__area .single__notifications .notifications__text h6 {
    font-size: 16px !important;
  }
}
.notification__area .single__notifications .notifications__text p {
  font-size: 14px;
  margin: 0;
  line-height: 22px;
  margin-left: 20px;
  text-transform: uppercase;
}
@media (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .notification__area .single__notifications .notifications__text p {
    line-height: 28px;
  }
}
@media only screen and (max-width: 417px) {
  .notification__area .single__notifications .notifications__text p {
    margin-left: 5px;
    font-size: 12px;
  }
}
.notification__area .single__notifications .notifications__date {
  display: flex;
  align-items: center;
}
.notification__area .single__notifications .notifications__date p {
  margin: 0;
  font-size: 16px;
}
@media only screen and (min-width: 418px) and (max-width: 575px), only screen and (max-width: 417px) {
  .notification__area .single__notifications .notifications__control-icon {
    margin-top: -25px;
  }
}
.notification__area .single__notifications .notifications__control-icon li {
  margin: 0 8px;
}
@media only screen and (max-width: 417px) {
  .notification__area .single__notifications .notifications__control-icon li {
    font-size: 14px;
    margin: 0 4px;
  }
}
@media only screen and (min-width: 418px) and (max-width: 575px), (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px), only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .notification__area .single__notifications .notifications__control-icon li {
    margin: 0 5px;
  }
}
.notification__area .single__notifications .notifications__text-bottom {
  margin-left: 54px;
}
@media (max-width: 575.98px) {
  .notification__area .single__notifications .notifications__text-bottom {
    margin-left: 0;
    margin-top: 10px;
  }
}
.notification__area .single__notifications .notifications__text-bottom p {
  font-size: 16px;
  margin: 0;
}
@media (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px), only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .notification__area .single__notifications .notifications__text-bottom p {
    font-size: 14px;
  }
}
.notification__area .graay_bg .notifications__text-bottom p {
  color: black;
  font-weight: 500;
}

.graay_bg {
  background: #F3F3F4;
}

.whitte_bg {
  background: #fff;
}

.promo__wrapper {
  padding-bottom: 25px;
}
.promo__wrapper .title__sorts {
  border-bottom: none !important;
}
.promo__wrapper .wrapper__title h4 {
  margin-bottom: 10px !important;
}
.promo__wrapper .wrapper__title p {
  margin: 0;
  color: #A0A3A9;
}
@media (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px), only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .promo__wrapper .wrapper__title p {
    font-size: 14px;
  }
}
.promo__wrapper .p__social-icon nav ul {
  display: flex;
  float: right;
}
.promo__wrapper .p__social-icon nav ul li {
  margin: 20px 5px 0 5px;
  background: #F2F4F7;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.promo__wrapper .p__social-icon nav ul li:hover {
  background: var(--st-theme-1);
  color: var(--st-common-white);
}
.promo__wrapper .p__social-icon nav ul li:hover i {
  color: #fff;
}
.promo__wrapper .p__social-icon nav ul li i {
  font-size: 20px;
  color: var(--st-heading-primary);
}
.promo__wrapper .promo__code--box {
  margin: 0 40px;
  border: 1px solid #F5F5F5;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
  border-radius: 6px;
  margin-bottom: 20px;
}
@media (max-width: 575.98px) {
  .promo__wrapper .promo__code--box {
    margin: 0 20px;
  }
}
.promo__wrapper .promo__code--box h6 {
  padding: 0 10px;
}
.promo__wrapper .promo__code--box h4 {
  text-align: center;
  padding: 3px 0;
  width: 215px;
  margin: 28px auto;
  border-bottom: 1px dashed;
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .promo__wrapper .promo__code--box h4 {
    margin-top: 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .promo__wrapper .promo__code--box h4 {
    padding-bottom: 10px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .promo__wrapper .promo__code--box h4 {
    font-size: 26px;
  }
}
.promo__wrapper .promo__code--box h4 i {
  margin-right: 7px;
}
.promo__wrapper .promo__icon {
  margin: 0 40px 35px 40px;
}
@media (max-width: 575.98px) {
  .promo__wrapper .promo__icon {
    margin: 20px 20px 35px 40px;
  }
}
@media (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px), only screen and (min-width: 768px) and (max-width: 991.98px) {
  .promo__wrapper .promo__icon {
    text-align: center !important;
  }
}
.promo__wrapper .promo__icon .p__social-icon {
  padding-left: 0 !important;
}

.customer__address-area .customer__address {
  border: 1px solid #E6E9F0;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 24px;
}
.customer__address-area .customer__address p strong {
  font-weight: 500;
}
.customer__address-area .customer__address .woocommerce-Address-title {
  display: flex;
  align-items: baseline;
}
.customer__address-area .customer__address .woocommerce-Address-title a {
  margin-left: 10px;
}
.customer__address-area .customer__address .woocommerce-Address-title h6 {
  color: #414652;
  font-size: 20px;
  font-weight: 600;
}
.customer__address-area .customer__address .woocommerce-address-fields p {
  font-size: 18px;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .customer__address-area .customer__address .woocommerce-address-fields p {
    font-size: 16px;
    margin-bottom: 0;
  }
}

.woocommerce-MyAccount-content .wrapper__title-top {
  padding: 0 24px;
}
.woocommerce-MyAccount-content .wrapper__title-top .address__heading {
  margin-bottom: 0;
}

.account__edit_address .woocommerce-address-fields {
  padding: 0 40px;
}
@media (max-width: 575.98px) {
  .account__edit_address .woocommerce-address-fields {
    padding: 0 20px;
  }
}
.account__edit_address .woocommerce-address-fields label {
  margin-bottom: 15px;
}
.account__edit_address .woocommerce-address-fields input {
  width: 100%;
  height: 56px;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  padding: 0.375rem 0.75rem;
}
.account__edit_address .woocommerce-address-fields .form-row {
  margin-bottom: 35px;
}
@media (max-width: 575.98px) {
  .account__edit_address .woocommerce-address-fields .form-row {
    margin-bottom: 20px;
  }
}
.account__edit_address .woocommerce-address-fields #billing_country_field span {
  display: block;
}
.account__edit_address .explore__btn {
  margin-top: 30px;
}

.downloads__heading {
  padding-bottom: 0;
  margin: 0 40px;
  padding-left: 0;
  padding-right: 0;
}

.woocommerce-downloads-items .single__download-item {
  display: flex;
  padding: 10px 0;
  border-bottom: 1px solid #E6E9F0;
  margin: 0 40px;
}
.woocommerce-downloads-items .single__download-item:last-child {
  border-bottom: none;
}
.woocommerce-downloads-items .single__download-item .download-product-image {
  padding: 10px 0;
}
.woocommerce-downloads-items .single__download-item .download-product-image img {
  border: 1px solid #f2f4f7;
  border-radius: 3px;
}
.woocommerce-downloads-items .single__download-item .download-product-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 20px;
}
.woocommerce-downloads-items .single__download-item .download-product-text span {
  margin-left: 10px;
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
}
.woocommerce-downloads-items .single__download-item .download__btn {
  width: 157px;
  text-align: center;
  margin-top: 20px;
}

@media only screen and (max-width: 600px) {
  .woocommerce-downloads-items {
    padding-bottom: 20px;
  }
  .woocommerce-downloads-items .single__download-item {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
  .woocommerce-downloads-items .single__download-item .download__btn {
    width: auto;
  }
  .woocommerce-downloads-items .single__download-item .download-product-text {
    padding-left: 0;
  }
  .downloads__heading {
    padding-bottom: 20px;
  }
}
.order__details .order_det .content {
  border: 1px solid #E6E9F0;
  border-radius: 12px;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .order__details .order_det .content {
    padding: 0 20px;
  }
}
@media (max-width: 575.98px) {
  .order__details .order_det .content {
    padding: 0 16px;
  }
}
.order__details .order_det .content .ord__details-top {
  display: flex;
  justify-content: space-between;
  align-items: self-start;
  padding: 40px;
  border-bottom: 1px solid #E6E9F0;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .order__details .order_det .content .ord__details-top {
    padding: 40px 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .order__details .order_det .content .ord__details-top {
    flex-direction: column;
  }
}
@media (max-width: 575.98px) {
  .order__details .order_det .content .ord__details-top {
    padding: 30px 0;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 768px) and (max-width: 991.98px) {
  .order__details .order_det .content .ord__details-top {
    align-items: self-end;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px) {
  .order__details .order_det .content .ord__details-top .ord__no {
    margin-bottom: 20px;
  }
}
@media (max-width: 575.98px) {
  .order__details .order_det .content .ord__details-top .ord__no {
    margin-bottom: 10px;
  }
}
.order__details .order_det .content .ord__details-top .ord__no .order__status {
  font-size: 18px;
  font-weight: 500;
  position: absolute;
  margin-left: 10px;
}
@media (max-width: 575.98px) {
  .order__details .order_det .content .ord__details-top .ord__no .order__status {
    font-size: 14px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .order__details .order_det .content .ord__details-top .ord__no h3 {
    font-size: 32px;
    line-height: 42px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .order__details .order_det .content .ord__details-top .ord__no h3 {
    font-size: 24px;
    line-height: 28px;
  }
}
@media (max-width: 575.98px) {
  .order__details .order_det .content .ord__details-top .ord__no h3 {
    font-size: 18px !important;
    line-height: 24px !important;
  }
}
.order__details .order_det .content .ord__details-top .ord__no p {
  margin-bottom: 0;
  color: #70747D;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .order__details .order_det .content .ord__details-top .ord__no p {
    font-size: 14px;
    line-height: 24px;
  }
}
.order__details .order_det .content .ord__details-top .ord__no p span {
  font-weight: 600;
  color: rgb(112, 116, 125);
}
.order__details .order_det .content .ord__details-top .ord__no .breadcrumb {
  padding-top: 10px;
  justify-content: center;
}
.order__details .order_det .content .ord__details-top .ord__no .breadcrumb .active {
  color: var(--st-theme-1);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .order__details .order_det .content .ord__details-top .ord__no .breadcrumb .breadcrumb-item {
    font-size: 14px;
    padding-left: 0;
  }
}
.order__details .order_det .content .ord__details-top .ord__no .breadcrumb .breadcrumb-item i {
  padding: 0 7px 0 20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .order__details .order_det .content .ord__details-top .ord__no .breadcrumb .breadcrumb-item i {
    padding: 0 5px 0 5px;
  }
}
.order__details .order_det .content .ord__details-top .ord__c-date {
  align-items: center;
}
.order__details .order_det .content .ord__details-top .ord__c-date i {
  font-size: 40px !important;
  margin-right: 20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .order__details .order_det .content .ord__details-top .ord__c-date i {
    font-size: 28px !important;
    margin-right: 5px;
  }
}
.order__details .order_det .content .ord__details-top .ord__c-date .datee h5 {
  color: #414652;
  font-size: 24px;
  line-height: 32px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .order__details .order_det .content .ord__details-top .ord__c-date .datee h5 {
    color: #414652;
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 0px;
  }
}
.order__details .order_det .content .ord__details-top .ord__c-date .datee span {
  color: #70747D;
  font-size: 18px;
  line-height: 28px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .order__details .order_det .content .ord__details-top .ord__c-date .datee span {
    font-size: 14px;
  }
}
.order__details .order_det .content .ord__details-top .ord__btn-wrapper {
  align-items: center;
  gap: 15px;
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .order__details .order_det .content .ord__details-top .ord__btn-wrapper {
    gap: 10px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .order__details .order_det .content .ord__details-top .ord__btn-wrapper {
    padding-top: 10px;
  }
}
.order__details .order_det .content .ord__details-top .ord__btn-wrapper .order__buy-all {
  margin-left: 0;
}
.order__details .order_det .content .ord__details-top .ord__btn-wrapper .view__btn {
  line-height: 36px;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .order__details .order_det .content .ord__details-top .ord__btn-wrapper .view__btn {
    font-size: 16px;
  }
}
@media only screen and (max-width: 417px) {
  .order__details .order_det .content .ord__details-top .ord__btn-wrapper .view__btn {
    padding: 10px 15px;
  }
}
.order__details .order_det .content .ord__details-top .ord__btn-wrapper .explore__btn {
  line-height: 24px;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .order__details .order_det .content .ord__details-top .ord__btn-wrapper .explore__btn {
    font-size: 16px;
    line-height: 23px;
  }
}
@media only screen and (max-width: 417px) {
  .order__details .order_det .content .ord__details-top .ord__btn-wrapper .explore__btn {
    padding: 10px 12px;
  }
}
.order__details .order_det .content .ord__details-top .ord__btn-wrapper .print__icon {
  font-size: 24px;
  line-height: 38px;
  color: var(--st-theme-1);
}
.order__details .order_det .content .ord__details-top .ord__btn-wrapper .print__icon:hover {
  color: var(--st-heading-primary);
}
.order__details .order_det .content .ordered__title {
  padding: 20px 40px 20px 40px;
  border-bottom: 1px solid #E6E9F0;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), (max-width: 575.98px) {
  .order__details .order_det .content .ordered__title {
    padding: 20px 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .order__details .order_det .content .ordered__title {
    padding: 20px;
  }
}
.order__details .order_det .content .ordered__title h5 {
  margin: 0;
}
.order__details .order_det .content .single__order {
  padding: 20px 40px 20px 40px;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), (max-width: 575.98px) {
  .order__details .order_det .content .single__order {
    padding: 20px 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .order__details .order_det .content .single__order {
    padding: 20px;
  }
}
.order__details .order_det .content .single__order .ordered__product-img {
  background: rgb(243, 243, 244);
  width: 100%;
  height: 100%;
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .order__details .order_det .content .single__order .ordered__product-img {
    width: 150px;
    height: 150px;
  }
}
.order__details .order_det .content .single__order .ordered__product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.order__details .order_det .content .single__order .products__description {
  padding-left: 35px;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .order__details .order_det .content .single__order .products__description {
    padding-left: 0;
  }
}
.order__details .order_det .content .single__order .products__description ul li {
  color: rgb(112, 116, 125);
  font-size: 18px;
  font-weight: 500;
  line-height: 34px;
}
@media sm, (max-width: 575.98px) {
  .order__details .order_det .content .single__order .products__description ul li {
    font-size: 16px;
    line-height: 28px;
  }
}
.order__details .order_det .content .single__order .products__description ul li span {
  color: rgb(160, 163, 169);
  font-weight: 400;
}
.order__details .order_det .reasons__form textarea {
  width: 100%;
}
.order__details .order_det .reasons__form label {
  margin-bottom: 10px;
}
.order__details .order_det .reasons__form input {
  transform: scale(1.2);
}
@media (max-width: 575.98px) {
  .order__details .order_det .popup-content {
    padding: 20px;
  }
}
@media (max-width: 575.98px) {
  .order__details .order_det .popup-content p,
  .order__details .order_det .popup-content .alert__message,
  .order__details .order_det .popup-content label,
  .order__details .order_det .popup-content textarea::placeholder {
    font-size: 16px;
  }
}
@media only screen and (max-width: 417px) {
  .order__details .order_det .popup-content p,
  .order__details .order_det .popup-content .alert__message,
  .order__details .order_det .popup-content label,
  .order__details .order_det .popup-content textarea::placeholder {
    font-size: 14px;
  }
}
.order__details .order_det .alert__area {
  margin-bottom: 15px;
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .order__details .order_det .alert__area {
    flex-direction: column;
    margin-bottom: 5px;
  }
  .order__details .order_det .alert__area .alert__message {
    margin-left: 0;
  }
}
.order__details .info__detailss {
  padding: 40px;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .order__details .info__detailss {
    padding: 20px 0 0 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .order__details .info__detailss {
    padding: 20px 20px 0 20px;
  }
}
@media (max-width: 575.98px) {
  .order__details .info__detailss {
    padding: 0;
  }
}
.order__details .commom_details {
  padding: 40px;
  border: 1px solid #E6E9F0;
  border-radius: 12px;
  height: auto;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .order__details .commom_details {
    padding: 20px;
  }
}
.order__details .commom_details h5 {
  color: #414652;
  font-family: Poppins;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .order__details .commom_details h5 {
    font-size: 18px;
  }
}
@media only screen and (max-width: 417px) {
  .order__details .customer__details {
    height: 410px !important;
  }
}
.order__details .customer__details .customer__inffo ul li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  gap: 10px;
  flex-wrap: wrap;
}
.order__details .customer__details .customer__inffo ul li:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 417px) {
  .order__details .customer__details .customer__inffo ul li {
    flex-direction: column;
    align-items: start;
  }
}
.order__details .customer__details .customer__inffo ul li .namee {
  width: 170px;
  color: #70747D;
  font-weight: 600;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .order__details .customer__details .customer__inffo ul li .namee {
    width: unset;
  }
}
@media (max-width: 575.98px) {
  .order__details .customer__details .customer__inffo ul li .namee {
    font-size: 16px;
  }
}
.order__details .customer__details .customer__inffo ul li .namee span {
  display: none;
}
@media only screen and (max-width: 417px) {
  .order__details .customer__details .customer__inffo ul li .namee span {
    display: block;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .order__details .customer__details .customer__inffo ul li .namee {
    width: 130px;
  }
}
.order__details .customer__details .customer__inffo ul li .namee__content p {
  margin-bottom: 0;
  font-size: 18px;
  color: #A0A3A9;
}
@media (max-width: 575.98px) {
  .order__details .customer__details .customer__inffo ul li .namee__content p {
    font-size: 16px;
  }
}
.order__details .customer__details .customer__inffo ul li .namee__content p span {
  margin-right: 15px;
}
@media only screen and (max-width: 417px) {
  .order__details .customer__details .customer__inffo ul li .namee__content p span {
    display: none;
  }
}
.order__details .payment_details .payment__inffo ul li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  gap: 10px;
  flex-wrap: wrap;
}
.order__details .payment_details .payment__inffo ul li:last-child {
  margin-bottom: 0;
}
.order__details .payment_details .payment__inffo ul li .namee {
  width: 200px;
  color: #70747D;
  font-weight: 600;
  font-size: 18px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .order__details .payment_details .payment__inffo ul li .namee {
    width: 175px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (max-width: 417px) {
  .order__details .payment_details .payment__inffo ul li .namee {
    width: unset;
  }
}
@media (max-width: 575.98px) {
  .order__details .payment_details .payment__inffo ul li .namee {
    font-size: 16px;
  }
}
.order__details .payment_details .payment__inffo ul li .namee__content .paid_color {
  color: #5FA745;
}
.order__details .payment_details .payment__inffo ul li .namee__content p {
  margin-bottom: 0;
  color: #A0A3A9;
  font-size: 18px;
}
@media (max-width: 575.98px) {
  .order__details .payment_details .payment__inffo ul li .namee__content p {
    font-size: 16px;
  }
}
.order__details .payment_details .payment__inffo ul li .namee__content p span {
  margin-right: 15px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .order__details .customer__address p {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .order__details .order_det .content .single__order .products__description {
    padding-left: 0;
    padding-top: 20px;
  }
  .order__details .order_det .content .single__order .buy__simple-btn {
    justify-content: flex-start;
    margin-top: 8px;
  }
  .order__details .order_det .content .customer__details {
    margin-top: 30px;
  }
}
.print__order-details {
  display: none;
}
.print__order-details .ord__btn-wrapper, .print__order-details .buy__simple-btn {
  display: none;
}

:root {
  /**
  @font family declaration
  */
  --st-ff-body: 'Poppins', sans-serif;
  --st-ff-heading: 'Poppins', sans-serif;
  --st-ff-p: 'Poppins', sans-serif;
  --st-ff-menu: 'Poppins', sans-serif;
  --st-ff-button: 'Poppins', sans-serif;
  --st-ff-fontawesome: "Font Awesome 6 Pro";
  /**
  @color declaration
  */
  --st-common-white: #ffffff;
  --st-common-black: #000;
  --st-common-black2: #111827;
  --st-common-star: #fdb022;
  --st-heading-primary: #002366;
  --st-grey-1: #70747D;
  --st-grey-2: #414652;
  --st-text-body: #70747D;
  --st-text-1: #70747D;
  --st-text-top-header: #f5ba68;
  --st-text-top-header-hover: #f04a00;
  --st-text-menu: #ffffff;
  --st-text-menu-hover: #f04a00;
  --st-text-link: #f04a00;
  --st-text-link-hover: #002366;
  --st-text-button: #ffffff;
  --st-text-btn-hover: #f04a00;
  --st-text-price: #a0a3a9;
  --st-text-sale-price: #F04A00;
  --st-text-topmenu: #F2F4F7;
  --st-text-topmenu-hover: #70747d;
  --st-text-stock: #5fa745;
  --st-text-onsale: #70747d;
  --st-text-rating: #f04a00;
  --st-theme-1: #F04A00;
  --st-theme-2: #002366;
  --st-theme-primary: #f04a00;
  --st-theme-secondery: #002366;
  --st-theme-top-header: #111827;
  --st-theme-button: #f04a00;
  --st-theme-btn-hover: #ffffff;
  --st-theme-onsale: #ffffff;
  --st-border-1: #000;
  --st-border-button: #F04A00;
  --st-border-btn-hover: #F04A00;
  /**
  @font weight declaration
  */
  --st-fw-normal: normal;
  --st-fw-elight: 200;
  --st-fw-light: 300;
  --st-fw-regular: 400;
  --st-fw-medium: 500;
  --st-fw-sbold: 600;
  --st-fw-bold: 700;
  --st-fw-ebold: 800;
  --st-fw-black: 900;
  --st-fw-heading: 600;
  --st-fw-button: 600;
  --st-fw-menu: 500;
  /**
  @font size declaration
  */
  --st-fz-body: 18px;
  --st-fz-p: 18px;
  --st-fz-h1: 80px;
  --st-fz-h2: 60px;
  --st-fz-h3: 48px;
  --st-fz-h4: 32px;
  --st-fz-h5: 24px;
  --st-fz-h6: 20px;
  --st-fz-button: 18px;
  --st-fz-menu: 18px;
  --st-fz-mob-h1: 48px;
  --st-fz-mob-h2: 38px;
  --st-fz-mob-h3: 28px;
  --st-fz-mob-h4: 24px;
  --st-fz-mob-h5: 22px;
  --st-fz-mob-h6: 20px;
  --st-fz-tab-body: 18px;
  --st-fz-tab-h1: 65px;
  --st-fz-tab-h2: 50px;
  --st-fz-tab-h3: 46px;
  --st-fz-tab-h4: 42px;
  --st-fz-tab-h5: 34px;
  --st-fz-tab-h6: 30px;
  /**
  @line height declaration
  */
  --st-lh-body: 20px;
  --st-lh-h1: 90px;
  --st-lh-h2: 70px;
  --st-lh-h3: 58px;
  --st-lh-h4: 42px;
  --st-lh-h5: 34px;
  --st-lh-h6: 30px;
  --st-lh-button: 28px;
  --st-lh-h1-tab: 75px;
  --st-lh-h2-tab: 60px;
  --st-lh-h3-tab: 48px;
  --st-lh-h4-tab: 38px;
  --st-lh-h5-tab: 34px;
  --st-lh-h6-tab: 28px;
  --st-lh-h1-mob: 58px;
  --st-lh-h2-mob: 48px;
  --st-lh-h3-mob: 34px;
  --st-lh-h4-mob: 32px;
  --st-lh-h5-mob: 30px;
  --st-lh-h6-mob: 24px;
}

.entry-content h2.wp-block-heading {
  font-size: 48px;
  line-height: 60px;
  margin: 16px 0;
}
@media (max-width: 768px) {
  .entry-content h2.wp-block-heading {
    font-size: 32px;
    line-height: 48px;
  }
}
.entry-content h5.wp-block-heading {
  color: #414652;
}
.entry-content p {
  color: var(--st-text-body);
}
.entry-content ul.wp-block-list {
  list-style-type: disc;
  margin-left: 30px;
  padding: 15px 0;
}
.entry-content ul.wp-block-list li {
  list-style-type: disc;
  color: #70747D;
  font-weight: 400;
}
.entry-content figure img {
  width: 100% !important;
  height: 600px !important;
  object-fit: cover;
  border-radius: 12px;
  margin: 16px 0;
}
@media (max-width: 768px) {
  .entry-content figure img {
    height: 400px !important;
  }
}
.entry-content .wp-block-group {
  text-align: center;
  gap: 40px;
  justify-content: space-between;
}
.entry-content .wp-block-group figure img {
  width: 100% !important;
  height: 300px !important;
  object-fit: cover;
  border-radius: 12px;
}
.entry-content .wp-block-group figure {
  width: 100%;
}
.entry-content .wp-block-table table {
  margin: 16px 0;
}
.entry-content .wp-block-table table tr {
  background-color: #FAFAFB;
  min-height: 48px;
}
.entry-content .wp-block-table table tr td {
  color: #70747D;
  padding: 10px 40px;
}
.entry-content .wp-block-table table tr th {
  color: #000000;
}
.entry-content .wp-block-table table tr td, .entry-content .wp-block-table table tr th {
  border: 1px solid #E6E9F0;
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .entry-content .wp-block-table table {
    width: 900px;
  }
}

:root {
  /**
  @font family declaration
  */
  --st-ff-body: 'Poppins', sans-serif;
  --st-ff-heading: 'Poppins', sans-serif;
  --st-ff-p: 'Poppins', sans-serif;
  --st-ff-menu: 'Poppins', sans-serif;
  --st-ff-button: 'Poppins', sans-serif;
  --st-ff-fontawesome: "Font Awesome 6 Pro";
  /**
  @color declaration
  */
  --st-common-white: #ffffff;
  --st-common-black: #000;
  --st-common-black2: #111827;
  --st-common-star: #fdb022;
  --st-heading-primary: #002366;
  --st-grey-1: #70747D;
  --st-grey-2: #414652;
  --st-text-body: #70747D;
  --st-text-1: #70747D;
  --st-text-top-header: #f5ba68;
  --st-text-top-header-hover: #f04a00;
  --st-text-menu: #ffffff;
  --st-text-menu-hover: #f04a00;
  --st-text-link: #f04a00;
  --st-text-link-hover: #002366;
  --st-text-button: #ffffff;
  --st-text-btn-hover: #f04a00;
  --st-text-price: #a0a3a9;
  --st-text-sale-price: #F04A00;
  --st-text-topmenu: #F2F4F7;
  --st-text-topmenu-hover: #70747d;
  --st-text-stock: #5fa745;
  --st-text-onsale: #70747d;
  --st-text-rating: #f04a00;
  --st-theme-1: #F04A00;
  --st-theme-2: #002366;
  --st-theme-primary: #f04a00;
  --st-theme-secondery: #002366;
  --st-theme-top-header: #111827;
  --st-theme-button: #f04a00;
  --st-theme-btn-hover: #ffffff;
  --st-theme-onsale: #ffffff;
  --st-border-1: #000;
  --st-border-button: #F04A00;
  --st-border-btn-hover: #F04A00;
  /**
  @font weight declaration
  */
  --st-fw-normal: normal;
  --st-fw-elight: 200;
  --st-fw-light: 300;
  --st-fw-regular: 400;
  --st-fw-medium: 500;
  --st-fw-sbold: 600;
  --st-fw-bold: 700;
  --st-fw-ebold: 800;
  --st-fw-black: 900;
  --st-fw-heading: 600;
  --st-fw-button: 600;
  --st-fw-menu: 500;
  /**
  @font size declaration
  */
  --st-fz-body: 18px;
  --st-fz-p: 18px;
  --st-fz-h1: 80px;
  --st-fz-h2: 60px;
  --st-fz-h3: 48px;
  --st-fz-h4: 32px;
  --st-fz-h5: 24px;
  --st-fz-h6: 20px;
  --st-fz-button: 18px;
  --st-fz-menu: 18px;
  --st-fz-mob-h1: 48px;
  --st-fz-mob-h2: 38px;
  --st-fz-mob-h3: 28px;
  --st-fz-mob-h4: 24px;
  --st-fz-mob-h5: 22px;
  --st-fz-mob-h6: 20px;
  --st-fz-tab-body: 18px;
  --st-fz-tab-h1: 65px;
  --st-fz-tab-h2: 50px;
  --st-fz-tab-h3: 46px;
  --st-fz-tab-h4: 42px;
  --st-fz-tab-h5: 34px;
  --st-fz-tab-h6: 30px;
  /**
  @line height declaration
  */
  --st-lh-body: 20px;
  --st-lh-h1: 90px;
  --st-lh-h2: 70px;
  --st-lh-h3: 58px;
  --st-lh-h4: 42px;
  --st-lh-h5: 34px;
  --st-lh-h6: 30px;
  --st-lh-button: 28px;
  --st-lh-h1-tab: 75px;
  --st-lh-h2-tab: 60px;
  --st-lh-h3-tab: 48px;
  --st-lh-h4-tab: 38px;
  --st-lh-h5-tab: 34px;
  --st-lh-h6-tab: 28px;
  --st-lh-h1-mob: 58px;
  --st-lh-h2-mob: 48px;
  --st-lh-h3-mob: 34px;
  --st-lh-h4-mob: 32px;
  --st-lh-h5-mob: 30px;
  --st-lh-h6-mob: 24px;
}

.pricing__btnn {
  margin-bottom: 60px;
}
.pricing__btnn .pricing__btnn-wrapper {
  width: 300px;
  height: 60px;
  text-align: center;
  justify-content: center;
  margin: 0 auto;
  background: #F2F4F7;
  border-radius: 200px;
  align-items: center;
}
.pricing__btnn .pricing__btnn-wrapper a {
  width: 125px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 64px;
  font-weight: 600;
}
.pricing__btnn .pricing__btnn-wrapper a:hover {
  background: #fff;
  color: var(--st-theme-1);
}
.pricing__btnn .pricing__btnn-wrapper .active {
  background: #fff;
  color: var(--st-theme-1);
}

.plane {
  border-radius: 12px;
  border: 1px solid #E6E9F0;
  padding: 40px;
  margin-bottom: 30px;
  position: relative;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px), (max-width: 575.98px) {
  .plane {
    padding: 20px;
  }
}
.plane .plane__title {
  border-bottom: 1px solid #E6E9F0;
  padding-bottom: 65px;
}
.plane .plane__title h6 {
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
}
.plane .plane__title .popular__overlay span {
  position: absolute;
  width: 133px;
  height: 38px;
  transform: rotate(90deg);
  background: #F04A00;
  border-radius: 0px 18px 18px 0px;
  text-align: center;
  display: flex;
  align-items: center;
  color: #fff;
  justify-content: center;
  right: -45px;
  top: 7px;
  font-size: 14px;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px), (max-width: 575.98px) {
  .plane .plane__title .popular__overlay span {
    top: 15px;
    width: 110px;
  }
}
.plane .plane__title .pricee {
  width: 172px;
  height: 76px;
  border-radius: 0px 43.5px 43.5px 0px;
  background: #FFF;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
  align-items: center;
  transition: background ease-in 0.3s;
  justify-content: center;
  bottom: -37px;
  left: -40px;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px), (max-width: 575.98px) {
  .plane .plane__title .pricee {
    left: -20px;
  }
}
.plane .plane__title .pricee span {
  color: var(--st-heading-primary);
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
}
.plane .plane__title .pricee h4 {
  font-size: 48px;
  font-weight: 700;
  line-height: 60px;
  margin: 0;
}
.plane .plane__title .prefer__color {
  background: var(--st-heading-primary);
}
.plane .plane__title .prefer__color span,
.plane .plane__title .prefer__color h4 {
  color: var(--st-common-white);
}
.plane .plane__content {
  padding-top: 65px;
}
.plane .plane__content ul li {
  padding: 20px 0;
  border-bottom: 1px solid #E6E9F0;
  display: flex;
}
@media (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px), only screen and (min-width: 768px) and (max-width: 991.98px) {
  .plane .plane__content ul li {
    font-size: 14px;
  }
}
.plane .plane__content ul li svg {
  width: 18px;
  height: 18px;
}
.plane .plane__content ul .de-active {
  color: #70747D;
}
.plane .pricing__btn {
  margin-top: 28px;
}
.plane .pricing__btn .explore__btn {
  display: inline-block !important;
  padding: 16px 44px;
  border-radius: 12px;
}
.plane .icon-list-widget li {
  display: flex;
  gap: 15px;
}

.counters .count {
  border: 1px solid #E6E9F0;
  width: 110px;
  height: 124px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 6px;
  margin: 0 10px;
}
@media (max-width: 575.98px) {
  .counters .count {
    height: 80px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px) {
  .counters .count {
    width: 100px;
    height: 95px;
  }
}
.counters .count h3 {
  margin-bottom: 0;
  padding-bottom: 0;
  color: var(--st-heading-primary);
}
.counters .count span {
  color: var(--st-grey-1);
}

.benariz__parallax-section {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  background-image: url("wp-content/plugins/benariz/images/parallax-img.png");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.benariz__parallax-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 35, 102, 0.6);
  z-index: 1;
}
.benariz__parallax-section .content {
  z-index: 2;
}
.benariz__parallax-section .section__title .main__title {
  color: #FEEDE6;
}
.benariz__parallax-section .section__title .sub__title {
  color: #F04A00;
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .benariz__parallax-section .section__title .main__title {
    padding-bottom: 0 !important;
  }
  .benariz__parallax-section .section__title .sub__title {
    margin: 0 !important;
  }
}
.benariz__parallax-section .parallax__text {
  color: #fff;
  font-weight: 400;
  padding: 10px 0 30px 0;
  line-height: 28px;
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .benariz__parallax-section .parallax__text {
    padding: 0 0 10px 0;
  }
}
.benariz__parallax-section .popup__btn {
  display: inline-block;
}
.benariz__parallax-section .popup__btn a {
  width: 100%;
  padding: 16px 44px;
  display: inline-block;
}
@media (max-width: 575.98px) {
  .benariz__parallax-section .popup__btn a {
    padding: 7px 15px;
  }
}
.benariz__parallax-section .main__btn {
  padding: 0;
}

.image__gallery-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  overflow-y: auto;
}

.gallery__close-popup {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

.gallery-popup {
  display: flex;
  flex-wrap: wrap;
}

.elementor-lightbox {
  display: none !important;
}

span.gallery__close {
  position: absolute;
  top: 40px;
  right: 20px;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

.image__gallery-popup .col-xl-4 img {
  height: 450px !important;
  object-fit: cover;
  width: 100%;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .image__gallery-popup .col-xl-4 img {
    height: 400px !important;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .image__gallery-popup .col-xl-4 img {
    height: 350px !important;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .image__gallery-popup .col-xl-4 img {
    height: 350px !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .image__gallery-popup .col-xl-4 img {
    height: 250px !important;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .image__gallery-popup .col-xl-4 img {
    height: 250px !important;
  }
}

.poppup__btn .explore__btn {
  width: 200px;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 15px;
}

.image__gallery .grid-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  transition: all ease-in-out 0.3s;
  cursor: pointer;
  text-align: center;
}
.image__gallery .grid-item:hover .grid__overlay {
  opacity: 1;
  pointer-events: auto;
  padding: 0;
}
.image__gallery .grid-item div {
  overflow: hidden;
  border-radius: 12px;
}

.popup__btn {
  display: inline-block;
  text-align: center;
  padding: 16px 44px !important;
}

.benariz__popup {
  display: none;
  padding: 60px 40px;
  position: fixed;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  width: 90%;
  border-radius: 12px;
}

.backdrop {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.benariz__popup-content2 {
  position: relative;
}
.benariz__popup-content2 h4 {
  text-align: center;
}
.benariz__popup-content2 .close__product {
  position: absolute;
  top: 0px;
  right: 0;
  font-size: 24px;
  cursor: pointer;
  color: #000;
}
.benariz__popup-content2 .swiper__button-wrapper .swiper-button-prev {
  left: -20px !important;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px) {
  .benariz__popup-content2 .swiper__button-wrapper .swiper-button-prev {
    left: -60px !important;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .benariz__popup-content2 .swiper__button-wrapper .swiper-button-prev {
    left: -50px !important;
  }
}
.benariz__popup-content2 .swiper__button-wrapper .swiper-button-next {
  right: -7px !important;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px) {
  .benariz__popup-content2 .swiper__button-wrapper .swiper-button-next {
    right: -45px !important;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .benariz__popup-content2 .swiper__button-wrapper .swiper-button-next {
    right: -40px !important;
  }
}
.benariz__popup-content2 .related__product-wrapper .f__product-small .f__product-img {
  background: #FEF6F2;
}
.benariz__popup-content2 .featured__author .f__p-content h6 {
  padding: 7px 0 6px 0;
}
.benariz__popup-content2 .featured__author .f__p-price .current__price {
  padding-top: 8px;
}

.best__deal-area .best-deal-title-wrapper {
  position: relative;
}
.best__deal-area .best-deal-title-wrapper .sub__title {
  color: var(--st-body-text);
  font-size: 24px;
  line-height: 32px;
  margin: 0;
}
.best__deal-area .best-deal-title-wrapper .main__title {
  padding: 0 !important;
}
.best__deal-area .best-deal-title-wrapper .main__title::after {
  content: "";
  position: absolute;
  width: 452px;
  height: 1px;
  background: #E6E9F0;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 50px;
}
@media (max-width: 1430px) and (min-width: 1400px) {
  .best__deal-area .best-deal-title-wrapper .main__title::after {
    margin-left: 30px;
  }
}
@media (max-width: 1240px) and (min-width: 1200px) {
  .best__deal-area .best-deal-title-wrapper .main__title::after {
    margin-left: 30px;
  }
}
@media (max-width: 1775px) {
  .best__deal-area .best-deal-title-wrapper .main__title::after {
    width: 352px;
  }
}
@media (max-width: 1665px) {
  .best__deal-area .best-deal-title-wrapper .main__title::after {
    width: 200px;
  }
}
@media (max-width: 1485px) and (min-width: 1400px) {
  .best__deal-area .best-deal-title-wrapper .main__title::after {
    width: 150px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .best__deal-area .best-deal-title-wrapper .main__title::after {
    width: 100px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .best__deal-area .best-deal-title-wrapper .main__title::after {
    display: none;
  }
}
.best__deal-area .best-deal-title-wrapper .count-down-area {
  justify-content: flex-end;
  align-items: center;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .best__deal-area .best-deal-title-wrapper .count-down-area {
    justify-content: flex-start;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .best__deal-area .best-deal-title-wrapper .count-down-area {
    justify-content: end;
  }
}
.best__deal-area .best-deal-title-wrapper .count-down-wrapper .counters .count {
  height: unset;
  padding: 5px;
}
.best__deal-area .best-deal-title-wrapper .count-down-wrapper .best-deal-counters {
  gap: 12px;
}
@media (max-width: 575.98px) {
  .best__deal-area .best-deal-title-wrapper .count-down-wrapper .best-deal-counters {
    gap: 8px;
  }
}
@media (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px), only screen and (min-width: 768px) and (max-width: 991.98px) {
  .best__deal-area .best-deal-title-wrapper .count-down-wrapper .best-deal-counters {
    margin-top: 10px;
  }
}
.best__deal-area .best-deal-title-wrapper .count-down-wrapper .best-deal-counters .count {
  width: 90px;
  padding: 20px 0;
  margin: 0;
}
@media (max-width: 575.98px) {
  .best__deal-area .best-deal-title-wrapper .count-down-wrapper .best-deal-counters .count {
    width: 60px;
    padding: 10px 0;
  }
}
.best__deal-area .best-deal-title-wrapper .count-down-wrapper .best-deal-counters h3 {
  display: inline-block;
  font-size: 32px;
  line-height: 40px;
  color: var(--st-heading-primary);
}
@media (max-width: 575.98px) {
  .best__deal-area .best-deal-title-wrapper .count-down-wrapper .best-deal-counters h3 {
    font-size: 20px !important;
    line-height: 28px !important;
  }
}
.best__deal-area .best-deal-title-wrapper .count-down-wrapper .best-deal-counters span {
  font-size: 14px;
  line-height: 20px;
  color: var(--st-body-text);
}
.best__deal-area .best-deal-product-wrapper .add__success-message {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  top: 0;
  right: 100%;
  width: 200px;
  height: auto;
  padding: 0;
}
.best__deal-area .best-deal-product-wrapper .best-deal-item {
  border: 1px solid #E6E9F0;
  border-radius: 8px;
  overflow: hidden;
}
.best__deal-area .best-deal-product-wrapper .best-deal-item .content-area {
  text-align: center;
  border-top: 1px solid #E6E9F0;
  padding: 20px;
}
.best__deal-area .best-deal-product-wrapper .best-deal-item .content-area h6 {
  font-size: 24px;
  line-height: 32px;
  color: var(--st-heading-primary);
  margin: 0;
  margin-top: 10px;
}
.best__deal-area .best-deal-product-wrapper .best-deal-item .content-area .color-options {
  justify-content: center;
}
.best__deal-area .best-deal-product-wrapper .best-deal-item .content-area .old__price {
  color: var(--st-body-text);
  text-decoration: line-through;
}
.best__deal-area .best-deal-product-wrapper .best-deal-item .content-area .current__price {
  color: var(--st-theme-1);
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  margin: 0;
}
.best__deal-area .best-deal-product-wrapper .f__product-img {
  position: relative;
  padding: 20px;
}
.best__deal-area .best-deal-product-wrapper .f__product-img:hover {
  box-shadow: unset;
}
.best__deal-area .best-deal-product-wrapper .f__product-img:hover img {
  transform: unset;
}
.best__deal-area .best-deal-product-wrapper .f__product-img:hover .overlay {
  opacity: 1;
}
.best__deal-area .best-deal-product-wrapper .f__product-img:hover .overlay .icons button, .best__deal-area .best-deal-product-wrapper .f__product-img:hover .overlay .icons a {
  transform: translateX(0);
}
.best__deal-area .best-deal-product-wrapper .f__product-img img {
  border-radius: 8px;
  height: auto !important;
}
.best__deal-area .best-deal-product-wrapper .f__product-img .overlay {
  position: absolute;
  top: 32px !important;
  right: 32px !important;
  opacity: 0;
  transition: all 0.4s ease-in-out;
  background: transparent !important;
}
.best__deal-area .best-deal-product-wrapper .f__product-img .overlay .icons {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.best__deal-area .best-deal-product-wrapper .f__product-img .overlay .icons button, .best__deal-area .best-deal-product-wrapper .f__product-img .overlay .icons a {
  transform: translateX(60px);
}
.best__deal-area .best-deal-product-wrapper .f__product-img .overlay .icons button:nth-child(1), .best__deal-area .best-deal-product-wrapper .f__product-img .overlay .icons a:nth-child(1) {
  transition: all 0.35s ease-in-out;
}
.best__deal-area .best-deal-product-wrapper .f__product-img .overlay .icons button:nth-child(2), .best__deal-area .best-deal-product-wrapper .f__product-img .overlay .icons a:nth-child(2) {
  transition: all 0.55s ease-in-out;
}
.best__deal-area .best-deal-product-wrapper .f__product-img .overlay .icons button:nth-child(3), .best__deal-area .best-deal-product-wrapper .f__product-img .overlay .icons a:nth-child(3) {
  transition: all 0.75s ease-in-out;
}
.best__deal-area .best-deal-product-wrapper .f__product-img .overlay .icons button:nth-child(4), .best__deal-area .best-deal-product-wrapper .f__product-img .overlay .icons a:nth-child(4) {
  transition: all 0.85s ease-in-out;
}
.best__deal-area .best-deal-product-wrapper .f__product-img .overlay .icons .wpc-tooltip-cart[data-tooltip]:hover::after {
  left: unset;
  bottom: unset;
  right: 100%;
  top: 10px;
  transform: unset;
  background: var(--st-theme-1);
}
.best__deal-area .best-deal-product-wrapper .f__product-img .overlay i {
  font-size: 24px;
  height: 50px;
  width: 50px;
  background: var(--st-theme-2);
  vertical-align: middle;
  line-height: 50px;
  color: var(--st-theme-1);
  font-weight: 400;
  margin: 0 4px;
  border-radius: 3px;
  padding: 10px;
}
.best__deal-area .best-deal-product-wrapper .f__product-img .overlay i:hover {
  background: var(--st-theme-1);
  color: var(--st-common-white);
}
.best__deal-area .button__wrapper {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
@media (max-width: 575.98px) {
  .best__deal-area .button__wrapper {
    margin-top: 30px;
  }
}

.product__grid-view {
  padding: 0;
}
.product__grid-view section {
  padding: 0;
}
.product__grid-view .section__title .sub__title {
  color: var(--st-body-text);
  font-size: 24px;
  line-height: 32px;
  margin: 0;
}
.product__grid-view .product__tab-area .f__product-img {
  background: transparent !important;
}
.product__grid-view .left__content .section__title, .product__grid-view .right__content .section__title {
  padding: 0;
}
.product__grid-view .left__content .section__title span, .product__grid-view .right__content .section__title span {
  margin-bottom: 0;
}
.product__grid-view .left__content-tab, .product__grid-view .right__content-tab {
  padding-bottom: 0;
}
.product__grid-view .right__content {
  text-align: center;
}
.product__grid-view .right__content-tab {
  display: flex;
  justify-content: center;
}
.product__grid-view .add__success-message {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  top: 0;
  right: 100%;
  width: 200px;
  height: auto;
  padding: 0;
}

.brand__area-v2 {
  background: var(--st-theme-2);
  padding: 120px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .brand__area-v2 {
    padding: 80px 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .brand__area-v2 {
    padding: 50px 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .brand__area-v2 .brand-area-wrapper {
    flex-direction: column-reverse;
    gap: 40px;
  }
}
.brand__area-v2 .brand-left-area .brand-single-item {
  text-align: center;
  padding: 40px;
}
@media (max-width: 575.98px) {
  .brand__area-v2 .brand-left-area .brand-single-item {
    padding: 10px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .brand__area-v2 .brand-left-area .brand-single-item {
    padding: 30px 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .brand__area-v2 .brand-left-area .brand-single-item {
    padding: 30px;
  }
}
@media (min-width: 768px) {
  .brand__area-v2 .brand-left-area .brand-single-item {
    border-right: 1px solid #E6EDFA;
  }
  .brand__area-v2 .brand-left-area .brand-single-item:last-child {
    border-right: unset;
  }
  .brand__area-v2 .brand-left-area .brand-single-item:nth-child(4n) {
    border-right: unset;
  }
  .brand__area-v2 .brand-left-area .brand-single-item:nth-child(-n+4) {
    border-bottom: 1px solid #E6EDFA;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px) {
  .brand__area-v2 .brand-left-area .brand-single-item {
    border-right: 1px solid #E6EDFA;
  }
  .brand__area-v2 .brand-left-area .brand-single-item:last-child {
    border-right: unset;
  }
  .brand__area-v2 .brand-left-area .brand-single-item:nth-child(3n) {
    border-right: unset;
  }
  .brand__area-v2 .brand-left-area .brand-single-item:nth-child(-n+6) {
    border-bottom: 1px solid #E6EDFA;
  }
}
@media (max-width: 575.98px) {
  .brand__area-v2 .brand-left-area .brand-single-item {
    border-right: 1px solid #E6EDFA;
  }
  .brand__area-v2 .brand-left-area .brand-single-item:last-child {
    border-right: unset;
  }
  .brand__area-v2 .brand-left-area .brand-single-item:nth-child(2n) {
    border-right: unset;
  }
  .brand__area-v2 .brand-left-area .brand-single-item:nth-child(-n+6) {
    border-bottom: 1px solid #E6EDFA;
  }
}
.brand__area-v2 .brand-left-area .brand-single-item img {
  max-width: 208px;
  width: 100%;
  height: 52px;
  object-fit: contain;
}
.brand__area-v2 .brand-left-area .brand-single-item-3col {
  border-right: 1px solid #E6EDFA;
  text-align: center;
  padding: 40px;
}
@media (max-width: 575.98px) {
  .brand__area-v2 .brand-left-area .brand-single-item-3col {
    padding: 10px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .brand__area-v2 .brand-left-area .brand-single-item-3col {
    padding: 30px 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .brand__area-v2 .brand-left-area .brand-single-item-3col {
    padding: 30px;
  }
}
@media (min-width: 575px) {
  .brand__area-v2 .brand-left-area .brand-single-item-3col {
    border-right: 1px solid #E6EDFA;
  }
  .brand__area-v2 .brand-left-area .brand-single-item-3col:last-child {
    border-right: unset;
  }
  .brand__area-v2 .brand-left-area .brand-single-item-3col:nth-child(3n) {
    border-right: unset;
  }
  .brand__area-v2 .brand-left-area .brand-single-item-3col:nth-child(-n+6) {
    border-bottom: 1px solid #E6EDFA;
  }
}
@media (max-width: 575.98px) {
  .brand__area-v2 .brand-left-area .brand-single-item-3col {
    border-right: 1px solid #E6EDFA;
  }
  .brand__area-v2 .brand-left-area .brand-single-item-3col:last-child {
    border-right: unset;
  }
  .brand__area-v2 .brand-left-area .brand-single-item-3col:nth-child(2n) {
    border-right: unset;
  }
  .brand__area-v2 .brand-left-area .brand-single-item-3col:nth-child(-n+6) {
    border-bottom: 1px solid #E6EDFA;
  }
}
.brand__area-v2 .brand-left-area .brand-single-item-2col {
  border-right: 1px solid #E6EDFA;
  text-align: center;
  padding: 40px;
}
@media (max-width: 575.98px) {
  .brand__area-v2 .brand-left-area .brand-single-item-2col {
    padding: 10px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .brand__area-v2 .brand-left-area .brand-single-item-2col {
    padding: 30px 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .brand__area-v2 .brand-left-area .brand-single-item-2col {
    padding: 30px;
  }
}
.brand__area-v2 .brand-left-area .brand-single-item-2col:last-child {
  border-right: unset;
}
.brand__area-v2 .brand-left-area .brand-single-item-2col:nth-child(2n) {
  border-right: unset;
}
.brand__area-v2 .brand-left-area .brand-single-item-2col:nth-child(-n+6) {
  border-bottom: 1px solid #E6EDFA;
}
@media (min-width: 768px) {
  .brand__area-v2 .brand-left-area .brand-single-item-1row:nth-child(-n+4) {
    border-bottom: unset;
  }
}
@media (max-width: 575.98px) {
  .brand__area-v2 .brand-left-area .brand-single-item-1row {
    border-bottom: unset !important;
  }
  .brand__area-v2 .brand-left-area .brand-single-item-1row:nth-child(-n+2) {
    border-bottom: unset;
  }
}
.brand__area-v2 .brand-left-area .brand-single-item-2row-3col:nth-child(n+4) {
  border-bottom: unset;
}
.brand__area-v2 .brand-left-area .brand-single-item-1row-3col:nth-child(-n+3) {
  border-bottom: unset;
}
.brand__area-v2 .brand-left-area .brand-single-item-2row-2col:nth-child(n+3) {
  border-bottom: unset;
}
.brand__area-v2 .brand-left-area .brand-single-item-3row-2col:nth-child(n+5) {
  border-bottom: unset;
}
.brand__area-v2 .brand-left-area {
  padding-right: 60px;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .brand__area-v2 .brand-left-area {
    padding-right: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .brand__area-v2 .brand-left-area {
    padding: 0;
  }
}
.brand__area-v2 .brand-right-area h4 {
  margin: 0;
}
.brand__area-v2 .brand-right-area p {
  margin: 24px 0;
}

.ajax_tab-area .brand-image-tab {
  border-top: 1px solid #E6EDFA;
  border-bottom: 1px solid #E6EDFA;
  display: flex;
  justify-content: center;
  bottom: unset;
  right: unset;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px), only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .ajax_tab-area .brand-image-tab {
    left: unset;
  }
}
.ajax_tab-area .brand-image-tab button {
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #E6EDFA;
  border-bottom: unset;
  margin-right: 0;
  padding: 12px 60px !important;
  transition: all 0.4s ease-in-out;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .ajax_tab-area .brand-image-tab button {
    padding: 12px 40px !important;
  }
}
@media (max-width: 575.98px) {
  .ajax_tab-area .brand-image-tab button {
    padding: 12px 30px !important;
  }
}
.ajax_tab-area .brand-image-tab button:last-of-type {
  border-right: unset;
}
.ajax_tab-area .brand-image-tab button.active {
  border-bottom: 1px solid var(--st-theme-1);
}
.ajax_tab-area .brand-image-tab button img {
  width: 100%;
  height: 20px;
  object-fit: contain;
}
.ajax_tab-area .brand-image-tab .swiper-button-next, .ajax_tab-area .brand-image-tab .swiper-button-prev {
  display: block;
  height: 24px;
  width: 24px;
  display: flex !important;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-top: 0;
  padding-bottom: 20px;
}
.ajax_tab-area .brand-image-tab .swiper-button-next::after, .ajax_tab-area .brand-image-tab .swiper-button-prev::after {
  color: var(--st-theme-1);
  font-size: 18px;
  font-weight: 900;
}
.ajax_tab-area .brand-image-tab .swiper-button-prev {
  left: 5px;
}
.ajax_tab-area .brand-image-tab .swiper-button-next {
  right: 5px !important;
}
.ajax_tab-area .product__brand-area .best-deal-item {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.ajax_tab-area .product__brand-area .best-deal-item .content-area {
  text-align: center;
  border-top: 1px solid #E6E9F0;
  padding: 20px;
}
.ajax_tab-area .product__brand-area .best-deal-item .content-area h6 {
  color: var(--st-heading-primary);
  margin: 0;
  margin-top: 10px;
}
.ajax_tab-area .product__brand-area .best-deal-item .content-area .color-options {
  justify-content: center;
}
.ajax_tab-area .product__brand-area .best-deal-item .content-area .old__price {
  color: var(--st-body-text);
  text-decoration: line-through;
}
.ajax_tab-area .product__brand-area .best-deal-item .content-area .current__price {
  color: var(--st-theme-1);
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  margin: 0;
}
.ajax_tab-area .product__brand-area .best-deal-item .f__product-img {
  position: relative;
  padding: 24px 0;
}
.ajax_tab-area .product__brand-area .best-deal-item .f__product-img .product-offer span {
  position: absolute;
  top: 24px;
  left: 24px;
  padding: 4px 16px;
  background: var(--st-heading-primary);
  color: var(--st-common-white);
  font-size: 14px;
  line-height: 20px;
}
.ajax_tab-area .product__brand-area .best-deal-item .f__product-img:hover {
  box-shadow: unset;
}
.ajax_tab-area .product__brand-area .best-deal-item .f__product-img:hover img {
  transform: unset;
}
.ajax_tab-area .product__brand-area .best-deal-item .f__product-img:hover .overlay {
  opacity: 1;
}
.ajax_tab-area .product__brand-area .best-deal-item .f__product-img:hover .overlay .icons button, .ajax_tab-area .product__brand-area .best-deal-item .f__product-img:hover .overlay .icons a {
  transform: translateX(0);
}
.ajax_tab-area .product__brand-area .best-deal-item .f__product-img img {
  border-radius: 8px;
  height: auto !important;
}
.ajax_tab-area .product__brand-area .best-deal-item .f__product-img .overlay {
  position: absolute;
  opacity: 0;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.4s ease-in-out;
  background: transparent !important;
}
.ajax_tab-area .product__brand-area .best-deal-item .f__product-img .overlay .icons {
  display: flex;
  flex-direction: row;
}
.ajax_tab-area .product__brand-area .best-deal-item .f__product-img .overlay .icons .wpc-tooltip-cart[data-tooltip]:hover::after {
  left: 50%;
  bottom: 100%;
  right: unset;
  top: unset;
  transform: translateX(-50%);
  background: var(--st-theme-1);
}
.ajax_tab-area .product__brand-area .best-deal-item .f__product-img .overlay i {
  font-size: 24px;
  height: 50px;
  width: 50px;
  background: var(--st-theme-2);
  vertical-align: middle;
  line-height: 50px;
  color: var(--st-theme-1);
  font-weight: 400;
  margin: 0 4px;
  border-radius: 3px;
  padding: 10px;
}
.ajax_tab-area .product__brand-area .best-deal-item .f__product-img .overlay i:hover {
  background: var(--st-theme-1);
  color: var(--st-common-white);
}
.ajax_tab-area .product__brand-area .add__success-message {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  bottom: 100%;
  left: 50%;
  top: unset;
  right: unset;
  transform: translateX(-50%);
  padding: 10px;
}

.pre-order__area .pre-order__wrapper-left {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .pre-order__area .pre-order__wrapper-left {
    padding: 40px;
  }
}
@media (max-width: 575.98px) {
  .pre-order__area .pre-order__wrapper-left {
    padding: 20px 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .pre-order__area .pre-order__wrapper-left {
    margin-bottom: 40px;
  }
}
.pre-order__area .pre-order__wrapper-left .section__title .main__title {
  color: var(--st-common-white);
}
.pre-order__area .pre-order__wrapper-left .section__title .counters {
  gap: 7px;
}
.pre-order__area .pre-order__wrapper-left .section__title .count {
  width: unset;
  height: unset;
  padding: 12px 24px;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .pre-order__area .pre-order__wrapper-left .section__title .count {
    padding: 10px 18px;
  }
}
@media (max-width: 575.98px) {
  .pre-order__area .pre-order__wrapper-left .section__title .count {
    margin: 0 !important;
    padding: 6px 12px;
  }
}
.pre-order__area .pre-order__wrapper-left .section__title .count h3 {
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), (max-width: 575.98px) {
  .pre-order__area .pre-order__wrapper-left .section__title .count h3 {
    font-size: 24px !important;
    line-height: 28px !important;
  }
}
.pre-order__area .pre-order__wrapper-left .section__title .count span {
  font-size: 12px;
  line-height: 16px;
}
.pre-order__area .pre-order__wrapper-left .section__title .count h3,
.pre-order__area .pre-order__wrapper-left .section__title .count span {
  color: var(--st-common-white);
}
.pre-order__area .pre-order__wrapper-left .section__title .btn__wrapper {
  margin-top: 24px;
  margin-bottom: 136px;
}
.pre-order__area .pre-order__wrapper-right .best-deal-item {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
@media (max-width: 575.98px) {
  .pre-order__area .pre-order__wrapper-right .best-deal-item {
    margin-bottom: 30px;
  }
}
.pre-order__area .pre-order__wrapper-right .best-deal-item .content-area {
  text-align: center;
  border-top: 1px solid #E6E9F0;
  padding: 20px;
}
.pre-order__area .pre-order__wrapper-right .best-deal-item .content-area h6 {
  font-size: 24px;
  line-height: 32px;
  color: var(--st-heading-primary);
  margin: 0;
  margin-top: 10px;
}
.pre-order__area .pre-order__wrapper-right .best-deal-item .content-area .color-options {
  justify-content: center;
}
.pre-order__area .pre-order__wrapper-right .best-deal-item .content-area .old__price {
  color: var(--st-body-text);
  text-decoration: line-through;
}
.pre-order__area .pre-order__wrapper-right .best-deal-item .content-area .current__price {
  color: var(--st-theme-1);
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  margin: 0;
}
.pre-order__area .pre-order__wrapper-right .best-deal-item .f__product-img {
  position: relative;
}
.pre-order__area .pre-order__wrapper-right .best-deal-item .f__product-img .product-offer span {
  position: absolute;
  top: 24px;
  left: 24px;
  padding: 4px 16px;
  background: var(--st-heading-primary);
  color: var(--st-common-white);
  font-size: 14px;
  line-height: 20px;
}
.pre-order__area .pre-order__wrapper-right .best-deal-item .f__product-img:hover {
  box-shadow: unset;
}
.pre-order__area .pre-order__wrapper-right .best-deal-item .f__product-img:hover img {
  transform: unset;
}
.pre-order__area .pre-order__wrapper-right .best-deal-item .f__product-img:hover .overlay {
  opacity: 1;
}
.pre-order__area .pre-order__wrapper-right .best-deal-item .f__product-img:hover .overlay .icons button, .pre-order__area .pre-order__wrapper-right .best-deal-item .f__product-img:hover .overlay .icons a {
  transform: translateX(0);
}
.pre-order__area .pre-order__wrapper-right .best-deal-item .f__product-img img {
  border-radius: 8px;
  height: auto !important;
}
.pre-order__area .pre-order__wrapper-right .best-deal-item .f__product-img .overlay {
  position: absolute;
  opacity: 0;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.4s ease-in-out;
  background: transparent !important;
}
.pre-order__area .pre-order__wrapper-right .best-deal-item .f__product-img .overlay .icons {
  display: flex;
  flex-direction: row;
}
.pre-order__area .pre-order__wrapper-right .best-deal-item .f__product-img .overlay .icons .wpc-tooltip-cart[data-tooltip]:hover::after {
  left: 50%;
  bottom: 100%;
  right: unset;
  top: unset;
  transform: translateX(-50%);
  background: var(--st-theme-1);
}
.pre-order__area .pre-order__wrapper-right .best-deal-item .f__product-img .overlay i {
  font-size: 24px;
  height: 50px;
  width: 50px;
  background: var(--st-theme-2);
  vertical-align: middle;
  line-height: 50px;
  color: var(--st-theme-1);
  font-weight: 400;
  margin: 0 4px;
  border-radius: 3px;
  padding: 10px;
}
.pre-order__area .pre-order__wrapper-right .best-deal-item .f__product-img .overlay i:hover {
  background: var(--st-theme-1);
  color: var(--st-common-white);
}

.compare-tab-area {
  padding: 113px 0;
  position: relative;
}
.compare-tab-area .tab {
  position: absolute;
  right: unset;
  bottom: unset;
  top: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px), only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .compare-tab-area .tab {
    left: unset;
  }
}
.compare-tab-area .tab .tab-link {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.compare-tab-area .tab .tab-link .button-text {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.compare-tab-area .tab .tab-link .button-text h6 {
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  background: #F3F6FC;
  display: inline-block;
  width: 50%;
  padding: 12px 0;
}
.compare-tab-area .tab .tab-link .product-img {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 10px;
  position: relative;
  background: #F3F6FC;
  padding: 17px 60px 25px;
}
@media (max-width: 575.98px) {
  .compare-tab-area .tab .tab-link .product-img {
    padding: 17px 15px 25px;
  }
}
.compare-tab-area .tab .tab-link .product-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 10px;
  height: 100%;
  background: var(--st-common-white);
  transform: translateX(-50%);
}
.compare-tab-area .tab .tab-link .product-img span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--st-common-white);
  border-radius: 50%;
  width: 111px;
  height: 111px;
  font-size: 48px;
  line-height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
@media (max-width: 575.98px) {
  .compare-tab-area .tab .tab-link .product-img span {
    width: 80px;
    height: 80px;
    font-size: 32px;
    line-height: 40px;
  }
}
.compare-tab-area .tab .tab-link .product-img img {
  width: 154px;
  height: 120px;
  object-fit: cover;
}
@media (max-width: 575.98px) {
  .compare-tab-area .tab .tab-link .product-img img {
    width: 120px;
    height: 120px;
  }
}
.compare-tab-area .tab button {
  border-bottom: unset;
}
.compare-tab-area .tab button.active {
  border-bottom: 4px solid var(--st-theme-1);
}
.compare-tab-area .swiper-button-next,
.compare-tab-area .swiper-button-prev {
  display: block;
  bottom: 0;
  width: 48px;
  height: 48px;
  padding-top: 12px;
  padding-left: 16px;
  background: var(--st-common-white);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1019607843);
}
@media (max-width: 575.98px) {
  .compare-tab-area .swiper-button-next,
  .compare-tab-area .swiper-button-prev {
    width: 32px;
    height: 32px;
    padding-left: 6px;
    padding-top: 3px;
  }
}
.compare-tab-area .swiper-button-next i,
.compare-tab-area .swiper-button-prev i {
  font-size: 18px;
}
.compare-tab-area .swiper-button-next {
  right: -20px !important;
}
.compare-tab-area .swiper-button-prev {
  left: -20px;
}

.compare-product-content {
  padding-top: 30px;
}
.compare-product-content .wpc-add-to-cart-button {
  background: unset;
  border: unset;
  padding: unset;
  border-radius: unset;
  color: var(--st-theme-1);
  border-bottom: 1px solid var(--st-theme-1);
}
.compare-product-content .product__content img {
  width: 100px;
  height: auto;
}

.image__marqueue-scroll .carousel-field {
  width: 100%;
}
.image__marqueue-scroll .carousel-field .marquee-carousel {
  margin-bottom: 30px;
}
.image__marqueue-scroll .carousel-field .reverse-marquee-carousel,
.image__marqueue-scroll .carousel-field .marquee-carousel {
  width: 100%;
}
.image__marqueue-scroll .carousel-field .reverse-marquee-carousel .swiper-wrapper,
.image__marqueue-scroll .carousel-field .marquee-carousel .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}
.image__marqueue-scroll .carousel-field .reverse-marquee-carousel .swiper-wrapper .swiper-slide,
.image__marqueue-scroll .carousel-field .marquee-carousel .swiper-wrapper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.image__marqueue-scroll .carousel-field .reverse-marquee-carousel .swiper-wrapper .swiper-slide .content,
.image__marqueue-scroll .carousel-field .marquee-carousel .swiper-wrapper .swiper-slide .content {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  overflow: hidden;
  width: 100%;
  height: 500px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 24px 24px 24px 0;
}
.image__marqueue-scroll .carousel-field .reverse-marquee-carousel .swiper-wrapper .swiper-slide .content:hover .promo-text,
.image__marqueue-scroll .carousel-field .marquee-carousel .swiper-wrapper .swiper-slide .content:hover .promo-text {
  transform: translateX(24px);
}
.image__marqueue-scroll .carousel-field .reverse-marquee-carousel .swiper-wrapper .swiper-slide .content .promo-text,
.image__marqueue-scroll .carousel-field .marquee-carousel .swiper-wrapper .swiper-slide .content .promo-text {
  background: var(--st-common-white);
  padding: 32px;
  width: calc(100% - 24px);
  text-align: start;
  transform: translateX(-100%);
  transition: all 0.5s ease-in-out;
}
@media (max-width: 575.98px) {
  .image__marqueue-scroll .carousel-field .reverse-marquee-carousel .swiper-wrapper .swiper-slide .content .promo-text,
  .image__marqueue-scroll .carousel-field .marquee-carousel .swiper-wrapper .swiper-slide .content .promo-text {
    padding: 15px;
  }
}
.image__marqueue-scroll .carousel-field .reverse-marquee-carousel .swiper-wrapper .swiper-slide .content .promo-text h4,
.image__marqueue-scroll .carousel-field .marquee-carousel .swiper-wrapper .swiper-slide .content .promo-text h4 {
  margin-bottom: 0;
}

.social-area-wrapper .social-area {
  position: relative;
  z-index: 1;
  row-gap: 24px;
}
.social-area-wrapper .social-icons-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--st-theme-1);
  background-color: var(--st-common-white);
  overflow: hidden;
}
.social-area-wrapper .social-icons-wrapper .icon-text-area-right {
  display: flex;
  justify-content: left;
  align-items: center;
}
.social-area-wrapper .social-icons-wrapper .icon-text-area-right svg {
  width: 60px;
  height: 60px;
  padding: 18px;
  background: var(--st-theme-1);
  fill: var(--st-common-white);
}
.social-area-wrapper .social-icons-wrapper .icon-text-area-right i {
  font-size: 24px;
  color: var(--st-theme-1);
  padding-right: 13px;
}
.social-area-wrapper .social-icons-wrapper .icon-text-area-right h4 {
  margin: 0;
  color: var(--st-theme-1);
  padding-left: 13px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .social-area-wrapper .social-icons-wrapper .icon-text-area-right h4 {
    font-size: 28px;
    line-height: 32px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .social-area-wrapper .social-icons-wrapper .icon-text-area-right h4 {
    font-size: 22px;
    line-height: 28px;
  }
}
.social-area-wrapper .social-icons-wrapper .icon-text-area-left svg {
  width: 60px;
  height: 60px;
  padding: 18px;
}
.social-area-wrapper .social-icons-wrapper .icon-text-area-left svg path {
  fill: var(--st-theme-1);
}
.social-area-wrapper .social-icons-wrapper .icon-text-area-left i {
  font-size: 24px;
  color: var(--st-theme-1);
  padding-right: 13px;
}
.social-area-wrapper .section-title-wrapper {
  margin-top: -15px;
}
.social-area-wrapper .section-title-wrapper .social-section-title {
  color: transparent;
  -webkit-text-stroke: 1px #CDDBF5;
  font-size: 130px;
  line-height: 97px;
  text-align: center;
  margin: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px) {
  .social-area-wrapper .section-title-wrapper .social-section-title {
    font-size: 100px;
    line-height: 97px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .social-area-wrapper .section-title-wrapper .social-section-title {
    font-size: 80px;
    line-height: 60px;
  }
}

:root {
  /**
  @font family declaration
  */
  --st-ff-body: 'Poppins', sans-serif;
  --st-ff-heading: 'Poppins', sans-serif;
  --st-ff-p: 'Poppins', sans-serif;
  --st-ff-menu: 'Poppins', sans-serif;
  --st-ff-button: 'Poppins', sans-serif;
  --st-ff-fontawesome: "Font Awesome 6 Pro";
  /**
  @color declaration
  */
  --st-common-white: #ffffff;
  --st-common-black: #000;
  --st-common-black2: #111827;
  --st-common-star: #fdb022;
  --st-heading-primary: #002366;
  --st-grey-1: #70747D;
  --st-grey-2: #414652;
  --st-text-body: #70747D;
  --st-text-1: #70747D;
  --st-text-top-header: #f5ba68;
  --st-text-top-header-hover: #f04a00;
  --st-text-menu: #ffffff;
  --st-text-menu-hover: #f04a00;
  --st-text-link: #f04a00;
  --st-text-link-hover: #002366;
  --st-text-button: #ffffff;
  --st-text-btn-hover: #f04a00;
  --st-text-price: #a0a3a9;
  --st-text-sale-price: #F04A00;
  --st-text-topmenu: #F2F4F7;
  --st-text-topmenu-hover: #70747d;
  --st-text-stock: #5fa745;
  --st-text-onsale: #70747d;
  --st-text-rating: #f04a00;
  --st-theme-1: #F04A00;
  --st-theme-2: #002366;
  --st-theme-primary: #f04a00;
  --st-theme-secondery: #002366;
  --st-theme-top-header: #111827;
  --st-theme-button: #f04a00;
  --st-theme-btn-hover: #ffffff;
  --st-theme-onsale: #ffffff;
  --st-border-1: #000;
  --st-border-button: #F04A00;
  --st-border-btn-hover: #F04A00;
  /**
  @font weight declaration
  */
  --st-fw-normal: normal;
  --st-fw-elight: 200;
  --st-fw-light: 300;
  --st-fw-regular: 400;
  --st-fw-medium: 500;
  --st-fw-sbold: 600;
  --st-fw-bold: 700;
  --st-fw-ebold: 800;
  --st-fw-black: 900;
  --st-fw-heading: 600;
  --st-fw-button: 600;
  --st-fw-menu: 500;
  /**
  @font size declaration
  */
  --st-fz-body: 18px;
  --st-fz-p: 18px;
  --st-fz-h1: 80px;
  --st-fz-h2: 60px;
  --st-fz-h3: 48px;
  --st-fz-h4: 32px;
  --st-fz-h5: 24px;
  --st-fz-h6: 20px;
  --st-fz-button: 18px;
  --st-fz-menu: 18px;
  --st-fz-mob-h1: 48px;
  --st-fz-mob-h2: 38px;
  --st-fz-mob-h3: 28px;
  --st-fz-mob-h4: 24px;
  --st-fz-mob-h5: 22px;
  --st-fz-mob-h6: 20px;
  --st-fz-tab-body: 18px;
  --st-fz-tab-h1: 65px;
  --st-fz-tab-h2: 50px;
  --st-fz-tab-h3: 46px;
  --st-fz-tab-h4: 42px;
  --st-fz-tab-h5: 34px;
  --st-fz-tab-h6: 30px;
  /**
  @line height declaration
  */
  --st-lh-body: 20px;
  --st-lh-h1: 90px;
  --st-lh-h2: 70px;
  --st-lh-h3: 58px;
  --st-lh-h4: 42px;
  --st-lh-h5: 34px;
  --st-lh-h6: 30px;
  --st-lh-button: 28px;
  --st-lh-h1-tab: 75px;
  --st-lh-h2-tab: 60px;
  --st-lh-h3-tab: 48px;
  --st-lh-h4-tab: 38px;
  --st-lh-h5-tab: 34px;
  --st-lh-h6-tab: 28px;
  --st-lh-h1-mob: 58px;
  --st-lh-h2-mob: 48px;
  --st-lh-h3-mob: 34px;
  --st-lh-h4-mob: 32px;
  --st-lh-h5-mob: 30px;
  --st-lh-h6-mob: 24px;
}

.benariz__faq-wrapper {
  margin: 0 auto;
}
.benariz__faq-wrapper .accordion-item {
  border: none;
  margin-bottom: 28px;
}
@media (max-width: 575.98px) {
  .benariz__faq-wrapper .accordion-item {
    margin-bottom: 18px;
  }
}
.benariz__faq-wrapper .accordion-button {
  background-color: #fff;
  box-shadow: none;
  padding: 16px 24px;
  font-size: 18px;
  line-height: 28px;
  color: #70747d;
  font-weight: 600;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.031372549);
  border-radius: 4px;
}
.benariz__faq-wrapper .accordion-button .icon__toggle {
  margin-left: 10px;
  transition: transform 0.5s ease;
}
.benariz__faq-wrapper .accordion-body {
  padding: 16px 24px;
  background-color: #fafafb;
  border: 0 0 4px 4px;
}
.benariz__faq-wrapper .accordion-body p {
  margin-bottom: 0;
  color: #70747d;
  line-height: 28px;
  font-weight: 400;
}
.benariz__faq-wrapper .accordion-collapse .accordion-body {
  border-top: none;
}
.benariz__faq-wrapper .accordion-button::after {
  display: none;
}

.benariz__faq_2_wrapper {
  margin: 0 auto;
}
.benariz__faq_2_wrapper .accordion-item {
  border: none;
}
.benariz__faq_2_wrapper .accordion-button {
  background-color: var(--st-common-white);
  box-shadow: none;
  padding: 16px 0px;
  font-size: 18px;
  line-height: 28px;
  color: var(--st-common-black);
  font-weight: 600;
  border-bottom: 1px solid #E8E8EA;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 12px;
}
.benariz__faq_2_wrapper .accordion-button .icon__toggle {
  margin-left: 10px;
  transition: transform 0.5s ease;
}
.benariz__faq_2_wrapper .accordion-body {
  padding: 16px 0px;
  background-color: var(--st-common-white);
  border: 0 0 4px 4px;
}
.benariz__faq_2_wrapper .accordion-body p {
  margin-bottom: 0;
  color: var(--st-common-black);
  line-height: 28px;
  font-weight: 400;
}
.benariz__faq_2_wrapper .accordion-collapse .accordion-body {
  border-bottom: 1px solid #E8E8EA;
}
.benariz__faq_2_wrapper .accordion-button::after {
  display: none;
}

:root {
  /**
  @font family declaration
  */
  --st-ff-body: 'Poppins', sans-serif;
  --st-ff-heading: 'Poppins', sans-serif;
  --st-ff-p: 'Poppins', sans-serif;
  --st-ff-menu: 'Poppins', sans-serif;
  --st-ff-button: 'Poppins', sans-serif;
  --st-ff-fontawesome: "Font Awesome 6 Pro";
  /**
  @color declaration
  */
  --st-common-white: #ffffff;
  --st-common-black: #000;
  --st-common-black2: #111827;
  --st-common-star: #fdb022;
  --st-heading-primary: #002366;
  --st-grey-1: #70747D;
  --st-grey-2: #414652;
  --st-text-body: #70747D;
  --st-text-1: #70747D;
  --st-text-top-header: #f5ba68;
  --st-text-top-header-hover: #f04a00;
  --st-text-menu: #ffffff;
  --st-text-menu-hover: #f04a00;
  --st-text-link: #f04a00;
  --st-text-link-hover: #002366;
  --st-text-button: #ffffff;
  --st-text-btn-hover: #f04a00;
  --st-text-price: #a0a3a9;
  --st-text-sale-price: #F04A00;
  --st-text-topmenu: #F2F4F7;
  --st-text-topmenu-hover: #70747d;
  --st-text-stock: #5fa745;
  --st-text-onsale: #70747d;
  --st-text-rating: #f04a00;
  --st-theme-1: #F04A00;
  --st-theme-2: #002366;
  --st-theme-primary: #f04a00;
  --st-theme-secondery: #002366;
  --st-theme-top-header: #111827;
  --st-theme-button: #f04a00;
  --st-theme-btn-hover: #ffffff;
  --st-theme-onsale: #ffffff;
  --st-border-1: #000;
  --st-border-button: #F04A00;
  --st-border-btn-hover: #F04A00;
  /**
  @font weight declaration
  */
  --st-fw-normal: normal;
  --st-fw-elight: 200;
  --st-fw-light: 300;
  --st-fw-regular: 400;
  --st-fw-medium: 500;
  --st-fw-sbold: 600;
  --st-fw-bold: 700;
  --st-fw-ebold: 800;
  --st-fw-black: 900;
  --st-fw-heading: 600;
  --st-fw-button: 600;
  --st-fw-menu: 500;
  /**
  @font size declaration
  */
  --st-fz-body: 18px;
  --st-fz-p: 18px;
  --st-fz-h1: 80px;
  --st-fz-h2: 60px;
  --st-fz-h3: 48px;
  --st-fz-h4: 32px;
  --st-fz-h5: 24px;
  --st-fz-h6: 20px;
  --st-fz-button: 18px;
  --st-fz-menu: 18px;
  --st-fz-mob-h1: 48px;
  --st-fz-mob-h2: 38px;
  --st-fz-mob-h3: 28px;
  --st-fz-mob-h4: 24px;
  --st-fz-mob-h5: 22px;
  --st-fz-mob-h6: 20px;
  --st-fz-tab-body: 18px;
  --st-fz-tab-h1: 65px;
  --st-fz-tab-h2: 50px;
  --st-fz-tab-h3: 46px;
  --st-fz-tab-h4: 42px;
  --st-fz-tab-h5: 34px;
  --st-fz-tab-h6: 30px;
  /**
  @line height declaration
  */
  --st-lh-body: 20px;
  --st-lh-h1: 90px;
  --st-lh-h2: 70px;
  --st-lh-h3: 58px;
  --st-lh-h4: 42px;
  --st-lh-h5: 34px;
  --st-lh-h6: 30px;
  --st-lh-button: 28px;
  --st-lh-h1-tab: 75px;
  --st-lh-h2-tab: 60px;
  --st-lh-h3-tab: 48px;
  --st-lh-h4-tab: 38px;
  --st-lh-h5-tab: 34px;
  --st-lh-h6-tab: 28px;
  --st-lh-h1-mob: 58px;
  --st-lh-h2-mob: 48px;
  --st-lh-h3-mob: 34px;
  --st-lh-h4-mob: 32px;
  --st-lh-h5-mob: 30px;
  --st-lh-h6-mob: 24px;
}

.entry-content h2.wp-block-heading {
  font-size: 48px;
  line-height: 60px;
  margin: 16px 0;
}
@media (max-width: 768px) {
  .entry-content h2.wp-block-heading {
    font-size: 32px;
    line-height: 48px;
  }
}
.entry-content h5.wp-block-heading {
  color: #414652;
}
.entry-content p {
  color: var(--st-text-body);
}
.entry-content ul.wp-block-list {
  list-style-type: disc;
  margin-left: 30px;
  padding: 15px 0;
}
.entry-content ul.wp-block-list li {
  list-style-type: disc;
  color: #70747D;
  font-weight: 400;
}
.entry-content figure img {
  width: 100% !important;
  height: 600px !important;
  object-fit: cover;
  border-radius: 12px;
  margin: 16px 0;
}
@media (max-width: 768px) {
  .entry-content figure img {
    height: 400px !important;
  }
}
.entry-content .wp-block-group {
  text-align: center;
  gap: 40px;
  justify-content: space-between;
}
.entry-content .wp-block-group figure img {
  width: 100% !important;
  height: 300px !important;
  object-fit: cover;
  border-radius: 12px;
}
.entry-content .wp-block-group figure {
  width: 100%;
}
.entry-content .wp-block-table table {
  margin: 16px 0;
}
.entry-content .wp-block-table table tr {
  background-color: #FAFAFB;
  min-height: 48px;
}
.entry-content .wp-block-table table tr td {
  color: #70747D;
  padding: 10px 40px;
}
.entry-content .wp-block-table table tr th {
  color: #000000;
}
.entry-content .wp-block-table table tr td, .entry-content .wp-block-table table tr th {
  border: 1px solid #E6E9F0;
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .entry-content .wp-block-table table {
    width: 900px;
  }
}

:root {
  /**
  @font family declaration
  */
  --st-ff-body: 'Poppins', sans-serif;
  --st-ff-heading: 'Poppins', sans-serif;
  --st-ff-p: 'Poppins', sans-serif;
  --st-ff-menu: 'Poppins', sans-serif;
  --st-ff-button: 'Poppins', sans-serif;
  --st-ff-fontawesome: "Font Awesome 6 Pro";
  /**
  @color declaration
  */
  --st-common-white: #ffffff;
  --st-common-black: #000;
  --st-common-black2: #111827;
  --st-common-star: #fdb022;
  --st-heading-primary: #002366;
  --st-grey-1: #70747D;
  --st-grey-2: #414652;
  --st-text-body: #70747D;
  --st-text-1: #70747D;
  --st-text-top-header: #f5ba68;
  --st-text-top-header-hover: #f04a00;
  --st-text-menu: #ffffff;
  --st-text-menu-hover: #f04a00;
  --st-text-link: #f04a00;
  --st-text-link-hover: #002366;
  --st-text-button: #ffffff;
  --st-text-btn-hover: #f04a00;
  --st-text-price: #a0a3a9;
  --st-text-sale-price: #F04A00;
  --st-text-topmenu: #F2F4F7;
  --st-text-topmenu-hover: #70747d;
  --st-text-stock: #5fa745;
  --st-text-onsale: #70747d;
  --st-text-rating: #f04a00;
  --st-theme-1: #F04A00;
  --st-theme-2: #002366;
  --st-theme-primary: #f04a00;
  --st-theme-secondery: #002366;
  --st-theme-top-header: #111827;
  --st-theme-button: #f04a00;
  --st-theme-btn-hover: #ffffff;
  --st-theme-onsale: #ffffff;
  --st-border-1: #000;
  --st-border-button: #F04A00;
  --st-border-btn-hover: #F04A00;
  /**
  @font weight declaration
  */
  --st-fw-normal: normal;
  --st-fw-elight: 200;
  --st-fw-light: 300;
  --st-fw-regular: 400;
  --st-fw-medium: 500;
  --st-fw-sbold: 600;
  --st-fw-bold: 700;
  --st-fw-ebold: 800;
  --st-fw-black: 900;
  --st-fw-heading: 600;
  --st-fw-button: 600;
  --st-fw-menu: 500;
  /**
  @font size declaration
  */
  --st-fz-body: 18px;
  --st-fz-p: 18px;
  --st-fz-h1: 80px;
  --st-fz-h2: 60px;
  --st-fz-h3: 48px;
  --st-fz-h4: 32px;
  --st-fz-h5: 24px;
  --st-fz-h6: 20px;
  --st-fz-button: 18px;
  --st-fz-menu: 18px;
  --st-fz-mob-h1: 48px;
  --st-fz-mob-h2: 38px;
  --st-fz-mob-h3: 28px;
  --st-fz-mob-h4: 24px;
  --st-fz-mob-h5: 22px;
  --st-fz-mob-h6: 20px;
  --st-fz-tab-body: 18px;
  --st-fz-tab-h1: 65px;
  --st-fz-tab-h2: 50px;
  --st-fz-tab-h3: 46px;
  --st-fz-tab-h4: 42px;
  --st-fz-tab-h5: 34px;
  --st-fz-tab-h6: 30px;
  /**
  @line height declaration
  */
  --st-lh-body: 20px;
  --st-lh-h1: 90px;
  --st-lh-h2: 70px;
  --st-lh-h3: 58px;
  --st-lh-h4: 42px;
  --st-lh-h5: 34px;
  --st-lh-h6: 30px;
  --st-lh-button: 28px;
  --st-lh-h1-tab: 75px;
  --st-lh-h2-tab: 60px;
  --st-lh-h3-tab: 48px;
  --st-lh-h4-tab: 38px;
  --st-lh-h5-tab: 34px;
  --st-lh-h6-tab: 28px;
  --st-lh-h1-mob: 58px;
  --st-lh-h2-mob: 48px;
  --st-lh-h3-mob: 34px;
  --st-lh-h4-mob: 32px;
  --st-lh-h5-mob: 30px;
  --st-lh-h6-mob: 24px;
}

/*======================
    404 page style here 
=======================*/
.error-404 .page-404-wrapper {
  background: var(--st-common-white);
  color: red;
}
.error-404 .page-404-wrapper img {
  max-width: 500px;
  width: 100%;
}
.error-404 .page-404-wrapper .title-404-content h3 {
  margin-bottom: 20px;
}
@media (max-width: 375px) {
  .error-404 .page-404-wrapper .title-404-content h3 {
    font-size: 30px;
    margin-bottom: 10px;
  }
}
.error-404 .page-404-wrapper .title-404-content p {
  margin-bottom: 20px;
}

:root {
  /**
  @font family declaration
  */
  --st-ff-body: 'Poppins', sans-serif;
  --st-ff-heading: 'Poppins', sans-serif;
  --st-ff-p: 'Poppins', sans-serif;
  --st-ff-menu: 'Poppins', sans-serif;
  --st-ff-button: 'Poppins', sans-serif;
  --st-ff-fontawesome: "Font Awesome 6 Pro";
  /**
  @color declaration
  */
  --st-common-white: #ffffff;
  --st-common-black: #000;
  --st-common-black2: #111827;
  --st-common-star: #fdb022;
  --st-heading-primary: #002366;
  --st-grey-1: #70747D;
  --st-grey-2: #414652;
  --st-text-body: #70747D;
  --st-text-1: #70747D;
  --st-text-top-header: #f5ba68;
  --st-text-top-header-hover: #f04a00;
  --st-text-menu: #ffffff;
  --st-text-menu-hover: #f04a00;
  --st-text-link: #f04a00;
  --st-text-link-hover: #002366;
  --st-text-button: #ffffff;
  --st-text-btn-hover: #f04a00;
  --st-text-price: #a0a3a9;
  --st-text-sale-price: #F04A00;
  --st-text-topmenu: #F2F4F7;
  --st-text-topmenu-hover: #70747d;
  --st-text-stock: #5fa745;
  --st-text-onsale: #70747d;
  --st-text-rating: #f04a00;
  --st-theme-1: #F04A00;
  --st-theme-2: #002366;
  --st-theme-primary: #f04a00;
  --st-theme-secondery: #002366;
  --st-theme-top-header: #111827;
  --st-theme-button: #f04a00;
  --st-theme-btn-hover: #ffffff;
  --st-theme-onsale: #ffffff;
  --st-border-1: #000;
  --st-border-button: #F04A00;
  --st-border-btn-hover: #F04A00;
  /**
  @font weight declaration
  */
  --st-fw-normal: normal;
  --st-fw-elight: 200;
  --st-fw-light: 300;
  --st-fw-regular: 400;
  --st-fw-medium: 500;
  --st-fw-sbold: 600;
  --st-fw-bold: 700;
  --st-fw-ebold: 800;
  --st-fw-black: 900;
  --st-fw-heading: 600;
  --st-fw-button: 600;
  --st-fw-menu: 500;
  /**
  @font size declaration
  */
  --st-fz-body: 18px;
  --st-fz-p: 18px;
  --st-fz-h1: 80px;
  --st-fz-h2: 60px;
  --st-fz-h3: 48px;
  --st-fz-h4: 32px;
  --st-fz-h5: 24px;
  --st-fz-h6: 20px;
  --st-fz-button: 18px;
  --st-fz-menu: 18px;
  --st-fz-mob-h1: 48px;
  --st-fz-mob-h2: 38px;
  --st-fz-mob-h3: 28px;
  --st-fz-mob-h4: 24px;
  --st-fz-mob-h5: 22px;
  --st-fz-mob-h6: 20px;
  --st-fz-tab-body: 18px;
  --st-fz-tab-h1: 65px;
  --st-fz-tab-h2: 50px;
  --st-fz-tab-h3: 46px;
  --st-fz-tab-h4: 42px;
  --st-fz-tab-h5: 34px;
  --st-fz-tab-h6: 30px;
  /**
  @line height declaration
  */
  --st-lh-body: 20px;
  --st-lh-h1: 90px;
  --st-lh-h2: 70px;
  --st-lh-h3: 58px;
  --st-lh-h4: 42px;
  --st-lh-h5: 34px;
  --st-lh-h6: 30px;
  --st-lh-button: 28px;
  --st-lh-h1-tab: 75px;
  --st-lh-h2-tab: 60px;
  --st-lh-h3-tab: 48px;
  --st-lh-h4-tab: 38px;
  --st-lh-h5-tab: 34px;
  --st-lh-h6-tab: 28px;
  --st-lh-h1-mob: 58px;
  --st-lh-h2-mob: 48px;
  --st-lh-h3-mob: 34px;
  --st-lh-h4-mob: 32px;
  --st-lh-h5-mob: 30px;
  --st-lh-h6-mob: 24px;
}

.trendss .trends__left {
  position: relative;
}
.trendss .trends__left img {
  width: 100%;
  height: auto;
}
.trendss .trends__left .trends__features-common {
  border: 2px dotted #fff;
  width: 50px;
  height: 50px;
  color: #000;
  border-radius: 50%;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.trendss .trends__left .trends__features-common .list-item {
  background: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all ease-in-out 0.3s;
}
.trendss .trends__left .trends__features-common .list-item:hover {
  background: var(--st-theme-1);
  color: #fff;
}
@media (max-width: 575.98px) {
  .trendss .trends__left .trends__features-common {
    display: none;
  }
}
.trendss .trends__left .trends__features-1 {
  top: 215px;
  right: 140px;
}
.trendss .trends__left .trends__features-2 {
  bottom: 275px;
  right: 50%;
}
.trendss .trends__left .trends__features-3 {
  bottom: 55px;
  right: 50%;
  margin-right: 110px;
}
.trendss .trends__left .trends__features-1:hover .p-relative .overlay__trends-1 {
  opacity: 1 !important;
  border-radius: 12px;
}
.trendss .trends__left .trends__features-2:hover .p-relative .overlay__trends-2 {
  opacity: 1 !important;
  border-radius: 12px;
}
.trendss .trends__left .trends__features-3:hover .p-relative .overlay__trends-3 {
  opacity: 1 !important;
  border-radius: 12px;
}
.trendss .trends__left .overlay__trends-common {
  position: absolute;
  opacity: 0;
  transition: all ease-in 0.3s;
}
.trendss .trends__left .overlay__trends-common img {
  width: 140px;
  height: 140px;
  background: #E6E9F0;
}
.trendss .trends__left .overlay__trends-common .trends__author-overlay {
  text-align: center;
  width: 140px;
  background: #fff;
  padding: 4px 19px;
}
.trendss .trends__left .overlay__trends-common .trends__author-overlay h6 {
  font-size: 14px;
  line-height: 20px;
  margin: 0;
}
.trendss .trends__left .overlay__trends-common .trends__author-overlay p {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: var(--st-theme-1);
  margin: 0;
}
.trendss .trends__left .overlay__trends-common .triangle-down {
  width: 0;
  height: 0;
  border-left: 15px solid rgba(0, 0, 0, 0);
  border-right: 15px solid rgba(0, 0, 0, 0);
  border-top: 15px solid #fff;
  margin: 0 auto;
}
@media (max-width: 575.98px) {
  .trendss .trends__left .overlay__trends-common {
    display: none;
  }
}
.trendss .trends__left .overlay__trends-1 {
  bottom: 20px;
  right: -50px;
}
.trendss .trends__left .overlay__trends-2 {
  bottom: 20px;
  right: -50px;
}
.trendss .trends__left .overlay__trends-3 {
  bottom: 20px;
  right: -50px;
}
@media (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px), only screen and (min-width: 768px) and (max-width: 991.98px) {
  .trendss .trends__right {
    margin-top: 40px;
  }
}
.trendss .trends__right .section__title {
  margin-bottom: 40px;
}
.trendss .trends__right .section__title span {
  font-size: 22px;
  margin-bottom: 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .trendss .trends__right .section__title {
    margin-bottom: 0;
  }
  .trendss .trends__right .section__title h3 {
    font-size: 32px;
  }
}
.trendss .trends__right .not-group-product {
  flex-direction: column;
  justify-content: left;
  align-items: flex-start;
  padding: 30px;
}
.trendss .trends__right .not-group-product.trending__product {
  align-items: flex-start;
}
.trendss .trends__right .trending__product {
  align-items: center;
  background: #FAFAFB;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 28px;
}
.trendss .trends__right .trending__product:hover .indexing {
  bottom: -15px;
}
.trendss .trends__right .trending__product .indexing {
  right: 0;
  bottom: -35px;
  transition: all ease-in 0.3s;
}
.trendss .trends__right .trending__product .indexing h2 {
  font-size: 80px;
  font-style: normal;
  font-weight: 600;
  line-height: 100px;
  color: #F3F3F4;
  transform: rotate(-20deg);
}
@media (max-width: 420px) {
  .trendss .trends__right .trending__product .indexing h2 {
    font-size: 60px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .trendss .trends__right .trending__product .indexing h2 {
    font-size: 60px;
  }
}
.trendss .trends__right .trending__product .trending__img {
  width: 144px;
  height: 165px;
  background: #F2F4F7;
}
.trendss .trends__right .trending__product .trending__img img {
  width: 100%;
}
.trendss .trends__right .trending__product .trending__details {
  padding-left: 24px;
}
.trendss .trends__right .trending__product .trending__details h6 {
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 8px;
}
.trendss .trends__right .trending__product .trending__details span {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.trendss .trends__right .trending__product .trending__details .price {
  font-size: 18px;
  margin-top: 8px;
  font-style: normal;
  font-weight: 600;
  color: var(--st-theme-1);
}
.trendss .trends__right .current__price {
  color: #F04A00;
}
.trendss .trends__right .old__price {
  text-decoration: line-through;
  margin-left: 10px;
}
.trendss .trends__right .buy__all {
  padding-top: 25px;
}
.trendss .trends__right .buy__all .explore__btn-2 {
  padding: 16px 48px;
  text-align: center;
}

.cta_wapper_2 {
  padding: 0px;
}
.cta_wapper_2 .cta__v2 {
  background-repeat: no-repeat;
  background-position: top left;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .cta_wapper_2 .cta__v2 .cta-subs {
    padding: 30px 0;
  }
}
.cta_wapper_2 .cta__v2 .cta-subs .cta__content .cta__title h3 {
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 60px;
}
.cta_wapper_2 .cta__v2 .cta-subs .cta__content p {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  color: #70747d;
  margin: 0;
  padding-bottom: 28px;
  padding-top: 10px;
}
.cta_wapper_2 .cta__v2 .cta-subs .cta__content .cta__subscribe {
  position: relative;
}
.cta_wapper_2 .cta__v2 .cta-subs .cta__content .cta__subscribe input {
  border-radius: 12px;
  border: 1px solid #E6E9F0;
  width: 100%;
  background-color: #FAFAFB;
  padding-right: 200px;
}
@media (max-width: 575.98px) {
  .cta_wapper_2 .cta__v2 .cta-subs .cta__content .cta__subscribe input {
    padding-right: 15px;
  }
}
.cta_wapper_2 .cta__v2 .cta-subs .cta__content .cta__subscribe .subscribe__btn {
  width: 164px;
  height: 54px;
  border-radius: 0px 12px 12px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--st-theme-1);
  padding: 5px 15px;
  font-weight: 600;
  transition: all ease 0.3s;
  border: 1px solid var(--st-theme-1);
  position: absolute;
  top: 0;
  right: 0;
}
.cta_wapper_2 .cta__v2 .cta-subs .cta__content .cta__subscribe .subscribe__btn:hover {
  color: var(--st-theme-1);
  background: var(--st-common-white);
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .cta_wapper_2 .cta__v2 .cta-subs .cta__content .cta__subscribe .subscribe__btn {
    width: 110px;
    font-size: 14px;
  }
}
.cta_wapper_2 .cta__v2 .cta__img {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.cta_wapper_2 .cta__v2 .cta__img::before {
  position: absolute;
  content: "";
  width: 390px;
  height: 390px;
  background: #E6E9F0;
  border-radius: 415px;
  bottom: -50px;
  right: 125px;
  z-index: -1;
}
.cta_wapper_2 .cta__v2 .cta__img img {
  width: 80%;
  z-index: 9;
}
.cta_wapper_2 .cta__v2 .cta__img .updatee__text h2 {
  font-size: 100px;
  font-style: normal;
  font-weight: 700;
  line-height: 100px;
  color: #fff;
  position: absolute;
  top: 0;
  z-index: -2;
}

.comming__soon-v2 {
  background: #FAFAFB;
  padding-bottom: 5rem;
  padding-top: 5rem;
  position: relative;
  margin: 7rem 0;
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .comming__soon-v2 {
    padding: 50px 0;
    margin: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .comming__soon-v2 {
    margin: 0;
  }
}
.comming__soon-v2 .product-img-slider {
  position: relative;
}
@media (min-width: 575px) {
  .comming__soon-v2 .product-img-slider {
    display: none;
  }
}
@media (max-width: 575.98px) {
  .comming__soon-v2 .product-img-slider {
    display: block;
    padding-bottom: 40px;
  }
}
.comming__soon-v2 .right__image {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  text-align: end;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .comming__soon-v2 .right__image {
    transform: unset;
    top: unset;
    bottom: 0;
  }
}
@media(max-width: 575.98px) {
  .comming__soon-v2 .right__image {
    display: none;
  }
}
.comming__soon-v2 .right__image img {
  max-width: 592px;
  width: 100%;
  height: 828px;
  object-fit: cover;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .comming__soon-v2 .right__image img {
    max-width: 450px;
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .comming__soon-v2 .right__image img {
    height: 650px;
    width: 700px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px) {
  .comming__soon-v2 .right__image img {
    height: 650px;
    width: 70%;
  }
}
.comming__soon-v2 .right-area {
  position: relative;
}
@media (max-width: 575.98px) {
  .comming__soon-v2 .right-area {
    display: flex;
  }
  .comming__soon-v2 .right-area .overlay__wrappers {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .comming__soon-v2 .upcoming__wrapper {
    padding-bottom: 110px;
  }
}
.comming__soon-v2 .overlay__wrappers {
  position: absolute;
  top: 50%;
  left: 70px;
  transform: translateY(-50%);
}
@media ((min-width: 1400px) and (max-width: 1570px)) {
  .comming__soon-v2 .overlay__wrappers {
    left: 0;
  }
}
@media ((min-width: 992px) and (max-width: 1130px)) {
  .comming__soon-v2 .overlay__wrappers {
    left: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .comming__soon-v2 .overlay__wrappers {
    position: unset;
    transform: unset;
  }
}
.comming__soon-v2 .overlay__wrappers .overlay__pro {
  max-width: 392px;
}
.comming__soon-v2 .overlay__wrappers .overlay__pro .image-container {
  background: #FEF6F2;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.comming__soon-v2 .overlay__wrappers .overlay__pro img {
  width: 360px;
  height: 400px;
  border-radius: 12px 12px 0px 0px;
}
@media (max-width: 350px) {
  .comming__soon-v2 .overlay__wrappers .overlay__pro img {
    height: 350px;
  }
}
.comming__soon-v2 .overlay__wrappers .overlay__pro .pro__content {
  text-align: center;
  padding: 18px 40px;
  background: #fff;
  border-radius: 0 0 12px 12px;
}
.comming__soon-v2 .overlay__wrappers .overlay__pro .pro__content h6 {
  margin-top: 10px;
}
.comming__soon-v2 .upcoming__wrapper .section__title .main__title {
  font-size: 60px;
  font-style: normal;
  font-weight: 600;
  line-height: 80px;
  margin-bottom: 24px;
}
.comming__soon-v2 .upcoming__wrapper .section__title .sub__title {
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
  margin-bottom: 0;
}
.comming__soon-v2 .upcoming__wrapper p {
  margin-bottom: 40px;
}
.comming__soon-v2 .upcoming__wrapper .counters {
  margin-bottom: 40px;
}
.comming__soon-v2 .upcoming__wrapper .counters .count {
  width: 108px;
  border: 1px solid #E6E9F0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.comming__soon-v2 .upcoming__wrapper .counters .count h3 {
  margin: 0;
}
.comming__soon-v2 .upcoming__wrapper div .explore__btn-2 {
  display: inline-block !important;
  padding: 16px 44px !important;
}

.arrivals__tab {
  padding-bottom: 7rem;
  overflow: hidden;
}
.arrivals__tab .slider__btn--wrapper {
  position: relative;
  display: flex;
  margin-bottom: 65px;
}
.arrivals__tab .slider__btn--wrapper .swiper-button-nexts, .arrivals__tab .slider__btn--wrapper .swiper-button-prevs {
  display: block;
  position: absolute;
}
.arrivals__tab .slider__btn--wrapper .swiper-button-nexts i, .arrivals__tab .slider__btn--wrapper .swiper-button-prevs i {
  font-size: 20px;
  height: 40px;
  width: 40px;
  color: var(--st-theme-1);
  outline: 1px dashed var(--st-theme-1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
}
.arrivals__tab .slider__btn--wrapper .swiper-button-nexts::after, .arrivals__tab .slider__btn--wrapper .swiper-button-prevs::after {
  display: none;
}
.arrivals__tab .slider__btn--wrapper .swiper-button-nexts {
  right: 0;
}
.arrivals__tab .slider__btn--wrapper .swiper-button-prevs {
  left: 170px;
}
.arrivals__tab .tab__wrapper {
  display: flex;
}
.arrivals__tab .tab__wrapper .tab__btn {
  width: 250px;
}
.arrivals__tab .tab__wrapper .tab__btn ul li {
  margin-bottom: 28px;
}
.arrivals__tab .tab__wrapper .tab__btn ul li button {
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  color: #70747D;
  border-bottom: 1px solid #70747D;
  transition: all ease-in 0.3s;
}
.arrivals__tab .tab__wrapper .tab__btn ul li button:hover {
  color: var(--st-theme-1);
  border-bottom: 1px solid var(--st-theme-1);
}
.arrivals__tab .tab__wrapper .tab__btn ul .active {
  color: var(--st-theme-1);
  border-bottom: 1px solid var(--st-theme-1);
}
.arrivals__tab .tab__wrapper .tab__contents {
  width: 100%;
  margin-left: 200px;
}
.arrivals__tab .tab__wrapper .tab__contents .tab__product .f__product-img {
  background: #f8f8f8;
  text-align: center;
  position: relative;
}
.arrivals__tab .tab__wrapper .tab__contents .tab__product .f__product-img:hover .overlay {
  opacity: 1;
}
.arrivals__tab .tab__wrapper .tab__contents .tab__product .f__product-img .base {
  font-size: 14px;
  background: var(--st-heading-primary);
  width: 100px;
  color: #fff;
  position: absolute;
  border-radius: 4px;
  top: 20px;
  left: 20px;
  z-index: 9;
  opacity: 9;
}
.arrivals__tab .tab__wrapper .tab__contents .tab__product .f__product-img .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(194, 202, 218, 0.4078431373);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.arrivals__tab .tab__wrapper .tab__contents .tab__product .f__product-img .overlay .icons {
  position: absolute;
  bottom: 40px;
}
.arrivals__tab .tab__wrapper .tab__contents .tab__product .f__product-img .overlay i {
  font-size: 27px;
  height: 50px;
  width: 50px;
  background: var(--st-common-white);
  vertical-align: middle;
  line-height: 50px;
  color: var(--st-theme-1);
  font-weight: 400;
  margin: 0 4px;
  border-radius: 3px;
}
.arrivals__tab .tab__wrapper .tab__contents .tab__product .f__product-img .overlay i:hover {
  background-color: var(--st-theme-1);
  color: var(--st-common-white);
}
.arrivals__tab .tab__wrapper .tab__contents .tab__product .f__product-img .img-fluid {
  width: 90% !important;
}

.shipping__info-v2 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.shipping__info-v2 .shiping {
  padding: 35px 85px;
  border-width: 1px 1px 1px 0;
  border-color: #E6E9F0;
  border-style: solid;
}
.shipping__info-v2 .shiping .free__shipping {
  border: none;
}
.shipping__info-v2 .shiping .free__shipping:hover {
  border: none;
}

.image-container .gallery-slide {
  text-align: center;
  display: none;
}

.image-container .gallery-slide.active {
  display: block;
}

.image-container .gallery-slide-phone {
  text-align: center;
  display: none;
}

.image-container .gallery-slide-phone.active {
  display: block;
}

:root {
  /**
  @font family declaration
  */
  --st-ff-body: 'Poppins', sans-serif;
  --st-ff-heading: 'Poppins', sans-serif;
  --st-ff-p: 'Poppins', sans-serif;
  --st-ff-menu: 'Poppins', sans-serif;
  --st-ff-button: 'Poppins', sans-serif;
  --st-ff-fontawesome: "Font Awesome 6 Pro";
  /**
  @color declaration
  */
  --st-common-white: #ffffff;
  --st-common-black: #000;
  --st-common-black2: #111827;
  --st-common-star: #fdb022;
  --st-heading-primary: #002366;
  --st-grey-1: #70747D;
  --st-grey-2: #414652;
  --st-text-body: #70747D;
  --st-text-1: #70747D;
  --st-text-top-header: #f5ba68;
  --st-text-top-header-hover: #f04a00;
  --st-text-menu: #ffffff;
  --st-text-menu-hover: #f04a00;
  --st-text-link: #f04a00;
  --st-text-link-hover: #002366;
  --st-text-button: #ffffff;
  --st-text-btn-hover: #f04a00;
  --st-text-price: #a0a3a9;
  --st-text-sale-price: #F04A00;
  --st-text-topmenu: #F2F4F7;
  --st-text-topmenu-hover: #70747d;
  --st-text-stock: #5fa745;
  --st-text-onsale: #70747d;
  --st-text-rating: #f04a00;
  --st-theme-1: #F04A00;
  --st-theme-2: #002366;
  --st-theme-primary: #f04a00;
  --st-theme-secondery: #002366;
  --st-theme-top-header: #111827;
  --st-theme-button: #f04a00;
  --st-theme-btn-hover: #ffffff;
  --st-theme-onsale: #ffffff;
  --st-border-1: #000;
  --st-border-button: #F04A00;
  --st-border-btn-hover: #F04A00;
  /**
  @font weight declaration
  */
  --st-fw-normal: normal;
  --st-fw-elight: 200;
  --st-fw-light: 300;
  --st-fw-regular: 400;
  --st-fw-medium: 500;
  --st-fw-sbold: 600;
  --st-fw-bold: 700;
  --st-fw-ebold: 800;
  --st-fw-black: 900;
  --st-fw-heading: 600;
  --st-fw-button: 600;
  --st-fw-menu: 500;
  /**
  @font size declaration
  */
  --st-fz-body: 18px;
  --st-fz-p: 18px;
  --st-fz-h1: 80px;
  --st-fz-h2: 60px;
  --st-fz-h3: 48px;
  --st-fz-h4: 32px;
  --st-fz-h5: 24px;
  --st-fz-h6: 20px;
  --st-fz-button: 18px;
  --st-fz-menu: 18px;
  --st-fz-mob-h1: 48px;
  --st-fz-mob-h2: 38px;
  --st-fz-mob-h3: 28px;
  --st-fz-mob-h4: 24px;
  --st-fz-mob-h5: 22px;
  --st-fz-mob-h6: 20px;
  --st-fz-tab-body: 18px;
  --st-fz-tab-h1: 65px;
  --st-fz-tab-h2: 50px;
  --st-fz-tab-h3: 46px;
  --st-fz-tab-h4: 42px;
  --st-fz-tab-h5: 34px;
  --st-fz-tab-h6: 30px;
  /**
  @line height declaration
  */
  --st-lh-body: 20px;
  --st-lh-h1: 90px;
  --st-lh-h2: 70px;
  --st-lh-h3: 58px;
  --st-lh-h4: 42px;
  --st-lh-h5: 34px;
  --st-lh-h6: 30px;
  --st-lh-button: 28px;
  --st-lh-h1-tab: 75px;
  --st-lh-h2-tab: 60px;
  --st-lh-h3-tab: 48px;
  --st-lh-h4-tab: 38px;
  --st-lh-h5-tab: 34px;
  --st-lh-h6-tab: 28px;
  --st-lh-h1-mob: 58px;
  --st-lh-h2-mob: 48px;
  --st-lh-h3-mob: 34px;
  --st-lh-h4-mob: 32px;
  --st-lh-h5-mob: 30px;
  --st-lh-h6-mob: 24px;
}

.simple__btn-v3 {
  color: var(--st-theme-1);
}

.view__btn-v3 {
  color: var(--st-theme-1);
  background: var(--st-common-white);
  padding: 10px 24px;
  font-weight: 600;
  border-radius: 7px;
  font-size: 18px;
  line-height: 28px;
  margin-top: 15px;
  border: 1px solid var(--st-theme-1);
}
@media (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .view__btn-v3 {
    font-size: 14px;
    width: 102px;
  }
}
.view__btn-v3:hover {
  color: var(--st-heading-primary);
}

.shop__now-small-btn {
  color: #fff;
  background: var(--st-theme-1);
  padding: 4px 16px;
  font-weight: 600;
  border-radius: 7px;
  font-size: 18px;
  line-height: 28px;
  margin-top: 15px;
}
@media (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .shop__now-small-btn {
    font-size: 14px;
    width: 102px;
  }
}
.shop__now-small-btn:hover {
  color: var(--st-heading-primary);
}

.shop__btn-v3 {
  background-color: var(--st-theme-1);
  color: var(--st-common-white);
  border: 1px solid var(--st-theme-1);
  font-size: 18px;
  line-height: 27px;
  padding: 12px 36px;
  font-weight: 600;
  border-radius: 7px;
  transition: border 0.4s ease-in-out, color 0.4s ease-in-out, background-color 0.4s ease-in-out !important;
}
.shop__btn-v3:hover {
  border-color: var(--st-theme-1);
  background-color: var(--st-common-white);
  color: var(--st-theme-1);
}

.view__categories-btn {
  color: #fff;
  background: var(--st-common-white);
  padding: 16px 44px;
  font-weight: 600;
  border-radius: 7px;
  font-size: 18px;
  line-height: 28px;
  margin-top: 15px;
  color: var(--st-theme-1);
  border: 1px solid var(--st-theme-1);
}
@media (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .view__categories-btn {
    font-size: 14px;
    width: 102px;
  }
}
.view__categories-btn:hover {
  color: var(--st-common-white);
  background: var(--st-theme-1);
}

.discount__banner .discount__banner-wrapper {
  padding: 80px 60px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .discount__banner .discount__banner-wrapper {
    padding: 40px 30px;
  }
}
.discount__banner .discount__banner-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.discount__banner .discount__banner-wrapper > * {
  position: relative;
  z-index: 2;
}
.discount__banner .discount__banner-wrapper h4 {
  margin: 0px;
}
.discount__banner .discount__banner-wrapper p {
  width: 52%;
  color: #70747D;
  font-weight: 400;
  margin-top: 0px;
  margin-bottom: 0px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .discount__banner .discount__banner-wrapper p {
    width: 70%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .discount__banner .discount__banner-wrapper p {
    width: 80%;
  }
}
.discount__banner .shop__now-small-btn {
  margin-top: 0;
  transition: background 0.3s ease, color 0.3s ease;
}
.discount__banner .shop__now-small-btn:hover {
  color: var(--st-heading-primary);
  background: var(--st-common-white);
}

.category-v3 .cat__title {
  margin-bottom: 70px;
}
.category-v3 .cat__title .section__title span {
  margin-bottom: 16px;
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .category-v3 .cat__title .view__categories-btn-wrapper {
    text-align: start !important;
  }
}
.category-v3 .cat__v3-wrapper .cat__3 {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
  padding: 20px;
  border-radius: 8px;
  min-height: 135px;
}
.category-v3 .cat__v3-wrapper .cat__3 .cat__3-img {
  margin-top: -40px;
}
.category-v3 .cat__v3-wrapper .cat__3 .cat__3-img img {
  max-width: 112px;
  width: 100%;
  height: 110px;
  border-radius: 4px;
}
.category-v3 .cat__v3-wrapper .cat__3 .cat__3-name {
  margin-left: 20px;
}
.category-v3 .cat__v3-wrapper .cat__3 .cat__3-name h6 {
  margin-bottom: 8px;
}
.category-v3 .cat__v3-wrapper .cat__3 .cat__3-name span {
  color: #70747D;
}

.blog__v3 .blog__v3-wrapper .single__blog {
  margin-right: 40px;
}
@media (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px), only screen and (min-width: 768px) and (max-width: 991.98px) {
  .blog__v3 .blog__v3-wrapper .single__blog {
    margin-right: unset;
  }
}
.blog__v3 .blog__v3-wrapper .single__blog .blog__image {
  position: relative;
}
.blog__v3 .blog__v3-wrapper .single__blog .blog__image img {
  max-width: 404px;
  width: 100%;
  min-height: 444px;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
}
@media (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px), only screen and (min-width: 768px) and (max-width: 991.98px) {
  .blog__v3 .blog__v3-wrapper .single__blog .blog__image img {
    max-width: unset;
    width: 100%;
  }
}
.blog__v3 .blog__v3-wrapper .single__blog .blog__image .blog__v3-content {
  position: absolute;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
  background: #fff;
  border-radius: 8px;
  padding: 30px 28px;
  width: 80%;
  bottom: 20px;
  right: -30px;
}
@media (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px), only screen and (min-width: 768px) and (max-width: 991.98px) {
  .blog__v3 .blog__v3-wrapper .single__blog .blog__image .blog__v3-content {
    right: unset;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 575.98px) {
  .blog__v3 .blog__v3-wrapper .single__blog .blog__image .blog__v3-content {
    width: 95%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .blog__v3 .blog__v3-wrapper .single__blog .blog__image .blog__v3-content {
    width: 100%;
  }
}
@media (max-width: 387px) {
  .blog__v3 .blog__v3-wrapper .single__blog .blog__image .blog__v3-content {
    bottom: 5px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .blog__v3 .blog__v3-wrapper .single__blog .blog__image .blog__v3-content {
    padding: 20px;
  }
}
@media (min-width: 1420px) and (max-width: 1690px) {
  .blog__v3 .blog__v3-wrapper .single__blog .blog__image .blog__v3-content {
    width: 98%;
  }
}
@media (min-width: 1400px) and (max-width: 1420px) {
  .blog__v3 .blog__v3-wrapper .single__blog .blog__image .blog__v3-content {
    width: 100%;
  }
}
.blog__v3 .blog__v3-wrapper .single__blog .blog__image .blog__v3-content .date__author {
  margin-bottom: 8px;
  align-items: center;
}
.blog__v3 .blog__v3-wrapper .single__blog .blog__image .blog__v3-content .date__author .date p {
  margin: 0;
  font-size: 18px;
  color: #70747D;
  padding-left: 8px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .blog__v3 .blog__v3-wrapper .single__blog .blog__image .blog__v3-content .date__author .date p {
    font-size: 14px;
  }
}
.blog__v3 .blog__v3-wrapper .single__blog .blog__image .blog__v3-content .date__author .author {
  margin-left: 56px;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .blog__v3 .blog__v3-wrapper .single__blog .blog__image .blog__v3-content .date__author .author {
    font-size: 14px;
  }
}
.blog__v3 .blog__v3-wrapper .single__blog .blog__image .blog__v3-content .date__author .author::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  background: #A0A3A9;
  border-radius: 50%;
  left: -15px;
  top: 9px;
}
@media (max-width: 420px) {
  .blog__v3 .blog__v3-wrapper .single__blog .blog__image .blog__v3-content .date__author .author {
    margin-left: 18px;
  }
}
@media (max-width: 420px) {
  .blog__v3 .blog__v3-wrapper .single__blog .blog__image .blog__v3-content .date__author {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.blog__v3 .blog__v3-wrapper .single__blog .blog__image .blog__v3-content .blog__title {
  margin-bottom: 20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .blog__v3 .blog__v3-wrapper .single__blog .blog__image .blog__v3-content .blog__title {
    font-size: 20px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .blog__v3 .blog__v3-wrapper .single__blog .blog__image .blog__v3-content .simple__btn-v3 {
    font-size: 14px;
  }
}

.slider__v3 {
  background: #FAFAFB;
  padding: 0;
}
@media (max-width: 1200px) {
  .slider__v3 .left-banner-slider {
    display: none;
  }
}
.slider__v3 .slider__main-wrapper {
  background-position: top right, bottom right !important;
  background-repeat: no-repeat, no-repeat !important;
  max-height: 800px;
  height: 100%;
}
@media (max-width: 575.98px) {
  .slider__v3 .slider__main-wrapper {
    flex-direction: column;
    max-height: 1130px;
  }
}
.slider__v3 .slider__main-wrapper .slider__left-image {
  width: 30%;
  z-index: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .slider__v3 .slider__main-wrapper .slider__left-image {
    width: 0;
  }
}
.slider__v3 .slider__main-wrapper .slider__left-image img {
  width: 100%;
  max-height: 800px;
  height: 100%;
}
.slider__v3 .slider__main-wrapper .slider__middle-wrapper {
  width: 42%;
  padding: 100px 80px;
  position: relative;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .slider__v3 .slider__main-wrapper .slider__middle-wrapper {
    padding: 0;
  }
}
@media (max-width: 575.98px) {
  .slider__v3 .slider__main-wrapper .slider__middle-wrapper {
    width: 100%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .slider__v3 .slider__main-wrapper .slider__middle-wrapper {
    width: 60%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 70px 20px;
    height: 590px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px) {
  .slider__v3 .slider__main-wrapper .slider__middle-wrapper {
    padding: 30px 20px;
  }
}
@media (max-width: 575.98px) {
  .slider__v3 .slider__main-wrapper .slider__middle-wrapper {
    width: 100% !important;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 50px 20px;
    height: 590px;
  }
}
.slider__v3 .slider__main-wrapper .slider__middle-wrapper .swiper-slide {
  display: unset;
}
.slider__v3 .slider__main-wrapper .slider__middle-wrapper .section__title .sub__title {
  margin-bottom: 16px;
}
.slider__v3 .slider__main-wrapper .slider__middle-wrapper .section__title p {
  margin-bottom: 40px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .slider__v3 .slider__main-wrapper .slider__middle-wrapper .section__title p {
    margin-bottom: 15px;
  }
}
.slider__v3 .slider__main-wrapper .slider__middle-wrapper .section__title .heroBtn__wrapper {
  justify-content: left;
}
.slider__v3 .slider__main-wrapper .slider__middle-wrapper .section__title .heroBtn__wrapper .shop__btn-v3 {
  margin-right: 40px;
  display: inline-block;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .slider__v3 .slider__main-wrapper .slider__middle-wrapper .section__title .heroBtn__wrapper .shop__btn-v3 {
    margin-right: 20px;
  }
}
.slider__v3 .slider__main-wrapper .slider__middle-wrapper .section__title .heroBtn__wrapper .video-btn {
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .slider__v3 .slider__main-wrapper .slider__middle-wrapper .section__title .heroBtn__wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
  .slider__v3 .slider__main-wrapper .slider__middle-wrapper .section__title .heroBtn__wrapper .video-btn {
    margin-top: 30px;
  }
}
@media (min-width: 768px) and (max-width: 781px) {
  .slider__v3 .slider__main-wrapper .slider__middle-wrapper .section__title .heroBtn__wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
  .slider__v3 .slider__main-wrapper .slider__middle-wrapper .section__title .heroBtn__wrapper .video-btn {
    margin-top: 30px;
  }
}
@media (min-width: 1200px) and (max-width: 1350px) {
  .slider__v3 .slider__main-wrapper .slider__middle-wrapper .section__title .heroBtn__wrapper {
    margin-top: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .slider__v3 .slider__main-wrapper .slider__middle-wrapper .section__title .heroBtn__wrapper {
    margin-top: 50px;
  }
}
.slider__v3 .slider__main-wrapper .slider__middle-wrapper .section__title .heroBtn__wrapper .simple__button {
  color: #70747D;
  font-weight: 600;
  margin-right: 12px;
}
.slider__v3 .slider__main-wrapper .slider__middle-wrapper .section__title .heroBtn__wrapper .simple__button:hover {
  color: var(--st-theme-1);
}
.slider__v3 .slider__main-wrapper .slider__middle-wrapper .section__title .heroBtn__wrapper .play__btn {
  font-size: 45px;
  color: var(--st-theme-1);
  transition: 0.3s;
}
.slider__v3 .slider__main-wrapper .slider__middle-wrapper .slider__paginations {
  background-repeat: no-repeat !important;
  background-size: cover !important;
  width: 244px;
  height: 144px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  bottom: 20px;
  cursor: pointer;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .slider__v3 .slider__main-wrapper .slider__middle-wrapper .slider__paginations {
    width: 190px;
    height: 100px;
    bottom: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .slider__v3 .slider__main-wrapper .slider__middle-wrapper .slider__paginations {
    width: 165px;
    height: 90px;
    bottom: 0;
  }
}
.slider__v3 .slider__main-wrapper .slider__middle-wrapper .slider__paginations .active__pagination {
  font-size: 81px;
  color: transparent;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.9), -1px -1px 0 rgba(255, 255, 255, 0.7), 1px -1px 0 rgba(255, 255, 255, 0.7), -1px 1px 0 rgba(255, 255, 255, 0.7), 0 0 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  line-height: 1;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .slider__v3 .slider__main-wrapper .slider__middle-wrapper .slider__paginations .active__pagination {
    font-size: 48px;
  }
}
.slider__v3 .slider__main-wrapper .slider__middle-wrapper .slider__paginations .upcomming__pagination {
  color: rgb(160, 163, 169);
}
.slider__v3 .slider__main-wrapper .slider__card-wrapper {
  position: relative;
  width: 28%;
}
@media (max-width: 575.98px) {
  .slider__v3 .slider__main-wrapper .slider__card-wrapper {
    display: none;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px) {
  .slider__v3 .slider__main-wrapper .slider__card-wrapper {
    width: 40%;
    margin-left: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px) {
  .slider__v3 .slider__main-wrapper .slider__card-wrapper {
    width: 40%;
    margin-left: 20px;
  }
}
@media (min-width: 1200px) and (max-width: 1350px) {
  .slider__v3 .slider__main-wrapper .slider__card-wrapper .progress-container {
    bottom: 30px;
    left: -100%;
    margin-left: 10px;
  }
}
@media (min-width: 1350px) and (max-width: 1500px) {
  .slider__v3 .slider__main-wrapper .slider__card-wrapper .progress-container {
    bottom: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px) {
  .slider__v3 .slider__main-wrapper .slider__card-wrapper .progress-container {
    bottom: 20px;
  }
}
.slider__v3 .slider__main-wrapper .slider__card-wrapper .slider__single-card .product-card {
  margin-right: 30px;
}
@media (max-width: 575.98px) {
  .slider__v3 .slider__main-wrapper .slider__card-wrapper .slider__single-card {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
  }
}
.slider__v3 .slider__main-wrapper .slider__card-wrapper .slider__single-card .card-wrapper {
  margin-right: 40px;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .slider__v3 .slider__main-wrapper .slider__card-wrapper .slider__single-card .card-wrapper {
    margin-right: 30px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .slider__v3 .slider__main-wrapper .slider__card-wrapper .slider__single-card .card-wrapper {
    margin-right: 20px;
  }
}
.slider__v3 .slider__main-wrapper .slider__card-wrapper .slider__single-card .card__image {
  margin-top: 120px;
  width: 100%;
  max-width: 340px;
}
@media (min-width: 1399px) and (max-width: 1670px) {
  .slider__v3 .slider__main-wrapper .slider__card-wrapper .slider__single-card .card__image {
    margin-top: 40px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .slider__v3 .slider__main-wrapper .slider__card-wrapper .slider__single-card .card__image {
    margin-top: 40px;
  }
}
.slider__v3 .slider__main-wrapper .slider__card-wrapper .slider__single-card .card__image img {
  background: #FEEDE6;
  width: 100%;
  max-width: 340px;
  height: 340px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}
.slider__v3 .slider__main-wrapper .slider__card-wrapper .slider__single-card .card__author {
  max-width: 340px;
  width: 100%;
  background: #fff;
  padding: 24px 32px;
  border-radius: 0px 0px 12px 12px;
}
@media (max-width: 575.98px) {
  .slider__v3 .slider__main-wrapper .slider__card-wrapper .slider__single-card .card__author {
    max-width: unset !important;
    width: 340px !important;
  }
}
.slider__v3 .slider__main-wrapper .slider__card-wrapper .slider__single-card .card__author span {
  font-size: 14px;
}
.slider__v3 .slider__main-wrapper .slider__card-wrapper .slider__single-card .card__author p {
  font-weight: 600;
  color: var(--st-heading-primary);
}
.slider__v3 .slider__main-wrapper .slider__card-wrapper .slider__single-card-2 {
  position: absolute;
  right: -202px;
  top: 65px;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .slider__v3 .slider__main-wrapper .slider__card-wrapper .slider__single-card-2 {
    right: -100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .slider__v3 .slider__main-wrapper .slider__card-wrapper .slider__single-card-2 {
    display: none;
  }
}
.slider__v3 #sliderContainer {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.slider__v3 .slider-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateX(100%);
  transition: transform 0.5s ease-in-out;
}
.slider__v3 .progress-bar {
  transition: width 0.5s ease-in-out;
}
.slider__v3 .section__title-slider {
  position: relative;
}
.slider__v3 .section__title-content {
  display: flex;
  overflow: hidden;
  position: relative;
  transition: transform 1s ease-in-out;
}
.slider__v3 .section__title.active {
  transform: translateX(0);
  opacity: 1;
}

.progress-container {
  width: 250px;
  height: 4px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  position: absolute;
  bottom: 60px;
}
@media (max-width: 575.98px) {
  .progress-container {
    width: 80%;
    bottom: -40px;
    left: 10%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px) {
  .progress-container {
    width: 200px;
  }
}

.progress-bar {
  height: 100%;
  background: rgb(240, 74, 0);
  border-radius: 2px;
  transition: width 0.5s ease-in-out;
  /* Smooth transition */
}

/* Add this CSS to your stylesheet */
@media (max-width: 1199px) {
  .slider__middle-wrapper {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}
@media (min-width: 1200px) and (max-width: 1520px) {
  .slider__middle-wrapper {
    padding: 50px 30px !important;
  }
}
@media (min-width: 1400px) and (max-width: 1630px) {
  .slider__middle-wrapper .slider__paginations {
    left: -208px !important;
    bottom: 0 !important;
    z-index: 1 !important;
  }
}
@media (min-width: 1400px) and (max-width: 1730px) {
  .slider__middle-wrapper .slider__paginations {
    bottom: 0 !important;
    height: 129px !important;
  }
}
@media (min-width: 1200px) {
  .slider__middle-wrapper {
    background-image: none !important;
  }
}
.slider__middle-wrapper.middle-background-visible {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 400px), (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .special__day-offer {
    padding-bottom: 70px;
  }
}
.special__day-offer .special__day-wrapper.remove-padding {
  padding-bottom: 0 !important;
}
.special__day-offer .special__day-wrapper {
  position: relative;
  padding-bottom: 380px;
}
@media (min-width: 991px) and (max-width: 1094px) {
  .special__day-offer .special__day-wrapper {
    padding-bottom: 450px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .special__day-offer .special__day-wrapper {
    padding-bottom: 350px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .special__day-offer .special__day-wrapper {
    padding-bottom: 370px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .special__day-offer .special__day-wrapper {
    padding-bottom: 450px;
  }
}
.special__day-offer .special__day-wrapper .img-wrapper img {
  width: 100%;
  height: 700px;
  object-fit: cover;
}
@media (max-width: 575.98px) {
  .special__day-offer .special__day-wrapper .img-wrapper img {
    height: 400px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), (max-width: 575.98px) {
  .special__day-offer .special__day-wrapper .offer-content {
    flex-direction: column-reverse;
  }
}
.special__day-offer .special__day-wrapper .tab__right-area {
  max-width: 700px;
  width: 100%;
  padding-left: 20px;
}
@media (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px), only screen and (min-width: 768px) and (max-width: 991.98px) {
  .special__day-offer .special__day-wrapper .tab__right-area {
    padding-left: 0;
  }
}
.special__day-offer .special__day-wrapper .tab__right-area .section__title-tab .sub__title {
  font-size: 24px;
  line-height: 32px;
  font-weight: 400;
  color: #414652;
  margin-bottom: 8px;
}
.special__day-offer .special__day-wrapper .tab__right-area .section__title-tab .main__title {
  color: #111827;
  font-weight: 400;
  margin-bottom: 24px;
  padding-bottom: 0 !important;
}
.special__day-offer .special__day-wrapper .tab__right-area p {
  color: #414652;
  margin-bottom: 0;
}
.special__day-offer .special__day-wrapper .tab__right-area .buttom__wrapper {
  margin: 32px 0;
}
@media (max-width: 400px), (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .special__day-offer .special__day-wrapper .tab__right-area .buttom__wrapper {
    position: absolute;
    bottom: -120px;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 400px), (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .special__day-offer .special__day-wrapper .tab__right-area .nav-button-wrapper {
    padding: 30px 0 0px 0;
  }
}
.special__day-offer .special__day-wrapper .tab__right-area .nav-button-wrapper ul {
  display: flex;
  justify-content: flex-start;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px), only screen and (min-width: 768px) and (max-width: 991.98px) {
  .special__day-offer .special__day-wrapper .tab__right-area .nav-button-wrapper ul {
    gap: 15px;
    margin-bottom: 20px;
  }
}
.special__day-offer .special__day-wrapper .tab__right-area .nav-button-wrapper ul .nav-link {
  position: relative;
  color: #111827;
  font-size: 32px;
  line-height: 40px;
  padding: 0 0 6px 0;
  transition: all 0.4s ease-in-out;
}
.special__day-offer .special__day-wrapper .tab__right-area .nav-button-wrapper ul .nav-link::after {
  content: "";
  background: #A57E60;
  width: 0%;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px), only screen and (min-width: 768px) and (max-width: 991.98px) {
  .special__day-offer .special__day-wrapper .tab__right-area .nav-button-wrapper ul .nav-link {
    font-size: 20px;
    line-height: 24px;
  }
}
.special__day-offer .special__day-wrapper .tab__right-area .nav-button-wrapper ul .nav-link.active {
  background: unset;
  color: #A57E60;
}
.special__day-offer .special__day-wrapper .tab__right-area .nav-button-wrapper ul .nav-link.active::after {
  width: 100%;
}
.special__day-offer .product__tab-carosel {
  position: absolute;
  bottom: 0;
  left: 50%;
  max-width: 1292px;
  width: 100%;
  transform: translateX(-50%);
  margin-left: 70px;
}
@media (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px), only screen and (min-width: 768px) and (max-width: 991.98px) {
  .special__day-offer .product__tab-carosel {
    margin-left: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .special__day-offer .product__tab-carosel {
    margin-left: 30px;
  }
}
.special__day-offer .product__tab-carosel .tab__content-wrapper {
  display: flex;
  flex-direction: row;
  padding-bottom: 32px;
}
.special__day-offer .product__tab-carosel .tab__content-wrapper .product-image {
  position: relative;
  max-width: 404px;
  width: 100%;
  background: #F6F2EF;
}
@media (max-width: 400px), (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .special__day-offer .product__tab-carosel .tab__content-wrapper .product-image {
    margin: 0 auto;
  }
}
.special__day-offer .product__tab-carosel .tab__content-wrapper .product-image span {
  position: absolute;
  top: 24px;
  left: 24px;
  background: #111827;
  color: #fff;
  font-size: 14px;
  line-height: 20px;
  padding: 4px 16px;
}
.special__day-offer .product__tab-carosel .tab__content-wrapper .product-image img {
  width: 100%;
  height: 480px;
  object-fit: contain;
}
@media (max-width: 575.98px) {
  .special__day-offer .product__tab-carosel .tab__content-wrapper .product-image img {
    height: 360px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .special__day-offer .product__tab-carosel .tab__content-wrapper .product-image img {
    height: 400px;
  }
}
.special__day-offer .product__tab-carosel .tab__content-wrapper .product-info {
  text-align: center;
  padding: 20px 10px;
  max-width: 404px;
  width: 100%;
  background: var(--st-common-white);
}
@media (max-width: 400px), (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .special__day-offer .product__tab-carosel .tab__content-wrapper .product-info {
    margin: 0 auto;
  }
}
.special__day-offer .product__tab-carosel .tab__content-wrapper .product-info p {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  color: #414652;
}
.special__day-offer .product__tab-carosel .tab__content-wrapper .product-info h5 {
  color: #111827;
  font-size: 24px;
  line-height: 32px;
  font-weight: 400;
  margin-top: 4px;
  margin-bottom: 8px;
}
.special__day-offer .product__tab-carosel .tab__content-wrapper .product-info .old-price {
  color: #70747D;
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  text-decoration: line-through;
}
.special__day-offer .product__tab-carosel .tab__content-wrapper .product-info .new-price {
  color: #111827;
  font-size: 24px;
  line-height: 32px;
  font-weight: 400;
}
@media (max-width: 400px), (max-width: 575.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .special__day-offer .product__tab-carosel .swiper-pagination {
    margin-top: 0;
  }
}
.special__day-offer .product__tab-carosel .swiper-pagination-bullet {
  color: #EDE5DF !important;
  width: 60px !important;
  height: 3px !important;
  border-radius: unset !important;
  transition: width 150ms ease-in-out;
}
@media (max-width: 575.98px) {
  .special__day-offer .product__tab-carosel .swiper-pagination-bullet {
    width: 10px !important;
    height: 3px !important;
  }
}
.special__day-offer .product__tab-carosel .swiper-pagination-bullet-active {
  width: 60px !important;
  height: 3px !important;
  background: #A57E60 !important;
  border-radius: unset !important;
}
@media (max-width: 575.98px) {
  .special__day-offer .product__tab-carosel .swiper-pagination-bullet-active {
    width: 10px !important;
    height: 3px !important;
  }
}
.special__day-offer .product__tab-carosel .swiper-horizontal > .swiper-pagination-bullets,
.special__day-offer .product__tab-carosel .swiper-pagination-bullets.swiper-pagination-horizontal,
.special__day-offer .product__tab-carosel .swiper-pagination-custom, .special__day-offer .product__tab-carosel .swiper-pagination-fraction {
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
}
.special__day-offer .product__tab-carosel .swiper-pagination-bullet:not(:last-child)::after {
  display: none;
}/*# sourceMappingURL=main.css.map */