@charset "UTF-8";
/* Media Queries */
/* Media Queries */

/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  overflow-x: hidden;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  -moz-osx-font-smoothing: grayscale;
  /* Firefox */
  -webkit-font-smoothing: antialiased;
  /* WebKit  */
}

body {
  margin: 0;
  color: var(--body-color);
  overflow-x: hidden;
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 26px;
}
@media only screen and (max-width: 480px) {
  body {
    font-size: 15px;
  }
}
@media only screen and (max-width: 375px) {
  body {
    font-size: 14px;
  }
}

h1 {
  font-size: 60px;
  line-height: 1.0833333333;
}

h2 {
  font-size: 36px;
  line-height: 1.4444444444;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  h2 {
    font-size: 30px;
  }
}
@media only screen and (max-width: 575.98px) {
  h2 {
    font-size: 27px;
  }
}
@media only screen and (max-width: 480px) {
  h2 {
    font-size: 26px;
  }
}
@media only screen and (max-width: 375px) {
  h2 {
    font-size: 24px;
  }
}

h3 {
  font-size: 28px;
  line-height: 1.0833333333;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  h3 {
    font-size: 26px;
  }
}
@media only screen and (max-width: 575.98px) {
  h3 {
    font-size: 25px;
  }
}
@media only screen and (max-width: 480px) {
  h3 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 375px) {
  h3 {
    font-size: 22px;
  }
}

h4 {
  font-size: 24px;
  line-height: 1.0833333333;
}
@media only screen and (max-width: 575.98px) {
  h4 {
    font-size: 23px;
  }
}
@media only screen and (max-width: 375px) {
  h4 {
    font-size: 21px;
  }
}

h5 {
  font-size: 20px;
  line-height: 1.2380952381;
}
@media only screen and (max-width: 375px) {
  h5 {
    font-size: 18px;
  }
}

h6 {
  font-size: 18px;
  line-height: 1.2380952381;
}
@media only screen and (max-width: 375px) {
  h6 {
    font-size: 16px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  margin: 0;
  -webkit-transition: 300ms;
  transition: 300ms;
}

p {
  color: var(--light-color);
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  margin-bottom: 0;
  line-height: 26px;
  font-size: 16px;
}

a {
  color: inherit;
  text-decoration: none;
  color: var(--extra-light-color);
  -webkit-transition: 300ms;
  transition: 300ms;
}

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

pre {
  word-break: break-word;
}

a i {
  padding: 0 2px;
}

img {
  max-width: 100%;
}

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

ul li {
  list-style: none;
}

ol {
  counter-reset: counter;
  padding-left: 0;
}

ol li {
  list-style: none;
}

ol li:before {
  counter-increment: counter;
  content: counter(counter);
  font-weight: 500;
  margin-right: 10px;
}

span {
  display: inline-block;
}

.desktop-center {
  text-align: center;
}

/* Chrome */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox  */
input[type=number] {
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
          appearance: textfield;
}

.form-control {
  width: 100%;
}

textarea {
  width: 100%;
  padding: 15px 15px 0;
}

/* Common Style */
.margin-0 {
  margin: 0 !important;
}

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

.radius-parcent-50 {
  border-radius: 50%;
}

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

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

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

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

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

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

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

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

.radius-0 {
  border-radius: 0px !important;
}

.no-shadow {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.single-border-top {
  border-top: 1px solid rgba(221, 221, 221, 0.3);
}

.single-border {
  border: 1px solid rgba(221, 221, 221, 0.5);
}

.color-light {
  color: var(--light-color) !important;
}

.color-extra-light {
  color: var(--extra-light-color) !important;
}

.color-heading {
  color: var(--heading-color);
}

.ff-jost {
  font-family: var(--jost-font) !important;
}

.ff-manrope {
  font-family: var(--manrope-font) !important;
}

.ff-roboto-slab {
  font-family: var(--roboto-slab-font) !important;
}

.section-bg-1 {
  background-color: var(--section-bg-1);
}

.section-bg-2 {
  background-color: var(--section-bg-2);
}

.section-bg-3 {
  background-color: var(--section-bg-3);
}

.section-bg-4 {
  background-color: var(--section-bg-4);
}

.section-bg-5 {
  background-color: var(--section-bg-5);
}

.section-bg-6 {
  background-color: var(--section-bg-6);
}

.color-one {
  color: var(--main-color-one);
}

.color-two {
  color: var(--main-color-two);
}

.color-three {
  color: var(--main-color-three);
}

.color-four {
  color: var(--main-color-four);
}

.color-five {
  color: var(--main-color-five);
}

.color-stock {
  color: var(--stock-color);
}

.review-color {
  color: var(--review-color);
}

.color-yellow {
  color: #FFBA5C;
}

.footer-bg {
  background: #f9f9f9;
}

.footer-bg-2 {
  background: #22232F;
}

.footer-bg-3 {
  background: #F7F7F6;
}

.shop-color-1 {
  background: #F83A26 !important;
}

.shop-color-2 {
  background: #30BB6F !important;
}

.shop-color-3 {
  background: #AB47BC !important;
}

.shop-color-4 {
  background: #FFC576 !important;
}

.shop-color-5 {
  background: #040B25 !important;
}

.shop-color-6 {
  background: #FF9800 !important;
}

.shop-color-7 {
  background: #FF695C !important;
}

.brand-bg-1 {
  background-color: #ED1C24;
}

.brand-bg-2 {
  background-color: #1B1B1B;
}

.brand-bg-3 {
  background-color: #F65B65;
}

.brand-bg-4 {
  background-color: #0088DD;
}

.brand-bg-5 {
  background-color: #FABE50;
}

.brand-bg-6 {
  background-color: #5AB27E;
}

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

.facebook-bg {
  background-color: #3b5999 !important;
}

.twitter-bg {
  background-color: #55acee !important;
}

.pintarest-bg {
  background-color: #c40014 !important;
}

.youtube-bg {
  background-color: #ff1544 !important;
}

.instagram-bg {
  background: -webkit-gradient(linear, left bottom, left top, from(#fea038), color-stop(#ff8841), color-stop(#ff704e), color-stop(#ff575f), color-stop(#ff3e71), color-stop(#fa3080), color-stop(#f12690), color-stop(#e523a0), color-stop(#d12dac), color-stop(#bb37b7), color-stop(#a140bf), to(#8347c5)) !important;
  background: linear-gradient(to top, #fea038, #ff8841, #ff704e, #ff575f, #ff3e71, #fa3080, #f12690, #e523a0, #d12dac, #bb37b7, #a140bf, #8347c5) !important;
}

.linkedin-bg {
  background-color: #326DE4 !important;
}

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

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

.no-margin {
  margin: 0;
}

.lazyloads {
  display: block;
}

.extra-padding-bottom {
  padding-bottom: 20px;
}

.desktop-reverse-margin-24 {
  margin: -24px 0 0;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .desktop-reverse-margin-24 {
    margin: unset;
  }
}

.border-1 {
  border: 1px solid rgba(221, 221, 221, 0.5);
}
.border-1.border-2px {
  border: 2px solid rgba(221, 221, 221, 0.5);
}
.border-1.border-3px {
  border: 3px solid rgba(221, 221, 221, 0.5);
}
.border-1.border-4px {
  border: 4px solid rgba(221, 221, 221, 0.5);
}
.border-1.border-5px {
  border: 5px solid rgba(221, 221, 221, 0.5);
}

.heading-title {
  font-size: 30px;
  line-height: 36px;
}
.heading-title:hover {
  color: var(--main-color-one);
}
.heading-title.hover-color-two:hover {
  color: var(--main-color-two);
}
.heading-title.hover-color-three:hover {
  color: var(--main-color-three);
}
.heading-title.hover-color-four:hover {
  color: var(--main-color-four);
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .heading-title {
    font-size: 26px;
  }
}
@media only screen and (max-width: 375px) {
  .heading-title {
    font-size: 24px;
  }
}

.common-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
  color: var(--heading-color-home-19);
}
@media only screen and (max-width: 767.98px) {
  .common-title {
    font-size: 22px;
    line-height: 32px;
  }
}
@media only screen and (max-width: 480px) {
  .common-title {
    font-size: 21px;
  }
}
@media only screen and (max-width: 375px) {
  .common-title {
    font-size: 20px;
  }
}
.common-title.white-color {
  color: #fff;
}
.common-title:hover {
  color: var(--main-color-one);
}
.common-title.hover-color-two:hover {
  color: var(--main-color-two);
}
.common-title.hover-color-three:hover {
  color: var(--main-color-three);
}
.common-title.hover-color-four:hover {
  color: var(--main-color-four);
}

.white-color {
  color: #fff;
}

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

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

.common-title-two {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
}
.common-title-two.white-color {
  color: #fff;
}
.common-title-two:hover {
  color: var(--main-color-one);
}
.common-title-two.hover-color-two:hover {
  color: var(--main-color-two);
}
.common-title-two.hover-color-three:hover {
  color: var(--main-color-three);
}
.common-title-two.hover-color-four:hover {
  color: var(--main-color-four);
}

.common-title-three {
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
}
.common-title-three.white-color {
  color: #fff;
}
.common-title-three:hover {
  color: var(--main-color-one);
}
.common-title-three.hover-color-two:hover {
  color: var(--main-color-two);
}
.common-title-three.hover-color-three:hover {
  color: var(--main-color-three);
}
.common-title-three.hover-color-four:hover {
  color: var(--main-color-four);
}

.common-para {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--extra-light-color);
}
.common-para.white-color {
  color: #fff;
}

.common-price-title {
  font-size: 28px;
  font-weight: 500;
  line-height: 40px;
}
.common-price-title.white-color {
  color: #fff;
}

.common-price-title-two {
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
}
.common-price-title-two.white-color {
  color: #fff;
}

.tab-content-item {
  display: none;
}

.tab-content-item.active {
  display: block;
  -webkit-animation: 1s fade-effects;
          animation: 1s fade-effects;
}

@-webkit-keyframes fade-effects {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes fade-effects {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
.slider-inner-margin .slick-slide {
  margin: 12px;
}
.slider-inner-margin .slick-list {
  margin: -12px;
}

.slider-inner-margin-10 .slick-slide {
  margin: 5px;
}
.slider-inner-margin-10 .slick-list {
  margin: -5px;
}

.slick-slider-items.margin-reverse-24 {
  margin: -24px 0 0;
}

.global-slick-init:hover.nav-style-three .prev-icon,
.global-slick-init:hover.nav-style-three .next-icon {
  visibility: visible;
  opacity: 1;
}
.global-slick-init.nav-style-three .prev-icon,
.global-slick-init.nav-style-three .next-icon {
  visibility: hidden;
  opacity: 0;
}

.nav-style-banner .prev-icon,
.nav-style-banner .next-icon {
  position: absolute;
  right: 50px;
  bottom: 250px;
  font-size: 22px;
  cursor: pointer;
  z-index: 99;
  background: none;
  color: var(--heading-color);
  -webkit-transition: 300ms;
  transition: 300ms;
}
.nav-style-banner .prev-icon:hover,
.nav-style-banner .next-icon:hover {
  color: var(--main-color-four);
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .nav-style-banner .prev-icon,
.nav-style-banner .next-icon {
    background-color: #fff;
    padding: 0 5px;
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    bottom: unset;
  }
}
@media only screen and (max-width: 575.98px) {
  .nav-style-banner .prev-icon,
.nav-style-banner .next-icon {
    top: auto;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    bottom: 60px;
    -webkit-transition: 300ms;
    transition: 300ms;
  }
}
.nav-style-banner .prev-icon {
  right: 80px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .nav-style-banner .prev-icon {
    right: auto;
    left: 20px;
  }
}

.append-feedback,
.append-team {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.append-feedback.append-color-one .prev-icon:hover,
.append-feedback.append-color-one .next-icon:hover,
.append-team.append-color-one .prev-icon:hover,
.append-team.append-color-one .next-icon:hover {
  border-color: var(--main-color-one);
  color: var(--main-color-one);
}
.append-feedback.append-color-three .prev-icon:hover,
.append-feedback.append-color-three .next-icon:hover,
.append-team.append-color-three .prev-icon:hover,
.append-team.append-color-three .next-icon:hover {
  border-color: var(--main-color-one);
  color: var(--main-color-one);
}
.append-feedback .prev-icon,
.append-feedback .next-icon,
.append-team .prev-icon,
.append-team .next-icon {
  font-size: 30px;
  cursor: pointer;
  border: 1px solid #DDD;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 50px;
  width: 50px;
  font-size: 22px;
  z-index: 9;
  color: var(--heading-color);
  -webkit-transition: 300ms;
  transition: 300ms;
}
.append-feedback .prev-icon:hover,
.append-feedback .next-icon:hover,
.append-team .prev-icon:hover,
.append-team .next-icon:hover {
  border-color: var(--main-color-two);
  color: var(--main-color-two);
}
.append-feedback .prev-icon,
.append-team .prev-icon {
  right: 55px;
}

.append-nav-one .prev-icon,
.append-nav-one .next-icon,
.append-nav-two .prev-icon,
.append-nav-two .next-icon,
.append-nav-three .prev-icon,
.append-nav-three .next-icon {
  position: absolute;
  right: 45px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 24px;
  cursor: pointer;
  z-index: 9;
  background: none;
  color: var(--heading-color);
  -webkit-transition: 300ms;
  transition: 300ms;
}
.append-nav-one .prev-icon:hover,
.append-nav-one .next-icon:hover,
.append-nav-two .prev-icon:hover,
.append-nav-two .next-icon:hover,
.append-nav-three .prev-icon:hover,
.append-nav-three .next-icon:hover {
  color: var(--main-color-one);
}
.append-nav-one .next-icon,
.append-nav-two .next-icon,
.append-nav-three .next-icon {
  left: auto;
  right: 15px;
}

.append-featured,
.append-flash,
.append-blog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.append-featured.append-color-one .prev-icon:hover,
.append-featured.append-color-one .next-icon:hover,
.append-flash.append-color-one .prev-icon:hover,
.append-flash.append-color-one .next-icon:hover,
.append-blog.append-color-one .prev-icon:hover,
.append-blog.append-color-one .next-icon:hover {
  border-color: var(--main-color-one);
  color: var(--main-color-one);
}
.append-featured.append-color-three .prev-icon:hover,
.append-featured.append-color-three .next-icon:hover,
.append-flash.append-color-three .prev-icon:hover,
.append-flash.append-color-three .next-icon:hover,
.append-blog.append-color-three .prev-icon:hover,
.append-blog.append-color-three .next-icon:hover {
  border-color: var(--main-color-one);
  color: var(--main-color-one);
}
.append-featured .prev-icon,
.append-featured .next-icon,
.append-flash .prev-icon,
.append-flash .next-icon,
.append-blog .prev-icon,
.append-blog .next-icon {
  font-size: 30px;
  cursor: pointer;
  border: 1px solid #DDD;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 50px;
  width: 50px;
  font-size: 22px;
  z-index: 9;
  color: var(--heading-color);
  -webkit-transition: 300ms;
  transition: 300ms;
}
.append-featured .prev-icon:hover,
.append-featured .next-icon:hover,
.append-flash .prev-icon:hover,
.append-flash .next-icon:hover,
.append-blog .prev-icon:hover,
.append-blog .next-icon:hover {
  border-color: var(--main-color-two);
  color: var(--main-color-two);
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .append-featured .prev-icon,
.append-featured .next-icon,
.append-flash .prev-icon,
.append-flash .next-icon,
.append-blog .prev-icon,
.append-blog .next-icon {
    height: 40px;
    width: 40px;
    font-size: 20px;
  }
}
@media only screen and (max-width: 375px) {
  .append-featured .prev-icon,
.append-featured .next-icon,
.append-flash .prev-icon,
.append-flash .next-icon,
.append-blog .prev-icon,
.append-blog .next-icon {
    height: 35px;
    width: 35px;
    font-size: 18px;
  }
}
.append-featured .prev-icon,
.append-flash .prev-icon,
.append-blog .prev-icon {
  right: 55px;
}

.nav-style-two {
  position: relative;
}
.nav-style-two.nav-color-two .prev-icon,
.nav-style-two.nav-color-two .next-icon {
  background: var(--main-color-two);
}
.nav-style-two.nav-color-two .prev-icon:hover,
.nav-style-two.nav-color-two .next-icon:hover {
  color: var(--main-color-two);
}
.nav-style-two.nav-color-three .prev-icon,
.nav-style-two.nav-color-three .next-icon {
  background: var(--main-color-three);
}
.nav-style-two.nav-color-three .prev-icon:hover,
.nav-style-two.nav-color-three .next-icon:hover {
  color: var(--main-color-three);
}
.nav-style-two.nav-color-four .prev-icon:hover,
.nav-style-two.nav-color-four .next-icon:hover {
  color: var(--main-color-four);
}
.nav-style-two .prev-icon,
.nav-style-two .next-icon {
  position: absolute;
  right: 35px;
  top: -78px;
  font-size: 30px;
  cursor: pointer;
  z-index: 9;
  background: none;
  color: var(--heading-color);
  -webkit-transition: 300ms;
  transition: 300ms;
}
.nav-style-two .prev-icon:hover,
.nav-style-two .next-icon:hover {
  color: var(--main-color-one);
}
.nav-style-two .next-icon {
  left: auto;
  right: 5px;
}

.nav-style-one {
  position: relative;
}
.nav-style-one.nav-color-two .prev-icon:hover,
.nav-style-one.nav-color-two .next-icon:hover {
  color: var(--main-color-two);
  border-color: var(--main-color-two);
}
.nav-style-one.nav-color-three .prev-icon:hover,
.nav-style-one.nav-color-three .next-icon:hover {
  color: var(--main-color-three);
  border-color: var(--main-color-three);
}
.nav-style-one:hover .prev-icon,
.nav-style-one:hover .next-icon {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(-50%) rotateY(0deg);
          transform: translateY(-50%) rotateY(0deg);
}
.nav-style-one .prev-icon,
.nav-style-one .next-icon {
  position: absolute;
  right: -25px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotateY(180deg);
          transform: translateY(-50%) rotateY(180deg);
  font-size: 24px;
  cursor: pointer;
  z-index: 9;
  background: #fff;
  border: 1px solid #ddd;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  -webkit-transition: 300ms;
  transition: 300ms;
  visibility: hidden;
  opacity: 0;
}
.nav-style-one .prev-icon:hover,
.nav-style-one .next-icon:hover {
  color: var(--main-color-one);
  border-color: var(--main-color-one);
}
@media (min-width: 1200px) and (max-width: 1880px) {
  .nav-style-one .prev-icon,
.nav-style-one .next-icon {
    right: -20px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .nav-style-one .prev-icon,
.nav-style-one .next-icon {
    right: -20px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .nav-style-one .prev-icon,
.nav-style-one .next-icon {
    right: -20px;
  }
}
@media only screen and (max-width: 575.98px) {
  .nav-style-one .prev-icon,
.nav-style-one .next-icon {
    right: 0;
    padding: 5px;
    text-align: center;
  }
}
.nav-style-one .prev-icon {
  right: auto;
  left: -20px;
}
@media (min-width: 1200px) and (max-width: 1880px) {
  .nav-style-one .prev-icon {
    left: -20px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .nav-style-one .prev-icon {
    left: -20px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .nav-style-one .prev-icon {
    left: -20px;
  }
}
@media only screen and (max-width: 575.98px) {
  .nav-style-one .prev-icon {
    left: 0;
  }
}

.dot-style-one.banner-dots .slick-dots li {
  height: 5px;
  width: 20px;
  display: block;
  border-radius: 0;
}
.dot-style-one.banner-dots .slick-dots li.slick-active {
  width: 40px;
  height: 5px;
}
.dot-style-one.banner-dots.dot-color-two .slick-dots li {
  background: #DDD;
}
.dot-style-one.banner-dots.dot-color-two .slick-dots li.slick-active {
  background: var(--main-color-two);
}
.dot-style-one.banner-dots.dot-color-three .slick-dots li.slick-active {
  background: var(--main-color-three);
}
.dot-style-one.dot-absolute .slick-dots {
  position: absolute;
  bottom: 30px;
  right: 0px;
}
@media only screen and (max-width: 480px) {
  .dot-style-one.dot-absolute .slick-dots {
    bottom: 20px;
  }
}
@media only screen and (max-width: 375px) {
  .dot-style-one.dot-absolute .slick-dots {
    bottom: 10px;
  }
}
.dot-style-one.dot-style-two .slick-dots li {
  height: 5px;
  width: 12px;
  border-radius: 0;
}
.dot-style-one.dot-style-two .slick-dots li.slick-active {
  background: var(--main-color-one);
  width: 35px;
  border-radius: 2px;
}
.dot-style-one.dot-style-three .slick-dots li {
  border-radius: 0;
}
.dot-style-one.dot-color-two .slick-dots li {
  background-color: #DDD;
}
.dot-style-one.dot-color-two .slick-dots li.slick-active {
  background: var(--main-color-two);
}
.dot-style-one.dot-color-three .slick-dots li.slick-active {
  background: var(--main-color-three);
}
.dot-style-one.dot-color-four .slick-dots li.slick-active {
  background: var(--main-color-four);
}
.dot-style-one .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px;
  padding: 10px 0 0;
}
.dot-style-one .slick-dots li {
  text-indent: -9999px;
  height: 10px;
  width: 10px;
  background: #DDD;
  border-radius: 50%;
  display: inline-block;
  margin: 0 5px;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.dot-style-one .slick-dots li.slick-active {
  background: var(--main-color-one);
}
.dot-style-one .slick-dots li button {
  border: 0;
  outline: none;
}

.body-overlay-desktop {
  position: fixed;
  height: 100vh;
  width: 100%;
  top: 0;
  left: 100%;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  background: rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.body-overlay-desktop.active {
  visibility: visible;
  opacity: 1;
  z-index: 9;
  left: 0;
}

.btn-wrapper button {
  outline: none;
}
.btn-wrapper button:focus {
  outline: none;
}

@media (min-width: 300px) and (max-width: 991.98px) {
  section.promo-area.padding-top-10 {
    padding-top: 0 !important;
  }
}

@media (max-width: 991px) and (min-width: 320px) {
  .row.margin-top-65 {
    margin-top: 45px !important;
  }

  .row.margin-top-40 {
    margin-top: 20px !important;
  }

  .row.margin-top-10 {
    margin-top: 0px !important;
  }

  .col-lg-12.margin-top-10 {
    margin-top: 0px !important;
  }

  .btn-wrapper.margin-top-50 {
    margin-top: 30px !important;
  }
}
/*--------------------------------------------------------------
# Custom Container
--------------------------------------------------------------*/
.container-one,
.container-two,
.container-three {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container,
.container-sm {
    max-width: 540px;
  }

  .container-one {
    max-width: 540px;
  }

  .container-two {
    max-width: 540px;
  }

  .container-three {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container,
.container-md,
.container-sm {
    max-width: 720px;
  }

  .container-one {
    max-width: 720px;
  }

  .container-two {
    max-width: 720px;
  }

  .container-three {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container,
.container-lg,
.container-md,
.container-sm {
    max-width: 960px;
  }

  .container-one {
    max-width: 960px;
  }

  .container-two {
    max-width: 960px;
  }

  .container-three {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container,
.container-lg,
.container-md,
.container-sm,
.container-xl {
    max-width: 1140px;
  }

  .container-one {
    max-width: 1140px;
  }

  .container-two {
    max-width: 1140px;
  }

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

  .container-one {
    max-width: 1320px;
  }

  .container-two {
    max-width: 1320px;
  }

  .container-three {
    max-width: 1320px;
  }
}
@media (min-width: 1600px) {
  .container-one {
    max-width: 1540px;
  }

  .container-two {
    max-width: 1540px;
  }

  .container-three {
    max-width: 1540px;
  }
}
@media (min-width: 1800px) {
  .container-one {
    max-width: 1735px;
  }

  .container-two {
    max-width: 1735px;
  }
}
/*--------------------------------------------------------------
# Global
--------------------------------------------------------------*/
.fw-400 {
  font-weight: 400 !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.fw-800 {
  font-weight: 800 !important;
}

.fw-900 {
  font-weight: 900 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.padding-left-50 {
  padding-left: 50px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .padding-left-50 {
    padding-left: 10px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .padding-left-50 {
    padding-left: 0;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .padding-left-50 {
    padding-left: 0;
  }
}

.padding-top-10 {
  padding-top: 10px;
}

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

.padding-top-25 {
  padding-top: 25px;
}

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

.padding-top-35 {
  padding-top: 35px;
}

.padding-top-40 {
  padding-top: 40px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .padding-top-40 {
    padding-top: 30px !important;
  }
}

.padding-top-45 {
  padding-top: 45px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .padding-top-45 {
    padding-top: 30px !important;
  }
}

.padding-top-55 {
  padding-top: 55px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .padding-top-55 {
    padding-top: 40px !important;
  }
}

.padding-top-50 {
  padding-top: 50px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .padding-top-50 {
    padding-top: 35px !important;
  }
}

.padding-top-60 {
  padding-top: 60px;
}

.padding-top-65 {
  padding-top: 65px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .padding-top-65 {
    padding-top: 35px !important;
  }
}

.padding-top-70 {
  padding-top: 70px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .padding-top-70 {
    padding-top: 40px !important;
  }
}

.padding-top-75 {
  padding-top: 75px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .padding-top-75 {
    padding-top: 45px !important;
  }
}

.padding-top-80 {
  padding-top: 80px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .padding-top-80 {
    padding-top: 60px !important;
  }
}

.padding-top-85 {
  padding-top: 85px;
}

.padding-top-90 {
  padding-top: 90px;
}

.padding-top-95 {
  padding-top: 95px;
}

.padding-top-100 {
  padding-top: 100px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .padding-top-100 {
    padding-top: 70px !important;
  }
}

.padding-top-105 {
  padding-top: 105px;
}

.padding-top-110 {
  padding-top: 110px;
}

.padding-top-115 {
  padding-top: 115px;
}

.padding-top-120 {
  padding-top: 120px;
}

.padding-top-125 {
  padding-top: 125px;
}

.padding-top-130 {
  padding-top: 130px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .padding-top-130 {
    padding-top: 80px !important;
  }
}

.padding-top-135 {
  padding-top: 135px;
}

.padding-top-140 {
  padding-top: 140px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .padding-top-140 {
    padding-top: 80px !important;
  }
}

.padding-top-145 {
  padding-top: 140px;
}

.padding-top-150 {
  padding-top: 150px;
}

.padding-top-160 {
  padding-top: 160px;
}

.padding-top-190 {
  padding-top: 190px;
}

.padding-top-210 {
  padding-top: 210px;
}

.padding-top-260 {
  padding-top: 260px;
}

.padding-top-300 {
  padding-top: 300px;
}

.padding-bottom-10 {
  padding-bottom: 10px;
}

.padding-bottom-15 {
  padding-bottom: 15px;
}

.padding-bottom-20 {
  padding-bottom: 20px;
}

.padding-bottom-25 {
  padding-bottom: 25px;
}

.padding-bottom-30 {
  padding-bottom: 30px;
}

.padding-bottom-35 {
  padding-bottom: 35px;
}

.padding-bottom-40 {
  padding-bottom: 40px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .padding-bottom-40 {
    padding-bottom: 30px !important;
  }
}

.padding-bottom-45 {
  padding-bottom: 45px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .padding-bottom-45 {
    padding-bottom: 30px !important;
  }
}

.padding-bottom-50 {
  padding-bottom: 50px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .padding-bottom-50 {
    padding-bottom: 35px !important;
  }
}

.padding-bottom-55 {
  padding-bottom: 55px;
}

.padding-bottom-60 {
  padding-bottom: 60px;
}

.padding-bottom-65 {
  padding-bottom: 65px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .padding-bottom-65 {
    padding-bottom: 40px !important;
  }
}

.padding-bottom-70 {
  padding-bottom: 70px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .padding-bottom-70 {
    padding-bottom: 40px !important;
  }
}

.padding-bottom-75 {
  padding-bottom: 75px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .padding-bottom-75 {
    padding-bottom: 45px !important;
  }
}

.padding-bottom-80 {
  padding-bottom: 80px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .padding-bottom-80 {
    padding-bottom: 60px !important;
  }
}

.padding-bottom-85 {
  padding-bottom: 85px;
}

.padding-bottom-90 {
  padding-bottom: 90px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .padding-bottom-90 {
    padding-bottom: 60px !important;
  }
}

.padding-bottom-95 {
  padding-bottom: 95px;
}

.padding-bottom-100 {
  padding-bottom: 100px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .padding-bottom-100 {
    padding-bottom: 70px !important;
  }
}

.padding-bottom-110 {
  padding-bottom: 110px;
}

.padding-bottom-105 {
  padding-bottom: 105px;
}

.padding-bottom-115 {
  padding-bottom: 115px;
}

.padding-bottom-120 {
  padding-bottom: 120px;
}

.padding-bottom-125 {
  padding-bottom: 125px;
}

.padding-bottom-130 {
  padding-bottom: 130px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .padding-bottom-130 {
    padding-bottom: 80px !important;
  }
}

.padding-bottom-140 {
  padding-bottom: 140px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .padding-bottom-140 {
    padding-bottom: 80px !important;
  }
}

.padding-bottom-135 {
  padding-bottom: 135px;
}

.padding-bottom-200 {
  padding-bottom: 200px;
}

.padding-bottom-280 {
  padding-bottom: 280px;
}

.padding-bottom-285 {
  padding-bottom: 285px;
}

.padding-bottom-150 {
  padding-bottom: 150px;
}

.padding-bottom-160 {
  padding-bottom: 160px;
}

.padding-bottom-165 {
  padding-bottom: 165px;
}

.padding-bottom-170 {
  padding-bottom: 170px;
}

.padding-bottom-180 {
  padding-bottom: 180px;
}

.padding-bottom-215 {
  padding-bottom: 215px;
}

.padding-bottom-300 {
  padding-bottom: 300px;
}

.padding-bottom-460 {
  padding-bottom: 460px;
}

.margin-top-minus-90 {
  margin-top: -90px;
}

.margin-top-minus-100 {
  margin-top: -100px;
}

.margin-top-120 {
  margin-top: 120px;
}

.margin-top-150 {
  margin-top: 150px;
}

.margin-top-160 {
  margin-top: 160px;
}

.padding-120 {
  padding-top: 120px;
  padding-bottom: 120px;
}

.padding-110 {
  padding-top: 110px;
  padding-bottom: 110px;
}

.padding-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

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

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

.padding-40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.padding-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.padding-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.padding-65 {
  padding-top: 65px;
  padding-bottom: 65px;
}

.padding-70 {
  padding-top: 70px;
  padding-bottom: 70px;
}

.padding-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.padding-90 {
  padding-top: 90px;
  padding-bottom: 90px;
}

.padding-10 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.margin-top-10 {
  margin-top: 10px;
}

.margin-top-15 {
  margin-top: 15px;
}

.margin-top-20 {
  margin-top: 20px;
}

.margin-top-30 {
  margin-top: 30px;
}

.margin-top-35 {
  margin-top: 35px;
}

.margin-top-40 {
  margin-top: 40px;
}

.margin-top-45 {
  margin-top: 45px;
}

.margin-top-50 {
  margin-top: 50px;
}

.margin-top-55 {
  margin-top: 55px;
}

.margin-top-60 {
  margin-top: 60px;
}

.margin-top-65 {
  margin-top: 65px;
}

.margin-top-70 {
  margin-top: 70px;
}

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

.margin-top-90 {
  margin-top: 90px;
}

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

.margin-top-110 {
  margin-top: 110px;
}

.margin-top-120 {
  margin-top: 120px;
}

.margin-bottom-0 {
  margin-bottom: 0px !important;
}

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

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

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

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

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

.margin-bottom-35 {
  margin-bottom: 35px;
}

.margin-bottom-40 {
  margin-bottom: 40px;
}

.margin-bottom-50 {
  margin-bottom: 50px;
}

.margin-bottom-55 {
  margin-bottom: 55px;
}

.margin-bottom-60 {
  margin-bottom: 60px;
}

.margin-bottom-70 {
  margin-bottom: 70px;
}

.margin-bottom-80 {
  margin-bottom: 80px;
}

.margin-bottom-90 {
  margin-bottom: 90px;
}

.margin-bottom-100 {
  margin-bottom: 100px;
}

.margin-bottom-110 {
  margin-bottom: 110px;
}

.margin-bottom-120 {
  margin-bottom: 120px;
}

.margin-bottom-150 {
  margin-bottom: 150px;
}

.margin-top-100 {
  margin-bottom: 100px;
}

.margin-top-120 {
  margin-top: 120px;
}

.min-height-600 {
  min-height: 600px;
}

.overflow-hidden {
  overflow: hidden;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table;
  table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}

/*--------------------------------------------------------------
# Keyframes Animation
--------------------------------------------------------------*/
@-webkit-keyframes floating {
  0% {
    -webkit-transform: translatey(0px);
    transform: translatey(0px);
  }
  50% {
    -webkit-transform: translatey(-50px);
    transform: translatey(-50px);
  }
  100% {
    -webkit-transform: translatey(0px);
    transform: translatey(0px);
  }
}
@keyframes floating {
  0% {
    -webkit-transform: translatey(0px);
    transform: translatey(0px);
  }
  50% {
    -webkit-transform: translatey(-50px);
    transform: translatey(-50px);
  }
  100% {
    -webkit-transform: translatey(0px);
    transform: translatey(0px);
  }
}
@-webkit-keyframes floating_rotate {
  0% {
    -webkit-transform: translatey(0px) rotate(0deg);
    transform: translatey(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translatey(-50px) rotateY(360deg);
    transform: translatey(-50px) rotateY(360deg);
  }
  100% {
    -webkit-transform: translatey(0px) rotate(0deg);
    transform: translatey(0px) rotate(0deg);
  }
}
@keyframes floating_rotate {
  0% {
    -webkit-transform: translatey(0px) rotate(0deg);
    transform: translatey(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translatey(-50px) rotateY(360deg);
    transform: translatey(-50px) rotateY(360deg);
  }
  100% {
    -webkit-transform: translatey(0px) rotate(0deg);
    transform: translatey(0px) rotate(0deg);
  }
}
@-webkit-keyframes floating_scale {
  0% {
    -webkit-transform: translatey(0px) scale(0.8);
    transform: translatey(0px) scale(0.8);
  }
  50% {
    -webkit-transform: translatey(-50px) scale(1.4);
    transform: translatey(-50px) scale(1.4);
  }
  100% {
    -webkit-transform: translatey(0px) scale(0.8);
    transform: translatey(0px) scale(0.8);
  }
}
@keyframes floating_scale {
  0% {
    -webkit-transform: translatey(0px) scale(0.8);
    transform: translatey(0px) scale(0.8);
  }
  50% {
    -webkit-transform: translatey(-50px) scale(1.4);
    transform: translatey(-50px) scale(1.4);
  }
  100% {
    -webkit-transform: translatey(0px) scale(0.8);
    transform: translatey(0px) scale(0.8);
  }
}
@-webkit-keyframes floating_long {
  0% {
    -webkit-transform: translatey(0px);
    transform: translatey(0px);
  }
  50% {
    -webkit-transform: translatey(-150px);
    transform: translatey(-150px);
  }
  100% {
    -webkit-transform: translatey(0px);
    transform: translatey(0px);
  }
}
@keyframes floating_long {
  0% {
    -webkit-transform: translatey(0px);
    transform: translatey(0px);
  }
  50% {
    -webkit-transform: translatey(-150px);
    transform: translatey(-150px);
  }
  100% {
    -webkit-transform: translatey(0px);
    transform: translatey(0px);
  }
}
@-webkit-keyframes floating_leftright {
  0% {
    -webkit-transform: translateX(-150px);
    transform: translateXS(-150px);
  }
  50% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  100% {
    -webkit-transform: translateX(-150px);
    transform: translateX(-150px);
  }
}
@keyframes floating_leftright {
  0% {
    -webkit-transform: translateX(-150px);
    transform: translateXS(-150px);
  }
  50% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  100% {
    -webkit-transform: translateX(-150px);
    transform: translateX(-150px);
  }
}
@-webkit-keyframes floating_leftright_rotateY {
  0% {
    -webkit-transform: translateX(-150px) rotateY(0deg);
    transform: translateXS(-150px) rotateY(0deg);
  }
  50% {
    -webkit-transform: translateX(0px) rotateY(180deg);
    transform: translateX(0px) rotateY(180deg);
  }
  100% {
    -webkit-transform: translateX(-150px) rotateY(0deg);
    transform: translateX(-150px) rotateY(0deg);
  }
}
@keyframes floating_leftright_rotateY {
  0% {
    -webkit-transform: translateX(-150px) rotateY(0deg);
    transform: translateXS(-150px) rotateY(0deg);
  }
  50% {
    -webkit-transform: translateX(0px) rotateY(180deg);
    transform: translateX(0px) rotateY(180deg);
  }
  100% {
    -webkit-transform: translateX(-150px) rotateY(0deg);
    transform: translateX(-150px) rotateY(0deg);
  }
}
@-webkit-keyframes floating_leftright_rotateX {
  0% {
    -webkit-transform: translateX(-150px) rotateX(0deg);
    transform: translateXS(-150px) rotateX(0deg);
  }
  50% {
    -webkit-transform: translateX(0px) rotateX(180deg);
    transform: translateX(0px) rotateX(180deg);
  }
  100% {
    -webkit-transform: translateX(-150px) rotateX(0deg);
    transform: translateX(-150px) rotateX(0deg);
  }
}
@keyframes floating_leftright_rotateX {
  0% {
    -webkit-transform: translateX(-150px) rotateX(0deg);
    transform: translateXS(-150px) rotateX(0deg);
  }
  50% {
    -webkit-transform: translateX(0px) rotateX(180deg);
    transform: translateX(0px) rotateX(180deg);
  }
  100% {
    -webkit-transform: translateX(-150px) rotateX(0deg);
    transform: translateX(-150px) rotateX(0deg);
  }
}
@-webkit-keyframes scaleupdown {
  0% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  50% {
    -webkit-transform: scale(0.8);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}
@keyframes scaleupdown {
  0% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  50% {
    -webkit-transform: scale(0.8);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}
@-webkit-keyframes round-moving {
  from {
    -webkit-transform: rotate(0deg) translateX(120px) rotate(0deg);
            transform: rotate(0deg) translateX(120px) rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg) translateX(120px) rotate(-360deg);
            transform: rotate(360deg) translateX(120px) rotate(-360deg);
  }
}
@keyframes round-moving {
  from {
    -webkit-transform: rotate(0deg) translateX(120px) rotate(0deg);
            transform: rotate(0deg) translateX(120px) rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg) translateX(120px) rotate(-360deg);
            transform: rotate(360deg) translateX(120px) rotate(-360deg);
  }
}
@-webkit-keyframes round-moving2 {
  from {
    -webkit-transform: rotate(0deg) translateX(60px) rotate(0deg);
            transform: rotate(0deg) translateX(60px) rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg) translateX(60px) rotate(-360deg);
            transform: rotate(360deg) translateX(60px) rotate(-360deg);
  }
}
@keyframes round-moving2 {
  from {
    -webkit-transform: rotate(0deg) translateX(60px) rotate(0deg);
            transform: rotate(0deg) translateX(60px) rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg) translateX(60px) rotate(-360deg);
            transform: rotate(360deg) translateX(60px) rotate(-360deg);
  }
}
@-webkit-keyframes pulsing {
  0% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
  50% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
}
@keyframes pulsing {
  0% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
  50% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
}
@-webkit-keyframes wave {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: -500px 0;
  }
  100% {
    background-position: 500px 0;
  }
}
@keyframes wave {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: -500px 0;
  }
  100% {
    background-position: 500px 0;
  }
}
/*----------------------------------------------
    # Nav bar 
----------------------------------------------*/
.mobile-logo {
  display: none;
}

@media only screen and (max-width: 991px) {
  .mobile-logo {
    display: block;
  }

  .desktop-logo {
    display: none !important;
  }
}
.navbar-area {
  position: relative;
  z-index: 95;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .navbar-area {
    padding: 0;
  }
}
.navbar-area.nav-absolute {
  position: absolute;
  left: 0;
  width: 100%;
  top: 0px;
  z-index: 99;
}
.navbar-area.nav-two .nav-container .navbar-collapse .navbar-nav {
  text-align: center;
}
.navbar-area.white-nav .nav-container .navbar-collapse .navbar-nav li {
  color: #fff;
}
.navbar-area.white-nav .nav-container .nav-right-content ul li {
  color: #fff;
}
.navbar-area.white-nav .nav-container .nav-right-content ul li .track-icon-list .single-icon .icon {
  color: #fff;
}
.navbar-area.white-nav .nav-container .nav-right-content ul li .track-icon-list .single-icon.hover-color-two:hover .icon:hover {
  color: var(--main-color-two);
}
.navbar-area.white-nav .nav-container .nav-right-content ul li .login-account .accounts {
  color: #fff;
}
.navbar-area.white-nav .nav-container .nav-right-content ul li .login-account .accounts.hover-color-two:hover {
  color: var(--main-color-two);
}
.navbar-area .nav-container {
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 0px 15px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .navbar-area .nav-container {
    padding: 20px 0;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .navbar-area .nav-container {
    padding: 15px 0;
  }
}
.navbar-area .nav-container .logo-wrapper .logo img {
  max-width: 200px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .navbar-area .nav-container .logo-wrapper .logo img {
    max-width: 160px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .navbar-area .nav-container .logo-wrapper .logo img {
    max-width: 150px;
  }
}
.navbar-area .nav-container .navbar-collapse .navbar-nav {
  display: block;
  width: 100%;
  text-align: center;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav.nav-margin-top {
  margin-top: 15px;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav.desktop-center {
  text-align: center;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li {
  display: inline-block;
  font-size: 16px;
  font-family: var(--body-font);
  text-transform: capitalize;
  color: var(--heading-color);
  font-weight: 400;
  line-height: 32px;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li + li {
  margin-left: 0px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .navbar-area .nav-container .navbar-collapse .navbar-nav li {
    font-size: 15px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .navbar-area .nav-container .navbar-collapse .navbar-nav li {
    font-size: 14px;
  }
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li a {
  padding: 10px 28px;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .navbar-area .nav-container .navbar-collapse .navbar-nav li a {
    padding: 7px 10px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .navbar-area .nav-container .navbar-collapse .navbar-nav li a {
    padding: 5px 10px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .navbar-area .nav-container .navbar-collapse .navbar-nav li a {
    padding: 5px 10px;
  }
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li a:hover {
  color: var(--main-color-one);
  background: none;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.current-menu-item {
  background: none;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children {
  padding-right: 0;
  position: relative;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children > a {
  padding: 10px 20px;
  position: relative;
  z-index: 0;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children > a {
    padding: 10px 10px;
  }
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children > a::after {
  content: "";
  font-family: "Line Awesome Free";
  font-weight: 900;
  /* IE 9 */
  -webkit-transform: translateY(-50%);
  /* Chrome, Safari, Opera */
  transform: translateY(-50%);
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  top: 1px;
  left: 4px;
  position: relative;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:hover > .sub-menu {
  visibility: visible;
  opacity: 1;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu {
  position: absolute;
  text-align: left;
  min-width: 220px;
  margin: 0;
  padding: 0;
  list-style: none;
  left: 0;
  top: 100%;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05);
  background-color: #fff;
  z-index: 992;
  border-bottom: 5px solid var(--main-color-one);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu.column-count-two {
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 50px;
  -webkit-column-rule-style: solid;
     -moz-column-rule-style: solid;
          column-rule-style: solid;
  -webkit-column-rule-color: rgba(221, 221, 221, 0.3);
     -moz-column-rule-color: rgba(221, 221, 221, 0.3);
          column-rule-color: rgba(221, 221, 221, 0.3);
  -webkit-column-rule-width: 2px;
     -moz-column-rule-width: 2px;
          column-rule-width: 2px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu.column-count-two {
    -webkit-column-count: unset;
       -moz-column-count: unset;
            column-count: unset;
  }
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu.column-count-two li {
  margin-bottom: -1px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu.column-count-two li {
    margin-bottom: 0;
  }
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li {
  display: block;
  margin-left: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: -1px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li {
    margin-bottom: 0;
  }
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:last-child {
  margin-bottom: -1px;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li + li {
  border-top: 1px solid #e2e2e2;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a {
  display: block;
  padding: 10px 30px;
  background-color: #fff;
  white-space: nowrap;
  color: var(--heading-color);
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a:hover {
  background-color: var(--main-color-one);
  color: #fff;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children {
  position: relative;
  z-index: 0;
  padding-right: 0px;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children > .sub-menu {
  left: 100%;
  top: 0px;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children > .sub-menu .sub-menu .sub-menu {
  left: auto;
  right: 100%;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children:hover > .sub-menu {
  visibility: visible;
  opacity: 1;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children:hover > .sub-menu li:hover:before {
  color: #fff;
}
.navbar-inner-all {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .navbar-inner-all {
    display: block;
    width: 100%;
  }
}

.click-nav-right-icon {
  display: none;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .click-nav-right-icon {
    position: absolute;
    right: 60px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    font-size: 30px;
    color: rgba(0, 0, 0, 0.7);
    display: block;
  }
  .click-nav-right-icon:hover {
    color: var(--heading-color);
  }
  .click-nav-right-icon.white-color {
    color: #fff;
  }
  .click-nav-right-icon.white-color:hover {
    color: #fff;
  }
}

@media (min-width: 300px) and (max-width: 991.98px) {
  .show-nav-content {
    visibility: hidden;
    opacity: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-transition: 300ms;
    transition: 300ms;
    margin-top: -60px;
    margin-left: auto;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .show-nav-content.show {
    visibility: visible;
    opacity: 1;
    margin-top: 10px;
  }
}

.single-right-content .btn-track {
  -webkit-transition: 300ms;
  transition: 300ms;
}
.single-right-content .btn-track:hover {
  color: var(--main-color-one);
}
.single-right-content .btn-track .track-icon {
  color: var(--main-color-one);
}
.single-right-content .user-icon-price {
  background: rgba(var(--main-color-three-rgb), 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.single-right-content .user-icon-price .user-icon {
  font-size: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--main-color-three);
  color: #fff;
  height: 46px;
  width: 46px;
}
.single-right-content .user-icon-price .user-price {
  font-size: 20px;
  line-height: 30px;
  padding: 0 10px;
  color: var(--main-color-three);
}

/* Navbar right Content */
.single-right-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.navbar-right-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.track-icon-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.track-icon-list.white-color .single-icon .icon {
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.track-icon-list .single-icon {
  position: relative;
}
.track-icon-list .single-icon:hover .icon:hover {
  background-color: var(--main-color-one);
  color: #fff;
}
.track-icon-list .single-icon:hover .icon-notification {
  background-color: #fff;
  color: var(--main-color-one);
}
.track-icon-list .single-icon .icon {
  font-size: 26px;
  color: var(--heading-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 55px;
  width: 55px;
  background-color: rgba(221, 221, 221, 0.3);
}
@media only screen and (max-width: 375px) {
  .track-icon-list .single-icon .icon {
    font-size: 20px;
  }
}
.track-icon-list .single-icon.hover-color-two .icon:hover {
  color: var(--main-color-two);
}
.track-icon-list .single-icon.hover-color-three .icon:hover {
  color: var(--main-color-three);
}
.track-icon-list .single-icon.hover-color-four .icon:hover {
  color: var(--main-color-four);
}
.track-icon-list .single-icon .icon-notification {
  position: absolute;
  top: 0px;
  right: 0px;
  font-size: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 22px;
  width: 22px;
  background: var(--main-color-one);
  color: #fff;
  border-radius: 50%;
}
@media only screen and (max-width: 375px) {
  .track-icon-list .single-icon .icon-notification {
    height: 18px;
    width: 18px;
    font-size: 12px;
  }
}
.track-icon-list .single-icon .icon-notification.bg-color-one {
  background: var(--main-color-one);
}
.track-icon-list .single-icon .icon-notification.bg-color-two {
  background: var(--main-color-two);
}
.track-icon-list .single-icon .icon-notification.bg-color-three {
  background: var(--main-color-three);
}
.track-icon-list .single-icon .icon-notification.bg-color-four {
  background: var(--main-color-four);
}

.login-account {
  position: relative;
  z-index: 3;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.login-account:hover .account-list-item {
  visibility: visible;
  opacity: 1;
  top: 100%;
  background: #fff;
}
.login-account:hover .accounts {
  color: #fff;
  background-color: var(--main-color-one);
}
.login-account:hover .accounts i {
  color: #fff;
}
.login-account .account-list-item {
  position: absolute;
  top: 130%;
  right: 0;
  background: #fff;
  z-index: 9998;
  -webkit-box-shadow: 0 0 10px rgba(221, 221, 221, 0.2);
          box-shadow: 0 0 10px rgba(221, 221, 221, 0.2);
  width: 120px;
  background: #fff;
  visibility: hidden;
  opacity: 1;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  display: block !important;
  margin-left: 0 !important;
}
.login-account .account-list-item.hover-color-two .list a:hover {
  background: var(--main-color-two);
}
.login-account .account-list-item.hover-color-three .list a:hover {
  background: var(--main-color-three);
}
.login-account .account-list-item.hover-color-four .list a:hover {
  background: var(--main-color-four);
}
.login-account .account-list-item .list {
  margin: 0 !important;
  display: block !important;
}
.login-account .account-list-item .list a {
  display: block;
  font-size: 15px;
  font-weight: 400;
  padding: 10px 20px;
  color: var(--heading-color);
  border-bottom: 1px solid rgba(221, 221, 221, 0.7);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.login-account .account-list-item .list a:hover {
  background: var(--main-color-one);
  color: #fff;
}
.login-account.style-02 {
  position: relative;
  z-index: 9999;
}
.login-account.style-02 .account-list-item .list a:hover {
  background: var(--main-color-three);
}
.login-account.style-02 .accounts {
  color: #fff;
  background: var(--main-color-one);
  padding: 10px 20px;
}
.login-account.style-02 .accounts:hover {
  background: #fff;
  color: var(--main-color-one);
}
.login-account.style-02 .accounts:hover i {
  color: var(--main-color-one);
}
.login-account.style-02 .accounts i {
  color: #fff;
}
.login-account.style-02 .accounts.bg-color-two {
  background: var(--main-color-two);
}
.login-account.style-02 .accounts.bg-color-two:hover {
  background: #fff;
  color: var(--main-color-two);
}
.login-account.style-02 .accounts.bg-color-two:hover i {
  color: var(--main-color-two);
}
.login-account.style-02 .accounts.bg-color-three {
  background: var(--main-color-three);
}
.login-account.style-02 .accounts.bg-color-three:hover {
  background: #fff;
  color: var(--main-color-three);
}
.login-account.style-02 .accounts.bg-color-three:hover i {
  color: var(--main-color-three);
}
.login-account.style-02 .accounts.bg-color-four {
  background: var(--main-color-four);
}
.login-account.style-02 .accounts.bg-color-four:hover {
  background: #fff;
  color: var(--main-color-four);
}
.login-account.style-02 .accounts.bg-color-four:hover i {
  color: var(--main-color-four);
}
.login-account.white-color .accounts {
  color: #fff;
}
.login-account.white-color .accounts:hover {
  color: var(--main-color-one);
}
.login-account.white-color .accounts:hover i {
  color: var(--main-color-one);
}
.login-account.white-color .accounts i {
  color: #fff;
}
.login-account .accounts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 55px;
  width: 55px;
  background-color: rgba(221, 221, 221, 0.3);
  gap: 10px;
  color: var(--light-color);
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.login-account .accounts i {
  font-size: 26px;
  color: var(--heading-color);
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
@media only screen and (max-width: 375px) {
  .login-account .accounts i {
    font-size: 20px;
  }
}
@media only screen and (max-width: 375px) {
  .login-account .accounts {
    gap: 5px;
  }
}
.login-account .accounts.hover-color-two i {
  color: var(--main-color-two);
}
.login-account .accounts.hover-color-two:hover {
  color: var(--main-color-two);
}
.login-account .accounts.hover-color-two:hover i {
  color: var(--main-color-two);
}
.login-account .accounts.hover-color-three i {
  color: var(--main-color-three);
}
.login-account .accounts.hover-color-three:hover {
  color: var(--main-color-three);
}
.login-account .accounts.hover-color-three:hover i {
  color: var(--main-color-three);
}
.login-account .accounts.hover-color-four i {
  color: var(--main-color-four);
}
.login-account .accounts.hover-color-four:hover {
  color: var(--main-color-four);
}
.login-account .accounts.hover-color-four:hover i {
  color: var(--main-color-four);
}

.cart-shopping {
  position: relative;
  z-index: 2;
}
.cart-shopping:hover .icon {
  background-color: var(--main-color-one);
  color: #fff;
}
.cart-shopping:hover .addto-cart-contents {
  visibility: visible;
  opacity: 1;
  top: 100%;
  -webkit-transform: scale(1);
          transform: scale(1);
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .cart-shopping:hover .addto-cart-contents {
    -webkit-transform: translateX(0%) scale(1);
            transform: translateX(0%) scale(1);
  }
}
@media only screen and (max-width: 375px) {
  .cart-shopping:hover .addto-cart-contents {
    -webkit-transform: translateX(20%);
            transform: translateX(20%);
  }
}
.cart-shopping .addto-cart-contents {
  position: absolute;
  right: 0;
  top: 130%;
  z-index: 3;
  width: 400px;
  background: #fff;
  -webkit-box-shadow: 0 0 10px rgba(221, 221, 221, 0.5);
          box-shadow: 0 0 10px rgba(221, 221, 221, 0.5);
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .cart-shopping .addto-cart-contents {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@media only screen and (max-width: 480px) {
  .cart-shopping .addto-cart-contents {
    width: 320px;
  }
}
@media only screen and (max-width: 480px) {
  .cart-shopping .addto-cart-contents {
    width: 270px;
    padding: 10px;
  }
}
.cart-shopping .addto-cart-contents .cart-total-amount {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 20px;
}
.cart-shopping .addto-cart-contents .nicescroll-rails .nicescroll-cursors {
  background-color: var(--main-color-one) !important;
}
.cart-shopping .single-addto-cart-wrappers {
  max-height: 240px;
  overflow-y: auto;
}
.cart-shopping .single-addto-carts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-right: 5px;
}
.cart-shopping .single-addto-carts:not(:last-child) {
  margin-bottom: 10px;
}
.cart-shopping .single-addto-carts .addto-cart-flex-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.cart-shopping .single-addto-carts .addto-cart-flex-contents .addto-cart-thumb {
  height: 70px;
  width: 70px;
}
.cart-shopping .single-addto-carts .addto-cart-flex-contents .addto-cart-thumb img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cart-shopping .single-addto-carts .addto-cart-flex-contents .addto-cart-img-contents .price-updates {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.cart-shopping .single-addto-carts .addto-cart-flex-contents .addto-cart-img-contents .price-updates .price-title {
  color: var(--main-color-one);
  font-size: 18px;
}
.cart-shopping .single-addto-carts .addto-cart-flex-contents .addto-cart-img-contents .price-updates .old-price {
  text-decoration: line-through;
  font-size: 14px;
}
.cart-shopping .btn-wrapper .cart-btn {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--body-font);
  display: inline-block;
  border-radius: 5px;
  text-align: center;
  cursor: pointer;
  line-height: 34px;
  padding: 10px 35px;
  border: 2px solid var(--main-color-one);
  background-color: var(--main-color-one);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .cart-shopping .btn-wrapper .cart-btn {
    line-height: 28px;
  }
}
@media only screen and (max-width: 575.98px) {
  .cart-shopping .btn-wrapper .cart-btn {
    line-height: 24px;
    font-size: 15px;
  }
}
@media only screen and (max-width: 375px) {
  .cart-shopping .btn-wrapper .cart-btn {
    padding: 8px 25px;
    font-size: 14px;
  }
}
.cart-shopping .btn-wrapper .cart-btn:hover {
  background: none;
  color: var(--main-color-one);
}
.cart-shopping .btn-wrapper .cart-btn.cart-btn-outline {
  background: none;
  color: var(--main-color-one);
  border: 2px solid var(--main-color-one);
}
.cart-shopping .btn-wrapper .cart-btn.cart-btn-outline:hover {
  background-color: var(--main-color-one);
  color: #fff;
}

@media only screen and (max-width: 991px) {
  .navbar-area.index-02 .nav-container .navbar-collapse.show .navbar-nav {
    background: transparent;
  }
  .navbar-area.index-03 .nav-container .navbar-right-content {
    margin-top: -50px;
  }
  .navbar-area.index-03 .nav-container .navbar-right-content.show {
    margin-top: 10px;
  }
  .navbar-area.white-nav .navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.8);
  }
  .navbar-area.white-nav .navbar-toggler.active .navbar-toggler-icon::before, .navbar-area.white-nav .navbar-toggler.active .navbar-toggler-icon::after {
    background: rgba(255, 255, 255, 0.8);
  }
  .navbar-area.white-nav .navbar-toggler .navbar-toggler-icon {
    background: rgba(255, 255, 255, 0.8);
  }
  .navbar-area.white-nav .navbar-toggler .navbar-toggler-icon::before, .navbar-area.white-nav .navbar-toggler .navbar-toggler-icon::after {
    background: rgba(255, 255, 255, 0.8);
  }
  .navbar-area .navbar-toggler {
    position: absolute;
    right: 0px;
    top: 50%;
    -webkit-box-shadow: none;
            box-shadow: none;
    /* IE 9 */
    -webkit-transform: translateY(-50%);
    /* Chrome, Safari, Opera */
    transform: translateY(-50%);
    outline: none;
  }
  .navbar-area .navbar-toggler.active .navbar-toggler-icon {
    background: none;
  }
  .navbar-area .navbar-toggler.active .navbar-toggler-icon::before, .navbar-area .navbar-toggler.active .navbar-toggler-icon::after {
    background: rgba(0, 0, 0, 0.7);
    top: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .navbar-area .navbar-toggler.active .navbar-toggler-icon::after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .navbar-area .navbar-toggler .navbar-toggler-icon {
    background: rgba(0, 0, 0, 0.7);
    display: inline-block;
    width: 25px;
    height: 2px;
    margin: 10px -4px 10px;
    position: relative;
  }
  .navbar-area .navbar-toggler .navbar-toggler-icon::before, .navbar-area .navbar-toggler .navbar-toggler-icon::after {
    position: absolute;
    content: "";
    height: 2px;
    width: 25px;
    background: rgba(0, 0, 0, 0.7);
    top: -7px;
    left: 0;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .navbar-area .navbar-toggler .navbar-toggler-icon::after {
    top: auto;
    bottom: -7px;
  }
  .navbar-area .nav-container {
    position: relative;
    z-index: 0;
    min-height: 50px;
    padding: 5px 0px 5px;
  }
  .navbar-area .nav-container .responsive-mobile-menu {
    display: block;
    position: relative;
    width: 100%;
  }
  .navbar-area .nav-container .navbar-brand {
    display: block;
  }
  .navbar-area .nav-container .navbar-brand .navbar-toggler {
    position: absolute;
    right: 10px;
    border: 1px solid #e2e2e2;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav {
    display: block;
    margin-top: 30px;
    background: #FFFBFB;
    -webkit-box-shadow: 0 0 30px rgba(221, 221, 221, 0.3);
    box-shadow: 0 0 30px rgba(221, 221, 221, 0.3);
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li {
    display: block;
    text-align: left;
    line-height: 30px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li a {
    padding: 17px 20px;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li:last-child {
    border-bottom: none;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li + li {
    margin-left: 0;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:before {
    top: 25px;
    right: 20px;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:hover {
    padding-bottom: 0;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:hover > .sub-menu {
    visibility: visible;
    height: auto;
    opacity: 1;
    background-color: transparent;
    border-bottom: none;
    padding-top: 10px;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu {
    position: initial;
    display: block;
    width: 100%;
    border-top: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-left: 0;
    padding-bottom: 0;
    visibility: hidden;
    opacity: 0;
    height: 0;
    overflow: hidden;
    max-height: 250px;
    overflow-y: scroll;
    -webkit-transition: all 500ms linear;
    transition: all 500ms linear;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .sub-menu .menu-item-has-children:before {
    content: "";
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li {
    padding: 0;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li.menu-item-has-children:hover:before {
    color: #fff;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li + li {
    border-top: none;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
}
@media only screen and (max-width: 575px) {
  .navbar-area .nav-container {
    padding: 0 15px;
  }
  .navbar-area .nav-container .logo-wrapper .logo img {
    max-width: 140px;
  }
}
.navbar-area.theme-one {
  padding: 20px 0;
}
.navbar-area.theme-one .navbar-collapse .navbar-nav li a:hover {
  color: var(--heading-color);
}
.navbar-area.theme-one .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu {
  border-color: var(--main-color-two);
}
.navbar-area.theme-one .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a:hover {
  background-color: var(--main-color-two);
}
.navbar-area.theme-one .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children:hover > .sub-menu li:hover:before {
  color: #fff;
}
.navbar-area.theme-two .navbar-collapse .navbar-nav li a:hover {
  color: var(--main-color-three);
}
.navbar-area.theme-two .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu {
  border-color: var(--main-color-three);
}
.navbar-area.theme-two .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a:hover {
  background-color: var(--main-color-three);
}
.navbar-area.theme-two .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children:hover > .sub-menu li:hover:before {
  color: #fff;
}
.navbar-area.theme-three {
  padding: 20px 0;
}
.navbar-area.theme-three .navbar-collapse .navbar-nav li a:hover {
  color: var(--main-color-four);
}
.navbar-area.theme-three .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu {
  border-color: var(--main-color-four);
}
.navbar-area.theme-three .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a:hover {
  background-color: var(--main-color-four);
}
.navbar-area.theme-three .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children:hover > .sub-menu li:hover:before {
  color: #fff;
}
[dir=rtl] .account-list-item {
  right: auto;
  left: 0;
}
[dir=rtl] .addto-cart-contents {
  right: auto;
  left: 0;
}
[dir=rtl] .search-suggestions-icon-wrapper .search-suggetions-show {
  right: auto;
  left: 0;
}
[dir=rtl] .search-suggestions-icon-wrapper .search-open-form .suggetions-icon-close {
  right: auto;
  left: 0;
}
[dir=rtl] .navbar-input button {
  left: auto;
  right: 15px;
}
[dir=rtl] .navbar-input .form--control {
  padding-left: 70px;
  padding-right: 50px;
}

/*--------------------------------------------------------------
	04. Footer Style
--------------------------------------------------------------*/
.footer-area {
  position: relative;
  z-index: 1;
}

.footer-top-border {
  border-bottom: 1px solid #ddd;
}
.footer-top-border.white-color {
  border-color: #DDD;
}

.style-02 .footer-middle-border div[class*=col] {
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
.style-02 .footer-middle-border div[class*=col]:not(:first-child) .footer-widget {
  width: 100%;
}
.style-02 .footer-middle-border div[class*=col]:not(:first-child) .footer-widget::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 2px;
  left: -12px;
  top: 0;
  background: rgba(221, 221, 221, 0.7);
  z-index: 0;
}
.style-02 .footer-widget .footer-inner .footer-social-list {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.style-02 .footer-widget .footer-inner .about-us-para {
  max-width: 430px;
  margin: auto;
  font-size: 16px;
  line-height: 28px;
  color: var(--light-color);
}

.style-03 .footer-middle-border div[class*=col] {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.style-03 .footer-middle-border div[class*=col]:not(:first-child) .footer-widget {
  width: 100%;
  padding-left: 120px;
}
@media (min-width: 1600px) and (max-width: 1849.98px) {
  .style-03 .footer-middle-border div[class*=col]:not(:first-child) .footer-widget {
    padding-left: 100px;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .style-03 .footer-middle-border div[class*=col]:not(:first-child) .footer-widget {
    padding-left: 70px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .style-03 .footer-middle-border div[class*=col]:not(:first-child) .footer-widget {
    padding-left: 50px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .style-03 .footer-middle-border div[class*=col]:not(:first-child) .footer-widget {
    padding-left: 0;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .style-03 .footer-middle-border div[class*=col]:not(:first-child) .footer-widget {
    padding-left: 0;
  }
}
.style-03 .footer-middle-border div[class*=col]:not(:first-child) .footer-widget::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 2px;
  left: -12px;
  top: 0;
  background: rgba(221, 221, 221, 0.7);
  z-index: 0;
}
.style-03 .footer-widget .footer-inner .footer-social-list .lists a {
  height: 40px;
  width: 40px;
  font-size: 20px;
  border-radius: 0;
  background-color: rgba(var(--main-color-three-rgb), 0.2);
}

.footer-widget {
  position: relative;
  z-index: 1;
}
.footer-widget .widget-title {
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  text-transform: capitalize;
  position: relative;
}
.footer-widget .logo-borders {
  border-right: 1px solid #dddddd;
  border-left: 1px solid #dddddd;
}
.footer-widget .footer-inner .footer-logo {
  text-align: center;
}
.footer-widget .footer-inner .footer-logo-para {
  font-size: 15px;
}
.footer-widget .footer-inner .footer-para {
  font-size: 16px;
  color: var(--light-color);
  line-height: 28px;
}
.footer-widget .footer-inner .footer-link-list {
  padding: 0;
}
.footer-widget .footer-inner .footer-link-list .list {
  position: relative;
  z-index: 2;
  -webkit-transition: 300ms;
  transition: 300ms;
}
.footer-widget .footer-inner .footer-link-list .list:not(:last-child) {
  margin-bottom: 15px;
}
.footer-widget .footer-inner .footer-link-list .list:hover a {
  color: var(--main-color-one);
}
.footer-widget .footer-inner .footer-link-list .list a {
  font-size: 16px;
  font-weight: 400;
  color: var(--light-color);
  position: relative;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
  z-index: 1;
}
.footer-widget .footer-inner .footer-link-list .list a:hover {
  color: var(--main-color-one);
}
.footer-widget .footer-inner .footer-link-address {
  padding: 0;
}
.footer-widget .footer-inner .footer-link-address .list:not(:last-child) {
  margin-bottom: 15px;
}
.footer-widget .footer-inner .footer-link-address .list .address {
  font-size: 16px;
  line-height: 26px;
  display: block;
  color: var(--light-color);
  -webkit-transition: 300ms;
  transition: 300ms;
}
.footer-widget .footer-inner .footer-link-address .list .address:hover {
  color: var(--main-color-one);
}
.footer-widget .footer-inner .footer-link-address .list .address i {
  color: var(--main-color-one);
}
.footer-widget .footer-inner .footer-social-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  padding: 0;
  gap: 10px;
}
@media only screen and (max-width: 575.98px) {
  .footer-widget .footer-inner .footer-social-list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer-widget .footer-inner .footer-social-list .lists a {
  color: var(--light-color);
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 30px;
  width: 30px;
  border-radius: 5px;
  background: #fff;
  -webkit-transition: 300ms;
  transition: 300ms;
}
@media only screen and (max-width: 575.98px) {
  .footer-widget .footer-inner .footer-social-list .lists a {
    font-size: 18px;
    height: 35px;
    width: 35px;
  }
}
@media only screen and (max-width: 375px) {
  .footer-widget .footer-inner .footer-social-list .lists a {
    height: 30px;
    width: 30px;
  }
}
.footer-widget .footer-inner .footer-social-list .lists a:hover {
  color: #fff;
  background: var(--main-color-one);
}
.footer-widget .footer-inner .subscribe-para {
  font-size: 16px;
  color: var(--light-color);
}
.footer-widget .footer-inner .subscribe-form {
  margin-top: 30px;
}
.footer-widget .footer-inner .subscribe-form .widget-form-single {
  position: relative;
}
.footer-widget .footer-inner .subscribe-form .widget-form-single .form--control {
  width: 100%;
  height: 55px;
  line-height: 55px;
  border-radius: 5px;
  background: #fff;
  color: var(--light-color);
  border: 1px solid #fff;
  padding: 0 60px 0 20px;
  -webkit-box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}
.footer-widget .footer-inner .subscribe-form .widget-form-single .form--control::-webkit-input-placeholder {
  color: var(--extra-light-color);
  font-size: 16px;
}
.footer-widget .footer-inner .subscribe-form .widget-form-single .form--control::-moz-placeholder {
  color: var(--extra-light-color);
  font-size: 16px;
}
.footer-widget .footer-inner .subscribe-form .widget-form-single .form--control:-ms-input-placeholder {
  color: var(--extra-light-color);
  font-size: 16px;
}
.footer-widget .footer-inner .subscribe-form .widget-form-single .form--control::-ms-input-placeholder {
  color: var(--extra-light-color);
  font-size: 16px;
}
.footer-widget .footer-inner .subscribe-form .widget-form-single .form--control::placeholder {
  color: var(--extra-light-color);
  font-size: 16px;
}
.footer-widget .footer-inner .subscribe-form .widget-form-single .form--control:focus {
  border: 1px solid rgba(var(--main-color-one-rgb), 0.2);
  -webkit-box-shadow: 0 0 20px rgba(var(--main-color-one-rgb), 0.1);
  box-shadow: 0 0 20px rgba(var(--main-color-one-rgb), 0.1);
}
.footer-widget .footer-inner .subscribe-form .widget-form-single button {
  outline: none;
  border: 0;
  position: absolute;
  top: 0;
  right: 0;
  height: 45px;
  width: 50px;
  background: var(--main-color-one);
  font-size: 20px;
  color: #fff;
  border-radius: 3px;
  margin: 5px;
  cursor: pointer;
}
.footer-widget .footer-inner .footer-recent-single:not(:last-child) {
  margin-bottom: 30px;
}
.footer-widget .footer-inner .footer-recent-single .footer-recent-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .footer-widget .footer-inner .footer-recent-single .footer-recent-flex {
    gap: 10px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .footer-widget .footer-inner .footer-recent-single .footer-recent-flex {
    gap: 10px;
  }
}
@media only screen and (max-width: 767.98px) {
  .footer-widget .footer-inner .footer-recent-single .footer-recent-flex {
    gap: 10px;
  }
}
.footer-widget .footer-inner .footer-recent-single .footer-recent-flex .recents-thumbs {
  max-width: 130px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .footer-widget .footer-inner .footer-recent-single .footer-recent-flex .recents-thumbs {
    max-width: 100px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .footer-widget .footer-inner .footer-recent-single .footer-recent-flex .recents-thumbs {
    max-width: 90px;
  }
}
@media only screen and (max-width: 767.98px) {
  .footer-widget .footer-inner .footer-recent-single .footer-recent-flex .recents-thumbs {
    max-width: 90px;
  }
}
.footer-widget .footer-inner .footer-recent-single .footer-recent-flex .footer-recent-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.footer-widget .footer-inner .footer-recent-single .footer-recent-flex .footer-recent-text .footer-recent-para {
  color: var(--light-color);
  font-size: 18px;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .footer-widget .footer-inner .footer-recent-single .footer-recent-flex .footer-recent-text .footer-recent-para {
    font-size: 17px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .footer-widget .footer-inner .footer-recent-single .footer-recent-flex .footer-recent-text .footer-recent-para {
    font-size: 16px;
    font-weight: 400;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .footer-widget .footer-inner .footer-recent-single .footer-recent-flex .footer-recent-text .footer-recent-para {
    font-size: 16px;
    font-weight: 400;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .footer-widget .footer-inner .footer-recent-single .footer-recent-flex .footer-recent-text .footer-recent-para {
    font-weight: 400;
    font-size: 16px;
  }
}
.footer-widget .footer-inner .payment-list {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .footer-widget .footer-inner .payment-list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px 15px;
  }
}
@media only screen and (max-width: 767.98px) {
  .footer-widget .footer-inner .payment-list {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.footer-widget .footer-inner .privacy-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 767.98px) {
  .footer-widget .footer-inner .privacy-list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer-widget .footer-inner .privacy-list li {
  position: relative;
  z-index: 2;
}
.footer-widget .footer-inner .privacy-list li:hover a {
  color: var(--main-color-one);
}
.footer-widget .footer-inner .privacy-list li:not(:last-child) {
  padding-right: 20px;
}
.footer-widget .footer-inner .privacy-list li:not(:first-child) {
  padding-left: 20px;
}
.footer-widget .footer-inner .privacy-list li:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  height: 20px;
  width: 2px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: var(--extra-light-color);
}
.footer-widget .footer-inner .privacy-list li a {
  color: var(--light-color);
}
.footer-widget .footer-inner .footer-call {
  display: block;
  color: var(--light-color);
  -webkit-transition: 300ms;
  transition: 300ms;
}
.footer-widget .footer-inner .footer-call:hover {
  color: var(--main-color-one);
}
.footer-widget .footer-inner .footer-contact .contact-item {
  display: block;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}
.footer-widget .footer-inner .footer-contact .contact-item:not(:first-child) {
  margin-top: 20px;
}
.footer-widget .footer-inner .footer-contact .contact-item:hover {
  color: var(--main-color-one);
}
.footer-widget .footer-inner .footer-menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 20px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .footer-widget .footer-inner .footer-menu-list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer-widget .footer-inner .footer-menu-list .list {
  font-size: 15px;
  font-weight: 500;
  color: var(--light-color);
  -webkit-transition: 300ms;
  transition: 300ms;
}
.footer-widget .footer-inner .footer-menu-list .list:hover {
  color: var(--main-color-one);
}

.copyright-area {
  padding: 25px 0;
}
.copyright-area.copyright-border {
  border-top: 1px solid #ebebeb;
}
.copyright-area.copyright-border.white-color {
  border-color: rgba(221, 221, 221, 0.3);
}
.copyright-area.style-02 {
  padding: 0 0 25px;
}
.copyright-area .copyright-contents {
  font-size: 16px;
  color: var(--light-color);
  text-align: center;
}
@media only screen and (max-width: 767.98px) {
  .copyright-area .copyright-contents {
    text-align: center;
    margin-top: 10px;
  }
}
.copyright-area .copyright-contents a {
  color: var(--main-color-one);
  font-weight: 500;
}

.white-color .footer-widget .widget-title {
  color: #fff;
}
.white-color .footer-widget .footer-inner .subscribe-para {
  color: #fff;
}
.white-color .footer-widget .footer-inner .footer-link-list .list a {
  color: #fff;
}
.white-color .footer-widget .footer-inner .footer-link-list .list a:hover {
  color: var(--main-color-one);
}
.white-color .footer-widget .footer-inner .footer-link-address .list .address {
  color: #fff;
}
.white-color .footer-widget .footer-inner .footer-link-address .list .address:hover {
  color: var(--main-color-one);
}
.white-color .footer-widget .footer-inner .footer-social-list .lists a {
  background: #DDD;
  color: rgba(255, 255, 255, 0.7);
}
.white-color .footer-widget .footer-inner .footer-social-list .lists a:hover {
  background: var(--main-color-one);
  color: #fff;
}
.white-color .footer-widget .footer-inner .subscribe-form .widget-form-single .form--control {
  -webkit-box-shadow: 0 0 10px rgba(221, 221, 221, 0.2);
          box-shadow: 0 0 10px rgba(221, 221, 221, 0.2);
}
.white-color .footer-widget .footer-inner .payment-list .list {
  background: #fff;
}
.white-color .footer-widget .footer-inner .footer-contact .contact-item {
  color: #fff;
}

.footer-middle-border div[class*=col] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .footer-middle-border div[class*=col] {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.footer-middle-border div[class*=col]:not(:first-child) .footer-widget::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 2px;
  left: -50px;
  top: 0;
  background: rgba(var(--main-color-one-rgb), 0.1);
  z-index: 0;
}
@media (min-width: 1600px) and (max-width: 1849.98px) {
  .footer-middle-border div[class*=col]:not(:first-child) .footer-widget::before {
    left: -25%;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .footer-middle-border div[class*=col]:not(:first-child) .footer-widget::before {
    left: -20%;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .footer-middle-border div[class*=col]:not(:first-child) .footer-widget::before {
    left: -15%;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .footer-middle-border div[class*=col]:not(:first-child) .footer-widget::before {
    left: -10%;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .footer-middle-border div[class*=col]:not(:first-child) .footer-widget::before {
    display: none;
  }
}

.theme-three-footer-border {
  border-top: 2px solid #F2F3F5;
}

/* Tabs Design */
.tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
.tabs li {
  font-size: 16px;
  font-weight: 400;
  color: var(--light-color);
  line-height: 28px;
  cursor: pointer;
  -webkit-transition: 300ms;
  transition: 300ms;
}
/*---------------------------------------
    11. Faq
---------------------------------------*/
.faq-wrapper {
  padding-left: 100px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .faq-wrapper {
    padding-left: 60px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .faq-wrapper {
    padding-left: 40px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .faq-wrapper {
    padding-left: 0;
  }
}

.faq-contents .faq-item {
  padding: 0 30px;
}
@media only screen and (max-width: 480px) {
  .faq-contents .faq-item {
    padding: 0 20px;
  }
}
.faq-contents .faq-item.open {
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
  -webkit-box-shadow: 0 0 20px rgba(221, 221, 221, 0.5);
  box-shadow: 0 0 20px rgba(221, 221, 221, 0.5);
  padding: 30px 30px;
}
@media only screen and (max-width: 480px) {
  .faq-contents .faq-item.open {
    padding: 20px;
  }
}
.faq-contents .faq-item.open .faq-title {
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.faq-contents .faq-item.open .faq-title::after {
  content: "";
}
.faq-contents .faq-item.open .faq-panel .faq-para {
  color: var(--light-color);
}
.faq-contents .faq-item.active .faq-panel {
  display: block;
}
.faq-contents .faq-item:not(:first-child) {
  margin-top: 24px;
}
.faq-contents .faq-item .faq-title {
  font-size: 28px;
  font-weight: 400;
  line-height: 36px;
  color: var(--heading-color);
  font-family: var(--heading-font);
  padding: 0px;
  background: none;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  z-index: 1;
  -webkit-transition: 300ms;
  transition: 300ms;
  margin-right: 30px;
  margin-top: -5px;
}
.faq-contents .faq-item .faq-title::after {
  content: "";
  font-family: "Line Awesome Free";
  font-weight: 900;
  position: absolute;
  right: -30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 300ms;
  transition: 300ms;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .faq-contents .faq-item .faq-title {
    font-size: 24px;
    line-height: 32px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .faq-contents .faq-item .faq-title {
    font-size: 24px;
    line-height: 32px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .faq-contents .faq-item .faq-title {
    font-size: 22px;
    line-height: 28px;
  }
}
@media only screen and (max-width: 575.98px) {
  .faq-contents .faq-item .faq-title {
    font-size: 20px;
  }
}
@media only screen and (max-width: 375px) {
  .faq-contents .faq-item .faq-title {
    font-size: 18px;
  }
}
.faq-contents .faq-item .faq-panel {
  padding-top: 20px;
  display: none;
}
.faq-contents .faq-item .faq-panel .faq-para {
  font-size: 16px;
  line-height: 30px;
  color: var(--light-color);
}
@media only screen and (max-width: 767.98px) {
  .faq-contents .faq-item .faq-panel .faq-para {
    font-size: 15px;
  }
}
@media only screen and (max-width: 375px) {
  .faq-contents .faq-item .faq-panel .faq-para {
    font-size: 14px;
  }
}

/*---------------------------------------
    ## Back Top
---------------------------------------*/
.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--main-color-one);
  color: #fff;
  text-align: center;
  line-height: 50px;
  border-radius: 5px;
  z-index: 99;
  font-size: 25px;
  cursor: pointer;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  display: none;
}
@media only screen and (max-width: 575.98px) {
  .back-to-top {
    height: 40px;
    width: 40px;
    font-size: 22px;
    line-height: 40px;
    bottom: 20px;
    right: 20px;
  }
}

.back-to-top.theme-one {
  background-color: var(--main-color-two);
}

.back-to-top.theme-two {
  background-color: var(--main-color-three);
}

.back-to-top.theme-three {
  background-color: var(--main-color-four);
}

/* Custom Form */
.single-flex-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
}
@media only screen and (max-width: 480px) {
  .single-flex-input {
    display: block;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.single-input {
  width: 100%;
}
.single-input .label-title {
  font-size: 16px;
  line-height: 28px;
  font-weight: 500;
  display: block;
  margin-bottom: 12px;
}
@media only screen and (max-width: 480px) {
  .single-input .label-title {
    font-size: 15px;
  }
}
@media only screen and (max-width: 375px) {
  .single-input .label-title {
    font-size: 14px;
  }
}
.single-input .form--control {
  width: 100%;
  height: 55px;
  line-height: 55px;
  padding: 0 15px;
  border: 1px solid rgba(221, 221, 221, 0.3);
  background-color: unset;
  outline: none;
  color: var(--light-color);
  -webkit-transition: 300ms;
  transition: 300ms;
  -webkit-box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}
.single-input .form--control:focus {
  border-color: rgba(var(--main-color-one-rgb), 0.3);
  -webkit-box-shadow: 0 0 10px rgba(var(--main-color-one-rgb), 0.1);
  box-shadow: 0 0 10px rgba(var(--main-color-one-rgb), 0.1);
}
@media only screen and (max-width: 480px) {
  .single-input .form--control {
    font-size: 15px;
  }
}
@media only screen and (max-width: 375px) {
  .single-input .form--control {
    font-size: 14px;
  }
}
.single-input .textarea--form {
  height: 100px;
  line-height: 28px;
  padding: 15px;
}

.submit-btn {
  border: 2px solid var(--main-color-one);
  background-color: var(--main-color-one);
  color: #fff;
  padding: 12px 20px;
  -webkit-transition: 300ms;
  transition: 300ms;
}
.submit-btn:hover {
  background-color: unset;
  color: var(--main-color-one);
}

.checkbox-inlines {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  cursor: pointer;
  gap: 10px;
}
.checkbox-inlines .check-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 18px;
  width: 18px;
  cursor: pointer;
  background: #fff;
  border: 1px solid #dddddd;
  border-radius: 0px;
  margin-top: 4px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.checkbox-inlines .check-input::after {
  content: "";
  font-family: "Line Awesome Free";
  font-weight: 900;
  font-size: 10px;
  color: #fff;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: scale(1.6) rotate(90deg);
  transform: scale(1.6) rotate(90deg);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.checkbox-inlines .check-input:checked {
  background: var(--main-color-one);
  border-color: var(--main-color-one);
  background: var(--main-color-one);
}
.checkbox-inlines .check-input:checked::after {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1.2) rotate(0deg);
  transform: scale(1.2) rotate(0deg);
}
.checkbox-inlines .checkbox-label {
  cursor: pointer;
  text-align: left;
  line-height: 26px;
  font-size: 16px;
  font-weight: 400;
  color: var(--heading-color);
  margin: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media only screen and (max-width: 575.98px) {
  .checkbox-inlines .checkbox-label {
    font-size: 15px;
  }
}

/*---------------------------------------
    ## Button
---------------------------------------*/
.btn-wrapper {
  display: block;
}
.btn-wrapper .cmn-btn {
  color: var(--paragraph-color);
  font-size: 16px;
  font-weight: 500;
  font-family: var(--body-font);
  display: inline-block;
  border-radius: 5px;
  text-align: center;
  cursor: pointer;
  line-height: 34px;
  padding: 10px 35px;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
@media only screen and (max-width: 575.98px) {
  .btn-wrapper .cmn-btn {
    padding: 10px 25px;
    font-size: 15px;
    line-height: 28px;
  }
}
@media only screen and (max-width: 375px) {
  .btn-wrapper .cmn-btn {
    padding: 5px 15px;
    font-size: 14px;
  }
}
.btn-wrapper .cmn-btn-bg-1 {
  background: var(--main-color-one);
  color: #fff;
  border: 2px solid var(--main-color-one);
}
.btn-wrapper .cmn-btn-bg-1:hover {
  background: none;
  color: var(--main-color-one);
}
.btn-wrapper .cmn-btn-bg-2 {
  background: var(--main-color-two);
  color: #fff;
  border: 2px solid var(--main-color-two);
}
.btn-wrapper .cmn-btn-bg-2:hover {
  background: none;
  color: var(--main-color-two);
}
.btn-wrapper .cmn-btn-bg-3 {
  background: var(--main-color-three);
  color: #fff;
  border: 2px solid var(--main-color-three);
}
.btn-wrapper .cmn-btn-bg-3:hover {
  background: none;
  color: var(--main-color-three);
}
.btn-wrapper .cmn-btn-bg-4 {
  background: var(--main-color-four);
  color: #fff;
  border: 2px solid var(--main-color-four);
}
.btn-wrapper .cmn-btn-bg-4:hover {
  background: none;
  color: var(--main-color-four);
}
.btn-wrapper .cmn-btn-bg-5 {
  background: var(--main-color-five);
  color: #333;
  border: 2px solid var(--main-color-five);
}
.btn-wrapper .cmn-btn-bg-5:hover {
  background: none;
  color: var(--main-color-five);
}
.btn-wrapper .cmn-btn-bg-white {
  background: #fff;
  color: var(--heading-color);
}
.btn-wrapper .cmn-btn-bg-white:hover {
  background: var(--main-color-one);
  color: #fff;
}
.btn-wrapper .cmn-btn-bg-white.hover-bg-two:hover {
  background: var(--main-color-two);
  color: #fff;
}
.btn-wrapper .cmn-btn-bg-white.hover-bg-three:hover {
  background: var(--main-color-three);
  color: #fff;
}
.btn-wrapper .cmn-btn-bg-white.hover-bg-four:hover {
  background: var(--main-color-four);
  color: #fff;
}
.btn-wrapper .cmn-btn-white {
  background-color: #fff;
  border: 3px solid #fff;
}
.btn-wrapper .cmn-btn-white.color-one {
  color: var(--main-color-one);
}
.btn-wrapper .cmn-btn-white.color-one:hover {
  background: var(--main-color-one);
  color: #fff;
}
.btn-wrapper .cmn-btn-white.color-two {
  color: var(--main-color-two);
}
.btn-wrapper .cmn-btn-white.color-two:hover {
  background: var(--main-color-two);
  color: #fff;
}
.btn-wrapper .cmn-btn-white.color-three {
  color: var(--main-color-three);
}
.btn-wrapper .cmn-btn-white.color-three:hover {
  background: var(--main-color-three);
  color: #fff;
}
.btn-wrapper .cmn-btn-white.color-four {
  color: var(--main-color-four);
}
.btn-wrapper .cmn-btn-white.color-four:hover {
  background: var(--main-color-four);
  color: #fff;
}
.btn-wrapper .cmn-btn-medium {
  padding: 7px 25px;
}
@media only screen and (max-width: 375px) {
  .btn-wrapper .cmn-btn-medium {
    padding: 5px 15px;
    font-size: 14px;
  }
}
.btn-wrapper .cmn-btn-small {
  padding: 5px 18px;
}
@media only screen and (max-width: 375px) {
  .btn-wrapper .cmn-btn-small {
    padding: 5px 15px;
    font-size: 14px;
  }
}
.btn-wrapper .cmn-btn.extra-width {
  width: 220px;
}
.btn-wrapper .cmn-btn-bg-heading {
  background: var(--heading-color);
  color: #fff;
}
.btn-wrapper .cmn-btn-bg-steam {
  background: #DDD;
  color: var(--heading-color);
}
.btn-wrapper .cmn-btn.btn-border {
  border: 1px solid #ddd;
}
.btn-wrapper .cmn-btn-outline-steam {
  border: 2px solid #DDD;
  color: var(--heading-color);
}
.btn-wrapper .cmn-btn-outline-steam:hover {
  background: #DDD;
  color: #fff;
}
.btn-wrapper .cmn-btn-outline-one {
  padding: 7px 35px;
  border: 2px solid var(--main-color-one);
}
.btn-wrapper .cmn-btn-outline-one.color-one {
  color: var(--main-color-one);
}
.btn-wrapper .cmn-btn-outline-one:hover {
  background: var(--main-color-one);
  color: #fff;
}
.btn-wrapper .cmn-btn-outline-two {
  padding: 7px 35px;
  border: 2px solid var(--main-color-two);
}
.btn-wrapper .cmn-btn-outline-two.color-two {
  color: var(--main-color-two);
}
.btn-wrapper .cmn-btn-outline-two:hover {
  background: var(--main-color-two);
  color: #fff;
}
.btn-wrapper .cmn-btn-outline-three {
  padding: 7px 35px;
  border: 2px solid var(--main-color-three);
}
.btn-wrapper .cmn-btn-outline-three.color-three {
  color: var(--main-color-three);
}
.btn-wrapper .cmn-btn-outline-three:hover {
  background: var(--main-color-three);
  color: #fff;
}
.btn-wrapper .cmn-btn-outline-four {
  padding: 7px 35px;
  border: 2px solid var(--main-color-four);
}
.btn-wrapper .cmn-btn-outline-four.color-four {
  color: var(--main-color-four);
}
.btn-wrapper .cmn-btn-outline-four:hover {
  background: var(--main-color-four);
  color: #fff;
}

.shop-now-btn {
  display: inline-block;
  font-weight: 500;
  color: var(--heading-color);
  -webkit-transition: 300ms;
  transition: 300ms;
  position: relative;
}
.shop-now-btn:hover {
  color: var(--main-color-three);
}
.shop-now-btn:hover.shop-now-border::before {
  width: 100%;
  background-color: var(--main-color-three);
}
.shop-now-btn.shop-now-border {
  padding-bottom: 7px;
}
.shop-now-btn.shop-now-border::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  background: var(--heading-color);
  height: 2px;
  width: 50%;
  -webkit-transition: 300ms;
  transition: 300ms;
}

.btn-buy {
  font-size: 20px;
  font-weight: 500;
  margin-top: 20px;
  display: inline-block;
  -webkit-transition: 300ms;
  transition: 300ms;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .btn-buy {
    font-size: 16px;
    margin-top: 10px;
  }
}
@media only screen and (max-width: 375px) {
  .btn-buy {
    margin-top: 10px;
  }
}
.btn-buy:hover {
  text-decoration: underline;
}
.btn-buy:hover.icon::before {
  text-decoration: none;
  display: inherit;
}
.btn-buy.icon::before {
  content: "";
  font-family: "font Awesome 5 Free";
  font-weight: 900;
  font-size: 16px;
  margin-right: 5px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-buy.btn-color-two {
  color: var(--main-color-two);
}
.btn-buy.btn-color-three {
  color: var(--main-color-three);
}
.btn-buy.btn-color-four {
  color: var(--main-color-four);
}

.btn-color-one {
  color: var(--main-color-one);
}
.btn-color-one:hover {
  color: var(--main-color-one);
}

.home-21 .btn-wrapper .cmn-btn {
  font-family: var(--body-font-home-21);
}

.submit-style, .checkout-form .btn-submit, .order-track-contents .btn-submit {
  border: 2px solid var(--main-color-two);
  background-color: var(--main-color-two);
  color: #fff;
  padding: 12px 20px;
}

/*-------------------------
    Section Title
-------------------------*/
.section-title {
  text-align: center;
  gap: 20px;
  padding-bottom: 10px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .section-title {
    padding-bottom: 0;
  }
}
.section-title.text-left {
  text-align: left;
}
.section-title.white-color {
  color: #fff;
}
.section-title.white-color .title {
  color: #fff;
}
.section-title.center-text {
  text-align: center;
}
.section-title.section-border-bottom {
  border-bottom: 1px solid rgba(221, 221, 221, 0.4);
  padding-bottom: 30px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .section-title.section-border-bottom {
    padding-bottom: 20px;
  }
}
.section-title.theme-one {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.section-title.theme-one .title {
  font-size: 36px;
  font-weight: 500;
  line-height: 42px;
  color: var(--heading-color);
  font-family: var(--jost-font);
  position: relative;
  margin: -6px 0 0;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .section-title.theme-one .title {
    font-size: 34px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .section-title.theme-one .title {
    font-size: 32px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .section-title.theme-one .title {
    font-size: 30px;
    line-height: 36px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .section-title.theme-one .title {
    font-size: 28px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 575.98px) {
  .section-title.theme-one .title {
    font-size: 26px;
    line-height: 32px;
  }
}
@media only screen and (max-width: 375px) {
  .section-title.theme-one .title {
    font-size: 25px;
    line-height: 28px;
  }
}
.section-title.theme-two {
  display: block;
  max-width: 510px;
  margin: auto;
  text-align: center;
}
.section-title.theme-two .title {
  font-size: 40px;
  font-weight: 500;
  line-height: 50px;
  color: var(--heading-color);
  position: relative;
  margin: -7px 0 0;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .section-title.theme-two .title {
    font-size: 38px;
    line-height: 48px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .section-title.theme-two .title {
    font-size: 36px;
    line-height: 42px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .section-title.theme-two .title {
    font-size: 34px;
    line-height: 42px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .section-title.theme-two .title {
    font-size: 34px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 480px) {
  .section-title.theme-two .title {
    font-size: 32px;
    line-height: 32px;
  }
}
@media only screen and (max-width: 375px) {
  .section-title.theme-two .title {
    font-size: 30px;
  }
}
.section-title.theme-two .para {
  font-size: 16px;
  line-height: 26px;
  margin-top: 20px;
}
.section-title.theme-three {
  display: block;
  max-width: 510px;
  margin: auto;
  text-align: center;
}
.section-title.theme-three .title {
  font-size: 42px;
  font-weight: 400;
  line-height: 45px;
  color: var(--heading-color);
  position: relative;
  margin: -7px 0 0;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .section-title.theme-three .title {
    font-size: 40px;
    line-height: 45px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .section-title.theme-three .title {
    font-size: 36px;
    line-height: 42px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .section-title.theme-three .title {
    font-size: 34px;
    line-height: 42px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .section-title.theme-three .title {
    font-size: 32px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 480px) {
  .section-title.theme-three .title {
    font-size: 30px;
    line-height: 32px;
  }
}
@media only screen and (max-width: 375px) {
  .section-title.theme-three .title {
    font-size: 28px;
  }
}
.section-title.theme-three .para {
  font-size: 16px;
  line-height: 26px;
  margin-top: 20px;
}
.section-title .title {
  font-size: 56px;
  font-weight: 400;
  line-height: 70px;
  color: var(--heading-color);
  margin: -12px 0 0 0;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .section-title .title {
    font-size: 52px;
    line-height: 60px;
    margin: -10px 0 0;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .section-title .title {
    font-size: 48px;
    line-height: 60px;
    margin: -10px 0 0;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .section-title .title {
    font-size: 42px;
    line-height: 50px;
    margin: -9px 0 0;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .section-title .title {
    font-size: 36px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 575.98px) {
  .section-title .title {
    font-size: 32px;
    line-height: 32px;
  }
}
@media only screen and (max-width: 375px) {
  .section-title .title {
    font-size: 28px;
    line-height: 28px;
  }
}
.section-title .title .section-shape {
  position: relative;
  z-index: 1;
}
.section-title .title .section-shape::before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 35px;
  background-image: url(../img/title_s.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
}
.section-title .section-para {
  font-size: 18px;
  line-height: 28px;
  margin-top: 20px;
}

.section-title-btn .view-all {
  padding: 10px 30px;
  font-size: 16px;
  font-weight: 400;
  color: var(--light-color);
  border: 1px solid var(--light-color);
  -webkit-transition: 300ms;
  transition: 300ms;
}
.section-title-btn .view-all:hover {
  background-color: var(--light-color);
  color: #fff;
}

/* Global Ratings */
@media only screen and (max-width: 375px) {
  .center-text .rating-wrap {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.rating-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.rating-wrap .ratings {
  position: relative;
  z-index: 0;
  width: 80px;
  height: 16px;
  display: inline-block;
}
@media only screen and (max-width: 480px) {
  .rating-wrap .ratings {
    width: 75px;
  }
}
@media only screen and (max-width: 375px) {
  .rating-wrap .ratings {
    width: 70px;
  }
}
.rating-wrap .ratings span {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  line-height: 16px;
}
.rating-wrap .ratings span.hide-rating:after {
  color: var(--light-color);
}
.rating-wrap .ratings span.show-rating:after {
  color: #FABE50;
}
.rating-wrap .ratings span.show-rating {
  width: 88%;
}
.rating-wrap .ratings span:after {
  position: absolute;
  left: 0;
  top: 0;
  content: "" "" "" "" "";
  width: 100%;
  font-family: "Line Awesome Free";
  font-weight: 900;
}
.rating-wrap .total-ratings {
  margin-left: 5px;
}

/* Price Updated Through */
@media only screen and (max-width: 375px) {
  .center-text .price-update-through {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.price-update-through {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.price-update-through .flash-prices {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 500;
}
.price-update-through .flash-prices.color-one {
  color: var(--main-color-one);
}
.price-update-through .flash-prices.color-two {
  color: var(--main-color-two);
}
.price-update-through .flash-prices.color-three {
  color: var(--main-color-three);
}
.price-update-through .flash-prices.color-four {
  color: var(--main-color-four);
}
.price-update-through .flash-prices.hover-color-one:hover {
  color: var(--main-color-one);
}
.price-update-through .flash-prices.hover-color-two:hover {
  color: var(--main-color-two);
}
.price-update-through .flash-prices.hover-color-three:hover {
  color: var(--main-color-three);
}
.price-update-through .flash-prices.hover-color-four:hover {
  color: var(--main-color-four);
}
.price-update-through .flash-old-prices {
  text-decoration: line-through;
  font-size: 16px;
  font-weight: 400;
  color: var(--extra-light-color);
}

/* Counter  */
.counter-area {
  position: relative;
  z-index: 1;
}

.counter-shape img {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 2;
}

.counter-wrapper {
  padding: 65px 0 80px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .counter-wrapper {
    padding: 35px 0 50px;
  }
}
.counter-wrapper-border {
  border: 2px dashed var(--main-color-one);
}

.center-text .single-counter-count {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.single-counter-count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  margin: -8px 0 0;
}
.single-counter-count.border-counter {
  padding-bottom: 20px;
}
.single-counter-count.border-counter::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: var(--main-color-one);
  height: 3px;
  width: 50px;
}
.single-counter-count .odometer {
  font-size: 42px;
  line-height: 36px;
  font-weight: 700;
  font-family: var(--heading-font);
  color: var(--heading-color);
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .single-counter-count .odometer {
    font-size: 36px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .single-counter-count .odometer {
    font-size: 32px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-counter-count .odometer {
    font-size: 30px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .single-counter-count .odometer {
    font-size: 36px;
  }
}
@media only screen and (max-width: 480px) {
  .single-counter-count .odometer {
    font-size: 32px;
  }
}
@media only screen and (max-width: 375px) {
  .single-counter-count .odometer {
    font-size: 28px;
  }
}
.single-counter-count-title {
  font-size: 56px;
  font-weight: 400;
  line-height: 50px;
}
@media (min-width: 1600px) and (max-width: 1849.98px) {
  .single-counter-count-title {
    font-size: 52px;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .single-counter-count-title {
    font-size: 48px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .single-counter-count-title {
    font-size: 40px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-counter-count-title {
    font-size: 36px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .single-counter-count-title {
    font-size: 36px;
  }
}
@media only screen and (max-width: 480px) {
  .single-counter-count-title {
    font-size: 32px;
  }
}
@media only screen and (max-width: 375px) {
  .single-counter-count-title {
    font-size: 28px;
  }
}
.single-counter-para {
  font-size: 20px;
  line-height: 30px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .single-counter-para {
    font-size: 18px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-counter-para {
    font-size: 16px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .single-counter-para {
    font-size: 16px;
  }
}
@media only screen and (max-width: 480px) {
  .single-counter-para {
    font-size: 15px;
  }
}

.theme-one .single-counter-count-title {
  font-size: 48px;
  line-height: 48px;
  margin-top: -12px;
}
.theme-one .counter-wrapper-border {
  border: 2px dashed var(--main-color-two);
}
.theme-one .single-counter-count.border-counter::before {
  background-color: var(--main-color-two);
}

/* Countdown Css */
.countdown-para {
  line-height: 30px;
}

.global-timer .syotimer__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: distribute;
  gap: 24px 50px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .global-timer .syotimer__body {
    gap: 24px 20px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .global-timer .syotimer__body {
    gap: 24px 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .global-timer .syotimer__body {
    gap: 24px 20px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .global-timer .syotimer__body {
    gap: 24px 20px;
  }
}
.global-timer .syotimer__body .syotimer-cell {
  text-align: center;
  position: relative;
  z-index: 1;
}
.global-timer .syotimer__body .syotimer-cell .syotimer-cell__value {
  font-size: 36px;
  color: var(--main-color-two);
  font-weight: 600;
  line-height: 42px;
  font-family: var(--jost-font);
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .global-timer .syotimer__body .syotimer-cell .syotimer-cell__value {
    font-size: 18px;
  }
}
@media only screen and (max-width: 375px) {
  .global-timer .syotimer__body .syotimer-cell .syotimer-cell__value {
    font-size: 17px;
  }
}
@media only screen and (max-width: 375px) {
  .global-timer .syotimer__body .syotimer-cell .syotimer-cell__value {
    font-size: 16px;
  }
}
.global-timer .syotimer__body .syotimer-cell .syotimer-cell__unit {
  font-size: 20px;
  text-transform: capitalize;
  font-weight: 500;
  line-height: 30px;
  font-family: var(--jost-font);
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .global-timer .syotimer__body .syotimer-cell .syotimer-cell__unit {
    font-size: 16px;
  }
}
@media only screen and (max-width: 375px) {
  .global-timer .syotimer__body .syotimer-cell .syotimer-cell__unit {
    font-size: 13px;
  }
}

.center-text .global-timer .syotimer__body {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* Ui Range Slider */
.price-range-slider {
  padding: 0 10px;
}
.price-range-slider .ui-range-slider.noUi-target {
  position: relative;
  border-radius: 3px;
  height: 3px;
}
.price-range-slider .ui-range-slider.noUi-target .noUi-handle {
  top: -12px;
  left: -3px;
  width: 12px;
  height: 12px;
  border-radius: 0%;
  display: inline-block;
  position: relative;
  z-index: 1;
  cursor: pointer;
  background: var(--main-color-two);
}
.price-range-slider .ui-range-slider.noUi-target .noUi-handle.noUi-handle-upper::before {
  background-color: var(--main-color-two);
}
.price-range-slider .ui-range-slider.noUi-target .noUi-handle::before {
  content: "";
  position: absolute;
  background: #fff;
  height: 8px;
  width: 8px;
  border-radius: 0%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: inline-block;
}
.price-range-slider .ui-range-slider.noUi-target .noUi-base .noUi-origin {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.price-range-slider .ui-range-slider.noUi-target .noUi-base .noUi-connect {
  background: var(--main-color-two);
}
.price-range-slider .ui-range-slider-footer {
  display: table;
  width: 100%;
  padding-top: 20px;
}
.price-range-slider .ui-range-slider-footer .ui-range-values {
  display: inline-block;
  color: var(--heading-color);
}
.price-range-slider .ui-range-slider-footer .ui-range-values .ui-price-title {
  font-size: 18px;
  font-weight: 400;
  margin-right: 10px;
  color: var(--light-color);
}
.price-range-slider .ui-range-slider-footer .ui-range-values .ui-range-value-min,
.price-range-slider .ui-range-slider-footer .ui-range-values .ui-range-value-max {
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  color: var(--heading-color);
}
.noUi-background {
  background: #DDDDDD;
}

[dir=rtl] .price-range-slider .ui-range-slider.noUi-target .noUi-base .noUi-origin {
  right: auto;
  left: 0;
}

[dir=rtl] .price-range-slider .ui-range-slider.noUi-target .noUi-base .noUi-connect {
  background: var(--main-color-one);
}

/*=========================================================
          [ Table ]
=========================================================*/
.custom--table {
  width: 100%;
  color: inherit;
  vertical-align: middle;
  font-weight: 400;
  text-align: center;
}

.custom--table thead {
  font-weight: 700;
  font-size: 18px;
  background: inherit;
  color: inherit;
  font-size: 18px;
  font-weight: 500;
  font-family: var(--heading-font);
}

.custom--table tbody {
  border-top: 0;
  overflow: hidden;
  border-radius: 10px;
}

.custom--table tbody tr:nth-child(odd) {
  background-color: inherit;
}

.custom--table tbody tr:nth-child(even) {
  background-color: inherit;
}

.custom--table tr th {
  font-size: 18px;
  font-weight: 500;
  color: var(--light-color);
}

.custom--table tr td {
  font-size: 18px;
  color: var(--heading-color);
  padding: 20px 0;
  line-height: 22px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .custom--table tr td {
    padding: 10px 0;
  }
}
.custom--table tr td:last-child {
  padding: 0;
}

[data-label] {
  position: relative;
}

[data-label]::before {
  position: absolute;
  content: attr(data-label);
  font-weight: 600;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 10px;
  padding: 8px 20px;
  display: none;
  font-size: 18px;
}

@media (max-width: 991px) {
  .table-responsive {
    overflow-x: unset;
  }

  .table-responsive thead {
    display: none;
  }

  .table-responsive thead tr {
    display: block;
  }

  .table-responsive thead tr .check-all-rows {
    display: block;
  }

  .table-responsive [data-label]::before {
    display: block;
  }

  .table-responsive tr td {
    display: block;
    text-align: right;
    padding-right: 5px;
  }

  .table-responsive [data-label]::before {
    padding: 8px 10px 8px 5px;
  }
}
@media (max-width: 991px) {
  .table-responsive [data-label]::before {
    padding: 8px 10px 8px 5px;
    font-size: 16px;
  }
}
/* Isotope List */
.filter-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px 20px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .filter-list {
    gap: 10px;
  }
}
.filter-list .list {
  font-size: 16px;
  line-height: 26px;
  cursor: pointer;
  -webkit-transition: 200ms;
  transition: 200ms;
}

.store-isotope-list {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.store-isotope-list .list {
  display: inline-block;
  font-weight: 500;
  color: var(--heading-color);
  -webkit-transition: 300ms;
  transition: 300ms;
  position: relative;
  padding-bottom: 10px;
}
.store-isotope-list .list:hover {
  color: var(--main-color-one);
}
.store-isotope-list .list:hover::before {
  width: 100%;
  visibility: visible;
  opacity: 1;
}
.store-isotope-list .list::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  background-color: var(--main-color-one);
  height: 2px;
  width: 0%;
  -webkit-transition: 300ms;
  transition: 300ms;
  visibility: hidden;
  opacity: 0;
}
.store-isotope-list .list.active {
  color: var(--main-color-one);
}
.store-isotope-list .list.active::before {
  width: 100%;
  visibility: visible;
  opacity: 1;
}

/* Breadcrumb area */
.breadcrumb-area {
  position: relative;
}

.breadcrumb-padding {
  padding: 200px 0 0;
}

.breadcrumb-padding-two {
  padding: 40px 0;
}

.breadcrumb-padding-three {
  padding: 40px 0 50px;
}

.breadcrumb-shapes img:nth-child(1) {
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 0;
  -webkit-animation: 12s floating_long linear infinite;
          animation: 12s floating_long linear infinite;
}
.breadcrumb-shapes img:nth-child(2) {
  position: absolute;
  right: 0;
  top: 50%;
  z-index: 0;
  -webkit-animation: 10s floating_long linear infinite;
          animation: 10s floating_long linear infinite;
}

.breadcrumb-contents-title-two {
  font-size: 36px;
  line-height: 42px;
  margin: -10px 0 0;
}
.breadcrumb-contents-title {
  font-size: 48px;
  font-weight: 400;
  line-height: 60px;
  margin: -10px 0 0;
  color: var(--heading-color);
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .breadcrumb-contents-title {
    font-size: 36px;
    line-height: 48px;
  }
}
@media only screen and (max-width: 480px) {
  .breadcrumb-contents-title {
    font-size: 32px;
    line-height: 42px;
  }
}
@media only screen and (max-width: 375px) {
  .breadcrumb-contents-title {
    font-size: 28px;
    line-height: 36px;
  }
}
.breadcrumb-contents-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: -5px;
}
.breadcrumb-contents-list-item {
  font-size: 18px;
  font-weight: 500;
  color: var(--light-color);
  position: relative;
  -webkit-transition: 200ms;
  transition: 200ms;
}
.breadcrumb-contents-list-item:hover {
  color: var(--main-color-one);
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .breadcrumb-contents-list-item {
    font-size: 16px;
  }
}
@media only screen and (max-width: 480px) {
  .breadcrumb-contents-list-item {
    font-size: 15px;
  }
}
@media only screen and (max-width: 375px) {
  .breadcrumb-contents-list-item {
    font-size: 14px;
  }
}
.breadcrumb-contents-list-item:not(:last-child) {
  padding-right: 20px;
}
.breadcrumb-contents-list-item:not(:last-child)::after {
  position: absolute;
  content: "";
  height: 15px;
  width: 2px;
  background-color: var(--extra-light-color);
  right: 0;
  top: 50%;
  /* IE 9 */
  -webkit-transform: translateY(-50%);
  /* Chrome, Safari, Opera */
  transform: translateY(-50%);
}
.breadcrumb-contents-list-item:not(:first-child) {
  padding-left: 20px;
}

.theme-one .breadcrumb-contents-list-item:hover {
  color: var(--main-color-two);
}

.theme-two .breadcrumb-contents-list-item:hover {
  color: var(--main-color-three);
}

.theme-three .breadcrumb-contents-list-item:hover {
  color: var(--main-color-four);
}

/* Promo area */
.single-promo {
  position: relative;
}
.single-promo.promo-padding {
  padding: 40px;
}
.single-promo-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px 20px;
}
.single-promo-icon {
  color: var(--main-color-two);
  font-size: 40px;
}
.single-promo-contents-title {
  font-size: 22px;
  line-height: 30px;
  color: var(--heading-color);
}
.single-promo-contents-para {
  font-size: 16px;
  font-weight: 400;
  color: var(--extra-light-color);
}

.color-one .single-promo-icon {
  color: var(--main-color-one);
}

.color-three .single-promo-icon {
  color: var(--main-color-three);
}

.theme-three .theme-three-padding {
  padding-right: 60px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .theme-three .theme-three-padding {
    padding-right: 0;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .theme-three .theme-three-padding {
    padding-right: 0;
  }
}
.theme-three .single-promo-icon {
  color: var(--main-color-four);
  font-size: 70px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .theme-three .single-promo-icon {
    font-size: 60px;
  }
}
@media only screen and (max-width: 575.98px) {
  .theme-three .single-promo-icon {
    font-size: 50px;
  }
}

.promo-inner-border div[class*=col]:not(:nth-child(3n+1)) .single-promo::before {
  content: "";
  position: absolute;
  left: -50px;
  top: 0;
  height: 100%;
  width: 2px;
  background-color: #F2F3F5;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .promo-inner-border div[class*=col]:not(:nth-child(3n+1)) .single-promo::before {
    left: -18px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .promo-inner-border div[class*=col]:not(:nth-child(3n+1)) .single-promo::before {
    display: none;
  }
}

/* About area */
.about-contents {
  margin-bottom: 50px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .about-contents {
    margin-bottom: 0;
  }
}
.about-contents-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .about-contents-flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.about-contents-title {
  font-size: 80px;
  font-weight: 400;
  color: var(--heading-color);
  line-height: 100px;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  padding-right: 70px;
  margin: -18px 0 0;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .about-contents-title {
    font-size: 75px;
    line-height: 85px;
    padding-right: 50px;
    margin: -12px 0 0;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .about-contents-title {
    font-size: 65px;
    line-height: 75px;
    padding-right: 50px;
    margin: -12px 0 0;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .about-contents-title {
    font-size: 55px;
    line-height: 70px;
    padding-right: 50px;
    margin: -12px 0 0;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .about-contents-title {
    font-size: 52px;
    line-height: 70px;
    margin: 0;
    padding-right: 0;
  }
}
@media only screen and (max-width: 767.98px) {
  .about-contents-title {
    font-size: 42px;
    line-height: 60px;
  }
}
@media only screen and (max-width: 575.98px) {
  .about-contents-title {
    font-size: 36px;
    line-height: 48px;
  }
}
@media only screen and (max-width: 480px) {
  .about-contents-title {
    font-size: 32px;
    line-height: 42px;
  }
}
@media only screen and (max-width: 375px) {
  .about-contents-title {
    font-size: 26px;
    line-height: 36px;
  }
}
.about-contents-para {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  font-size: 24px;
  line-height: 42px;
  color: var(--light-color);
  margin: -9px 0 0;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .about-contents-para {
    font-size: 22px;
    line-height: 36px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .about-contents-para {
    font-size: 20px;
    line-height: 36px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .about-contents-para {
    font-size: 18px;
    line-height: 36px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .about-contents-para {
    font-size: 18px;
    line-height: 32px;
    margin: 10px 0 0;
  }
}
@media only screen and (max-width: 575.98px) {
  .about-contents-para {
    font-size: 16px;
    line-height: 28px;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
  }
}
@media only screen and (max-width: 375px) {
  .about-contents-para {
    font-size: 15px;
    line-height: 28px;
  }
}

.title-shapes {
  position: relative;
  z-index: 1;
}
.title-shapes::before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 35px;
  background-image: url(../img/about/title-line-shapes.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
}

/* About Theme */
.about-thumb-wrappers .about-thumbs img {
  width: 100%;
  padding-right: 30px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .about-thumb-wrappers .about-thumbs img {
    padding-right: 0;
  }
}

.about-content-theme-title {
  font-size: 46px;
  line-height: 60px;
  margin: -13px 0 0;
}
.about-content-theme-single-title {
  font-size: 28px;
  line-height: 36px;
  margin: -10px 0 0;
}
.about-content-theme-single-para {
  font-size: 16px;
  line-height: 26px;
}

/*---------------------------------------
    Global Card Area
---------------------------------------*/
.global-card {
  -webkit-box-shadow: 0 0 10px rgba(221, 221, 221, 0.5);
  box-shadow: 0 0 10px rgba(221, 221, 221, 0.5);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.global-card.center-text {
  text-align: center;
}
.global-card.center-text .single-global-card {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.global-card:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}
.global-card:hover .global-card-thumb img {
  -webkit-transform: rotate(5deg) scale(1.2);
  transform: rotate(5deg) scale(1.2);
}
.global-card:hover .global-card-thumb.selling-thumb-overlay::before {
  visibility: visible;
  opacity: 1;
}
.global-card:hover .global-card-thumb .global-card-thumb-icons {
  visibility: visible;
  opacity: 1;
  bottom: 20px;
}
.global-card.radius-0 .global-thumb-icons .lists .icon {
  border-radius: 0;
}
.global-card-thumb {
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.global-card-thumb img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 100%;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .global-card-thumb img {
    width: 100%;
  }
}
.global-card-thumb-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 9;
  display: block;
}
.global-card-thumb-badge.right-side {
  left: auto;
  right: 10px;
}
.global-card-thumb-badge-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 500;
  font-size: 12px;
  line-height: 20px;
  padding: 3px 12px;
  color: #fff;
  background-color: var(--main-color-two);
}
.global-card-thumb-badge-box:not(:last-child) {
  margin-bottom: 10px;
}
.global-card-thumb-badge-box.bg-color-stock {
  background-color: var(--stock-color);
}
.global-card-thumb-badge-box.bg-color-one {
  background-color: var(--main-color-one);
}
.global-card-thumb-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  position: absolute;
  bottom: -100px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 9;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.global-card-thumb-icons.hover-color-two .icon-list .icon:hover {
  background: var(--main-color-two);
  color: #fff;
}
.global-card-thumb-icons.hover-color-three .icon-list .icon:hover {
  background: var(--main-color-three);
  color: #fff;
}
.global-card-thumb-icons.hover-color-four .icon-list .icon:hover {
  background: var(--main-color-four);
  color: #fff;
}
.global-card-thumb-icons .icon-list .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 48px;
  width: 48px;
  border-radius: 5px;
  background: #fff;
  color: var(--light-color);
  font-size: 24px;
  -webkit-box-shadow: 0 0 5px rgba(221, 221, 221, 0.2);
          box-shadow: 0 0 5px rgba(221, 221, 221, 0.2);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.global-card-thumb-icons .icon-list .icon:hover {
  background: var(--main-color-two);
  color: #fff;
}
.global-card-contents {
  padding: 25px 20px 30px;
}
.global-card-contents-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.global-card-contents-title {
  font-size: 20px;
  font-weight: 500;
  color: var(--heading-color);
}

.global-flex-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .global-flex-card {
    gap: 20px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .global-flex-card {
    gap: 20px;
  }
}
@media only screen and (max-width: 575.98px) {
  .global-flex-card {
    display: block;
  }
}
.global-flex-card-thumb {
  width: 405px;
  height: 405px;
  position: relative;
  z-index: 1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .global-flex-card-thumb {
    width: 320px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .global-flex-card-thumb {
    width: 280px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .global-flex-card-thumb {
    width: 270px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .global-flex-card-thumb {
    width: 270px;
  }
}
@media only screen and (max-width: 767.98px) {
  .global-flex-card-thumb {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 375px) {
  .global-flex-card-thumb {
    width: 100%;
  }
}
.global-flex-card-contents {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.global-flex-card-contents-title {
  font-size: 24px;
  line-height: 32px;
}
.global-flex-card-contents-para {
  font-size: 16px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .global-flex-card-contents-para {
    -webkit-line-clamp: 3;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .global-flex-card-contents-para {
    -webkit-line-clamp: 3;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .global-flex-card-contents-para {
    -webkit-line-clamp: 3;
  }
}
.global-flex-card-contents-para.extra-padding-right {
  padding-right: 220px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .global-flex-card-contents-para.extra-padding-right {
    padding-right: 50px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .global-flex-card-contents-para.extra-padding-right {
    padding-right: 0;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .global-flex-card-contents-para.extra-padding-right {
    padding-right: 0;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .global-flex-card-contents-para.extra-padding-right {
    padding-right: 0;
  }
}
.global-flex-card-contents-bottom.border-flex-card {
  border-top: 2px solid rgba(221, 221, 221, 0.5);
}
.global-flex-card-contents-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .global-flex-card-contents-icon {
    gap: 10px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .global-flex-card-contents-icon {
    gap: 10px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .global-flex-card-contents-icon {
    gap: 10px;
  }
}
.global-flex-card-contents .icon-list .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 50px;
  width: 50px;
  background-color: rgba(221, 221, 221, 0.5);
  color: var(--heading-color);
  font-size: 24px;
  -webkit-transition: 300ms;
  transition: 300ms;
}
.global-flex-card-contents .icon-list .icon:hover {
  background-color: var(--main-color-two);
  color: #fff;
}

.pb-0 .global-card-contents {
  padding: 25px 0 0;
}

.special-offer-small {
  display: block;
}
.special-offer-small img {
  width: unset;
}

.center-text .single-global-card {
  display: -ms-grid;
  display: grid;
}
.center-text .rating-wrap {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.center-text .global-card-left {
  margin-right: 0;
}
@media only screen and (max-width: 375px) {
  .center-text .global-card-left {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-right: 0;
  }
}
.center-text .price-update-through {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* Cart Loading css */
.cart-loading {
  position: relative;
  z-index: 0;
}
.cart-loading img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 9;
  height: auto;
  width: auto;
  visibility: hidden;
  opacity: 0;
}
.cart-loading.active-loading::before {
  visibility: visible;
  opacity: 1;
}
.cart-loading::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: rgba(var(--main-color-one-rgb), 0.9);
  border-color: rgba(var(--main-color-one-rgb), 0.9);
  color: #fff;
  border: 2px solid transparent;
  top: 0;
  left: 0;
  text-align: center;
  border-radius: 5px;
  z-index: 5;
  visibility: hidden;
  opacity: 0;
  /*background-image: url(../../../img/loading-cart.gif);*/
  background-repeat: no-repeat;
  background-position: center;
}
.cart-loading.bg-two::before {
  background-color: var(--main-color-two);
  color: #fff;
}
.cart-loading.bg-three::before {
  background-color: var(--main-color-three);
  color: #fff;
}

/* Shop Area */
.shop-area {
  overflow: hidden;
}

.shop-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .shop-right {
    gap: 12px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 24px;
  }
}
@media only screen and (max-width: 767.98px) {
  .shop-right {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-top: 20px;
  }
}

.shop-nice-select .nice-select {
  font-size: 16px;
  color: var(--light-color);
  border: 1px solid rgba(221, 221, 221, 0.4);
  outline: none;
  height: 48px;
  line-height: 48px;
}
@media only screen and (max-width: 575.98px) {
  .shop-nice-select .nice-select {
    padding: 0 30px 0 0;
    font-size: 15px;
  }
}
@media only screen and (max-width: 375px) {
  .shop-nice-select .nice-select {
    padding: 0 25px 0 10px;
    font-size: 14px;
  }
}
.shop-nice-select .nice-select::after {
  border-bottom: 2px solid var(--light-color);
  border-right: 2px solid var(--light-color);
  right: 10px;
}
.shop-nice-select .nice-select .list {
  min-width: 100% !important;
}

.single-shops {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 20px;
}
.single-shops .shop-flex-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.single-shops .shop-icons {
  font-size: 24px;
  height: 40px;
  width: 40px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.single-shops .shop-icons.active {
  background: #F2F3F5;
}

.selectder-filter-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 20px;
}
.selectder-filter-contents .selected-clear-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 20px;
}
.selectder-filter-contents .selected-flex-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 20px;
}
.selectder-filter-contents .selected-flex-list li {
  font-size: 16px;
  color: var(--extra-light-colors);
  line-height: 26px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media only screen and (max-width: 575.98px) {
  .selectder-filter-contents .selected-flex-list li {
    font-size: 15px;
  }
}
@media only screen and (max-width: 375px) {
  .selectder-filter-contents .selected-flex-list li {
    font-size: 14px;
  }
}
.selectder-filter-contents .selected-flex-list li a {
  color: var(--light-color);
  position: relative;
  z-index: 2;
  padding-right: 20px;
}
@media only screen and (max-width: 480px) {
  .selectder-filter-contents .selected-flex-list li a {
    padding-right: 15px;
  }
}
@media only screen and (max-width: 375px) {
  .selectder-filter-contents .selected-flex-list li a {
    padding-right: 10px;
  }
}
.selectder-filter-contents .selected-flex-list li a:hover {
  color: var(--main-color-two);
}
.selectder-filter-contents .selected-flex-list li a:hover::after {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}
.selectder-filter-contents .selected-flex-list li a::after {
  content: "";
  font-family: "Line Awesome Free";
  font-weight: 900;
  position: absolute;
  right: -8px;
  -webkit-transition: all 100ms;
  transition: all 100ms;
}
@media only screen and (max-width: 375px) {
  .selectder-filter-contents .selected-flex-list li a::after {
    font-size: 14px;
    right: -6px;
  }
}
@media only screen and (max-width: 480px) {
  .selectder-filter-contents .selected-flex-list li a::after {
    right: -7px;
  }
}

.shop-sidebar-all {
  position: sticky;
  top: 0;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .shop-sidebar-all {
    position: unset;
  }
}

.shop-contents-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 30px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .shop-contents-wrapper {
    display: block;
  }
}
.shop-contents-wrapper.style-02 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.shop-contents-wrapper.style-02 .shop-close-main {
  left: auto;
  right: 0%;
}
.shop-contents-wrapper.style-02 .shop-close-main.active {
  right: 0;
}
.shop-contents-wrapper.style-02 .shop-close-main .close-bars {
  right: auto;
  left: -40px;
}
@media only screen and (max-width: 375px) {
  .shop-contents-wrapper.style-02 .shop-close-main .close-bars {
    left: -28px;
  }
}
.shop-contents-wrapper.style-02 .shop-icon .sidebar-icon {
  margin-left: auto;
}
.shop-contents-wrapper .shop-sidebar-content {
  min-width: 400px;
  width: 400px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .shop-contents-wrapper .shop-sidebar-content {
    min-width: 300px;
    width: 300px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .shop-contents-wrapper .shop-sidebar-content {
    min-width: 250px;
    width: 250px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .shop-contents-wrapper .shop-sidebar-content {
    min-width: 375px;
    width: 375px;
  }
}
.shop-contents-wrapper .shop-grid-contents {
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.single-shop-left {
  padding: 0px;
  padding-right: 30px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .single-shop-left {
    padding-right: 0px;
  }
}
.single-shop-left-search-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  width: 100%;
}
.single-shop-left-search-input .form--control {
  height: 55px;
  background-color: #fff;
  border: 0;
  border-bottom: 2px solid rgba(221, 221, 221, 0.5);
  width: 100%;
  padding: 0 15px;
  -webkit-box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  -webkit-transition: 300ms;
  transition: 300ms;
}
.single-shop-left-search-input .form--control:focus {
  -webkit-box-shadow: 0 0 20px rgba(var(--main-color-two-rgb), 0.1);
  box-shadow: 0 0 20px rgba(var(--main-color-two-rgb), 0.1);
  border-color: rgba(var(--main-color-two-rgb), 0.5);
}
.single-shop-left-search-input button {
  height: 55px;
  padding: 0px 20px;
  font-size: 22px;
  background-color: var(--main-color-two);
  color: #fff;
  border: 0;
  outline: none;
}
.single-shop-left .shop-left-title.open .title::after {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}
.single-shop-left .shop-left-title .title {
  cursor: pointer;
  position: relative;
  font-size: 20px;
  line-height: 36px;
  margin: -10px 0 0;
}
.single-shop-left .shop-left-title .title.title-borders {
  border-bottom: 2px solid rgba(221, 221, 221, 0.5);
  padding-bottom: 10px;
}
.single-shop-left .shop-left-title .title::after {
  content: "";
  font-family: "Line Awesome Free";
  font-weight: 900;
  font-size: 16px;
  position: absolute;
  right: 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
.single-shop-left .shop-left-title .shop-left-list .category-lists .list {
  font-size: 16px;
  line-height: 26px;
  position: relative;
  text-align: left;
  z-index: 2;
  padding-left: 0px;
  -webkit-transition: 300ms;
  transition: 300ms;
}
.single-shop-left .shop-left-title .shop-left-list .category-lists .list .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 0;
  -webkit-transition: 300ms;
  transition: 300ms;
}
.single-shop-left .shop-left-title .shop-left-list .category-lists .list.active > a {
  color: var(--main-color-two);
  font-weight: 600;
}
.single-shop-left .shop-left-title .shop-left-list .category-lists .list:hover > a {
  color: var(--main-color-two);
  font-weight: 600;
}
.single-shop-left .shop-left-title .shop-left-list .category-lists .list:last-child a {
  padding-bottom: 0;
}
.single-shop-left .shop-left-title .shop-left-list .size-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.single-shop-left .shop-left-title .shop-left-list .size-lists .list.active a {
  border: 2px solid var(--main-color-two);
  color: var(--main-color-two);
  font-weight: 500;
}
.single-shop-left .shop-left-title .shop-left-list .size-lists .list:hover a {
  border: 2px solid var(--main-color-two);
  color: var(--main-color-two);
  font-weight: 500;
}
.single-shop-left .shop-left-title .shop-left-list .size-lists .list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 40px;
  width: 40px;
  font-size: 15px;
  background: #fff;
  color: var(--light-color);
  border: 1px solid var(--light-color);
  border-radius: 0;
}
.single-shop-left .shop-left-title .shop-left-list .color-lists .list {
  font-size: 16px;
  line-height: 26px;
  position: relative;
  text-align: left;
  z-index: 2;
  padding-left: 0px;
  -webkit-transition: 300ms;
  transition: 300ms;
}
.single-shop-left .shop-left-title .shop-left-list .color-lists .list .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 0;
  -webkit-transition: 300ms;
  transition: 300ms;
}
.single-shop-left .shop-left-title .shop-left-list .color-lists .list.active > a {
  color: var(--main-color-two);
  font-weight: 600;
}
.single-shop-left .shop-left-title .shop-left-list .color-lists .list:hover > a {
  color: var(--main-color-two);
  font-weight: 600;
}
.single-shop-left .shop-left-title .shop-left-list .color-lists .list:last-child a {
  padding-bottom: 0;
}
.single-shop-left .shop-left-title .shop-left-list .filter-lists .list {
  position: relative;
  z-index: 2;
  display: block;
  padding-left: 0px;
  margin-top: 10px;
}
.single-shop-left .shop-left-title .shop-left-list .filter-lists .list.active label {
  color: var(--main-color-two);
  font-weight: 500;
}
.single-shop-left .shop-left-title .shop-left-list .filter-lists .list input[type=radio] {
  display: none;
}
.single-shop-left .shop-left-title .shop-left-list .filter-lists .list label {
  position: relative;
  color: var(--extra-light-color);
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 0px;
  cursor: pointer;
  gap: 10px;
  -webkit-transition: 300ms;
  transition: 300ms;
}
.single-shop-left .shop-left-title .shop-left-list .filter-lists .list label:hover {
  color: var(--main-color-two);
  font-weight: 500;
}
.single-shop-left .shop-left-title .shop-left-list .filter-lists .list label:before {
  content: "";
  height: 20px;
  width: 20px;
  border: 2px solid var(--extra-light-color);
  border-radius: 50%;
  background-color: #fff;
}
.single-shop-left .shop-left-title .shop-left-list .filter-lists .list input[type=radio]:checked + label::before {
  height: 20px;
  width: 20px;
  border: 6px solid var(--main-color-two);
  background: #fff;
  color: var(--heading-color);
}
.single-shop-left .shop-left-title .shop-left-list .tag-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-top: 30px;
}
.single-shop-left .shop-left-title .shop-left-list .tag-lists .list.active a {
  border: 2px solid var(--main-color-two);
  color: var(--main-color-two);
}
.single-shop-left .shop-left-title .shop-left-list .tag-lists .list a {
  border: 1px solid rgba(221, 221, 221, 0.5);
  font-size: 15px;
  color: var(--light-color);
  padding: 7px 10px;
  display: inline-block;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .single-shop-left .shop-left-title .shop-left-list .tag-lists .list a {
    padding: 7px 10px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-shop-left .shop-left-title .shop-left-list .tag-lists .list a {
    padding: 7px 10px;
  }
}
@media only screen and (max-width: 575.98px) {
  .single-shop-left .shop-left-title .shop-left-list .tag-lists .list a {
    font-size: 15px;
  }
}
@media only screen and (max-width: 375px) {
  .single-shop-left .shop-left-title .shop-left-list .tag-lists .list a {
    font-size: 14px;
    padding: 5px 15px;
  }
}
.single-shop-left .shop-left-title .shop-left-list .tag-lists .list a:hover {
  border: 2px solid var(--main-color-two);
  color: var(--main-color-two);
}

.shop-icon {
  display: none;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .shop-icon {
    display: block;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .shop-icon .sidebar-icon {
    font-size: 24px;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 40px;
    width: 40px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: var(--main-color-two);
    -webkit-box-shadow: 0 0 10px rgba(221, 221, 221, 0.5);
    box-shadow: 0 0 10px rgba(221, 221, 221, 0.5);
    z-index: 95;
    color: #fff;
    margin-bottom: 20px;
  }
}

@media (min-width: 300px) and (max-width: 991.98px) {
  .shop-close-main {
    z-index: 1;
    position: absolute;
    left: -100%;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    z-index: 99;
    background: #fff;
    max-width: 375px;
    display: block;
    padding: 20px;
    transition: all 0.5s;
  }
  .shop-close-main.active {
    visibility: visible;
    opacity: 1;
    left: 0;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
}
@media only screen and (min-width: 300px) and (max-width: 991.98px) and (max-width: 480px) {
  .shop-close-main {
    max-width: 320px;
  }
}
@media only screen and (min-width: 300px) and (max-width: 991.98px) and (max-width: 375px) {
  .shop-close-main {
    max-width: 270px;
  }
}
.shop-close-main .close-bars {
  display: none;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .shop-close-main .close-bars {
    display: block;
    position: absolute;
    right: -40px;
    top: 0;
    font-size: 24px;
    color: #fff;
    background: var(--main-color-two);
    -webkit-box-shadow: 0 0 10px rgba(221, 221, 221, 0.5);
    box-shadow: 0 0 10px rgba(221, 221, 221, 0.5);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 40px;
    width: 40px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }
}
@media only screen and (min-width: 300px) and (max-width: 991.98px) and (max-width: 375px) {
  .shop-close-main .close-bars {
    height: 28px;
    width: 28px;
    font-size: 20px;
    right: -28px;
  }
}

@media (min-width: 300px) and (max-width: 991.98px) {
  .responsive-overlay {
    position: fixed;
    height: 100vh;
    width: 100%;
    top: 0;
    left: 100%;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    background: rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .responsive-overlay.active {
    visibility: visible;
    opacity: 1;
    z-index: 99;
    left: 0;
  }
}

.recent-post-contents .recent-post-single:not(:last-child) {
  margin-bottom: 20px;
}
.recent-post-contents .recent-post-single .recent-post-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media only screen and (max-width: 480px) {
  .recent-post-contents .recent-post-single .recent-post-flex {
    display: block;
  }
}
.recent-post-contents .recent-post-single .recent-post-flex .recent-post-thumb {
  margin-right: 15px;
  height: 80px;
  min-width: 80px;
  display: inline-block;
}
@media only screen and (max-width: 480px) {
  .recent-post-contents .recent-post-single .recent-post-flex .recent-post-thumb {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
.recent-post-contents .recent-post-single .recent-post-flex .recent-post-thumb img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.recent-post-contents .recent-post-single .recent-post-flex .recent-blog-contents .recent-post-title {
  font-size: 18px;
  line-height: 28px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
@media only screen and (max-width: 480px) {
  .recent-post-contents .recent-post-single .recent-post-flex .recent-blog-contents .recent-post-title {
    font-size: 16px;
    line-height: 24px;
  }
}
.recent-post-contents .recent-post-single .recent-post-flex .recent-blog-contents .recent-date {
  display: block;
  margin-top: 5px;
}

.sidebar-search-form .single-search-sidebar {
  position: relative;
  z-index: 1;
}
.sidebar-search-form .single-search-sidebar .form--control {
  border: 0;
  background: rgba(221, 221, 221, 0.2);
  padding: 0 40px 0 15px;
}
.sidebar-search-form .single-search-sidebar button {
  position: absolute;
  right: 15px;
  top: 0;
  height: 100%;
  background: none;
  font-size: 20px;
  z-index: 2;
  border: 0;
  cursor: pointer;
  outline: none;
}

[dir=rtl] .shop-close-main {
  left: auto;
  right: -100%;
}
[dir=rtl] .shop-close-main.active {
  left: auto;
  right: 0%;
}
[dir=rtl] .shop-close-main .close-bars {
  right: auto;
  left: -40px;
}

/* Discount Css */
.discount-padding {
  padding: 10px 20px;
}

.discount-card:hover .global-card-thumb .global-card-thumb-icons {
  bottom: 50%;
  /* IE 9 */
  -webkit-transform: translateY(-50%);
  /* Chrome, Safari, Opera */
  transform: translateY(-50%);
}
.discount-card .global-card-thumb-icons {
  bottom: 100px;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.discount-timer {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
  margin: 0 20px;
  z-index: 95;
}
.discount-timer .global-timer .syotimer__body {
  gap: 10px 15px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .discount-timer .global-timer .syotimer__body {
    gap: 10px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .discount-timer .global-timer .syotimer__body {
    gap: 10px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .discount-timer .global-timer .syotimer__body {
    gap: 10px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .discount-timer .global-timer .syotimer__body {
    gap: 10px;
  }
}
.discount-timer .global-timer .syotimer__body .syotimer-cell .syotimer-cell__value {
  font-size: 32px;
  line-height: 36px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .discount-timer .global-timer .syotimer__body .syotimer-cell .syotimer-cell__value {
    font-size: 28px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .discount-timer .global-timer .syotimer__body .syotimer-cell .syotimer-cell__value {
    font-size: 28px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .discount-timer .global-timer .syotimer__body .syotimer-cell .syotimer-cell__value {
    font-size: 28px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .discount-timer .global-timer .syotimer__body .syotimer-cell .syotimer-cell__value {
    font-size: 28px;
  }
}
.discount-timer .global-timer .syotimer__body .syotimer-cell .syotimer-cell__unit {
  font-size: 18px;
  line-height: 28px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .discount-timer .global-timer .syotimer__body .syotimer-cell .syotimer-cell__unit {
    font-size: 16px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .discount-timer .global-timer .syotimer__body .syotimer-cell .syotimer-cell__unit {
    font-size: 16px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .discount-timer .global-timer .syotimer__body .syotimer-cell .syotimer-cell__unit {
    font-size: 16px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .discount-timer .global-timer .syotimer__body .syotimer-cell .syotimer-cell__unit {
    font-size: 16px;
  }
}

/* Blog Details area */
.single-blog-details-thumb img {
  width: 100%;
}
.single-blog-details-content {
  padding: 30px 0 55px;
  border-bottom: 2px solid rgba(221, 221, 221, 0.5);
}
.single-blog-details-content-title {
  font-size: 48px;
  line-height: 60px;
  font-weight: 400;
  margin: -9px 0 0;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .single-blog-details-content-title {
    font-size: 42px;
    line-height: 48px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-blog-details-content-title {
    font-size: 42px;
    line-height: 48px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .single-blog-details-content-title {
    font-size: 36px;
    line-height: 48px;
  }
}
@media only screen and (max-width: 575.98px) {
  .single-blog-details-content-title {
    font-size: 32px;
    line-height: 42px;
  }
}
@media only screen and (max-width: 480px) {
  .single-blog-details-content-title {
    font-size: 28px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 375px) {
  .single-blog-details-content-title {
    font-size: 26px;
    line-height: 36px;
  }
}
.single-blog-details-content-para {
  font-size: 16px;
  line-height: 28px;
  color: var(--light-color);
}
.single-blog-details-content-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.single-blog-details-content-tags-item {
  font-size: 16px;
  color: var(--extra-light-color);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.single-blog-details-content-tags-item:not(:last-child) {
  padding-right: 20px;
}
.single-blog-details-content-tags-item:not(:first-child) {
  padding-left: 20px;
}
.single-blog-details-content-tags-item:not(:first-child)::before {
  content: "";
  position: absolute;
  height: 10px;
  width: 10px;
  left: -5px;
  top: 50%;
  /* IE 9 */
  -webkit-transform: translateY(-50%);
  /* Chrome, Safari, Opera */
  transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--main-color-one);
  border-radius: 50%;
}
.single-blog-details-content-tags-item a {
  position: relative;
  font-weight: 500;
  color: var(--light-color);
  -webkit-transition: 200ms;
  transition: 200ms;
}
.single-blog-details-content-tags-item a:hover {
  color: var(--main-color-one);
}
.single-blog-details-content-tags-item a:not(:last-child)::after {
  content: ",";
  margin: 0 5px;
}

blockquote {
  padding: 50px;
  position: relative;
  border-left: 5px solid var(--main-color-one);
}
@media (min-width: 300px) and (max-width: 991.98px) {
  blockquote {
    padding: 20px;
  }
}
@media only screen and (max-width: 375px) {
  blockquote {
    padding: 15px;
  }
}
blockquote .blockquote-contents-title {
  font-size: 36px;
  line-height: 50px;
  font-weight: 400;
  margin: -10px 0 0;
  color: var(--heading-color);
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  blockquote .blockquote-contents-title {
    font-size: 32px;
    line-height: 45px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  blockquote .blockquote-contents-title {
    font-size: 28px;
    line-height: 42px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  blockquote .blockquote-contents-title {
    font-size: 26px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 767.98px) {
  blockquote .blockquote-contents-title {
    font-size: 24px;
  }
}
@media only screen and (max-width: 575.98px) {
  blockquote .blockquote-contents-title {
    font-size: 22px;
    line-height: 32px;
  }
}
@media only screen and (max-width: 480px) {
  blockquote .blockquote-contents-title {
    font-size: 18px;
  }
}
@media only screen and (max-width: 375px) {
  blockquote .blockquote-contents-title {
    font-size: 16px;
    line-height: 28px;
  }
}

/* Blog Details Tag */
.blog-details-share-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .blog-details-share-content {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.blog-details-share-content.right-align {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .blog-details-share-content.right-align {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.blog-details-share-content-title {
  font-size: 24px;
  line-height: 28px;
  color: var(--heading-color);
  font-weight: 400;
  margin-top: 2px;
}
.blog-details-share-content .blog-details-share-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.blog-details-share-content .blog-details-share-social-list-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 3px;
  height: 40px;
  width: 40px;
  font-size: 20px;
  background-color: #f2f2f2;
  color: var(--heading-color);
  -webkit-transition: 200ms;
  transition: 200ms;
}
.blog-details-share-content .blog-details-share-social-list-icon:hover {
  background-color: var(--main-color-one);
  color: #fff;
}
.blog-details-share-content .blog-details-tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.blog-details-share-content .blog-details-tag-list-item {
  font-size: 16px;
  border: 1px solid rgba(221, 221, 221, 0.5);
  padding: 10px 20px;
  color: var(--heading-color);
  border-radius: 3px;
  -webkit-transition: 200ms;
  transition: 200ms;
}
.blog-details-share-content .blog-details-tag-list-item:hover {
  background-color: var(--main-color-one);
  color: #fff;
}

/* Blog Details Comment area */
/* Comment Output */
.details-section-title {
  font-size: 36px;
  font-weight: 500;
  line-height: 50px;
  margin: -10px 0 0;
  color: var(--heading-color);
  position: relative;
  padding-bottom: 15px;
}
.details-section-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 70px;
  background-color: var(--main-color-one);
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .details-section-title {
    font-size: 32px;
    line-height: 42px;
  }
}
@media only screen and (max-width: 480px) {
  .details-section-title {
    font-size: 28px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 375px) {
  .details-section-title {
    font-size: 26px;
  }
}

.details-comment-content .single-commetns {
  width: 100%;
  margin-top: 30px;
}
.details-comment-content .single-commetns .comment-label {
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  color: var(--heading-color);
  display: block;
  margin-bottom: 15px;
}
.details-comment-content .single-commetns .form--control {
  height: 60px;
  border: 1px solid rgba(221, 221, 221, 0.2);
  outline: none;
  -webkit-box-shadow: 0 0 10px #fff;
  box-shadow: 0 0 10px #fff;
  font-size: 14px;
  line-height: 22px;
  color: var(--light-color);
  padding: 0 20px;
  width: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.details-comment-content .single-commetns .form--control:focus {
  -webkit-box-shadow: 0 0 18px rgba(var(--main-color-one-rgb), 0.1);
  box-shadow: 0 0 18px rgba(var(--main-color-one-rgb), 0.1);
  border-color: rgba(var(--main-color-one-rgb), 0.3);
}
.details-comment-content .single-commetns .form--message {
  padding: 20px 20px;
  height: 160px;
}

.comments-flex-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 30px;
}
@media only screen and (max-width: 575.98px) {
  .comments-flex-item {
    display: block;
  }
}

.comment-list .comment-list {
  margin-left: 120px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .comment-list .comment-list {
    margin-left: 70px;
  }
}
@media only screen and (max-width: 767.98px) {
  .comment-list .comment-list {
    margin-left: 50px;
  }
}
@media only screen and (max-width: 375px) {
  .comment-list .comment-list {
    margin-left: 30px;
  }
}
.comment-list .blog-details-flex-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 40px 0;
  gap: 30px;
  border-bottom: 2px solid rgba(221, 221, 221, 0.5);
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .comment-list .blog-details-flex-content {
    gap: 20px;
  }
}
@media only screen and (max-width: 575.98px) {
  .comment-list .blog-details-flex-content {
    gap: 10px;
    padding: 30px 0 20px;
  }
}
@media only screen and (max-width: 480px) {
  .comment-list .blog-details-flex-content {
    display: block;
  }
}
.comment-list .blog-details-flex-content .blog-details-thumb {
  height: 80px;
  min-width: 80px;
  border-radius: 10px;
  display: block;
}
@media only screen and (max-width: 480px) {
  .comment-list .blog-details-flex-content .blog-details-thumb {
    width: 80px;
    margin-bottom: 15px;
  }
}
.comment-list .blog-details-flex-content .blog-details-thumb img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.comment-list .blog-details-flex-content .blog-details-content-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.comment-list .blog-details-flex-content .blog-details-content-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 20px;
}
@media only screen and (max-width: 375px) {
  .comment-list .blog-details-flex-content .blog-details-content-title {
    font-size: 18px;
  }
}
.comment-list .blog-details-flex-content .blog-details-content-para {
  font-size: 18px;
  font-weight: 400;
  color: var(--light-color);
  margin-top: 10px;
  line-height: 30px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .comment-list .blog-details-flex-content .blog-details-content-para {
    font-size: 16px;
  }
}
@media only screen and (max-width: 575.98px) {
  .comment-list .blog-details-flex-content .blog-details-content-para {
    font-size: 15px;
  }
}
@media only screen and (max-width: 375px) {
  .comment-list .blog-details-flex-content .blog-details-content-para {
    font-size: 14px;
  }
}
.comment-list .blog-details-flex-content .blog-details-content-date {
  color: var(--extra-light-color);
  margin-top: 5px;
  display: block;
}
.comment-list .blog-details-flex-content .blog-details-content .btn-replay {
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  background-color: var(--main-color-one);
  color: #fff;
  padding: 5px 10px;
  border-radius: 3px;
  border: 1px solid var(--main-color-one);
  -webkit-transition: 300ms;
  transition: 300ms;
}
.comment-list .blog-details-flex-content .blog-details-content .btn-replay:hover {
  color: var(--main-color-one);
  background-color: unset;
}

.theme-one .single-blog-details-content-tags-item a:hover {
  color: var(--main-color-two);
}
.theme-one .single-blog-details-content-tags-item:not(:first-child)::before {
  background-color: var(--main-color-two);
}
.theme-one blockquote {
  border-left: 5px solid var(--main-color-two);
}
.theme-one .blog-details-share-content .blog-details-share-social-list-icon:hover {
  background-color: var(--main-color-two);
}
.theme-one .blog-details-share-content .blog-details-tag-list-item:hover {
  background-color: var(--main-color-two);
  border-color: var(--main-color-two);
}
.theme-one .details-section-title::before {
  background-color: var(--main-color-two);
}
.theme-one .comment-list .blog-details-flex-content .blog-details-content .btn-replay {
  background-color: var(--main-color-two);
  border-color: var(--main-color-two);
}
.theme-one .comment-list .blog-details-flex-content .blog-details-content .btn-replay:hover {
  color: var(--main-color-two);
  background-color: unset;
}
.theme-one .details-comment-content .single-commetns .form--control:focus {
  border-color: rgba(var(--main-color-two-rgb), 0.3);
  -webkit-box-shadow: 0 0 20px rgba(var(--main-color-two-rgb), 0.1);
          box-shadow: 0 0 20px rgba(var(--main-color-two-rgb), 0.1);
}
.theme-one .submit-btn {
  border-color: var(--main-color-two);
  background-color: var(--main-color-two);
}
.theme-one .submit-btn:hover {
  color: var(--main-color-two);
  background-color: unset;
}

.color-three .single-blog-details-content-tags-item a:hover,
.theme-two .single-blog-details-content-tags-item a:hover {
  color: var(--main-color-three);
}
.color-three .single-blog-details-content-tags-item:not(:first-child)::before,
.theme-two .single-blog-details-content-tags-item:not(:first-child)::before {
  background-color: var(--main-color-three);
}
.color-three blockquote,
.theme-two blockquote {
  border-left: 5px solid var(--main-color-three);
}
.color-three .blog-details-share-content .blog-details-share-social-list-icon:hover,
.theme-two .blog-details-share-content .blog-details-share-social-list-icon:hover {
  background-color: var(--main-color-three);
}
.color-three .blog-details-share-content .blog-details-tag-list-item:hover,
.theme-two .blog-details-share-content .blog-details-tag-list-item:hover {
  background-color: var(--main-color-three);
  border-color: var(--main-color-three);
}
.color-three .details-section-title::before,
.theme-two .details-section-title::before {
  background-color: var(--main-color-three);
}
.color-three .comment-list .blog-details-flex-content .blog-details-content .btn-replay,
.theme-two .comment-list .blog-details-flex-content .blog-details-content .btn-replay {
  background-color: var(--main-color-three);
  border-color: var(--main-color-three);
}
.color-three .comment-list .blog-details-flex-content .blog-details-content .btn-replay:hover,
.theme-two .comment-list .blog-details-flex-content .blog-details-content .btn-replay:hover {
  color: var(--main-color-three);
  background-color: unset;
}
.color-three .details-comment-content .single-commetns .form--control:focus,
.theme-two .details-comment-content .single-commetns .form--control:focus {
  border-color: rgba(var(--main-color-three-rgb), 0.3);
  -webkit-box-shadow: 0 0 20px rgba(var(--main-color-three-rgb), 0.1);
          box-shadow: 0 0 20px rgba(var(--main-color-three-rgb), 0.1);
}
.color-three .submit-btn,
.theme-two .submit-btn {
  border-color: var(--main-color-three);
  background-color: var(--main-color-three);
}
.color-three .submit-btn:hover,
.theme-two .submit-btn:hover {
  color: var(--main-color-three);
  background-color: unset;
}

.color-four .single-blog-details-content-tags-item a:hover,
.theme-three .single-blog-details-content-tags-item a:hover {
  color: var(--main-color-four);
}
.color-four .single-blog-details-content-tags-item:not(:first-child)::before,
.theme-three .single-blog-details-content-tags-item:not(:first-child)::before {
  background-color: var(--main-color-four);
}
.color-four blockquote,
.theme-three blockquote {
  border-left: 5px solid var(--main-color-four);
}
.color-four .blog-details-share-content .blog-details-share-social-list-icon:hover,
.theme-three .blog-details-share-content .blog-details-share-social-list-icon:hover {
  background-color: var(--main-color-four);
}
.color-four .blog-details-share-content .blog-details-tag-list-item:hover,
.theme-three .blog-details-share-content .blog-details-tag-list-item:hover {
  background-color: var(--main-color-four);
  border-color: var(--main-color-four);
}
.color-four .details-section-title::before,
.theme-three .details-section-title::before {
  background-color: var(--main-color-four);
}
.color-four .comment-list .blog-details-flex-content .blog-details-content .btn-replay,
.theme-three .comment-list .blog-details-flex-content .blog-details-content .btn-replay {
  background-color: var(--main-color-four);
  border-color: var(--main-color-four);
}
.color-four .comment-list .blog-details-flex-content .blog-details-content .btn-replay:hover,
.theme-three .comment-list .blog-details-flex-content .blog-details-content .btn-replay:hover {
  color: var(--main-color-four);
  background-color: unset;
}
.color-four .details-comment-content .single-commetns .form--control:focus,
.theme-three .details-comment-content .single-commetns .form--control:focus {
  border-color: rgba(var(--main-color-four-rgb), 0.3);
  -webkit-box-shadow: 0 0 20px rgba(var(--main-color-four-rgb), 0.1);
          box-shadow: 0 0 20px rgba(var(--main-color-four-rgb), 0.1);
}
.color-four .submit-btn,
.theme-three .submit-btn {
  border-color: var(--main-color-four);
  background-color: var(--main-color-four);
}
.color-four .submit-btn:hover,
.theme-three .submit-btn:hover {
  color: var(--main-color-four);
  background-color: unset;
}

/* Feedback area */
.feedback-slide-wrapper {
  padding: 0 100px 0 0;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .feedback-slide-wrapper {
    padding: 0 70px 0 0;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .feedback-slide-wrapper {
    padding: 0 40px 0 0;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .feedback-slide-wrapper {
    padding: 0;
  }
}
@media only screen and (max-width: 575.98px) {
  .feedback-slide-wrapper {
    padding: 0;
  }
}

.feedback-slide-right .slick-slide.slick-current .single-feedback-two {
  background-color: var(--feedback-bg-item);
}

.single-feedback-left-contents-title {
  font-size: 36px;
  line-height: 46px;
}
.single-feedback-left-contents-para-two {
  font-size: 17px;
  color: var(--extra-light-color);
}

.single-feedback-two {
  padding: 40px;
}
.single-feedback-two-contents-para {
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  color: var(--light-color);
}
.single-feedback-two-contents-bottom {
  border-top: 1px solid rgba(var(--main-color-two-rgb), 0.2);
  margin: 20px 0;
}
.single-feedback-two-contents-bottom-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.single-feedback-two-contents-bottom-details-title {
  font-size: 20px;
  line-height: 30px;
  color: var(--heading-color);
}
.single-feedback-two-contents-bottom-quote {
  font-size: 70px;
  font-weight: 700;
  color: var(--main-color-two);
}

/* Team Area */
.team-padding {
  padding: 20px;
}

.single-team {
  -webkit-transition: 300ms;
  transition: 300ms;
}
.single-team:hover {
  /* IE 9 */
  -webkit-transform: translateY(-5px);
  /* Chrome, Safari, Opera */
  transform: translateY(-5px);
}
.single-team:hover .single-team-socials {
  visibility: visible;
  opacity: 1;
  right: 0;
}
.single-team:hover .single-team-thumb img {
  /* IE 9 */
  -webkit-transform: scale(1.1);
  /* Chrome, Safari, Opera */
  transform: scale(1.1);
}
.single-team-thumb {
  position: relative;
  overflow: hidden;
}
.single-team-thumb img {
  width: 100%;
  -webkit-transition: 300ms;
  transition: 300ms;
}
.single-team-socials {
  position: absolute;
  bottom: 0;
  right: -100%;
  z-index: 92;
  display: inline-block;
  background-color: var(--main-color-two);
  padding: 5px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 500ms;
  transition: 500ms;
}
.single-team-socials-list-item {
  display: inline-block;
  font-size: 18px;
  color: #fff;
  padding: 5px;
  -webkit-transition: 300ms;
  transition: 300ms;
}
.single-team-socials-list-item:hover {
  background-color: #fff;
  color: var(--main-color-two);
}

/* Contact theme */
.contact-contents-para {
  font-size: 18px;
  line-height: 32px;
}
.contact-contents-inner-single:not(:last-child) {
  margin-bottom: 30px;
}
.contact-contents-inner-single:hover .contact-contents-inner-single-icon {
  border-color: var(--main-color-two);
  color: var(--main-color-two);
}
.contact-contents-inner-single-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
}
.contact-contents-inner-single-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 60px;
  width: 60px;
  font-size: 28px;
  border: 1px solid rgba(221, 221, 221, 0.5);
  color: var(--heading-color);
  border-radius: 50%;
  -webkit-transition: 300ms;
  transition: 300ms;
}
.contact-contents-inner-single-contents-title {
  font-size: 20px;
}
.contact-contents-inner-single-contents-item {
  font-size: 16px;
  color: var(--extra-light-color);
  margin-top: 7px;
  -webkit-transition: 300ms;
  transition: 300ms;
}
.contact-contents-inner-single-contents-item:hover {
  color: var(--main-color-two);
}

/* Contact map */
.contact-map-theme iframe {
  width: 100%;
  height: 100%;
}

.iframe-height iframe {
  height: 500px;
}

/* Single Page Area */
.single-page-contents-title {
  font-size: 36px;
  line-height: 42px;
}

/* Order Tracking area */
.order-track-wrapper {
  max-width: 600px;
  margin: auto;
  -webkit-box-shadow: 0 0 30px rgba(221, 221, 221, 0.3);
  box-shadow: 0 0 30px rgba(221, 221, 221, 0.3);
}

.order-track-padding {
  padding: 50px;
}

.order-track-contents-title {
  font-size: 36px;
  line-height: 42px;
}
.order-track-contents .btn-submit {
  width: 100%;
  -webkit-transition: 300ms;
  transition: 300ms;
}
.order-track-contents .btn-submit:hover {
  background: none;
  color: var(--main-color-two);
}

/* Compare area */
.single-compare-contents-title {
  font-size: 24px;
  line-height: 36px;
  margin: -7px 0 0;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-compare-contents-title {
    font-size: 22px;
  }
}
.single-compare-contents-price {
  font-size: 20px;
  line-height: 28px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-compare-contents-price {
    font-size: 18px;
  }
}
.single-compare-contents-id {
  font-size: 18px;
  line-height: 28px;
  color: var(--light-color);
  border-bottom: 2px solid rgba(221, 221, 221, 0.3);
  padding-bottom: 15px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-compare-contents-id {
    font-size: 16px;
  }
}
.single-compare-contents-para {
  font-size: 16px;
  line-height: 26px;
  color: var(--extra-light-color);
  border-bottom: 2px solid rgba(221, 221, 221, 0.3);
  padding: 15px 0 18px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-compare-contents-para {
    font-size: 16px;
  }
}
.single-compare-contents-list {
  display: block;
}
.single-compare-contents-list-item {
  display: block;
  padding: 15px 0;
  border-bottom: 2px solid rgba(221, 221, 221, 0.3);
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-compare-contents-list-item {
    font-size: 15px;
  }
}
.single-compare .remove-btn {
  display: inline-block;
  font-size: 18px;
  line-height: 28px;
  border-bottom: 2px solid rgba(221, 221, 221, 0.5);
  color: var(--extra-light-color);
}

/* Cart  */
.table-list-content.style-02 {
  max-width: 1250px;
  margin: 0 auto;
}
.table-list-content .custom--table.table-border {
  border: 1px solid rgba(221, 221, 221, 0.4);
}
.table-list-content .custom--table thead.head-bg {
  background: rgba(221, 221, 221, 0.4);
}
.table-list-content .custom--table thead tr th {
  padding: 20px 5px;
  font-size: 20px;
  font-weight: 500;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .table-list-content .custom--table thead tr th {
    white-space: nowrap;
  }
}
.table-list-content .custom--table thead tr th:first-child {
  padding-left: 20px;
}
.table-list-content .custom--table thead tr th:last-child {
  padding-right: 20px;
}
.table-list-content .custom--table thead tr th:nth-child(1) {
  text-align: left;
}
.table-list-content .custom--table tbody tr {
  border-bottom: 1px solid rgba(221, 221, 221, 0.4);
  position: relative;
  z-index: 1;
}
.table-list-content .custom--table tbody tr td:first-child {
  padding-left: 20px;
}
.table-list-content .custom--table tbody tr td:last-child {
  padding-right: 20px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .table-list-content .custom--table tbody tr td:last-child {
    padding-right: 7px;
  }
}
.table-list-content .custom--table tbody tr td .close-table-cart {
  position: unset;
  right: 5px;
  font-size: 20px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.table-list-content .custom--table tbody tr td .close-table-cart:hover {
  color: var(--main-color-two);
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .table-list-content .custom--table tbody tr td .close-table-cart {
    top: 10px;
    right: auto;
    left: 10px;
    background: var(--main-color-two);
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 30px;
    width: 30px;
    margin-left: auto;
    margin-bottom: 10px;
    margin-right: 10px;
  }
  .table-list-content .custom--table tbody tr td .close-table-cart:hover {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
    background: #fff;
    color: var(--main-color-two);
  }
}
.table-list-content .custom--table tbody tr td .product-name-table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .table-list-content .custom--table tbody tr td .product-name-table {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .table-list-content .custom--table tbody tr td .product-name-table {
    display: block;
    margin-right: 10px;
  }
}
@media only screen and (max-width: 480px) {
  .table-list-content .custom--table tbody tr td .product-name-table {
    display: block;
    margin-right: 10px;
    max-width: 250px;
    margin-left: auto;
  }
}
@media only screen and (max-width: 375px) {
  .table-list-content .custom--table tbody tr td .product-name-table {
    max-width: 200px;
  }
}
.table-list-content .custom--table tbody tr td .product-name-table .thumbs {
  height: 110px;
  width: 110px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .table-list-content .custom--table tbody tr td .product-name-table .thumbs {
    margin-left: auto;
    height: 100px;
    width: 100px;
  }
}
.table-list-content .custom--table tbody tr td .product-name-table .carts-contents {
  text-align: left;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .table-list-content .custom--table tbody tr td .product-name-table .carts-contents {
    margin-left: 20px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .table-list-content .custom--table tbody tr td .product-name-table .carts-contents {
    margin-left: 10px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .table-list-content .custom--table tbody tr td .product-name-table .carts-contents {
    margin-left: 0px;
    text-align: right;
    margin-top: 10px;
  }
}
.table-list-content .custom--table tbody tr td .product-name-table .carts-contents .name-title {
  font-size: 20px;
  font-weight: 500;
  color: var(--heading-color);
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .table-list-content .custom--table tbody tr td .product-name-table .carts-contents .name-title {
    margin-top: 10px;
  }
}
.table-list-content .custom--table tbody tr td .product-name-table .carts-contents .name-subtitle {
  font-size: 16px;
  margin-top: 10px;
  display: block;
}
.table-list-content .custom--table tbody tr td.price-td {
  font-weight: 500;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .table-list-content .custom--table tbody tr td.price-td {
    margin-right: 10px;
  }
}
.table-list-content .custom--table tbody tr td .product-quantity {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  width: 150px;
  text-align: center;
  height: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .table-list-content .custom--table tbody tr td .product-quantity {
    margin-right: 10px;
    margin-left: auto;
  }
}
.table-list-content .custom--table tbody tr td .product-quantity .quantity-input {
  border: 0;
  background-color: rgba(221, 221, 221, 0.5);
  border: 1px solid rgba(221, 221, 221, 0.5);
  width: 50px;
  height: 35px;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 5px 0;
  font-size: 14px;
}
.table-list-content .custom--table tbody tr td .product-quantity .quantity-input::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 1px;
  background: rgba(221, 221, 221, 0.4);
}
.table-list-content .custom--table tbody tr td .product-quantity .substract,
.table-list-content .custom--table tbody tr td .product-quantity .plus {
  padding: 0 5px;
  left: 5px;
  cursor: pointer;
  border: 1px solid rgba(221, 221, 221, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  width: 35px;
}
.table-list-content .custom--table tbody tr td .product-quantity .plus {
  left: auto;
  right: 5px;
}

.table-update-btn .btn-table {
  font-size: 18px;
  padding: 10px 30px;
  color: var(--light-color);
  display: inline-block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media only screen and (max-width: 480px) {
  .table-update-btn .btn-table {
    padding: 8px 18px;
  }
}
@media only screen and (max-width: 375px) {
  .table-update-btn .btn-table {
    font-size: 16px;
  }
}
.table-update-btn .btn-table.btn-border-1 {
  border: 1px solid rgba(221, 221, 221, 0.4);
}
.table-update-btn .btn-table:hover {
  background: var(--main-color-one);
  color: #fff;
  border-color: var(--main-color-one);
}

.cart-btn .cart-available {
  background-color: var(--main-color-two);
  border: 2px solid var(--main-color-two);
  color: #fff;
  padding: 7px 15px;
  font-size: 14px;
}
.cart-btn .disabled {
  cursor: no-drop;
  background-color: #DDD;
  border-color: #DDD;
  color: var(--light-color);
}

.stock-out {
  color: #ff0000;
  cursor: no-drop;
}

.coupon-wrapper {
  position: sticky;
  top: 0;
  z-index: 9;
}
.coupon-wrapper.border-1 {
  border-color: rgba(221, 221, 221, 0.4);
}

.coupon-border {
  border-top: 1px solid rgba(221, 221, 221, 0.4);
}

.coupon-contents {
  padding: 50px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .coupon-contents {
    padding: 35px 35px 40px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .coupon-contents {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .coupon-contents {
    max-width: 500px;
    margin: 0 auto;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .coupon-contents {
    max-width: 500px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 480px) {
  .coupon-contents {
    padding: 30px;
  }
}
@media only screen and (max-width: 375px) {
  .coupon-contents {
    padding: 20px 10px;
  }
}
.coupon-contents-title {
  font-size: 24px;
  line-height: 32px;
}
.coupon-contents-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.coupon-contents-form .single-input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.coupon-contents-form .btn-submit {
  padding: 12px 20px;
  font-size: 16px;
  background: none;
  border: 2px solid rgba(var(--main-color-two-rgb), 0.5);
  -webkit-transition: 300ms;
  transition: 300ms;
  color: var(--main-color-two);
}
.coupon-contents-form .btn-submit:hover {
  background: var(--main-color-two);
  color: #fff;
}

.coupon-contents-details-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 0;
  color: var(--light-color);
  font-size: 18px;
}

/* Checkout */
.summery-title {
  font-size: 28px;
  line-height: 36px;
  margin: -5px 0 0;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .summery-title {
    font-size: 32px;
  }
}
@media only screen and (max-width: 575.98px) {
  .summery-title {
    font-size: 30px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 375px) {
  .summery-title {
    font-size: 28px;
  }
}

.checkout-title .click-open-form {
  color: var(--main-color-two);
}
.checkout-title .click-open-form:hover {
  color: var(--main-color-two);
  font-weight: 500;
}
.checkout-title i {
  color: var(--main-color-two);
}

.checkout-form-open {
  max-width: 500px;
  background: #fff;
  height: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
}
.checkout-form-open.active {
  height: auto;
  visibility: visible;
  opacity: 1;
  margin-top: 30px;
}

.checkout-form-contents {
  -webkit-box-shadow: 0 0 20px rgba(221, 221, 221, 0.2);
  box-shadow: 0 0 20px rgba(221, 221, 221, 0.2);
}
.checkout-form-contents.form-padding {
  padding: 40px;
}
.checkout-form-contents-title {
  font-size: 24px;
  line-height: 32px;
  margin: -6px 0 0;
}
.checkout-form-contents-form-input .label-title {
  font-size: 15px;
}
.checkout-form-contents-form-input .form--control {
  font-size: 15px;
  padding: 0 15px;
  color: var(--extra-light-color);
  -webkit-transition: 300ms;
  transition: 300ms;
  -webkit-box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(221, 221, 221, 0.4);
}
.checkout-form-contents-form-input .form--control:focus {
  -webkit-box-shadow: 0 0 20px rgba(var(--main-color-two-rgb), 0.1);
  box-shadow: 0 0 20px rgba(var(--main-color-two-rgb), 0.1);
  border-color: rgba(var(--main-color-two-rgb), 0.3);
}
.checkout-form-contents-form .btn-submit {
  padding: 12px 20px;
  background-color: var(--main-color-two);
  border: 2px solid var(--main-color-two);
  color: #fff;
  -webkit-transition: 300ms;
  transition: 300ms;
}
.checkout-form-contents-form .btn-submit:hover {
  background: none;
  color: var(--main-color-two);
}
.checkout-form-contents-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
}
@media only screen and (max-width: 575.98px) {
  .checkout-form-contents-flex {
    display: block;
  }
}
.checkout-form-contents .check-input:checked {
  background-color: var(--main-color-two);
  border-color: var(--main-color-two);
}
.checkout-form-contents-bottom .or-contents {
  text-align: center;
  position: relative;
  z-index: 2;
}
.checkout-form-contents-bottom .or-contents .or-para {
  background: #fff;
  padding: 10px 30px;
  color: var(--light-color);
}
.checkout-form-contents-bottom .or-contents::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  background: rgba(221, 221, 221, 0.4);
  width: 100%;
  height: 1px;
  z-index: -1;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.checkout-form-contents-bottom .signin-others-single:not(:last-child) {
  margin-bottom: 20px;
}
.checkout-form-contents-bottom .signin-others-single-btn {
  padding: 13px 10px;
  display: inline-block;
  border: 1px solid rgba(221, 221, 221, 0.4);
  color: var(--light-color);
  text-align: center;
  -webkit-transition: 300ms;
  transition: 300ms;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.checkout-form-contents-bottom .signin-others-single-btn:hover {
  border-color: var(--main-color-two);
  color: var(--main-color-two);
}

.checkout-signup-form-wrapper {
  max-width: 700px;
  height: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
.checkout-signup-form-wrapper.active {
  height: auto;
  visibility: visible;
  opacity: 1;
  margin-top: 30px;
  background: #fff;
}

.checkout-address-form-wrapper {
  max-width: 700px;
  height: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
.checkout-address-form-wrapper.active {
  height: auto;
  visibility: visible;
  opacity: 1;
  margin-top: 30px;
  background: #fff;
}

.create-accounts {
  font-size: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 10px;
  color: var(--heading-color) !important;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .create-accounts {
    font-size: 18px;
  }
}
@media only screen and (max-width: 575.98px) {
  .create-accounts {
    font-size: 16px;
  }
}
.create-accounts:hover {
  color: var(--heading-color);
}
.create-accounts::before {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 20px;
  width: 20px;
  border: 1px solid #DDD;
  content: "";
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.create-accounts.active::before {
  content: "";
  font-family: "Line Awesome Free";
  font-weight: 900;
  background: var(--main-color-two);
  color: #fff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 12px;
  border-color: var(--main-color-two);
}

.checkout-inner-title {
  font-size: 28px;
  line-height: 36px;
  margin: -8px 0 0;
}
.checkout-form-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px 24px;
}
.checkout-form .single-input .label-title {
  font-size: 15px;
}
.checkout-form .single-input .form--control {
  height: 55px;
  width: 100%;
  border: 1px solid rgba(221, 221, 221, 0.4);
  -webkit-box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  -webkit-transition: 300ms;
  transition: 300ms;
  font-size: 15px;
  color: var(--extra-light-color);
}
.checkout-form .single-input .form--control:focus {
  -webkit-box-shadow: 0 0 20px rgba(221, 221, 221, 0.1);
  box-shadow: 0 0 20px rgba(221, 221, 221, 0.1);
  border-color: rgba(var(--main-color-two-rgb), 0.3);
}
.checkout-form .single-input .form--message {
  height: 150px;
}
.checkout-form .input-flex-item .single-input .form--message {
  height: 120px;
}
.checkout-form .checkbox-inlines .checkbox-label {
  color: var(--heading-color);
  font-size: 18px;
}
.checkout-form .btn-submit {
  -webkit-transition: 300ms;
  transition: 300ms;
  font-size: 18px;
}
.checkout-form .btn-submit:hover {
  background: none;
  color: var(--main-color-two);
}

.checkout-order-summery {
  position: sticky;
  top: 0;
  padding: 40px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .checkout-order-summery {
    padding: 40px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .checkout-order-summery {
    padding: 30px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .checkout-order-summery {
    padding: 30px;
  }
}
@media only screen and (max-width: 480px) {
  .checkout-order-summery {
    padding: 30px;
  }
}
@media only screen and (max-width: 375px) {
  .checkout-order-summery {
    padding: 20px 10px;
  }
}
.checkout-order-summery .checkbox-inlines .check-input:checked {
  background-color: var(--main-color-two);
  border-color: var(--main-color-two);
}
.checkout-order-summery .terms-condition {
  color: var(--main-color-two);
}

.checkout-cart-wrapper {
  max-height: 400px;
  overflow-y: auto;
}

.single-checkout-cart-items .single-check-carts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.single-checkout-cart-items .single-check-carts .check-cart-flex-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.single-checkout-cart-items .single-check-carts .check-cart-flex-contents .checkout-cart-thumb {
  height: 95px;
  width: 100px;
}
.single-checkout-cart-items .single-check-carts .check-cart-flex-contents .checkout-cart-thumb img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-checkout-cart-items .single-check-carts .check-cart-flex-contents .checkout-cart-img-contents {
  text-align: left;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.single-checkout-cart-items .single-check-carts .check-cart-flex-contents .checkout-cart-img-contents .product-items {
  margin-top: 10px;
}
.single-checkout-cart-items .single-check-carts .checkout-cart-price {
  font-size: 18px;
}

.coupon-form {
  position: relative;
}
.coupon-form .single-input .form--control {
  height: 60px;
  background: #fff;
  border: 1px solid rgba(221, 221, 221, 0.4);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.coupon-form .single-input .form--control:focus {
  border-color: rgba(var(--main-color-two-rgb), 0.3);
  -webkit-box-shadow: 0 0 10px rgba(var(--main-color-two-rgb), 0.1);
          box-shadow: 0 0 10px rgba(var(--main-color-two-rgb), 0.1);
}
.coupon-form .apply-coupon {
  position: absolute;
  right: 5px;
  height: 50px;
  border: 0;
  outline: none;
  padding: 5px 20px;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid transparent;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: var(--main-color-two);
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.coupon-form .apply-coupon:hover {
  background: none;
  color: var(--main-color-two);
  border-color: var(--main-color-two);
}

.btn-coupon {
  outline: none;
  border: 1px solid #DDD;
  background: #DDD;
  padding: 15px;
  cursor: pointer;
  font-size: 18px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.btn-coupon.btn-bg-heading {
  background: var(--heading-color);
  color: #fff;
  border: 2px solid transparent;
}
.btn-coupon.btn-bg-heading:hover {
  background: none;
  color: var(--heading-color);
  border-color: var(--heading-color);
}

.payment-inlines .payment-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.payment-inlines .payment-card .single-card {
  background: #fff;
  padding: 5px 10px;
  position: relative;
  z-index: 2;
  margin-bottom: 10px;
  border: 2px solid transparent;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.payment-inlines .payment-card .single-card.active {
  border-color: var(--main-color-two);
}
.payment-inlines .payment-card .single-card.active::before {
  content: "";
  font-family: "Line Awesome Free";
  font-weight: 900;
  background: var(--main-color-two);
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 16px;
  width: 16px;
  font-size: 10px;
  border-radius: 50%;
  position: absolute;
  top: -7px;
  right: -7px;
  z-index: 9;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.payment-inlines .payment-card .single-card:not(:last-child) {
  margin-right: 10px;
}

/* Shop Details Area */
.single-shop-details-wrapper {
  padding: 0 10px;
  max-width: 600px;
  margin-left: 100px;
}
@media (min-width: 1600px) and (max-width: 1849.98px) {
  .single-shop-details-wrapper {
    max-height: 870px;
    overflow-y: scroll;
    margin-left: 70px;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .single-shop-details-wrapper {
    max-height: 800px;
    overflow-y: scroll;
    margin-left: 50px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .single-shop-details-wrapper {
    max-height: 720px;
    overflow-y: scroll;
    margin-left: 40px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-shop-details-wrapper {
    max-height: 630px;
    overflow-y: scroll;
    margin-left: 30px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .single-shop-details-wrapper {
    margin-top: 20px;
    margin-left: 0;
  }
}
.single-shop-details-wrapper .details-title {
  font-size: 32px;
  line-height: 42px;
  margin: -8px 0 0;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .single-shop-details-wrapper .details-title {
    font-size: 30px;
    line-height: 36px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-shop-details-wrapper .details-title {
    font-size: 28px;
    line-height: 36px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .single-shop-details-wrapper .details-title {
    font-size: 28px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 575.98px) {
  .single-shop-details-wrapper .details-title {
    font-size: 26px;
    line-height: 32px;
  }
}
@media only screen and (max-width: 375px) {
  .single-shop-details-wrapper .details-title {
    font-size: 24px;
  }
}
.single-shop-details-wrapper .common-para {
  margin-top: 30px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .single-shop-details-wrapper .common-para {
    margin-top: 15px !important;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-shop-details-wrapper .common-para {
    margin-top: 15px !important;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .single-shop-details-wrapper .price-update-through {
    margin-top: 15px !important;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-shop-details-wrapper .price-update-through {
    margin-top: 15px !important;
  }
}
@media only screen and (max-width: 767.98px) {
  .single-shop-details-wrapper .price-update-through .flash-prices {
    font-size: 28px !important;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .single-shop-details-wrapper .price-update-through .flash-old-prices {
    font-size: 20px !important;
  }
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
  .quantity-area {
    margin-top: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .quantity-area {
    margin-top: 20px;
  }
}
.quantity-area .quantity-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
.product-quantity {
  position: relative;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.product-quantity .quantity-input {
  width: 50px;
  height: 45px;
  background: rgba(221, 221, 221, 0.4);
  color: var(--light-color);
  border: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
  text-align: center;
}
.product-quantity .substract,
.product-quantity .plus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 45px;
  width: 45px;
  font-size: 20px;
  color: var(--light-color);
  cursor: pointer;
  background: rgba(221, 221, 221, 0.4);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.product-quantity .substract:hover,
.product-quantity .plus:hover {
  color: var(--main-color-two);
}
.product-quantity .plus {
  left: auto;
  right: 5px;
}

.quantity-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .quantity-btn {
    margin-top: 25px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .quantity-btn {
    margin-top: 25px;
  }
}
.quantity-btn .btn-wrapper {
  width: 100%;
}

.stock-available {
  font-weight: 500;
  line-height: 26px;
  font-size: 16px;
  padding: 5px 0;
}
.stock-available .count-stock {
  color: var(--extra-light-color);
}

.shop-border-top {
  border-top: 1px solid rgba(221, 221, 221, 0.4);
}

.product-sold-btn {
  font-size: 16px;
  background: rgba(90, 178, 126, 0.1);
  color: #5AB27E;
  padding: 10px 20px;
  display: inline-block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.product-sold-btn:hover {
  background: #5AB27E;
  color: #fff;
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
  .shop-details-stock .stock-category {
    margin-top: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .shop-details-stock .stock-category {
    margin-top: 20px;
  }
}
.shop-details-stock .stock-category li {
  font-size: 16px;
  line-height: 26px;
}
@media only screen and (max-width: 480px) {
  .shop-details-stock .stock-category li {
    font-size: 15px;
  }
}
@media only screen and (max-width: 375px) {
  .shop-details-stock .stock-category li {
    font-size: 14px;
  }
}
.shop-details-stock .stock-category li:not(:last-child) {
  padding-bottom: 10px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .shop-details-stock .stock-category li:not(:last-child) {
    margin-top: 15px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .shop-details-stock .stock-category li:not(:last-child) {
    margin-top: 15px;
  }
}
.shop-details-stock .stock-category li a:hover {
  color: var(--main-color-two);
}
.shop-details-stock .stock-category .category-list .list-item {
  padding-left: 3px;
}
.shop-details-stock .stock-category .category-list .list-item:not(:last-child)::after {
  content: ",";
}

.details-small-product {
  height: 150px;
  width: 150px;
}

.shop-details-click-img .shop-small-thumb-wrapper {
  cursor: pointer;
}

.wishlist-compare {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.wishlist-compare .wishlist-compare-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 10px;
}
.wishlist-compare .wishlist-compare-btn .btn-details {
  display: inline-block;
  font-size: 18px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.wishlist-compare .wishlist-compare-btn .btn-details i {
  margin-right: 3px;
}
.wishlist-compare .wishlist-compare-btn .btn-details:hover {
  color: var(--main-color-two);
}
.wishlist-compare .wishlist-compare-btn .btn-details:not(:last-child) {
  margin-right: 10px;
}
.single-details-tab .tab-description .description-para {
  font-size: 18px;
  line-height: 30px;
  color: var(--light-color);
  padding-top: 30px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .single-details-tab .tab-description .description-para {
    font-size: 16px;
  }
}
@media only screen and (max-width: 480px) {
  .single-details-tab .tab-description .description-para {
    font-size: 15px;
  }
}
@media only screen and (max-width: 375px) {
  .single-details-tab .tab-description .description-para {
    font-size: 14px;
  }
}
.about-seller-flex-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 40px 0;
  gap: 30px;
}
@media only screen and (max-width: 480px) {
  .about-seller-flex-content {
    display: block;
  }
}
@media only screen and (max-width: 575.98px) {
  .about-seller-flex-content {
    padding: 30px 0;
  }
}
.about-seller-flex-content:not(:first-child) {
  border-top: 2px solid rgba(221, 221, 221, 0.5);
}
.about-seller-flex-content .about-seller-thumb {
  height: 80px;
  min-width: 80px;
  border-radius: 10px;
  display: block;
}
@media only screen and (max-width: 480px) {
  .about-seller-flex-content .about-seller-thumb {
    width: 80px;
    margin-bottom: 15px;
  }
}
.about-seller-flex-content .about-seller-thumb img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.about-seller-flex-content .about-seller-content .title {
  font-size: 20px;
  font-weight: 600;
  line-height: 20px;
}
.about-seller-flex-content .about-seller-content .about-seller-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 10px;
}
.about-seller-flex-content .about-seller-content .about-seller-list .icon {
  color: var(--main-color-two);
  font-size: 12px;
}
.about-seller-flex-content .about-seller-content .about-seller-list .reviews {
  margin-left: 10px;
}
.about-seller-flex-content .about-seller-content .about-review-para {
  font-size: 16px;
  font-weight: 400;
  color: var(--light-color);
  margin-top: 20px;
  line-height: 26px;
}
.about-seller-flex-content .about-seller-content .review-date {
  margin-top: 20px;
  display: block;
}

.payment-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .value-input-area {
    margin-top: 20px;
  }
}
.value-input-area.style-02 .size-lists {
  margin-top: 10px;
}
.value-input-area.style-02 .size-lists li {
  font-size: 13px;
  height: 30px;
  width: 35px;
}
.value-input-area.style-02 .color-list {
  margin-top: 10px;
}
.value-input-area.style-02 .color-list li {
  height: 18px;
  width: 18px;
}
.value-input-area .input-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.value-input-area .input-list .form--input {
  width: auto;
  border: 0;
  outline: none;
  color: var(--extra-light-color);
}
.value-input-area .size-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 20px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .value-input-area .size-lists {
    margin-top: 15px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .value-input-area .size-lists {
    margin-top: 15px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .value-input-area .size-lists {
    margin-top: 15px;
  }
}
.value-input-area .size-lists li {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 16px;
  height: 45px;
  width: 45px;
  border: 1px solid rgba(221, 221, 221, 0.5);
  position: relative;
  z-index: 1;
}
.value-input-area .size-lists li.active {
  border-color: var(--main-color-two);
}
@media only screen and (max-width: 480px) {
  .value-input-area .size-lists li {
    font-size: 15px;
  }
}
@media only screen and (max-width: 375px) {
  .value-input-area .size-lists li {
    font-size: 14px;
    height: 40px;
    width: 40px;
  }
}
.value-input-area .size-lists li.disabled {
  cursor: no-drop;
}
.value-input-area .size-lists li.disabled::before, .value-input-area .size-lists li.disabled::after {
  position: absolute;
  content: "";
  height: calc(100% + 14px);
  width: 2px;
  background-color: rgba(221, 221, 221, 0.9);
  top: -7px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}
.value-input-area .size-lists li.disabled::after {
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
}
.value-input-area .color-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 20px;
  margin-top: 20px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .value-input-area .color-list {
    margin-top: 15px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .value-input-area .color-list {
    margin-top: 15px;
  }
}
.value-input-area .color-list li {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 30px;
  width: 30px;
  border: 1px solid transparent;
  position: relative;
  z-index: 1;
}
.value-input-area .color-list li.active::before {
  content: "";
  font-family: "Line Awesome Free";
  font-weight: 900;
  color: #fff;
  font-size: 20px;
  -webkit-transition: 300ms;
  transition: 300ms;
}
.value-input-area .color-list li.shop-color-2 {
  border-color: #30BB6F;
}
.value-input-area .color-list li.shop-color-3 {
  border-color: #AB47BC;
}
.value-input-area .color-list li.shop-color-4 {
  border-color: #FFC576;
}
.value-input-area .color-list li.shop-color-5 {
  border-color: #040B25;
}
.value-input-area .color-list li.shop-color-6 {
  border: 1px solid #FF9800;
}
.value-input-area .color-list li.shop-color-7 {
  border: 1px solid #FF695C;
}

/* Details Tab area */
.details-tab-wrapper .details-tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .details-tab-wrapper .details-tab {
    gap: 10px 15px;
  }
}
@media only screen and (max-width: 480px) {
  .details-tab-wrapper .details-tab {
    gap: 10px;
  }
}
.details-tab-wrapper .details-tab.details-tab-border {
  border-bottom: 2px solid rgba(221, 221, 221, 0.4);
  padding-bottom: 30px;
}
.details-tab-wrapper .details-tab li {
  font-size: 18px;
  padding: 10px 20px;
  background: none;
  color: var(--extra-light-color);
  -webkit-transition: all 300ms;
  transition: all 300ms;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(221, 221, 221, 0.4);
}
.details-tab-wrapper .details-tab li::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--main-color-two);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .details-tab-wrapper .details-tab li {
    font-size: 16px;
    font-weight: 400;
    padding: 7px 20px;
  }
}
@media only screen and (max-width: 575.98px) {
  .details-tab-wrapper .details-tab li {
    font-size: 15px;
    padding: 6px 20px;
    line-height: 26px;
  }
}
@media only screen and (max-width: 375px) {
  .details-tab-wrapper .details-tab li {
    font-size: 14px;
    padding: 0px 2px;
  }
}
.details-tab-wrapper .details-tab li.active {
  color: var(--heading-color);
}
.details-tab-wrapper .details-tab li.active::before {
  width: 100%;
  visibility: visible;
  opacity: 1;
}
.details-tab-wrapper .details-tab li:hover {
  color: var(--heading-color);
}
.details-tab-wrapper .details-tab.hover-color-two li.active {
  background: var(--main-color-two);
  color: #fff;
  border-color: var(--main-color-two);
}
.details-tab-wrapper .details-tab.hover-color-two li:hover {
  background: var(--main-color-two);
  color: #fff;
  border-color: var(--main-color-two);
}
.details-tab-wrapper .details-tab.hover-color-three li.active {
  background: var(--main-color-three);
  color: #fff;
  border-color: var(--main-color-three);
}
.details-tab-wrapper .details-tab.hover-color-three li:hover {
  background: var(--main-color-three);
  color: #fff;
  border-color: var(--main-color-three);
}
.details-tab-wrapper .details-tab.hover-color-four li.active {
  background: var(--main-color-four);
  color: #fff;
  border-color: var(--main-color-four);
}
.details-tab-wrapper .details-tab.hover-color-four li:hover {
  background: var(--main-color-four);
  color: #fff;
  border-color: var(--main-color-four);
}

.single-description-tab-content:not(:last-child) {
  margin-bottom: 30px;
}
.single-description-tab-content-title {
  font-size: 24px;
  line-height: 32px;
}
.single-size-chart-contents-title {
  font-size: 24px;
  line-height: 32px;
  margin: -4px 0 0;
}
.single-size-chart-contents-subtitle {
  font-size: 16px;
}

.size-chart-table .custom--table {
  text-align: left;
}
.size-chart-table .custom--table thead {
  font-size: 16px;
}
.size-chart-table .custom--table thead tr {
  border-bottom: 2px solid rgba(221, 221, 221, 0.4);
}
.size-chart-table .custom--table thead tr th {
  font-size: 16px;
  color: var(--heading-color);
  padding-bottom: 10px;
}
.size-chart-table .custom--table thead tr th:first-child {
  padding-left: 20px;
}
.size-chart-table .custom--table thead tr th:last-child {
  padding-right: 20px;
}
.size-chart-table .custom--table tbody tr:nth-child(even) {
  background-color: rgba(221, 221, 221, 0.2);
}
.size-chart-table .custom--table tbody tr td {
  font-size: 16px;
}
.size-chart-table .custom--table tbody tr td:first-child {
  padding-left: 20px;
}
.size-chart-table .custom--table tbody tr td:last-child {
  padding-right: 20px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .size-chart-table .custom--table tbody tr td {
    padding: 10px 20px;
  }
}

.shop-popup-color-two .value-input-area .size-lists li.active {
  border-color: var(--main-color-two);
}
.shop-popup-color-two .product-quantity .substract:hover,
.shop-popup-color-two .product-quantity .plus:hover {
  color: var(--main-color-two);
}
.shop-popup-color-two .quantity-btn .heart-btn {
  border-color: var(--main-color-two);
}
.shop-popup-color-two .quantity-btn .heart-btn:hover {
  background-color: var(--main-color-two);
  color: #fff;
}
.shop-popup-color-two .wishlist-compare .wishlist-compare-btn .btn-details:hover {
  color: var(--main-color-two);
}
.shop-popup-color-two .payment-list .payments.selected {
  border-color: var(--main-color-two);
}
.shop-popup-color-two .payment-list .payments::before {
  background: var(--main-color-two);
}
.shop-popup-color-two .shop-details-stock .stock-category li a:hover {
  color: var(--main-color-two);
}
.shop-popup-color-two .tags-area-shop .tags-shop-list .list a:hover {
  background: var(--main-color-two);
  color: #fff;
  border-color: var(--main-color-two);
}

.shop-popup-color-three .value-input-area .size-lists li.active {
  border-color: var(--main-color-three);
}
.shop-popup-color-three .product-quantity .substract:hover,
.shop-popup-color-three .product-quantity .plus:hover {
  color: var(--main-color-three);
}
.shop-popup-color-three .quantity-btn .heart-btn {
  border-color: var(--main-color-three);
}
.shop-popup-color-three .quantity-btn .heart-btn:hover {
  background-color: var(--main-color-three);
  color: #fff;
}
.shop-popup-color-three .wishlist-compare .wishlist-compare-btn .btn-details:hover {
  color: var(--main-color-three);
}
.shop-popup-color-three .payment-list .payments.selected {
  border-color: var(--main-color-three);
}
.shop-popup-color-three .payment-list .payments::before {
  background: var(--main-color-three);
}
.shop-popup-color-three .shop-details-stock .stock-category li a:hover {
  color: var(--main-color-two);
}
.shop-popup-color-three .tags-area-shop .tags-shop-list .list a:hover {
  background: var(--main-color-three);
  color: #fff;
  border-color: var(--main-color-three);
}

.shop-popup-color-four .value-input-area .size-lists li.active {
  border-color: var(--main-color-four);
}
.shop-popup-color-four .product-quantity .substract:hover,
.shop-popup-color-four .product-quantity .plus:hover {
  color: var(--main-color-four);
}
.shop-popup-color-four .quantity-btn .heart-btn {
  border-color: var(--main-color-four);
}
.shop-popup-color-four .quantity-btn .heart-btn:hover {
  background-color: var(--main-color-four);
  color: #fff;
}

/* Search Suggestions */
.search-suggestions-icon-wrapper {
  position: relative;
  z-index: 1;
}
.search-suggestions-icon-wrapper .search-click-icon {
  cursor: pointer;
  font-size: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 55px;
  width: 55px;
  color: var(--heading-color);
  background-color: rgba(221, 221, 221, 0.3);
  font-weight: 500;
  -webkit-transition: 300ms;
  transition: 300ms;
}
.search-suggestions-icon-wrapper .search-click-icon:hover {
  background-color: var(--main-color-one);
  color: #fff;
}
.search-suggestions-icon-wrapper .search-suggetions-show {
  position: absolute;
  top: 0;
  right: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 400ms;
  transition: 400ms;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .search-suggestions-icon-wrapper .search-suggetions-show {
    right: -195px;
  }
}
@media only screen and (max-width: 767.98px) {
  .search-suggestions-icon-wrapper .search-suggetions-show {
    width: 500px;
  }
}
@media only screen and (max-width: 575.98px) {
  .search-suggestions-icon-wrapper .search-suggetions-show {
    max-width: 450px;
  }
}
@media only screen and (max-width: 480px) {
  .search-suggestions-icon-wrapper .search-suggetions-show {
    max-width: 370px;
  }
}
@media only screen and (max-width: 375px) {
  .search-suggestions-icon-wrapper .search-suggetions-show {
    max-width: 300px;
  }
}
.search-suggestions-icon-wrapper .search-suggetions-show.open {
  visibility: visible;
  opacity: 1;
  top: 100%;
}
.search-suggestions-icon-wrapper .search-open-form {
  position: relative;
  z-index: 1;
}
.search-suggestions-icon-wrapper .search-open-form .suggetions-icon-close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  position: absolute;
  right: 0%;
  top: 0;
  font-size: 24px;
  background-color: rgba(221, 221, 221, 0.3);
  height: 100%;
  padding: 0 15px;
  -webkit-transition: 300ms;
  transition: 300ms;
}
.search-suggestions-icon-wrapper .search-open-form .suggetions-icon-close:hover {
  background-color: var(--main-color-one);
  color: #fff;
}

.navbar-input {
  position: relative;
}
.navbar-input .form--control {
  padding: 0 15px;
  padding-left: 50px;
  padding-right: 70px;
  font-size: 15px;
  height: 55px;
  width: 700px;
  color: var(--extra-light-color);
  border: 1px solid rgba(221, 221, 221, 0.5);
  -webkit-box-shadow: 0 0 30px rgba(255, 255, 255, 0.01);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.01);
  -webkit-transition: 300ms;
  transition: 300ms;
}
.navbar-input .form--control:focus {
  -webkit-box-shadow: 0 0 30px rgba(var(--main-color-one-rgb), 0.1);
  box-shadow: 0 0 30px rgba(var(--main-color-one-rgb), 0.1);
  border-color: rgba(var(--main-color-one-rgb), 0.3);
}
@media only screen and (max-width: 767.98px) {
  .navbar-input .form--control {
    width: 100%;
  }
}
.navbar-input button {
  position: absolute;
  top: 0;
  left: 15px;
  font-size: 20px;
  background: none;
  border: 0;
  outline: none;
  color: var(--light-color);
  bottom: 0;
}

.theme-one .navbar-input .form--control:focus {
  -webkit-box-shadow: 0 0 30px rgba(var(--main-color-two-rgb), 0.1);
  box-shadow: 0 0 30px rgba(var(--main-color-two-rgb), 0.1);
  border-color: rgba(var(--main-color-two-rgb), 0.3);
}
.theme-one .search-suggestions-icon-wrapper .search-click-icon:hover {
  background-color: var(--main-color-two);
}
.theme-one .search-suggestions-icon-wrapper .search-open-form .suggetions-icon-close:hover {
  background-color: var(--main-color-two);
}
.theme-one .searchbar-suggetions .search-suggestions .nicescroll-rails .nicescroll-cursors {
  background-color: var(--main-color-two) !important;
}

.theme-two .navbar-input .form--control:focus {
  -webkit-box-shadow: 0 0 30px rgba(var(--main-color-three-rgb), 0.1);
  box-shadow: 0 0 30px rgba(var(--main-color-three-rgb), 0.1);
  border-color: rgba(var(--main-color-three-rgb), 0.3);
}
.theme-two .search-suggestions-icon-wrapper .search-click-icon:hover {
  background-color: var(--main-color-three);
}
.theme-two .search-suggestions-icon-wrapper .search-open-form .suggetions-icon-close:hover {
  background-color: var(--main-color-three);
}
.theme-two .searchbar-suggetions .search-suggestions .nicescroll-rails .nicescroll-cursors {
  background-color: var(--main-color-three) !important;
}

.theme-three .navbar-input .form--control:focus {
  -webkit-box-shadow: 0 0 30px rgba(var(--main-color-four-rgb), 0.1);
  box-shadow: 0 0 30px rgba(var(--main-color-four-rgb), 0.1);
  border-color: rgba(var(--main-color-four-rgb), 0.3);
}
.theme-three .search-suggestions-icon-wrapper .search-click-icon:hover {
  background-color: var(--main-color-four);
}
.theme-three .search-suggestions-icon-wrapper .search-open-form .suggetions-icon-close:hover {
  background-color: var(--main-color-four);
}
.theme-three .searchbar-suggetions .search-suggestions .nicescroll-rails .nicescroll-cursors {
  background-color: var(--main-color-four) !important;
}

.searchbar-suggetions {
  position: relative;
}
.searchbar-suggetions .search-suggestions {
  position: absolute;
  top: 100%;
  right: 0;
  width: 700px;
  background: #fff;
  padding: 30px 20px;
  -webkit-box-shadow: 0 0 10px rgba(221, 221, 221, 0.4);
          box-shadow: 0 0 10px rgba(221, 221, 221, 0.4);
  visibility: hidden;
  opacity: 0;
  height: 550px;
  overflow-y: hidden;
}
@media (min-width: 1600px) and (max-width: 1849.98px) {
  .searchbar-suggetions .search-suggestions {
    height: 475px;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .searchbar-suggetions .search-suggestions {
    height: 475px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .searchbar-suggetions .search-suggestions {
    height: 475px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .searchbar-suggetions .search-suggestions {
    height: 475px;
    padding: 30px 10px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .searchbar-suggetions .search-suggestions {
    height: 485px;
  }
}
@media only screen and (max-width: 767.98px) {
  .searchbar-suggetions .search-suggestions {
    width: 100%;
  }
}
@media only screen and (max-width: 480px) {
  .searchbar-suggetions .search-suggestions {
    padding: 30px 10px;
  }
}
.searchbar-suggetions .search-suggestions.show {
  visibility: visible;
  opacity: 1;
}
.searchbar-suggetions .search-suggestions .nicescroll-rails .nicescroll-cursors {
  background-color: var(--main-color-two) !important;
}
.searchbar-suggetions .search-suggestions-title {
  font-size: 18px;
  width: 100%;
  background-color: rgba(221, 221, 221, 0.2);
  padding: 5px 10px;
}

.product-suggestion-list {
  height: calc(100vh - 210px);
  overflow-y: scroll;
  padding: 0 10px;
}
.product-suggestion-list-item:not(:last-child) {
  margin-bottom: 20px;
}
.product-suggestion-list-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media only screen and (max-width: 480px) {
  .product-suggestion-list-link {
    display: block;
  }
}
.product-suggestion-list-link .product-image {
  border: 1px solid rgba(221, 221, 221, 0.5);
  padding: 5px;
  height: 100px;
  width: 100px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .product-suggestion-list-link .product-image {
    width: 80px;
    height: 100px;
    padding: 10px 0px;
  }
}
.product-suggestion-list-link .product-info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media only screen and (max-width: 480px) {
  .product-suggestion-list-link .product-info .product-info-top {
    margin-top: 10px;
  }
}
.product-suggestion-list-link .product-info .product-info-top .product-name {
  font-size: 18px;
  line-height: 28px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .product-suggestion-list-link .product-info .product-info-top .product-name {
    font-size: 17px;
  }
}
.product-suggestion-list-link .product-info .product-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .product-suggestion-list-link .product-info .product-price {
    gap: 7px;
  }
}
.product-suggestion-list-link .product-info .product-price .price-update-through {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.product-suggestion-list-link .product-info .product-price .price-update-through .flash-price {
  font-size: 18px;
  color: var(--heading-color);
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .product-suggestion-list-link .product-info .product-price .price-update-through .flash-price {
    font-size: 16px;
  }
}
.product-suggestion-list-link .product-info .product-price .price-update-through .flash-old-prices {
  font-size: 14px;
  text-decoration: line-through;
}
.product-suggestion-list-link .product-info .product-price .main-price {
  font-size: 16px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .product-suggestion-list-link .product-info .product-price .main-price {
    font-size: 17px;
  }
}
.product-suggestion-list-link .product-info .stock-out {
  font-size: 16px;
  background: #ff0000;
  color: #fff;
  padding: 5px 10px;
  display: inline-block;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .product-suggestion-list-link .product-info .stock-out {
    font-size: 15px;
    padding: 5px 5px;
  }
}

.search-suggestion-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 94;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 500ms;
  transition: 500ms;
}
.search-suggestion-overlay.show {
  visibility: visible;
  opacity: 1;
}

/* Category Css */
.category-inner-border .slick-slide .single-category::after,
.category-inner-border div[class*=col] .single-category::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 2px;
  top: 0;
  right: -12px;
  background-color: rgba(221, 221, 221, 0.5);
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .category-inner-border .slick-slide .single-category::after,
.category-inner-border div[class*=col] .single-category::after {
    right: -13px;
  }
}

.single-category {
  position: relative;
}
.single-category-thumb img {
  margin: auto;
}
.single-category-contents-title {
  font-size: 22px;
}

.theme-three .category-slider {
  margin: 0 2px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .theme-three .category-slider {
    margin: 0 5px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .theme-three .category-slider {
    margin: 0 4px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .theme-three .category-slider {
    margin: 0 4px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .theme-three .category-slider {
    margin: 0;
  }
}

/* Deal area */
.deal-wrapper {
  position: relative;
}
.deal-wrapper-thumb img:nth-child(1) {
  position: absolute;
  right: 100px;
  bottom: 0;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .deal-wrapper-thumb img:nth-child(1) {
    right: 40px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .deal-wrapper-thumb img:nth-child(1) {
    right: 0px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .deal-wrapper-thumb img:nth-child(1) {
    right: 0px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .deal-wrapper-thumb img:nth-child(1) {
    display: none;
  }
}
.deal-wrapper-thumb img:nth-child(2) {
  position: absolute;
  left: 100px;
  bottom: 0;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .deal-wrapper-thumb img:nth-child(2) {
    left: 40px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .deal-wrapper-thumb img:nth-child(2) {
    left: 0px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .deal-wrapper-thumb img:nth-child(2) {
    left: 0px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .deal-wrapper-thumb img:nth-child(2) {
    display: none;
  }
}

.deal-content {
  padding: 150px 0 150px 200px;
  max-width: 600px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .deal-content {
    padding: 150px 0 150px 150px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .deal-content {
    padding: 150px 0 150px 70px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .deal-content {
    padding: 130px 0 130px 50px;
    max-width: 450px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .deal-content {
    padding: 50px 0 50px 30px;
  }
}
@media only screen and (max-width: 480px) {
  .deal-content {
    padding: 50px 0 50px 20px;
  }
}
.deal-content-title {
  font-size: 46px;
  font-weight: 600;
  color: var(--heading-color);
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .deal-content-title {
    font-size: 42px;
    line-height: 48px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .deal-content-title {
    font-size: 42px;
    line-height: 48px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .deal-content-title {
    font-size: 36px;
    line-height: 42px;
  }
}
@media only screen and (max-width: 480px) {
  .deal-content-title {
    font-size: 32px;
    line-height: 36px;
  }
}
.deal-content-para {
  font-size: 18px;
  line-height: 28px;
  color: var(--light-color);
}

.center-text .deal-content {
  margin: auto;
  padding: 100px 0;
}
.center-text .deal-wrapper-thumb img:nth-child(1) {
  right: 150px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .center-text .deal-wrapper-thumb img:nth-child(1) {
    right: 60px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .center-text .deal-wrapper-thumb img:nth-child(1) {
    right: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .center-text .deal-wrapper-thumb img:nth-child(1) {
    right: 0px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .center-text .deal-wrapper-thumb img:nth-child(1) {
    display: none;
  }
}
.center-text .deal-wrapper-thumb img:nth-child(2) {
  left: 150px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .center-text .deal-wrapper-thumb img:nth-child(2) {
    left: 60px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .center-text .deal-wrapper-thumb img:nth-child(2) {
    left: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .center-text .deal-wrapper-thumb img:nth-child(2) {
    left: 0px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .center-text .deal-wrapper-thumb img:nth-child(2) {
    display: none;
  }
}

/* Sign In Sign Up */
.signin-wrappers {
  max-width: 480px;
  margin: 0 auto;
}
.signin-wrappers.style-02 {
  max-width: 600px;
}

.signin-contents {
  background-color: #fff;
  padding: 30px;
  -webkit-box-shadow: 0 0 30px rgba(221, 221, 221, 0.2);
  box-shadow: 0 0 30px rgba(221, 221, 221, 0.2);
}
.signin-contents .single-title {
  text-align: center;
  font-size: 48px;
  font-weight: 400;
  color: var(--heading-color);
  margin: -10px 0 0;
}
.signin-contents .singnin-subtitle {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  color: var(--light-color);
  text-align: center;
  display: block;
  margin-bottom: 10px;
}

.input-flex-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 24px;
}
@media only screen and (max-width: 480px) {
  .input-flex-item {
    display: block;
  }
}
.input-flex-item .single-input {
  width: 100%;
}
.input-flex-item .single-input .form--control {
  border: 1px solid rgba(221, 221, 221, 0.4);
}

.single-input {
  display: inline-block;
  width: 100%;
}
.single-input .form--control {
  border: 1px solid rgba(221, 221, 221, 0.4);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-shadow: 0 0 10px transparent;
          box-shadow: 0 0 10px transparent;
}
.single-input .form--control:focus {
  border-color: rgba(var(--main-color-one-rgb), 0.3);
  -webkit-box-shadow: 0 0 10px rgba(var(--main-color-one-rgb), 0.1);
          box-shadow: 0 0 10px rgba(var(--main-color-one-rgb), 0.1);
}
.single-input .form--message {
  padding: 15px 0 0 15px;
}

.label-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--heading-color);
}
@media only screen and (max-width: 480px) {
  .label-title {
    font-size: 15px;
  }
}

.single-checbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.or-contents {
  text-align: center;
  position: relative;
  z-index: 2;
}
.or-contents::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  background: rgba(221, 221, 221, 0.4);
  width: 100%;
  height: 1px;
  z-index: -1;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.or-contents .or-para {
  background: #fff;
  padding: 10px 30px;
  color: var(--light-color);
}

.signin-others .single-other-signin:not(:last-child) {
  margin-bottom: 20px;
}
.signin-others .single-other-signin .btn-others {
  padding: 13px 10px;
  display: inline-block;
  border: 1px solid rgba(221, 221, 221, 0.4);
  color: var(--light-color);
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
.signin-others .single-other-signin .btn-others:hover {
  border-color: var(--main-color-one);
  color: var(--main-color-one);
}

.forgot-password .forgot-btn {
  color: var(--main-color-one);
}

/* Toggle Password hide Show */
.single-input {
  position: relative;
  z-index: 1;
}

.toggle-password {
  position: absolute;
  bottom: 13px;
  right: 20px;
  cursor: pointer;
}

.hide-icon {
  display: none;
}

.toggle-password.show-pass .hide-icon {
  display: block;
}

.toggle-password.show-pass .show-icon {
  display: none;
}

/* Discount Popup Area */
.discount-popup-wrapper {
  max-width: 900px;
  margin: 200px auto;
  text-align: center;
  padding: 80px 20px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999999;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .discount-popup-wrapper {
    max-width: 500px;
    padding: 50px 10px;
    margin: 100px auto;
  }
}
@media only screen and (max-width: 767.98px) {
  .discount-popup-wrapper {
    max-width: 400px;
  }
}
@media only screen and (max-width: 575.98px) {
  .discount-popup-wrapper {
    max-width: 350px;
  }
}
@media only screen and (max-width: 480px) {
  .discount-popup-wrapper {
    max-width: 300px;
  }
}
@media only screen and (max-width: 375px) {
  .discount-popup-wrapper {
    max-width: 280px;
  }
}
.discount-popup-wrapper .close-icon {
  position: absolute;
  right: 30px;
  top: 30px;
  z-index: 99;
  cursor: pointer;
  font-size: 24px;
  color: var(--light-color);
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .discount-popup-wrapper .close-icon {
    top: 10px;
    right: 15px;
  }
}

.discount-popup-contents .popup-title {
  font-size: 60px;
  line-height: 80px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .discount-popup-contents .popup-title {
    font-size: 55px;
    line-height: 70px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .discount-popup-contents .popup-title {
    font-size: 50px;
    line-height: 65px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .discount-popup-contents .popup-title {
    font-size: 50px;
    line-height: 60px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .discount-popup-contents .popup-title {
    font-size: 36px;
    line-height: 40px;
  }
}
@media only screen and (max-width: 767.98px) {
  .discount-popup-contents .popup-title {
    font-size: 32px;
  }
}
@media only screen and (max-width: 480px) {
  .discount-popup-contents .popup-title {
    font-size: 28px;
    line-height: 36px;
  }
}
.discount-popup-contents .popup-para {
  font-size: 18px;
  line-height: 30px;
  max-width: 460px;
  margin: 0 auto;
  margin-top: 20px;
  color: var(--light-color);
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .discount-popup-contents .popup-para {
    font-size: 16px;
    line-height: 28px;
  }
}
.discount-popup-contents .popup-form {
  max-width: 500px;
  margin: 50px auto 0;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .discount-popup-contents .popup-form {
    margin: 30px auto 0;
  }
}
.discount-popup-contents .popup-form .single-input {
  position: relative;
  z-index: 1;
}
.discount-popup-contents .popup-form .single-input .form--control {
  border: 0;
  outline: none;
  background: #fff;
  padding: 0 140px 0 20px;
}
@media only screen and (max-width: 375px) {
  .discount-popup-contents .popup-form .single-input .form--control {
    height: 50px;
  }
}
.discount-popup-contents .popup-form .single-input button {
  background: var(--main-color-one);
  color: #fff;
  border: 0;
  outline: none;
  padding: 10px 30px;
  position: absolute;
  right: 0;
  height: 100%;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}
@media only screen and (max-width: 480px) {
  .discount-popup-contents .popup-form .single-input button {
    font-size: 15px;
    padding: 8px 20px;
  }
}
.discount-popup-contents .popup-form .checkbox-inlines {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .discount-popup-contents .popup-form .checkbox-inlines {
    margin-top: 30px;
  }
}

.discount-overlays {
  position: fixed;
  height: 100vh;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.7);
}

.discount-countdown .syotimer__body {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.popup-modal {
  position: relative;
  z-index: 9;
}

.shop-detail-cart-content {
  max-width: 1000px;
  margin: 0 auto;
  position: fixed;
  top: 50%;
  -webkit-transform: translateY(0%) scale(0.6);
          transform: translateY(0%) scale(0.6);
  left: 0;
  right: 0;
  background: #fff;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 400ms;
  transition: all 400ms;
  padding: 20px 0;
}
.shop-detail-cart-content.active {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(-50%) scale(1);
          transform: translateY(-50%) scale(1);
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .shop-detail-cart-content.active {
    top: 0;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .shop-detail-cart-content.active {
    top: 0;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .shop-detail-cart-content.active {
    top: 0;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .shop-detail-cart-content.active {
    top: 0;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .shop-detail-cart-content .shop-details-cart-scroll-responsive {
    height: calc(100vh - 50px);
    overflow-y: scroll;
    overflow-x: hidden;
  }
}
.shop-detail-cart-content .shop-details-cart-contents {
  overflow-y: auto;
  max-height: 650px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .shop-detail-cart-content .shop-details-cart-contents {
    max-height: 690px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .shop-detail-cart-content .shop-details-cart-contents {
    padding: 0 10px;
    overflow-y: hidden !important;
    max-height: initial;
  }
}
.shop-detail-cart-content .nicescroll-rails {
  left: auto !important;
  right: 5px !important;
}
.shop-detail-cart-content .nicescroll-rails .nicescroll-cursors {
  background-color: var(--main-color-one) !important;
}
.shop-detail-cart-content .single-shop-details-wrapper {
  max-width: 100%;
  max-height: calc(620px - 10px);
  overflow-y: auto;
  margin-left: 0;
  margin-top: 30px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .shop-detail-cart-content .single-shop-details-wrapper {
    margin-top: 20px;
    overflow-y: hidden !important;
    max-height: initial;
  }
}
.shop-detail-cart-content .single-shop-details-wrapper .close-icon {
  font-size: 24px;
  position: absolute;
  right: 30px;
  top: 20px;
  cursor: pointer;
  z-index: 999;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .shop-detail-cart-content .single-shop-details-wrapper .close-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 50px;
    width: 50px;
    background: var(--main-color-one);
    color: #fff;
    right: 20px;
    top: 20px;
  }
}
@media only screen and (max-width: 575.98px) {
  .shop-detail-cart-content .single-shop-details-wrapper .close-icon {
    height: 40px;
    width: 40px;
    top: 10px;
    right: 10px;
  }
}

.global-card-thumb-badge-box-product-details{
  display: initial;
  vertical-align: middle;
}
.all-message-wrap {
  display: flex;
  flex-direction: column;
}
.single-message-item {
  background-color: #e7ebec;
  padding: 20px 50px;
  border-radius: 10px;
  margin-bottom: 20px;
  display: inline-block;
}
.single-message-item.admin .top-part {
  flex-direction: row-reverse;
}
.single-message-item.admin .top-part .content {
  flex: 1;
  margin-left: 0;
  margin-right: 15px;
}
.single-message-item.admin {
  text-align: right;
  margin-left: auto;
  margin-right: 0;
}
.single-message-item.customer {
  background-color: #dadde0;
  text-align: left;
  margin-right: auto;
}
.single-message-item .message-content p {
  word-break: break-all;
}
