@charset "UTF-8";
/*
Theme Name: Newspaper Magazine Bussiness
Theme URI:
Author:
Author URI:
Description: Newspaper Magazine is a business website template
Version: 1.0.0
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------

# Typography
# Normalize
# Accessibility
# Globals
# Alignments
# Clearings
# Posts and pages
# Captions
# Galleries
# Unit test
# Block Color Palette Colors
# Sections
    ## navbar
    ## top_bar
    ## header_bottom
    ## banner
    ## banner_ads
    ## news
    ## video
    ## sports
    ## right_side_item
    ## topics
    ## widgets
    ## popular_stories
    ## recent-stories
    ## highlights
    ## trendy
    ## photogallery
    ## blog-details
    ## details_tag_area
    ## details_comments
    ## details_replay
    ## author
    ## about
    ## contact
    ## 404
    ## search_area

# Elements
    ## section_title
    ## button
    ## back_top
    ## preloader
    ## search_popup
    ## sidebars
    ## social-connects
    ## tags-area
    ## categories
    ## whats_new
    ## inner-page-menu
    ## common-socials
    ## faq

--------------------------------------------------------------*/
/* Media Queries */
/*--------------------------------------------------------------
    google fonts
--------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,900;1,300;1,400;1,500;1,600;1,700;1,900&family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,900;1,400;1,500;1,600;1,700;1,900&family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,900;1,300;1,400;1,500;1,600;1,700;1,900&display=swap");
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
:root {
  --main-color-one: #F83A26;
  --main-color-two: #FFBA00;
  --main-color-three: #FF6A3A;
  --main-color-four: #FF695C;
  --heading-color: #1B1C25;
  --light-color: #666666;
  --extra-light-color: #999999;
  --heading-font: "Rubik", sans-serif;
  --body-font: "Roboto", sans-serif;
  --roboto-font: "Roboto", sans-serif;
  --rubik-font: "Rubik", sans-serif;
  --opensans-font: "Open Sans", sans-serif;
  --montserrat-font: "Montserrat", sans-serif;
  --jost-font: "Jost", sans-serif;
  --playfair-font: "Playfair Display", serif;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  overflow-x: hidden;
  font-family: var(--body-font);
}

* {
  -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(--extra-light-color);
  overflow-x: hidden;
  font-family: var(--body-font);
  font-size: 16px;
}
@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: 320px) 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: 320px) 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: all 0.3s;
  transition: all 0.3s;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  display: -webkit-box;
}

p {
  color: var(--extra-light-color);
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  margin-bottom: 0;
  line-height: 26px;
  font-size: 16px;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  display: -webkit-box;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  p {
    -webkit-line-clamp: 2;
  }
}

a {
  color: inherit;
  text-decoration: none;
  color: var(--extra-light-color);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

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;
}

/* 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;
}

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

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

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

.body-bg-1 {
  background: #F1F3F4;
}

.body-bg-2 {
  background: #FFFAF5;
}

.body-bg-3 {
  background: #1B1C25;
}

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

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

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

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

.bg-item-one {
  background: #FFF1E8;
}

.bg-item-two {
  background: #E9F6FF;
}

.bg-item-three {
  background: #FFECF0;
}

.bg-item-four {
  background: #FFF8F0;
}

.bg-item-five {
  background: #F7F7F6;
}

.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-yellow {
  color: #FFBA5C;
}

.footer-bg {
  background: #FFFAF5;
}

.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;
}

.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;
}

.no-margin {
  margin: 0;
}

.lazyloads {
  display: block;
}

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

.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: 320px) 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);
}
.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);
}

.common-title-two {
  font-size: 22px;
  font-weight: 500;
  line-height: 30px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}
.common-title-two.white-color {
  color: #fff;
}

.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;
}

.store-area .tab-content,
.shop-area .tab-content,
.tab-details-tab-area .tab-content {
  display: none;
}

.store-area .tab-content.active,
.shop-area .tab-content.active,
.tab-details-tab-area .tab-content.active {
  display: block;
  -webkit-animation: 1s fade-effects;
          animation: 1s fade-effects;
}

/* .tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    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);
  }
}
.border-1 {
  border: 1px solid #E8E8E8;
}

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

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

.nav-style-one {
  position: relative;
}
.nav-style-one:hover .prev-icon,
.nav-style-one:hover .next-icon {
  visibility: visible;
  opacity: 1;
  left: -25px;
}
.nav-style-one:hover .next-icon {
  left: auto;
  right: -25px;
}
.nav-style-one.nav-color-two .prev-icon,
.nav-style-one.nav-color-two .next-icon {
  color: var(--main-color-two);
}
.nav-style-one.nav-color-two .prev-icon:hover,
.nav-style-one.nav-color-two .next-icon:hover {
  background: var(--main-color-two);
}
.nav-style-one.nav-color-three .prev-icon,
.nav-style-one.nav-color-three .next-icon {
  color: var(--main-color-three);
}
.nav-style-one.nav-color-three .prev-icon:hover,
.nav-style-one.nav-color-three .next-icon:hover {
  background: var(--main-color-three);
}
.nav-style-one.nav-color-four .prev-icon,
.nav-style-one.nav-color-four .next-icon {
  color: var(--main-color-four);
}
.nav-style-one.nav-color-four .prev-icon:hover,
.nav-style-one.nav-color-four .next-icon:hover {
  background: var(--main-color-four);
}
.nav-style-one .prev-icon,
.nav-style-one .next-icon {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 25px;
  font-size: 30px;
  cursor: pointer;
  z-index: 99;
  background: #fff;
  color: var(--main-color-one);
  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;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  visibility: hidden;
  opacity: 0;
}
.nav-style-one .prev-icon:hover,
.nav-style-one .next-icon:hover {
  color: #fff;
  background: var(--main-color-one);
}
@media only screen and (max-width: 375px) {
  .nav-style-one .prev-icon,
.nav-style-one .next-icon {
    left: -12px;
  }
}
.nav-style-one .next-icon {
  left: auto;
  right: 25px;
}
@media only screen and (max-width: 375px) {
  .nav-style-one .next-icon {
    right: -12px;
  }
}

.dot-style-one.banner-dots .slick-dots li {
  height: 5px;
  width: 15px;
  display: block;
  border-radius: 0;
}
.dot-style-one.banner-dots .slick-dots li.slick-active {
  width: 40px;
}
.dot-style-one.dot-absolute .slick-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@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-02 .slick-dots li.slick-active {
  background: var(--main-color-one);
  width: 35px;
  border-radius: 2px;
}
.dot-style-one.dot-03 .slick-dots li {
  border-radius: 0;
}
.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;
}
.dot-style-one .slick-dots li {
  text-indent: -9999px;
  height: 10px;
  width: 10px;
  background: #ddd;
  border-radius: 50%;
  display: block;
  margin: 0 5px;
  border: 0;
  outline: none;
  cursor: pointer;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.dot-style-one .slick-dots li.slick-active {
  background: var(--main-color-one);
}

.body-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;
}
.body-overlay.active {
  visibility: visible;
  opacity: 1;
  z-index: 9;
  left: 0;
}

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

@media (min-width: 320px) 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;
  }
}
/*--------------------------------------------------------------
# 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-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;
}

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

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

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

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

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

.ff-playfair {
  font-family: var(--playfair-font) !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: 320px) 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: 320px) and (max-width: 991.98px) {
  .padding-top-40 {
    padding-top: 30px !important;
  }
}

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

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

.padding-top-50 {
  padding-top: 50px;
}
@media (min-width: 320px) 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: 320px) and (max-width: 991.98px) {
  .padding-top-65 {
    padding-top: 40px !important;
  }
}

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

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

.padding-top-80 {
  padding-top: 80px;
}
@media (min-width: 320px) 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: 320px) 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: 320px) 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: 320px) 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: 320px) and (max-width: 991.98px) {
  .padding-bottom-40 {
    padding-bottom: 30px !important;
  }
}

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

.padding-bottom-50 {
  padding-bottom: 50px;
}
@media (min-width: 320px) 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: 320px) and (max-width: 991.98px) {
  .padding-bottom-65 {
    padding-bottom: 40px !important;
  }
}

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

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

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

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

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

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

.padding-bottom-100 {
  padding-bottom: 100px;
}
@media (min-width: 320px) 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: 320px) and (max-width: 991.98px) {
  .padding-bottom-130 {
    padding-bottom: 80px !important;
  }
}

.padding-bottom-140 {
  padding-bottom: 140px;
}
@media (min-width: 320px) 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 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 pulsing {
  from {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
  to {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
}
@keyframes pulsing {
  from {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
  to {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
}
/*----------------------------------------------
    # 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: 999;
}
@media (min-width: 320px) 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.index-02 {
  padding: 38px 0;
}
.navbar-area.index-03 {
  padding: 22px 0;
}
.navbar-area.index-02 {
  padding: 38px 0;
}
.navbar-area.index-02 {
  padding: 38px 0;
}
.navbar-area.index-02 {
  padding: 38px 0;
}
.navbar-area.index-07 {
  padding: 22px 0;
}
.navbar-area.index-02 {
  padding: 38px 0;
}
.navbar-area .nav-container {
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 10px 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: 320px) 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: left;
}
.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.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: 1400px) and (max-width: 1599.98px) {
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children > a {
    padding: 10px 15px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children > a {
    padding: 10px 15px;
  }
}
@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: 320px) 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: 320px) 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: 320px) 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-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: 1200px) and (max-width: 1399.98px) {
  .navbar-area .nav-container .navbar-collapse .navbar-nav li a {
    padding: 7px 15px;
  }
}
@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;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .navbar-area .nav-container .nav-right-content {
    display: none;
  }
}
.navbar-area .nav-container .nav-right-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-left: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.navbar-area .nav-container .nav-right-content ul li {
  display: inline-block;
  margin: 0 15px;
}
.navbar-area .nav-container .nav-right-content ul li:last-child {
  margin-right: 0;
  margin-left: 0;
}
.navbar-area .nav-container .nav-right-content ul li a {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.navbar-area .nav-container .nav-right-content ul li .info-bar-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .navbar-area .nav-container .nav-right-content ul li .info-bar-item {
    gap: 30px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .navbar-area .nav-container .nav-right-content ul li .info-bar-item {
    gap: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .navbar-area.white-nav .nav-container .navbar-collapse.show .navbar-nav {
    background: #212121;
  }
  .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 .responsive-mobile-menu .navbar-toggler {
    position: absolute;
    right: 0px;
    top: 50%;
    /* IE 9 */
    -webkit-transform: translateY(-50%);
    /* Chrome, Safari, Opera */
    transform: translateY(-50%);
    border: 1px solid rgba(0, 0, 0, 0.5);
    outline: none;
      box-shadow: none;
  }

  .navbar-area .nav-container .responsive-mobile-menu .navbar-toggler.white-color {
    border: 1px solid rgba(255, 255, 255, 0.8);
  }
  .navbar-area .nav-container .responsive-mobile-menu .navbar-toggler.white-color .navbar-toggler-icon {
    background: rgba(255, 255, 255, 0.8);
  }
  .navbar-area .nav-container .responsive-mobile-menu .navbar-toggler.white-color .navbar-toggler-icon::before, .navbar-area .nav-container .responsive-mobile-menu .navbar-toggler.white-color .navbar-toggler-icon::after {
    background: rgba(255, 255, 255, 0.8);
  }
  .navbar-area .nav-container .responsive-mobile-menu .navbar-toggler.white-color.active .navbar-toggler-icon::before, .navbar-area .nav-container .responsive-mobile-menu .navbar-toggler.white-color.active .navbar-toggler-icon::after {
    background: rgba(255, 255, 255, 0.8);
  }
  .navbar-area .nav-container .responsive-mobile-menu .navbar-toggler.active .navbar-toggler-icon {
    background: none;
  }
  .navbar-area .nav-container .responsive-mobile-menu .navbar-toggler.active .navbar-toggler-icon::before, .navbar-area .nav-container .responsive-mobile-menu .navbar-toggler.active .navbar-toggler-icon::after {
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .navbar-area .nav-container .responsive-mobile-menu .navbar-toggler.active .navbar-toggler-icon::after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .navbar-area .nav-container .responsive-mobile-menu .navbar-toggler .navbar-toggler-icon {
    background: rgba(0, 0, 0, 0.5);
    display: inline-block;
    width: 25px;
    height: 2px;
    margin: 10px -4px 10px;
    position: relative;
  }
  .navbar-area .nav-container .responsive-mobile-menu .navbar-toggler .navbar-toggler-icon::before, .navbar-area .nav-container .responsive-mobile-menu .navbar-toggler .navbar-toggler-icon::after {
    position: absolute;
    content: "";
    height: 2px;
    width: 25px;
    background: rgba(0, 0, 0, 0.5);
    top: -7px;
    left: 0;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .navbar-area .nav-container .responsive-mobile-menu .navbar-toggler .navbar-toggler-icon::after {
    top: auto;
    bottom: -7px;
  }
  .navbar-area .nav-container .navbar-brand {
    display: block;
  }
  .navbar-area .nav-container .navbar-brand .navbar-toggler {
    position: absolute;
    right: 10px;
    border: 1px solid #e2e2e2;
  }
  .navbar-area .nav-container .navbar-collapse {
    max-width: 100%;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav {
    background: #DDD;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav {
    display: block;
    margin-top: 20px;
  }
  .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;
    /* @include transition(height 500ms); */
    -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 {
    margin: 0 15px;
  }
  .navbar-area .nav-container .logo-wrapper .logo img {
    max-width: 140px;
  }
}
.navbar-area.nav-color-two .navbar-collapse .navbar-nav li a:hover {
  color: var(--main-color-two);
}
.navbar-area.nav-color-two .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu {
  border-color: var(--main-color-two);
}
.navbar-area.nav-color-two .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a:hover {
  background-color: var(--main-color-two);
}
.navbar-area.nav-color-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.nav-color-three .navbar-collapse .navbar-nav li a:hover {
  color: var(--main-color-three);
}
.navbar-area.nav-color-three .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu {
  border-color: var(--main-color-three);
}
.navbar-area.nav-color-three .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a:hover {
  background-color: var(--main-color-three);
}
.navbar-area.nav-color-three .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.nav-color-four .navbar-collapse .navbar-nav li a:hover {
  color: var(--main-color-four);
}
.navbar-area.nav-color-four .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu {
  border-color: var(--main-color-four);
}
.navbar-area.nav-color-four .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a:hover {
  background-color: var(--main-color-four);
}
.navbar-area.nav-color-four .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 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:hover:hover > .megamenu-area {
  visibility: visible;
  opacity: 1;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:hover:hover > .megamenu-area {
    height: auto;
    padding: 20px 0;
    gap: 30px;
  }
}

.nav-color-two .megamenu-area .megamenu-single .megamenu-items .megamenu-contents .megamenu-title:hover {
  color: var(--main-color-two);
}
.nav-color-two .megamenu-area .megamenu-single .megamenu-items .megamenu-contents .price-updates .price-title {
  color: var(--main-color-two);
}
.nav-color-two .megamenu-area .megamenu-single .megamenu-items-big .megamenu-contents .megamenu-title:hover {
  color: var(--main-color-two);
}
.nav-color-two .megamenu-area .megamenu-single .megamenu-items-big .megamenu-contents .price-updates .price-title {
  color: var(--main-color-two);
}
.nav-color-two .megamenu-area .megamenu-single .single-category-megamenu:hover .category-contents .titles {
  color: var(--main-color-two);
}
.nav-color-two .megamenu-area .megamenu-single .single-category-megamenu .category-contents .collection-btn:hover {
  color: var(--main-color-two);
}
.nav-color-two .megamenu-area .megamenu-single .new-collection .product-collection-btn:hover {
  background: var(--main-color-two) !important;
}

.nav-color-three .megamenu-area .megamenu-single .megamenu-items .megamenu-contents .megamenu-title:hover {
  color: var(--main-color-three);
}
.nav-color-three .megamenu-area .megamenu-single .megamenu-items .megamenu-contents .price-updates .price-title {
  color: var(--main-color-three);
}
.nav-color-three .megamenu-area .megamenu-single .megamenu-items-big .megamenu-contents .megamenu-title:hover {
  color: var(--main-color-three);
}
.nav-color-three .megamenu-area .megamenu-single .megamenu-items-big .megamenu-contents .price-updates .price-title {
  color: var(--main-color-three);
}
.nav-color-three .megamenu-area .megamenu-single .single-category-megamenu:hover .category-contents .titles {
  color: var(--main-color-three);
}
.nav-color-three .megamenu-area .megamenu-single .single-category-megamenu .category-contents .collection-btn:hover {
  color: var(--main-color-three);
}
.nav-color-three .megamenu-area .megamenu-single .new-collection .product-collection-btn:hover {
  background: var(--main-color-three) !important;
}

.nav-color-four .megamenu-area .megamenu-single .megamenu-items .megamenu-contents .megamenu-title:hover {
  color: var(--main-color-four);
}
.nav-color-four .megamenu-area .megamenu-single .megamenu-items .megamenu-contents .price-updates .price-title {
  color: var(--main-color-four);
}
.nav-color-four .megamenu-area .megamenu-single .megamenu-items-big .megamenu-contents .megamenu-title:hover {
  color: var(--main-color-four);
}
.nav-color-four .megamenu-area .megamenu-single .megamenu-items-big .megamenu-contents .price-updates .price-title {
  color: var(--main-color-four);
}
.nav-color-four .megamenu-area .megamenu-single .single-category-megamenu:hover .category-contents .titles {
  color: var(--main-color-four);
}
.nav-color-four .megamenu-area .megamenu-single .single-category-megamenu .category-contents .collection-btn:hover {
  color: var(--main-color-four);
}
.nav-color-four .megamenu-area .megamenu-single .new-collection .product-collection-btn:hover {
  background: var(--main-color-four) !important;
}

.white-color .megamenu-area .megamenu-single .new-collection .product-collection-btn {
  background: var(--heading-color);
}
.white-color .megamenu-area .megamenu-single .new-collection .product-collection-btn:hover {
  background: var(--main-color-two) !important;
}

.megamenu-area {
  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: 50px;
  background: #fff;
  padding: 30px;
  -webkit-box-shadow: 0 0 10px rgba(221, 221, 221, 0.3);
          box-shadow: 0 0 10px rgba(221, 221, 221, 0.3);
  position: absolute;
  top: 100%;
  left: 10%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 9;
  max-width: 1600px;
  width: 1560px;
  max-height: 570px;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (min-width: 1600px) and (max-width: 1799.98px) {
  .megamenu-area {
    max-width: 1000px;
    gap: 40px;
    min-width: 100%;
    left: 50%;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .megamenu-area {
    max-width: 830px;
    min-width: 100%;
    gap: 40px;
    max-height: 350px;
    overflow-y: auto;
    left: 50%;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .megamenu-area {
    min-width: 100%;
    max-width: 800px;
    gap: 30px;
    left: auto;
    -webkit-transform: translateX(40%);
            transform: translateX(40%);
    right: 0;
    max-height: 350px;
    overflow-y: auto;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .megamenu-area {
    min-width: 100%;
    max-width: 600px;
    gap: 30px;
    left: auto;
    -webkit-transform: translateX(40%);
            transform: translateX(40%);
    right: 0;
    max-height: 350px;
    overflow-y: auto;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .megamenu-area {
    max-width: 100%;
    left: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    min-width: 100%;
    position: initial;
    border-top: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-left: 0;
    padding: 0;
    height: 0;
    overflow: hidden;
    max-height: 250px;
    overflow-y: scroll;
    -webkit-transition: all 500ms linear;
    transition: all 500ms linear;
    display: block;
  }
}
.megamenu-area.color-two .megamenu-single .megamenu-items .megamenu-contents .megamenu-title:hover {
  color: var(--main-color-two);
}
.megamenu-area.color-two .megamenu-single .megamenu-items .megamenu-contents .price-updates .price-title {
  color: var(--main-color-two);
}
.megamenu-area.color-three .megamenu-single .megamenu-items .megamenu-contents .megamenu-title:hover {
  color: var(--main-color-three);
}
.megamenu-area.color-three .megamenu-single .megamenu-items .megamenu-contents .price-updates .price-title {
  color: var(--main-color-three);
}
.megamenu-area.color-four .megamenu-single .megamenu-items .megamenu-contents .megamenu-title:hover {
  color: var(--main-color-four);
}
.megamenu-area.color-four .megamenu-single .megamenu-items .megamenu-contents .price-updates .price-title {
  color: var(--main-color-four);
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .megamenu-single {
    display: table;
    margin-top: 20px;
    padding: 0 0 0 20px;
  }
}
.megamenu-single .megamenu-heading-title {
  font-size: 24px;
  font-weight: 500;
  padding: 0px 0 20px 0;
}
.megamenu-single .megamenu-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 5px !important;
}
.megamenu-single .megamenu-items .megamenu-thumbs {
  margin-right: 20px;
  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: 80px;
  width: 70px;
}
.megamenu-single .megamenu-items .megamenu-contents {
  text-align: left;
}
.megamenu-single .megamenu-items .megamenu-contents .megamenu-title {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.megamenu-single .megamenu-items .megamenu-contents .megamenu-title:hover {
  color: var(--main-color-one);
}
.megamenu-single .megamenu-items .megamenu-contents .price-updates .price-title {
  color: var(--main-color-one);
  font-size: 20px;
  font-weight: 500;
}
.megamenu-single .megamenu-items .megamenu-contents .price-updates .old-price {
  color: var(--extra-light-color);
  text-decoration: line-through;
}
.megamenu-single .megamenu-items-big {
  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;
  padding: 10px 0 !important;
}
@media only screen and (max-width: 480px) {
  .megamenu-single .megamenu-items-big {
    display: block;
  }
}
.megamenu-single .megamenu-items-big .megamenu-thumbs {
  height: 200px;
  width: 250px;
  margin-right: 20px;
}
@media only screen and (max-width: 375px) {
  .megamenu-single .megamenu-items-big .megamenu-thumbs {
    margin-right: 0;
  }
}
.megamenu-single .megamenu-items-big .megamenu-thumbs img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.megamenu-single .megamenu-items-big .megamenu-contents {
  text-align: left;
}
@media only screen and (max-width: 480px) {
  .megamenu-single .megamenu-items-big .megamenu-contents {
    margin-top: 15px;
  }
}
.megamenu-single .megamenu-items-big .megamenu-contents .megamenu-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  margin-bottom: 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.megamenu-single .megamenu-items-big .megamenu-contents .megamenu-title:hover {
  color: var(--main-color-one);
}
.megamenu-single .megamenu-items-big .megamenu-contents .price-updates .price-title {
  color: var(--main-color-one);
  font-size: 20px;
  font-weight: 500;
}
.megamenu-single .megamenu-items-big .megamenu-contents .price-updates .old-price {
  color: var(--extra-light-color);
  text-decoration: line-through;
}
.megamenu-single .new-collection {
  padding: 0px 0 !important;
  display: inline-block;
  height: 400px;
  width: 350px;
  position: relative;
  z-index: 2;
}
.megamenu-single .new-collection:hover .product-collection-btn {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media only screen and (max-width: 375px) {
  .megamenu-single .new-collection {
    height: 100%;
    width: 280px;
  }
}
.megamenu-single .new-collection > a {
  padding: 0 !important;
}
.megamenu-single .new-collection img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.megamenu-single .new-collection .product-collection-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  padding: 10px 20px !important;
  background: #fff;
  font-size: 16px;
  font-weight: 500;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  visibility: hidden;
  opacity: 0;
}
.megamenu-single .new-collection .product-collection-btn:hover {
  background: var(--main-color-one) !important;
  color: #fff !important;
}
.megamenu-single .single-category-megamenu {
  padding: 30px 50px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .megamenu-single .single-category-megamenu {
    padding: 30px;
  }
}
@media only screen and (max-width: 375px) {
  .megamenu-single .single-category-megamenu {
    padding: 20px;
  }
}
.megamenu-single .single-category-megamenu .category-thumb {
  height: 200px;
  width: 200px;
}
.megamenu-single .single-category-megamenu .category-thumb img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.megamenu-single .single-category-megamenu .category-contents .titles:hover {
  color: var(--main-color-one);
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .megamenu-single .single-category-megamenu .category-contents .titles {
    font-size: 28px;
  }
}
@media only screen and (max-width: 375px) {
  .megamenu-single .single-category-megamenu .category-contents .titles {
    font-size: 24px;
  }
}
.megamenu-single .single-category-megamenu .category-contents .collection-btn {
  display: block;
  margin-top: 10px;
  font-size: 16px;
  font-weight: 500;
  padding: 0 !important;
  text-decoration: underline;
  color: var(--light-color);
}
@media only screen and (max-width: 767.98px) {
  .megamenu-single .single-category-megamenu .category-contents .collection-btn {
    font-size: 15px;
  }
}
@media only screen and (max-width: 375px) {
  .megamenu-single .single-category-megamenu .category-contents .collection-btn {
    font-size: 14px;
  }
}
.megamenu-single .single-category-megamenu .category-contents .collection-btn:hover {
  color: var(--main-color-one);
}

/* Banner  */
.banner-area {
  position: relative;
  z-index: 1;
  padding: 0;
  overflow: hidden;
}

.banner-middle-content {
  position: relative;
  z-index: 2;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .banner-middle-content {
    margin-top: 20px;
  }
}
.banner-middle-content .banner-middle-image {
  position: relative;
  z-index: 2;
  margin-bottom: -5px;
}
.banner-middle-content .banner-middle-image .middle-content {
  max-width: 290px;
  position: absolute;
  bottom: 30px;
  left: 30px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner-middle-content .banner-middle-image .middle-content {
    bottom: 20px;
    left: 20px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .banner-middle-content .banner-middle-image .middle-content {
    bottom: 20px;
    left: 20px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .banner-middle-content .banner-middle-image .middle-content .banner-middle-title {
    font-size: 32px !important;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 575.98px) {
  .banner-middle-content .banner-middle-image .middle-content .banner-middle-title {
    font-size: 28px !important;
  }
}
.banner-middle-content .banner-middle-image .middle-content .banner-middle-title:hover {
  color: var(--main-color-one);
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .banner-middle-content .banner-middle-image .middle-content .btn-buy {
    margin-top: 20px;
    font-size: 18px;
  }
}

@media (min-width: 320px) and (max-width: 991.98px) {
  .banner-right-image-content {
    margin-top: 30px;
  }
}

.single-right-image {
  display: block;
  position: relative;
  z-index: 2;
  padding: 6px 0;
}
.single-right-image:not(:last-child) {
  margin-bottom: 35px;
}
.single-right-image img {
  margin: 0 auto;
  text-align: center;
}
.single-right-image .banner-right-title {
  position: absolute;
  bottom: 30px;
  left: 0px;
  right: 0;
  text-align: center;
  text-transform: uppercase;
  z-index: 9;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-right-image .banner-right-title {
    bottom: 20px;
    left: 20px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-right-image .banner-right-title {
    bottom: 20px;
    left: 20px;
    font-size: 22px !important;
  }
}
@media only screen and (max-width: 575.98px) {
  .single-right-image .banner-right-title {
    font-size: 20px !important;
  }
}
.single-right-image .banner-right-title:hover {
  color: var(--main-color-one);
}

.banner-contents-wrappers {
  position: relative;
  z-index: 1;
}

.banner-two .banner-contents {
  padding: 105px 0 105px 115px;
  max-width: 700px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .banner-two .banner-contents {
    padding: 105px 0 105px 70px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .banner-two .banner-contents {
    padding: 105px 0 105px 40px;
    max-width: 550px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner-two .banner-contents {
    padding: 105px 0 105px 40px;
    max-width: 550px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .banner-two .banner-contents {
    padding: 60px 0 60px 40px;
    max-width: 520px;
  }
}
@media only screen and (max-width: 575.98px) {
  .banner-two .banner-contents {
    padding: 60px 0 60px 20px;
    max-width: 100%;
  }
}

.banner-three .banner-contents {
  padding: 180px 0 200px 0px;
  max-width: 680px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .banner-three .banner-contents {
    padding: 180px 0 200px 0px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .banner-three .banner-contents {
    padding: 180px 0 200px 0px;
    max-width: 550px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .banner-three .banner-contents {
    padding: 130px 0 160px 0px;
    max-width: 520px;
  }
}
@media only screen and (max-width: 575.98px) {
  .banner-three .banner-contents {
    padding: 100px 0 120px 0px;
    max-width: 100%;
  }
}

.banner-four {
  padding: 150px 0 150px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .banner-four {
    padding: 100px 0 0px;
  }
}
@media only screen and (max-width: 480px) {
  .banner-four {
    padding: 80px 0 0px;
  }
}
.banner-four .banner-right-contents-all {
  display: block;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .banner-four .banner-shapes {
    display: none;
  }
}
.banner-four .banner-contents {
  padding: 0px 0 0px 0px;
  max-width: 620px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .banner-four .banner-contents {
    max-width: 550px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner-four .banner-contents {
    padding: 50px 0 0px 0px;
    max-width: 550px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .banner-four .banner-contents {
    padding: 50px 0 0px 0px;
    max-width: 520px;
  }
}
.banner-four .banner-contents .btn-wrapper .cmn-btn:hover {
  background: #fff;
  color: var(--main-color-three);
}

.banner-five {
  padding: 160px 0 0px;
}
@media (min-width: 1200px) and (max-width: 1799.98px) {
  .banner-five {
    padding: 150px 0 0;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner-five {
    padding: 150px 0 0;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .banner-five {
    padding: 100px 0 0px;
  }
}
@media only screen and (max-width: 480px) {
  .banner-five {
    padding: 80px 0 0px;
  }
}
.banner-five .banner-five-shapes::before {
  content: "";
  height: 364px;
  width: 364px;
  border-radius: 50%;
  background: var(--main-color-one);
  position: absolute;
  left: 30px;
  top: 100px;
  z-index: -1;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .banner-five .banner-five-shapes::before {
    left: 70px;
    top: 50px;
    height: 300px;
    width: 300px;
  }
}
@media only screen and (max-width: 575.98px) {
  .banner-five .banner-five-shapes::before {
    left: 80px;
    top: 50px;
    height: 200px;
    width: 200px;
  }
}
@media only screen and (max-width: 480px) {
  .banner-five .banner-five-shapes::before {
    left: 50px;
  }
}
@media only screen and (max-width: 375px) {
  .banner-five .banner-five-shapes::before {
    left: 30px;
  }
}
.banner-five .banner-five-shapes.bg-color-2::before {
  background: var(--main-color-two);
}
.banner-five .banner-five-shapes.bg-color-3::before {
  background: var(--main-color-three);
}
.banner-five .banner-five-shapes.bg-color-4::before {
  background: var(--main-color-four);
}
.banner-five .banner-right-contents-all {
  display: block;
}
.banner-five .banner-contents {
  padding: 0;
  max-width: 720px;
  z-index: 2;
  position: relative;
}
@media (min-width: 1600px) and (max-width: 1799.98px) {
  .banner-five .banner-contents {
    padding: 150px 0 0px 0px;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .banner-five .banner-contents {
    padding: 100px 0 0px 0px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .banner-five .banner-contents {
    padding: 150px 0 0px 0px;
    max-width: 550px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner-five .banner-contents {
    padding: 100px 0 0px 0px;
    max-width: 550px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .banner-five .banner-contents {
    padding: 10px 0 0px 0px;
    max-width: 520px;
  }
}
.banner-five .banner-contents .title {
  font-size: 100px;
  -webkit-line-clamp: 3;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .banner-five .banner-contents .title {
    font-size: 85px;
    line-height: 100px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .banner-five .banner-contents .title {
    font-size: 75px;
    line-height: 90px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner-five .banner-contents .title {
    font-size: 65px;
    line-height: 90px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .banner-five .banner-contents .title {
    font-size: 60px;
    line-height: 70px;
  }
}
@media only screen and (max-width: 767.98px) {
  .banner-five .banner-contents .title {
    font-size: 50px;
    line-height: 60px;
  }
}
@media only screen and (max-width: 480px) {
  .banner-five .banner-contents .title {
    font-size: 50px;
    line-height: 60px;
  }
}
@media only screen and (max-width: 375px) {
  .banner-five .banner-contents .title {
    font-size: 35px;
    line-height: 45px;
  }
}
.banner-five .banner-contents .btn-wrapper .cmn-btn:hover {
  background: #fff;
  color: var(--main-color-one);
}

.banner-six .slider-shapes {
  -webkit-animation: 5s floating linear infinite;
          animation: 5s floating linear infinite;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .banner-six .slider-shapes {
    display: none;
  }
}
.banner-six .banner-contents {
  padding: 280px 0 250px;
  max-width: 630px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .banner-six .banner-contents {
    padding: 150px 0 250px;
  }
}
@media only screen and (max-width: 480px) {
  .banner-six .banner-contents {
    padding: 150px 0 200px;
  }
}
.banner-six .banner-contents .title {
  font-size: 120px;
  line-height: 140px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .banner-six .banner-contents .title {
    font-size: 85px;
    line-height: 100px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .banner-six .banner-contents .title {
    font-size: 75px;
    line-height: 90px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner-six .banner-contents .title {
    font-size: 65px;
    line-height: 90px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .banner-six .banner-contents .title {
    font-size: 60px;
    line-height: 70px;
  }
}
@media only screen and (max-width: 480px) {
  .banner-six .banner-contents .title {
    font-size: 50px;
    line-height: 60px;
  }
}
@media only screen and (max-width: 375px) {
  .banner-six .banner-contents .title {
    font-size: 35px;
    line-height: 45px;
  }
}
.banner-six .banner-contents .btn-wrapper .cmn-btn:hover {
  background: #fff;
  color: var(--main-color-one);
}

.banner-seven .banner-contents {
  padding: 130px 0;
  max-width: 630px;
  margin-left: auto;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .banner-seven .banner-contents {
    padding: 130px 0;
    max-width: 620px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .banner-seven .banner-contents {
    padding: 100px 0;
    max-width: 530px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner-seven .banner-contents {
    padding: 100px 0;
    max-width: 500px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .banner-seven .banner-contents {
    padding: 90px 0;
  }
}
@media only screen and (max-width: 575.98px) {
  .banner-seven .banner-contents {
    padding: 70px 0;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .banner-seven .banner-contents .banner-store {
    margin-bottom: 10px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .banner-seven .banner-contents .banner-store {
    margin-bottom: 10px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner-seven .banner-contents .banner-store {
    margin-bottom: 10px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .banner-seven .banner-contents .banner-store {
    margin-bottom: 10px;
  }
}
.banner-seven .banner-contents .title {
  font-size: 110px;
  line-height: 130px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .banner-seven .banner-contents .title {
    font-size: 85px;
    line-height: 80px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .banner-seven .banner-contents .title {
    font-size: 75px;
    line-height: 75px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner-seven .banner-contents .title {
    font-size: 65px;
    line-height: 65px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .banner-seven .banner-contents .title {
    font-size: 60px;
    line-height: 70px;
  }
}
@media only screen and (max-width: 480px) {
  .banner-seven .banner-contents .title {
    font-size: 50px;
    line-height: 60px;
  }
}
@media only screen and (max-width: 375px) {
  .banner-seven .banner-contents .title {
    font-size: 35px;
    line-height: 45px;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .banner-seven .banner-contents .banner-para {
    margin-top: 25px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .banner-seven .banner-contents .banner-para {
    margin-top: 25px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner-seven .banner-contents .banner-para {
    margin-top: 20px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .banner-seven .banner-contents .banner-para {
    margin-top: 20px;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .banner-seven .banner-contents .btn-wrapper {
    margin-top: 35px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .banner-seven .banner-contents .btn-wrapper {
    margin-top: 35px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner-seven .banner-contents .btn-wrapper {
    margin-top: 25px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .banner-seven .banner-contents .btn-wrapper {
    margin-top: 25px;
  }
}
@media only screen and (max-width: 480px) {
  .banner-seven .banner-contents .btn-wrapper {
    margin-top: 30px;
  }
}
.banner-seven .banner-contents .btn-wrapper .cmn-btn:hover {
  background: #fff;
  color: var(--main-color-four);
}
.banner-seven .banner-images-right {
  position: absolute;
  left: 50px;
  bottom: 0;
  z-index: 0;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .banner-seven .banner-images-right {
    max-width: 600px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .banner-seven .banner-images-right {
    max-width: 500px;
    left: 0 !important;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner-seven .banner-images-right {
    max-width: 460px;
    left: 0 !important;
  }
}

.banner-eight {
  overflow: visible;
  padding-top: 150px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .banner-eight {
    padding-top: 60px;
  }
}
.banner-eight .banner-contents {
  padding: 240px 0 200px;
}
@media (min-width: 1600px) and (max-width: 1799.98px) {
  .banner-eight .banner-contents {
    padding: 210px 0 250px;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .banner-eight .banner-contents {
    padding: 190px 0 250px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .banner-eight .banner-contents {
    padding: 150px 0 220px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner-eight .banner-contents {
    padding: 140px 0 180px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .banner-eight .banner-contents {
    padding: 100px 0 0;
    max-width: 400px;
  }
}
@media only screen and (max-width: 575.98px) {
  .banner-eight .banner-contents {
    padding: 80px 0 0;
  }
}
@media only screen and (max-width: 375px) {
  .banner-eight .banner-contents {
    padding: 80px 0 0;
    max-width: 270px;
  }
}
.banner-eight .banner-contents .title {
  font-size: 110px;
  line-height: 130px;
  color: var(--heading-color);
}
@media (min-width: 1600px) and (max-width: 1799.98px) {
  .banner-eight .banner-contents .title {
    font-size: 110px;
    line-height: 130px;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .banner-eight .banner-contents .title {
    font-size: 90px;
    line-height: 105px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .banner-eight .banner-contents .title {
    font-size: 75px;
    line-height: 90px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner-eight .banner-contents .title {
    font-size: 65px;
    line-height: 75px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .banner-eight .banner-contents .title {
    font-size: 60px;
    line-height: 70px;
  }
}
@media only screen and (max-width: 480px) {
  .banner-eight .banner-contents .title {
    font-size: 50px;
    line-height: 60px;
  }
}
@media only screen and (max-width: 375px) {
  .banner-eight .banner-contents .title {
    font-size: 35px;
    line-height: 45px;
  }
}
@media only screen and (max-width: 480px) {
  .banner-eight .banner-contents .btn-wrapper {
    margin-top: 30px;
  }
}
.banner-eight .banner-contents .btn-wrapper .cmn-btn:hover {
  background: var(--heading-color);
  color: var(--main-color-two);
}
.banner-eight .banner-images-rights {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .banner-eight .banner-images-rights {
    display: none;
  }
}
.banner-eight .banner-images-rights .single-banner-img img {
  border-radius: 0 0 0 170px;
  margin-left: auto;
  max-height: 885px;
}
@media (min-width: 1600px) and (max-width: 1799.98px) {
  .banner-eight .banner-images-rights .single-banner-img img {
    max-height: 8570px;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .banner-eight .banner-images-rights .single-banner-img img {
    max-height: 850px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .banner-eight .banner-images-rights .single-banner-img img {
    max-height: 700px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner-eight .banner-images-rights .single-banner-img img {
    max-height: 620px;
  }
}
.banner-eight .banner-img-shapes img {
  position: absolute;
  z-index: 9;
}
.banner-eight .banner-img-shapes img:nth-child(1) {
  top: -50px;
  left: -50px;
  -webkit-animation: 5s floating linear infinite;
          animation: 5s floating linear infinite;
}
.banner-eight .banner-img-shapes img:nth-child(2) {
  bottom: -100px;
  right: -100px;
  z-index: -1;
  -webkit-animation: 6s floating linear infinite;
          animation: 6s floating linear infinite;
}
.banner-eight .banner-shape-eight img {
  position: absolute;
  z-index: -1;
}
.banner-eight .banner-shape-eight img:nth-child(1) {
  top: 25%;
  left: 42%;
}
.banner-eight .banner-shape-eight img:nth-child(2) {
  left: 5%;
  bottom: 5%;
}
.banner-eight .banner-shape-eight img:nth-child(3) {
  left: 45%;
  bottom: 10%;
}
.banner-eight .banner-shape-eight img:nth-child(4) {
  right: 4%;
  bottom: 30%;
}

.black-themes {
  background: #1B1C25;
}
.black-themes .banner-contents .title {
  color: #fff;
}
.black-themes .banner-contents .btn-wrapper .cmn-btn:hover {
  background: #fff;
  color: var(--main-color-two);
}

.banner-bg-image {
  position: relative;
  overflow: hidden;
  z-index: 3;
}

.slider-shapes {
  position: absolute;
  bottom: 50px;
  right: -150px;
  z-index: 1;
}

.banner-contents {
  padding: 105px 0;
  position: relative;
  z-index: 2;
}
.banner-contents .banner-store {
  margin-bottom: 20px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .banner-contents .banner-store {
    margin-bottom: 15px;
    font-size: 24px !important;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner-contents .banner-store {
    margin-bottom: 15px;
    font-size: 24px !important;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .banner-contents .banner-store {
    margin-bottom: 15px;
    font-size: 24px !important;
  }
}
@media only screen and (max-width: 480px) {
  .banner-contents .banner-store {
    font-size: 21px !important;
  }
}
@media only screen and (max-width: 375px) {
  .banner-contents .banner-store {
    font-size: 16px !important;
  }
}
.banner-contents .title {
  font-size: 90px;
  line-height: 110px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .banner-contents .title {
    font-size: 80px;
    line-height: 90px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner-contents .title {
    font-size: 80px;
    line-height: 90px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .banner-contents .title {
    font-size: 60px;
    line-height: 70px;
  }
}
@media only screen and (max-width: 480px) {
  .banner-contents .title {
    font-size: 50px;
    line-height: 60px;
  }
}
@media only screen and (max-width: 375px) {
  .banner-contents .title {
    font-size: 35px;
    line-height: 45px;
  }
}
.banner-contents .banner-para {
  line-height: 30px;
  margin-top: 35px;
}
@media only screen and (max-width: 480px) {
  .banner-contents .banner-para {
    font-size: 16px !important;
    margin-top: 20px;
  }
}
@media only screen and (max-width: 375px) {
  .banner-contents .banner-para {
    font-size: 15px !important;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .banner-contents .cominsoon-btn {
    margin-top: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner-contents .cominsoon-btn {
    margin-top: 20px;
  }
}
.banner-contents .banner-left-products {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-top: 20px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .banner-contents .banner-left-products {
    margin-top: 0px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner-contents .banner-left-products {
    margin-top: 0px;
  }
}
@media only screen and (max-width: 575.98px) {
  .banner-contents .banner-left-products {
    display: inline-block;
  }
}
.banner-contents .banner-left-products .banner-single-products {
  padding: 15px 15px 10px;
  max-width: 250px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner-contents .banner-left-products .banner-single-products {
    max-width: 220px;
  }
}
.banner-contents .banner-left-products .banner-single-products .banner-product-thumb {
  height: 170px;
  min-width: 170px;
  display: block;
}
.banner-contents .banner-left-products .banner-single-products .banner-product-thumb img {
  border-radius: 10px;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner-contents .banner-left-products .banner-single-products .banner-product-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: 20px;
}
.banner-contents .banner-left-products .banner-single-products .banner-product-flex .single-flex-banner {
  margin-top: 15px;
}
.banner-contents .banner-left-products .banner-single-products .banner-product-flex .single-flex-banner .banner_title:hover {
  color: var(--main-color-one);
}
.banner-contents .banner-left-products .banner-single-products .banner-product-flex .banner-iconlist {
  display: inherit;
  gap: 2px;
}
.banner-contents .banner-left-products .banner-single-products .banner-product-flex .banner-iconlist .banner-icon {
  background-color: var(--main-color-one);
  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;
  border-radius: 3px;
  font-size: 17px;
}

@media (min-width: 320px) and (max-width: 991.98px) {
  .banner-right-contents-all {
    display: none;
  }
}
.banner-right-contents-all .banner-image-shapes {
  display: inline-block;
  height: 655px;
  width: 655px;
  background: 0;
  border: 80px solid #FBEAD9;
  border-radius: 50%;
  position: absolute;
  bottom: 100px;
  right: 170px;
  z-index: -2;
}
@media (min-width: 1600px) and (max-width: 1799.98px) {
  .banner-right-contents-all .banner-image-shapes {
    height: 580px;
    width: 580px;
    border: 70px solid #FBEAD9;
    right: 150px;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .banner-right-contents-all .banner-image-shapes {
    height: 500px;
    width: 500px;
    border: 60px solid #FBEAD9;
    right: 130px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .banner-right-contents-all .banner-image-shapes {
    height: 400px;
    width: 400px;
    border: 50px solid #FBEAD9;
    right: 120px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner-right-contents-all .banner-image-shapes {
    height: 360px;
    width: 360px;
    border: 50px solid #FBEAD9;
    right: 90px;
  }
}
.banner-right-contents-all .banner-image-shapes::before {
  content: "";
  position: absolute;
  border: 10px solid #FBEAD9;
  height: calc(100% + 240px);
  width: calc(100% + 240px);
  border-radius: 50%;
  top: -120px;
  left: -120px;
}
@media (min-width: 1600px) and (max-width: 1799.98px) {
  .banner-right-contents-all .banner-image-shapes::before {
    height: calc(100% + 220px);
    width: calc(100% + 220px);
    top: -110px;
    left: -110px;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .banner-right-contents-all .banner-image-shapes::before {
    height: calc(100% + 180px);
    width: calc(100% + 180px);
    top: -90px;
    left: -90px;
    border: 7px solid #FBEAD9;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .banner-right-contents-all .banner-image-shapes::before {
    height: calc(100% + 160px);
    width: calc(100% + 160px);
    top: -80px;
    left: -80px;
    border: 7px solid #FBEAD9;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner-right-contents-all .banner-image-shapes::before {
    height: calc(100% + 160px);
    width: calc(100% + 160px);
    top: -80px;
    left: -80px;
    border: 7px solid #FBEAD9;
  }
}

.banner-images-right {
  position: absolute;
  right: 0px;
  bottom: 0;
  z-index: 0;
}
.banner-images-right .banner-shapes-img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -2;
  width: 100%;
  text-align: center;
}

.banner-img-flex {
  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;
}
.banner-img-flex .single-banner-img {
  -webkit-transform: rotate(5deg);
          transform: rotate(5deg);
  height: 600px;
  width: 440px;
}
.banner-img-flex .single-banner-img:nth-child(2n+1) {
  margin-top: 50px;
}
@media (min-width: 1600px) and (max-width: 1799.98px) {
  .banner-img-flex .single-banner-img {
    height: 500px;
    width: 400px;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .banner-img-flex .single-banner-img {
    height: 450px;
    width: 350px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .banner-img-flex .single-banner-img {
    height: 450px;
    width: 300px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner-img-flex .single-banner-img {
    height: 300px;
    width: 240px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .banner-img-flex .single-banner-img {
    height: 400px;
    width: 320px;
  }
}
@media only screen and (max-width: 767.98px) {
  .banner-img-flex .single-banner-img {
    height: 280px;
    width: 235px;
  }
}
@media only screen and (max-width: 575.98px) {
  .banner-img-flex .single-banner-img {
    height: 250px;
    width: 200px;
  }
}
@media only screen and (max-width: 480px) {
  .banner-img-flex .single-banner-img {
    height: 200px;
    width: 150px;
  }
}
@media only screen and (max-width: 375px) {
  .banner-img-flex .single-banner-img {
    height: 180px;
    width: 130px;
  }
}
.banner-img-flex .single-banner-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.banner-socials {
  position: absolute;
  right: -100px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-90deg);
          transform: translateY(-50%) rotate(-90deg);
  z-index: 99;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .banner-socials {
    right: -120px;
  }
}
@media only screen and (max-width: 767.98px) {
  .banner-socials {
    top: 30%;
  }
}
@media only screen and (max-width: 375px) {
  .banner-socials {
    top: 30%;
    right: -70px;
  }
}
.banner-socials .social-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width: 767.98px) {
  .banner-socials .social-lists {
    gap: 30px;
  }
}
@media only screen and (max-width: 375px) {
  .banner-socials .social-lists {
    gap: 20px;
  }
}
@media only screen and (max-width: 375px) {
  .banner-socials .social-lists {
    gap: 15px;
  }
}
.banner-socials .social-lists li a {
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  color: var(--light-color);
}
.banner-socials .social-lists li a:hover {
  color: var(--main-color-one);
}
@media only screen and (max-width: 480px) {
  .banner-socials .social-lists li a {
    font-size: 16px;
  }
}
@media only screen and (max-width: 375px) {
  .banner-socials .social-lists li a {
    font-size: 14px;
  }
}

@media (min-width: 320px) and (max-width: 991.98px) {
  .banner-five .single-banner-five {
    height: 500px;
    text-align: center;
  }
}
@media only screen and (max-width: 575.98px) {
  .banner-five .single-banner-five {
    height: 400px;
  }
}
@media only screen and (max-width: 480px) {
  .banner-five .single-banner-five {
    height: 350px;
  }
}
@media only screen and (max-width: 375px) {
  .banner-five .single-banner-five {
    height: 300px;
    text-align: right;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .banner-five .single-banner-five img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    width: auto;
  }
}

.banner-shapes img {
  position: absolute;
  z-index: -1;
}
.banner-shapes img:nth-child(1) {
  top: 15%;
  left: 30%;
  -webkit-animation: 20s round-moving linear infinite;
          animation: 20s round-moving linear infinite;
}
.banner-shapes img:nth-child(2) {
  top: 10%;
  right: 12%;
  -webkit-animation: 20s round-moving linear infinite;
          animation: 20s round-moving linear infinite;
}
.banner-shapes img:nth-child(3) {
  left: 45%;
  bottom: 25%;
  -webkit-animation: 20s round-moving linear infinite;
          animation: 20s round-moving linear infinite;
}
.banner-shapes img:nth-child(4) {
  right: 10%;
  bottom: 12%;
  -webkit-animation: 20s round-moving linear infinite;
          animation: 20s round-moving linear infinite;
}
.banner-shapes.shapes-four img:nth-child(1) {
  top: 30%;
  left: 50px;
}
.banner-shapes.shapes-four img:nth-child(2) {
  top: auto;
  bottom: 50px;
  right: 30%;
}
.banner-shapes.shapes-four img:nth-child(3) {
  top: 130px;
  left: 42%;
}
.banner-shapes.shapes-four img:nth-child(4) {
  right: 11%;
  bottom: 30%;
}
@media (min-width: 1200px) and (max-width: 1799.98px) {
  .banner-shapes.shapes-four img:nth-child(4) {
    right: 10px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner-shapes.shapes-four img:nth-child(4) {
    right: 10px;
  }
}
.banner-shapes.shapes-five img:nth-child(1) {
  top: auto;
  bottom: 100px;
  left: 20%;
}
.banner-shapes.shapes-five img:nth-child(2) {
  top: 20%;
  left: 45%;
}
.banner-shapes.shapes-five img:nth-child(3) {
  top: auto;
  left: auto;
  right: 50px;
  bottom: 30%;
}
.banner-shapes.shapes-five img:nth-child(4) {
  left: 47%;
  bottom: 10%;
}
.banner-shapes.shapes-five img:nth-child(5) {
  top: 30%;
  left: 50px;
  -webkit-animation: 20s round-moving linear infinite;
          animation: 20s round-moving linear infinite;
}
.banner-shapes.shapes-five img:nth-child(6) {
  bottom: 0;
  right: -330px;
  -webkit-animation: 20s round-moving linear infinite;
          animation: 20s round-moving linear infinite;
}

.banner-big-shape img {
  position: absolute;
  z-index: -3;
}
.banner-big-shape img:nth-child(1) {
  top: -150px;
  left: -150px;
  -webkit-animation: 5s floating linear infinite;
          animation: 5s floating linear infinite;
}
.banner-big-shape img:nth-child(2) {
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-animation: 5s pulsing linear infinite;
          animation: 5s pulsing linear infinite;
}

.banner-bottom-slider {
  position: absolute;
  bottom: 150px;
  right: 0;
  z-index: 9;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .banner-bottom-slider {
    bottom: 100px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .banner-bottom-slider {
    bottom: 100px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner-bottom-slider {
    bottom: 50px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .banner-bottom-slider {
    bottom: 50px;
  }
}
@media only screen and (max-width: 767.98px) {
  .banner-bottom-slider {
    bottom: 30px;
  }
}
@media only screen and (max-width: 480px) {
  .banner-bottom-slider {
    bottom: 20px;
  }
}
.banner-bottom-slider .banner-slider-item-small .banner-small-image {
  height: 290px;
  width: 230px;
  cursor: pointer;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .banner-bottom-slider .banner-slider-item-small .banner-small-image {
    height: 230px;
    width: 200px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner-bottom-slider .banner-slider-item-small .banner-small-image {
    height: 230px;
    width: 200px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .banner-bottom-slider .banner-slider-item-small .banner-small-image {
    height: 230px;
    width: 200px;
  }
}
@media only screen and (max-width: 767.98px) {
  .banner-bottom-slider .banner-slider-item-small .banner-small-image {
    height: 200px;
    width: 170px;
  }
}
@media only screen and (max-width: 480px) {
  .banner-bottom-slider .banner-slider-item-small .banner-small-image {
    height: 160px;
    width: 140px;
  }
}
@media only screen and (max-width: 375px) {
  .banner-bottom-slider .banner-slider-item-small .banner-small-image {
    height: 140px;
    width: 120px;
  }
}
.banner-bottom-slider .banner-slider-item-small .banner-small-image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.banner-bottom-shape {
  position: absolute;
  bottom: -15px;
  left: 0;
  right: 0;
  z-index: 9;
  width: 100%;
}
.banner-bottom-shape img {
  width: 100%;
}

.banner-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -2;
  width: 100%;
}
.banner-waves img {
  width: 100%;
}

/* Topbar area */
.topbar-area {
  padding: 10px 0;
}
.topbar-area.index-03 {
  padding: 0;
}

.color-02 .topbar-social li a:hover {
  color: var(--main-color-two);
}
.color-02 .topbar-faq a:hover {
  color: var(--main-color-two);
}
.color-02 .call-us a:hover {
  color: var(--main-color-two);
}

.color-03 .topbar-social li a:hover {
  color: var(--main-color-three);
}
.color-03 .topbar-faq a:hover {
  color: var(--main-color-three);
}
.color-03 .call-us a:hover {
  color: var(--main-color-three);
}

.color-04 .topbar-social li a:hover {
  color: var(--main-color-four);
}
.color-04 .topbar-faq a:hover {
  color: var(--main-color-four);
}
.color-04 .call-us a:hover {
  color: var(--main-color-four);
}

.topbar-select-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.language-content {
  z-index: 9998;
}
.language-content.ussd-content .nice-select {
  width: 90px;
}
@media only screen and (max-width: 375px) {
  .language-content.ussd-content .nice-select {
    width: 70px;
  }
}
.language-content .nice-select {
  background: none;
  border: 0;
  display: inline-block;
  color: #fff;
  width: 85px;
  height: 30px;
  line-height: 30px;
}
.language-content .nice-select.open {
  border: 0;
}
.language-content .nice-select:focus {
  outline: none;
  border: 0;
}
.language-content .nice-select::after {
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  right: 15px;
}
@media only screen and (max-width: 375px) {
  .language-content .nice-select::after {
    width: 7px;
    height: 7px;
  }
}
@media only screen and (max-width: 375px) {
  .language-content .nice-select {
    padding: 0;
    width: 60px;
  }
}
.language-content .nice-select .option.selected {
  background: #040B25;
  color: #fff;
  font-weight: 400;
}
.language-content .nice-select .option:hover {
  background: #fff;
  color: #040B25;
}
.language-content .nice-select .list {
  width: 100%;
  background: #040B25;
}
.language-content .nice-select .nice-select-search-box {
  background: #040B25;
}
.language-content .nice-select .nice-select-search-box .nice-select-search {
  background: none;
  color: #fff;
}

.topbar-left-flex {
  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: 767.98px) {
  .topbar-left-flex {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.topbar-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.topbar-social li:not(:last-child) {
  margin-right: 5px;
}
.topbar-social li a {
  font-size: 20px;
  color: #fff;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.topbar-social li a:hover {
  color: var(--main-color-one);
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .topbar-social li a {
    font-size: 18px;
  }
}
@media only screen and (max-width: 575.98px) {
  .topbar-social li a {
    font-size: 16px;
  }
}

.topbar-right-flex {
  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: end;
  gap: 40px;
}
@media only screen and (max-width: 767.98px) {
  .topbar-right-flex {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 10px;
  }
}
@media only screen and (max-width: 375px) {
  .topbar-right-flex {
    gap: 20px;
  }
}

.topbar-faq a {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.topbar-faq a:hover {
  color: var(--main-color-one);
}
@media only screen and (max-width: 575.98px) {
  .topbar-faq a {
    font-size: 14px;
  }
}

@media only screen and (max-width: 575.98px) {
  .call-us {
    font-size: 14px;
  }
}
.call-us a {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.call-us a:hover {
  color: var(--main-color-one);
}
@media only screen and (max-width: 575.98px) {
  .call-us a {
    font-size: 14px;
  }
}

.topbar-bg-1 {
  background-color: #040B25;
}

/* Topbar-bottom-area */
.topbar-bottom-area {
  padding: 30px 0 15px;
  position: relative;
  z-index: 9991;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .topbar-bottom-area {
    padding: 10px 0;
  }
}

.single-searchbar {
  position: relative;
}

.form--control {
  height: 55px;
  border: 1px solid #DDD;
  width: 100%;
  padding: 0 100px 0 20px;
}

.right-position-button {
  position: absolute;
  right: 0;
  height: 51px;
  padding: 0 20px;
  font-size: 20px;
  background: var(--main-color-one);
  border: 0;
  outline: none;
  color: #fff;
  cursor: pointer;
}
.right-position-button.margin-2 {
  margin: 2px;
}

.topbar-bottom-right-content {
  margin-left: 100px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .topbar-bottom-right-content {
    margin-left: 30px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .topbar-bottom-right-content {
    margin-left: 30px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .topbar-bottom-right-content {
    margin-left: 0;
    margin-top: 20px;
  }
}

.topbar-bottom-right-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;
}

.track-order {
  font-size: 16px;
  line-height: 28px;
  color: var(--light-color);
}
.track-order:hover {
  color: var(--main-color-one);
}

.track-icon-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.track-icon-list.style-02 {
  gap: 20px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .track-icon-list.style-02 {
    gap: 10px;
  }
}
.track-icon-list.white-color .single-icon .icon {
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media only screen and (max-width: 375px) {
  .track-icon-list {
    gap: 20px;
  }
}
.track-icon-list .single-icon {
  position: relative;
}
.track-icon-list .single-icon .icon {
  font-size: 26px;
  color: var(--heading-color);
}
.track-icon-list .single-icon .icon:hover {
  color: var(--main-color-one);
}
@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: -2px;
  right: -10px;
  font-size: 15px;
  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: 9991;
  -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 .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;
  gap: 10px;
  color: var(--light-color);
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.login-account .accounts:hover {
  color: var(--main-color-one);
}
.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);
}
.login-account .accounts i {
  font-size: 26px;
  color: var(--main-color-one);
  -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;
  }
}

.addto-cart-contents .nicescroll-cursors {
  background-color: var(--main-color-one) !important;
  border: 0 !important;
  width: 4px !important;
}

.cart-shopping {
  position: relative;
  z-index: 2;
}
.cart-shopping:hover .addto-cart-contents {
  visibility: visible;
  opacity: 1;
  top: 100%;
  -webkit-transform: scale(1);
          transform: scale(1);
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .cart-shopping:hover .addto-cart-contents {
    -webkit-transform: translateX(50%) scale(1);
            transform: translateX(50%) scale(1);
  }
}
.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: 320px) and (max-width: 991.98px) {
  .cart-shopping .addto-cart-contents {
    right: 50%;
    -webkit-transform: translateX(50%) scale(0.5);
            transform: translateX(50%) scale(0.5);
  }
}
@media only screen and (max-width: 480px) {
  .cart-shopping .addto-cart-contents {
    width: 320px;
  }
}
@media only screen and (max-width: 375px) {
  .cart-shopping .addto-cart-contents {
    width: 270px;
    padding: 10px;
    right: 100%;
  }
}
.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 .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;
}
.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;
}
.cart-shopping .single-addto-carts .addto-cart-flex-contents .addto-cart-thumb {
  height: 70px;
  width: 70px;
  margin-right: 10px;
}
.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 .old-price {
  text-decoration: line-through;
}
.cart-shopping .btn-wrapper .cmn-btn {
  color: var(--heading-color);
}

/* Top-menu-category */
.top-menu-category {
  position: relative;
  z-index: 2;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .top-menu-category {
    margin-bottom: 15px;
  }
}

.single-category-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;
  padding: 18px 30px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-category-flex {
    padding: 10px 20px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-category-flex {
    padding: 15px 20px;
  }
}
@media only screen and (max-width: 575.98px) {
  .single-category-flex {
    padding: 13px 20px;
  }
}
@media only screen and (max-width: 375px) {
  .single-category-flex {
    padding: 10px 20px;
  }
}
.nicescroll-rails {
  z-index: 9999 !important;
}

.nicescroll-cursors {
  background-color: var(--extra-light-color) !important;
  border: 0 !important;
  width: 4px !important;
}

.top-menu-category .nicescroll-cursors {
  background-color: var(--main-color-one) !important;
  border: 0 !important;
  width: 4px !important;
}

.navbar-area-side {
  position: relative;
  max-height: 720px;
  overflow-y: auto;
}
@media (min-width: 1600px) and (max-width: 1799.98px) {
  .navbar-area-side {
    max-height: 630px;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .navbar-area-side {
    max-height: 540px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .navbar-area-side {
    max-height: 470px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .navbar-area-side {
    max-height: 400px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .navbar-area-side {
    max-height: 500px;
  }
}
@media only screen and (max-width: 575.98px) {
  .navbar-area-side {
    max-height: 400px;
  }
}
@media only screen and (max-width: 375px) {
  .navbar-area-side {
    max-height: 300px;
  }
}
.navbar-area-side.nicescroll-rails {
  margin-right: -5px !important;
}
.navbar-area-side.nicescroll-cursors {
  background-color: var(--main-color-one) !important;
  border: 0 !important;
  width: 4px !important;
}

.navbar-area-side {
  position: absolute;
  left: 0;
  top: 85px;
  z-index: 99;
  background-color: #fff;
  border: 1px solid #f0f0f0;
  padding: 30px;
  border-radius: 10px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .navbar-area-side {
    padding: 10px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .navbar-area-side {
    padding: 10px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .navbar-area-side {
    padding: 5px;
    top: 60px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .navbar-area-side {
    visibility: hidden;
    opacity: 0;
    padding: 10px;
    width: 100%;
    top: 75px;
  }
}
@media only screen and (max-width: 575.98px) {
  .navbar-area-side {
    top: 70px;
  }
}
@media only screen and (max-width: 375px) {
  .navbar-area-side {
    top: 60px;
  }
}
.navbar-area-side.active {
  visibility: hidden;
  opacity: 0;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .navbar-area-side.active {
    visibility: visible;
    opacity: 1;
  }
}

.cate-list {
  width: 100%;
  display: inline-block;
}
.cate-list:not(:last-child) {
  margin-bottom: 25px;
}
@media (min-width: 1600px) and (max-width: 1799.98px) {
  .cate-list:not(:last-child) {
    margin-bottom: 15px;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .cate-list:not(:last-child) {
    margin-bottom: 10px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .cate-list:not(:last-child) {
    margin-bottom: 10px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .cate-list:not(:last-child) {
    margin-bottom: 10px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .cate-list:not(:last-child) {
    margin-bottom: 20px;
  }
}
.cate-list.menu-item-has-children {
  position: relative;
  z-index: 1;
}
.cate-list.menu-item-has-children.active::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  color: var(--main-color-one);
}
.cate-list.menu-item-has-children.active .sub-menu {
  visibility: visible;
  opacity: 1;
  padding: 20px 20px;
  border-bottom: 4px solid var(--main-color-one);
  margin-top: 10px;
  height: auto;
  display: block;
}
.cate-list.menu-item-has-children::after {
  content: "";
  font-family: "Line Awesome Free";
  font-weight: 900;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  top: 18px;
  right: 5px;
  position: absolute;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .cate-list.menu-item-has-children::after {
    right: 0;
  }
}
.cate-list.menu-item-has-children:hover::after {
  color: var(--main-color-one);
}
.cate-list:hover > .cate-item .category-menu-inner .category-menu-image img {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}
.cate-list:hover > .cate-item .category-menu-inner .category-list .title {
  color: var(--main-color-one);
}
.cate-list .sub-menu {
  position: initial;
  text-align: left;
  margin: 0;
  padding: 0;
  left: 0%;
  height: 0;
  top: 100%;
  width: 100%;
  background-color: #f1f1f1;
  z-index: 992;
  visibility: hidden;
  opacity: 0;
  border: unset;
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
  display: none;
}
.cate-list .view-all-category {
  font-size: 18px;
  font-weight: 500;
  color: var(--heading-color);
  position: relative;
  display: inline-block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cate-list .view-all-category:hover {
  color: var(--main-color-one);
}
.cate-list .view-all-category:hover::after {
  left: 105%;
}
.cate-list .view-all-category::after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 100%;
  content: "";
  font-family: "Line Awesome Free";
  font-weight: 900;
  margin-left: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cate-list .category-menu-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .cate-list .category-menu-inner {
    gap: 10px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .cate-list .category-menu-inner {
    gap: 10px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .cate-list .category-menu-inner {
    gap: 10px;
  }
}
@media only screen and (max-width: 375px) {
  .cate-list .category-menu-inner {
    gap: 10px;
  }
}
.cate-list .category-menu-inner .category-menu-image {
  height: 60px;
  width: 60px;
  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: 1px solid #ddd;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cate-list .category-menu-inner .category-menu-image img {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.cate-list .category-menu-inner .category-list .title {
  color: var(--heading-color);
  font-weight: 500;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cate-list .category-menu-inner .category-list .subtitles {
  display: block;
  color: var(--extra-light-color);
  margin-top: 5px;
}

@media (min-width: 320px) and (max-width: 991px) {
  .cate-list.menu-item-has-children.active .category-megamenu {
    height: auto;
    visibility: visible;
    opacity: 1;
    padding: 20px 10px;
    min-width: 100%;
  }
  .cate-list.menu-item-has-children.active::after {
    color: var(--main-color-one);
  }
  .cate-list.menu-item-has-children .category-megamenu {
    position: initial;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px 20px;
    padding-top: 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    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;
  }
}
@media (min-width: 320px) and (max-width: 991px) and (min-width: 320px) and (max-width: 991.98px) {
  .cate-list.menu-item-has-children .category-megamenu {
    min-width: 100%;
  }
}
@media (min-width: 320px) and (max-width: 991px) {
  .cate-list.menu-item-has-children .category-megamenu .single-megamenu {
    padding: 0;
  }
}
/* Promo area */
.promo-area {
  overflow: hidden;
}

.promo-child:not(:last-child) .single-promo::after {
  content: "";
  position: absolute;
  height: 70px;
  width: 2px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #ddd;
  right: 0;
}
@media only screen and (max-width: 575.98px) {
  .promo-child:not(:last-child) .single-promo::after {
    display: none;
  }
}

.single-promo {
  padding: 30px;
  -webkit-box-shadow: 0 0 10px #f7f7f7;
          box-shadow: 0 0 10px #f7f7f7;
  margin: 0 15px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .single-promo {
    margin: 0;
    padding: 30px 10px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .single-promo {
    margin: 0;
    padding: 30px 10px;
  }
}
@media only screen and (max-width: 575.98px) {
  .single-promo {
    margin: 0;
  }
}
.single-promo .icon {
  font-size: 45px;
}
.single-promo .contents .common-para {
  margin-top: 10px;
}

/* Promo Collection Area */
@media only screen and (max-width: 375px) {
  .responsive-child .single-promo-collection .promo-collection-image-contents .promo-collection-flex.different-img {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    text-align: left;
    gap: 5px;
  }
}
@media only screen and (max-width: 375px) {
  .responsive-child .single-promo-collection .promo-collection-image-contents .promo-collection-flex.different-img .promo-collection-img {
    max-width: 120px;
    margin: unset;
  }
}

.single-promo-collection {
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.single-promo-collection .promo-collection-image-contents {
  position: relative;
  z-index: 1;
}
.single-promo-collection .promo-collection-image-contents .promo-collection-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .single-promo-collection .promo-collection-image-contents .promo-collection-flex {
    gap: 10px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .single-promo-collection .promo-collection-image-contents .promo-collection-flex {
    gap: 10px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-promo-collection .promo-collection-image-contents .promo-collection-flex {
    gap: 10px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-promo-collection .promo-collection-image-contents .promo-collection-flex {
    gap: 10px;
  }
}
@media only screen and (max-width: 375px) {
  .single-promo-collection .promo-collection-image-contents .promo-collection-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    text-align: center;
  }
}
.single-promo-collection .promo-collection-image-contents .promo-collection-contents .promo-collection-title {
  font-size: 36px;
  line-height: 42px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .single-promo-collection .promo-collection-image-contents .promo-collection-contents .promo-collection-title {
    font-size: 33px;
    line-height: 36px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .single-promo-collection .promo-collection-image-contents .promo-collection-contents .promo-collection-title {
    font-size: 30px;
    line-height: 36px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-promo-collection .promo-collection-image-contents .promo-collection-contents .promo-collection-title {
    font-size: 30px;
    line-height: 36px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-promo-collection .promo-collection-image-contents .promo-collection-contents .promo-collection-title {
    font-size: 28px;
    line-height: 32px;
  }
}
@media only screen and (max-width: 480px) {
  .single-promo-collection .promo-collection-image-contents .promo-collection-contents .promo-collection-title {
    font-size: 28px;
    line-height: 32px;
  }
}
@media only screen and (max-width: 375px) {
  .single-promo-collection .promo-collection-image-contents .promo-collection-contents .promo-collection-title {
    font-size: 26px;
  }
}
.single-promo-collection .promo-collection-image-contents .promo-collection-contents .shop-btn {
  display: inline-block;
  font-size: 17px;
  font-weight: 500;
  text-decoration: underline;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.single-promo-collection .promo-collection-image-contents .promo-collection-contents .shop-btn:hover {
  color: var(--main-color-three);
  letter-spacing: 1px;
}
.single-promo-collection .promo-collection-image-contents .promo-collection-img {
  max-width: 250px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .single-promo-collection .promo-collection-image-contents .promo-collection-img {
    max-width: 220px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .single-promo-collection .promo-collection-image-contents .promo-collection-img {
    max-width: 150px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-promo-collection .promo-collection-image-contents .promo-collection-img {
    max-width: 200px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-promo-collection .promo-collection-image-contents .promo-collection-img {
    max-width: 150px;
  }
}
@media only screen and (max-width: 767.98px) {
  .single-promo-collection .promo-collection-image-contents .promo-collection-img {
    max-width: 220px;
  }
}
@media only screen and (max-width: 575.98px) {
  .single-promo-collection .promo-collection-image-contents .promo-collection-img {
    max-width: 220px;
  }
}
@media only screen and (max-width: 480px) {
  .single-promo-collection .promo-collection-image-contents .promo-collection-img {
    max-width: 170px;
  }
}
@media only screen and (max-width: 375px) {
  .single-promo-collection .promo-collection-image-contents .promo-collection-img {
    margin: 0 auto;
    max-width: 200px;
  }
}

/* About area */
.single-about-content {
  padding: 50px 70px;
}
@media (min-width: 1600px) and (max-width: 1799.98px) {
  .single-about-content {
    padding: 50px 60px;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .single-about-content {
    padding: 30px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .single-about-content {
    padding: 30px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-about-content {
    padding: 50px 60px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-about-content {
    padding: 30px;
  }
}
@media only screen and (max-width: 480px) {
  .single-about-content {
    padding: 20px;
  }
}
@media only screen and (max-width: 375px) {
  .single-about-content {
    padding: 20px 10px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-about-content .about-title {
    font-size: 42px !important;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-about-content .about-title {
    font-size: 35px !important;
    line-height: 32px;
  }
}
@media only screen and (max-width: 575.98px) {
  .single-about-content .about-title {
    font-size: 30px !important;
  }
}
@media only screen and (max-width: 375px) {
  .single-about-content .about-title {
    font-size: 28px !important;
  }
}
.single-about-content .about-para {
  padding-top: 30px;
  font-size: 20px;
  line-height: 40px;
  color: var(--light-color);
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .single-about-content .about-para {
    font-size: 18px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .single-about-content .about-para {
    font-size: 18px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-about-content .about-para {
    font-size: 18px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-about-content .about-para {
    font-size: 16px;
    line-height: 32px;
    -webkit-line-clamp: unset;
  }
}

.single-about-address {
  padding-left: 50px;
}
@media (min-width: 1600px) and (max-width: 1799.98px) {
  .single-about-address {
    padding-left: 30px;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .single-about-address {
    padding-left: 0;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .single-about-address {
    padding-left: 0;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-about-address {
    padding-left: 0;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-about-address {
    padding-left: 0;
  }
}
.single-about-address .about-location-list .list {
  padding-top: 30px;
  font-size: 20px;
  line-height: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.single-about-address .about-location-list .list strong {
  color: var(--light-color);
}
@media (min-width: 1600px) and (max-width: 1799.98px) {
  .single-about-address .about-location-list .list {
    font-size: 19px;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .single-about-address .about-location-list .list {
    font-size: 18px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .single-about-address .about-location-list .list {
    font-size: 18px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-about-address .about-location-list .list {
    font-size: 18px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-about-address .about-location-list .list {
    font-size: 16px;
  }
}
@media only screen and (max-width: 480px) {
  .single-about-address .about-location-list .list {
    font-size: 15px;
  }
}
@media only screen and (max-width: 375px) {
  .single-about-address .about-location-list .list {
    font-size: 14px;
  }
}

/* Featured Area */
.single-featured {
  overflow: hidden;
  position: relative;
}
.single-featured.style-02:hover .featured-image .featured-icon-list {
  bottom: 30px;
  top: auto;
}
.single-featured.style-02 .featured-image img {
  border-radius: 0;
}
.single-featured.style-02 .featured-image .featured-icon-list {
  top: auto;
  bottom: -100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  right: 0;
  left: 0;
}
.single-featured.style-02 .featured-image .featured-icon-list .lists:not(:last-child) {
  margin-bottom: 0;
  margin-right: 10px;
}
.single-featured.style-02 .featured-image .featured-icon-list .lists .icon {
  color: var(--main-color-three);
  border-radius: 0;
}
.single-featured.style-02 .featured-image .featured-icon-list .lists .icon:hover {
  background: var(--main-color-three);
  color: #fff;
}
.single-featured.style-02 .contents .common-title-two:hover {
  color: var(--main-color-three);
}
.single-featured.style-02 .cart-loading::before {
  background-color: var(--main-color-three);
}
.single-featured:hover .featured-image img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.single-featured:hover .featured-image .featured-icon-list {
  visibility: visible;
  opacity: 1;
  top: 50px;
}
.single-featured .featured-image {
  position: relative;
  z-index: 2;
  overflow: hidden;
  display: block;
}
.single-featured .featured-image img {
  border-radius: 10px;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.single-featured .featured-image .featured-icon-list {
  position: absolute;
  top: -150px;
  right: 50px;
  z-index: 9;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.single-featured .featured-image .featured-icon-list .lists:not(:last-child) {
  margin-bottom: 10px;
}
.single-featured .featured-image .featured-icon-list .lists .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;
  background: #fff;
  height: 50px;
  width: 50px;
  font-size: 24px;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.single-featured .featured-image .featured-icon-list .lists .icon:hover {
  background: var(--main-color-one);
  color: #fff;
}
.single-featured .contents {
  padding-top: 20px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-featured .contents {
    padding-top: 10px;
  }
}
.single-featured .contents .common-title-two:hover {
  color: var(--main-color-one);
}
.single-featured .contents .common-price-title {
  margin-top: 10px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-featured .contents .common-price-title {
    margin-top: 5px;
  }
}
.single-featured .contents .btn-wrapper {
  margin-top: 20px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-featured .contents .btn-wrapper {
    margin-top: 15px;
  }
}

.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 {
  /* img {
      visibility: visible;
      opacity: 1;
  } */
}
.cart-loading.active-loading::before {
  visibility: visible;
  opacity: 1;
}
.cart-loading::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: var(--main-color-one);
  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;
}

/* Featured Item area */
.signle-featured-items.white-color {
  color: #fff;
}
.signle-featured-items.white-color .featured-item-contents {
  color: #fff;
}
.signle-featured-items:hover .featured-thumb .featured-icon-list {
  top: 50px;
  visibility: visible;
  opacity: 1;
}
.signle-featured-items .featured-thumb {
  position: relative;
  z-index: 2;
  display: block;
  overflow: hidden;
}
@media only screen and (max-width: 575.98px) {
  .signle-featured-items .featured-thumb img {
    margin: 0 auto;
    text-align: center;
  }
}
.signle-featured-items .featured-thumb .featured-icon-list {
  position: absolute;
  top: -150px;
  right: 50px;
  z-index: 9;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.signle-featured-items .featured-thumb .featured-icon-list.hover-bg-one .lists .icon:hover {
  background: var(--main-color-one);
  color: #fff;
}
.signle-featured-items .featured-thumb .featured-icon-list.hover-color-one .lists .icon:hover {
  color: var(--main-color-one);
}
.signle-featured-items .featured-thumb .featured-icon-list.hover-bg-three .lists .icon:hover {
  background: var(--main-color-three);
  color: #fff;
}
.signle-featured-items .featured-thumb .featured-icon-list.hover-color-three .lists .icon:hover {
  color: var(--main-color-three);
}
.signle-featured-items .featured-thumb .featured-icon-list.hover-bg-four .lists .icon:hover {
  background: var(--main-color-four);
  color: #fff;
}
.signle-featured-items .featured-thumb .featured-icon-list.hover-color-four .lists .icon:hover {
  color: var(--main-color-four);
}
.signle-featured-items .featured-thumb .featured-icon-list .lists:not(:last-child) {
  margin-bottom: 10px;
}
.signle-featured-items .featured-thumb .featured-icon-list .lists .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;
  background: #fff;
  color: var(--heading-color);
  height: 50px;
  width: 50px;
  font-size: 24px;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.signle-featured-items .featured-thumb .featured-icon-list .lists .icon:hover {
  background: var(--main-color-two);
  color: #fff;
}
.signle-featured-items .featured-item-contents .reviews {
  display: inline-block;
  margin-bottom: 10px;
}
.signle-featured-items .cart-loading::before {
  background-color: var(--main-color-two);
}

.black-themes .signle-featured-items .featured-thumb .featured-icon-list .lists .icon:hover {
  background: #1B1C25;
  color: var(--main-color-two);
}
.black-themes .signle-featured-items .featured-item-contents .star-reviews {
  color: #fff;
}
.black-themes .signle-featured-items .featured-item-contents .common-title {
  color: #fff;
}
.black-themes .signle-featured-items .featured-item-contents .common-title:hover {
  color: var(--main-color-two);
}
.black-themes .signle-featured-items .cart-loading::before {
  background-color: var(--heading-color);
}

/* Client Logo Area */
.slingle-client {
  -webkit-box-shadow: 0 0 10px #F2F3F5;
          box-shadow: 0 0 10px #F2F3F5;
  padding: 20px 10px;
  height: 100%;
}
.slingle-client.style-02 {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.slingle-client.style-03 {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.slingle-client.clients-bg {
  background: #1B1C25;
}
.slingle-client img {
  text-align: center;
  margin: 0 auto;
}

/* Updated Area */
.updated-area {
  overflow: hidden;
}

.single-updated {
  position: relative;
  z-index: 2;
}
.single-updated .updated-image {
  position: relative;
  z-index: 1;
}
.single-updated .updated-image img {
  border-radius: 10px;
}
.single-updated .updated-image .updated-shapes {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.single-updated .updated-image .updated-contents {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 30px;
  z-index: 9;
}
@media only screen and (max-width: 480px) {
  .single-updated .updated-image .updated-contents {
    left: 20px;
  }
}
@media only screen and (max-width: 375px) {
  .single-updated .updated-image .updated-contents {
    left: 15px;
  }
}
.single-updated .updated-image .updated-contents .updated-top {
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 10px;
  display: block;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-updated .updated-image .updated-contents .updated-top {
    font-size: 16px;
    margin-bottom: 5px;
  }
}
@media only screen and (max-width: 575.98px) {
  .single-updated .updated-image .updated-contents .updated-top {
    font-size: 15px;
  }
}
@media only screen and (max-width: 375px) {
  .single-updated .updated-image .updated-contents .updated-top {
    font-size: 14px;
  }
}
.updated-slider-item {
  margin: 15px;
}

.updated-slider .slick-list {
  margin: -15px;
}

/* Popular Products */
.popular-product-wrapper {
  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: 0 30px; */
}
.popular-product-wrapper.column-two .popular-product-single {
  width: calc((100% / 2) - 15px);
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .popular-product-wrapper.column-two .popular-product-single {
    width: calc((100% / 2) - 15px);
  }
}
@media only screen and (max-width: 767.98px) {
  .popular-product-wrapper.column-two .popular-product-single {
    width: 100%;
  }
}
.popular-product-wrapper.column-three .popular-product-single {
  width: calc((100% / 3) - 20px);
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .popular-product-wrapper.column-three .popular-product-single {
    width: calc((100% / 2) - 15px);
  }
}
@media only screen and (max-width: 767.98px) {
  .popular-product-wrapper.column-three .popular-product-single {
    width: 100%;
  }
}
.popular-product-wrapper.column-four .popular-product-single {
  width: calc((100% / 4) - 23px);
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .popular-product-wrapper.column-four .popular-product-single {
    width: calc((100% / 3) - 20px);
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .popular-product-wrapper.column-four .popular-product-single {
    width: calc((100% / 3) - 20px);
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .popular-product-wrapper.column-four .popular-product-single {
    width: calc((100% / 2) - 15px);
  }
}
@media only screen and (max-width: 767.98px) {
  .popular-product-wrapper.column-four .popular-product-single {
    width: 100%;
  }
}

.popular-product-single {
  width: calc((100% / 5) - 26px);
  margin-top: 30px;
  /* display: inline-block;
  width: 20%;
  padding: 0 10px; */
  /* &:nth-child(5n+1) {
      margin-left: -10px;
  }
  &:nth-child(5n+5) {
      margin-right: -10px;
  }
  @include responsive(allPhone) {
      width: 50%;
      &:nth-child(2n+1) {
          margin-left: -10px;
      }
      &:nth-child(2n+2) {
          margin-right: -10px;
      }
  }
  @include responsive(sm) {
      width: 100%;
      padding: 0;
      &:nth-child(2n+1) {
          margin-left: 0px;
      }
      &:nth-child(2n+2) {
          margin-right: 0px;
      }
  } */
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .popular-product-single {
    width: calc((100% / 3) - 20px);
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .popular-product-single {
    width: calc((100% / 3) - 20px);
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .popular-product-single {
    width: calc((100% / 2) - 15px);
  }
}
@media only screen and (max-width: 767.98px) {
  .popular-product-single {
    width: 100%;
  }
}

/* Comingsoon Area */
.comingsoon-left-wrapper {
  position: relative;
  z-index: 2;
}
.comingsoon-left-wrapper .single-comingsoon {
  margin-left: 250px;
  color: #fff;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .comingsoon-left-wrapper .single-comingsoon {
    margin-left: 140px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .comingsoon-left-wrapper .single-comingsoon {
    margin-left: 200px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .comingsoon-left-wrapper .single-comingsoon {
    margin-left: 0;
  }
}

.comingsoon-shapes {
  position: absolute;
  top: 0;
  left: 0;
}

.comingsoon-right-wrapper {
  position: relative;
  z-index: 1;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .comingsoon-right-wrapper {
    margin-top: 30px;
    text-align: center;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .comingsoon-right-wrapper {
    margin-top: 30px;
    text-align: center;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .comingsoon-right-wrapper {
    margin-top: 30px;
    text-align: center;
  }
}

.comingsoon-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .comingsoon-row {
    display: block;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .comingsoon-row {
    display: block;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .comingsoon-row {
    display: block;
  }
}

.comingsoon-image {
  text-align: right;
}
.comingsoon-contents {
  background: #000;
  padding: 70px 90px;
  max-width: 490px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .comingsoon-contents {
    padding: 50px 40px;
    max-width: 360px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .comingsoon-contents {
    padding: 30px 30px;
    max-width: 400px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .comingsoon-contents {
    padding: 30px 20px;
    position: unset;
    top: 0;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    max-width: 100%;
    margin-top: 30px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .comingsoon-contents .winter-products {
    font-size: 18px;
  }
}
@media only screen and (max-width: 480px) {
  .comingsoon-contents .winter-products {
    font-size: 17px;
  }
}
@media only screen and (max-width: 375px) {
  .comingsoon-contents .winter-products {
    font-size: 16px;
  }
}
.comingsoon-contents .comingsoon-title {
  font-size: 85px;
  line-height: 80px;
  font-weight: 500;
  color: #fff;
  margin-top: 20px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .comingsoon-contents .comingsoon-title {
    font-size: 60px;
    line-height: 60px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .comingsoon-contents .comingsoon-title {
    font-size: 65px;
    line-height: 65px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .comingsoon-contents .comingsoon-title {
    font-size: 40px;
    line-height: 40px;
    margin-top: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .comingsoon-contents .comingsoon-title {
    font-size: 36px;
  }
}
@media only screen and (max-width: 375px) {
  .comingsoon-contents .comingsoon-title {
    font-size: 33px;
  }
}

/* single Coming soon Ad */
.single-coming-soon-ad {
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.single-coming-soon-ad.column-four::before, .single-coming-soon-ad.column-four::after {
  height: 250px;
  width: 250px;
}
.single-coming-soon-ad.column-four .updated-image-contents .updated-contents .updated-title {
  font-size: 28px;
}
.single-coming-soon-ad.column-four .updated-flex-contents {
  padding: 50px 0;
}
.single-coming-soon-ad.column-four .updated-flex-contents .updated-img {
  height: 160px;
  width: 160px;
}
@media (min-width: 1600px) and (max-width: 1799.98px) {
  .single-coming-soon-ad.column-four .updated-flex-contents .updated-img {
    height: 140px;
    width: 140px;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .single-coming-soon-ad.column-four .updated-flex-contents .updated-img {
    height: 110px;
    width: 100px;
  }
}
.single-coming-soon-ad.style-02 .updated-flex-contents {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-coming-soon-ad.style-02 .updated-flex-contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.single-coming-soon-ad.style-02 .updated-flex-contents .updated-img {
  margin-right: 20px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .single-coming-soon-ad.style-02 .updated-flex-contents .updated-img {
    margin-right: 10px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-coming-soon-ad.style-02 .updated-flex-contents .updated-img {
    margin: 0 auto 20px;
  }
}
.single-coming-soon-ad.style-02 .updated-flex-contents .updated-contents {
  margin-right: 0;
}
.single-coming-soon-ad.bg-item-four::before, .single-coming-soon-ad.bg-item-four::after {
  background: #FFF1E8;
}
.single-coming-soon-ad.bg-item-four::after {
  border-color: #FFF1E8;
  background: transparent;
}
.single-coming-soon-ad::before, .single-coming-soon-ad::after {
  content: "";
  position: absolute;
  left: -70px;
  bottom: -100px;
  height: 300px;
  width: 300px;
  z-index: -1;
  border-radius: 50%;
  background: #D8EFFF;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .single-coming-soon-ad::before, .single-coming-soon-ad::after {
    height: 280px;
    width: 280px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-coming-soon-ad::before, .single-coming-soon-ad::after {
    height: 250px;
    width: 250px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-coming-soon-ad::before, .single-coming-soon-ad::after {
    height: 250px;
    width: 250px;
  }
}
.single-coming-soon-ad::after {
  left: auto;
  right: -20px;
  bottom: auto;
  top: -70px;
  border: 50px solid #D8EFFF;
  background: transparent;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-coming-soon-ad::after {
    right: -100px;
  }
}
.single-coming-soon-ad .coming-soon-image-contents {
  position: relative;
  z-index: 1;
  padding: 0 20px;
}
.single-coming-soon-ad .coming-soon-image-contents .coming-soon-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: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .single-coming-soon-ad .coming-soon-image-contents .coming-soon-flex {
    gap: 10px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .single-coming-soon-ad .coming-soon-image-contents .coming-soon-flex {
    gap: 10px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-coming-soon-ad .coming-soon-image-contents .coming-soon-flex {
    gap: 10px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-coming-soon-ad .coming-soon-image-contents .coming-soon-flex {
    gap: 10px;
  }
}
@media only screen and (max-width: 575.98px) {
  .single-coming-soon-ad .coming-soon-image-contents .coming-soon-flex {
    display: block;
    text-align: center;
  }
}
.single-coming-soon-ad .coming-soon-image-contents .coming-soon-contents {
  padding: 0 0 0 30px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .single-coming-soon-ad .coming-soon-image-contents .coming-soon-contents {
    padding: 0 0 0 20px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .single-coming-soon-ad .coming-soon-image-contents .coming-soon-contents {
    padding: 0 0 0 10px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-coming-soon-ad .coming-soon-image-contents .coming-soon-contents {
    padding: 0 0 0 10px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-coming-soon-ad .coming-soon-image-contents .coming-soon-contents {
    padding: 0 0 0 30px;
  }
}
@media only screen and (max-width: 575.98px) {
  .single-coming-soon-ad .coming-soon-image-contents .coming-soon-contents {
    padding: 20px 0;
  }
}
.single-coming-soon-ad .coming-soon-image-contents .coming-soon-contents .coming-soon-top {
  font-size: 24px;
  line-height: 28px;
  margin-bottom: 20px;
  display: block;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .single-coming-soon-ad .coming-soon-image-contents .coming-soon-contents .coming-soon-top {
    font-size: 22px;
    margin-bottom: 15px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-coming-soon-ad .coming-soon-image-contents .coming-soon-contents .coming-soon-top {
    font-size: 20px;
    margin-bottom: 15px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-coming-soon-ad .coming-soon-image-contents .coming-soon-contents .coming-soon-top {
    font-size: 20px;
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 575.98px) {
  .single-coming-soon-ad .coming-soon-image-contents .coming-soon-contents .coming-soon-top {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 375px) {
  .single-coming-soon-ad .coming-soon-image-contents .coming-soon-contents .coming-soon-top {
    font-size: 16px;
  }
}
.single-coming-soon-ad .coming-soon-image-contents .coming-soon-contents .coming-soon-title {
  font-size: 85px;
  line-height: 70px;
}
@media (min-width: 1600px) and (max-width: 1799.98px) {
  .single-coming-soon-ad .coming-soon-image-contents .coming-soon-contents .coming-soon-title {
    font-size: 70px;
    line-height: 65px;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .single-coming-soon-ad .coming-soon-image-contents .coming-soon-contents .coming-soon-title {
    font-size: 55px;
    line-height: 50px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .single-coming-soon-ad .coming-soon-image-contents .coming-soon-contents .coming-soon-title {
    font-size: 50px;
    line-height: 50px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-coming-soon-ad .coming-soon-image-contents .coming-soon-contents .coming-soon-title {
    font-size: 42px;
    line-height: 42px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-coming-soon-ad .coming-soon-image-contents .coming-soon-contents .coming-soon-title {
    font-size: 40px;
    line-height: 42px;
  }
}
@media only screen and (max-width: 480px) {
  .single-coming-soon-ad .coming-soon-image-contents .coming-soon-contents .coming-soon-title {
    font-size: 36px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 375px) {
  .single-coming-soon-ad .coming-soon-image-contents .coming-soon-contents .coming-soon-title {
    font-size: 32px;
  }
}
.single-coming-soon-ad .coming-soon-image-contents .coming-soon-contents .coming-soon-title .title-small {
  display: block;
  font-size: 42px;
  color: #333;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .single-coming-soon-ad .coming-soon-image-contents .coming-soon-contents .coming-soon-title .title-small {
    font-size: 36px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-coming-soon-ad .coming-soon-image-contents .coming-soon-contents .coming-soon-title .title-small {
    font-size: 32px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-coming-soon-ad .coming-soon-image-contents .coming-soon-contents .coming-soon-title .title-small {
    font-size: 32px;
  }
}
.single-coming-soon-ad .coming-soon-image-contents .coming-soon-contents .preorder-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  color: var(--heading-color);
  font-size: 17px;
  font-weight: 500;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .single-coming-soon-ad .coming-soon-image-contents .coming-soon-contents .preorder-btn {
    gap: 10px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-coming-soon-ad .coming-soon-image-contents .coming-soon-contents .preorder-btn {
    gap: 10px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-coming-soon-ad .coming-soon-image-contents .coming-soon-contents .preorder-btn {
    font-size: 16px;
  }
}
@media only screen and (max-width: 575.98px) {
  .single-coming-soon-ad .coming-soon-image-contents .coming-soon-contents .preorder-btn {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.single-coming-soon-ad .coming-soon-image-contents .coming-soon-contents .preorder-btn .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;
  font-size: 24px;
  background-color: var(--main-color-three);
  color: #fff;
  border-radius: 50%;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-coming-soon-ad .coming-soon-image-contents .coming-soon-contents .preorder-btn .icon {
    height: 40px;
    width: 40px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-coming-soon-ad .coming-soon-image-contents .coming-soon-contents .preorder-btn .icon {
    height: 40px;
    width: 40px;
  }
}
.single-coming-soon-ad .coming-soon-image-contents .coming-soon-img {
  max-width: 340px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .single-coming-soon-ad .coming-soon-image-contents .coming-soon-img {
    max-width: 300px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .single-coming-soon-ad .coming-soon-image-contents .coming-soon-img {
    max-width: 240px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-coming-soon-ad .coming-soon-image-contents .coming-soon-img {
    max-width: 200px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-coming-soon-ad .coming-soon-image-contents .coming-soon-img {
    max-width: 250px;
  }
}
@media only screen and (max-width: 575.98px) {
  .single-coming-soon-ad .coming-soon-image-contents .coming-soon-img {
    max-width: 250px;
    margin: 0 auto;
  }
}

/* Store Area */
.flash-contents-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 30px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (min-width: 1600px) and (max-width: 1799.98px) {
  .flash-contents-wrapper {
    display: block;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .flash-contents-wrapper {
    display: block;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .flash-contents-wrapper {
    display: block;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .flash-contents-wrapper {
    display: block;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .flash-contents-wrapper {
    display: block;
  }
}

.flash-wrapper-single {
  max-width: 600px;
  height: 100%;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .flash-wrapper-single {
    max-width: 100%;
  }
}

.single-store-main {
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}
.single-store-main.store-border {
  border: 1px solid #f2f3f5;
}
.single-store-main:hover .store-image img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.single-store-main:hover .store-image .store-icon-list {
  visibility: visible;
  opacity: 1;
  right: 50px;
}
.single-store-main .store-image {
  position: relative;
  z-index: 2;
  overflow: hidden;
  display: block;
}
.single-store-main .store-image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.single-store-main .store-image .store-icon-list {
  position: absolute;
  top: 50px;
  right: -150px;
  z-index: 9;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.single-store-main .store-image .store-icon-list .lists:not(:last-child) {
  margin-bottom: 10px;
}
.single-store-main .store-image .store-icon-list .lists .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;
  background: #fff;
  height: 50px;
  width: 50px;
  font-size: 24px;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.single-store-main .store-image .store-icon-list .lists .icon:hover {
  background: var(--main-color-one);
  color: #fff;
}
.single-store-main .contents {
  padding: 30px 40px 40px;
}
@media only screen and (max-width: 480px) {
  .single-store-main .contents {
    padding: 20px 10px 30px;
  }
}
.single-store-main .contents .flash-reviews {
  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;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15px;
}
.single-store-main .contents .flash-reviews .flash-title {
  font-size: 28px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-store-main .contents .flash-reviews .flash-title {
    font-size: 26px;
  }
}
@media only screen and (max-width: 480px) {
  .single-store-main .contents .flash-reviews .flash-title {
    font-size: 24px;
  }
}
@media only screen and (max-width: 375px) {
  .single-store-main .contents .flash-reviews .flash-title {
    font-size: 22px;
  }
}
.single-store-main .contents .flash-reviews .flash-title:hover {
  color: var(--main-color-one);
}
.single-store-main .contents .flash-bottom-contents {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.single-store-main .contents .flash-bottom-contents .stock-btn {
  color: #30BB6F;
}
.single-store-main .contents .flash-bottom-contents .stock-btn:hover {
  color: var(--main-color-one);
}

.flash-right-wrapper {
  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: 0 20px;
}
.flash-right-wrapper .flash-col-items {
  width: calc((100% / 3) - 18px);
  margin-top: 30px;
}
@media (min-width: 1600px) and (max-width: 1799.98px) {
  .flash-right-wrapper .flash-col-items {
    width: calc((100% / 4) - 23px);
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .flash-right-wrapper .flash-col-items {
    width: calc((100% / 3) - 18px);
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .flash-right-wrapper .flash-col-items {
    width: calc((100% / 3) - 18px);
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .flash-right-wrapper .flash-col-items {
    width: calc((100% / 2) - 15px);
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .flash-right-wrapper .flash-col-items {
    width: calc((100% / 2) - 15px);
  }
}
@media only screen and (max-width: 767.98px) {
  .flash-right-wrapper .flash-col-items {
    width: 100%;
  }
}
@media only screen and (max-width: 375px) {
  .flash-right-wrapper .flash-col-items {
    margin: 30px auto 0;
    text-align: center;
  }
}

.single-flash-item:hover .flash-flex-item .flash-item-image img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.single-flash-item .flash-flex-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-flash-item .flash-flex-item {
    gap: 15px;
  }
}
@media only screen and (max-width: 767.98px) {
  .single-flash-item .flash-flex-item {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media only screen and (max-width: 375px) {
  .single-flash-item .flash-flex-item {
    display: block;
  }
}
.single-flash-item .flash-flex-item .flash-item-image {
  display: block;
  height: 170px;
  width: 150px;
  overflow: hidden;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .single-flash-item .flash-flex-item .flash-item-image {
    height: 160px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-flash-item .flash-flex-item .flash-item-image {
    height: 150px;
  }
}
@media only screen and (max-width: 375px) {
  .single-flash-item .flash-flex-item .flash-item-image {
    margin: 0 auto 15px;
    text-align: center;
  }
}
.single-flash-item .flash-flex-item .flash-item-image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.single-flash-item .flash-flex-item .flash-item-contents .title:hover {
  color: var(--main-color-one);
}
@media only screen and (max-width: 375px) {
  .single-flash-item .flash-flex-item .flash-item-contents .price-update-through {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media only screen and (max-width: 375px) {
  .single-flash-item .flash-flex-item .flash-item-contents .common-review-list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

/* Category Area */
.category-area div[class*=col]:nth-child(4n+2) .single-category .shape-circle {
  top: 20px;
  right: 20px;
  left: auto;
}
.category-area div[class*=col]:nth-child(4n+3) .single-category .shape-circle {
  bottom: 20px;
  right: 10px;
  left: auto;
}
.category-area div[class*=col]:nth-child(4n+4) .single-category .shape-circle {
  top: 20px;
}

.image-contents {
  position: relative;
  z-index: 1;
  display: inline-block;
}

.notification-title {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-top: 30px;
}

.single-category {
  padding: 70px 30px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.single-category.style-02:hover .category-contents .titles:hover {
  color: var(--main-color-three);
}
.single-category.style-02 .category-contents .titles:hover {
  color: var(--main-color-three);
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .single-category {
    padding: 40px 10px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-category {
    padding: 40px 20px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-category {
    padding: 50px 20px;
  }
}
@media only screen and (max-width: 767.98px) {
  .single-category {
    padding: 30px 15px;
  }
}
@media only screen and (max-width: 480px) {
  .single-category {
    padding: 30px 15px;
  }
}
.single-category:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
.single-category:hover .shape-circle img {
  -webkit-transform: rotate(180deg) scale(1.3);
          transform: rotate(180deg) scale(1.3);
}
.single-category:hover .category-contents .titles {
  color: var(--main-color-one);
}
.single-category:hover .category-contents .notification {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  background: #fff;
  color: var(--main-color-one);
  border: 1px solid var(--main-color-one);
}
.single-category .category-thumb {
  height: 182px;
  width: 182px;
}
.single-category .category-thumb img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-category .shape-circle {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: -1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.single-category .shape-circle img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.single-category .category-contents .titles {
  font-size: 30px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-category .category-contents .titles {
    font-size: 26px;
  }
}
@media only screen and (max-width: 375px) {
  .single-category .category-contents .titles {
    font-size: 24px;
  }
}
.single-category .category-contents .notification {
  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: 26px;
  width: 26px;
  border-radius: 50%;
  font-size: 14px;
  color: #fff;
  position: absolute;
  top: 0;
  right: -30px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .single-category .category-contents .notification {
    right: -20px;
  }
}
@media only screen and (max-width: 767.98px) {
  .single-category .category-contents .notification {
    height: 22px;
    width: 22px;
    font-size: 10px;
    right: -20px;
  }
}
.single-category .category-contents .collection-btn {
  display: block;
  margin-top: 7px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: underline;
}
@media only screen and (max-width: 767.98px) {
  .single-category .category-contents .collection-btn {
    font-size: 16px;
  }
}
@media only screen and (max-width: 375px) {
  .single-category .category-contents .collection-btn {
    font-size: 14px;
  }
}
.single-category .category-contents .collection-btn:hover {
  color: var(--main-color-one);
}

/* Collection area */
.signle-collection {
  position: relative;
  z-index: 2;
  padding: 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  overflow: hidden;
}
.signle-collection:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
.signle-collection:hover .collction-thumb .collection-icon-list {
  visibility: visible;
  opacity: 1;
  right: 10px;
}
.signle-collection:hover .collction-thumb .collection-icon-list .lists:nth-child(1) .icon {
  margin-right: 0px;
}
.signle-collection:hover .collction-thumb .collection-icon-list .lists:nth-child(2) .icon {
  margin-left: 0px;
}
.signle-collection:hover .collction-thumb .shopping-icon {
  visibility: visible;
  opacity: 1;
  bottom: 0;
}
.signle-collection:hover .collection-bottom .common-price-title {
  visibility: hidden;
  opacity: 0;
}
.signle-collection:hover .collection-bottom .collection-cart {
  visibility: visible;
  opacity: 1;
}
.signle-collection.style-02 {
  padding: 0;
}
.signle-collection.style-02 .collction-thumb .shopping-icon.cart-loading::before {
  background-color: var(--main-color-four);
}
.signle-collection.style-02 .collction-thumb .shopping-icon .cart-loading::before {
  background-color: var(--main-color-four);
}
.signle-collection.style-02 .collction-thumb img {
  border-radius: 0;
}
.signle-collection .collction-thumb {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.signle-collection .collction-thumb img {
  border-radius: 20px;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.signle-collection .collction-thumb .collection-icon-list {
  position: absolute;
  top: 10px;
  right: -150px;
  z-index: 9;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.signle-collection .collction-thumb .collection-icon-list.color-two .lists .icon {
  color: var(--main-color-two);
}
.signle-collection .collction-thumb .collection-icon-list.color-two .lists .icon:hover {
  background: var(--main-color-two);
  color: #fff;
}
.signle-collection .collction-thumb .collection-icon-list.color-three .lists .icon {
  color: var(--main-color-three);
}
.signle-collection .collction-thumb .collection-icon-list.color-three .lists .icon:hover {
  background: var(--main-color-three);
  color: #fff;
}
.signle-collection .collction-thumb .collection-icon-list.color-three .cart-loading::before {
  background-color: var(--main-color-three);
}
.signle-collection .collction-thumb .collection-icon-list.color-four .lists .icon {
  color: var(--main-color-four);
}
.signle-collection .collction-thumb .collection-icon-list.color-four .lists .icon:hover {
  background: var(--main-color-four);
  color: #fff;
}
.signle-collection .collction-thumb .collection-icon-list .lists:not(:last-child) {
  margin-bottom: 10px;
}
.signle-collection .collction-thumb .collection-icon-list .lists:nth-child(1) .icon {
  margin-right: 250px;
}
.signle-collection .collction-thumb .collection-icon-list .lists:nth-child(2) .icon {
  margin-left: 150px;
}
.signle-collection .collction-thumb .collection-icon-list .lists .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;
  background: #fff;
  height: 45px;
  width: 45px;
  font-size: 24px;
  border-radius: 10px;
  color: var(--main-color-one);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.signle-collection .collction-thumb .collection-icon-list .lists .icon:hover {
  background: var(--main-color-one);
  color: #fff;
}
.signle-collection .collction-thumb .shopping-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  font-size: 20px;
  font-weight: 500;
  background: var(--main-color-one);
  color: #fff;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 15px 10px;
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 9;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  /* &.cart-loading {
      &::before {
          background-color: var(--main-color-four);
      }
  } */
}
.signle-collection .collction-thumb .shopping-icon:hover {
  background: #fff;
  color: var(--main-color-one);
}
.signle-collection .collction-thumb .shopping-icon:hover .icon-list .icons {
  color: var(--extra-light-color);
}
.signle-collection .collction-thumb .shopping-icon .icon-list .icons {
  font-size: 22px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.signle-collection .collction-thumb .shopping-icon .icon-list .icons:hover {
  color: var(--main-color-one);
}
.signle-collection .collction-thumb .shopping-icon.bg-color-two {
  background: var(--main-color-two);
}
.signle-collection .collction-thumb .shopping-icon.bg-color-two:hover {
  color: var(--main-color-two);
  background: #fff;
}
.signle-collection .collction-thumb .shopping-icon.bg-color-two:hover .icon-list .icons {
  font-size: 22px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.signle-collection .collction-thumb .shopping-icon.bg-color-two:hover .icon-list .icons:hover {
  color: var(--main-color-two);
}
.signle-collection .collction-thumb .shopping-icon.bg-color-three {
  background: var(--main-color-three);
}
.signle-collection .collction-thumb .shopping-icon.bg-color-three:hover {
  color: var(--main-color-three);
  background: #fff;
}
.signle-collection .collction-thumb .shopping-icon.bg-color-three:hover .icon-list .icons {
  font-size: 22px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.signle-collection .collction-thumb .shopping-icon.bg-color-three:hover .icon-list .icons:hover {
  color: var(--main-color-three);
}
.signle-collection .collction-thumb .shopping-icon.bg-color-four {
  background: var(--main-color-four);
}
.signle-collection .collction-thumb .shopping-icon.bg-color-four:hover {
  color: var(--main-color-four);
  background: #fff;
}
.signle-collection .collction-thumb .shopping-icon.bg-color-four:hover .icon-list .icons {
  font-size: 22px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.signle-collection .collction-thumb .shopping-icon.bg-color-four:hover .icon-list .icons:hover {
  color: var(--main-color-four);
}
.signle-collection .collection-contents {
  margin-top: 20px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .signle-collection .collection-contents {
    margin-top: 15px;
  }
}
.signle-collection .collection-contents .collection-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
}
.signle-collection .collection-contents .collection-flex .collection-flex-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.signle-collection .collection-contents .collection-flex .collection-flex-icon a:hover {
  background: var(--main-color-one);
  color: #fff;
}
.signle-collection .collection-contents .collection-title {
  font-size: 30px;
  color: var(--heading-color);
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .signle-collection .collection-contents .collection-title {
    font-size: 28px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .signle-collection .collection-contents .collection-title {
    font-size: 28px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .signle-collection .collection-contents .collection-title {
    font-size: 26px;
  }
}
@media only screen and (max-width: 375px) {
  .signle-collection .collection-contents .collection-title {
    font-size: 24px;
  }
}
.signle-collection .collection-contents .collection-title:hover {
  color: var(--main-color-one);
}
.signle-collection .collection-contents .collection-title.color-two:hover {
  color: var(--main-color-two);
}
.signle-collection .collection-contents .collection-title.color-three:hover {
  color: var(--main-color-three);
}
.signle-collection .collection-contents .collection-title.color-four:hover {
  color: var(--main-color-four);
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .signle-collection .collection-contents .price-update-through .flash-prices {
    font-size: 24px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .signle-collection .collection-contents .price-update-through .flash-prices {
    font-size: 24px;
  }
}
.signle-collection .collection-contents .price-update-through .flash-prices.color-one {
  color: var(--main-color-one);
}
.signle-collection .collection-contents .shopping-icon {
  background: 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: 45px;
  width: 45px;
  border-radius: 8px;
  font-size: 24px;
  color: var(--main-color-one);
  border: 1px solid var(--main-color-one);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .signle-collection .collection-contents .shopping-icon {
    height: 40px;
    width: 40px;
    font-size: 24px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .signle-collection .collection-contents .shopping-icon {
    height: 40px;
    width: 40px;
    font-size: 24px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .signle-collection .collection-contents .shopping-icon {
    height: 40px;
    width: 40px;
    font-size: 24px;
  }
}

.sale {
  display: inline-block;
  padding: 10px 30px;
  color: #fff;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 9;
}
.sale.sale-radius-1 {
  border-radius: 20px 20px 20px 0;
}

.collection-review {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.collection-review li {
  color: var(--main-color-one);
}
.collection-review.color-two li {
  color: var(--main-color-two);
}
.collection-review.color-three li {
  color: var(--main-color-three);
}
.collection-review.color-four li {
  color: var(--main-color-four);
}

.collection-bottom {
  position: relative;
  z-index: 2;
  padding-bottom: 15px;
  display: list-item;
}
.collection-bottom .common-price-title {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.collection-bottom .collection-cart {
  position: relative;
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  /* &::before {
      content: "";
      position: absolute;
      height: 2px;
      width: 0;
      left: 0;
      bottom: 0;
      background: var(--main-color-one);
      z-index: -1;
      transition: $transition;
      visibility: hidden;
      opacity: 0;
  } */
}
.collection-bottom .collection-cart:hover {
  color: var(--main-color-one);
  text-decoration: underline;
  /* &::before {
      visibility: visible;
      opacity: 1;
      width: 100%;
  } */
}
.collection-bottom .collection-cart.color-two {
  color: var(--main-color-two);
}
.collection-bottom .collection-cart.color-two:hover {
  color: var(--main-color-two);
}
.collection-bottom .collection-cart.color-two:hover::before {
  background: var(--main-color-two);
}
.collection-bottom .collection-cart.color-three {
  color: var(--main-color-three);
}
.collection-bottom .collection-cart.color-three:hover {
  color: var(--main-color-three);
}
.collection-bottom .collection-cart.color-three:hover::before {
  background: var(--main-color-three);
}
.collection-bottom .collection-cart.color-four {
  color: var(--main-color-four);
}
.collection-bottom .collection-cart.color-four:hover {
  color: var(--main-color-four);
}
.collection-bottom .collection-cart.color-four:hover::before {
  background: var(--main-color-four);
}

/* Store Area */
.store-tab-area {
  max-height: 1110px;
  overflow-y: auto;
}
@media (min-width: 1600px) and (max-width: 1799.98px) {
  .store-tab-area {
    max-height: 1000px;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .store-tab-area {
    max-height: 880px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .store-tab-area {
    max-height: 780px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .store-tab-area {
    max-height: 100%;
    margin-bottom: -10px;
    overflow-y: unset;
  }
}
@media only screen and (max-width: 480px) {
  .store-tab-area {
    max-height: 200px;
    overflow-y: auto;
    margin-bottom: 10px;
  }
}

.store-tabs {
  display: block !important;
}
.store-tabs li {
  font-size: 26px;
  color: var(--light-color);
  line-height: 34px;
  cursor: pointer;
  display: table;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
}
@media (min-width: 1600px) and (max-width: 1799.98px) {
  .store-tabs li {
    font-size: 24px;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .store-tabs li {
    font-size: 24px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .store-tabs li {
    font-size: 22px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .store-tabs li {
    font-size: 20px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .store-tabs li {
    font-size: 18px;
    display: inline-block;
    margin-bottom: 20px !important;
  }
}
@media only screen and (max-width: 575.98px) {
  .store-tabs li {
    font-size: 17px;
  }
}
@media only screen and (max-width: 480px) {
  .store-tabs li {
    font-size: 16px;
  }
}
@media only screen and (max-width: 375px) {
  .store-tabs li {
    font-size: 14px;
    margin-bottom: 10px !important;
    line-height: 28px;
  }
}
.store-tabs li.active {
  color: var(--main-color-one);
}
.store-tabs li.active::after {
  background: var(--main-color-one);
  width: 105px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .store-tabs li.active::after {
    width: 80px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .store-tabs li.active::after {
    width: 60px;
  }
}
.store-tabs li:not(:last-child) {
  margin-bottom: 40px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .store-tabs li:not(:last-child) {
    margin-bottom: unset;
    margin-right: 30px;
  }
}
@media only screen and (max-width: 480px) {
  .store-tabs li:not(:last-child) {
    margin-right: 20px;
  }
}
.store-tabs li::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 0px;
  background: #fff;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 110%;
  z-index: -1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .store-tabs li::after {
    top: 100%;
    -webkit-transform: unset;
            transform: unset;
    left: 0;
  }
}
.store-tabs li:hover {
  color: var(--main-color-one);
}
.store-tabs li:hover::after {
  background: var(--main-color-one);
  width: 105px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .store-tabs li:hover::after {
    width: 80px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .store-tabs li:hover::after {
    width: 60px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .store-tabs li:hover::after {
    width: 100%;
  }
}

/* Flash Sale */
.section-top-shape {
  position: absolute;
  top: -35px;
  left: 0;
  right: 0;
  z-index: 9;
  width: 100%;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .section-top-shape {
    top: -15px;
  }
}
@media only screen and (max-width: 375px) {
  .section-top-shape {
    top: -10px;
  }
}
.section-top-shape img {
  width: 100%;
}

.section-bottom-shape {
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  z-index: 9;
  width: 100%;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .section-bottom-shape {
    bottom: -3px;
  }
}
@media only screen and (max-width: 767.98px) {
  .section-bottom-shape {
    bottom: -6px;
  }
}
@media only screen and (max-width: 375px) {
  .section-bottom-shape {
    bottom: -8px;
  }
}
.section-bottom-shape img {
  width: 100%;
}

.flash-sale-wrapper {
  position: relative;
  z-index: 1;
}
.flash-sale-wrapper.discount-sale {
  position: relative;
  z-index: 2;
}
.flash-sale-wrapper.discount-sale .flash-sale-contents {
  padding: 83px 0 85px 130px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .flash-sale-wrapper.discount-sale .flash-sale-contents {
    padding: 80px 0 80px 50px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .flash-sale-wrapper.discount-sale .flash-sale-contents {
    padding: 80px 0 80px 30px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .flash-sale-wrapper.discount-sale .flash-sale-contents {
    padding: 80px 0 80px 30px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .flash-sale-wrapper.discount-sale .flash-sale-contents {
    padding: 100px 0 100px 30px;
  }
}
@media only screen and (max-width: 480px) {
  .flash-sale-wrapper.discount-sale .flash-sale-contents {
    padding: 70px 0 70px 30px;
  }
}
@media only screen and (max-width: 375px) {
  .flash-sale-wrapper.discount-sale .flash-sale-contents {
    padding: 70px 0 70px 10px;
  }
}
.flash-sale-wrapper.discount-sale .flash-sale-contents .flas-sale-title {
  font-size: 70px;
  line-height: 85px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .flash-sale-wrapper.discount-sale .flash-sale-contents .flas-sale-title {
    font-size: 50px;
    line-height: 60px;
  }
}
.flash-sale-wrapper.discount-sale .flash-sale-image {
  right: 90px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .flash-sale-wrapper.discount-sale .flash-sale-image {
    right: 30px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .flash-sale-wrapper.discount-sale .flash-sale-image {
    right: 10px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .flash-sale-wrapper.discount-sale .flash-sale-image {
    right: 5px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .flash-sale-wrapper.discount-sale .flash-sale-image {
    right: 10px;
  }
}
@media only screen and (max-width: 767.98px) {
  .flash-sale-wrapper.discount-sale .flash-sale-image {
    right: 0px;
  }
}
.flash-sale-wrapper.discount-sale .discount-shapes {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.flash-sale-contents {
  padding: 150px 0 125px 160px;
  max-width: 750px;
}
.flash-sale-contents.style-02 {
  margin-left: auto;
  padding: 150px 210px 125px 0px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .flash-sale-contents.style-02 {
    padding: 150px 30px 150px 130px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .flash-sale-contents.style-02 {
    padding: 150px 30px 150px 130px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .flash-sale-contents.style-02 {
    padding: 120px 0px 120px 0px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .flash-sale-contents.style-02 {
    padding: 80px 0px 100px 30px;
  }
}
@media only screen and (max-width: 480px) {
  .flash-sale-contents.style-02 {
    padding: 80px 0px 100px 10px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .flash-sale-contents {
    padding: 100px 0 100px 30px;
    max-width: 500px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .flash-sale-contents {
    max-width: 100%;
    padding: 80px 0 100px 30px;
  }
}
@media only screen and (max-width: 480px) {
  .flash-sale-contents {
    max-width: 100%;
    padding: 80px 0 100px 10px;
  }
}
.flash-sale-contents .flas-sale-title {
  font-size: 100px;
  line-height: 100px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .flash-sale-contents .flas-sale-title {
    font-size: 80px;
    line-height: 80px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .flash-sale-contents .flas-sale-title {
    font-size: 70px;
    line-height: 70px;
  }
}
@media only screen and (max-width: 575.98px) {
  .flash-sale-contents .flas-sale-title {
    font-size: 60px;
    line-height: 60px;
  }
}
@media only screen and (max-width: 480px) {
  .flash-sale-contents .flas-sale-title {
    font-size: 50px;
    line-height: 50px;
  }
}
.flash-sale-contents .flash-btn {
  margin-top: 45px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .flash-sale-contents .flash-btn {
    margin-top: 20px;
  }
}
.flash-sale-contents .flash-btn .flash-store {
  font-size: 20px;
  font-weight: 500;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  color: var(--main-color-one);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .flash-sale-contents .flash-btn .flash-store {
    font-size: 16px;
  }
}
@media only screen and (max-width: 480px) {
  .flash-sale-contents .flash-btn .flash-store {
    font-size: 15px;
  }
}
@media only screen and (max-width: 375px) {
  .flash-sale-contents .flash-btn .flash-store {
    font-size: 14px;
  }
}
.flash-sale-contents .flash-btn .flash-store::before {
  content: "";
  font-family: "Line Awesome Free";
  font-weight: 900;
  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: var(--heading-color);
  color: #fff;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  font-size: 30px;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .flash-sale-contents .flash-btn .flash-store::before {
    height: 40px;
    width: 40px;
    font-size: 24px;
  }
}
@media only screen and (max-width: 375px) {
  .flash-sale-contents .flash-btn .flash-store::before {
    height: 30px;
    width: 30px;
    font-size: 20px;
  }
}
.flash-sale-contents .flash-btn .flash-store:hover {
  color: var(--main-color-one);
}
.flash-sale-contents .flash-btn .flash-store:hover::before {
  background: var(--main-color-one);
  color: #fff;
}
.flash-sale-contents .flash-btn .flash-store.color-two {
  color: var(--main-color-two);
}
.flash-sale-contents .flash-btn .flash-store.color-two:hover {
  color: var(--main-color-two);
}
.flash-sale-contents .flash-btn .flash-store.color-two:hover::before {
  background: var(--main-color-two);
  color: #fff;
}
.flash-sale-contents .flash-btn .flash-store.color-three {
  color: var(--main-color-three);
}
.flash-sale-contents .flash-btn .flash-store.color-three:hover {
  color: var(--main-color-three);
}
.flash-sale-contents .flash-btn .flash-store.color-three:hover::before {
  background: var(--main-color-three);
  color: #fff;
}
.flash-sale-contents .flash-btn .flash-store.color-four {
  color: var(--main-color-four);
}
.flash-sale-contents .flash-btn .flash-store.color-four:hover {
  color: var(--main-color-four);
}
.flash-sale-contents .flash-btn .flash-store.color-four:hover::before {
  background: var(--main-color-four);
  color: #fff;
}

.flash-sale-image {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.flash-sale-image img {
  height: 100%;
}
@media only screen and (max-width: 575.98px) {
  .flash-sale-image {
    display: none;
  }
}
.flash-sale-image.style-02 {
  right: auto;
  left: 200px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .flash-sale-image.style-02 {
    left: 100px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .flash-sale-image.style-02 {
    left: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .flash-sale-image.style-02 {
    left: 20px;
    height: 100%;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .flash-sale-image.style-02 {
    left: 100px;
  }
}

.flash-wave-top {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
}
.flash-wave-top img {
  width: 100%;
}

.flash-middle-shapes {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -2;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .flash-middle-shapes {
    bottom: 50%;
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .flash-middle-shapes.style-02 {
    bottom: 0;
    -webkit-transform: unset;
            transform: unset;
  }
}

.sale-offer {
  font-size: 54px;
  line-height: 61px;
  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;
  text-align: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  height: 192px;
  width: 192px;
  color: #fff;
  border-radius: 50%;
  position: absolute;
  right: 150px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 9;
  -webkit-animation: 5s floating linear infinite;
          animation: 5s floating linear infinite;
}
.sale-offer.style-02 {
  font-size: 36px;
  line-height: 50px;
  right: auto;
  left: 220px;
  top: 70%;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .sale-offer.style-02 {
    left: 100px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .sale-offer.style-02 {
    font-size: 32px;
    line-height: 40px;
    left: 50px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .sale-offer.style-02 {
    font-size: 32px;
    line-height: 40px;
    left: 50px;
    top: 50%;
    height: 185px;
    width: 185px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .sale-offer.style-02 {
    font-size: 28px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 480px) {
  .sale-offer.style-02 {
    font-size: 26px;
    height: 130px;
    width: 130px;
    line-height: 32px;
  }
}
@media only screen and (max-width: 375px) {
  .sale-offer.style-02 {
    font-size: 22px;
    height: 110px;
    width: 110px;
    line-height: 28px;
  }
}
.sale-offer.style-03 {
  font-size: 36px;
  line-height: 50px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .sale-offer.style-03 {
    font-size: 32px;
    line-height: 40px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .sale-offer.style-03 {
    font-size: 32px;
    line-height: 40px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .sale-offer.style-03 {
    font-size: 28px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 480px) {
  .sale-offer.style-03 {
    font-size: 26px;
    height: 130px;
    width: 130px;
    line-height: 32px;
  }
}
@media only screen and (max-width: 375px) {
  .sale-offer.style-03 {
    font-size: 22px;
    height: 110px;
    width: 110px;
    line-height: 28px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .sale-offer {
    top: 30px;
    right: 30px;
    -webkit-transform: unset;
            transform: unset;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .sale-offer {
    position: initial;
    margin-left: 30px;
    font-size: 40px;
    height: 150px;
    width: 150px;
    line-height: 50px;
  }
}
@media only screen and (max-width: 480px) {
  .sale-offer {
    font-size: 30px;
    height: 100px;
    width: 100px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 480px) {
  .sale-offer {
    margin-left: 10px;
  }
}

/* Spray Area */
.spray-area {
  position: relative;
  z-index: 1;
}

.sparay-shape::before {
  content: "";
  position: absolute;
  height: 647px;
  width: 647px;
  border-radius: 50%;
  background: #FFF1E8;
  left: 0;
  bottom: 0;
  z-index: -1;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .sparay-shape::before {
    height: 500px;
    width: 500px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .sparay-shape::before {
    height: 500px;
    width: 500px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .sparay-shape::before {
    height: 500px;
    width: 500px;
  }
}
@media only screen and (max-width: 575.98px) {
  .sparay-shape::before {
    height: 400px;
    width: 400px;
  }
}
@media only screen and (max-width: 480px) {
  .sparay-shape::before {
    height: 350px;
    width: 350px;
  }
}
@media only screen and (max-width: 375px) {
  .sparay-shape::before {
    height: 300px;
    width: 300px;
  }
}

.spray-image-contents {
  text-align: right;
  position: relative;
  z-index: 2;
}
.spray-image-contents .sparay-image-shape img {
  position: absolute;
  z-index: -1;
}
.spray-image-contents .sparay-image-shape img:nth-child(1) {
  bottom: -60px;
  right: -60px;
  -webkit-animation: 5s pulsing linear infinite;
          animation: 5s pulsing linear infinite;
}
.spray-image-contents .sparay-image-shape img:nth-child(2) {
  left: -25px;
  bottom: 60px;
  -webkit-animation: 20s round-moving linear infinite;
          animation: 20s round-moving linear infinite;
}
.spray-image-contents .sparay-image-shape img:nth-child(3) {
  left: -60px;
  top: -30px;
  z-index: 9;
  -webkit-animation: 5s floating linear infinite;
          animation: 5s floating linear infinite;
}

.spray-contents {
  padding: 160px 0 160px 100px;
  position: relative;
  z-index: 9;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .spray-contents {
    padding: 30px 0px 0px 30px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .spray-contents {
    padding: 30px 0px 0px 30px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .spray-contents {
    padding: 30px 200px 0px 30px !important;
  }
}
@media only screen and (max-width: 767.98px) {
  .spray-contents {
    padding: 30px 80px 0px 0px !important;
  }
}
@media only screen and (max-width: 480px) {
  .spray-contents {
    padding: 30px 10px 0px 0px !important;
  }
}
@media only screen and (max-width: 375px) {
  .spray-contents {
    padding: 30px 0px 0px 0px !important;
  }
}
.spray-contents .spray-title {
  font-size: 90px;
  line-height: 110px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .spray-contents .spray-title {
    font-size: 80px;
    line-height: 90px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .spray-contents .spray-title {
    font-size: 70px;
    line-height: 90px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .spray-contents .spray-title {
    font-size: 60px;
    line-height: 80px;
  }
}
@media only screen and (max-width: 767.98px) {
  .spray-contents .spray-title {
    font-size: 50px;
    line-height: 60px;
  }
}
@media only screen and (max-width: 480px) {
  .spray-contents .spray-title {
    font-size: 45px;
    line-height: 55px;
  }
}
@media only screen and (max-width: 375px) {
  .spray-contents .spray-title {
    font-size: 40px;
    line-height: 50px;
  }
}
.spray-contents .spray-price {
  font-size: 60px;
  line-height: 110px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .spray-contents .spray-price {
    font-size: 55px;
    line-height: 70px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .spray-contents .spray-price {
    font-size: 50px;
    line-height: 60px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .spray-contents .spray-price {
    font-size: 36px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 575.98px) {
  .spray-contents .spray-price {
    font-size: 32px;
    line-height: 32px;
  }
}
@media only screen and (max-width: 375px) {
  .spray-contents .spray-price {
    font-size: 28px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .spray-contents .btn-wrapper {
    margin-top: 40px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .spray-contents .btn-wrapper .cmn-btn {
    font-size: 16px !important;
    padding: 7px 30px;
  }
}
@media only screen and (max-width: 480px) {
  .spray-contents .btn-wrapper .cmn-btn {
    font-size: 15px !important;
    padding: 7px 20px;
  }
}
@media only screen and (max-width: 375px) {
  .spray-contents .btn-wrapper .cmn-btn {
    font-size: 14px !important;
    padding: 5px 15px;
  }
}
.spray-contents .btn-wrapper .cmn-btn.btn-bg-heading:hover {
  background: #fff;
  color: var(--heading-color);
}

.collection-shapes img {
  position: absolute;
  z-index: -1;
}
.collection-shapes img:nth-child(1) {
  bottom: 0;
  right: -150px;
  -webkit-animation: 5s floating linear infinite;
          animation: 5s floating linear infinite;
}
.collection-shapes img:nth-child(2) {
  bottom: 200px;
  right: 200px;
  -webkit-animation: 20s round-moving linear infinite;
          animation: 20s round-moving linear infinite;
}
.collection-shapes.collection-five img:nth-child(1) {
  bottom: 0;
  left: -150px;
}
.collection-shapes.collection-five img:nth-child(2) {
  left: 100px;
  top: 0;
}
.collection-shapes.collection-five img:nth-child(3) {
  bottom: 50%;
  right: 150px;
  -webkit-animation: 20s round-moving linear infinite;
          animation: 20s round-moving linear infinite;
}

/* Arrivals Area */
.signle-arrivals .arrivals-contents {
  padding-top: 20px;
}
.signle-arrivals .arrivals-contents .arrivals-title {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.signle-arrivals .arrivals-contents .arrivals-title:hover {
  color: var(--main-color-one);
}
.signle-arrivals .arrivals-contents .arrivals-title.hover-color-two:hover {
  color: var(--main-color-two);
}
.signle-arrivals .arrivals-contents .arrivals-title.hover-color-three:hover {
  color: var(--main-color-three);
}
.signle-arrivals .arrivals-contents .arrivals-title.hover-color-four:hover {
  color: var(--main-color-four);
}
.signle-arrivals .arrivals-contents .categories {
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
}
.signle-arrivals .arrivals-contents .categories:not(:last-child) {
  margin-right: 5px;
}
.signle-arrivals .arrivals-contents .categories:not(:last-child)::after {
  content: ",";
}
.signle-arrivals .arrivals-contents .categories:hover {
  color: var(--main-color-four);
}

.flex-space-contents {
  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;
}

.flex-contents {
  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;
}

/* Release Area */
.release-wrapper {
  position: relative;
  z-index: 2;
}

.release-contents {
  padding: 90px 0;
  max-width: 530px;
  margin-left: auto;
  position: relative;
  z-index: 2;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .release-contents {
    margin-left: 30px;
    padding: 70px 0 80px;
  }
}
.release-contents .release-title {
  font-size: 100px;
  line-height: 120px;
  font-weight: 300;
}
.release-contents .release-title .release-top {
  display: block;
  font-weight: 500;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .release-contents .release-title {
    font-size: 60px;
    line-height: 70px;
  }
}
@media only screen and (max-width: 480px) {
  .release-contents .release-title {
    font-size: 40px;
    line-height: 50px;
  }
}
.release-contents .release-price {
  font-size: 60px;
  font-weight: 500;
  line-height: 100px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .release-contents .release-price {
    font-size: 40px;
    line-height: 50px;
  }
}
@media only screen and (max-width: 480px) {
  .release-contents .release-price {
    font-size: 30px;
    line-height: 36px;
    margin-top: 20px;
  }
}
@media only screen and (max-width: 480px) {
  .release-contents .btn-wrapper {
    margin-top: 30px;
  }
}

.release-image {
  position: absolute;
  left: 0;
  bottom: 0;
}
.release-shapes {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
  width: 100%;
}
/* Buy & Get area */
.buy-contents-wrapper {
  position: relative;
  z-index: 2;
  background: var(--heading-color);
  border-radius: 0 170px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .buy-contents-wrapper {
    border-radius: 0 100px;
  }
}
@media only screen and (max-width: 575.98px) {
  .buy-contents-wrapper {
    border-radius: 0 50px;
  }
}

.wave-shapes {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .wave-shapes {
    bottom: auto;
    top: 0;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .wave-shapes {
    bottom: auto;
    top: 0;
  }
}
.buy-image-wrapper {
  position: relative;
  z-index: 2;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  height: 100%;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .buy-image-wrapper {
    position: inherit;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .buy-image-wrapper {
    position: inherit;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .buy-image-wrapper {
    position: inherit;
  }
}
.buy-image-wrapper .buy-images {
  height: 100%;
  max-width: 770px;
  position: relative;
  z-index: 2;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .buy-image-wrapper .buy-images {
    max-width: 700px;
  }
}
.buy-image-wrapper .buy-images img {
  border-radius: 0 170px;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .buy-image-wrapper .buy-images img {
    border-radius: 0 100px;
  }
}
@media only screen and (max-width: 575.98px) {
  .buy-image-wrapper .buy-images img {
    border-radius: 0 50px;
  }
}
.buy-image-wrapper .buy-shapes {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -110px;
  z-index: 9;
}
@media (min-width: 1600px) and (max-width: 1799.98px) {
  .buy-image-wrapper .buy-shapes {
    right: -80px;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .buy-image-wrapper .buy-shapes {
    right: -70px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .buy-image-wrapper .buy-shapes {
    right: auto;
    left: 70px;
    -webkit-transform: translateY(-50%) rotate(90deg);
            transform: translateY(-50%) rotate(90deg);
    top: auto;
    bottom: -70px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .buy-image-wrapper .buy-shapes {
    right: auto;
    left: 70px;
    -webkit-transform: translateY(-50%) rotate(90deg);
            transform: translateY(-50%) rotate(90deg);
    top: auto;
    bottom: -70px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .buy-image-wrapper .buy-shapes {
    right: auto;
    left: 70px;
    -webkit-transform: translateY(-50%) rotate(90deg);
            transform: translateY(-50%) rotate(90deg);
    top: auto;
    bottom: -30px;
  }
}
.buy-wrapper {
  max-width: 630px;
  margin-left: auto;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .buy-wrapper {
    max-width: 500px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .buy-wrapper {
    margin-left: 50px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .buy-wrapper {
    margin-left: 50px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .buy-wrapper {
    margin-left: 50px;
  }
}
@media only screen and (max-width: 480px) {
  .buy-wrapper {
    margin-left: 30px;
  }
}
@media only screen and (max-width: 375px) {
  .buy-wrapper {
    margin-left: 10px;
  }
}
.buy-wrapper .buy-contents {
  padding: 130px 0;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .buy-wrapper .buy-contents {
    padding: 130px 0 0px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .buy-wrapper .buy-contents {
    padding: 130px 0 0px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .buy-wrapper .buy-contents {
    padding: 80px 0 0;
  }
}
.buy-wrapper .buy-contents .buy-top-title {
  margin-bottom: 20px;
}
@media only screen and (max-width: 575.98px) {
  .buy-wrapper .buy-contents .buy-top-title {
    margin-bottom: 15px;
    font-size: 26px !important;
  }
}
@media only screen and (max-width: 375px) {
  .buy-wrapper .buy-contents .buy-top-title {
    font-size: 22px !important;
  }
}
.buy-wrapper .buy-contents .buy-title {
  color: #fff;
  font-size: 60px;
  line-height: 90px;
}
.buy-wrapper .buy-contents .buy-title span {
  font-size: 90px;
  display: block;
}
@media only screen and (max-width: 767.98px) {
  .buy-wrapper .buy-contents .buy-title span {
    font-size: 70px;
  }
}
@media only screen and (max-width: 575.98px) {
  .buy-wrapper .buy-contents .buy-title span {
    font-size: 60px;
  }
}
@media only screen and (max-width: 375px) {
  .buy-wrapper .buy-contents .buy-title span {
    font-size: 45px;
  }
}
@media only screen and (max-width: 767.98px) {
  .buy-wrapper .buy-contents .buy-title {
    font-size: 55px;
    line-height: 75px;
  }
}
@media only screen and (max-width: 575.98px) {
  .buy-wrapper .buy-contents .buy-title {
    font-size: 45px;
    line-height: 65px;
  }
}
@media only screen and (max-width: 375px) {
  .buy-wrapper .buy-contents .buy-title {
    font-size: 36px;
    line-height: 50px;
  }
}
@media only screen and (max-width: 575.98px) {
  .buy-wrapper .buy-contents .btn-wrapper {
    margin-top: 30px;
  }
}

.black-themes .buy-contents-wrapper {
  background: var(--heading-color);
}
.black-themes .buy-contents .buy-title {
  color: #fff;
}

/* Instagram area */
.instagram-wrapper {
  position: relative;
  z-index: 2;
}

.instagram-contents {
  text-align: center;
  display: inline-block;
  padding: 20px 30px 30px;
  position: absolute;
  z-index: 9;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media only screen and (max-width: 480px) {
  .instagram-contents {
    padding: 10px 20px 20px;
  }
}
@media only screen and (max-width: 375px) {
  .instagram-contents {
    padding: 10px 10px 20px;
  }
}
.instagram-contents.style-02 {
  background: #fff;
  color: var(--light-color);
}
.instagram-contents .icon {
  font-size: 30px;
  display: block;
}
.instagram-contents .icon:hover {
  color: var(--main-color-one);
}
.instagram-contents .icon.hover-color-two:hover {
  color: var(--main-color-two);
}
.instagram-contents .icon.hover-color-three:hover {
  color: var(--main-color-three);
}
.instagram-contents .icon.hover-color-four:hover {
  color: var(--main-color-four);
}
.instagram-contents .instagram-title.white-color {
  color: #fff;
}
.instagram-contents .instagram-title:hover {
  color: var(--main-color-one);
}
.instagram-contents .instagram-title.hover-color-two:hover {
  color: var(--main-color-two);
}
.instagram-contents .instagram-title.hover-color-three:hover {
  color: var(--main-color-three);
}
.instagram-contents .instagram-title.hover-color-four:hover {
  color: var(--main-color-four);
}

@media (min-width: 320px) and (max-width: 991.98px) {
  .single-instagram.style-02 .instagram-image {
    height: 220px;
    border-radius: 20px;
  }
}
@media only screen and (max-width: 480px) {
  .single-instagram.style-02 .instagram-image {
    height: 200px;
  }
}
@media only screen and (max-width: 375px) {
  .single-instagram.style-02 .instagram-image {
    height: 150px;
    border-radius: 10px;
  }
}
.single-instagram .instagram-image {
  height: 320px;
  width: 100%;
}
@media (min-width: 1600px) and (max-width: 1799.98px) {
  .single-instagram .instagram-image {
    height: 280px;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .single-instagram .instagram-image {
    height: 250px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .single-instagram .instagram-image {
    height: 240px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-instagram .instagram-image {
    height: 250px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-instagram .instagram-image {
    height: auto;
  }
}
.single-instagram .instagram-image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.black-themes .instagram-contents.style-02 {
  background: #1B1C25;
}
.black-themes .instagram-contents.style-02 .instagram-title {
  color: #fff;
}
.black-themes .instagram-contents.style-02 .instagram-title:hover {
  color: var(--main-color-two);
}

/* Badge Area */
.badge-area {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.badge-shapes img {
  position: absolute;
  z-index: -1;
}
.badge-shapes img:nth-child(1) {
  left: -200px;
  top: -200px;
  -webkit-animation: 5s pulsing linear infinite;
          animation: 5s pulsing linear infinite;
}
.badge-shapes img:nth-child(2) {
  left: 5%;
  top: 40%;
  -webkit-animation: 20s round-moving linear infinite;
          animation: 20s round-moving linear infinite;
}
.badge-shapes img:nth-child(3) {
  left: 20%;
  bottom: 30%;
  -webkit-animation: 20s round-moving linear infinite;
          animation: 20s round-moving linear infinite;
}
.badge-shapes img:nth-child(4) {
  right: 15%;
  bottom: 30%;
  -webkit-animation: 20s round-moving linear infinite;
          animation: 20s round-moving linear infinite;
}
.badge-shapes img:nth-child(5) {
  right: -80px;
  bottom: 10px;
  -webkit-animation: 5s floating linear infinite;
          animation: 5s floating linear infinite;
}

.badge-padding {
  padding: 160px 0 100px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .badge-padding {
    padding: 120px 0 70px;
  }
}

.badge-contents {
  text-align: center;
}
.badge-contents .badge-title {
  font-size: 60px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .badge-contents .badge-title {
    font-size: 50px;
  }
}
@media only screen and (max-width: 767.98px) {
  .badge-contents .badge-title {
    font-size: 45px;
  }
}
@media only screen and (max-width: 480px) {
  .badge-contents .badge-title {
    font-size: 40px;
    line-height: 45px;
  }
}
@media only screen and (max-width: 375px) {
  .badge-contents .badge-title {
    font-size: 33px;
  }
}
.badge-contents .bage-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;
}
.badge-contents .bage-list .list {
  font-size: 16px;
  position: relative;
  z-index: 2;
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .badge-contents .bage-list .list {
    font-size: 17px;
  }
}
@media only screen and (max-width: 480px) {
  .badge-contents .bage-list .list {
    font-size: 16px;
  }
}
@media only screen and (max-width: 375px) {
  .badge-contents .bage-list .list {
    font-size: 15px;
  }
}
.badge-contents .bage-list .list:hover {
  color: var(--main-color-one);
}
.badge-contents .bage-list .list:not(:last-child) {
  padding-right: 20px;
}
.badge-contents .bage-list .list:not(:last-child)::after {
  content: "";
  position: absolute;
  background: var(--extra-light-color);
  height: 15px;
  width: 2px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.badge-contents .bage-list .list:not(:first-child) {
  padding-left: 20px;
}
.badge-contents.hover-color-one .bage-list .list:hover {
  color: var(--main-color-one);
}
.badge-contents.hover-color-two .bage-list .list:hover {
  color: var(--main-color-two);
}
.badge-contents.hover-color-three .bage-list .list:hover {
  color: var(--main-color-three);
}
.badge-contents.hover-color-four .bage-list .list:hover {
  color: var(--main-color-four);
}

/* 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;
  gap: 40px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .shop-right {
    gap: 30px;
  }
}
@media only screen and (max-width: 575.98px) {
  .shop-right {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-top: 20px;
  }
}
.shop-right .single-shops .nice-select {
  font-size: 16px;
  color: var(--light-color);
  border: 0;
  outline: none;
  height: 30px;
  line-height: 30px;
}
@media only screen and (max-width: 575.98px) {
  .shop-right .single-shops .nice-select {
    padding: 0 30px 0 0;
  }
}
.shop-right .single-shops .nice-select::after {
  border-bottom: 2px solid var(--light-color);
  border-right: 2px solid var(--light-color);
  right: 10px;
}
.shop-right .single-shops .nice-select .list {
  min-width: 100% !important;
}
.shop-right .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;
}
.shop-right .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;
}
.shop-right .single-shops .shop-icons.active {
  background: #F2F3F5;
}

.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;
}
.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;
}
.selectder-filter-contents .selected-flex-list li a:hover {
  color: var(--main-color-one);
}
.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:not(:last-child) a {
  padding-right: 20px;
}
@media only screen and (max-width: 480px) {
  .selectder-filter-contents .selected-flex-list li:not(:last-child) a {
    padding-right: 15px;
  }
}
@media only screen and (max-width: 375px) {
  .selectder-filter-contents .selected-flex-list li:not(:last-child) a {
    padding-right: 10px;
  }
}
.selectder-filter-contents .selected-flex-list li:not(:last-child) 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:not(:last-child) a::after {
    font-size: 14px;
    right: -6px;
  }
}
@media only screen and (max-width: 480px) {
  .selectder-filter-contents .selected-flex-list li:not(:last-child) a::after {
    right: -7px;
  }
}
.selectder-filter-contents .selected-flex-list li:not(:first-child) a {
  padding-left: 20px;
}
@media only screen and (max-width: 480px) {
  .selectder-filter-contents .selected-flex-list li:not(:first-child) a {
    padding-left: 15px;
  }
}
@media only screen and (max-width: 375px) {
  .selectder-filter-contents .selected-flex-list li:not(:first-child) a {
    padding-left: 10px;
  }
}

.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: 320px) 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-left-content {
  margin-left: auto;
}
.shop-contents-wrapper.style-02 .shop-close-main {
  left: auto;
  right: 0;
}
.shop-contents-wrapper.style-02 .shop-close-main.active {
  left: auto;
  right: 0;
}
.shop-contents-wrapper.style-02 .shop-close-main .close-bars {
  right: auto;
  left: -40px;
}
.shop-contents-wrapper.style-02 .shop-icon .sidebar-icon {
  margin-left: auto;
}
.shop-contents-wrapper .shop-left-content {
  min-width: 375px;
  width: 375px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .shop-contents-wrapper .shop-left-content {
    min-width: 320px;
    width: 320px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .shop-contents-wrapper .shop-left-content {
    min-width: 320px;
    width: 320px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .shop-contents-wrapper .shop-left-content {
    max-width: 375px;
    width: 375px;
  }
}
.shop-contents-wrapper .shop-right-contents {
  width: 100%;
}

.single-shop-left {
  padding: 35px 40px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .single-shop-left {
    padding: 15px 20px 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-shop-left {
    padding: 15px 20px 20px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-shop-left {
    padding: 15px 20px 20px;
  }
}
.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;
  line-height: 36px;
}
.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 .shop-lists .list {
  font-size: 16px;
  line-height: 26px;
  display: block;
  position: relative;
  text-align: left;
  z-index: 2;
  padding-left: 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.single-shop-left .shop-left-title .shop-left-list .shop-lists .list a {
  display: block;
  padding: 10px 0;
}
.single-shop-left .shop-left-title .shop-left-list .shop-lists .list.active::before {
  background: var(--main-color-one);
  border-color: var(--main-color-one);
}
.single-shop-left .shop-left-title .shop-left-list .shop-lists .list.active a {
  color: var(--light-color);
  font-weight: 500;
}
.single-shop-left .shop-left-title .shop-left-list .shop-lists .list:hover > a {
  color: var(--main-color-one);
}
.single-shop-left .shop-left-title .shop-left-list .shop-lists .list:hover::before {
  border-color: var(--main-color-one);
}
.single-shop-left .shop-left-title .shop-left-list .shop-lists .list.menu-item-has-children:hover::after {
  color: var(--main-color-one);
}
.single-shop-left .shop-left-title .shop-left-list .shop-lists .list::before {
  content: "";
  position: absolute;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  border: 1px solid #dddddd;
  left: 0;
  top: 17px;
  background: none;
}
.single-shop-left .shop-left-title .shop-left-list .shop-lists .list .submenu {
  display: none;
}
.single-shop-left .shop-left-title .shop-left-list .shop-lists .list .submenu .list {
  line-height: 22px;
}
.single-shop-left .shop-left-title .shop-left-list .shop-lists .list .submenu .list::before {
  top: 9px;
}
.single-shop-left .shop-left-title .shop-left-list .shop-lists .list .submenu .list a {
  padding: 5px 0;
}
.single-shop-left .shop-left-title .shop-left-list .shop-lists .list.menu-item-has-children::after {
  content: "";
  position: absolute;
  right: 0;
  top: 10px;
  font-family: "Line Awesome Free";
  font-weight: 900;
  cursor: pointer;
  z-index: -1;
}
.single-shop-left .shop-left-title .shop-left-list .shop-lists .list.menu-item-has-children.open::after {
  content: "";
}
.single-shop-left .shop-left-title .shop-left-list .shop-lists .list:last-child a {
  padding-bottom: 0;
}
.single-shop-left .shop-left-title .shop-left-list .color-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.single-shop-left .shop-left-title .shop-left-list .color-lists .list {
  position: relative;
  z-index: 1;
}
.single-shop-left .shop-left-title .shop-left-list .color-lists .list.active::before {
  content: "";
  font-family: "Line Awesome Free";
  font-weight: 900;
  position: absolute;
  color: #fff;
  font-size: 20px;
  left: 0;
  right: 0;
  text-align: center;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 200ms;
  transition: all 200ms;
}
.single-shop-left .shop-left-title .shop-left-list .color-lists .list a {
  display: block;
  height: 30px;
  width: 30px;
  background: #F83A26;
}
.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;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.single-shop-left .shop-left-title .shop-left-list .size-lists .list.active a {
  background: var(--main-color-one);
  border-color: var(--main-color-one);
  color: #fff;
}
.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: 45px;
  font-size: 14px;
  background: #fff;
  color: var(--light-color);
  border: 1px solid #dddddd;
}
.single-shop-left .shop-left-title .shop-left-list .filter-lists .list {
  position: relative;
  z-index: 2;
  display: block;
  padding-left: 20px;
}
.single-shop-left .shop-left-title .shop-left-list .filter-lists .list.active::before {
  background: var(--main-color-one);
  border-color: var(--main-color-one);
}
.single-shop-left .shop-left-title .shop-left-list .filter-lists .list a {
  font-size: 16px;
  line-height: 26px;
  color: #FFBA5C;
}
.single-shop-left .shop-left-title .shop-left-list .filter-lists .list::before {
  content: "";
  position: absolute;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  border: 1px solid #dddddd;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: none;
}
.single-shop-left .shop-left-title .shop-left-list .filter-lists .list:not(:last-child) {
  margin-bottom: 7px;
}
.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: 15px;
}
@media only screen and (max-width: 480px) {
  .single-shop-left .shop-left-title .shop-left-list .tag-lists {
    gap: 10px;
  }
}
.single-shop-left .shop-left-title .shop-left-list .tag-lists .list.active a {
  background: var(--main-color-one);
  color: #fff;
  border-color: var(--main-color-one);
}
.single-shop-left .shop-left-title .shop-left-list .tag-lists .list a {
  border: 1px solid #dddddd;
  font-size: 16px;
  color: var(--light-color);
  padding: 7px 20px;
  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 17px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-shop-left .shop-left-title .shop-left-list .tag-lists .list a {
    padding: 7px 17px;
  }
}
@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 {
  background: var(--main-color-one);
  color: #fff;
  border-color: var(--main-color-one);
}

.shop-icon {
  display: none;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .shop-icon {
    display: block;
  }
}
.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-one);
  -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: 320px) 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;
  }
}
@media only screen and (min-width: 320px) and (max-width: 991.98px) and (max-width: 480px) {
  .shop-close-main {
    max-width: 320px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 991.98px) and (max-width: 375px) {
  .shop-close-main {
    max-width: 270px;
  }
}
.shop-close-main .close-bars {
  position: absolute;
  right: -40px;
  top: 0;
  font-size: 24px;
  color: #fff;
  background: var(--main-color-one);
  -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;
  display: none;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .shop-close-main .close-bars {
    display: block;
  }
}

.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;
}

/* Shop List */
.shop-list-wrapper {
  padding: 20px;
}
.shop-list-wrapper .shop-wrapper-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;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .shop-list-wrapper .shop-wrapper-flex {
    display: block;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .shop-list-wrapper.style-02 .shop-wrapper-flex {
    display: block;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .shop-list-wrapper.style-02 .shop-wrapper-flex {
    display: block;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .shop-list-wrapper.style-02 .shop-wrapper-flex {
    display: block;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .shop-list-wrapper.style-02 .signle-shop-list .shop-list-flex {
    display: block;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .shop-list-wrapper.style-02 .signle-shop-list .shop-list-flex .shop-thumbs {
    width: 100%;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .shop-list-wrapper.style-02 .signle-shop-list .shop-list-flex .shop-thumbs img {
    width: 100%;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .shop-list-wrapper.style-02 .signle-shop-list .shop-list-flex .shop-list-contents {
    margin-top: 30px;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .shop-list-wrapper.style-02 .single-shop-cart {
    margin-top: 30px;
    text-align: left;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .shop-list-wrapper.style-02 .single-shop-cart {
    margin-top: 30px;
    text-align: left;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .shop-list-wrapper.style-02 .single-shop-cart {
    margin-top: 30px;
    text-align: left;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .shop-list-wrapper.style-02 .single-shop-cart::before {
    display: none;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .shop-list-wrapper.style-02 .single-shop-cart::before {
    display: none;
  }
}
.shop-list-wrapper.style-02 .single-shop-cart .shop-cart-flex {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.single-shop-cart {
  text-align: center;
  position: relative;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-shop-cart {
    text-align: left;
    padding-top: 20px;
  }
}
.single-shop-cart::before {
  content: "";
  position: absolute;
  height: 150%;
  left: -60px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1px;
  background: #DDD;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-shop-cart::before {
    display: none;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-shop-cart::before {
    display: none;
  }
}
.single-shop-cart .shop-cart-flex {
  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: 30px;
  margin-top: 30px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .single-shop-cart .shop-cart-flex {
    gap: 10px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-shop-cart .shop-cart-flex {
    gap: 10px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-shop-cart .shop-cart-flex {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-top: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .single-shop-cart .shop-cart-flex {
    gap: 20px;
  }
}
@media only screen and (max-width: 375px) {
  .single-shop-cart .shop-cart-flex {
    gap: 20px;
  }
}
.single-shop-cart .shop-cart-flex .btn-shop-botttom {
  font-size: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media only screen and (max-width: 480px) {
  .single-shop-cart .shop-cart-flex .btn-shop-botttom {
    gap: 10px;
  }
}
@media only screen and (max-width: 375px) {
  .single-shop-cart .shop-cart-flex .btn-shop-botttom {
    font-size: 20px;
    gap: 10px;
  }
}
.single-shop-cart .shop-cart-flex .btn-shop-botttom .icons {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.single-shop-cart .shop-cart-flex .btn-shop-botttom .icons:hover {
  color: var(--main-color-one);
}
.single-shop-cart .shop-cart-flex .btn-shop-botttom.hover-color-two .icons:hover {
  color: var(--main-color-two);
}
.single-shop-cart .shop-cart-flex .btn-shop-botttom.hover-color-three .icons:hover {
  color: var(--main-color-three);
}
.single-shop-cart .shop-cart-flex .btn-shop-botttom.hover-color-four .icons:hover {
  color: var(--main-color-four);
}

.signle-shop-list .shop-list-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .signle-shop-list .shop-list-flex {
    gap: 30px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .signle-shop-list .shop-list-flex {
    gap: 20px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .signle-shop-list .shop-list-flex {
    gap: 30px;
  }
}
@media only screen and (max-width: 767.98px) {
  .signle-shop-list .shop-list-flex {
    display: block;
  }
}
.signle-shop-list .shop-thumbs {
  height: 375px;
  width: 375px;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 767.98px) {
  .signle-shop-list .shop-thumbs {
    height: 100%;
    width: 100%;
  }
}
.signle-shop-list .shop-thumbs img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 767.98px) {
  .signle-shop-list .shop-list-contents {
    padding-top: 20px;
  }
}
.signle-shop-list .shop-list-contents .global-shop-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 25px;
}
@media only screen and (max-width: 767.98px) {
  .signle-shop-list .shop-list-contents .global-shop-list {
    margin-top: 15px;
  }
}
.signle-shop-list .shop-list-contents .global-shop-list .list .star {
  color: #FFBA5C;
}
.signle-shop-list .shop-list-contents .global-shop-list .list .shop-size {
  position: relative;
}
.signle-shop-list .shop-list-contents .global-shop-list .list:not(:last-child) .shop-size {
  padding-right: 10px;
}
.signle-shop-list .shop-list-contents .global-shop-list .list:not(:last-child) .shop-size::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #999;
  z-index: -1;
  height: 12px;
  width: 2px;
}
.signle-shop-list .shop-list-contents .global-shop-list .list:not(:first-child) .shop-size {
  padding-left: 10px;
}
.signle-shop-list .shop-list-contents .global-shop-list .list .color-list {
  display: inline-block;
  height: 15px;
  width: 15px;
  margin-left: 10px;
}
.signle-shop-list .shop-list-contents .global-shop-list .list .artificial {
  margin-left: 10px;
}

/* Shop Details Area */
.single-shop-details-wrapper {
  overflow-y: auto;
  height: 930px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .single-shop-details-wrapper {
    max-height: 800px;
    overflow-y: scroll;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .single-shop-details-wrapper {
    max-height: 700px;
    overflow-y: scroll;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-shop-details-wrapper {
    max-height: 600px;
    overflow-y: scroll;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-shop-details-wrapper {
    margin-top: 20px;
  }
}
.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: 320px) and (max-width: 991.98px) {
  .single-shop-details-wrapper .price-update-through .flash-old-prices {
    font-size: 20px !important;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .value-input-area {
    margin-top: 20px;
  }
}
.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;
  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: 320px) 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 #999;
}
.value-input-area .size-lists li.active {
  border-color: var(--main-color-one);
}
@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 .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: inline-block;
  height: 20px;
  width: 20px;
  border: 1px solid transparent;
  position: relative;
  z-index: 1;
}
.value-input-area .color-list li.active {
  height: 30px;
  width: 30px;
}
.value-input-area .color-list li.active::before {
  content: "";
  position: absolute;
  height: calc(100% + 8px);
  width: calc(100% + 8px);
  left: -4px;
  top: -4px;
  border: 1px solid #F83A26;
}
.value-input-area .color-list li.shop-color-2 {
  border-color: #30BB6F;
}
.value-input-area .color-list li.shop-color-2.active::before {
  border: 1px solid #30BB6F;
}
.value-input-area .color-list li.shop-color-3 {
  border-color: #AB47BC;
}
.value-input-area .color-list li.shop-color-3.active::before {
  border: 1px solid #AB47BC;
}
.value-input-area .color-list li.shop-color-4 {
  border-color: #FFC576;
}
.value-input-area .color-list li.shop-color-4.active::before {
  border: 1px solid #FFC576;
}
.value-input-area .color-list li.shop-color-5 {
  border-color: #040B25;
}
.value-input-area .color-list li.shop-color-5.active::before {
  border: 1px solid #040B25;
}
.value-input-area .color-list li.shop-color-6 {
  border: 1px solid #FF9800;
}
.value-input-area .color-list li.shop-color-6.active::before {
  border: 1px solid #FF9800;
}
.value-input-area .color-list li.shop-color-7 {
  border: 1px solid #FF695C;
}
.value-input-area .color-list li.shop-color-7.active::before {
  border: 1px solid #FF695C;
}

.customer-review {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .customer-review {
    margin-top: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .customer-review {
    margin-top: 20px;
  }
}
.customer-review .star-review a {
  color: #FFBA5C;
  font-size: 20px;
  line-height: 26px;
}

@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;
  gap: 20px;
}
.product-quantity {
  position: relative;
  z-index: 3;
}
.product-quantity .quantity-input {
  width: 130px;
  height: 45px;
  border: 1px solid #999;
  color: var(--light-color);
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
  text-align: center;
}
.product-quantity .substract,
.product-quantity .plus {
  color: var(--light-color);
  z-index: 9;
  cursor: pointer;
  position: absolute;
  left: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.product-quantity .substract:hover,
.product-quantity .plus:hover {
  color: var(--main-color-one);
}
.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: 30px;
}
@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 .heart-btn {
  height: 55px;
  width: 55px;
  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: 1px solid #F83A26;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.quantity-btn .heart-btn:hover {
  background: var(--main-color-one);
  color: #fff;
}
@media only screen and (max-width: 375px) {
  .quantity-btn .heart-btn {
    height: 45px;
    width: 45px;
    font-size: 24px !important;
  }
}

.shop-details-stock .stock-available {
  color: #30BB6F;
  font-weight: 500;
  line-height: 26px;
  font-size: 16px;
}
.shop-details-stock .stock-available .count-stock {
  color: var(--extra-light-color);
}
@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: 25px;
}
@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-one);
}
.shop-details-stock .size-chart-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px 30px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .shop-details-stock .size-chart-list {
    margin-top: 25px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .shop-details-stock .size-chart-list {
    margin-top: 25px;
  }
}
.shop-details-stock .size-chart-list li a {
  font-size: 16px;
  line-height: 26px;
  display: inline-block;
  border-bottom: 1px solid #999;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media only screen and (max-width: 480px) {
  .shop-details-stock .size-chart-list li a {
    font-size: 15px;
  }
}
@media only screen and (max-width: 375px) {
  .shop-details-stock .size-chart-list li a {
    font-size: 14px;
    line-height: 22px;
  }
}
.shop-details-stock .size-chart-list li a:hover {
  color: var(--main-color-one);
  border-color: var(--main-color-one);
}

.shop-details-top-slider .shop-details-thumb-wrapper {
  height: auto;
}
.shop-details-top-slider .shop-details-thumb-wrapper .shop-details-thums img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

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

.single-shop-details-wrapper {
  max-width: 585px;
}

.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: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .details-tab-wrapper .details-tab {
    gap: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .details-tab-wrapper .details-tab {
    gap: 10px;
  }
}
.details-tab-wrapper .details-tab li {
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  background: none;
  border: 1px solid #999;
  color: var(--heading-color);
  padding: 10px 35px;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
@media (min-width: 320px) 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: 5px 15px;
  }
}
.details-tab-wrapper .details-tab li.active {
  background: var(--main-color-one);
  color: #fff;
  border-color: var(--main-color-one);
}
.details-tab-wrapper .details-tab li:hover {
  background: var(--main-color-one);
  color: #fff;
  border-color: var(--main-color-one);
}
.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-details-tab .tab-description .description-para {
  font-size: 18px;
  line-height: 30px;
  color: var(--light-color);
  padding-top: 30px;
}
@media (min-width: 320px) 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-one);
  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;
}

.seller-details-box {
  border: 1px solid rgba(221, 221, 221, 0.5);
  padding: 30px;
  border-radius: 10px;
}
@media only screen and (max-width: 480px) {
  .seller-details-box {
    padding: 20px 10px;
  }
}
.seller-details-box .seller-box-list {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
}
@media only screen and (max-width: 480px) {
  .seller-details-box .seller-box-list {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
  }
}
.seller-details-box .seller-box-list .box-list {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 20px;
}
.seller-details-box .seller-box-list .box-list strong {
  display: block;
  font-size: 20px;
  font-weight: 500;
  color: var(--heading-color);
  font-family: var(--heading-font);
  line-height: 28px;
  margin-top: 5px;
}
.seller-details-box .seller-details-para {
  font-size: 18px;
  line-height: 30px;
  color: var(--light-color);
}
@media only screen and (max-width: 575.98px) {
  .seller-details-box .seller-details-para {
    font-size: 16px;
  }
}
@media only screen and (max-width: 375px) {
  .seller-details-box .seller-details-para {
    font-size: 14px;
  }
}

.shop-details-faq-contents {
  height: 650px;
  overflow-y: auto;
}
.shop-details-faq-contents .faq-contents .faq-item {
  margin-top: 0;
}
.shop-details-faq-contents .faq-contents .faq-item:last-child {
  border-bottom: 2px solid #DDD;
}
.shop-details-faq-contents .faq-contents .faq-item.open .faq-title {
  background: none;
  color: var(--heading-color);
}
.shop-details-faq-contents .faq-contents .faq-item.open .faq-title::after {
  content: "";
  color: var(--light-color);
}
.shop-details-faq-contents .faq-contents .faq-item.active .faq-panel {
  display: block;
  background: none;
  padding: 0;
}
.shop-details-faq-contents .faq-contents .faq-item:not(:first-child) {
  margin-top: 0;
}
.shop-details-faq-contents .faq-contents .faq-item .faq-title {
  font-size: 24px;
  font-weight: 500;
  border: none;
  padding: 50px 0 30px;
  border-top: 2px solid #DDD !important;
  font-family: var(--heading-font);
  color: var(--heading-color);
}
.shop-details-faq-contents .faq-contents .faq-item .faq-title::after {
  content: "";
  color: var(--light-color);
  font-size: 24px;
  right: 0;
  margin-top: 15px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .shop-details-faq-contents .faq-contents .faq-item .faq-title::after {
    margin-top: 0;
    font-size: 22px;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .shop-details-faq-contents .faq-contents .faq-item .faq-title::after {
    margin-top: 0;
    font-size: 22px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .shop-details-faq-contents .faq-contents .faq-item .faq-title::after {
    margin-top: 0;
    font-size: 20px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .shop-details-faq-contents .faq-contents .faq-item .faq-title::after {
    margin-top: 0;
    font-size: 18px;
  }
}
@media only screen and (max-width: 480px) {
  .shop-details-faq-contents .faq-contents .faq-item .faq-title::after {
    font-size: 16px;
  }
}
@media (min-width: 1600px) and (max-width: 1799.98px) {
  .shop-details-faq-contents .faq-contents .faq-item .faq-title {
    padding: 30px 0;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .shop-details-faq-contents .faq-contents .faq-item .faq-title {
    padding: 20px 0;
    font-size: 22px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .shop-details-faq-contents .faq-contents .faq-item .faq-title {
    padding: 20px 0;
    font-size: 22px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .shop-details-faq-contents .faq-contents .faq-item .faq-title {
    padding: 20px 0;
    font-size: 20px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .shop-details-faq-contents .faq-contents .faq-item .faq-title {
    padding: 20px 0;
    font-size: 18px;
  }
}
@media only screen and (max-width: 480px) {
  .shop-details-faq-contents .faq-contents .faq-item .faq-title {
    font-size: 17px;
  }
}
@media only screen and (max-width: 375px) {
  .shop-details-faq-contents .faq-contents .faq-item .faq-title {
    font-size: 16px;
  }
}
.shop-details-faq-contents .faq-contents .faq-item .faq-panel {
  padding: 0;
  background: none !important;
}
.shop-details-faq-contents .faq-contents .faq-item .faq-panel .faq-para {
  font-size: 18px;
  line-height: 30px;
  padding-bottom: 30px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .shop-details-faq-contents .faq-contents .faq-item .faq-panel .faq-para {
    font-size: 16px;
    line-height: 28px;
    padding-bottom: 20px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .shop-details-faq-contents .faq-contents .faq-item .faq-panel .faq-para {
    font-size: 16px;
    line-height: 28px;
    padding-bottom: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .shop-details-faq-contents .faq-contents .faq-item .faq-panel .faq-para {
    font-size: 16px;
    line-height: 28px;
    padding-bottom: 20px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .shop-details-faq-contents .faq-contents .faq-item .faq-panel .faq-para {
    font-size: 16px;
    line-height: 28px;
    padding-bottom: 20px;
  }
}
@media only screen and (max-width: 480px) {
  .shop-details-faq-contents .faq-contents .faq-item .faq-panel .faq-para {
    font-size: 15px;
  }
}
@media only screen and (max-width: 375px) {
  .shop-details-faq-contents .faq-contents .faq-item .faq-panel .faq-para {
    font-size: 14px;
    line-height: 26px;
  }
}
.shop-details-faq-contents .faq-contents .faq-item .faq-panel .tab-information .about-seller-flex-content {
  padding: 0 0 10px;
}
.shop-details-faq-contents .faq-contents .faq-item .faq-panel .tab-information .seller-details-box {
  border: 0;
  padding: 10px 0 30px;
}
.shop-details-faq-contents .faq-contents .faq-item .faq-panel .tab-information .seller-details-box .seller-details-para {
  font-size: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.shop-details-faq-contents .faq-contents .faq-item .faq-panel .tab-review {
  padding-bottom: 30px;
}
.shop-details-faq-contents .faq-contents .faq-item .faq-panel .tab-review .about-seller-flex-content {
  padding: 20px 0;
}
.shop-details-faq-contents .faq-contents .faq-item .faq-panel .tab-review .about-seller-flex-content:first-child {
  padding-top: 0;
}
.shop-details-faq-contents .faq-contents .faq-item .faq-panel .tab-review .about-seller-flex-content .about-seller-content .about-review-para {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* Blog Area */
.single-blog {
  overflow: hidden;
}
.single-blog.style-02 {
  padding: 20px;
}
.single-blog.style-02 .contents .blog-title {
  font-size: 28px;
  line-height: 40px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  display: -webkit-box;
}
.single-blog.style-02 .contents .blog-title:hover {
  color: var(--main-color-one);
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .single-blog.style-02 .contents .blog-title {
    font-size: 32px;
  }
}
.single-blog.style-03 .blog-image img {
  border-radius: 0;
}
.single-blog.style-03 .contents .blog-title {
  font-size: 28px;
  line-height: 36px;
}
.single-blog.style-03 .contents .blog-title:hover {
  color: var(--main-color-three);
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-blog.style-03 .contents .blog-title {
    font-size: 26px;
  }
}
@media only screen and (max-width: 375px) {
  .single-blog.style-03 .contents .blog-title {
    font-size: 24px;
  }
}
.single-blog:hover .featured-image img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.single-blog:hover .featured-image .featured-icon-list {
  visibility: visible;
  opacity: 1;
  top: 50px;
}
.single-blog .blog-image {
  position: relative;
  z-index: 2;
  overflow: hidden;
  display: block;
}
.single-blog .blog-image img {
  border-radius: 20px;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.single-blog .contents {
  padding-top: 15px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-blog .contents {
    padding-top: 10px;
  }
}
.single-blog .contents .category {
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 20px;
}
.single-blog .contents .category:not(:first-child)::before {
  content: ",";
}
.single-blog .contents .common-title:hover {
  color: var(--main-color-one);
}
.single-blog .contents .common-title.hover-color-two:hover {
  color: var(--main-color-two);
}
.single-blog .contents .common-title.hover-color-three:hover {
  color: var(--main-color-three);
}
.single-blog .contents .common-title.hover-color-four:hover {
  color: var(--main-color-four);
}
.single-blog .contents .blog-grid-title {
  font-size: 28px;
  line-height: 40px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  display: -webkit-box;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .single-blog .contents .blog-grid-title {
    font-size: 30px !important;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .single-blog .contents .blog-grid-title {
    font-size: 28px !important;
    line-height: 36px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-blog .contents .blog-grid-title {
    font-size: 26px !important;
    line-height: 36px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-blog .contents .blog-grid-title {
    font-size: 24px !important;
    line-height: 32px;
  }
}
@media only screen and (max-width: 375px) {
  .single-blog .contents .blog-grid-title {
    font-size: 22px !important;
  }
}
.single-blog .contents .blog-grid-title:hover {
  color: var(--main-color-one);
}
.single-blog .contents .blog-grid-title.hover-color-two:hover {
  color: var(--main-color-two);
}
.single-blog .contents .blog-grid-title.hover-color-three:hover {
  color: var(--main-color-three);
}
.single-blog .contents .blog-grid-title.hover-color-four:hover {
  color: var(--main-color-four);
}
.single-blog .contents .blog-para {
  line-height: 30px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  display: -webkit-box;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-blog .contents .blog-para {
    font-size: 16px !important;
  }
}
@media only screen and (max-width: 375px) {
  .single-blog .contents .blog-para {
    font-size: 15px !important;
    -webkit-line-clamp: 3;
  }
}
.single-blog .contents .dates {
  font-size: 16px;
  font-weight: 500;
  display: block;
}
@media only screen and (max-width: 480px) {
  .single-blog .contents .dates {
    font-size: 15px;
  }
}
@media only screen and (max-width: 375px) {
  .single-blog .contents .dates {
    font-size: 14px;
  }
}

/* Blog Details area */
.shop-right-contents.style-02 .single-blog-details blockquote {
  padding: 25px 30px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .shop-right-contents.style-02 .single-blog-details blockquote {
    padding: 25px 15px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .shop-right-contents.style-02 .single-blog-details blockquote {
    padding: 20px 10px;
  }
}
@media only screen and (max-width: 375px) {
  .shop-right-contents.style-02 .single-blog-details blockquote {
    padding: 20px 5px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .shop-right-contents.style-02 .single-blog-details blockquote .content .blackquote-title {
    font-size: 26px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .shop-right-contents.style-02 .single-blog-details blockquote .content .blackquote-title::before {
    font-size: 50px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .shop-right-contents.style-02 .single-blog-details .blog-details-thumb-flex {
    display: block;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .shop-right-contents.style-02 .single-blog-details .blog-details-thumb-flex {
    display: block;
  }
}
.shop-right-contents.style-02 .single-blog-details .blog-details-thumb-flex .thumb {
  min-width: 475px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .shop-right-contents.style-02 .single-blog-details .blog-details-thumb-flex .thumb {
    min-width: 100%;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .shop-right-contents.style-02 .single-blog-details .blog-details-thumb-flex .thumb {
    min-width: 100%;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .shop-right-contents.style-02 .single-blog-details .blog-details-thumb-flex .thumb {
    min-width: 100%;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .shop-right-contents.style-02 .single-blog-details .blog-details-thumb-flex .blog-thumb-content .blog-details-para:first-child {
    margin-top: 30px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .shop-right-contents.style-02 .single-blog-details .blog-details-thumb-flex .blog-thumb-content .blog-details-para:first-child {
    margin-top: 30px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .shop-right-contents.style-02 .details-tag-area .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-line-pack: start;
        align-content: flex-start;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .shop-right-contents.style-02 .details-tag-area .row .col-lg-6 {
    max-width: 100%;
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .shop-right-contents.style-02 .social-share ul {
    gap: 10px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .shop-right-contents.style-02 .tag-list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .shop-right-contents.style-02 .tag-list ul {
    gap: 10px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .shop-right-contents.style-02 .related-area .row .col-lg-6 {
    max-width: 100%;
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
}

.single-blog-details:not(:first-child) {
  margin-top: 35px;
}
.single-blog-details .blog-details-title {
  font-size: 36px;
  line-height: 48px;
  margin: -6px 0 0;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-blog-details .blog-details-title {
    font-size: 34px;
  }
}
.single-blog-details .blog-details-flex {
  gap: 40px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-blog-details .blog-details-flex {
    gap: 30px;
  }
}
@media only screen and (max-width: 480px) {
  .single-blog-details .blog-details-flex {
    gap: 20px;
  }
}
.single-blog-details .blog-details-flex .dates {
  font-size: 18px;
  line-height: 30px;
}
.single-blog-details .blog-details-flex .dates i {
  color: var(--main-color-one);
}
.single-blog-details .blog-details-para {
  font-size: 18px;
  line-height: 32px;
  font-weight: 400;
  margin-top: 30px;
  color: var(--light-color);
  -webkit-line-clamp: unset;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .single-blog-details .blog-details-para {
    font-size: 17px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-blog-details .blog-details-para {
    font-size: 16px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-blog-details .blog-details-para {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767.98px) {
  .single-blog-details .blog-details-para {
    font-size: 15px;
    -webkit-line-clamp: 4;
  }
}
@media only screen and (max-width: 375px) {
  .single-blog-details .blog-details-para {
    font-size: 14px;
  }
}
.single-blog-details blockquote {
  background: #FFF8F0;
  padding: 25px 50px;
  margin: 50px auto 20px;
  max-width: 1290px;
  display: inline-block;
  border-bottom: 5px solid #F83A26;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .single-blog-details blockquote {
    padding: 25px 70px 25px 70px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-blog-details blockquote {
    padding: 20px 30px 20px 30px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-blog-details blockquote {
    padding: 20px 20px 20px 20px;
  }
}
@media only screen and (max-width: 480px) {
  .single-blog-details blockquote {
    padding: 20px 10px 20px 10px;
  }
}
.single-blog-details blockquote .content .blackquote-title {
  font-size: 36px;
  font-weight: 400;
  position: relative;
  line-height: 43px;
  color: var(--light-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .single-blog-details blockquote .content .blackquote-title {
    font-size: 32px;
    gap: 10px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-blog-details blockquote .content .blackquote-title {
    font-size: 29px;
    gap: 10px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-blog-details blockquote .content .blackquote-title {
    font-size: 28px;
    line-height: 36px;
    gap: 10px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media only screen and (max-width: 767.98px) {
  .single-blog-details blockquote .content .blackquote-title {
    font-size: 26px;
  }
}
@media only screen and (max-width: 480px) {
  .single-blog-details blockquote .content .blackquote-title {
    font-size: 25px;
  }
}
@media only screen and (max-width: 375px) {
  .single-blog-details blockquote .content .blackquote-title {
    font-size: 22px;
  }
}
.single-blog-details blockquote .content .blackquote-title::before {
  font-family: "Line Awesome Free";
  font-weight: 900;
  content: "";
  color: var(--main-color-one);
  font-size: 90px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .single-blog-details blockquote .content .blackquote-title::before {
    font-size: 80px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-blog-details blockquote .content .blackquote-title::before {
    font-size: 60px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-blog-details blockquote .content .blackquote-title::before {
    font-size: 40px;
  }
}

.blog-details-thumb-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .blog-details-thumb-flex {
    gap: 30px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .blog-details-thumb-flex {
    gap: 30px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .blog-details-thumb-flex {
    gap: 30px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .blog-details-thumb-flex {
    display: block;
  }
}
.blog-details-thumb-flex .thumb {
  min-width: 880px;
}
@media (min-width: 1600px) and (max-width: 1799.98px) {
  .blog-details-thumb-flex .thumb {
    min-width: 750px;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .blog-details-thumb-flex .thumb {
    min-width: 600px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .blog-details-thumb-flex .thumb {
    min-width: 500px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .blog-details-thumb-flex .thumb {
    min-width: 500px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .blog-details-thumb-flex .thumb {
    margin-bottom: 30px;
    min-width: 100%;
    height: auto;
  }
}
@media only screen and (max-width: 575.98px) {
  .blog-details-thumb-flex .thumb {
    min-width: 100%;
    height: auto;
  }
}
.blog-details-thumb-flex .thumb img {
  width: 100%;
}

@media (min-width: 1400px) and (max-width: 1599.98px) {
  .blog-thumb-content .blog-details-para {
    -webkit-line-clamp: 4;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .blog-thumb-content .blog-details-para {
    -webkit-line-clamp: 3;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .blog-thumb-content .blog-details-para {
    -webkit-line-clamp: 3;
  }
}
.blog-thumb-content .blog-details-para:first-child {
  margin-top: 0;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .blog-thumb-content .blog-details-para:first-child {
    margin-top: 30px;
  }
}

/* Comment area */
.details-comment-content .single-commetns {
  width: 100%;
  margin-top: 30px;
}
.details-comment-content .single-commetns .comment-label {
  font-size: 16px;
  font-weight: 600;
  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.5);
  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(248, 58, 38, 0.1);
  box-shadow: 0 0 18px rgba(248, 58, 38, 0.1);
  border-color: rgba(248, 58, 38, 0.3);
}
.details-comment-content .single-commetns .form--message {
  padding: 20px 20px;
  height: 160px;
}
.details-comment-content button {
  font-size: 18px;
  font-weight: 500;
  line-height: 34px;
  background: var(--main-color-one);
  color: #fff;
  border: 0;
  outline: none;
  border-radius: 5px;
  padding: 15px 35px;
  cursor: pointer;
  margin-top: 35px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .details-comment-content button {
    font-size: 16px;
    padding: 10px 30px;
  }
}

.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: 320px) 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: 320px) 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 .title {
  font-size: 20px;
  font-weight: 600;
  line-height: 20px;
}
.comment-list .blog-details-flex-content .blog-details-content .details-review-para {
  font-size: 18px;
  font-weight: 400;
  color: var(--light-color);
  margin-top: 10px;
  line-height: 30px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .comment-list .blog-details-flex-content .blog-details-content .details-review-para {
    font-size: 16px;
  }
}
@media only screen and (max-width: 575.98px) {
  .comment-list .blog-details-flex-content .blog-details-content .details-review-para {
    font-size: 15px;
  }
}
@media only screen and (max-width: 375px) {
  .comment-list .blog-details-flex-content .blog-details-content .details-review-para {
    font-size: 14px;
  }
}
.comment-list .blog-details-flex-content .blog-details-content .review-date {
  margin-top: 10px;
  display: block;
}
.comment-list .blog-details-flex-content .blog-details-content .btn-replay {
  font-size: 16px;
  font-weight: 500;
  margin-top: 15px;
  display: inline-block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.comment-list .blog-details-flex-content .blog-details-content .btn-replay:hover {
  color: var(--main-color-one);
}

/* Details Tag area */
.social-share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media only screen and (max-width: 480px) {
  .social-share {
    display: block;
  }
}
.social-share .share-tiitle {
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
}
.social-share ul {
  padding: 0;
  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: 15px;
}
.social-share ul li 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: 18px;
  color: #fff;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .social-share ul li a {
    height: 35px;
    width: 35px;
    font-size: 16px;
  }
}

.tag-border {
  border-bottom: 2px solid #DDD;
  padding-bottom: 60px;
}

.tag-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: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .tag-list {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
.tag-list .tag-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
}
.tag-list ul {
  padding: 0;
  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: 15px;
}
.tag-list ul li a {
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  padding: 7px 18px;
  background: var(--main-color-one);
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .tag-list ul li a {
    padding: 7px 20px;
  }
}
@media only screen and (max-width: 480px) {
  .tag-list ul li a {
    padding: 5px 15px;
  }
}
.tag-list ul li a:hover {
  background: var(--main-color-one);
  color: #fff;
}
.tag-list ul li a.bg-color-two {
  background: var(--main-color-two);
}
.tag-list ul li a.bg-color-three {
  background: var(--main-color-three);
}
.tag-list ul li a.bg-color-four {
  background: var(--main-color-four);
}

/* Contact */
.contact-map iframe {
  width: 100%;
  height: 600px;
  border: 0;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .contact-map iframe {
    height: 400px;
  }
}
@media only screen and (max-width: 480px) {
  .contact-map iframe {
    height: 300px;
  }
}
@media only screen and (max-width: 375px) {
  .contact-map iframe {
    height: 250px;
  }
}

.contact-title {
  font-size: 36px;
  line-height: 43px;
  color: var(--heading-color);
  font-weight: 500;
  font-family: var(--heading-font);
  margin: -5px 0 0;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .contact-title {
    font-size: 32px;
    line-height: 38px;
  }
}
@media only screen and (max-width: 480px) {
  .contact-title {
    font-size: 28px;
    line-height: 34px;
  }
}
@media only screen and (max-width: 375px) {
  .contact-title {
    font-size: 26px;
    line-height: 30px;
  }
}

.contacts-content {
  padding: 50px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .contacts-content {
    padding: 30px 30px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .contacts-content {
    padding: 30px 30px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .contacts-content {
    padding: 30px 30px;
  }
}
@media only screen and (max-width: 575.98px) {
  .contacts-content {
    padding: 30px 20px;
  }
}
.contacts-content .single-contact-item .item-title {
  font-size: 24px;
  line-height: 40px;
  color: var(--heading-color);
  font-weight: 500;
  display: block;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .contacts-content .single-contact-item .item-title {
    font-size: 22px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .contacts-content .single-contact-item .item-title {
    font-size: 22px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .contacts-content .single-contact-item .item-title {
    font-size: 20px;
  }
}
@media only screen and (max-width: 480px) {
  .contacts-content .single-contact-item .item-title {
    font-size: 18px;
  }
}
@media only screen and (max-width: 375px) {
  .contacts-content .single-contact-item .item-title {
    font-size: 16px;
  }
}
.contacts-content .single-contact-item .item-para {
  font-size: 20px;
  line-height: 40px;
  color: var(--extra-light-color);
  -webkit-transition: all 200ms;
  transition: all 200ms;
}
.contacts-content .single-contact-item .item-para:hover {
  color: var(--main-color-one);
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .contacts-content .single-contact-item .item-para {
    font-size: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .contacts-content .single-contact-item .item-para {
    font-size: 20px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .contacts-content .single-contact-item .item-para {
    font-size: 18px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 480px) {
  .contacts-content .single-contact-item .item-para {
    font-size: 16px;
    line-height: 28px;
  }
}
@media only screen and (max-width: 375px) {
  .contacts-content .single-contact-item .item-para {
    font-size: 15px;
  }
}

.contact-form {
  padding: 0 50px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .contact-form {
    padding: 0;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .contact-form {
    padding: 0;
  }
}

.input-flex-item {
  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: 30px;
}
@media only screen and (max-width: 480px) {
  .input-flex-item {
    display: block;
  }
}

.single-input .label-title {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
  line-height: 28px;
  color: var(--heading-color);
}
.single-input .form--control {
  height: 60px;
  border: 1px solid #DDD;
  color: var(--extra-light-color);
  font-size: 16px;
  padding: 15px 20px;
}
.single-input .form--control::-webkit-input-placeholder {
  color: var(--extra-light-color);
}
.single-input .form--control::-moz-placeholder {
  color: var(--extra-light-color);
}
.single-input .form--control:-ms-input-placeholder {
  color: var(--extra-light-color);
}
.single-input .form--control::-ms-input-placeholder {
  color: var(--extra-light-color);
}
.single-input .form--control::placeholder {
  color: var(--extra-light-color);
}
.single-input .form--control:focus {
  -webkit-box-shadow: 0 0 5px rgba(248, 58, 38, 0.1);
          box-shadow: 0 0 5px rgba(248, 58, 38, 0.1);
}
.single-input .form--control.textarea-form {
  padding: 15px 20px;
  height: 165px;
}

/* Cart  */
.table-list-content.style-02 {
  max-width: 1230px;
  margin: 0 auto;
}
.table-list-content .custom--table thead.head-border {
  border-bottom: 1px solid #DDD;
}
.table-list-content .custom--table thead tr th {
  padding: 0 0 20px 0;
}
.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 #DDD;
  position: relative;
  z-index: 1;
}
.table-list-content .custom--table tbody tr td .close-table-cart {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  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-one);
  -webkit-transform: translateY(-50%) scale(1.3);
          transform: translateY(-50%) scale(1.3);
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .table-list-content .custom--table tbody tr td .close-table-cart {
    top: 10px;
    right: auto;
    left: 10px;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    background: var(--main-color-one);
    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: 35px;
    width: 35px;
  }
  .table-list-content .custom--table tbody tr td .close-table-cart:hover {
    -webkit-transform: translateY(0) scale(1.3);
            transform: translateY(0) scale(1.3);
    background: #fff;
    color: var(--main-color-one);
  }
}
.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;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .table-list-content .custom--table tbody tr td .product-name-table {
    display: block;
  }
}
.table-list-content .custom--table tbody tr td .product-name-table .thumbs {
  height: 170px;
  width: 150px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .table-list-content .custom--table tbody tr td .product-name-table .thumbs {
    margin-left: auto;
    height: 120px;
    width: 120px;
  }
}
.table-list-content .custom--table tbody tr td .product-name-table .carts-contents {
  margin-left: 40px;
}
@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: 320px) and (max-width: 991.98px) {
  .table-list-content .custom--table tbody tr td .product-name-table .carts-contents {
    margin-left: 0px;
  }
}
@media (min-width: 320px) 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.color-one {
  color: var(--main-color-one);
}
.table-list-content .custom--table tbody tr td.color-two {
  color: var(--main-color-two);
}
.table-list-content .custom--table tbody tr td.color-three {
  color: var(--main-color-three);
}
.table-list-content .custom--table tbody tr td.color-four {
  color: var(--main-color-four);
}
.table-list-content .custom--table tbody tr td .product-quantity {
  position: relative;
  z-index: 2;
  width: 130px;
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .table-list-content .custom--table tbody tr td .product-quantity {
    margin: 0;
    margin-left: auto;
  }
}
.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;
}

.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 #999;
}
.table-update-btn .btn-table:hover {
  background: var(--main-color-one);
  color: #fff;
  border-color: var(--main-color-one);
}

.coupon-wrapper {
  padding: 50px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .coupon-wrapper {
    padding: 35px 35px 40px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .coupon-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .coupon-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .coupon-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 480px) {
  .coupon-wrapper {
    padding: 30px;
  }
}
@media only screen and (max-width: 375px) {
  .coupon-wrapper {
    padding: 20px 10px;
  }
}

.coupon-border {
  border-top: 1px solid #DDD;
}

.coupon-form .single-input .form--control {
  background: none;
}
.flex-coupon {
  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;
}
.coupon-flex-list .list {
  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: 15px 0;
  color: var(--light-color);
  font-size: 18px;
}

/* Error Area */
.single-title {
  font-size: 46px;
  font-weight: 500;
  line-height: 65px;
  margin: -9px 0 0;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-title {
    font-size: 40px;
    line-height: 50px;
  }
}
@media only screen and (max-width: 575.98px) {
  .single-title {
    font-size: 35px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 375px) {
  .single-title {
    font-size: 30px;
    line-height: 32px;
  }
}

.error-thumb img {
  margin: 0 auto;
}

/* Order Tracking */
.tracking-wrapper {
  max-width: 450px;
  margin: 0 auto;
}

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

.single-input {
  width: 100%;
}

.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;
}

.or-contents {
  text-align: center;
  position: relative;
  z-index: 2;
}
.or-contents::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  background: #DDD;
  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 #DDD;
  text-align: center;
}
/* 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: 320px) 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: 320px) 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: 320px) 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: 320px) 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: 320px) 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: 320px) 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);
}

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

.shop-detail-cart-content {
  max-width: 1172px;
  margin: 0 auto;
  position: fixed;
  top: 50%;
  -webkit-transform: translateY(-50%) scale(0.6);
          transform: translateY(-50%) scale(0.6);
  left: 0;
  right: 0;
  background: #fff;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 400ms;
  transition: all 400ms;
}
.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: 320px) and (max-width: 991.98px) {
  .shop-detail-cart-content.active {
    top: 0;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
}
.shop-detail-cart-content .shop-details-cart-images {
  -webkit-box-flex: 590px;
      -ms-flex: 590px;
          flex: 590px;
  max-width: 590px;
  height: 750px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .shop-detail-cart-content .shop-details-cart-images {
    max-width: 590px;
    height: 690px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .shop-detail-cart-content .shop-details-cart-images {
    max-width: 100%;
    height: 500px;
  }
}
@media only screen and (max-width: 480px) {
  .shop-detail-cart-content .shop-details-cart-images {
    height: 400px;
  }
}
@media only screen and (max-width: 375px) {
  .shop-detail-cart-content .shop-details-cart-images {
    height: 300px;
  }
}
.shop-detail-cart-content .shop-details-thumb-wrapper {
  min-height: 750px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .shop-detail-cart-content .shop-details-thumb-wrapper {
    min-height: 690px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .shop-detail-cart-content .shop-details-thumb-wrapper {
    min-height: 500px;
  }
}
@media only screen and (max-width: 480px) {
  .shop-detail-cart-content .shop-details-thumb-wrapper {
    min-height: 400px;
  }
}
@media only screen and (max-width: 375px) {
  .shop-detail-cart-content .shop-details-thumb-wrapper {
    min-height: 300px;
  }
}
.shop-detail-cart-content .shop-details-cart-contents {
  overflow-y: auto;
  max-height: 700px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .shop-detail-cart-content .shop-details-cart-contents {
    max-height: 690px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .shop-detail-cart-content .shop-details-cart-contents {
    padding: 0 30px;
  }
}
.shop-detail-cart-content .single-shop-details-wrapper {
  max-width: 100%;
  max-height: 700px;
  overflow-y: auto;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .shop-detail-cart-content .single-shop-details-wrapper {
    margin-top: 20px;
  }
}
.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: 320px) 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;
  }
}
.shop-details-popup-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 50px;
  background: #fff;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .shop-details-popup-flex {
    display: block;
    height: 100vh;
    overflow-y: scroll;
  }
}

/* Checkout */
.checkout-title i {
  color: var(--main-color-one);
}

.click-open-form:hover {
  color: var(--main-color-one);
  font-weight: 500;
}

.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-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 {
  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;
}
.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-one);
  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-one);
}

.checkout-form .input-flex-item .single-input .form--message {
  height: 120px;
}
.checkout-form .checkbox-inlines .checkbox-label {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 500;
}

.checkout-order-summery {
  padding: 50px;
}
@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-flex-list .list {
  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: 15px 0;
  color: var(--light-color);
  font-size: 18px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .checkout-flex-list .list {
    font-size: 16px;
    padding: 10px 0;
  }
}
@media only screen and (max-width: 375px) {
  .checkout-flex-list .list {
    font-size: 15px;
    padding: 10px 0;
  }
}
.checkout-flex-list .list span.product-qnt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.checkout-flex-list .list span .product-cross {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}
.checkout-flex-list .list span .product-cross::after {
  font-family: "Line Awesome Free";
  font-weight: 900;
  content: "";
  position: absolute;
  right: -20px;
}
.checkout-flex-list .list .input-values {
  width: 40px;
  background: none;
  border: none;
  outline: none;
}

/* Compare Area */
.single-compare .compare-contents .compare-review-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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 5px;
}
.single-compare .compare-contents .compare-review-list .list {
  margin: 2px;
  font-size: 20px;
}
.single-compare .compare-contents .common-price-title-two {
  margin-top: 15px;
}
@media only screen and (max-width: 480px) {
  .single-compare .compare-contents .compare-content-list {
    margin-top: 20px;
  }
}
.single-compare .compare-contents .compare-content-list .list {
  border-bottom: 1px solid #DDD;
  padding: 20px 0;
  font-size: 18px;
  line-height: 32px;
  color: var(--light-color);
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-compare .compare-contents .compare-content-list .list {
    padding: 15px 0;
  }
}
@media only screen and (max-width: 575.98px) {
  .single-compare .compare-contents .compare-content-list .list {
    font-size: 16px;
  }
}
@media only screen and (max-width: 480px) {
  .single-compare .compare-contents .compare-content-list .list {
    font-size: 15px;
    padding: 10px 0;
  }
}
.single-compare .compare-contents .compare-content-list .list .common-para {
  color: var(--light-color);
}
.single-compare .compare-contents .btn-remove {
  border-bottom: 2px solid var(--light-color);
  color: var(--light-color);
  padding-bottom: 2px;
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
}
@media only screen and (max-width: 575.98px) {
  .single-compare .compare-contents .btn-remove {
    font-size: 16px;
  }
}

/* Seller Badge Profile  */
.profile-single-badge .profile-badge-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media only screen and (max-width: 575.98px) {
  .profile-single-badge .profile-badge-flex {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.profile-single-badge .profile-badge-flex .author-thumb {
  margin-right: 30px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .profile-single-badge .profile-badge-flex .author-thumb {
    margin-right: 20px;
    height: 150px;
    width: 150px;
  }
}
@media only screen and (max-width: 480px) {
  .profile-single-badge .profile-badge-flex .author-thumb {
    height: 120px;
    width: 120px;
  }
}
@media only screen and (max-width: 375px) {
  .profile-single-badge .profile-badge-flex .author-thumb {
    height: 100px;
    width: 100px;
  }
}
.profile-single-badge .profile-badge-flex .author-thumb img {
  border-radius: 50%;
}
@media only screen and (max-width: 575.98px) {
  .profile-single-badge .profile-badge-flex .author-thumb img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.profile-single-badge .profile-badge-flex .profile-badge-contetns .profiles-review .icon {
  color: var(--main-color-one);
}
.profile-single-badge .profile-badge-flex .profile-badge-contetns .profiles-review .reviews {
  color: var(--light-color);
}

@media only screen and (max-width: 575.98px) {
  .badge-profile-list {
    margin-top: 30px;
  }
}
.badge-profile-list .lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
@media only screen and (max-width: 575.98px) {
  .badge-profile-list .lists {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.badge-profile-list .lists:not(:last-child) {
  margin-bottom: 25px;
}
.badge-profile-list .lists .list-span {
  display: block;
  color: var(--extra-light-color);
  font-size: 16px;
  line-height: 26px;
}
@media only screen and (max-width: 480px) {
  .badge-profile-list .lists .list-span {
    font-size: 14px;
  }
}
.badge-profile-list .lists .list-strong {
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  color: var(--heading-color);
  max-width: 390px;
}
@media only screen and (max-width: 480px) {
  .badge-profile-list .lists .list-strong {
    font-size: 14px;
  }
}

.order-completed {
  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;
  gap: 20px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .order-completed {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-top: 30px;
  }
}
@media only screen and (max-width: 575.98px) {
  .order-completed {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.order-completed i {
  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: 41px;
  width: 41px;
  background: #30BB6F;
  color: #fff;
  font-size: 24px;
  border-radius: 50%;
}

/* Seller Profile area */
.dashboard-address-details {
  width: 100%;
}
.dashboard-address-details .details-list {
  padding: 0;
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
}
@media only screen and (max-width: 575.98px) {
  .dashboard-address-details .details-list {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
  }
}
.dashboard-address-details .details-list.column-count-one {
  -webkit-column-count: 1;
  -moz-column-count: 1;
  column-count: 1;
}
.dashboard-address-details .details-list.column-count-one .lists {
  padding-top: 25px;
}
.dashboard-address-details .details-list.column-count-one .lists .list-strong {
  font-size: 16px;
  font-weight: 400;
  line-height: 34px;
  color: var(--heading-color);
  max-width: 680px;
}
@media only screen and (max-width: 480px) {
  .dashboard-address-details .details-list.column-count-one .lists .list-strong {
    font-size: 15px;
    line-height: 30px;
  }
}
.dashboard-address-details .details-list.column-count-one .lists .list-strong b {
  display: block;
  font-weight: 400;
  padding-top: 30px;
}
.dashboard-address-details .details-list .lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.dashboard-address-details .details-list .lists:not(:last-child) {
  margin-bottom: 25px;
}
.dashboard-address-details .details-list .lists .list-span {
  display: block;
  color: var(--extra-light-color);
  font-size: 16px;
  line-height: 26px;
  min-width: 140px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .dashboard-address-details .details-list .lists .list-span {
    min-width: 120px;
  }
}
@media only screen and (max-width: 767.98px) {
  .dashboard-address-details .details-list .lists .list-span {
    min-width: 80px;
  }
}
@media only screen and (max-width: 480px) {
  .dashboard-address-details .details-list .lists .list-span {
    font-size: 14px;
  }
}
.dashboard-address-details .details-list .lists .list-strong {
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  color: var(--heading-color);
  max-width: 390px;
}
@media only screen and (max-width: 480px) {
  .dashboard-address-details .details-list .lists .list-strong {
    font-size: 14px;
  }
}

.seller-dashboard-list {
  padding: 0;
}
.seller-dashboard-list .list a {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  padding: 17px 25px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .seller-dashboard-list .list a {
    font-size: 15px;
    gap: 10px;
    padding: 15px 10px;
    border-radius: 5px;
  }
}
.seller-dashboard-list .list:not(:last-child) a {
  margin-bottom: 10px;
}
.seller-dashboard-list .list.active a {
  background: var(--main-color-one);
  font-weight: 500;
  color: #fff;
}
.seller-dashboard-list .list:hover a {
  background: var(--main-color-one);
  font-weight: 500;
  color: #fff;
}

.seller-profile-details-wrapper .seller-profile-edit-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;
}

.title-seller {
  font-size: 28px;
  line-height: 36px;
  font-weight: 500;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .title-seller {
    font-size: 26px;
  }
}
@media only screen and (max-width: 480px) {
  .title-seller {
    font-size: 24px;
  }
}
@media only screen and (max-width: 375px) {
  .title-seller {
    font-size: 22px;
  }
}

/* Seller Edit Profile  */
.dashboard-profile-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 50px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .dashboard-profile-flex {
    display: block;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .dashboard-profile-flex {
    display: block;
  }
}
.dashboard-profile-flex .thumbs {
  height: 200px;
  min-width: 200px;
  position: relative;
  z-index: 1;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .dashboard-profile-flex .thumbs {
    width: 220px;
    margin-bottom: 30px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .dashboard-profile-flex .thumbs {
    width: 220px;
    margin-bottom: 30px;
  }
}
.dashboard-profile-flex .thumbs img {
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.dashboard-profile-flex .thumbs .edit-thumb {
  position: absolute;
  left: 150px;
  bottom: 0px;
  z-index: 9;
}
.dashboard-profile-flex .thumbs .edit-thumb i {
  color: #fff;
  background: var(--main-color-three);
  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: 50%;
  height: 40px;
  width: 40px;
  font-size: 20px;
}

.single-dashboard-input {
  display: inline-block;
  width: 100%;
}
.single-dashboard-input .single-info-input .info-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 15px;
}
.single-dashboard-input .single-info-input .form--control {
  height: 60px;
  padding: 0 20px;
  color: var(--light-color);
}
.single-dashboard-input .single-info-input .form--control::-webkit-input-placeholder {
  color: var(--light-color);
}
.single-dashboard-input .single-info-input .form--control::-moz-placeholder {
  color: var(--light-color);
}
.single-dashboard-input .single-info-input .form--control:-ms-input-placeholder {
  color: var(--light-color);
}
.single-dashboard-input .single-info-input .form--control::-ms-input-placeholder {
  color: var(--light-color);
}
.single-dashboard-input .single-info-input .form--control::placeholder {
  color: var(--light-color);
}
.single-dashboard-input .single-info-input .nice-select {
  height: 60px;
  line-height: 60px;
}

/* Seller Order Status  */
@media only screen and (max-width: 575.98px) {
  .seller-order-status-wrapper .single-seller-status .title {
    text-align: center;
  }
}

.single-seller-status {
  padding: 30px;
  border-radius: 10px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .single-seller-status {
    padding: 20px 20px;
  }
}
@media only screen and (max-width: 767.98px) {
  .single-seller-status {
    padding: 20px 10px;
  }
}
.single-seller-status .title {
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
}

.seller-status-flex-content {
  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 only screen and (max-width: 575.98px) {
  .seller-status-flex-content {
    display: block;
  }
}
@media only screen and (max-width: 575.98px) {
  .seller-status-flex-content .status-flex-single {
    text-align: center;
  }
}
@media only screen and (max-width: 575.98px) {
  .seller-status-flex-content .status-flex-single:not(:last-child) {
    margin-bottom: 20px;
  }
}
.seller-status-flex-content .status-flex-single .price-title {
  font-size: 35px;
  line-height: 55px;
  font-weight: 700;
  margin: 0;
}
.seller-status-flex-content .status-flex-single .price-title.color-3 {
  color: var(--main-color-three);
}
.seller-status-flex-content .status-flex-single .date-titles {
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
}
.seller-status-flex-content .status-flex-single .checkbox-inlines {
  margin-top: 20px;
}
@media only screen and (max-width: 575.98px) {
  .seller-status-flex-content .status-flex-single .checkbox-inlines {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 5px;
  }
}
.seller-status-flex-content .status-flex-single .checkbox-inlines .checkbox-label {
  font-size: 16px;
  line-height: 28px;
  color: var(--light-color);
  margin: 0;
  font-weight: 400;
}
.seller-status-flex-content .status-flex-single .order-titles {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
}
.seller-status-flex-content .status-flex-single .reviews {
  display: inline-block;
  color: var(--main-color-one);
  font-size: 20px;
}
.seller-status-flex-content .status-flex-single .seller-status-icons {
  text-align: center;
  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: 5px;
}
.seller-status-flex-content .status-flex-single .seller-status-icons .icon {
  text-align: center;
  padding: 0 5px;
  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;
  height: 40px;
  width: 40px;
  border: 1px solid #DDD;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.seller-status-flex-content .status-flex-single .seller-status-icons .icon:hover {
  background: var(--main-color-one);
  color: #fff;
}
.icon.color-1 {
  color: var(--main-color-one);
}
.icon.color-2 {
  color: var(--main-color-two);
}
.icon.color-3 {
  color: var(--main-color-three);
}
.icon.color-4 {
  color: var(--main-color-four);
}

/* Seller Responsive Dashboard Close */
@media (min-width: 320px) and (max-width: 991.98px) {
  .dashboard-close {
    background: #fff;
    position: relative;
    z-index: 1;
    position: absolute;
    left: -100%;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    z-index: 99;
    width: 200px;
    height: 100vh;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
  }
  .dashboard-close.active {
    visibility: visible;
    opacity: 1;
    left: 0;
  }
}
.dashboard-close .close-bars {
  position: absolute;
  right: -50px;
  top: 0;
  font-size: 30px;
  color: #fff;
  background: var(--main-color-one);
  -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: 50px;
  width: 50px;
  -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;
  border-radius: 5px;
  display: none;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .dashboard-close .close-bars {
    display: block;
  }
}

.dashboard-icon {
  display: none;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .dashboard-icon {
    display: block;
  }
}
.dashboard-icon .sidebar-icon {
  font-size: 30px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 50px;
  width: 50px;
  -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-one);
  -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;
  border-radius: 5px;
  color: #fff;
}

/* Oreder Completed  */
.order-completed-wrapper {
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .order-completed-wrapper .order-completed-icon {
    height: 150px;
    width: 150px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 480px) {
  .order-completed-wrapper .order-completed-icon {
    height: 120px;
    width: 120px;
  }
}
@media only screen and (max-width: 375px) {
  .order-completed-wrapper .order-completed-icon {
    height: 100px;
    width: 100px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .order-completed-wrapper .order-complete-title {
    margin-top: 10px;
  }
}

.order-complete-contents {
  padding: 40px 70px;
  background: #fff;
  -webkit-box-shadow: 0 0 20px rgba(221, 221, 221, 0.3);
          box-shadow: 0 0 20px rgba(221, 221, 221, 0.3);
  max-width: 1000px;
  margin: 80px auto 0;
  text-align: left;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .order-complete-contents {
    padding: 0px 30px 30px;
    margin: 60px auto 0;
  }
}
@media only screen and (max-width: 480px) {
  .order-complete-contents {
    padding: 0 20px 20px;
  }
}
@media only screen and (max-width: 375px) {
  .order-complete-contents {
    padding: 0 10px 20px;
  }
}

.single-complete-orders .status-flex-single .details-list .lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 15px;
}
.single-complete-orders .status-flex-single .details-list .lists:not(:last-child) {
  margin-bottom: 15px;
}
.single-complete-orders .status-flex-single .details-list .lists .list-span {
  display: block;
  color: var(--extra-light-color);
  font-size: 16px;
  line-height: 26px;
}
@media only screen and (max-width: 480px) {
  .single-complete-orders .status-flex-single .details-list .lists .list-span {
    font-size: 14px;
  }
}
.single-complete-orders .status-flex-single .details-list .lists .list-strong {
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  color: var(--heading-color);
  max-width: 390px;
}
@media only screen and (max-width: 480px) {
  .single-complete-orders .status-flex-single .details-list .lists .list-strong {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
	## WIdgets
--------------------------------------------------------------*/
.footer-top-border {
  border-bottom: 1px solid #ddd;
}
.footer-top-border.white-color {
  border-color: #1B1C25;
}

.footer-widget .widget-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  text-transform: capitalize;
  position: relative;
  font-family: var(--heading-font);
  color: var(--heading-color);
}
.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-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: all 0.3s;
  transition: all 0.3s;
}
.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.2s;
  transition: all 0.2s;
}
.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: all 0.3s;
  transition: all 0.3s;
}
.footer-widget .footer-inner .footer-link-address .list .address:hover {
  color: var(--main-color-one);
  letter-spacing: 1px;
}
.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;
  margin-top: 20px;
  padding: 0;
}
@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: 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;
  height: 40px;
  width: 40px;
  border-radius: 5px;
  background: #fff;
  color: var(--heading-color);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footer-widget .footer-inner .footer-social-list .lists a:hover {
  color: #fff;
  background: var(--main-color-one);
}
.footer-widget .footer-inner .footer-social-list .lists:not(:last-child) a {
  margin-right: 10px;
}
.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;
  max-width: 255px;
}
.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(248, 58, 38, 0.2);
  -webkit-box-shadow: 0 0 20px rgba(248, 58, 38, 0.1);
  box-shadow: 0 0 20px rgba(248, 58, 38, 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 .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;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .footer-widget .footer-inner .payment-list {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-top: 10px;
  }
}
@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 .payment-list .list:not(:last-child) {
  margin-right: 15px;
}
.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-social-two {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 20px;
  padding: 0;
}
@media only screen and (max-width: 575.98px) {
  .footer-widget .footer-inner .footer-social-two {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer-widget .footer-inner .footer-social-two .lists a {
  color: var(--light-color);
  font-size: 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footer-widget .footer-inner .footer-social-two .lists a:hover {
  color: var(--main-color-one);
}
.footer-widget .footer-inner .footer-social-two .lists:not(:last-child) a {
  margin-right: 10px;
}
.footer-widget .footer-inner .footer-call {
  display: block;
  color: var(--light-color);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footer-widget .footer-inner .footer-call:hover {
  color: var(--main-color-one);
}

.copyright-area {
  padding: 25px 0;
}
.copyright-area.copyright-border {
  border-top: 1px solid #dddddd;
}
.copyright-area.copyright-border.white-color {
  border-color: #1B1C25;
}
.copyright-area.white-color .copyright-contents {
  color: #fff;
}
.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;
  }
}

.footer-widget.white-color .widget-title {
  color: #fff;
}
.footer-widget.white-color .footer-inner .subscribe-para {
  color: #fff;
}
.footer-widget.white-color .footer-inner .footer-link-list .list a {
  color: #fff;
}
.footer-widget.white-color .footer-inner .footer-link-list .list a:hover {
  color: var(--main-color-one);
}
.footer-widget.white-color .footer-inner .footer-link-address .list .address {
  color: #fff;
}
.footer-widget.white-color .footer-inner .footer-link-address .list .address:hover {
  color: var(--main-color-one);
}
.footer-widget.white-color .footer-inner .footer-social-list .lists a {
  background: #1B1C25;
  color: rgba(255, 255, 255, 0.7);
}
.footer-widget.white-color .footer-inner .footer-social-list .lists a:hover {
  background: var(--main-color-one);
  color: #fff;
}
.footer-widget.white-color .footer-inner .subscribe-form .widget-form-single .form--control {
  -webkit-box-shadow: 0 0 10px rgba(27, 28, 37, 0.2);
          box-shadow: 0 0 10px rgba(27, 28, 37, 0.2);
}
.footer-widget.white-color .footer-inner .payment-list .list {
  background: #fff;
}
.footer-widget.color-two .footer-inner .footer-link-list .list::before {
  color: var(--main-color-two);
}
.footer-widget.color-two .footer-inner .footer-link-list .list:hover a {
  color: var(--main-color-two);
}
.footer-widget.color-two .footer-inner .footer-link-address .list .address:hover {
  color: var(--main-color-two);
}
.footer-widget.color-two .footer-inner .footer-link-address .list .address i {
  color: var(--main-color-two);
}
.footer-widget.color-two .footer-inner .footer-social-list .lists a:hover {
  color: #fff;
  background: var(--main-color-two);
}
.footer-widget.color-two .footer-inner .subscribe-form .widget-form-single .form--control:focus {
  border: 1px solid rgba(255, 186, 0, 0.2);
  -webkit-box-shadow: 0 0 20px rgba(255, 186, 0, 0.1);
  box-shadow: 0 0 20px rgba(255, 186, 0, 0.1);
}
.footer-widget.color-two .footer-inner .subscribe-form .widget-form-single button {
  background: var(--main-color-two);
}
.footer-widget.color-two .footer-inner .privacy-list li:hover a {
  color: var(--main-color-two);
}
.footer-widget.color-two .footer-inner .footer-social-two .lists a:hover {
  color: var(--main-color-two);
}
.footer-widget.color-two .footer-inner .footer-call:hover {
  color: var(--main-color-two);
}
.footer-widget.color-three .footer-inner .footer-link-list .list::before {
  color: var(--main-color-three);
}
.footer-widget.color-three .footer-inner .footer-link-list .list:hover a {
  color: var(--main-color-three);
}
.footer-widget.color-three .footer-inner .footer-link-address .list .address:hover {
  color: var(--main-color-three);
}
.footer-widget.color-three .footer-inner .footer-link-address .list .address i {
  color: var(--main-color-three);
}
.footer-widget.color-three .footer-inner .footer-social-list .lists a:hover {
  color: #fff;
  background: var(--main-color-three);
}
.footer-widget.color-three .footer-inner .subscribe-form .widget-form-single .form--control:focus {
  border: 1px solid rgba(255, 106, 58, 0.2);
  -webkit-box-shadow: 0 0 20px rgba(255, 106, 58, 0.1);
  box-shadow: 0 0 20px rgba(255, 106, 58, 0.1);
}
.footer-widget.color-three .footer-inner .subscribe-form .widget-form-single button {
  background: var(--main-color-three);
}
.footer-widget.color-three .footer-inner .privacy-list li:hover a {
  color: var(--main-color-three);
}
.footer-widget.color-three .footer-inner .footer-social-two .lists a:hover {
  color: var(--main-color-three);
}
.footer-widget.color-three .footer-inner .footer-call:hover {
  color: var(--main-color-three);
}
.footer-widget.color-four .footer-inner .footer-link-list .list::before {
  color: var(--main-color-four);
}
.footer-widget.color-four .footer-inner .footer-link-list .list:hover a {
  color: var(--main-color-four);
}
.footer-widget.color-four .footer-inner .footer-link-address .list .address:hover {
  color: var(--main-color-four);
}
.footer-widget.color-four .footer-inner .footer-link-address .list .address i {
  color: var(--main-color-four);
}
.footer-widget.color-four .footer-inner .footer-social-list .lists a:hover {
  color: #fff;
  background: var(--main-color-four);
}
.footer-widget.color-four .footer-inner .subscribe-form .widget-form-single .form--control:focus {
  border: 1px solid rgba(255, 105, 92, 0.2);
  -webkit-box-shadow: 0 0 20px rgba(255, 105, 92, 0.1);
  box-shadow: 0 0 20px rgba(255, 105, 92, 0.1);
}
.footer-widget.color-four .footer-inner .subscribe-form .widget-form-single button {
  background: var(--main-color-four);
}
.footer-widget.color-four .footer-inner .privacy-list li:hover a {
  color: var(--main-color-four);
}
.footer-widget.color-four .footer-inner .footer-social-two .lists a:hover {
  color: var(--main-color-four);
}
.footer-widget.color-four .footer-inner .footer-call:hover {
  color: var(--main-color-four);
}

.footer-middle-border.black-border div[class*=col]:not(:last-child) .footer-widget::after {
  background: #1B1C25;
}
.footer-middle-border div[class*=col]:not(:last-child) .footer-widget::after {
  content: "";
  position: absolute;
  height: 200px;
  width: 1px;
  right: 25%;
  top: 0;
  background: rgba(221, 221, 221, 0.3);
  z-index: 0;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .footer-middle-border div[class*=col]:not(:last-child) .footer-widget::after {
    right: 20%;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .footer-middle-border div[class*=col]:not(:last-child) .footer-widget::after {
    right: 15%;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .footer-middle-border div[class*=col]:not(:last-child) .footer-widget::after {
    right: 5%;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .footer-middle-border div[class*=col]:not(:last-child) .footer-widget::after {
    display: none;
  }
}

@media (min-width: 320px) and (max-width: 991.98px) {
  .footer-container-style .footer-inner-all {
    border-radius: 30px !important;
  }
}
@media only screen and (max-width: 575.98px) {
  .footer-container-style .footer-inner-all {
    border-radius: 20px !important;
  }
}
@media only screen and (max-width: 375px) {
  .footer-container-style .footer-inner-all {
    border-radius: 10px !important;
  }
}
.footer-container-style .footer-middle {
  margin: 0 30px 0 120px;
}
@media (min-width: 1600px) and (max-width: 1799.98px) {
  .footer-container-style .footer-middle {
    margin: 0 30px 0 100px;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .footer-container-style .footer-middle {
    margin: 0 30px 0 50px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .footer-container-style .footer-middle {
    margin: 0 30px 0 30px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .footer-container-style .footer-middle {
    margin: 0 10px 0 20px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .footer-container-style .footer-middle {
    margin: 0 10px 0 20px;
  }
}
@media only screen and (max-width: 375px) {
  .footer-container-style .footer-middle {
    margin: 0 10px;
  }
}
.footer-container-style .copyright-area {
  padding: 25px 120px;
}
@media (min-width: 1600px) and (max-width: 1799.98px) {
  .footer-container-style .copyright-area {
    padding: 25px 100px;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .footer-container-style .copyright-area {
    padding: 25px 50px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .footer-container-style .copyright-area {
    padding: 25px 30px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .footer-container-style .copyright-area {
    padding: 25px 20px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .footer-container-style .copyright-area {
    padding: 25px 20px;
  }
}
@media only screen and (max-width: 375px) {
  .footer-container-style .copyright-area {
    padding: 20px 10px;
  }
}

.footer-list-bars .footer-inner .footer-link-list .list {
  padding-left: 40px;
}
.footer-list-bars .footer-inner .footer-link-list .list::before {
  content: "";
  position: absolute;
  height: 1px;
  width: 30px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: var(--main-color-one);
  z-index: -1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footer-list-bars .footer-inner .footer-link-list .list:hover {
  padding-left: 30px;
}
.footer-list-bars .footer-inner .footer-link-list .list:hover:before {
  width: 20px;
}

.black-themes.footer-bg {
  background: #22232F !important;
}
.black-themes .footer-top-border {
  border-color: #1B1C25 !important;
}
.black-themes .footer-middle-border div[class*=col]:not(:last-child) .footer-widget::after {
  background: #1B1C25;
}
.black-themes .footer-widget .widget-title {
  color: #fff;
}
.black-themes .footer-widget .footer-inner .footer-social-list .lists a {
  background: var(--heading-color);
  color: rgba(255, 255, 255, 0.7);
}
.black-themes .footer-widget .footer-inner .footer-social-list .lists a:hover {
  color: var(--heading-color);
}
.black-themes .footer-widget .footer-inner .footer-link-list .list a {
  color: rgba(255, 255, 255, 0.7);
}
.black-themes .footer-widget .footer-inner .footer-link-address .list .address {
  color: rgba(255, 255, 255, 0.7);
}
.black-themes .footer-widget .footer-inner .payment-list li {
  background: #fff;
}
.black-themes .footer-widget .footer-inner .subscribe-para {
  color: rgba(255, 255, 255, 0.7);
}
.black-themes .footer-widget .footer-inner .subscribe-form .widget-form-single .form--control {
  -webkit-box-shadow: 0 0 10px rgba(27, 28, 37, 0.2);
          box-shadow: 0 0 10px rgba(27, 28, 37, 0.2);
}
.black-themes .footer-widget .footer-inner .subscribe-form .widget-form-single .form--control:focus {
  -webkit-box-shadow: 0 0 10px rgba(255, 186, 0, 0.5);
          box-shadow: 0 0 10px rgba(255, 186, 0, 0.5);
}
.black-themes .copyright-border {
  border-color: #1B1C25 !important;
}
.black-themes .copyright-contents {
  color: rgba(255, 255, 255, 0.7);
}

/*-------------------------
    Section Title
-------------------------*/
.section-title {
  text-align: center;
  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: 20px;
}
.section-title.text-left {
  text-align: left;
}
.section-title.white-color {
  color: #fff;
}
.section-title.white-color .title {
  color: #fff;
}
.section-title.section-border-bottom {
  border-bottom: 1px solid #ddd;
  padding-bottom: 30px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .section-title.section-border-bottom {
    padding-bottom: 20px;
  }
}
.section-title.section-title-two .title {
  font-family: var(--jost-font);
  font-size: 40px;
  line-height: 65px;
  text-transform: uppercase;
  margin: -10px 0 0;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .section-title.section-title-two .title {
    font-size: 32px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 575.98px) {
  .section-title.section-title-two .title {
    font-size: 27px;
    line-height: 32px;
  }
}
@media only screen and (max-width: 375px) {
  .section-title.section-title-two .title {
    font-size: 24px;
    line-height: 28px;
  }
}
.section-title.section-title-two .see-all {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .section-title.section-title-two .see-all {
    gap: 10px;
  }
}
.section-title.section-title-two .see-all.arrow-two::after {
  content: "";
}
.section-title.section-title-two .see-all.color-two:hover {
  color: var(--main-color-two);
}
.section-title.section-title-two .see-all.color-two::after {
  background: var(--main-color-two);
}
.section-title.section-title-two .see-all.color-three:hover {
  color: var(--main-color-three);
}
.section-title.section-title-two .see-all.color-three::after {
  background: var(--main-color-three);
}
.section-title.section-title-two .see-all.color-four:hover {
  color: var(--main-color-four);
}
.section-title.section-title-two .see-all.color-four::after {
  background: var(--main-color-four);
}
.section-title.section-title-two .see-all::after {
  content: "";
  font-family: "Line Awesome Free";
  font-weight: 900;
  background: var(--main-color-one);
  color: #fff;
  height: 45px;
  width: 45px;
  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: 24px;
  border-radius: 5px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .section-title.section-title-two .see-all::after {
    height: 40px;
    width: 40px;
  }
}
.section-title .title {
  font-size: 36px;
  font-weight: 500;
  line-height: 43px;
  color: var(--heading-color);
  margin: -7px 0 0 0;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .section-title .title {
    font-size: 30px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 575.98px) {
  .section-title .title {
    font-size: 25px;
    line-height: 32px;
  }
}
@media only screen and (max-width: 375px) {
  .section-title .title {
    font-size: 22px;
    line-height: 28px;
  }
}
.section-title .title .title-image {
  position: relative;
  z-index: 2;
  padding: 16px 0;
}
.section-title .title .title-image img {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  left: 0;
  text-align: center;
  width: 100%;
}

.see-all {
  cursor: pointer;
  font-weight: 500;
  color: var(--heading-color);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  min-width: 100px;
  text-align: right;
}
.see-all:hover {
  color: var(--main-color-one);
}
.see-all::after {
  content: "";
  font-family: "Line Awesome Free";
  font-weight: 900;
  color: var(--main-color-one);
}
.see-all.arrow-two::after {
  content: "";
}
.see-all.color-two:hover {
  color: var(--main-color-two);
}
.see-all.color-two::after {
  color: var(--main-color-two);
}
.see-all.color-three:hover {
  color: var(--main-color-three);
}
.see-all.color-three::after {
  color: var(--main-color-three);
}
.see-all.color-four:hover {
  color: var(--main-color-four);
}
.see-all.color-four::after {
  color: var(--main-color-four);
}
@media only screen and (max-width: 575.98px) {
  .see-all {
    font-size: 19px;
  }
}
@media only screen and (max-width: 375px) {
  .see-all {
    font-size: 17px;
  }
}

.section-title-three {
  text-align: center;
}
.section-title-three .title {
  font-size: 55px;
  line-height: 65px;
  font-weight: 400;
  font-family: var(--playfair-font);
  display: inline-block;
  margin: -11px 0 0;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .section-title-three .title {
    font-size: 45px;
    line-height: 55px;
    margin: -9px 0 0;
  }
}
@media only screen and (max-width: 575.98px) {
  .section-title-three .title {
    font-size: 36px;
    line-height: 42px;
  }
}
@media only screen and (max-width: 480px) {
  .section-title-three .title {
    font-size: 32px;
    line-height: 33px;
  }
}
@media only screen and (max-width: 375px) {
  .section-title-three .title {
    font-size: 30px;
    line-height: 30px;
  }
}
.section-title-three .title .line-round {
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  text-align: center;
  margin: 0 auto;
}
.section-title-three .title .title-right {
  position: relative;
  z-index: 2;
  padding-bottom: 10px;
}
.section-title-three .title .title-right img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.section-title-four .title {
  font-family: var(--montserrat-font);
  font-size: 50px;
  font-weight: 700;
  line-height: 65px;
  margin: -12px 0 0;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .section-title-four .title {
    font-size: 36px;
    line-height: 45px;
    margin: -9px 0 0;
  }
}
@media only screen and (max-width: 575.98px) {
  .section-title-four .title {
    font-size: 30px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 480px) {
  .section-title-four .title {
    font-size: 28px;
    line-height: 32px;
  }
}
@media only screen and (max-width: 375px) {
  .section-title-four .title {
    font-size: 26px;
    line-height: 30px;
  }
}
.section-title-four .title .center-title-img {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  bottom: -20px;
  margin: 0 auto;
}

.black-themes .section-title .title {
  color: #fff;
}

/*---------------------------------------
    ## 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;
  }
}
@media only screen and (max-width: 375px) {
  .btn-wrapper .cmn-btn {
    padding: 7px 15px;
    font-size: 14px;
  }
}
.btn-wrapper .cmn-btn.btn-bg-1 {
  background: var(--main-color-one);
  color: #fff;
}
.btn-wrapper .cmn-btn.btn-bg-2 {
  background: var(--main-color-two);
  color: var(--heading-color);
}
.btn-wrapper .cmn-btn.btn-bg-3 {
  background: var(--main-color-three);
  color: #fff;
}
.btn-wrapper .cmn-btn.btn-bg-4 {
  background: var(--main-color-four);
  color: #fff;
}
.btn-wrapper .cmn-btn.shop-color-2 {
  background: #30BB6F;
  color: #fff;
}
.btn-wrapper .cmn-btn.btn-bg-white {
  background: #fff;
  color: var(--heading-color);
}
.btn-wrapper .cmn-btn.btn-bg-white:hover {
  background: var(--main-color-one);
  color: #fff;
}
.btn-wrapper .cmn-btn.btn-bg-white.hover-bg-two:hover {
  background: var(--main-color-two);
  color: var(--heading-color);
}
.btn-wrapper .cmn-btn.extra-width {
  width: 220px;
}
.btn-wrapper .cmn-btn.btn-bg-heading {
  background: var(--heading-color);
  color: #fff;
}
.btn-wrapper .cmn-btn.btn-bg-steam {
  background: #DDD;
}
.btn-wrapper .cmn-btn.btn-border {
  border: 1px solid #ddd;
}
.btn-wrapper .cmn-btn.btn-outline-steam {
  border: 3px solid #DDD;
}
.btn-wrapper .cmn-btn.btn-outline-one {
  padding: 7px 35px;
  border: 3px solid var(--main-color-one);
}
.btn-wrapper .cmn-btn.btn-outline-one.color-one {
  color: var(--main-color-one);
}
.btn-wrapper .cmn-btn.btn-outline-one:hover {
  background: var(--main-color-one);
  color: #fff;
}
.btn-wrapper .cmn-btn.btn-outline-two {
  padding: 7px 35px;
  border: 3px solid var(--main-color-two);
}
.btn-wrapper .cmn-btn.btn-outline-two.color-two {
  color: var(--main-color-two);
}
.btn-wrapper .cmn-btn.btn-outline-two:hover {
  background: var(--main-color-two);
  color: #fff;
}
.btn-wrapper .cmn-btn.btn-outline-three {
  padding: 7px 35px;
  border: 3px solid var(--main-color-three);
}
.btn-wrapper .cmn-btn.btn-outline-three.color-three {
  color: var(--main-color-three);
}
.btn-wrapper .cmn-btn.btn-outline-three:hover {
  background: var(--main-color-three);
  color: #fff;
}
.btn-wrapper .cmn-btn.btn-outline-four {
  padding: 7px 35px;
  border: 3px solid var(--main-color-four);
}
.btn-wrapper .cmn-btn.btn-outline-four.color-four {
  color: var(--main-color-four);
}
.btn-wrapper .cmn-btn.btn-outline-four:hover {
  background: var(--main-color-four);
  color: #fff;
}
.btn-wrapper .cmn-btn.completed {
  background: rgba(29, 191, 115, 0.1);
  color: #1DBF73;
  text-align: center;
  border-radius: 5px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .btn-wrapper .cmn-btn.completed {
    text-align: right;
  }
}
.btn-wrapper .cmn-btn.canceled {
  background: rgba(255, 23, 71, 0.1);
  color: #FF1747;
  text-align: center;
  border-radius: 5px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .btn-wrapper .cmn-btn.canceled {
    text-align: right;
  }
}
.btn-wrapper .cmn-btn.pending {
  background: rgba(255, 179, 7, 0.1);
  color: #FFB307;
  text-align: center;
  border-radius: 5px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .btn-wrapper .cmn-btn.pending {
    text-align: right;
  }
}
.btn-wrapper .cmn-btn.cart-btn {
  font-size: 20px;
  font-weight: 500;
  color: var(--extra-light-color);
  padding: 10px 70px;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .btn-wrapper .cmn-btn.cart-btn {
    padding: 10px 50px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .btn-wrapper .cmn-btn.cart-btn {
    padding: 10px 35px;
    font-size: 18px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .btn-wrapper .cmn-btn.cart-btn {
    padding: 10px 35px;
    font-size: 18px;
  }
}
.btn-wrapper .cmn-btn.cart-btn.btn-bg-one {
  background: var(--main-color-one);
  border: 1px solid var(--main-color-one);
  color: #fff;
}
.btn-wrapper .cmn-btn.cart-btn.btn-bg-one:hover {
  background: 0;
  color: var(--main-color-one);
}
.btn-wrapper .cmn-btn.cart-btn.btn-bg-one:hover::after {
  color: var(--main-color-one);
}
.btn-wrapper .cmn-btn.cart-btn::after {
  content: "";
  font-family: "Line Awesome Free";
  font-weight: 900;
  font-size: 20px;
  margin-left: 5px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.btn-wrapper .cmn-btn.cart-btn:hover {
  background-color: var(--main-color-one);
  color: #fff;
  border-color: var(--main-color-one);
}
.btn-wrapper .cmn-btn.cart-btn:hover::after {
  color: #fff;
}

.btn-see-more {
  font-size: 18px;
  font-weight: 500;
  color: var(--light-color);
}
.btn-see-more:hover {
  color: var(--main-color-one);
}
.btn-see-more::after {
  content: "";
  font-size: 20px;
  font-family: "Line Awesome Free";
  font-weight: 900;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .btn-see-more {
    font-size: 16px;
  }
  .btn-see-more::after {
    font-size: 18px;
  }
}
@media only screen and (max-width: 480px) {
  .btn-see-more {
    font-size: 15px;
  }
  .btn-see-more::after {
    font-size: 16px;
  }
}
@media only screen and (max-width: 375px) {
  .btn-see-more {
    font-size: 14px;
  }
  .btn-see-more::after {
    font-size: 15px;
  }
}

button.btn-submit {
  border: 0;
  outline: none;
  background: inherit;
  cursor: pointer;
  font-size: 20px;
  font-weight: 500;
  background: var(--main-color-one);
  color: #fff;
  padding: 17px 38px;
  margin-top: 30px;
}
button.btn-submit.bg-color-two {
  background: var(--main-color-two);
}
button.btn-submit.bg-color-three {
  background: var(--main-color-three);
}
button.btn-submit.bg-color-four {
  background: var(--main-color-four);
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  button.btn-submit {
    font-size: 18px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  button.btn-submit {
    font-size: 16px;
    padding: 15px 30px;
  }
}
@media only screen and (max-width: 480px) {
  button.btn-submit {
    font-size: 15px;
    padding: 12px 25px;
  }
}
@media only screen and (max-width: 375px) {
  button.btn-submit {
    font-size: 14px;
    padding: 10px 18px;
  }
}

.btn-coupon {
  outline: none;
  border: 1px solid #DDD;
  background: #DDD;
  padding: 15px;
  cursor: pointer;
  font-size: 18px;
}
.btn-coupon.btn-bg-heading {
  background: var(--heading-color);
  color: #fff;
}

.btn-buy {
  font-size: 20px;
  font-weight: 500;
  margin-top: 25px;
  display: inline-block;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .btn-buy {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 375px) {
  .btn-buy {
    margin-top: 10px;
  }
}
.btn-buy.icon::before {
  content: "";
  font-family: "Line Awesome Free";
  font-weight: 900;
  font-size: 20px;
  margin-right: 5px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  text-decoration: none;
}

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

.btn-decoration {
  text-decoration: underline;
}
.btn-decoration.icon {
  text-decoration: none;
}
.btn-decoration.icon::before {
  text-decoration: none;
}

.comingsoon-btn {
  margin-top: 35px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .comingsoon-btn {
    margin-top: 20px;
  }
}
.comingsoon-btn .comingsoon-order {
  font-size: 17px;
  font-weight: 500;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.comingsoon-btn .comingsoon-order.brows-category {
  color: var(--heading-color);
}
.comingsoon-btn .comingsoon-order.brows-category::before {
  background: var(--main-color-one);
  color: #fff;
}
.comingsoon-btn .comingsoon-order.brows-category:hover::before {
  background: #fff;
  color: var(--main-color-one);
}
.comingsoon-btn .comingsoon-order.color-two-btn::before {
  background: var(--main-color-three);
  color: #fff;
}
.comingsoon-btn .comingsoon-order.color-two-btn:hover::before {
  background: #fff;
  color: var(--main-color-three);
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .comingsoon-btn .comingsoon-order {
    font-size: 16px;
  }
}
@media only screen and (max-width: 480px) {
  .comingsoon-btn .comingsoon-order {
    font-size: 15px;
  }
}
@media only screen and (max-width: 375px) {
  .comingsoon-btn .comingsoon-order {
    font-size: 14px;
  }
}
.comingsoon-btn .comingsoon-order::before {
  content: "";
  font-family: "Line Awesome Free";
  font-weight: 900;
  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: #fff;
  color: var(--heading-color);
  border-radius: 50%;
  height: 50px;
  width: 50px;
  font-size: 30px;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .comingsoon-btn .comingsoon-order::before {
    height: 40px;
    width: 40px;
    font-size: 24px;
  }
}
@media only screen and (max-width: 375px) {
  .comingsoon-btn .comingsoon-order::before {
    height: 30px;
    width: 30px;
    font-size: 20px;
  }
}
.comingsoon-btn .comingsoon-order:hover {
  color: var(--main-color-one);
}
.comingsoon-btn .comingsoon-order:hover::before {
  background: var(--main-color-one);
  color: #fff;
}

/*---------------------------------------
    ## 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: 575px) {
    .back-to-top {
        right: 20px;
        width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 18px
    }
}
.back-to-top.bg-color-two {
  background: var(--main-color-two);
}
.back-to-top.bg-color-three {
  background: var(--main-color-three);
}
.back-to-top.bg-color-four {
  background: var(--main-color-four);
}

/* Nice Select Style */
.nice-select {
  width: 100%;
  height: 55px;
  line-height: 55px;
  font-size: 14px;
  font-weight: 400;
  color: var(--extra-light-color);
  border: 1px solid #ddd;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.nice-select:focus {
  border: 1px solid #ddd;
}
.nice-select .nice-select-search-box {
  height: 100%;
}
.nice-select .nice-select-search-box .nice-select-search {
  vertical-align: top;
}
.nice-select:after {
  border-bottom: 2px solid var(--extra-light-color);
  border-right: 2px solid var(--extra-light-color);
  height: 8px;
  margin-top: -5px;
  right: 20px;
  width: 8px;
}
@media only screen and (max-width: 375px) {
  .nice-select:after {
    right: 10px;
  }
}
.nice-select.open {
  border: 1px solid #ddd;
}
.nice-select .list {
  width: 100%;
}

/* Isootope List */
.isootope-list {
  position: absolute;
  top: -75px;
  right: 15px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .isootope-list {
    top: -60px;
  }
}
@media only screen and (max-width: 767.98px) {
  .isootope-list {
    position: unset;
  }
}
.isootope-list.list-two {
  top: -60px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .isootope-list.list-two {
    position: initial;
    margin-top: 35px;
  }
}

.isootope-button {
  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;
}
@media only screen and (max-width: 767.98px) {
  .isootope-button {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-top: 35px;
  }
}
.isootope-button.style-02.color-one .list::before {
  background: var(--main-color-one);
}
.isootope-button.style-02.color-one .list.active {
  background: var(--main-color-one);
  color: #fff;
  border-color: var(--main-color-one);
}
.isootope-button.style-02.color-two .list::before {
  background: var(--main-color-two);
}
.isootope-button.style-02.color-two .list.active {
  background: var(--main-color-two);
  color: #fff;
  border-color: var(--main-color-two);
}
.isootope-button.style-02.color-four .list::before {
  background: var(--main-color-four);
}
.isootope-button.style-02.color-four .list.active {
  background: var(--main-color-four);
  color: #fff;
  border-color: var(--main-color-four);
}
.isootope-button.style-02 .list {
  font-family: var(--roboto-font);
  padding: 8px 35px;
  border: 1px solid #ddd;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .isootope-button.style-02 .list {
    padding: 8px 30px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .isootope-button.style-02 .list {
    padding: 7px 25px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .isootope-button.style-02 .list {
    font-size: 15px;
    padding: 6px 20px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .isootope-button.style-02 .list {
    font-size: 15px;
    padding: 5px 20px;
  }
}
@media only screen and (max-width: 375px) {
  .isootope-button.style-02 .list {
    font-size: 14px;
    padding: 3px 18px;
  }
}
.isootope-button.style-02 .list:not(:last-child) {
  margin-right: 20px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .isootope-button.style-02 .list:not(:last-child) {
    margin-right: 10px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .isootope-button.style-02 .list:not(:last-child) {
    margin-right: 10px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .isootope-button.style-02 .list:not(:last-child) {
    margin-right: 10px;
  }
}
.isootope-button.style-02 .list::before {
  background: var(--main-color-three);
  height: 100%;
  z-index: -1;
}
.isootope-button.style-02 .list.active {
  background: var(--main-color-three);
  color: #fff;
  border-color: var(--main-color-three);
}
.isootope-button.style-02 .list:hover {
  color: #fff;
}
.isootope-button.colors-heading .list::before {
  background: var(--heading-color);
}
.isootope-button.colors-heading .list.active {
  color: var(--heading-color);
}
.isootope-button.colors-heading .list:hover {
  color: var(--heading-color);
}
.isootope-button.style-03 .list {
  font-family: var(--roboto-font);
  padding: 8px 35px;
  border: 1px solid #DDD;
  background: #DDD;
  color: var(--heading-color);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 5px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .isootope-button.style-03 .list {
    padding: 8px 30px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .isootope-button.style-03 .list {
    padding: 7px 25px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .isootope-button.style-03 .list {
    font-size: 15px;
    padding: 6px 20px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .isootope-button.style-03 .list {
    font-size: 15px;
    padding: 5px 20px;
  }
}
@media only screen and (max-width: 375px) {
  .isootope-button.style-03 .list {
    font-size: 14px;
    padding: 3px 18px;
  }
}
.isootope-button.style-03 .list:not(:last-child) {
  margin-right: 20px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .isootope-button.style-03 .list:not(:last-child) {
    margin-right: 10px;
  }
}
.isootope-button.style-03 .list::before {
  background: var(--main-color-two);
  height: 100%;
  z-index: -1;
}
.isootope-button.style-03 .list.active {
  background: var(--main-color-two);
  color: var(--heading-color);
  border-color: var(--main-color-two);
}
.isootope-button.style-03 .list:hover {
  color: var(--heading-color);
  background: var(--main-color-two);
}
.isootope-button .list {
  font-size: 18px;
  font-family: var(--rubik-font);
  cursor: pointer;
  line-height: 30px;
  margin-top: 5px;
  display: inline-block;
  position: relative;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .isootope-button .list {
    font-size: 16px;
  }
}
@media only screen and (max-width: 480px) {
  .isootope-button .list {
    font-size: 15px;
  }
}
@media only screen and (max-width: 375px) {
  .isootope-button .list {
    font-size: 15px;
  }
}
.isootope-button .list::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: var(--main-color-one);
  bottom: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.isootope-button .list.active {
  color: var(--main-color-one);
}
.isootope-button .list.active::before {
  visibility: visible;
  opacity: 1;
  width: 100%;
}
.isootope-button .list:not(:last-child) {
  margin-right: 60px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .isootope-button .list:not(:last-child) {
    margin-right: 30px;
  }
}
@media only screen and (max-width: 575.98px) {
  .isootope-button .list:not(:last-child) {
    margin-right: 20px;
  }
}
@media only screen and (max-width: 375px) {
  .isootope-button .list:not(:last-child) {
    margin-right: 15px;
  }
}
.isootope-button .list:hover {
  color: var(--main-color-one);
}
.isootope-button .list:hover::before {
  visibility: visible;
  opacity: 1;
  width: 100%;
}

.black-themes .isootope-button.style-03 .list {
  border: 1px solid #22232F;
  background: #22232F;
  color: #fff;
}
.black-themes .isootope-button.style-03 .list.active {
  background: var(--main-color-two);
  color: var(--heading-color);
}
.black-themes .isootope-button.style-03 .list:hover {
  background: var(--main-color-two);
  color: var(--heading-color);
}

/* Tab Style */
.tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.tabs li {
  font-size: 18px;
  font-weight: 500;
  background: inherit;
  cursor: pointer;
}

/* 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;
  justify-content: center;
  text-align: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: distribute;
  gap: 15px;
}
@media only screen and (max-width: 480px) {
  .global-timer .syotimer__body {
    gap: 10px;
  }
}
.global-timer .syotimer__body .syotimer-cell {
  margin: 10px 0;
  background: #fff;
  -webkit-box-shadow: 0 0 10px #f2f3f5;
          box-shadow: 0 0 10px #f2f3f5;
  padding: 10px 20px;
  border-radius: 5px;
}
@media only screen and (max-width: 375px) {
  .global-timer .syotimer__body .syotimer-cell {
    padding: 5px;
  }
}
.global-timer .syotimer__body .syotimer-cell .syotimer-cell__value {
  font-size: 36px;
  color: var(--main-color-one);
  font-weight: 500;
  line-height: 43px;
  font-family: var(--heading-font);
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .global-timer .syotimer__body .syotimer-cell .syotimer-cell__value {
    font-size: 30px;
  }
}
@media only screen and (max-width: 375px) {
  .global-timer .syotimer__body .syotimer-cell .syotimer-cell__value {
    font-size: 24px;
  }
}
.global-timer .syotimer__body .syotimer-cell .syotimer-cell__unit {
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 400;
  line-height: 19px;
}
@media (min-width: 320px) 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;
  }
}
.global-timer.simple-timer-two {
  margin-top: 35px;
}
.global-timer.simple-timer-two.radius-0 .syotimer__body .syotimer-cell {
  border-radius: 0;
}
.global-timer.simple-timer-two.color-two .syotimer__body .syotimer-cell {
  background: var(--main-color-two);
}
.global-timer.simple-timer-two.color-three .syotimer__body .syotimer-cell {
  background: var(--main-color-three);
}
.global-timer.simple-timer-two.color-four .syotimer__body .syotimer-cell {
  background: var(--main-color-four);
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .global-timer.simple-timer-two {
    margin-top: 20px;
  }
}
.global-timer.simple-timer-two .syotimer__body {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.global-timer.simple-timer-two .syotimer__body .syotimer-cell {
  background: var(--main-color-one);
  color: #fff;
  padding: 15px 20px;
  border-radius: 10px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .global-timer.simple-timer-two .syotimer__body .syotimer-cell {
    padding: 10px 20px;
  }
}
@media only screen and (max-width: 480px) {
  .global-timer.simple-timer-two .syotimer__body .syotimer-cell {
    padding: 7px 13px;
  }
}
@media only screen and (max-width: 375px) {
  .global-timer.simple-timer-two .syotimer__body .syotimer-cell {
    padding: 5px 10px;
  }
}
.global-timer.simple-timer-two .syotimer__body .syotimer-cell .syotimer-cell__value {
  color: #fff;
  font-family: var(--jost-font);
  font-weight: 600;
  font-size: 43px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .global-timer.simple-timer-two .syotimer__body .syotimer-cell .syotimer-cell__value {
    font-size: 32px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .global-timer.simple-timer-two .syotimer__body .syotimer-cell .syotimer-cell__value {
    font-size: 28px;
    line-height: 32px;
  }
}
@media only screen and (max-width: 375px) {
  .global-timer.simple-timer-two .syotimer__body .syotimer-cell .syotimer-cell__value {
    font-size: 24px;
    line-height: 26px;
  }
}
.global-timer.simple-timer-two .syotimer__body .syotimer-cell .syotimer-cell__unit {
  color: #fff;
  line-height: 21px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .global-timer.simple-timer-two .syotimer__body .syotimer-cell .syotimer-cell__unit {
    font-size: 15px;
  }
}
@media only screen and (max-width: 375px) {
  .global-timer.simple-timer-two .syotimer__body .syotimer-cell .syotimer-cell__unit {
    font-size: 14px;
  }
}
.global-timer.simple-timer-campaign {
  position: absolute;
  bottom: 30px;
  z-index: 9;
  left: 0;
  right: 0;
  text-align: center;
}
.global-timer.simple-timer-campaign.radius-0 .syotimer__body .syotimer-cell {
  border-radius: 0;
}
.global-timer.simple-timer-campaign.color-two .syotimer__body .syotimer-cell {
  color: var(--main-color-two);
}
.global-timer.simple-timer-campaign.color-two .syotimer__body .syotimer-cell .syotimer-cell__value {
  color: var(--main-color-two);
}
.global-timer.simple-timer-campaign.color-two .syotimer__body .syotimer-cell .syotimer-cell__unit {
  color: var(--main-color-two);
}
.global-timer.simple-timer-campaign.color-three .syotimer__body .syotimer-cell {
  color: var(--main-color-three);
}
.global-timer.simple-timer-campaign.color-three .syotimer__body .syotimer-cell .syotimer-cell__value {
  color: var(--main-color-three);
}
.global-timer.simple-timer-campaign.color-three .syotimer__body .syotimer-cell .syotimer-cell__unit {
  color: var(--main-color-three);
}
.global-timer.simple-timer-campaign.color-four .syotimer__body .syotimer-cell {
  color: var(--main-color-four);
}
.global-timer.simple-timer-campaign.color-four .syotimer__body .syotimer-cell .syotimer-cell__value {
  color: var(--main-color-four);
}
.global-timer.simple-timer-campaign.color-four .syotimer__body .syotimer-cell .syotimer-cell__unit {
  color: var(--main-color-four);
}
.global-timer.simple-timer-campaign .syotimer__body {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .global-timer.simple-timer-campaign .syotimer__body {
    gap: 10px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .global-timer.simple-timer-campaign .syotimer__body {
    gap: 5px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .global-timer.simple-timer-campaign .syotimer__body {
    gap: 10px;
  }
}
.global-timer.simple-timer-campaign .syotimer__body .syotimer-cell {
  background: #fff;
  color: var(--light-color);
  padding: 5px 15px;
  border-radius: 10px;
  margin: 0;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .global-timer.simple-timer-campaign .syotimer__body .syotimer-cell {
    padding: 5px 10px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .global-timer.simple-timer-campaign .syotimer__body .syotimer-cell {
    padding: 5px 10px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .global-timer.simple-timer-campaign .syotimer__body .syotimer-cell {
    padding: 5px 10px;
  }
}
@media only screen and (max-width: 480px) {
  .global-timer.simple-timer-campaign .syotimer__body .syotimer-cell {
    padding: 5px 12px;
  }
}
.global-timer.simple-timer-campaign .syotimer__body .syotimer-cell .syotimer-cell__value {
  color: var(--main-color-one);
  font-weight: 600;
  font-size: 36px;
  line-height: 36px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .global-timer.simple-timer-campaign .syotimer__body .syotimer-cell .syotimer-cell__value {
    font-size: 32px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .global-timer.simple-timer-campaign .syotimer__body .syotimer-cell .syotimer-cell__value {
    font-size: 28px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .global-timer.simple-timer-campaign .syotimer__body .syotimer-cell .syotimer-cell__value {
    font-size: 28px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .global-timer.simple-timer-campaign .syotimer__body .syotimer-cell .syotimer-cell__value {
    font-size: 26px;
    line-height: 32px;
  }
}
@media only screen and (max-width: 375px) {
  .global-timer.simple-timer-campaign .syotimer__body .syotimer-cell .syotimer-cell__value {
    font-size: 20px;
    line-height: 26px;
  }
}
.global-timer.simple-timer-campaign .syotimer__body .syotimer-cell .syotimer-cell__unit {
  color: var(--light-color);
  line-height: 24px;
  font-size: 14px;
}
.global-timer.discount-countdown.radius-0 .syotimer__body .syotimer-cell {
  border-radius: 0;
}
.global-timer.discount-countdown .syotimer__body {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .global-timer.discount-countdown .syotimer__body {
    gap: 30px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .global-timer.discount-countdown .syotimer__body {
    gap: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .global-timer.discount-countdown .syotimer__body {
    gap: 20px;
  }
}
.global-timer.discount-countdown .syotimer__body .syotimer-cell {
  background: #fff;
  color: var(--main-color-one);
  padding: 5px 15px;
  border-radius: 10px;
  margin: 0;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .global-timer.discount-countdown .syotimer__body .syotimer-cell {
    padding: 15px 20px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .global-timer.discount-countdown .syotimer__body .syotimer-cell {
    padding: 10px 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .global-timer.discount-countdown .syotimer__body .syotimer-cell {
    padding: 10px 20px;
  }
}
@media only screen and (max-width: 480px) {
  .global-timer.discount-countdown .syotimer__body .syotimer-cell {
    padding: 5px 12px;
  }
}
.global-timer.discount-countdown .syotimer__body .syotimer-cell .syotimer-cell__value {
  color: var(--main-color-one);
  font-weight: 600;
  font-size: 36px;
  line-height: 36px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .global-timer.discount-countdown .syotimer__body .syotimer-cell .syotimer-cell__value {
    font-size: 32px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .global-timer.discount-countdown .syotimer__body .syotimer-cell .syotimer-cell__value {
    font-size: 28px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .global-timer.discount-countdown .syotimer__body .syotimer-cell .syotimer-cell__value {
    font-size: 28px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .global-timer.discount-countdown .syotimer__body .syotimer-cell .syotimer-cell__value {
    font-size: 26px;
    line-height: 32px;
  }
}
@media only screen and (max-width: 375px) {
  .global-timer.discount-countdown .syotimer__body .syotimer-cell .syotimer-cell__value {
    font-size: 20px;
    line-height: 26px;
  }
}
.global-timer.discount-countdown .syotimer__body .syotimer-cell .syotimer-cell__unit {
  color: var(--main-color-one);
  line-height: 20px;
  font-size: 14px;
}

/* Price Updated Through */
.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);
}
.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;
}

/* Common Review List */
.common-review-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.common-review-list li {
  font-size: 18px;
  color: var(--main-color-one);
  margin: 1px;
}
.common-review-list li .review-count {
  color: var(--extra-light-color);
  margin-left: 5px;
}

/* Search Popup */
.search-open {
  font-size: 24px;
  cursor: pointer;
  margin-left: 0px;
  position: relative;
  z-index: 9;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.search-open.hover-color-three:hover {
  color: var(--main-color-two);
}

.searchbar-area {
  position: relative;
  z-index: 9;
}

.search-bar {
  position: absolute;
  top: -60%;
  right: 0;
  left: 0;
  height: auto;
  z-index: 9;
  width: 95%;
  margin: 0 auto;
  background: #fff;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  z-index: 9999;
}
.search-bar.active {
  visibility: visible;
  opacity: 1;
  top: 5px;
}
.search-bar.color-style-02 .menu-search-form .search-close {
  color: var(--main-color-two);
  border: 1px solid var(--main-color-two);
}
.search-bar.color-style-02 .menu-search-form .search-close:hover {
  background: var(--main-color-two);
}
.search-bar.color-style-02 .menu-search-form .item-search:focus {
  border-color: rgba(255, 186, 0, 0.2);
  -webkit-box-shadow: 0 0 10px rgba(255, 186, 0, 0.1);
          box-shadow: 0 0 10px rgba(255, 186, 0, 0.1);
}
.search-bar.color-style-02 .menu-search-form button {
  background: var(--main-color-two);
}
.search-bar.color-style-03 .menu-search-form .search-close {
  color: var(--main-color-three);
  border: 1px solid var(--main-color-three);
}
.search-bar.color-style-03 .menu-search-form .search-close:hover {
  background: var(--main-color-three);
}
.search-bar.color-style-03 .menu-search-form .item-search:focus {
  border-color: rgba(255, 106, 58, 0.2);
  -webkit-box-shadow: 0 0 10px rgba(255, 106, 58, 0.1);
          box-shadow: 0 0 10px rgba(255, 106, 58, 0.1);
}
.search-bar.color-style-03 .menu-search-form button {
  background: var(--main-color-three);
}
.search-bar.color-style-04 .menu-search-form .search-close {
  color: var(--main-color-four);
  border: 1px solid var(--main-color-four);
}
.search-bar.color-style-04 .menu-search-form .search-close:hover {
  background: var(--main-color-four);
}
.search-bar.color-style-04 .menu-search-form .item-search:focus {
  border-color: rgba(255, 105, 92, 0.2);
  -webkit-box-shadow: 0 0 10px rgba(255, 105, 92, 0.1);
          box-shadow: 0 0 10px rgba(255, 105, 92, 0.1);
}
.search-bar.color-style-04 .menu-search-form button {
  background: var(--main-color-four);
}
.search-bar .menu-search-form {
  position: relative;
  z-index: 9;
  width: 100%;
  margin: 0 auto;
  border-radius: 0px;
}
.search-bar .menu-search-form .search-close {
  position: absolute;
  right: 0px;
  bottom: -50px;
  font-size: 30px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: #F2F3F5;
  padding: 2px 10px;
  color: var(--main-color-one);
  border: 1px solid var(--main-color-one);
}
.search-bar .menu-search-form .search-close:hover {
  color: #fff;
  background: var(--main-color-one);
}
.search-bar .menu-search-form .item-search {
  width: 100%;
  height: 80px;
  background: none;
  border: 1px solid rgba(0, 0, 0, 0.2);
  outline: none;
  text-transform: capitalize;
  padding: 10px 30px;
  padding-right: 70px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 0px;
  color: var(--light-color);
}
.search-bar .menu-search-form .item-search:focus {
  border-color: rgba(248, 58, 38, 0.2);
  -webkit-box-shadow: 0 0 10px rgba(248, 58, 38, 0.1);
          box-shadow: 0 0 10px rgba(248, 58, 38, 0.1);
}
.search-bar .menu-search-form .item-search::-webkit-input-placeholder {
  color: var(--light-color);
  font-size: 14px;
}
.search-bar .menu-search-form .item-search::-moz-placeholder {
  color: var(--light-color);
  font-size: 14px;
}
.search-bar .menu-search-form .item-search:-ms-input-placeholder {
  color: var(--light-color);
  font-size: 14px;
}
.search-bar .menu-search-form .item-search::-ms-input-placeholder {
  color: var(--light-color);
  font-size: 14px;
}
.search-bar .menu-search-form .item-search::placeholder {
  color: var(--light-color);
  font-size: 14px;
}
.search-bar .menu-search-form button {
  position: absolute;
  right: 0;
  height: 100%;
  padding: 0 30px;
  background: var(--main-color-one);
  border: 0;
  outline: none;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
}

/* .close-toggle-body {
    height: 100%;
    width: 100%;
    left: 100%;
    top: 0;
    position: fixed;
    z-index: 99;
    cursor: zoom-out;
    transition: all .8s;
    &.open {
        background: rgba($black, .01);
        left: 0;
        border-radius: 0;
    }
} */
/* Pagination */
@media (min-width: 320px) and (max-width: 991.98px) {
  .shop-pagination {
    margin-top: 30px;
  }
}

.pagination-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.pagination-list::before {
  content: "";
}
.pagination-list::after {
  content: "";
}
.pagination-list::before, .pagination-list::after {
  cursor: pointer;
  background: none;
  font-size: 16px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  padding: 10px 20px;
  border: 1px solid var(--extra-light-color);
  display: inline-block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-family: "Line Awesome Free";
  font-weight: 900;
}
.pagination-list::before:hover, .pagination-list::after:hover {
  border-color: var(--main-color-one);
  color: var(--main-color-one);
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .pagination-list::before, .pagination-list::after {
    font-size: 15px;
    padding: 7px 15px;
  }
}
@media only screen and (max-width: 480px) {
  .pagination-list::before, .pagination-list::after {
    font-size: 14px;
    padding: 5px 10px;
  }
}
.pagination-list li {
  margin: 5px 10px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .pagination-list li {
    margin: 5px 5px;
  }
}
.pagination-list li.active a {
  background: var(--main-color-one);
  color: #fff;
}
.pagination-list li a {
  background: #fff;
  color: var(--extra-light-color);
  font-size: 16px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  padding: 10px 20px;
  display: inline-block;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.pagination-list li a:hover {
  background: var(--main-color-one);
  color: #fff;
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .pagination-list li a {
    font-size: 15px;
    padding: 7px 15px;
  }
}
@media only screen and (max-width: 480px) {
  .pagination-list li a {
    font-size: 14px;
    padding: 5px 10px;
  }
}

.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;
  min-height: 18px;
  min-width: 18px;
  cursor: pointer;
  background: #fff;
  border: 1px solid #dddddd;
  border-radius: 0px;
  margin-top: 3px;
  -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;
}
@media only screen and (max-width: 575.98px) {
  .checkbox-inlines .checkbox-label {
    font-size: 15px;
  }
}

/* Faq */
.faq-contents .faq-item.open .faq-title {
  background: #FFF8F0;
  border-color: #FFF8F0;
  font-weight: 500;
  color: var(--heading-color);
}
.faq-contents .faq-item.open .faq-title::after {
  content: "";
}
.faq-contents .faq-item.open .faq-panel {
  background: #FFF8F0;
}
.faq-contents .faq-item.active .faq-title {
  color: var(--heading-color);
}
.faq-contents .faq-item.active .faq-panel {
  display: block;
  background: #FFF8F0;
}
.faq-contents .faq-item:not(:first-child) {
  margin-top: 30px;
}
.faq-contents .faq-item .faq-title {
  font-size: 24px;
  color: var(--light-color);
  font-family: var(--heading-font);
  line-height: 24px;
  line-height: 36px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 20px 40px;
  background: #fff;
  cursor: pointer;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (min-width: 1600px) and (max-width: 1799.98px) {
  .faq-contents .faq-item .faq-title {
    font-size: 22px;
    padding: 20px 30px;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .faq-contents .faq-item .faq-title {
    font-size: 20px;
    padding: 20px 20px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .faq-contents .faq-item .faq-title {
    font-size: 20px;
    padding: 20px 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .faq-contents .faq-item .faq-title {
    font-size: 20px;
    padding: 20px 20px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .faq-contents .faq-item .faq-title {
    font-size: 18px;
    line-height: 20px;
    padding: 20px 20px;
  }
}
@media only screen and (max-width: 480px) {
  .faq-contents .faq-item .faq-title {
    font-size: 16px;
    padding: 15px 10px;
  }
}
.faq-contents .faq-item .faq-title::after {
  font-family: "Line Awesome Free";
  font-weight: 900;
  content: "";
  color: var(--light-color);
  position: absolute;
  right: 40px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 18px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (min-width: 1600px) and (max-width: 1799.98px) {
  .faq-contents .faq-item .faq-title::after {
    right: 30px;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .faq-contents .faq-item .faq-title::after {
    right: 20px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .faq-contents .faq-item .faq-title::after {
    right: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .faq-contents .faq-item .faq-title::after {
    right: 20px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .faq-contents .faq-item .faq-title::after {
    right: 20px;
  }
}
@media only screen and (max-width: 480px) {
  .faq-contents .faq-item .faq-title::after {
    right: 10px;
  }
}
.faq-contents .faq-item .faq-panel {
  display: none;
  padding: 30px 40px;
}
@media (min-width: 1600px) and (max-width: 1799.98px) {
  .faq-contents .faq-item .faq-panel {
    padding: 20px 30px;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .faq-contents .faq-item .faq-panel {
    padding: 20px 20px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .faq-contents .faq-item .faq-panel {
    padding: 20px 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .faq-contents .faq-item .faq-panel {
    padding: 20px 20px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .faq-contents .faq-item .faq-panel {
    padding: 20px 20px;
  }
}
.faq-contents .faq-item .faq-panel .faq-para {
  font-size: 20px;
  line-height: 40px;
  color: var(--light-color);
}
@media (min-width: 1600px) and (max-width: 1799.98px) {
  .faq-contents .faq-item .faq-panel .faq-para {
    font-size: 19px;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .faq-contents .faq-item .faq-panel .faq-para {
    font-size: 18px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .faq-contents .faq-item .faq-panel .faq-para {
    font-size: 18px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .faq-contents .faq-item .faq-panel .faq-para {
    font-size: 18px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .faq-contents .faq-item .faq-panel .faq-para {
    font-size: 17px;
  }
}
@media only screen and (max-width: 575.98px) {
  .faq-contents .faq-item .faq-panel .faq-para {
    font-size: 16px;
  }
}

/*=========================================================
          [ 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: 320px) 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: 700;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  padding: 8px 20px;
  display: none;
  font-size: 14px;
}

/* @media (max-width: 767.98px) {
    .table-responsive.table-responsive-sm thead {
        display: none;
    }
    .table-responsive.table-responsive-sm [data-label]::before {
        display: block;
    }
    .table-responsive.table-responsive-sm 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 thead {
    display: none;
  }

  .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: 1199.98px) {
    .table-responsive.table-responsive-lg thead {
        display: none;
    }
    .table-responsive.table-responsive-lg [data-label]::before {
        display: block;
    }
    .table-responsive.table-responsive-lg tr td {
        display: block;
        text-align: right;
        padding-right: 5px;
    }
}

@media (max-width: 1399.98px) {
    .table-responsive.table-responsive-xl thead {
        display: none;
    }
    .table-responsive.table-responsive-xl [data-label]::before {
        display: block;
    }
    .table-responsive.table-responsive-xl tr td {
        display: block;
        text-align: right;
        padding-right: 5px;
    }
} */
/* 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: -9px;
  left: -3px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  z-index: 1;
  background: var(--main-color-one);
  cursor: default;
}
.price-range-slider .ui-range-slider.noUi-target .noUi-handle::before {
  content: "";
  position: absolute;
  background: #fff;
  height: 5px;
  width: 5px;
  border-radius: 50%;
  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-one);
}
.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(--light-color);
}
.price-range-slider .ui-range-slider-footer .ui-range-values .ui-price-title {
  font-size: 16px;
  font-weight: 500;
  margin-right: 10px;
}
.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: 16px;
}
.noUi-background {
  background: #DDDDDD;
}


/*search css */
.search-open-form {
    position: relative;
}
.search-suggestions {
    max-height: 400px;
    overflow-y: auto;
}
.search-suggestions-inner {
    padding: 20px;
    background: var(--section-bg-3);
}
.search-suggestions-title {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--heading-color);
}

.product-suggestion-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.product-suggestion-list-item {
    width: calc(100% / 6 - 20px);
}

@media screen and (max-width: 1799px) and (min-width: 1400px) {
    .product-suggestion-list-item {
        width: calc(100% / 5 - 19.2px);
    }
}

@media screen and (max-width: 1399px) and (min-width: 1200px) {
    .product-suggestion-list-item {
        width: calc(100% / 4 - 18px);
    }
}

@media screen and (max-width: 1199px) and (min-width: 992px) {
    .product-suggestion-list-item {
        width: calc(100% / 3 - 16px);
    }
}

@media screen and (max-width: 991px) and (min-width: 576px) {
    .product-suggestion-list-item {
        width: calc(100% / 2 - 12px);
    }
}

@media only screen and (max-width: 575px) {
    .product-suggestion-list-item {
        width: calc(100% / 1 - 0px);
    }
}

.product-suggestion-list-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.product-suggestion-list-link .product-image {
    max-width: 100px;
    flex-shrink: 0;
}

.product-suggestion-list-link .product-image img {
    border-radius: 10px;
}

.product-suggestion-list-link .product-info {
    flex-grow: 1;
}

.product-suggestion-list-link .product-name {
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    color: var(--heading-color);
}

.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;
}

.single-blog-two:hover .single-blog-two-thumbs img {
    /* IE 9 */
    -webkit-transform: scaleY(1.2) rotate(5deg);
    /* Chrome, Safari, Opera */
    transform: scaleY(1.2) rotate(5deg);
}
.single-blog-two-thumbs {
    position: relative;
    z-index: 1;
    overflow: hidden;
    -webkit-transition: 300ms;
    transition: 300ms;
}
.single-blog-two-thumbs img {
    -webkit-transition: 300ms;
    transition: 300ms;
}
.single-blog-two-thumbs-date {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 9;
    background-color: var(--main-color-two);
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    padding: 5px 15px;
}
.single-blog-two-thumbs-date a {
    display: block;
    text-align: center;
}
.single-blog-two-thumbs-date .date {
    border-bottom: 1px solid #fff;
    display: block;
}
.single-blog-two-contents-title {
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
    .single-blog-two-contents-title {
        font-size: 22px;
        line-height: 28px;
    }
}
.single-blog-two-contents-tags {
    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;
}
.single-blog-two-contents-tags-item {
    font-size: 16px;
    color: var(--extra-light-color);
    position: relative;
}
.single-blog-two-contents-tags-item i {
    color: var(--main-color-two);
}
.single-blog-two-contents-tags-item a:hover {
    color: var(--main-color-two);
}
.single-blog-two-contents-tags-item:not(:last-child) {
    padding-right: 20px;
}
.single-blog-two-contents-tags-item:not(:first-child) {
    padding-left: 20px;
}
.single-blog-two-contents-tags-item:not(:first-child)::before {
    position: absolute;
    content: "";
    height: 10px;
    width: 10px;
    background-color: var(--main-color-two);
    border-radius: 50%;
    top: 50%;
    left: -5px;
    /* IE 9 */
    -webkit-transform: translateY(-50%);
    /* Chrome, Safari, Opera */
    transform: translateY(-50%);
}

.flex-blog-height {
    width: 580px;
    height: 420px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
    .flex-blog-height {
        width: 400px;
        height: 300px;
    }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .flex-blog-height {
        width: 320px;
        height: 280px;
    }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    .flex-blog-height {
        width: 250px;
        height: 290px;
    }
}
@media (min-width: 300px) and (max-width: 991.98px) {
    .flex-blog-height {
        width: 250px;
        height: 290px;
    }
}
@media only screen and (max-width: 375px) {
    .flex-blog-height {
        width: 100%;
    }
}

.flex-blog-height-two {
    width: 400px;
    height: 350px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
    .flex-blog-height-two {
        width: 220px;
        height: 320px;
    }
}
@media only screen and (max-width: 480px) {
    .flex-blog-height-two {
        width: 100%;
    }
}

.single-flex-blog {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    .single-flex-blog {
        gap: 15px;
    }
}
@media (min-width: 300px) and (max-width: 991.98px) {
    .single-flex-blog {
        gap: 15px;
    }
}
@media only screen and (max-width: 575.98px) {
    .single-flex-blog {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        display: block !important;
    }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
    .single-flex-blog.style-02 {
        gap: 20px;
    }
}
.single-flex-blog.style-02 .single-flex-blog-contents-title {
    font-size: 26px;
    line-height: 36px;
}
@media only screen and (max-width: 480px) {
    .single-flex-blog.style-02 .single-flex-blog-contents-title {
        font-size: 24px;
    }
}
@media only screen and (max-width: 767.98px) {
    .single-flex-blog.style-02 {
        display: block;
    }
}
@media only screen and (max-width: 767.98px) {
    .single-flex-blog.style-02 .single-flex-blog-thumbs {
        margin-bottom: 20px;
        margin: 0 0 30px;
    }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
    .single-flex-blog.style-02 .single-flex-blog-contents-para {
        display: -webkit-box;
        overflow: hidden;
        -webkit-line-clamp: 4;
        text-overflow: ellipsis;
        -webkit-box-orient: vertical;
    }
}
@media only screen and (max-width: 575.98px) {
    .single-flex-blog-thumbs {
        margin-bottom: 20px;
        margin: 0 0 30px;
    }
}
.single-flex-blog-contents {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.single-flex-blog-contents-dates {
    font-size: 16px;
    color: var(--extra-light-color);
    line-height: 28px;
}
.single-flex-blog-contents-title {
    font-size: 36px;
    line-height: 42px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
    .single-flex-blog-contents-title {
        font-size: 28px;
        line-height: 32px;
    }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .single-flex-blog-contents-title {
        font-size: 28px;
        line-height: 32px;
    }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    .single-flex-blog-contents-title {
        font-size: 26px;
        line-height: 32px;
    }
}
@media (min-width: 300px) and (max-width: 991.98px) {
    .single-flex-blog-contents-title {
        font-size: 26px;
        line-height: 32px;
    }
}
@media only screen and (max-width: 767.98px) {
    .single-flex-blog-contents-title {
        display: -webkit-box;
        overflow: hidden;
        -webkit-line-clamp: 2;
        text-overflow: ellipsis;
        -webkit-box-orient: vertical;
    }
}
@media only screen and (max-width: 480px) {
    .single-flex-blog-contents-title {
        font-size: 24px;
    }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .single-flex-blog-contents-para {
        display: -webkit-box;
        overflow: hidden;
        -webkit-line-clamp: 3;
        text-overflow: ellipsis;
        -webkit-box-orient: vertical;
    }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    .single-flex-blog-contents-para {
        display: -webkit-box;
        overflow: hidden;
        -webkit-line-clamp: 4;
        text-overflow: ellipsis;
        -webkit-box-orient: vertical;
    }
}
@media (min-width: 300px) and (max-width: 991.98px) {
    .single-flex-blog-contents-para {
        display: -webkit-box;
        overflow: hidden;
        -webkit-line-clamp: 3;
        text-overflow: ellipsis;
        -webkit-box-orient: vertical;
    }
}

/* Brand Logo */
.single-brand-item:hover img {
    -webkit-filter: invert(0%) sepia(100%) saturate(71%) hue-rotate(0deg) brightness(6%) contrast(53%);
    filter: invert(0%) sepia(100%) saturate(71%) hue-rotate(0deg) brightness(6%) contrast(53%);
}
.single-brand-item img {
    -webkit-transition: 200ms;
    transition: 200ms;
}

/* 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;
}


