@charset "UTF-8";
/* ---------------------------------------------------------
    * Name: Vineta - Multipurpose eCommerce
    * Version: 1.0.1
    * Author: Themesflat
    * Author URI: http://themesflat.com 

	* Abstracts variable
    
    * Reset css styles

    * Components

        * header
        * footer
        * tabs
        * slider banner
        * button
        * form
        * drop down
        * carousel
        * avatar
        * pop up
        * box icon
        * hover
        * collection
        * product
        * blog
        * testimonial
        * lookbook
        * accordion
        * brand
        * zoom
        * shop
        * cart
        * account
        
    * section

    * Responsive

    * RTL
 ------------------------------------------------------------------------------ */
/*--------- Abstracts variable ---------- */
:root {
  --primary: #ff6f61;
  --primary-2: #ff9a90;
  --primary-3: #ffc5c0;
  --primary-4: #fff1ef;
  --primary-green: #39ae52;
  --secondary: #4b4ded;
  --secondary-2: rgba(75, 77, 237, 0.75);
  --secondary-3: rgba(75, 77, 237, 0.5);
  --secondary-4: #efeffd;
  --dark: #000000;
  --dark-2: #101828;
  --dark-3: #282828;
  --dark-4: #1c1c1c;
  --white: #ffffff;
  --white-2: #edeae5;
  --purple: #9148ff;
  --purple-2: #f6efff;
  --violet: #a83fff;
  --violet-2: #a474ff;
  --success: #31d0aa;
  --success-2: rgba(49, 208, 170, 0.75);
  --success-3: rgba(49, 208, 170, 0.5);
  --success-4: rgba(49, 208, 170, 0.1);
  --light-green: #00ba00;
  --text: #545454;
  --text-2: #393939;
  --text-3: #667085;
  --text-4: #757575;
  --line: #ebebeb;
  --line-2: #f2f4f7;
  --line-3: #c9c9c9;
  --line-4: #e4e7ec;
  --line-5: rgba(126, 126, 126, 0.2);
  --surface: #f5f5f5;
  --surface-2: #f7f7f7;
  --surface-3: #f3f3f3;
  --shadow-1: 0px 4px 20px 0px #0000001a;
  --gradient-1: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  --gradient-2: linear-gradient(180deg, rgba(231, 236, 210, 0) 0%, #e7ecd2 100%);
  --backdrop: rgba(0, 0, 0, 0.4);
  --bg-scrollbar-track: #f1f1f1;
  --bg-scrollbar-thumb: #c1c1c1;
  --rgba-white: rgba(255, 255, 255, 0.8);
  --rgba-dark: rgba(0, 0, 0, 0.6);
  --rgba-dark-2: rgba(0, 0, 0, 0.8);
  --rgba-dark-3: rgba(0, 0, 0, 0.2);
  --yellow: #ffc108;
  --yellow-2: #ff9a00;
  --brown: #8f5252;
  --red: #e21b1b;
}
.primary-2 {
  --primary: #39ae52;
}
.primary-3 {
  --primary: #d62c2c;
}
/*---------- Reset css styles ----------- */
textarea, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"] {
  border: 1px solid var(--line);
  outline: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  font-size: 14px;
  line-height: 20px;
  border-radius: 6px;
  padding: 14px 20px;
  width: 100%;
  background: var(--white);
  color: var(--rgba-dark-2);
  height: 50px;
  font-weight: 400;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
textarea:hover, textarea:focus, input[type="text"]:hover, input[type="text"]:focus, input[type="password"]:hover, input[type="password"]:focus, input[type="datetime"]:hover, input[type="datetime"]:focus, input[type="datetime-local"]:hover, input[type="datetime-local"]:focus, input[type="date"]:hover, input[type="date"]:focus, input[type="month"]:hover, input[type="month"]:focus, input[type="time"]:hover, input[type="time"]:focus, input[type="week"]:hover, input[type="week"]:focus, input[type="number"]:hover, input[type="number"]:focus, input[type="email"]:hover, input[type="email"]:focus, input[type="url"]:hover, input[type="url"]:focus, input[type="search"]:hover, input[type="search"]:focus, input[type="tel"]:hover, input[type="tel"]:focus, input[type="color"]:hover, input[type="color"]:focus {
  border-color: var(--rgba-dark-2);
}
textarea.style-2, input[type="text"].style-2, input[type="password"].style-2, input[type="datetime"].style-2, input[type="datetime-local"].style-2, input[type="date"].style-2, input[type="month"].style-2, input[type="time"].style-2, input[type="week"].style-2, input[type="number"].style-2, input[type="email"].style-2, input[type="url"].style-2, input[type="search"].style-2, input[type="tel"].style-2, input[type="color"].style-2 {
  padding-left: 12px;
  padding-right: 12px;
}
textarea::placeholder, input[type="text"]::placeholder, input[type="password"]::placeholder, input[type="datetime"]::placeholder, input[type="datetime-local"]::placeholder, input[type="date"]::placeholder, input[type="month"]::placeholder, input[type="time"]::placeholder, input[type="week"]::placeholder, input[type="number"]::placeholder, input[type="email"]::placeholder, input[type="url"]::placeholder, input[type="search"]::placeholder, input[type="tel"]::placeholder, input[type="color"]::placeholder {
  color: rgba(102, 112, 133, 0.8);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
textarea {
  height: 160px;
  resize: none;
}
select {
  outline: 0;
}
/* Placeholder color */
::-webkit-input-placeholder {
  color: var(--text-3);
}
:-moz-placeholder {
  color: var(--text-3);
}
::-moz-placeholder {
  color: var(--text-3);
  opacity: 1;
}
button {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: var(--dark);
  border: 1px solid var(--dark);
  color: var(--white);
  padding: 13px 32px;
  border-radius: 99px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}
button .icon {
  font-size: 22px;
}
button:focus-within, button:focus-visible, button:focus {
  outline: none;
}
/* Typography
-------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  color: var(--dark);
  font-weight: 500;
}
h1, .display-2xl {
  font-size: 72px;
  line-height: 1.4;
  letter-spacing: -0.02em;
}
.display-2xl-2 {
  font-size: 69px;
  line-height: 1.4;
}
.display-xl-2 {
  font-size: 64px;
  line-height: 1.4;
}
h2, .display-xl {
  font-size: 60px;
  line-height: 1.4;
  letter-spacing: -0.02em;
}
h3, .display-lg {
  font-size: 48px;
  line-height: 1.4;
  letter-spacing: -0.02em;
}
.display-lg-2 {
  font-size: 40px;
  line-height: 48px;
}
.display-lg-3 {
  font-size: 48px;
  line-height: 1.4;
  letter-spacing: -0.02em;
}
.display-lg-4 {
  font-size: 39px;
  line-height: 1.4;
}
.display-lg-5 {
  font-size: 49px;
  line-height: 1.4;
}
h4, .display-md {
  font-size: 36px;
  line-height: 1.4;
  letter-spacing: -0.02em;
}
.display-md-2 {
  font-size: 32px;
  line-height: 1.4;
}
.display-md-3 {
  font-size: 34px;
  line-height: 1.4;
}
h5, .display-sm {
  font-size: 30px;
  line-height: 1.4;
}
h6, .display-xs {
  font-size: 24px;
  line-height: 1.4;
}
.text-xl {
  font-size: 20px;
  line-height: 1.4;
}
.text-xl-2 {
  font-size: 20px;
  line-height: 1.4;
}
.text-xl-3 {
  font-size: 20px;
  line-height: 1.4;
}
.text-lg {
  font-size: 18px;
  line-height: 1.4;
}
.text-md {
  font-size: 16px;
  line-height: 1.4;
}
.text-sm {
  font-size: 14px;
  line-height: 1.4;
}
.text-xs {
  font-size: 12px;
  line-height: 1.4;
}
.text-xxs {
  font-size: 10px;
  line-height: 1.4;
}
.text-caption {
  font-size: 12px;
  line-height: 1.4;
}
.fs-84 {
  font-size: 84px;
  line-height: 84px;
}
.body-text {
  font-size: 16px;
  line-height: 1.4;
}
.body-text-2 {
  font-size: 16px;
  line-height: 1.4;
}
.fs-7 {
  font-size: 7px !important;
}
.fs-8 {
  font-size: 8px !important;
}
.fs-10 {
  font-size: 10px !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-16 {
  font-size: 16px !important;
}
.fs-18 {
  font-size: 18px !important;
}
.fs-20 {
  font-size: 20px !important;
}
.lh-32px {
  line-height: 32px !important;
}
b, strong {
  font-weight: bolder;
}
video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.text-primary {
  color: var(--primary) !important;
}
.text-primary-2 {
  color: var(--primary-2) !important;
}
.text-primary-3 {
  color: var(--primary-3) !important;
}
.text-primary-4 {
  color: var(--primary-4) !important;
}
.text-secondary {
  color: var(--secondary) !important;
}
.text-secondary-2 {
  color: var(--secondary-2) !important;
}
.text-secondary-3 {
  color: var(--secondary-3) !important;
}
.text-secondary-4 {
  color: var(--secondary-4) !important;
}
.text-dark {
  color: var(--dark) !important;
}
.text-dark-1 {
  color: var(--rgba-dark) !important;
}
.text-dark-2 {
  color: var(--dark-2) !important;
}
.text-dark-3 {
  color: var(--dark-3) !important;
}
.text-dark-4 {
  color: var(--rgba-dark-2) !important;
}
.text-dark-5 {
  color: var(--dark-4) !important;
}
.text-dark-6 {
  color: #222222 !important;
}
.text-dark-7 {
  color: #1F1F1F !important;
}
.text-dark-8 {
  color: #252525 !important;
}
.text-dark-9 {
  color: #1C1C1C99 !important;
}
.text-white {
  color: var(--white) !important;
}
.text-success {
  color: var(--success) !important;
}
.text-success-2 {
  color: var(--success-2) !important;
}
.text-success-3 {
  color: var(--success-3) !important;
}
.text-success-4 {
  color: var(--success-4) !important;
}
.text-success-5 {
  color: #39b44b !important;
}
.text-main {
  color: var(--text) !important;
}
.text-main-2 {
  color: var(--text-2) !important;
}
.text-main-3 {
  color: #504545 !important;
}
.text-main-4 {
  color: #818181 !important;
}
.text-grey {
  color: #acacac !important;
}
.text-grey-2 {
  color: #747474 !important;
}
.text-grey-3 {
  color: #777777 !important;
}
.text-grey-4 {
  color: #FFFFFF99 !important;
}
.text-grey-5 {
  color: #A9A9A9 !important;
}
.text-grey-6 {
  color: #494949 !important;
}
.text-grey-7 {
  color: #444444 !important;
}
.text-green {
  color: #98ab23 !important;
}
.text-green-2 {
  color: #496048 !important;
}
.text-green-3 {
  color: #073C4E !important;
}
.text-green-4 {
  color: #108BB4 !important;
}
.text-yellow-2 {
  color: var(--yellow-2) !important;
}
.text-yellow-3 {
  color: #a48829 !important;
}
.text-yellow-4 {
  color: #FFC108 !important;
}
.text-brown {
  color: var(--brown) !important;
}
.text-line-3 {
  color: var(--line-3) !important;
}
.text-red {
  color: var(--red) !important;
}
.text-red-2 {
  color: #ff4a2f !important;
}
.text-red-3 {
  color: #C22F21 !important;
}
.text-blue {
  color: #4378ff !important;
}
.text-dark-orange {
  color: #f6620c !important;
}
.text-dark-purple {
  color: #5135af !important;
}
.text-dark-purple-1 {
  color: #6638FE !important;
}
.text-dark-purple-2 {
  color: #A304FF !important;
}
.bg-primary {
  background-color: var(--primary) !important;
}
.bg-primary-2 {
  background-color: var(--primary-2) !important;
}
.bg-primary-3 {
  background-color: var(--primary-3) !important;
}
.bg-primary-4 {
  background-color: var(--primary-4) !important;
}
.bg-secondary {
  background-color: var(--secondary) !important;
}
.bg-secondary-2 {
  background-color: var(--secondary-2) !important;
}
.bg-secondary-3 {
  background-color: var(--secondary-2) !important;
}
.bg-secondary-4 {
  background-color: var(--secondary-2) !important;
}
.bg-dark {
  background-color: var(--dark) !important;
}
.bg-dark-2 {
  background-color: var(--dark-2) !important;
}
.bg-dark-3 {
  background-color: #292929 !important;
}
.bg-dark-4 {
  background-color: #2c2c2c !important;
}
.bg-dark-5 {
  background-color: #313030 !important;
}
.bg-dark-6 {
  background-color: #55514d !important;
}
.bg-dark-7 {
  background-color: #222222 !important;
}
.bg-grey {
  background-color: #acacac !important;
}
.bg-grey-2 {
  background-color: #f2f4f7 !important;
}
.bg-grey-3 {
  background-color: #546176 !important;
}
.bg-grey-4 {
  background-color: #d9d9d9 !important;
}
.bg-grey-5 {
  background-color: #dad9d4 !important;
}
.bg-grey-6 {
  background-color: #57627b !important;
}
.bg-grey-7 {
  background-color: #edefed !important;
}
.bg-grey-8 {
  background-color: #F4F4F4 !important;
}
.bg-grey-9 {
  background-color: #FBFBFBCC !important;
}
.bg-light-grey {
  background-color: #f3f2ee !important;
}
.bg-light-grey-2 {
  background-color: #f0f0f0 !important;
}
.bg-white {
  background-color: var(--white) !important;
}
.bg-surface {
  background-color: var(--surface) !important;
}
.bg-surface-2 {
  background-color: var(--surface-2) !important;
}
.bg-surface-3 {
  background-color: #fffcf6 !important;
}
.bg-surface-4 {
  background-color: #f3f2ee !important;
}
.bg-surface-5 {
  background-color: #fffcfa !important;
}
.bg-line {
  background-color: var(--line) !important;
}
.bg-pink {
  background-color: #ffb8b8 !important;
}
.bg-pink-2 {
  background-color: #9d6e84 !important;
}
.bg-pink-3 {
  background-color: #ffe7e5 !important;
}
.bg-pink-4 {
  background-color: #ffe8e8 !important;
}
.bg-light-pink {
  background-color: #ff6969 !important;
}
.bg-light-pink-2 {
  background-color: #d47b62 !important;
}
.bg-light-pink-3 {
  background-color: #dcd3d4 !important;
}
.bg-light-pink-4 {
  background-color: #ffa3e8 !important;
}
.bg-light-pink-5 {
  background-color: #fddcc6 !important;
}
.bg-light-pink-6 {
  background-color: #ffa9a9 !important;
}
.bg-light-pink-7 {
  background-color: #f7d8d3 !important;
}
.bg-light-pink-8 {
  background-color: #ffa6a6 !important;
}
.bg-light-pink-9 {
  background-color: #fc9999 !important;
}
.bg-light-pink-10 {
  background-color: #facde3 !important;
}
.bg-light-pink-11 {
  background-color: #ffe1e1 !important;
}
.bg-light-pink-12 {
  background-color: #fee9ff !important;
}
.bg-dark-pink {
  background-color: #c3466d !important;
}
.bg-light-green {
  background-color: #7c8c47 !important;
}
.bg-light-green-2 {
  background-color: #74da30 !important;
}
.bg-light-green-3 {
  background-color: #c4c9b3 !important;
}
.bg-light-green-4 {
  background-color: #c1c285 !important;
}
.bg-light-green-5 {
  background-color: #e1ece4 !important;
}
.bg-light-green-6 {
  background-color: #c2ffc8 !important;
}
.bg-light-green-7 {
  background-color: #e9ffe4 !important;
}
.bg-light-green-8 {
  background-color: #89aa87 !important;
}
.bg-light-green-9 {
  background-color: #a0d57d !important;
}
.bg-light-green-10 {
  background-color: #e7ecd2 !important;
}
.bg-light-green-11 {
  background-color: #d9ffde !important;
}
.bg-green {
  background-color: #3f7b25 !important;
}
.bg-green-2 {
  background-color: #39b44b !important;
}
.bg-green-3 {
  background-color: #3bd336 !important;
}
.bg-green-4 {
  background-color: #409724 !important;
}
.bg-dark-green {
  background-color: #185136 !important;
}
.bg-dark-green-2 {
  background-color: #2d613d !important;
}
.bg-dark-green-3 {
  background-color: #526821 !important;
}
.bg-dark-green-4 {
  background-color: #253321 !important;
}
.bg-dark-green-5 {
  background-color: #5e6f5e !important;
}
.bg-dark-green-6 {
  background-color: #2a4529 !important;
}
.bg-dark-green-7 {
  background-color: #219913 !important;
}
.bg-dark-green-8 {
  background-color: #246B64 !important;
}
.bg-olive-green {
  background-color: #808f65 !important;
}
.bg-violet {
  background-color: var(--violet) !important;
}
.bg-purple {
  background-color: var(--purple) !important;
}
.bg-purple-2 {
  background-color: #7c727b !important;
}
.bg-purple-3 {
  background-color: #aa88c5 !important;
}
.bg-purple-4 {
  background-color: #c79cff !important;
}
.bg-purple-5 {
  background-color: #f0e5ff !important;
}
.bg-violet-2 {
  background-color: var(--violet-2) !important;
}
.bg-violet-3 {
  background-color: #591399 !important;
}
.bg-blue {
  background-color: #c2d5ff !important;
}
.bg-blue-2 {
  background-color: #386373 !important;
}
.bg-sky-blue {
  background-color: #3080a2 !important;
}
.bg-teal-blue {
  background-color: #4597a4 !important;
}
.bg-light-purple {
  background-color: #8f4a58 !important;
}
.bg-light-purple-2 {
  background-color: #a95354 !important;
}
.bg-light-purple-3 {
  background-color: #ded3de !important;
}
.bg-light-purple-6 {
  background-color: #fee9ff !important;
}
.bg-light-purple-7 {
  background-color: #e5e3ff !important;
}
.bg-light-purple-8 {
  background-color: #e3e6ff !important;
}
.bg-light-purple-9 {
  background-color: #ebe9ff !important;
}
.bg-light-purple-10 {
  background-color: #f2e8ff !important;
}
.bg-light-purple-11 {
  background-color: #f6efff !important;
}
.bg-light-blue {
  background-color: #5192f4 !important;
}
.bg-light-blue-2 {
  background-color: #add8e6 !important;
}
.bg-light-blue-3 {
  background-color: #d9e7fc !important;
}
.bg-light-blue-4 {
  background-color: #e8efff !important;
}
.bg-brown {
  background-color: #7e6449 !important;
}
.bg-brown-2 {
  background-color: #65552d !important;
}
.bg-brown-3 {
  background-color: #bf9332 !important;
}
.bg-brown-4 {
  background-color: #dab2b2 !important;
}
.bg-brown-5 {
  background-color: #a46c67 !important;
}
.bg-brown-6 {
  background-color: #603d38 !important;
}
.bg-brown-7 {
  background-color: #b58e68 !important;
}
.bg-brown-8 {
  background-color: #784e39 !important;
}
.bg-brown-9 {
  background-color: #968c83 !important;
}
.bg-brown-10 {
  background-color: #776041 !important;
}
.bg-brown-11 {
  background-color: #866022 !important;
}
.bg-brown-12 {
  background-color: #EEE7DA !important;
}
.bg-brown-13 {
  background-color: #8C320E !important;
}
.bg-brown-14 {
  background-color: #BB8F60 !important;
}
.bg-brown-15 {
  background-color: #A47551 !important;
}
.bg-brown-16 {
  background-color: #BAB1B2 !important;
}
.bg-brown-17 {
  background-color: #420008 !important;
}
.bg-brown-18 {
  background-color: #995413 !important;
}
.bg-reddish-brown {
  background-color: #b06563 !important;
}
.bg-terra-cotta {
  background-color: #ac6664 !important;
}
.bg-yellow {
  background-color: #bbb355 !important;
}
.bg-yellow-2 {
  background-color: #ece093 !important;
}
.bg-yellow-3 {
  background-color: #f1ca41 !important;
}
.bg-yellow-4 {
  background-color: #fb9a10 !important;
}
.bg-yellow-5 {
  background-color: #F3CA54 !important;
}
.bg-yellow-6 {
  background-color: #FFF8EB !important;
}
.bg-yellow-7 {
  background-color: #E9E4DC !important;
}
.bg-yellow-8 {
  background-color: #F3F1D9 !important;
}
.bg-yellow-9 {
  background-color: #FFF8E5 !important;
}
.bg-light-orange {
  background-color: #fb9a74 !important;
}
.bg-light-orange-2 {
  background-color: #f59c11 !important;
}
.bg-light-orange-3 {
  background-color: #ffdcc2 !important;
}
.bg-light-orange-4 {
  background-color: #f5e1c7 !important;
}
.bg-light-orange-5 {
  background-color: #f5a55f !important;
}
.bg-beige {
  background-color: #e3d7c6 !important;
}
.bg-beige-2 {
  background-color: #ddcfb7 !important;
}
.bg-light-beige {
  background-color: #e8dcd0 !important;
}
.bg-light-beige-2 {
  background-color: #e0d8d4 !important;
}
.bg-light-beige-3 {
  background-color: #fff5dd !important;
}
.bg-red {
  background-color: #ff4848 !important;
}
.bg-red-2 {
  background-color: #c4212a !important;
}
.bg-orange {
  background-color: #ffdec8 !important;
}
.bg-orange-2 {
  background-color: #ff9760 !important;
}
.bg-orange-3 {
  background-color: #ff4a2f !important;
}
.bg-gradient-2 {
  background: var(--gradient-2);
}
.bg-gradient-3 {
  background: linear-gradient(270deg, #edd1ff 0%, #fff4d1 100%);
}
.bg-gradient-4 {
  background: linear-gradient(270deg, #6adf80 0%, #b3de3c 100%);
}
.bg-gradient-5 {
  background: linear-gradient(143.24deg, #71BC87 0%, #108AB4 85.26%) !important;
}
.bg-gradient-6 {
  background: linear-gradient(90deg, #497E4A 0%, #B17739 100%) !important;
}
.bg-gradient-7 {
  background: linear-gradient(180deg, #00B0E9 0%, #004055 100%);
}
.bg-gradient-8 {
  background: linear-gradient(90deg, #FFECD4 0%, #E5E1FF 100%);
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.grid-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.line {
  border: 1px solid var(--line) !important;
}
.line-2 {
  border: 1px solid var(--line-5) !important;
}
.line-3 {
  border-top: 1px solid #A4A4A44D !important;
}
.line-4 {
  border: 1px solid #0000004D !important;
}
.line-bt {
  border-bottom: 1px solid var(--line) !important;
}
.line-top {
  border-top: 1px solid var(--line) !important;
}
.line-black {
  border: 1px solid var(--dark) !important;
}
.line-primary {
  border: 1px solid var(--primary) !important;
}
.line-purple {
  border: 1px solid var(--purple) !important;
}
.line-2 {
  border: 1px solid #D1D1D1 !important;
}
.o-hidden {
  overflow: hidden !important;
}
.gap-4 {
  gap: 4px !important;
}
.gap-6 {
  gap: 6px !important;
}
.gap-8 {
  gap: 8px !important;
}
.gap-10 {
  gap: 10px !important;
}
.gap-21 {
  gap: 21px !important;
}
.gap-48 {
  gap: 15px 48px !important;
}
.px_15 {
  padding-left: 15px;
  padding-right: 15px;
}
.py-4 {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
}
.pt-24 {
  padding-top: 24px;
}
.box-center {
  position: absolute;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
}
.place-content-center {
  place-content: center;
}
.mt_5 {
  margin-top: 5px !important;
}
.mt_10 {
  margin-top: 10px !important;
}
.mt_15 {
  margin-top: 15px !important;
}
.mt_18 {
  margin-top: 18px !important;
}
.mt_30 {
  margin-top: 30px !important;
}
.mt_40 {
  margin-top: 40px;
}
.mt--30 {
  margin-top: -30px !important;
}
.mb_4 {
  margin-bottom: 4px;
}
.mb_6 {
  margin-bottom: 6px;
}
.mb_8 {
  margin-bottom: 8px;
}
.mb_10 {
  margin-bottom: 10px;
}
.mb_12 {
  margin-bottom: 12px;
}
.mb_15 {
  margin-bottom: 15px;
}
.mb_16 {
  margin-bottom: 16px;
}
.mb_20 {
  margin-bottom: 20px;
}
.mb_24 {
  margin-bottom: 24px;
}
.mb_32 {
  margin-bottom: 32px;
}
.mb_40 {
  margin-bottom: 40px;
}
.mx_40 {
  margin-left: 40px;
  margin-right: 40px;
}
.my_24 {
  margin-top: 24px;
  margin-bottom: 24px;
}
.my_20 {
  margin-top: 20px;
  margin-bottom: 20px;
}
.pt_0 {
  padding-top: 0px !important;
}
.pb_0 {
  padding-bottom: 0px !important;
}
[data-grid="grid-1"] {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
}
[data-grid="grid-2"] {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr 1fr;
}
[data-grid="grid-3"] {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, 1fr);
}
[data-grid="grid-4"] {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(4, 1fr);
}
[data-grid="grid-5"] {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(5, 1fr);
}
[data-grid="grid-6"] {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(6, 1fr);
}
[data-grid="grid-7"] {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(7, 1fr);
}
.tf-row-flex {
  display: flex;
  flex-direction: row;
  column-gap: 30px;
  row-gap: 30px;
}
.tf-grid-layout {
  display: grid;
  column-gap: 12px;
  row-gap: 24px;
}
.tf-grid-layout.tf-col-2 {
  grid-template-columns: 1fr 1fr;
}
.tf-grid-layout.tf-col-3 {
  grid-template-columns: repeat(3, 1fr);
}
.tf-grid-layout.tf-col-4 {
  grid-template-columns: repeat(4, 1fr);
}
.tf-grid-layout.tf-col-5 {
  grid-template-columns: repeat(5, 1fr);
}
.tf-grid-layout.tf-col-6 {
  grid-template-columns: repeat(6, 1fr);
}
.tf-grid-layout.tf-col-7 {
  grid-template-columns: repeat(7, 1fr);
}
.tf-grid-layout .wg-pagination {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 16px;
}
.tf-grid-layout .wd-load {
  grid-column: 1 / -1;
}
.sticky-top {
  z-index: 50;
  top: 15px;
  position: sticky;
  transition: 0.2s ease-out;
}
.wmax {
  width: max-content !important;
}
.cursor-not-allowed {
  cursor: not-allowed;
}
.cursor-auto {
  cursor: auto;
}
.text-highlight {
  -webkit-text-stroke: 1px #000;
  color: transparent !important;
  flex-direction: row-reverse;
}
.text-line-clamp-1 {
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}
.text-line-clamp-2 {
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}
.text-line-clamp-4 {
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}
.asp-ratio-2 {
  aspect-ratio: 0.832 !important;
}
.asp-ratio-1 {
  aspect-ratio: 1 !important;
}
.asp-ratio-0 {
  aspect-ratio: 0 !important;
}
.initial-child-container {
  flex: 0 0 auto;
  display: flex;
  min-width: auto;
  flex-direction: row;
  align-items: center;
}
.line-top-container {
  position: relative;
}
.line-top-container::before {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  background-color: var(--line);
  height: 1px;
  width: 100%;
  max-width: 1440px;
  transform: translateX(-50%);
}
.line-bottom-container {
  position: relative;
}
.line-bottom-container::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  background-color: var(--line);
  height: 1px;
  width: 100%;
  max-width: 1440px;
  transform: translateX(-50%);
}
#scroll-top {
  position: fixed;
  display: block;
  width: 48px;
  height: 48px;
  line-height: 50px;
  border-radius: 4px;
  z-index: 1;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  overflow: hidden;
  z-index: 100;
  background-color: var(--dark);
  border: 0;
  bottom: 92px;
  right: 20px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#scroll-top.show {
  opacity: 1;
  visibility: visible;
}
#scroll-top.type-1 {
  bottom: 140px;
}
#scroll-top:hover {
  transform: translateY(-5px);
  background-color: var(--primary);
}
/* Preload 
------------------------------------------- */
.preload-container {
  display: flex;
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--white);
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 99999999999;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.spinner {
  width: 50px;
  height: 50px;
  border: 3px solid transparent;
  border-top: 3px solid var(--line);
  border-right: 3px solid var(--line);
  border-radius: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  animation: spin 0.8s infinite linear;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.flat-spacing {
  padding-top: 100px;
  padding-bottom: 100px;
}
.flat-spacing-2 {
  padding-top: 80px;
  padding-bottom: 80px;
}
.flat-spacing-3 {
  padding-top: 120px;
  padding-bottom: 120px;
}
.flat-spacing-4 {
  padding-top: 60px;
  padding-bottom: 60px;
}
.flat-spacing-5 {
  padding-top: 43px;
  padding-bottom: 43px;
}
.flat-spacing-6 {
  padding-top: 90px;
  padding-bottom: 90px;
}
.flat-spacing-7 {
  padding-top: 30px;
  padding-bottom: 30px;
}
.flat-spacing-8 {
  padding-top: 80px;
  padding-bottom: 60px;
}
.flat-spacing-9 {
  padding-top: 68px;
  padding-bottom: 68px;
}
.flat-spacing-10 {
  padding-top: 60px;
  padding-bottom: 70px;
}
.flat-spacing-11 {
  padding-top: 80px;
  padding-bottom: 127px;
}
.flat-spacing-12 {
  padding-top: 80px;
  padding-bottom: 44px;
}
.flat-spacing-13 {
  padding-top: 64px;
  padding-bottom: 100px;
}
.flat-spacing-14 {
  padding-top: 83px;
  padding-bottom: 98px;
}
.flat-spacing-14 {
  padding-top: 83px;
  padding-bottom: 98px;
}
.flat-spacing-15 {
  padding-top: 176px;
  padding-bottom: 176px;
}
.flat-spacing-16 {
  padding-top: 120px;
  padding-bottom: 80px;
}
.flat-spacing-17 {
  padding-top: 80px;
  padding-bottom: 120px;
}
.flat-spacing-18 {
  padding-top: 52px;
  padding-bottom: 52px;
}
.flat-spacing-19 {
  padding-top: 87px;
  padding-bottom: 143px;
}
.flat-spacing-20 {
  padding-top: 86px;
  padding-bottom: 86px;
}
.flat-spacing-21 {
  padding-top: 116px;
  padding-bottom: 116px;
}
.flat-spacing-22 {
  padding-top: 182px;
  padding-bottom: 120px;
}
.flat-spacing-23 {
  padding-top: 136px;
  padding-bottom: 136px;
}
.flat-spacing-24 {
  padding-top: 64px;
  padding-bottom: 80px;
}
.flat-spacing-25 {
  padding-top: 80px;
  padding-bottom: 100px;
}
.flat-spacing-26 {
  padding-top: 126px;
  padding-bottom: 80px;
}
.flat-spacing-27 {
  padding-top: 145px;
  padding-bottom: 120px;
}
.flat-spacing-28 {
  padding-top: 120px;
  padding-bottom: 80px;
}
.flat-spacing-29 {
  padding-top: 80px;
  padding-bottom: 94px;
}
.flat-spacing-30 {
  padding-top: 100px;
  padding-bottom: 58px;
}
.flat-spacing-31 {
  padding-top: 70px;
  padding-bottom: 70px;
}
.flat-spacing-32 {
  padding-top: 32px;
  padding-bottom: 32px;
}
.flat-spacing-33 {
  padding-top: 120px;
  padding-bottom: 114px;
}
.flat-spacing-34 {
  padding-top: 40px;
  padding-bottom: 124px;
}
.flat-spacing-35 {
  padding-top: 120px;
  padding-bottom: 103px;
}
.tf-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.radius-40 {
  border-radius: 40px !important;
}
.radius-16 {
  border-radius: 16px !important;
}
.radius-20 {
  border-radius: 20px !important;
}
.radius-8 {
  border-radius: 8px !important;
}
.radius-6 {
  border-radius: 6px !important;
}
.w-max-content {
  width: max-content !important;
}
.border-transparent {
  border-color: transparent !important;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.letter-0 {
  letter-spacing: 0px !important;
}
.w-1209 {
  max-width: 1209px;
  width: 100%;
}
.mw-1 {
  max-width: 1326px;
  width: 100%;
}
.text-delivered {
  color: #008a00;
}
.text-on-the-way {
  color: #ff4848;
}
.gap10 {
  gap: 10px !important;
}
.justify-items-left {
  justify-items: left !important;
}
.justify-items-right {
  justify-items: right !important;
}
.justify-items-center {
  justify-items: center !important;
}
#goTop {
  position: fixed;
  padding: 0;
  bottom: 90px;
  right: 40px;
  width: 38px;
  height: 38px;
  background: var(--white);
  color: black;
  font-size: 20px;
  text-align: center;
  line-height: 50px;
  cursor: pointer;
  border: none;
  border-radius: 3px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  box-shadow: var(--shadow-1);
  z-index: 1000;
}
#goTop .border-progress {
  position: absolute;
  top: -1px;
  left: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  border-radius: 3px;
  border: 1px solid #000000;
  mask-image: conic-gradient(#000000 var(--progress-angle, 0deg), transparent 0);
  -webkit-mask-image: conic-gradient(#000000 var(--progress-angle, 0deg), transparent 0);
  content: "";
  z-index: 1;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#goTop.show {
  opacity: 1;
  visibility: visible;
}
#goTop .icon {
  font-size: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#goTop .icon-arrow-right {
  transform: rotate(-90deg);
}
#goTop.pos1 {
  bottom: 140px;
  right: 15px;
}
.obj-contain {
  object-fit: contain !important;
}
.text-transform-none {
  text-transform: none !important;
}
.px-30 {
  padding-right: 15px;
  padding-left: 15px;
}
.text-clip {
  background: linear-gradient(0deg, #fff, #fff);
  background-size: 100% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 0.6px #5A5A5A;
}
.text-clip-1 {
  background: linear-gradient(0deg, #fff, #fff);
  background-size: 100% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 0.6px #073C4E;
}
.text-clip-2 {
  background: linear-gradient(0deg, #fff, #fff);
  background-size: 100% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px #1F1F1F;
}
.box-shadow1 {
  box-shadow: 0px 1px 6px 0px #9E9E9E40;
}
.h-46 {
  height: 46px !important;
}
.entry__specification, .entry__label {
  margin: 0 !important;
}
#error-message {
  color: var(--red);
}
#success-message {
  color: var(--success);
}
#sib-form {
  position: relative;
}
h4, .display-md {
  font-size: 36px;
  line-height: 44px;
  letter-spacing: -0.02em;
}
.display-md-2 {
  font-size: 32px;
  line-height: 38px;
}
.display-md-3 {
  font-size: 34px;
  line-height: 44px;
}
h5, .display-sm {
  font-size: 30px;
  line-height: 38px;
}
h6, .display-xs {
  font-size: 24px;
  line-height: 32px;
}
.text-xl {
  font-size: 20px;
  line-height: 30px;
}
.text-xl-2 {
  font-size: 20px;
  line-height: 24px;
}
.text-xl-3 {
  font-size: 20px;
  line-height: 32px;
}
.text-lg {
  font-size: 18px;
  line-height: 1.4;
}
/*------------ Components ---------------- */
.hover-img .img-style {
  overflow: hidden;
}
.hover-img .img-style > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: opacity 0.5s ease, transform 2s cubic-bezier(0, 0, 0.44, 1.18);
  transition: opacity 0.5s ease, transform 2s cubic-bezier(0, 0, 0.44, 1.18);
}
.hover-img:hover .img-style > img {
  -webkit-transform: scale(1.06);
  transform: scale(1.06);
}
.hover-img .img-style2 {
  overflow: hidden;
  border-radius: 10px;
}
.hover-img .img-style2 .img-hv {
  width: 100%;
  object-fit: cover;
  -webkit-transition: all 1s cubic-bezier(0.3, 1, 0.35, 1) 0s;
  transition: all 1s cubic-bezier(0.3, 1, 0.35, 1) 0s;
  transition: transform 500ms ease;
}
.hover-shine {
  overflow: hidden;
}
.hover-shine .shine-item {
  position: relative;
  overflow: hidden;
}
.hover-shine .shine-item::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}
.hover-shine:hover .shine-item::after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}
.hover-tooltip {
  position: relative;
}
.hover-tooltip .tooltip {
  position: absolute;
  white-space: nowrap;
  padding: 0px 10px;
  height: 23px;
  border-radius: 4px;
  bottom: calc(100% + 8px);
  transform: translateY(8px);
  opacity: 0;
  visibility: hidden;
  color: var(--white);
  width: max-content;
  background-color: var(--dark);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24), -webkit-transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
  z-index: 100;
  font-size: 10px;
  line-height: 23px;
  font-weight: 500;
  text-align: center;
}
.hover-tooltip .tooltip::before {
  content: "";
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  top: 18px;
  position: absolute;
  background: var(--dark);
  width: 8px;
  height: 8px;
  z-index: -1;
}
.hover-tooltip:hover .tooltip {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition-delay: 0.1s;
}
.hover-tooltip.tooltip-bot .tooltip {
  top: calc(100% + 8px);
  bottom: auto;
}
.hover-tooltip.tooltip-bot .tooltip::before {
  top: -2px;
}
.hover-tooltip.tooltip-left .tooltip {
  right: 100%;
  bottom: auto;
  transform: translateX(0px);
}
.hover-tooltip.tooltip-left .tooltip::before {
  top: 50%;
  left: auto;
  transform: translateY(-50%) rotate(45deg);
  right: -2px;
}
.hover-tooltip.tooltip-left:hover .tooltip {
  transform: translateX(-8px);
}
.hover-tooltip.tooltip-right .tooltip {
  left: 100%;
  bottom: auto;
  transform: translateX(0px);
}
.hover-tooltip.tooltip-right .tooltip::before {
  top: 50%;
  right: auto;
  transform: translateY(-50%) rotate(45deg);
  left: -2px;
}
.hover-tooltip.tooltip-right:hover .tooltip {
  transform: translateX(8px);
}
.hover-overlay {
  position: relative;
}
.hover-overlay::before {
  position: absolute;
  z-index: 2;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  top: 0;
  left: 0;
  transition: 0.4s ease 0.1s;
  opacity: 0;
  visibility: hidden;
}
.hover-overlay:hover::before {
  opacity: 1;
  visibility: visible;
}
.hover-overlay-2 .img-hv-overlay {
  position: relative;
}
.hover-overlay-2 .img-hv-overlay::before {
  content: "";
  position: absolute;
  width: 50%;
  left: 0;
  top: 0;
  height: 0%;
  background-color: var(--dark);
  opacity: 0.1;
  z-index: 2;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.hover-overlay-2 .img-hv-overlay::after {
  content: "";
  position: absolute;
  width: 50%;
  right: 0;
  bottom: 0;
  height: 0%;
  background-color: var(--dark);
  opacity: 0.1;
  z-index: 2;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.hover-overlay-2:hover .img-hv-overlay::before {
  height: 100%;
}
.hover-overlay-2:hover .img-hv-overlay::after {
  height: 100%;
  transition-delay: 0.2s;
}
.tf-check {
  position: relative;
  background: transparent;
  cursor: pointer;
  outline: 0;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  min-width: 16px;
  border: 1px solid var(--rgba-dark-3);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
}
.tf-check:checked {
  border-color: var(--primary);
  background-color: var(--primary);
}
.tf-check:checked::before {
  opacity: 1;
  transform: scale(1);
}
.tf-check::before {
  font-weight: 500;
  font-family: "icomoon";
  content: "";
  position: absolute;
  color: var(--white);
  opacity: 0;
  font-size: 7px;
  transform: scale(0);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.tf-check-rounded {
  position: relative;
  border: 1px solid #9a9a9a;
  border-radius: 50%;
  background: none;
  cursor: pointer;
  outline: 0;
  height: 10px;
  width: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-appearance: none;
}
.tf-check-rounded::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  background-color: var(--primary);
  opacity: 0;
}
.tf-check-rounded:checked {
  border-color: var(--primary);
}
.tf-check-rounded:checked::before {
  opacity: 1;
}
.tf-select {
  position: relative;
}
.tf-select select {
  width: 100%;
  padding: 9px 24px 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-size: 16px;
  line-height: 24px;
  color: var(--text);
}
.tf-select::after {
  font-family: "icomoon";
  position: absolute;
  content: "";
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  z-index: -1;
  font-weight: 400;
}
.tf-select:hover select {
  border-color: var(--rgba-dark-2);
}
.tf-select.select-square select {
  padding-top: 14px;
  padding-bottom: 14px;
  border-radius: 6px;
  font-size: 14px;
  line-height: 20px;
  color: var(--text-3);
  opacity: 0.8;
  height: 50px;
}
.tf-field {
  position: relative;
}
.tf-field .tf-input:not(:placeholder-shown) ~ .tf-field-label, .tf-field .tf-input:focus ~ .tf-field-label {
  border-radius: 3px;
  background-color: #f2f2f2;
  font-size: 12px;
  top: 0;
  padding: 0 8px;
  color: var(--rgba-dark-2);
}
.tf-field .tf-input::placeholder {
  color: transparent;
}
.tf-field .tf-field-label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
  transition: all 0.1s ease;
  cursor: text;
  font-size: 14px;
  line-height: 20px;
  color: rgba(102, 112, 133, 0.8);
}
.tf-field.style-2 .tf-input {
  padding: 24px 20px 6px;
  height: 50px;
}
.tf-field.style-2 .tf-input:not(:placeholder-shown) ~ .tf-field-label, .tf-field.style-2 .tf-input:focus ~ .tf-field-label {
  top: 6px;
  left: 20px;
  transform: none;
  background-color: transparent;
  padding: 0;
  font-size: 12px;
  line-height: 18px;
  color: rgba(102, 112, 133, 0.8);
}
.tf-field.style-3 .tf-input {
  padding-left: 12px;
  padding-right: 12px;
}
.tf-field.style-3 .tf-input:not(:placeholder-shown) ~ .tf-field-label, .tf-field.style-3 .tf-input:focus ~ .tf-field-label {
  left: 12px;
}
.tf-field.style-3 .tf-field-label {
  left: 12px;
}
.form-search {
  position: relative;
}
.form-search input {
  border-color: rgba(0, 0, 0, 0.2);
}
.form-search input::placeholder {
  color: #989898;
}
.form-search button {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  padding: 0;
  background-color: transparent;
  border: 0;
  color: var(--dark);
}
.form-search button .icon {
  font-size: 24px;
}
.form-search .btn-search {
  background-color: var(--dark);
  color: var(--white);
  padding: 7px 22px;
  right: 6px;
}
.form-search .btn-search .icon {
  font-size: 24px;
}
.form-search .btn-search:hover {
  background-color: var(--primary);
  color: var(--white);
}
.tf-form-search {
  position: relative;
}
.tf-form-search .search-suggests-results {
  border-radius: 10px;
  position: absolute;
  top: calc(100% + 5px);
  right: 0;
  left: 0;
  z-index: 1000;
  height: auto;
  background-color: var(--white);
  opacity: 0;
  visibility: hidden;
  transition: all 0.1s ease-in-out;
  max-width: 100%;
  box-shadow: var(--shadow-1);
  pointer-events: none;
}
.tf-form-search .search-suggests-results .search-suggests-results-inner {
  overflow: auto;
  overflow-x: hidden;
  padding: 20px;
  max-height: calc(95vh - 183px);
}
.tf-form-search .search-suggests-results .search-suggests-results-inner::-webkit-scrollbar {
  width: 5px;
  border-radius: 5px;
}
.tf-form-search .search-suggests-results .search-suggests-results-inner::-webkit-scrollbar-track {
  background-color: var(--line);
}
.tf-form-search .search-suggests-results .search-suggests-results-inner::-webkit-scrollbar-thumb {
  background: var(--line-3);
  border-radius: 10px;
}
.tf-form-search:hover .search-suggests-results {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.tf-form-search .search-suggests-results-inner .search-result-item {
  display: flex;
  gap: 15px;
}
.tf-form-search .search-suggests-results-inner .search-result-item .box-content {
  flex-grow: 1;
}
.tf-form-search .search-suggests-results-inner .search-result-item .box-content .title {
  color: var(--dark);
  text-align: start;
}
.tf-form-search .search-suggests-results-inner .search-result-item .box-content .price {
  color: var(--dark);
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tf-form-search .search-suggests-results-inner .search-result-item .box-content .old-price {
  text-decoration: line-through;
  color: var(--rgba-dark);
}
.tf-form-search .search-suggests-results-inner .search-result-item .box-content .new-price {
  color: var(--primary);
}
.tf-form-search .search-suggests-results-inner .search-result-item .img-box {
  width: 60px;
  height: auto;
}
.tf-form-search .search-suggests-results-inner .search-result-item .img-box img {
  width: 100%;
  height: 100%;
}
.tf-form-search .search-suggests-results-inner li:not(:last-child) .search-result-item {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: solid 1px var(--line);
}
.tf-form-search.style-2 {
  display: flex;
  align-items: center;
  max-width: 631px;
  border: 1px solid var(--line);
  border-radius: 99px;
}
.tf-form-search.style-2 .tf-select {
  border-right: 1px solid var(--line);
}
.tf-form-search.style-2 .tf-select select {
  border: 0;
  width: 166px;
  padding: 0 24px 0 20px;
}
.tf-form-search.style-2 .form-search {
  flex-grow: 1;
}
.tf-form-search.style-2 .form-search input {
  border: 0;
}
.tf-form-search.style-2 .form-search:hover .search-suggests-results {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.tf-form-search.style-2:hover .search-suggests-results {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.form-newsletter fieldset input {
  border-radius: 49px;
  border-color: var(--line);
  padding: 14px 20px;
  font-weight: 400;
}
.form-newsletter fieldset input::placeholder {
  font-weight: 400;
  color: #a5a5a5;
}
.form-newsletter .button-submit {
  position: absolute;
  right: 2px;
  top: 50%;
  transform: translateY(-50%);
}
.form-newsletter .subscribe-content {
  position: relative;
}
.form-default .cols {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}
.form-default .cols > * {
  width: 100%;
}
.form-default fieldset label {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 10px;
}
.form-default fieldset input {
  border-radius: 45px;
  border-color: var(--line);
  color: var(--dark);
}
.form-default fieldset textarea {
  border-radius: 16px;
  border-color: var(--line);
  height: 228px;
}
.form-default fieldset textarea:hover {
  border-color: var(--dark);
}
.form-default .notice {
  margin-bottom: 42px;
}
.form-default .button-submit {
  display: flex;
  justify-content: center;
}
.form-default .button-submit .tf-btn {
  padding: 11px 28px;
  font-family: "Onest", sans-serif;
  min-width: 176px;
}
.wd-form-address {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 16px;
}
.wd-form-address .cols {
  margin-bottom: 15px;
}
.wd-form-address fieldset input {
  border-radius: 6px;
}
.wd-form-address .tf-cart-checkbox {
  margin-bottom: 24px;
  display: flex;
  gap: 10px;
  align-items: center;
  cursor: pointer;
}
.wd-form-address .box-btn {
  display: flex;
  gap: 12px;
}
.show-form-address, .edit-form-address {
  display: none;
}
.edit-form-address {
  margin-top: 24px;
}
.account-address .title-account {
  margin-bottom: 23px;
}
.cols {
  display: flex;
  gap: 15px 10px;
}
.cols > * {
  width: 100%;
}
.form-ask-question .text {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  color: #5d5d5d;
}
.form-ask-question textarea {
  height: 149px;
}
.form-ask-question button {
  margin-top: 42px;
  font-family: "Onest", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 19.2px;
  letter-spacing: -0.03em;
}
.flat-alert {
  margin-bottom: 10px;
}
.flat-alert.msg-success {
  font-weight: 500;
  color: var(--success);
}
.flat-alert.msg-error {
  font-weight: 500;
  color: var(--red);
}
#subscribe-msg {
  color: var(--success);
}
#subscribe-msg .notification_ok {
  color: var(--success);
}
#subscribe-msg .notification_error {
  margin-top: 15px;
  color: var(--red);
}
/*------------ sections ---------------- */
:root {
  --primary: #ff6f61;
  --primary-2: #ff9a90;
  --primary-3: #ffc5c0;
  --primary-4: #fff1ef;
  --primary-green: #39ae52;
  --secondary: #4b4ded;
  --secondary-2: rgba(75, 77, 237, 0.75);
  --secondary-3: rgba(75, 77, 237, 0.5);
  --secondary-4: #efeffd;
  --dark: #000000;
  --dark-2: #101828;
  --dark-3: #282828;
  --dark-4: #1c1c1c;
  --white: #ffffff;
  --white-2: #edeae5;
  --purple: #9148ff;
  --purple-2: #f6efff;
  --violet: #a83fff;
  --violet-2: #a474ff;
  --success: #31d0aa;
  --success-2: rgba(49, 208, 170, 0.75);
  --success-3: rgba(49, 208, 170, 0.5);
  --success-4: rgba(49, 208, 170, 0.1);
  --light-green: #00ba00;
  --text: #545454;
  --text-2: #393939;
  --text-3: #667085;
  --text-4: #757575;
  --line: #ebebeb;
  --line-2: #f2f4f7;
  --line-3: #c9c9c9;
  --line-4: #e4e7ec;
  --line-5: rgba(126, 126, 126, 0.2);
  --surface: #f5f5f5;
  --surface-2: #f7f7f7;
  --surface-3: #f3f3f3;
  --shadow-1: 0px 4px 20px 0px #0000001a;
  --gradient-1: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  --gradient-2: linear-gradient(180deg, rgba(231, 236, 210, 0) 0%, #e7ecd2 100%);
  --backdrop: rgba(0, 0, 0, 0.4);
  --bg-scrollbar-track: #f1f1f1;
  --bg-scrollbar-thumb: #c1c1c1;
  --rgba-white: rgba(255, 255, 255, 0.8);
  --rgba-dark: rgba(0, 0, 0, 0.6);
  --rgba-dark-2: rgba(0, 0, 0, 0.8);
  --rgba-dark-3: rgba(0, 0, 0, 0.2);
  --yellow: #ffc108;
  --yellow-2: #ff9a00;
  --brown: #8f5252;
  --red: #e21b1b;
}
.primary-2 {
  --primary: #39ae52;
}
.primary-3 {
  --primary: #d62c2c;
}
.s-blog-list-v1 .blog-item, .s-blog-list-v2 .blog-item {
  margin-bottom: 40px;
}
.s-blog-list-v1 .blog-item:last-of-type, .s-blog-list-v2 .blog-item:last-of-type {
  margin-bottom: 60px;
}
.s-blog-list-grid {
  gap: 42px 24px;
}
.s-blog-list-grid.grid-2 .blog-item .entry_image {
  aspect-ratio: 1.1746835443;
}
.s-blog-single .heading {
  gap: 20px;
  text-align: center;
  margin-bottom: 48px;
}
.s-blog-single .heading > .entry-tag, .s-blog-single .heading > .entry-meta {
  justify-content: center;
}
.s-blog-single .content {
  margin-bottom: 80px;
}
.s-blog-single .content .entry_image {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 42px;
}
.s-blog-single .content .text {
  font-size: 16px;
  line-height: 24px;
  color: var(--text);
  max-width: 1008px;
  width: 100%;
  margin: 0px auto;
  margin-bottom: 42px;
  text-align: center;
}
.s-blog-single .group-image {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 65px;
}
.s-blog-single .group-image .entry_image {
  margin-bottom: 0 !important;
}
.s-blog-single .entry-social {
  display: flex;
  align-items: center;
  gap: 15px;
}
.s-blog-single .entry-social > p {
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
}
.s-blog-single .bot {
  margin-bottom: 42px;
}
.s-blog-single .bot .entry-tag {
  margin-bottom: 20px;
}
.s-blog-single .related-post {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 0px 42px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  gap: 30px;
}
.s-blog-single .related-post .post {
  display: flex;
  gap: 20px;
  align-items: center;
}
.s-blog-single .related-post .post:hover .icon {
  background-color: var(--primary);
  color: var(--white);
}
.s-blog-single .related-post .post:hover .name-post {
  color: var(--primary);
}
.s-blog-single .related-post p {
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  margin-bottom: 15px;
}
.s-blog-single .related-post p.name-post {
  font-size: 16px;
  line-height: 19px;
  margin-bottom: 0px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.s-blog-single .related-post .icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  flex-shrink: 0;
}
.s-blog-single .related-post .text-wrap-left {
  text-align: left;
}
.s-blog-single .related-post .text-wrap-right {
  text-align: right;
}
.block-quote {
  padding: 30px;
  border-radius: 16px;
  background-color: #eeffde;
  min-height: 230px;
  display: flex;
  align-items: center;
  margin-bottom: 42px;
}
.block-quote p {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  max-width: 1008px;
  width: 100%;
  margin: 0px auto;
  text-align: center;
}
.sb-contact {
  border-radius: 16px;
  background-color: var(--surface);
  padding: 40px;
}
.sb-contact .title {
  font-size: 24px;
  font-weight: 500;
  line-height: 29px;
  margin-bottom: 30px;
}
.sb-contact .sub {
  color: var(--text);
  line-height: 22px;
  margin-bottom: 28px;
}
.sb-contact .btn-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 252px;
  width: 100%;
  margin: 0px auto;
}
.sb-contact .tf-btn {
  text-transform: none;
  font-family: "Onest", sans-serif;
  font-weight: 600;
}
.s-faq .faq-item:not(:last-child) {
  margin-bottom: 52px;
}
.s-faq .name-faq {
  font-size: 24px;
  font-weight: 500;
  line-height: 29px;
  margin-bottom: 32px;
}
.s-term-user .content {
  display: grid;
  gap: 52px;
  max-width: 1008px;
  width: 100%;
  margin: 0px auto;
}
.s-term-user .term-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 29px;
  color: var(--dark);
  margin-bottom: 24px;
}
.s-term-user .term-text span {
  font-weight: 500;
  color: var(--dark);
}
.s-term-user .text-wrap {
  display: grid;
  gap: 24px;
}
.tf-page-title {
  padding: 52px 0px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../images/section/page-title.jpg);
}
.tf-page-title .box-title {
  display: grid;
  gap: 12px;
  max-width: 560px;
  margin: auto;
}
.tf-page-title .breadcrumb-list {
  justify-content: center;
}
.breadcrumb-list {
  display: flex;
  gap: 8px;
  align-items: center;
}
.breadcrumb-list .breadcrumb-item {
  color: #757575;
}
.breadcrumb-list .breadcrumb-item::before {
  content: none;
}
.breadcrumb-list .dot {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.breadcrumb-list .dot span {
  width: 4px;
  height: 4px;
  display: inline-block;
  background-color: #757575;
  border-radius: 50%;
}
.breadcrumb-list .current {
  color: var(--dark);
}
.breadcrumb-wrap {
  padding: 32px 0px 27px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.breadcrumb-prev-next {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--dark);
}
.breadcrumb-prev-next .breadcrumb-back {
  font-size: 20px;
}
.breadcrumb-prev-next .breadcrumb-next, .breadcrumb-prev-next .breadcrumb-prev {
  width: 18px;
  height: 18px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.s-404 {
  padding: 100px 0px;
}
.wg-404 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.wg-404 .image {
  max-width: 236px;
  width: 100%;
  margin-bottom: 12px;
}
.wg-404 .title {
  margin-bottom: 12px;
}
.wg-404 .sub {
  margin-bottom: 32px;
}
.wg-countdown .countdown__timer {
  display: flex;
  gap: 20px;
}
.wg-countdown .countdown__item {
  display: inline-flex;
  flex-direction: column;
  position: relative;
  width: 90px;
  height: 90px;
  text-align: center;
  justify-content: center;
  border-radius: 6px;
  border: 1px solid var(--primary);
}
.wg-countdown .countdown__value {
  display: inline-block;
  font-size: 36px;
  font-weight: 500;
  line-height: 44px;
  letter-spacing: -0.02em;
}
.wg-countdown .countdown__value .countdown__value--3 {
  width: 100%;
  max-width: 90px;
}
.wg-countdown-2 {
  width: max-content;
  padding: 16px 32px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background-color: var(--white);
}
.wg-countdown-2.color-1 .countdown__value {
  color: #8f6dff;
}
.wg-countdown-2.gap-15 .countdown__timer {
  gap: 15px;
}
.wg-countdown-2.gap-15 .countdown__item:not(:last-child) .countdown__value::after {
  right: -8px;
}
.wg-countdown-2 .countdown__value {
  padding-top: 0px;
  font-family: "Onest", serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 50px;
  color: var(--primary);
}
.wg-countdown-2 .countdown__timer {
  display: flex;
  gap: 29px;
}
.wg-countdown-2 .countdown__item {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 4px;
  min-width: 56px;
}
.wg-countdown-2 .countdown__item:not(:last-child) .countdown__value {
  position: relative;
}
.wg-countdown-2 .countdown__item:not(:last-child) .countdown__value::after {
  content: ":";
  position: absolute;
  top: 50%;
  transform: translate(50%, -50%);
  right: -14px;
  font-family: "Onest", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  color: var(--dark);
}
.wg-countdown-2 .countdown__item:first-child {
  min-width: 30px;
}
.wg-coming-soon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-top: 80px;
  padding-bottom: 100px;
}
.wg-coming-soon .title {
  margin-bottom: 18px;
}
.wg-coming-soon .sub {
  margin-bottom: 48px;
}
.wg-coming-soon .wg-countdown {
  margin-bottom: 48px;
}
.wg-coming-soon .form-email-wrap {
  max-width: 482px;
  width: 100%;
  margin-bottom: 64px;
}
.wg-coming-soon .form-email-wrap .button-submit {
  right: 5px;
}
.wg-map.style-absolute {
  position: relative;
}
.wg-map.style-absolute .box-store {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  max-width: 419px;
}
.wg-map.style-absolute .box-store:hover {
  background-color: var(--white);
}
.wg-map .map {
  border-radius: 16px;
  overflow: hidden;
  height: 589px;
  width: 100%;
}
.s-contact .content-right, .s-contact .content-left {
  display: grid;
  gap: 20px;
}
.s-contact .wg-map {
  margin-bottom: 91px;
}
.s-contact .sub-title {
  font-size: 16px;
  line-height: 26px;
}
.s-contact.style-2 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap-reverse;
  gap: 15px;
}
.s-contact.style-2 .content-left {
  padding: 30px;
  border-radius: 16px;
  position: relative;
  z-index: 2;
  gap: 15px;
  margin-bottom: 0;
  justify-items: flex-start;
}
.s-contact.style-2 .content-left .tf-btn {
  padding: 10px 24px;
  text-transform: none;
  margin-top: 20px;
}
.s-contact.style-2 .content-left .tf-social-icon .social-item:not(:hover) {
  background-color: transparent;
  border-color: var(--white);
}
.s-contact.style-2 .image-right {
  border-radius: 16px;
  overflow: hidden;
}
.s-contact.style-2 .image-right img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.contact-list {
  display: grid;
  gap: 10px;
}
.contact-list p {
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
}
.contact-list a, .contact-list span {
  font-weight: 400;
  color: var(--text);
}
.box-store {
  padding: 40px 24px 20px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--white);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.box-store .title {
  font-size: 16px;
  font-weight: 500;
  line-height: 25.6px;
  margin-bottom: 8px;
}
.box-store .contact-list {
  gap: 5px;
  margin-bottom: 20px;
}
.box-store:hover {
  background: var(--primary-4);
}
.box-store.style-2 {
  display: grid;
  gap: 15px;
  padding: 30px;
  border-color: var(--white);
}
.grid-box-store {
  gap: 24px;
}
.s-store-location .wg-map {
  margin-bottom: 24px;
}
.s-banner-colection .banner-content {
  overflow: hidden;
  border-radius: 16px;
  gap: 0px;
  background-color: #f7f7f7;
  position: relative;
}
.s-banner-colection .box-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0px auto;
  gap: 42px;
  padding: 24px;
}
.s-banner-colection .box-title-banner {
  display: grid;
  gap: 24px;
}
.s-banner-colection.style-abs .box-content {
  position: absolute;
  left: 15px;
  bottom: 15px;
  right: 15px;
  padding: 0;
}
.s-banner-colection.style-abs-2 .box-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
  right: 15px;
  padding: 0;
}
.s-banner-colection.style-abs-2 .image img {
  min-height: 350px;
  object-fit: cover;
}
.banner-cls-bicycle .banner-content {
  height: 400px;
  width: 100%;
}
.banner-cls-electric .banner-content {
  background: linear-gradient(67.69deg, #eeefff 11.66%, #f6f0f0 47.21%, #ffeff6 82.77%);
  padding: 16px 0px;
}
.banner-cls-electric .banner-content .box-title-banner {
  gap: 12px;
}
.banner-cls-mega-electric.style-abs-2 .image img {
  min-height: 296px;
  object-fit: cover;
}
.banner-cls-phonecase .banner-content {
  background-color: unset;
  border-radius: unset;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.banner-cls-phonecase .banner-content > * {
  width: 100%;
}
.banner-cls-phonecase .box-content {
  margin: unset;
  padding: 0;
}
.banner-cls-phonecase .image {
  border-radius: 16px;
  overflow: hidden;
}
.banner-cls-petaccess .banner-content {
  background-color: #ffecce;
}
.banner-glasses .box-content {
  margin: 0;
  padding: 24px 86px;
}
.banner-cls-electric-acc.style-abs-2 .box-content {
  background-color: var(--white);
  border-radius: 16px;
  left: 15px;
  right: 15px;
  margin: unset;
  padding: 30px 15px;
}
.banner-cls-mega-electric .new {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #d2a40c;
  border-radius: 22px;
  padding: 5px 12px;
}
.banner-cls-mega-electric .box-title-banner {
  justify-items: center;
}
.btn-sidebar-mb {
  position: fixed;
  top: 200px;
  left: 0;
  z-index: 50;
}
.btn-sidebar-mb button {
  width: 40px;
  height: 40px;
  border-radius: 0;
  border: 1px solid var(--dark);
  padding: 0;
  justify-content: center;
}
.btn-sidebar-mb button:hover {
  background-color: var(--white);
  color: var(--dark);
}
.btn-sidebar-mb.right {
  left: unset;
  right: 0;
  transform: rotate(180deg);
}
.s-banner-countdown {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.s-banner-countdown .image img {
  min-height: 488px;
  width: 100%;
  object-fit: cover;
}
.s-banner-countdown .banner-content {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  display: grid;
  gap: 12px;
}
.s-banner-countdown .box-title {
  display: grid;
  gap: 4px;
}
.banner-cd-phonecase {
  border-radius: 16px;
  overflow: hidden;
  margin: 0px 12px;
}
.banner-cd-phonecase .banner-wrap {
  position: relative;
}
.banner-cd-phonecase .banner-content {
  z-index: 2;
  background-color: var(--white);
  border-radius: 16px;
  padding: 30px 15px;
  left: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  gap: 24px;
}
.banner-cd-phonecase .countdown__timer {
  gap: 12px;
}
.banner-cd-phonecase .countdown__timer .countdown__label {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
}
.banner-cd-phonecase .box-title {
  display: grid;
  gap: 8px;
}
.banner-cd-phonecase .image img {
  width: 100%;
}
.s-banner-cd-baby .banner-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 16px;
  background-color: #f3f2ee;
  padding: 50px;
  gap: 20px;
}
.s-banner-cd-baby .box-title {
  display: grid;
  gap: 12px;
}
.s-banner-cd-baby .content {
  display: grid;
  gap: 24px;
}
.s-banner-cd-baby .wg-countdown .countdown__item {
  background-color: var(--white);
  border-radius: 50%;
  width: 70px;
  height: 70px;
}
.s-banner-cd-baby .wg-countdown .countdown__item .countdown__value {
  font-family: "Onest", cursive;
  font-weight: 700;
  color: #f6620c;
}
.s-banner-product .content-banner {
  display: flex;
  gap: 42px;
  justify-content: center;
}
.s-banner-product .image-wrap {
  position: relative;
}
.s-banner-product .image {
  max-width: 512px;
  border-radius: 16px;
  overflow: hidden;
}
.s-banner-product .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.s-banner-product .content-right {
  display: flex;
  flex-direction: column;
  gap: 42px;
  justify-content: center;
}
.s-banner-product .content-right .box-title {
  display: grid;
  gap: 10px;
}
.s-banner-product .loobook-product {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 12px;
  gap: 12px;
}
.s-banner-with-text .content-banner {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}
.s-banner-with-text .box-title-banner {
  display: grid;
  gap: 10px;
}
.s-banner-with-text br {
  display: none;
}
.s-banner-with-text .image-banner {
  position: relative;
  overflow: hidden;
}
.s-banner-with-text .image {
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
}
.s-banner-with-text .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.s-banner-with-text .image-1:hover {
  position: relative;
  z-index: 2;
}
.banner-text-fashion .image-1 {
  max-width: 531px;
  margin-left: auto;
}
.banner-text-fashion .image-2 {
  position: absolute;
  max-width: 316px;
  z-index: 2;
  left: 71px;
  bottom: 44px;
}
.banner-text-fashion .image-2 .img-style {
  height: 100%;
}
.banner-text-skincare.type-2 .image-1 {
  width: 85%;
}
.banner-text-skincare.type-2 .image-2 {
  position: absolute;
  width: 44%;
  bottom: 5%;
  right: 0;
}
.banner-text-jewelry .image-1 {
  width: 85%;
}
.banner-text-jewelry .image-2 {
  width: 39%;
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 5%;
}
.banner-tagline-phonecase {
  display: flex;
  gap: 50px;
  position: relative;
}
.banner-tagline-phonecase .image {
  border-radius: 16px;
  overflow: hidden;
}
.banner-tagline-phonecase .content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.banner-tagline-phonecase .list-tagline li {
  display: flex;
  gap: 10px;
  padding: 15px;
}
.banner-tagline-phonecase .list-tagline li .box-text {
  display: grid;
  gap: 5px;
}
.banner-tagline-phonecase .list-tagline li:not(:last-child) {
  border-bottom: 1px solid #59595933;
}
.banner-tagline-phonecase .icon i {
  font-size: 35px;
  color: #c596ff;
}
.flat-title {
  display: grid;
  gap: 12px;
  text-align: center;
  margin-bottom: 30px;
}
.flat-title.style-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: start;
}
.flat-title .box-title {
  display: grid;
  gap: 12px;
}
.flat-title.mb_1 {
  margin-bottom: 33px;
}
.flat-title.style-2 {
  gap: 10px;
}
.flat-title.style-line {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
}
.flat-title.style-line .line-title {
  flex-grow: 1;
  display: block;
  border-bottom: 1px solid var(--line);
}
.flat-title-2 {
  display: grid;
  gap: 20px;
  margin-bottom: 30px;
}
.flat-title-2 .box-title {
  display: grid;
  gap: 5px;
}
.simpleParallax {
  height: 100%;
  width: 100%;
}
.simpleParallax img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.wg-offer .image {
  border-radius: 16px;
  margin-bottom: 20px;
}
.wg-offer .content {
  display: grid;
  gap: 12px;
}
.wg-offer .box-title {
  display: grid;
  gap: 8px;
}
.flat-title-v2 {
  display: grid;
  gap: 12px;
  margin-bottom: 30px;
}
.tab-content .box-btn {
  margin-top: 24px;
}
.s-banner-bundle .bundle-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.s-banner-bundle .tf-swiper {
  width: 100%;
}
.s-banner-bundle .image-banner {
  width: 100%;
  height: 100%;
}
.s2-banner-bundle .bundle-wrap {
  position: relative;
  padding: 0px 30px 30px;
  border: 1px solid #f3a24b;
  border-radius: 16px;
}
.s2-banner-bundle .flat-title {
  background-color: var(--white);
  width: fit-content;
  margin: -25px auto 8px;
}
.s2-banner-bundle .banner-bundle {
  position: relative;
  width: 100%;
  height: 100%;
}
.s2-banner-bundle .banner-bundle .item {
  position: absolute;
  display: none;
  bottom: -77px;
  animation: swing2 10s infinite ease-in-out;
}
.bundle-wrap .nav-swiper {
  width: 34px;
  height: 34px;
}
.bundle-wrap .nav-swiper.swiper-button-prev {
  left: -40px;
}
.bundle-wrap .nav-swiper.swiper-button-next {
  right: -40px;
}
@keyframes swing2 {
  20% {
    transform: rotate(5deg);
  }
  40% {
    transform: rotate(-4deg);
  }
  60% {
    transform: rotate(3deg);
  }
  80% {
    transform: rotate(-2deg);
  }
  100% {
    transform: rotate(0);
  }
}
.s-banner-bundle .content-list {
  display: grid;
  gap: 12px;
  padding: 24px 15px;
  border-radius: 0px 0px 16px 16px;
  border: 1px solid var(--line);
}
.s-banner-bundle .list-recipe {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.s-banner-bundle .list-recipe .br--line {
  display: block;
  height: 16px;
  width: 1px;
  background-color: var(--line);
}
.flat-iconbox {
  padding: 33px 0px;
}
.tf-compare-table {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow-x: scroll;
}
.tf-compare-table::-webkit-scrollbar {
  height: 4px;
}
.tf-compare-table::-webkit-scrollbar-thumb {
  border-radius: 33px;
  background: #d9d9d9;
  cursor: grab;
}
.tf-compare-row {
  display: flex;
}
.tf-compare-col {
  max-width: 240px;
  min-width: 240px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.tf-compare-col .tf-compare-item {
  text-align: center;
}
.tf-compare-col .tf-compare-item .tf-compare-image {
  aspect-ratio: calc(320 / 407);
}
.tf-compare-item {
  display: grid;
  gap: 15px;
  padding: 20px 15px;
}
.tf-compare-item .tf-compare-image {
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
}
.tf-compare-item .tf-compare-image img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
.tf-compare-item .icon-close {
  font-size: 8px;
}
.tf-compare-item .tf-compare-remove .tf-btn-icon {
  width: 48px;
  height: 48px;
  cursor: pointer;
}
.tf-compare-item .tf-compare-remove .tf-btn-icon:hover {
  border-color: var(--primary);
}
.tf-compare-item .tf-compare-remove .tf-btn-icon:hover i {
  color: var(--primary);
  transform: unset;
}
.tf-compare-item .content {
  display: grid;
  gap: 10px;
}
.tf-compare-item .price-wrap .price-new {
  color: var(--primary);
}
.tf-compare-field, .tf-compare-value {
  padding: 15px;
}
.tf-compare-value {
  display: flex;
  align-items: center;
  justify-content: center;
}
.tf-compare-stock {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #48b02c;
}
.list-esd .item {
  display: grid;
  gap: 10px;
  padding: 20px 0px;
}
.list-esd .item:not(:last-child) {
  border-bottom: 1px solid var(--line);
}
.wrapper-wishlist .tf-wishlist-empty {
  grid-column: 1 / -1;
  width: 100%;
}
.wrapper-wishlist .tf-wishlist-empty .text-noti {
  margin-bottom: 32px;
}
.wrapper-wishlist .tf-wishlist-empty .btn-back-shop {
  max-width: 228px;
  font-family: "Onest", sans-serif;
  line-height: 120%;
  font-weight: 600;
  width: 100%;
}
.box-testimonial-quote {
  background-color: #eeffde;
  border-radius: 16px;
  padding: 30px 15px;
  display: grid;
  gap: 20px;
}
.box-testimonial-quote .box-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.box-testimonial-quote .box-author .avt {
  max-width: 32px;
  border-radius: 50%;
  overflow: hidden;
}
.box-testimonial-quote .icon-star {
  font-size: 20px;
}
.mega-categories {
  background-color: var(--white);
  text-align: left;
  color: var(--dark);
  padding: 12px 4px 22px;
}
.mega-categories li:not(:last-child) {
  margin-bottom: 4px;
}
.mega-categories .cate-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--dark);
  border-radius: 4px;
  padding: 10px;
  font-size: 16px;
  line-height: 24px;
}
.mega-categories .cate-item .img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--surface);
  overflow: hidden;
}
.mega-categories .cate-item:hover, .mega-categories .cate-item.active {
  background-color: var(--purple-2);
}
.mega-cate-box {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--purple);
}
.mega-cate-box .categories-title {
  display: flex;
  background-color: var(--purple);
  padding: 15px 24px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
}
.mega-cate-box .categories-title .icon {
  font-size: 20px;
}
.mega-box .mega-title-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.mega-iconbox {
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: 32px 12px;
}
.mega-iconbox .tf-icon-box:not(:last-child) {
  margin-bottom: 32px;
}
.image-compare {
  border-radius: 16px;
}
.image-compare .icv__arrow-wrapper {
  display: none;
}
.image-compare .icv__circle {
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.3);
  position: relative;
  border-color: transparent !important;
}
.image-compare .icv__circle::after {
  position: absolute;
  content: "";
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--white);
}
.image-compare .icv__circle::before {
  position: absolute;
  font-family: "icomoon";
  content: "";
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  font-size: 14px;
}
.image-compare .icv__label {
  padding: 9px 24px;
  color: var(--dark);
  font-family: "Onest", sans-serif;
  border-radius: 40px;
  background-color: var(--white);
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  bottom: 24px;
}
.image-compare .icv__label-before {
  left: 24px;
}
.image-compare .icv__label-after {
  right: 24px;
}
.img-viewer-compare-wrap {
  margin-bottom: 40px;
}
.banner-why-shop {
  padding-left: 15px;
  padding-right: 15px;
}
.s2-banner-with-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  max-width: 1143px;
  margin: auto;
}
.s2-banner-with-text .content-with-text {
  display: grid;
  gap: 20px;
  justify-items: left;
}
.s2-banner-with-text .box-title-content {
  display: grid;
  gap: 12px;
}
.s3-banner-with-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.s3-banner-with-text .content-with-text {
  gap: 20px;
  display: grid;
  justify-items: left;
}
.s3-banner-with-text .image-banner {
  position: relative;
  overflow: hidden;
  width: 100%;
  flex-shrink: 0;
}
.s3-banner-with-text .image-banner .image {
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
}
.s3-banner-with-text .image-banner .image-1 {
  position: absolute;
  width: 41.6%;
  z-index: 2;
  left: 0px;
  bottom: 0px;
}
.s3-banner-with-text .image-banner .image-2 {
  width: 74%;
  margin-left: auto;
}
.s3-banner-with-text .box-title-content .subtitle {
  margin-bottom: 10px;
  display: inline-block;
}
.s3-banner-with-text .box-title-content .title {
  margin-bottom: 12px;
}
.banner-cls-baby .item {
  max-width: 217px;
  position: absolute;
  animation: moveRight 10s infinite linear alternate;
  right: -69px;
  bottom: -35px;
  display: none;
}
.grid-cls-suppermarket .s-cls .img-style {
  width: 100%;
  height: 100%;
}
@keyframes moveRight {
  0% {
    transform: translateX(-20px);
  }
  100% {
    transform: translateX(20px);
  }
}
.section-results .results-item {
  margin-bottom: 83px;
}
.section-bought-together {
  position: relative;
}
.section-bought-together h3.title {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--white);
  z-index: 2;
  padding: 0 34px;
}
.section-bought-together .wrapper {
  border-radius: 16px;
  padding: 103px 15px 62px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.section-bought-together .wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  background: linear-gradient(180deg, #f2bd7b 0%, #8575ea 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  border-radius: 16px;
  z-index: -1;
}
.section-bought-together .swiper {
  max-width: 1154px;
  margin-left: auto;
  margin-right: auto;
}
.section-asked-questions .content {
  display: flex;
  flex-direction: column;
  gap: 34px;
}
.section-asked-questions .content .bot {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.section-asked-questions .content .bot a {
  width: 229px;
}
.section-asked-questions .faq-wrap {
  background-color: var(--white);
  padding: 64px 48px;
  border-radius: 20px;
}
.section-asked-questions .faq-wrap .widget-accordion:first-child {
  border-top: 0;
}
.section-asked-questions .faq-wrap .widget-accordion:last-child {
  border-bottom: 0;
}
.pickleball-product .tf-product-media-thumbs .swiper-slide.swiper-slide-thumb-active .item::after {
  border-color: black;
}
.skincare-product .tf-product-media-thumbs .swiper-slide.swiper-slide-thumb-active .item::after {
  border-color: black;
}
/*-------------- Responsive ----------------- */
:root {
  --primary: #ff6f61;
  --primary-2: #ff9a90;
  --primary-3: #ffc5c0;
  --primary-4: #fff1ef;
  --primary-green: #39ae52;
  --secondary: #4b4ded;
  --secondary-2: rgba(75, 77, 237, 0.75);
  --secondary-3: rgba(75, 77, 237, 0.5);
  --secondary-4: #efeffd;
  --dark: #000000;
  --dark-2: #101828;
  --dark-3: #282828;
  --dark-4: #1c1c1c;
  --white: #ffffff;
  --white-2: #edeae5;
  --purple: #9148ff;
  --purple-2: #f6efff;
  --violet: #a83fff;
  --violet-2: #a474ff;
  --success: #31d0aa;
  --success-2: rgba(49, 208, 170, 0.75);
  --success-3: rgba(49, 208, 170, 0.5);
  --success-4: rgba(49, 208, 170, 0.1);
  --light-green: #00ba00;
  --text: #545454;
  --text-2: #393939;
  --text-3: #667085;
  --text-4: #757575;
  --line: #ebebeb;
  --line-2: #f2f4f7;
  --line-3: #c9c9c9;
  --line-4: #e4e7ec;
  --line-5: rgba(126, 126, 126, 0.2);
  --surface: #f5f5f5;
  --surface-2: #f7f7f7;
  --surface-3: #f3f3f3;
  --shadow-1: 0px 4px 20px 0px #0000001a;
  --gradient-1: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  --gradient-2: linear-gradient(180deg, rgba(231, 236, 210, 0) 0%, #e7ecd2 100%);
  --backdrop: rgba(0, 0, 0, 0.4);
  --bg-scrollbar-track: #f1f1f1;
  --bg-scrollbar-thumb: #c1c1c1;
  --rgba-white: rgba(255, 255, 255, 0.8);
  --rgba-dark: rgba(0, 0, 0, 0.6);
  --rgba-dark-2: rgba(0, 0, 0, 0.8);
  --rgba-dark-3: rgba(0, 0, 0, 0.2);
  --yellow: #ffc108;
  --yellow-2: #ff9a00;
  --brown: #8f5252;
  --red: #e21b1b;
}
.primary-2 {
  --primary: #39ae52;
}
.primary-3 {
  --primary: #d62c2c;
}
/* Media Queries
-------------------------------------------------------------- */
@media (min-width: 768px) and (max-width: 1200px) {
  .flat-wrapper-lookbook .image-lookbook .pin-1 {
    left: 2%;
    bottom: 38%;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .sb-contact {
    padding: 30px 15px;
  }
  .form-buyX-getY .group-item-product {
    flex-direction: column;
    align-items: unset;
  }
  .form-buyX-getY .group-item-product .arrow {
    margin-top: -12px;
    margin-left: auto;
    margin-right: auto;
    transform: rotate(90deg);
  }
}
@media (min-width: 576px) {
  .tf-grid-layout.sm-col-2 {
    grid-template-columns: 1fr 1fr;
  }
  .tf-grid-layout.sm-col-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .tf-grid-layout.sm-col-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .tf-grid-layout.sm-col-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .tf-grid-layout.sm-col-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .tf-grid-layout.sm-col-7 {
    grid-template-columns: repeat(7, 1fr);
  }
  .dropdown-filter .dropdown-menu {
    min-width: 250px;
  }
  .popup-style-1 {
    max-width: 520px;
  }
  .footer-default .footer-body {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .row-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 32px;
    column-gap: 24px;
  }
  .row-footer .s3 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    grid-column: 1 / -1;
  }
  .slider-default .content-slider.style-2 {
    padding: 30px 24px;
  }
  .slider-default .parallax-wrap {
    padding: 150px 0px;
  }
  .s-banner-cd-baby .wg-countdown .countdown__timer {
    gap: 10px;
  }
  .s-banner-cd-baby .wg-countdown .countdown__item {
    width: 90px;
    height: 90px;
  }
  .slider-pod .content-slider {
    max-width: 550px;
  }
}
@media (min-width: 768px) {
  .tf-page-title {
    padding: 64px 0px;
  }
  .tf-page-title .box-title {
    gap: 24px;
  }
  .form-out-stock {
    padding: 30px;
  }
  .form-buyX-getY {
    padding: 30px;
  }
  .md-radius-80 {
    border-radius: 80px;
  }
  .px-30 {
    padding-left: 30px;
    padding-right: 30px;
  }
  .footer-info, .footer-heading {
    margin-bottom: 24px;
  }
  .footer-style-2 {
    margin: 0px 15px 80px;
  }
  #goTop.pos1 {
    bottom: 210px;
  }
  .wrapper-wishlist.wrapper-wishlist {
    row-gap: 40px;
  }
  .flat-wrapper-iconbox > .title {
    top: -12%;
  }
  .s2-banner-with-text {
    gap: 60px;
    flex-direction: row;
  }
  .s3-banner-with-text {
    flex-direction: row;
    gap: 14px;
  }
  .s3-banner-with-text .image-banner {
    width: 59.4%;
  }
  .slider-style-2 .wrap-pagination {
    right: 50%;
  }
  .popup-search .header {
    padding: 15px 30px;
  }
  .popup-search .form-search input {
    height: 60px;
  }
  .popup-product .modal-content {
    padding: 32px 60px 40px;
  }
  .popup-product .modal-header .countdown__timer {
    font-size: 24px;
    line-height: 32px;
  }
  .fl-order-testimonial {
    padding: 32px 60px;
  }
  .tf-compare-col {
    min-width: 300px;
  }
  .table-page-cart .tf-cart-item .wg-quantity {
    width: 102px;
    height: 48px;
  }
  .tf-main-success .box-ship-address {
    padding: 32px;
  }
  .modal-quick-view .modal-content {
    flex-direction: row;
  }
  .modal-quick-view .tf-product-media-wrap {
    width: 43.4%;
  }
  .modal-quick-view .tf-product-info-wrap .tf-product-info-inner {
    position: absolute;
    inset: 0;
    overflow-y: auto;
    padding: 32px;
  }
  .modal-quick-view .tf-product-info-wrap .tf-product-variant {
    margin-bottom: 34px;
  }
  .modal-quick-view .tf-product-info-wrap .tf-product-total-quantity {
    margin-bottom: 32px;
  }
  .popup-shopping-cart.style-2 .modal-content, .popup-shopping-cart.style-2 .canvas-wrapper {
    flex-direction: row;
  }
  .popup-shopping-cart.style-2 .also-like-product {
    width: 228px;
    flex-shrink: 0;
    position: relative;
  }
  .popup-shopping-cart.style-2 .also-like-product .also-like-product-wrap {
    padding: 33px 28px 33px 36px;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow: auto;
    flex-direction: column;
  }
  .popup-shopping-cart.style-2 .also-like-product .also-like-product-wrap::-webkit-scrollbar {
    width: 4px;
  }
  .popup-shopping-cart.style-2 .also-like-product .also-like-product-wrap::-webkit-scrollbar-thumb {
    background: var(--primary);
  }
  .popup-shopping-cart.style-2 .also-like-product .also-like-product-wrap::-webkit-scrollbar-track {
    background: var(--line);
  }
  .popup-shopping-cart.style-2 .also-like-product .tf-mini-cart-item {
    flex-direction: column;
    min-width: unset;
  }
  .popup-shopping-cart.style-2 .also-like-product .tf-mini-cart-item .tf-mini-cart-image {
    width: 156px;
    height: 222px;
  }
  .popup-shopping-cart.style-empty .cart-empty-wrap {
    padding: 27px 15px;
  }
  .popup-shopping-cart.style-empty .cart-empty-wrap img {
    margin-bottom: 32px;
    width: auto;
  }
  .popup-shopping-cart.style-empty .cart-empty-wrap p {
    margin-bottom: 24px;
  }
  .popup-pickup-available .modal-inner {
    padding: 40px 32px;
  }
  .popup-pickup-available .pickup-available-list {
    gap: 40px;
  }
  .modal-find-size .header {
    margin-bottom: 40px;
  }
  .modal-find-size .tf-sizeguide-table {
    margin-bottom: 42px;
  }
  .modal-find-size .modal-dialog .modal-content {
    padding: 32px;
  }
  .modal-find-size .tf-page-size-chart-content {
    display: grid;
    gap: 10px;
    grid-template-columns: 6fr 6fr;
  }
  .modal-find-size .tf-page-size-chart-content ul {
    margin-bottom: unset;
  }
  .modal-order-detail .header {
    margin-bottom: 50px;
  }
  .modal-order-detail .modal-dialog .modal-content {
    padding: 32px;
  }
  .slider-layout-right .swiper {
    margin-right: -24px;
    padding-right: 24px;
  }
  .modal-newsletter.style-row .modal-content {
    flex-direction: row;
  }
  .banner-why-shop, .container-7, .container-6, .container-5, .container-4, .container-3, .container-2, .slider-layout-right, .container-full, .container {
    padding-left: 24px;
    padding-right: 24px;
  }
  .list-color-product {
    gap: 5px;
  }
  .list-color-product .list-color-item {
    width: 24px;
    height: 24px;
  }
  .tf-pin-btn span {
    width: 33px;
    height: 33px;
    border: 12px solid var(--white);
  }
  .card-product .on-sale-wrap {
    top: 20px;
    right: 20px;
    left: 20px;
  }
  .card-product .on-sale-wrap.pos1 {
    top: 16px;
    left: 16px;
  }
  .card-product.card-product-size .list-product-btn {
    bottom: 40px;
  }
  .card-product.style-3.card-product-size .product-btn-main {
    bottom: 40px;
  }
  .card-product.style-3.card-product-size .list-product-btn {
    bottom: 84px;
  }
  .card-product.style-border-2.border-type-4 .on-sale-wrap {
    top: 16px;
    right: auto;
    left: 16px;
  }
  .card-product .card-product-info {
    gap: 8px;
  }
  .grid-cls {
    gap: 24px;
  }
  .grid-cls .item1 {
    grid-area: aa;
  }
  .grid-cls .item2 {
    grid-area: bb;
  }
  .grid-cls .item3 {
    grid-area: cc;
  }
  .grid-cls .item4 {
    grid-area: dd;
  }
  .grid-cls-v1 {
    grid-template-areas: "aa bb" "aa cc";
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .grid-cls-v2 {
    grid-template-areas: "aa bb dd" "aa cc dd";
    grid-template-columns: 1fr 1fr 1fr;
  }
  .grid-cls-v3 {
    grid-template-areas: "aa aa " "bb cc";
    grid-template-columns: 1fr 1fr;
  }
  .grid-cls-v3 .image {
    height: 100%;
  }
  .grid-cls-v4 {
    grid-template-areas: "cc cc" "aa bb";
    grid-template-columns: 1fr 1fr;
  }
  .grid-cls-v5 {
    grid-template-areas: "aa bb cc" "aa bb dd";
    grid-template-columns: 1fr 1fr 1fr;
  }
  .grid-cls-v5 .item3, .grid-cls-v5 .item4 {
    height: 320px;
  }
  .grid-cls-v6 {
    grid-template-areas: "aa aa" "aa aa" "bb cc" "dd dd";
    grid-template-columns: 1fr 1fr;
  }
  .s-banner-with-text .content-banner {
    height: 100%;
  }
  .banner-cd-phonecase .banner-content {
    gap: 32px;
    padding: 32px 60px;
  }
  .banner-cd-fashion .banner-content {
    left: 100px;
  }
  .banner-cd-fashion .box-title {
    margin-bottom: 12px;
  }
  .banner-cd-fashion .season {
    margin-bottom: 4px;
  }
  .banner-account .banner-content-right {
    right: 144px;
    gap: 32px;
  }
  .banner-account .banner-title {
    gap: 12px;
  }
  .banner-account.banner-acc-countdown {
    padding: 40px 88px 40px 64px;
  }
  .banner-account.banner-acc-countdown .banner-title {
    gap: 4px;
  }
  .banner-account.banner-acc-countdown .banner-content-left {
    gap: 16px;
  }
  .banner-cls-baby .box-title-banner {
    gap: 16px;
  }
  .banner-cls-baby .box-content {
    gap: 32px;
  }
  .banner-cls-mega-electric .box-title-banner {
    gap: 8px;
  }
  .banner-cls-mega-electric .box-content {
    gap: 24px;
  }
  .banner-cls-electric-acc .box-content {
    gap: 33px;
  }
  .banner-cls-electric-acc .box-title-banner {
    gap: 16px;
  }
  .banner-cls-electric-acc.style-abs-2 .box-content {
    max-width: 477px;
    padding: 30px 64px;
    left: 64px;
    right: 64px;
  }
  .banner-cls-electric-acc.style-abs-2 .box-content br {
    display: block;
  }
  .banner-cls-sportwear.style-abs-2 .box-content {
    left: 84px;
  }
  .banner-cls-sportwear .box-content {
    gap: 24px;
  }
  .banner-cls-sportwear .box-title-banner {
    gap: 24px;
  }
  .banner-cls-petacces .box-content {
    gap: 42px;
  }
  .banner-cls-petacces .box-title-banner {
    gap: 24px;
  }
  .banner-cls-electric .image {
    order: 1;
  }
  .s-banner-colection.style-abs .box-content {
    left: 64px;
    bottom: 64px;
    right: unset;
    gap: 32px;
  }
  .s-banner-colection.style-abs .box-title-banner {
    gap: 16px;
  }
  .slider-bicycle .box-content {
    bottom: 103px;
  }
  .slider-bicycle .content-slider {
    max-width: 576px;
    width: 100%;
  }
  .tf-grid-layout.md-col-2 {
    grid-template-columns: 1fr 1fr;
  }
  .tf-grid-layout.md-col-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .tf-grid-layout.md-col-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .tf-grid-layout.md-col-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .tf-grid-layout.md-col-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .tf-grid-layout.md-col-7 {
    grid-template-columns: repeat(7, 1fr);
  }
  .flat-single-grid .swiper-wrapper {
    transform: none !important;
    display: grid;
    gap: 10px;
  }
  .flat-single-grid .swiper-wrapper .item {
    border-radius: 8px;
  }
  .flat-single-grid.single-grid-2 .swiper-wrapper {
    grid-template-columns: 1fr 1fr;
  }
  .flat-single-grid.single-grid-2 .swiper-slide {
    width: 100% !important;
  }
  .flat-single-grid.single-grid-stacked .swiper-wrapper {
    grid-template-columns: 1fr 1fr;
  }
  .flat-single-grid.single-grid-stacked .swiper-slide {
    height: auto;
    width: 100% !important;
  }
  .flat-single-grid.single-grid-stacked .swiper-slide:first-child {
    grid-column: 1 / -1;
    width: 100%;
  }
  .canvas-sidebar {
    max-width: 406px;
  }
  .canvas-sidebar .canvas-header {
    padding: 20px 32px;
  }
  .canvas-sidebar .canvas-header::after {
    left: 32px;
    right: 32px;
  }
  .canvas-sidebar .canvas-body {
    padding: 32px;
    padding-top: 24px;
  }
  .tf-product-fbt-wrap {
    padding: 30px;
  }
  .wrap-sw-over {
    margin-left: -12px;
    padding-left: 12px;
    margin-bottom: -20px;
    padding-bottom: 20px;
  }
  .menu-tab-line {
    gap: 24px;
  }
  .menu-tab-line.style-lg {
    gap: 48px;
  }
  .menu-tab-line.style-lg .tab-link {
    font-size: 28px;
    line-height: 29.2px;
  }
  .menu-tab-line.style-lg3, .menu-tab-line.style-lg2 {
    gap: 41px;
  }
  .menu-tab-line.style-md {
    gap: 0;
  }
  .menu-tab-line.style-md .tab-link {
    padding: 10px;
    font-size: 20px;
    line-height: 24px;
    min-width: 148px;
  }
  .menu-tab-line.style-md .tab-link::after {
    height: 2px;
  }
  .menu-tab-line.style-md2 .tab-link {
    font-size: 20px;
    line-height: 30px;
  }
  .gallery-item .box-icon {
    height: 40px;
    width: 40px;
    font-size: 14px;
  }
  .blog-item-v2 .entry-content {
    padding: 24px;
  }
  .blog-item-v2 .entry-content .info-box {
    margin-bottom: 24px;
  }
  .blog-item-v2 .entry-tag {
    left: 14px;
    bottom: 14px;
  }
  .wrapper-thumbs-tes {
    display: flex;
  }
  .wrapper-thumbs-tes .box-right {
    padding: 40px 36px;
    width: 57.7%;
  }
  .wrapper-thumbs-tes .box-left {
    width: 42.3%;
    display: block;
  }
  .wrapper-thumbs-tes-2 {
    display: flex;
  }
  .wrapper-thumbs-tes-2 .box-right {
    width: 35%;
    display: block;
  }
  .wrapper-thumbs-tes-2 .box-left {
    width: 65%;
    padding: 40px 46px 40px 0px;
  }
  .wrapper-thumbs-tes-3 {
    display: flex;
  }
  .wrapper-thumbs-tes-3 .box-right {
    width: 36%;
    display: block;
  }
  .wrapper-thumbs-tes-3 .box-left {
    width: 63%;
    padding: 40px 46px 40px 0px;
  }
  .wrapper-thumbs-tes-4 {
    display: flex;
  }
  .wrapper-thumbs-tes-4 .box-left {
    width: 35%;
    display: block;
  }
  .wrapper-thumbs-tes-4 .box-right {
    width: 65%;
    padding: 40px 0px 40px 46px;
  }
  .fs-cls .content {
    bottom: 32px;
  }
  .fs-cls.lg .tf-btn {
    font-size: 18px;
    line-height: 26px;
  }
  .tab-content .swiper-pagination-progressbar {
    margin-top: 50px;
  }
  .tf-icon-box-v2 .title {
    font-size: 18px;
    line-height: 22.8px;
  }
  .flat-title .wg-countdown-2 .countdown__value {
    font-size: 32px;
    line-height: 40px;
  }
  .flat-title.style-line {
    gap: 25px;
  }
  .mega-box .mega-title-box {
    margin-bottom: 24px;
  }
  .banner-cd-phonecase {
    margin: 0px 24px;
  }
  .cls-video {
    height: 549px;
  }
  .cls-video .hover-video {
    height: 549px;
  }
  .flat-wrapper-lookbook {
    display: flex;
  }
  .flat-wrapper-lookbook .col-left, .flat-wrapper-lookbook .col-right {
    width: 50%;
  }
  .flat-wrapper-lookbook .col-left {
    padding: 32px 50px 27px;
  }
  .flat-wrapper-lookbook .slider-wrap-lb .title {
    margin-bottom: 32px;
  }
  .flat-wrapper-lookbook .card-product .tf-btn {
    font-size: 20px;
    line-height: 24px;
  }
  .s-cls.abs-left-center .content {
    left: 24px;
  }
  .s-cls.style-absolute .content {
    bottom: 24px;
    left: 24px;
    right: 24px;
  }
  .wg-cls.style-abs .cls-btn {
    bottom: 24px;
    left: 24px;
    right: 24px;
  }
  .wg-cls.style-abs2 .cls-btn {
    bottom: 24px;
    left: 24px;
    right: 24px;
  }
  .wg-cls.style-abs2.style-lg .cls-btn {
    bottom: 32px;
  }
  .tf-page-cart-sidebar .cart-box {
    padding: 24px;
  }
  .tf-checkout-cart-main {
    padding: 27px 24px 50px;
  }
  .menu-tab-fill-lg {
    gap: 32px;
  }
  .slider-fashion-2 {
    padding: 0px 24px;
  }
  .slider-baby .clouds {
    bottom: -20px;
  }
  .cloud-footer {
    margin-bottom: -20px;
  }
  .wg-quantity .quantity-product, .wg-quantity .btn-quantity {
    height: 46px;
  }
  .modal-dialog-centered .icon-close {
    font-size: 16px;
    top: 5px;
    right: 5px;
  }
  .popup-quickadd .modal-content {
    padding: 30px;
  }
  .popup-quickadd .main-product-quickadd .list-size {
    gap: 16px;
  }
  .popup-quickadd .main-product-quickadd .size-btn {
    font-size: 20px;
    line-height: 120%;
    width: 48px;
    height: 48px;
  }
  .main-product-quickadd .item-product-group-btn .tf-btn {
    padding: 11px 24px;
  }
  .main-product-quickadd .item-product-group-btn .box-icon {
    width: 48px;
    height: 48px;
  }
}
@media (min-width: 992px) {
  .grid-cls-v6 {
    grid-template-areas: "aa aa bb cc" "aa aa dd dd";
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .fade-edge .infiniteslide_wrap::before, .fade-edge .infiniteslide_wrap::after {
    width: 80px;
  }
  .form-newsletter fieldset input {
    font-size: 16px;
    line-height: 25.6px;
  }
  .form-newsletter fieldset input::placeholder {
    font-size: 16px;
    line-height: 25.6px;
  }
  .form-default fieldset label {
    font-size: 16px;
    line-height: 19px;
    margin-bottom: 10px;
  }
  .slider-style-3 .content-slider {
    padding: 0px 60px;
  }
  .slider-default .content-slider.style-2 {
    padding: 40px;
  }
  .slider-fashion-women .content-slider.style-2 {
    width: max-content;
    padding: 40px 60px;
  }
  .slider-bicycle .content-slider.style-2 {
    padding: 42px;
  }
  .wg-coming-soon .tf-btn {
    padding: 9px 32px;
  }
  .modal-compare .tf-compare-buttons .tf-btn {
    padding: 11px 24px;
  }
  .modal-quick-view .tf-product-info-wrap .tf-btn {
    height: 48px;
  }
  .wg-quantity .quantity-product, .wg-quantity .btn-quantity {
    height: 48px;
  }
  .s2-banner-with-text .content-with-text {
    gap: 40px;
  }
  .s2-banner-with-text .box-title-content {
    gap: 16px;
  }
  .s3-banner-with-text .content-with-text {
    gap: 40px;
  }
  .s3-banner-with-text .box-title-content .title {
    margin-bottom: 24px;
  }
  .banner-group-img {
    display: flex;
    height: 642px;
  }
  .banner-group-img .banner-img {
    width: 50%;
    height: 100%;
  }
  .banner-group-img .box-content {
    margin: auto;
    padding: 40px 30px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .banner-group-img .box-content .tf-btn {
    margin-top: 42px;
  }
  .banner-group-img .box-content .heading {
    margin-bottom: 24px;
  }
  .footer-bottom-wrap .box-right {
    gap: 49px;
  }
  .grid-jewelry .wg-cls .tf-btn {
    font-size: 20px;
    line-height: 24px;
  }
  .footer-newsletter {
    gap: 32px;
  }
  .footer-default .form-newsletter input {
    height: 56px;
  }
  .footer-default .form-newsletter .subscribe-button {
    padding: 16px;
  }
  .footer-default .footer-top-wrap .social-item {
    width: 52px;
    height: 52px;
    font-size: 20px;
  }
  .footer-default .footer-top-wrap .social-facebook {
    font-size: 22px;
  }
  .tf-btn.btn-lg {
    padding: 14px 35px;
  }
  .tf-btn.btn-md {
    padding: 11px 30px;
  }
  .banner-cls-electric .banner-content .box-content {
    gap: 32px;
  }
  .flat-title-2 {
    gap: 30px;
    margin-bottom: 52px;
  }
  .flat-title-2 .box-title {
    gap: 10px;
  }
  .grid-cls-v3 {
    grid-template-areas: "aa aa bb" "aa aa cc";
    grid-template-columns: 1fr 1fr 1fr;
  }
  .grid-cls-v4 {
    grid-template-areas: "aa cc cc" "bb cc cc";
    grid-template-columns: 1fr 1fr 1fr;
  }
  .banner-cd-phonecase .countdown__item {
    width: 109px;
    height: 112px;
  }
  .banner-cd-phonecase .countdown__item .countdown__value {
    font-size: 48px;
    line-height: 60px;
  }
  .wg-testimonial .content-top {
    padding: 40px 24px 22px;
    gap: 20px;
  }
  .wg-testimonial .box-avt {
    padding: 24px;
    gap: 12px;
  }
  .wg-testimonial .box-price {
    gap: 6px;
  }
  .wg-testimonial.style-row .image {
    max-width: 244px;
    width: 100%;
  }
  .wg-testimonial.type-1 .content-top {
    padding-top: 24px;
  }
  .card-product.style-wishlist > .icon {
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
  .card-product .card-product-info {
    padding-top: 18px;
    gap: 10px;
    padding-bottom: 20px;
  }
  .card-product .card-product-info.pt-35 {
    padding-top: 35px;
  }
  .card-product.style-3 .list-product-btn {
    bottom: 60px;
  }
  .gallery-item .box-icon {
    opacity: 0;
    visibility: hidden;
  }
  .gallery-item:hover .box-icon {
    opacity: 1;
    visibility: visible;
  }
  .b-md-20 {
    bottom: 20px !important;
  }
  .wg-cls.style-abs .cls-btn {
    bottom: 40px;
  }
  .wg-cls.style-abs.type-2 .cls-content {
    bottom: 24px;
  }
  .wg-cls.style-abs.type-2 .cls-btn {
    bottom: 40px;
  }
  .wg-cls.style-abs.type-2 .cls-content {
    gap: 24px;
    left: 24px;
    right: 24px;
  }
  .wg-cls.style-abs.type-2 .tf-btn {
    font-size: 24px;
    line-height: 34px;
  }
  .wg-cls.style-abs.type-3 .cls-btn {
    bottom: 20px;
  }
  .banner-text-skincare .content-banner {
    padding-left: 50px;
  }
  .s-banner-with-text .content-banner {
    gap: 42px;
  }
  .s-banner-with-text .box-title-banner {
    gap: 24px;
  }
  .s-banner-with-text.banner-text-skincare .hover-shine {
    max-width: 619px;
  }
  .s-banner-with-text.banner-text-skincare .content-banner {
    gap: 32px;
  }
  .s-banner-with-text.banner-text-skincare .box-title-banner {
    gap: 12px;
  }
  .s-banner-with-text.banner-text-skincare.type-2 .box-title-banner {
    gap: 10px;
  }
  .s-banner-with-text.banner-text-skincare.space-1 .content-banner {
    gap: 60px;
  }
  .s-banner-with-text.banner-text-skincare.space-1 .content-banner .box-title-banner {
    gap: 6px;
  }
  .s-banner-with-text.banner-text-skincare.space-1 .content-banner h3 {
    font-size: 64px;
    line-height: 72px;
    margin-bottom: 20px;
  }
  .s-banner-with-text.banner-text-jewelry .box-title-banner, .s-banner-with-text.banner-text-pet .box-title-banner {
    gap: 16px;
  }
  .s-banner-with-text.banner-text-jewelry .content-banner, .s-banner-with-text.banner-text-pet .content-banner {
    gap: 33px;
  }
  .s-banner-with-text.banner-text-plant .box-title-banner {
    gap: 16px;
  }
  .s-banner-with-text.banner-text-plant .content-banner {
    gap: 33px;
    margin-right: 24px;
    margin-left: auto;
    max-width: 588px;
    width: 100%;
  }
  .s-banner-with-text.banner-text-plant.type-2 .content-banner {
    margin-left: 24px;
    margin-right: unset;
    max-width: unset;
  }
  .banner-cd-fashion .banner-content {
    left: 203px;
  }
  .account-dashboard .box-account-title {
    margin-bottom: 64px;
  }
  .banner-cls-phonecase .box-content {
    gap: 40px;
  }
  .banner-cls-phonecase .box-title-banner {
    gap: 10px;
  }
  .marquee-sale {
    padding: 23px 0px;
    height: 78px;
    display: flex;
  }
  .marquee-sale .marquee-wrapper {
    animation: infiniteScroll 60s linear infinite;
  }
  .marquee-sale .marquee-wrapper.scrollRight {
    animation: infiniteScrollRight 60s linear infinite;
  }
  .marquee-sale .marquee-child-item {
    margin: 0 40px;
  }
  .slider-baby .content-slider.style-2 {
    padding: 40px 60px;
  }
  .sidebar-blog {
    max-width: 366px;
    width: 100%;
    margin-left: auto;
  }
  .sidebar-blog.type-left {
    margin-left: unset;
    margin-right: auto;
  }
  .tf-grid-layout {
    column-gap: 24px;
    row-gap: 24px;
  }
  .tf-grid-layout.lg-col-2 {
    grid-template-columns: 1fr 1fr;
  }
  .tf-grid-layout.lg-col-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .tf-grid-layout.lg-col-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .tf-grid-layout.lg-col-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .tf-grid-layout.lg-col-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .tf-grid-layout.lg-col-7 {
    grid-template-columns: repeat(7, 1fr);
  }
  .tf-grid-layout.style-1 {
    row-gap: 40px;
  }
  .tf-grid-layout.style-1 .wg-pagination {
    margin-top: 20px;
  }
  .tab-content .tf-grid-layout {
    column-gap: 18px;
    row-gap: 40px;
  }
  .marquee-topbar .marquee-wrapper {
    animation: infiniteScroll 60s linear infinite;
  }
  .marquee-topbar .marquee-wrapper .marquee-child-item {
    margin: 0 20px;
  }
  .zoom-active .other-image-zoom {
    opacity: 0.3;
  }
  .sb-banner .title {
    font-size: 36px;
    line-height: 43.2px;
  }
  .tf-product-fbt-wrap {
    padding: 30px;
  }
  .list-volume-discount .volume-discount-item {
    padding: 16px 30px 16px 20px;
  }
  .tf-product-volume-discount-thumbnail {
    padding: 30px;
  }
  .card-product .box-icon {
    width: 40px;
    height: 40px;
  }
  .card-product .box-icon .icon {
    font-size: 16px;
  }
  .card-product .product-btn-main .btn-main-product {
    padding: 10px 15px;
  }
  .card-product.style-3.card-product-size .list-product-btn {
    bottom: 94px;
  }
  .card-product.style-list .box-icon {
    width: 51px;
    height: 51px;
  }
  .tf-icon-box.style-2 {
    gap: 25px;
  }
  .tf-icon-box.style-2 .content {
    gap: 15px;
  }
  .tf-icon-box.style-2 .title {
    font-size: 20px;
    line-height: 20px;
  }
  .tf-icon-box.style-3 .title {
    font-size: 20px;
    line-height: 20px;
  }
  .tf-icon-box.style-3 .fs-24 {
    font-size: 24px;
    line-height: 34px;
  }
  .tf-icon-box.style-4 {
    padding: 32px 24px;
    gap: 24px;
  }
  .tf-icon-box.style-4 .title {
    font-size: 20px;
    line-height: 20px;
  }
  .tf-icon-box.style-border {
    padding: 29px 20px;
    gap: 30px;
  }
  .tf-icon-box.style-border .content {
    gap: 20px;
  }
  .tf-icon-box.style-border .content h6 {
    line-height: 29px;
  }
  .tf-icon-box.style-border .content p {
    line-height: 22px;
  }
  .tf-icon-box.style-lg {
    gap: 25px;
  }
  .tf-icon-box.style-lg .title {
    font-size: 20px;
    line-height: 20px;
  }
  .tf-icon-box.style-lg .content {
    gap: 15px;
  }
  .flat-wrap-iconbox .tf-icon-box {
    gap: 20px;
  }
  .flat-wrap-iconbox .tf-icon-box .content {
    gap: 10px;
  }
  .flat-wrapper-testimonial {
    padding: 64px 30px 37px;
  }
  .banner-cls-bicycle .banner-content {
    height: 631px;
  }
  .mega-iconbox {
    padding: 40px 20px;
  }
  .mega-iconbox .tf-icon-box:not(:last-child) {
    margin-bottom: 40px;
  }
  .mega-iconbox .tf-icon-box {
    gap: 24px;
  }
  .cls-video {
    height: 649px;
  }
  .cls-video .hover-video {
    height: 649px;
  }
  .modal-share-social .modal-content {
    padding: 32px;
    padding-bottom: 48px;
  }
  .popup-quickadd .modal-content {
    padding: 48px;
  }
}
@media (min-width: 1025px) {
  .banner-shop.style-left-center .box-title .title {
    font-size: 36px;
    font-weight: 500;
    line-height: 43.2px;
  }
  .slider-pod .content-slider {
    max-width: 691px;
  }
  .form-edit-account .title-form {
    margin-bottom: 42px;
  }
}
@media (min-width: 1200px) {
  .mt-xl-40 {
    margin-top: 40px;
  }
  .footer-heading.mb-46 {
    margin-bottom: 46px;
  }
  .skincare-product .tf-product-media-wrap {
    padding-right: 8px;
  }
  .skincare-product .tf-product-media-wrap .product-thumbs-slider {
    gap: 11px;
  }
  .skincare-product .tf-product-media-wrap .product-thumbs-slider .tf-product-media-thumbs {
    width: 109px;
    height: 588px;
  }
  .skincare-product .tf-product-media-wrap .product-thumbs-slider .tf-product-media-thumbs .item {
    height: 109px;
  }
  .skincare-product .tf-product-media-wrap .product-thumbs-slider .flat-wrap-media-product {
    width: calc(100% - 109px);
  }
  .pickleball-product .product-thumbs-slider {
    gap: 15px;
  }
  .pickleball-product .product-thumbs-slider .tf-product-media-thumbs {
    width: 139px;
  }
  .pickleball-product .product-thumbs-slider .flat-wrap-media-product {
    width: calc(100% - 139px);
  }
  .xl-radius-40 {
    border-radius: 40px !important;
  }
  .xl-radius-50 {
    border-radius: 50px !important;
  }
  .form-out-stock {
    padding: 48px;
    gap: 32px;
  }
  .form-out-stock .box-title-out-stock {
    gap: 24px;
  }
  .volume-discount-thumbnail-item .tag-sale {
    left: 28px;
    right: 28px;
  }
  .form-buyX-getY {
    padding: 36px 32px;
  }
  .form-buyX-getY .title-buyX-getY {
    margin-bottom: 47px;
  }
  .form-buyX-getY .group-item-product {
    margin-bottom: 55px;
  }
  .wd-customer-review {
    gap: 119px;
  }
  .wd-customer-review .review-heading {
    gap: 40px;
  }
  .wd-customer-review .box-rate-review {
    gap: 24px;
  }
  .wd-customer-review .review-list {
    padding-bottom: 48px;
    margin-bottom: 48px;
  }
  .form-review .tf-btn {
    margin-top: 40px;
  }
  .wd-product-descriptions .accordion-body {
    padding: 10px 0px 42px;
  }
  .modal.modalCentered:not(.show) .modal-dialog {
    transform: translate(-50px, 0px);
  }
  .modalCentered:not(.show) .modal-dialog {
    transform: translate(-50px, 0px);
  }
  #description p:not(:first-child) {
    margin-top: 32px;
  }
  .footer-style-2 .footer-bottom-wrap .image-select.style-default {
    width: 226px !important;
  }
  .footer-style-2 .footer-bottom-wrap .image-select.style-default .filter-option-inner-inner {
    font-size: 18px;
  }
  .s-banner-with-text br {
    display: block;
  }
  .tf-icon-box-v2 {
    gap: 20px;
  }
  .tf-icon-box-v2 .icon {
    font-size: 32px;
  }
  .tf-icon-box-v2 .title {
    font-size: 24px;
    line-height: 28.8px;
  }
  .slider-default .parallax-wrap {
    padding: 279px 0px 304px;
  }
  .slider-style-3 .content-slider {
    padding: 0px 100px;
  }
  .popup-search .featured-product {
    padding: 0px 90px;
  }
  .s2-banner-with-text {
    gap: 101px;
  }
  .s2-banner-with-text .banner {
    min-width: 600px;
  }
  .banner-group-img .box-content {
    padding: 40px 55px;
  }
  .banner-cls-baby .banner-content {
    position: relative;
    overflow: unset;
  }
  .banner-cls-baby .image {
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
  }
  .banner-cls-baby .item {
    display: block;
    right: 0;
  }
  .s-banner-cd-baby .wg-countdown .countdown__item {
    width: 120px;
    height: 120px;
  }
  .s-banner-cd-baby .wg-countdown .countdown__item .countdown__value {
    font-size: 40px;
    line-height: 44px;
  }
  .banner-cd-phonecase .box-title {
    gap: 16px;
  }
  .tf-topbar {
    display: flex;
    height: 42px;
  }
  .footer-default .footer-body {
    padding: 0;
  }
  .footer-default .footer-info .item:not(:last-child) .box-icon {
    margin-top: -3px;
  }
  .row-footer {
    display: flex;
    gap: 0;
  }
  .row-footer .s1 {
    width: 29%;
    padding: 60px 24px;
    padding-left: 0;
    border-right: 1px solid var(--line);
  }
  .row-footer .s2 {
    width: 42%;
    padding: 60px 32px;
    border-right: 1px solid var(--line);
  }
  .row-footer .s3 {
    width: 29%;
    display: flex;
    justify-content: space-between;
    padding: 60px 32px;
    padding-right: 0;
  }
  .footer-cloud .row-footer .s1 {
    padding-bottom: 75px;
  }
  .banner-cls-phonecase .banner-content {
    gap: 42px;
  }
  .footer-style-2 {
    margin: 0px 40px 24px;
  }
  .footer-style-2 .footer-col-block.s2, .footer-style-2 .footer-col-block.s3 {
    display: grid;
    justify-content: center;
  }
  .footer-style-2 .footer-col-block.s4 {
    padding: 0px 60px;
  }
  .space-abs-header .content-slider {
    margin-top: 87px;
  }
  .popup-product .modal-content {
    padding: 32px 85px 86px;
  }
  .popup-product .modal-header {
    gap: 16px;
  }
  .tf-checkout-cart-main {
    padding: 37px 32px 62px;
  }
  .tf-checkout-cart-main .box-ip-shipping, .tf-checkout-cart-main .box-ip-contact, .tf-checkout-cart-main .box-ip-checkout {
    margin-bottom: 42px;
  }
  .fl-order-testimonial {
    padding: 42px 119px;
  }
  .tf-page-cart-main .cart-note {
    padding-right: 27px;
  }
  .tf-page-cart-main .form-cart {
    margin-bottom: 40px;
  }
  .tf-page-cart-main .fl-iconbox {
    padding-right: 27px;
  }
  .tf-page-cart-main .fl-iconbox .tf-swiper {
    padding: 32px;
  }
  .tf-page-cart-sidebar {
    position: sticky;
    top: 100px;
    transition: top 0.3s ease;
  }
  .tf-page-cart-sidebar .cart-box {
    padding: 32px;
  }
  .sidebar-order-success .order-box {
    padding-bottom: 117px;
  }
  .box-testimonial-quote {
    padding: 64px 15px 58px;
    gap: 42px;
  }
  .lh-xl-32 {
    line-height: 32px;
  }
  .lh-xl-26 {
    line-height: 26px;
  }
  .list-esd {
    max-width: 645px;
    width: 100%;
  }
  .list-esd .item {
    gap: 20px;
    padding: 30px 0px;
  }
  .tf-compare-item {
    gap: 20px;
    padding: 30px 20px;
  }
  .tf-compare-table::-webkit-scrollbar {
    height: 11px;
  }
  .tf-compare-table .text-md {
    line-height: 19px;
  }
  .tf-compare-table .text-sm {
    line-height: 17px;
  }
  .tf-compare-field, .tf-compare-value {
    padding: 19px 20px;
  }
  .tf-compare-col {
    min-width: 360px;
  }
  .wg-testimonial.style-2.type-2 .box-btn {
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .wg-testimonial.style-2.type-2:hover .box-btn {
    opacity: 1;
  }
  .mb-xl-8 {
    margin-bottom: 8px;
  }
  .mb-xl-4 {
    margin-bottom: 4px !important;
  }
  .s-banner-bundle .bundle-wrap {
    gap: 40px;
    max-width: 708px;
    width: 100%;
    margin: auto;
  }
  .s-banner-bundle .list-recipe {
    gap: 24px;
  }
  .s-banner-bundle .content-list {
    gap: 24px;
    padding: 24px;
  }
  .s2-banner-bundle .bundle-wrap {
    gap: 40px;
    max-width: 806px;
    margin-left: auto;
    margin-right: 0;
    padding: 0px 49px 41px;
  }
  .s2-banner-bundle .banner-bundle .item {
    display: block;
    left: 0;
  }
  .s-cls.style-absolute .content {
    bottom: 32px;
    gap: 24px;
  }
  .s-cls.abs-left-center .content {
    left: 24px;
  }
  .s-cls.abs-left-center.type-large .content {
    left: 42px;
  }
  .s-cls.abs-left-bottom .content {
    left: 40px;
    bottom: 34px;
  }
  .s-cls.abs-top-center .content {
    right: 20px;
    left: 20px;
    top: 20px;
    gap: 15px;
  }
  .grid-mega .item1.s-cls.abs-left-center .content {
    left: 64px;
  }
  .slider-thumb-wrap {
    gap: 40px;
  }
  .wg-map.style-absolute .box-store {
    left: 73px;
  }
  .box-store .contact-list {
    margin-bottom: 44px;
    gap: 8px;
  }
  .box-store.style-2 {
    gap: 24px;
  }
  .cls-video .cls-content {
    bottom: 24px;
    right: 24px;
    left: 24px;
    padding: 16px;
  }
  .wg-offer .image {
    margin-bottom: 34px;
  }
  .wg-offer .box-title {
    gap: 12px;
  }
  .wg-offer .content {
    gap: 24px;
  }
  .wg-offer.style-2 .image {
    margin-bottom: 24px;
  }
  .flat-title-v2 {
    margin-bottom: 48px;
    gap: 24px;
  }
  .flat-title-v2.style-2 {
    margin-bottom: 64px;
  }
  .s-contact .content-right, .s-contact .content-left {
    gap: 32px;
  }
  .s-contact.style-2 {
    gap: 0px;
    align-items: end;
  }
  .s-contact.style-2 .content-left {
    padding: 52px 62px;
    margin-bottom: 24px;
    gap: 19px;
  }
  .s-contact.style-2 .content-left .tf-btn {
    margin-top: 30px;
  }
  .s-contact.style-2 .image-right {
    margin-left: -120px;
  }
  .s-contact.style-2 .image-right img {
    border-radius: 16px;
  }
  .flat-title {
    margin-bottom: 48px;
  }
  .flat-title .btn-underline {
    font-size: 18px;
    line-height: 28px;
  }
  .flat-title.style-2 {
    margin-bottom: 42px;
  }
  .flat-title.mb_2 {
    margin-bottom: 60px;
  }
  .flat-title.mb_3 {
    margin-bottom: 40px;
  }
  .flat-title.mb_4 {
    margin-bottom: 63px;
  }
  .flat-title.mb_5 {
    margin-bottom: 52px;
  }
  .flat-title.mb_6 {
    margin-bottom: 72px;
  }
  .flat-title-tab-categories {
    margin-bottom: 42px;
    gap: 32px;
  }
  .flat-title-tab {
    gap: 27px;
  }
  .flat-title-tab-2 {
    margin-bottom: 64px;
  }
  .menu-tab-fill-lg {
    gap: 41px;
  }
  .banner-why-shop, .container-full {
    padding-left: 40px;
    padding-right: 40px;
  }
  .sidebar-filter .canvas-body {
    padding: 0;
  }
  .widget-facet .filter-color-box {
    padding-right: 60px;
  }
  .banner-tagline-phonecase {
    gap: 100px;
  }
  .banner-tagline-phonecase .list-tagline li {
    padding: 24px 20px;
  }
  .banner-tagline-phonecase .list-tagline li .box-text {
    gap: 10px;
  }
  .banner-tagline-phonecase .content {
    gap: 48px;
  }
  .banner-tagline-phonecase .icon i {
    font-size: 40px;
  }
  .card-product.style-border-2 .card-product-wrapper {
    padding: 16px 15px 32px;
  }
  .card-product.style-border-2 .card-product-info {
    padding: 0px 16px 32px;
    gap: 16px;
  }
  .card-product.style-border-2 .on-sale-wrap {
    top: 26px;
    left: 26px;
    right: auto;
  }
  .card-product.style-border-2.border-type-2 .card-product-info {
    padding: 0px 16px 42px;
  }
  .card-product.style-border-2.border-type-3 .card-product-info {
    padding: 0px 16px 24px;
  }
  .card-product.style-border-2.border-type-2 .card-product-wrapper, .card-product.style-border-2.border-type-3 .card-product-wrapper {
    padding: 15px;
    padding-bottom: 20px;
  }
  .card-product.style-border-2.border-type-5 .card-product-wrapper {
    padding: 20px;
    padding-bottom: 32px;
  }
  .card-product.style-border-2.border-type-5 .card-product-info {
    padding: 0px 20px 20px;
    gap: 24px;
  }
  .card-product.style-border .card-product-wrapper {
    padding: 20px;
    padding-top: 42px;
    padding-bottom: 64px;
  }
  .card-product.style-border .card-product-info {
    padding: 0px 20px 40px;
  }
  .card-product.style-2.card-product-size .list-product-btn {
    bottom: 62px;
  }
  .card-product.style-2 .list-product-btn {
    bottom: 20px;
  }
  .card-product.style-2 .list-product-btn li {
    transform: translateY(20px);
  }
  .card-product.style-2:hover .list-product-btn li {
    transform: translateY(0px);
  }
  .card-product.card-product-size .list-product-btn {
    bottom: 20px;
  }
  .card-product.style-3.card-product-size .product-btn-main {
    bottom: 50px;
  }
  .card-product.style-3.card-product-size .list-product-btn {
    bottom: 114px;
  }
  .card-product.style-3 .list-product-btn {
    bottom: 84px;
  }
  .card-product.style-3 .list-product-btn li {
    transform: translateY(20px);
  }
  .card-product.style-3:hover .list-product-btn li {
    transform: translateY(0px);
  }
  .card-product.style-3:hover .product-btn-main {
    transform: translateY(0px);
    opacity: 1;
    visibility: visible;
    transition-delay: 0.1s;
  }
  .card-product .product-btn-main {
    right: 24px;
    left: 24px;
    bottom: 20px;
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
  }
  .card-product .product-btn-main .btn-main-product {
    padding: 14px 15px;
  }
  .card-product .tooltip {
    display: block;
  }
  .card-product .card-product-info .inner-info-product {
    gap: 10px;
  }
  .card-product .variant-box {
    padding: 10px 6px;
  }
  .card-product .countdown-box {
    display: flex;
  }
  .card-product .countdown-box.style-2 {
    padding-left: 35px;
    padding-right: 35px;
  }
  .card-product .list-product-btn {
    top: 20px;
    right: 20px;
    gap: 16px;
  }
  .card-product .list-product-btn li {
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .card-product .box-icon {
    width: 45px;
    height: 45px;
  }
  .card-product .product-progress-sale {
    gap: 8px;
  }
  .card-product:not(.style-list) .size-box {
    transform: translateY(100%);
    padding: 10px 6px;
  }
  .card-product:hover .list-product-btn li {
    opacity: 1;
    visibility: visible;
  }
  .card-product:hover .list-product-btn li:nth-child(1) {
    transform: translateX(0px);
  }
  .card-product:hover .list-product-btn li:nth-child(2) {
    transform: translateX(0px);
    transition-delay: 0.1s;
  }
  .card-product:hover .list-product-btn li:nth-child(3) {
    transform: translateX(0px);
    transition-delay: 0.2s;
  }
  .card-product:hover .list-product-btn li:nth-child(4) {
    transform: translateX(0px);
    transition-delay: 0.3s;
  }
  .card-product:hover .size-box {
    transform: translateY(0%);
  }
  .card-product.card-product-size:hover .countdown-box, .card-product.style-2:hover .countdown-box, .card-product.style-3:hover .countdown-box {
    transform: translateY(100%);
    bottom: -1px;
  }
  .card-product.style-list {
    gap: 24px;
  }
  .card-product.style-list .card-product-wrapper {
    aspect-ratio: 0.7042253521;
  }
  .card-product.style-list .card-product-info {
    gap: 24px;
  }
  .card-product.style-list .info-list {
    gap: 15px;
  }
  .card-product.style-center .card-product-info {
    padding: 20px 20px 35px;
  }
  .card-product.style-center .list-color-item {
    width: 38px;
    height: 38px;
    gap: 7px;
  }
  .card-product.style-4 .card-product-info {
    padding: 24px 16px;
    gap: 12px;
  }
  .card-product.style-5 .card-product-info .btn-addcart {
    padding: 0px 27px;
  }
  .card-product.style-space .card-product-wrapper {
    padding: 15px 16px 32px;
  }
  .card-product.style-space .card-product-info {
    padding: 0px 16px 32px;
    gap: 16px;
  }
  .card-product.style-space-2 .card-product-wrapper {
    padding: 15px 16px 20px;
  }
  .card-product.style-space-2 .card-product-info {
    padding: 0px 16px 20px;
    gap: 16px;
  }
  .card-product .list-capacity-product .list-color-item .text-quantity {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
  }
  .bundle-wrap .card-product:not(.style-2, .style-3) .list-product-btn {
    gap: 12px;
    top: 12px;
    right: 12px;
  }
  .bundle-wrap .card-product:not(.style-2, .style-3) .box-icon {
    width: 40px;
    height: 40px;
  }
  .bundle-suppermarket .image-wrap {
    margin-left: 33px;
  }
  .banner-text-skincare .content-banner {
    padding-left: 90px;
  }
  .tf-filter-dropdown, .tf-shop-control {
    margin-bottom: 40px;
  }
  .tf-filter-dropdown {
    gap: 20px;
  }
  .tf-filter-dropdown .meta-dropdown-filter {
    gap: 10px;
  }
  .tf-btn-filter {
    gap: 8px;
    padding: 13px 20px;
    min-width: 108px;
  }
  .tf-btn-filter .icon {
    font-size: 18px;
  }
  .tf-btn-filter .text {
    font-size: 16px;
  }
  .btn-filterDropdown .icon-close {
    font-size: 14px;
  }
  .tf-dropdown-sort {
    padding: 13px 20px;
    min-width: 244px;
  }
  .tf-dropdown-sort .text-sort-value {
    font-size: 16px;
  }
  .tf-dropdown-sort .icon {
    font-size: 14px;
  }
  .tf-dropdown-sort .dropdown-menu {
    min-width: 244px;
  }
  .dropdown-filter .dropdown-toggle {
    padding: 13px 20px;
  }
  .dropdown-filter .dropdown-menu {
    min-width: 300px;
    padding: 25px 15px;
  }
  .dropdown-filter .text-value {
    font-size: 16px;
  }
  .tf-control-layout .tf-view-layout-switch {
    width: 48px;
    height: 48px;
  }
  .lookbook-item .dropdown-menu {
    --bs-dropdown-min-width: 14rem;
  }
  .lookbook-item .dropend .dropdown-menu {
    --bs-dropdown-min-width: 367px;
  }
  .tf-grid-layout.xl-col-2 {
    grid-template-columns: 1fr 1fr;
  }
  .tf-grid-layout.xl-col-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .tf-grid-layout.xl-col-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .tf-grid-layout.xl-col-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .tf-grid-layout.xl-col-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .tf-grid-layout.xl-col-7 {
    grid-template-columns: repeat(7, 1fr);
  }
  .xl-px-26 {
    padding-left: 26px;
    padding-right: 26px;
  }
  .header-default .wrapper-header {
    min-height: 87px;
  }
  .header-default .wrapper-header .nav-icon {
    gap: 20px;
  }
  .header-default .header-top {
    border-bottom: 1px solid var(--line);
  }
  .header-medium .wrapper-header {
    min-height: 70px;
  }
  .header-absolute {
    margin-bottom: -87px;
  }
  .header-absolute-2:not(.header-bg) .header-top {
    border: 0;
  }
  .tf-product-info-wrap {
    gap: 42px;
  }
  .tf-product-info-wrap:not(.style-2) .tf-product-heading {
    padding-bottom: 32px;
    margin-bottom: 8px;
  }
  .tf-product-info-wrap .product-info-countdown, .tf-product-info-wrap .product-progress-sale {
    margin-top: 12px;
  }
  .tf-product-info-wrap .tf-product-extra-link {
    gap: 42px;
  }
  .tf-product-info-wrap .product-stock .stock {
    margin-right: 14px;
  }
  .tf-product-info-wrap .form-group-product {
    margin-bottom: 18px;
  }
  .tf-product-info-wrap .tf-product-cate-sku {
    margin: 8px 0px;
  }
  .form-group-product .item-product {
    gap: 70px;
  }
  .form-group-product .item-product:not(:last-child) {
    margin-bottom: 24px;
  }
  .form-group-product .item-product-content {
    gap: 30px;
  }
  .form-group-product .table-group-product {
    margin-bottom: 32px;
  }
  .flat-wrap-frequently-bought-together .product-thumbs-slider {
    margin-bottom: 42px;
  }
  .tf-product-fbt {
    padding: 32px;
  }
  .tf-product-fbt .tf-btn {
    padding: 16px 32px;
  }
  .tf-variant-dropdown {
    padding: 14px 12px;
  }
  .tab-product-desc .tab-link {
    min-width: 154px;
  }
  .widget-facet:not(:last-child) {
    margin-bottom: 24px;
    padding-bottom: 32px;
  }
  .canvas-sidebar .list-icon-box .tf-icon-box:not(:last-child) {
    margin-bottom: 32px;
  }
  .canvas-sidebar .mega-box:not(:last-child) {
    margin-bottom: 40px;
  }
  .filter-drawer-wrap {
    max-width: 100%;
    position: absolute;
    z-index: 90;
    padding: 32px 32px 42px;
    top: 100%;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    box-shadow: var(--shadow-1);
    border-radius: 16px;
  }
  .filter-drawer-wrap .widget-facet {
    margin-bottom: 0;
    padding-bottom: 0;
    border: 0;
  }
  .filter-drawer-wrap .widget-facet .collapse:not(.show) {
    display: block;
  }
  .filter-drawer-wrap .widget-facet .collapsing {
    height: auto;
    transition: unset;
  }
  .filter-drawer-wrap .facet-title {
    padding: 0px;
  }
  .filter-drawer-wrap .facet-title .icon {
    display: none;
  }
  .filter-drawer-wrap .filter-color-box {
    padding-right: 0;
  }
  .filter-drawer-wrap .canvas-body {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow-y: unset;
    column-gap: 32px;
    row-gap: 40px;
  }
  .filter-drawer-wrap.show {
    margin-top: 10px;
    opacity: 1;
    visibility: visible;
  }
  .tf-product-fbt-wrap {
    padding: 32px 80px 36px;
  }
  .tf-product-fbt-wrap .fbt-info {
    gap: 16px;
  }
  .tf-product-fbt-wrap .fbt-info .bundle-variant, .tf-product-fbt-wrap .fbt-info .bundle-title {
    margin-right: 16px;
  }
  .tf-product-fbt-wrap .tf-product-form-fbt {
    gap: 32px;
  }
  .tf-product-fbt-wrap .list-fbt {
    margin-bottom: 24px;
  }
  .tf-product-fbt-wrap .fbt-swatches {
    gap: 16px;
  }
  .tf-product-volume-discount {
    padding: 32px 70px 42px;
  }
  .list-volume-discount .volume-discount-item .tag-sale {
    right: -40px;
  }
  .tf-product-volume-discount-thumbnail .title-discount {
    margin-bottom: 45px;
  }
  .tf-product-volume-discount-thumbnail .list-volume-discount-thumbnail {
    margin-bottom: 40px;
  }
  .tf-product-media-wrap {
    padding-right: 24px;
  }
  .list-color-product .list-color-item {
    width: 30px;
    height: 30px;
  }
  .tf-loading {
    height: 48px;
    min-width: 138px;
  }
  .hover-sw-nav {
    position: relative;
  }
  .hover-sw-nav .nav-swiper {
    visibility: hidden;
  }
  .hover-sw-nav .swiper-button-next {
    margin-right: 20px;
  }
  .hover-sw-nav .swiper-button-prev {
    margin-left: 20px;
  }
  .hover-sw-nav:hover .nav-swiper {
    visibility: visible;
    margin-left: 0;
    margin-right: 0;
  }
  .gallery-item .box-icon {
    height: 48px;
    width: 48px;
    font-size: 19px;
  }
  .tf-sw-iconbox-row .swiper-slide:not(:last-child) .tf-icon-box {
    position: relative;
    padding-right: 59px;
  }
  .tf-sw-iconbox-row .swiper-slide:not(:last-child) .tf-icon-box::after {
    position: absolute;
    content: "";
    right: 0;
    width: 1px;
    top: 9px;
    bottom: 9px;
    background-color: var(--line);
  }
  .flat-wrapper-iconbox {
    padding: 97px 60px 69px;
  }
  .flat-wrapper-iconbox .tf-icon-box .title {
    font-size: 24px;
    line-height: 30px;
  }
  .grid-cls-v1 {
    gap: 24px;
  }
  .grid-cls-v1 .wg-cls .cls-btn {
    bottom: 32px;
  }
  .grid-cls-v1 .wg-cls .tf-btn {
    font-size: 24px;
    line-height: 32px;
    min-width: 180px;
  }
  .grid-cls-v1 .item3 .btn-cls {
    min-width: 232px;
  }
  .grid-cls-sport .wg-cls .tf-btn {
    padding-top: 10px;
    padding-bottom: 10px;
    min-width: 169px;
  }
  .grid-cls-sport .item3 .tf-btn {
    min-width: 209px;
  }
  .wg-cls-2 {
    gap: 32px;
  }
  .wg-cls-2 .box-title {
    margin-bottom: 24px;
  }
  .wg-cls.style-02 .btn-cls {
    font-size: 24px;
  }
  .wg-cls.style-02 .btn-cls .icon {
    font-size: 14px;
  }
  .wrapper-thumbs-tes .box-right {
    padding: 60px 49px 60px 64px;
  }
  .wrapper-thumbs-tes .box-testimonial-main .quote {
    font-size: 39px;
  }
  .wrapper-thumbs-tes-2 .box-left {
    padding: 60px 200px 60px 0px;
  }
  .wrapper-thumbs-tes-2 .box-testimonial-main .quote {
    font-size: 48px;
  }
  .wrapper-thumbs-tes-3 .box-left {
    padding: 60px 99px 60px;
  }
  .wrapper-thumbs-tes-3 .box-testimonial-main .content {
    gap: 32px;
  }
  .wrapper-thumbs-tes-3 .box-testimonial-main .quote {
    font-size: 68px;
  }
  .wrapper-thumbs-tes-4 .box-right {
    padding: 60px 0px 60px 100px;
  }
  .wrapper-thumbs-tes-4 .box-testimonial-main {
    gap: 42px;
  }
  .wrapper-thumbs-tes-4 .box-testimonial-main .box-content {
    gap: 24px;
  }
  .flat-thumbs-tes .sw-dot-default, .flat-thumbs-tes .box-nav-swiper {
    margin-top: 32px;
  }
  .box-testimonial-main {
    gap: 32px;
  }
  .fs-cls .content {
    bottom: 42px;
  }
  .fs-cls .content .tf-btn {
    font-size: 20px;
    line-height: 30px;
    min-width: 200px;
  }
  .fs-cls.lg .tf-btn {
    font-size: 24px;
    line-height: 30px;
    min-width: 248px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .wrapper-control-shop .tf-list-layout {
    gap: 32px;
  }
  .wrapper-control-shop .tf-list-layout .wg-pagination {
    margin-top: 40px;
  }
  .wrapper-control-shop .tf-grid-layout {
    row-gap: 40px;
  }
  .wrapper-control-shop .tf-grid-layout .wg-pagination {
    margin-top: 20px;
  }
  .flat-wrap-cls {
    row-gap: 42px;
  }
  .flat-wrap-cls .wg-pagination {
    margin-top: 18px;
  }
  .tab-content .tf-grid-layout {
    row-gap: 40px;
  }
  .tab-content .box-btn {
    margin-top: 32px;
  }
  .menu-tab-line.style-lg .tab-link {
    padding: 10px 4px;
    font-size: 36px;
    line-height: 43.2px;
  }
  .menu-tab-line.style-lg .tab-link::after {
    height: 2px;
  }
  .menu-tab-line.style-lg3 .tab-link {
    font-size: 48px;
    line-height: 60px;
    padding: 0px;
  }
  .banner-shop.style-left-center .content {
    gap: 32px;
    left: 64px;
  }
  .banner-shop.style-left-center .box-title {
    gap: 20px;
  }
  .banner-shop.style-left-center .tf-btn {
    padding: 14px 37px;
  }
  .banner-shop.style-top .content {
    top: 82px;
    gap: 32px;
  }
  .banner-shop.style-top .box-title {
    gap: 20px;
  }
  .banner-shop.style-lg-bottom .content {
    bottom: 40px;
    left: 32px;
    right: 32px;
  }
  .banner-shop .box {
    padding: 20px 73px 20px 32px;
  }
  .tab-content .swiper-pagination-progressbar {
    margin-top: 112px;
  }
  .banner-cd-phonecase {
    margin: 0px 40px;
  }
  .tf-btn.btn-large {
    padding: 14px 38px;
  }
  .flat-wrapper-lookbook .col-left {
    width: 48.6%;
    padding: 48px 102px 27px;
  }
  .flat-wrapper-lookbook .col-right {
    width: 51.4%;
  }
  .flat-wrapper-lookbook .slider-wrap-lb {
    padding-left: 68px;
    padding-right: 68px;
  }
  .flat-wrapper-lookbook .slider-wrap-lb .title {
    margin-bottom: 64px;
  }
  .wg-testimonial-2 .text {
    margin-top: 40px;
  }
  .table-page-cart td {
    padding: 30px 9px;
  }
  .footer-style-2 .footer-body {
    padding-top: 80px;
    padding-bottom: 88px;
  }
  .fl-control-sw2 .swiper-button-prev, .fl-control-sw .swiper-button-prev {
    left: -22px;
  }
  .fl-control-sw2 .swiper-button-next, .fl-control-sw .swiper-button-next {
    right: -22px;
  }
  .wg-testimonial-3 {
    margin-bottom: 55px;
    gap: 40px;
  }
  .wg-testimonial-3 .box-top {
    gap: 24px;
  }
  .wg-testimonial-3 .box-author {
    gap: 8px;
  }
  .wg-testimonial-3 .box-title-desc {
    gap: 24px;
  }
  .slider-baby .clouds {
    bottom: -65px;
  }
  .cloud-footer {
    margin-bottom: -60px;
  }
}
@media (min-width: 1440px) {
  .wrapper-lookbook-1.type-2 .col-left {
    width: 50.4%;
    padding: 48px 46px 27px 182px;
  }
  .section-results .tf-grid-layout {
    gap: 122px;
  }
  .slider-skincare2 .content-slider {
    gap: 48px;
  }
  .slider-skincare2 .content-slider .box-title-slider {
    gap: 32px;
  }
  .footer-default.spacing-1 .row-footer .s3, .footer-default.spacing-1 .row-footer .s2, .footer-default.spacing-1 .row-footer .s1 {
    padding-top: 100px;
    padding-bottom: 89px;
  }
  .footer-default.spacing-1 .row-footer .s1 {
    width: 34.375%;
  }
  .footer-default.spacing-1 .row-footer .s2 {
    width: 36.875%;
    padding-right: 0;
    padding-left: 132px;
  }
  .footer-default.spacing-1 .row-footer .s3 {
    padding-left: 0;
    gap: 0;
    justify-content: space-between;
    width: 25.41%;
  }
  .footer-default.spacing-1 .footer-heading {
    margin-bottom: 32px;
  }
  .footer-default.spacing-1 .footer-bottom-wrap {
    padding: 24px 0;
  }
  .footer-default.spacing-1 .footer-bottom-wrap p, .footer-default.spacing-1 .footer-bottom-wrap a {
    font-size: 16px;
    line-height: 24px;
  }
  .footer-default.spacing-1 .form-newsletter .subscribe-button.h56 {
    height: 56px;
  }
  .wrapper-thumbs-tes.type-2 .box-right {
    padding-left: 120px;
  }
  .wrapper-thumbs-tes.type-2 .box-testimonial-main {
    gap: 20px;
  }
  .wrapper-thumbs-tes.type-2 .box-testimonial-main .content {
    gap: 32px;
  }
  .wrapper-lookbook-1 .col-right {
    width: 49.31%;
  }
  .wrapper-lookbook-1.type-1 .slider-wrap-lb {
    max-width: 474px;
    margin-left: auto;
    margin-right: auto;
  }
  .banner-furniture2 .banner-content {
    padding: 48px 64px;
    gap: 60px;
  }
  .grid-cls-v2.type-1 .item3 {
    min-height: 435px;
  }
  .slider-furniture2 .content-slider {
    padding: 48px 64px !important;
    gap: 60px;
  }
  .slider-furniture2 .content-slider .box-title {
    gap: 16px;
  }
  .slider-furniture2 .content-slider .box-title .title {
    margin-bottom: 8px;
  }
  .slider-pickleball .content-slider {
    gap: 60px;
  }
  .slider-pickleball .box-title-slider .heading {
    font-size: 94px;
    line-height: 104px;
  }
  .s-cls.abs-top-center .content {
    right: 40px;
    left: 40px;
    top: 40px;
    gap: 20px;
  }
  .topbar-wraper {
    gap: 150px;
  }
  .slider-fashion-2 {
    padding: 0px 30px;
  }
  .banner-why-shop {
    padding-left: 115px;
    padding-right: 115px;
  }
  .row-footer .s2 {
    padding: 60px 74px 60px 80px;
  }
  .row-footer .s3 {
    padding: 60px 80px;
    padding-right: 0;
  }
  .tf-main-success .box-progress-order {
    padding: 32px 64px;
  }
  .tf-product-volume-discount-thumbnail {
    padding: 32px 70px 32px 45px;
  }
  .wg-testimonial.style-2.type-2 {
    padding: 40px 32px 24px;
  }
  .wg-testimonial.style-2.type-2 .br-line {
    margin: 24px 0px;
  }
  .s-banner-bundle .content-list {
    padding: 24px 48px;
  }
  .lh-19 {
    line-height: 19px;
  }
  .flat-wrap-testimonial {
    padding: 64px 0px 37px;
  }
  .main-content-account {
    gap: 64px;
  }
  .account-dashboard .content-account {
    gap: 24px;
  }
  .banner-text-jewelry .image-1 {
    max-width: 517px;
  }
  .banner-text-jewelry .image-2 {
    max-width: 275px;
    right: 48px;
    bottom: 27px;
  }
  .banner-text-skincare.type-2 .image-1 {
    max-width: 663px;
  }
  .banner-text-skincare.type-2 .image-2 {
    max-width: 361px;
    bottom: 44px;
  }
  .banner-cls-phonecase .box-content {
    padding-left: 100px;
    flex-shrink: 0;
    width: unset;
  }
  .banner-cls-phonecase .image {
    max-width: 1007px;
    width: 100%;
  }
  .slider-phonecase {
    margin: 27px 40px 0px;
  }
  .slider-electric-access .content-slider {
    margin-left: 52px;
  }
  .tf-grid-layout.xxl-col-2 {
    grid-template-columns: 1fr 1fr;
  }
  .tf-grid-layout.xxl-col-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .tf-grid-layout.xxl-col-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .tf-grid-layout.xxl-col-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .tf-grid-layout.xxl-col-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .tf-grid-layout.xxl-col-7 {
    grid-template-columns: repeat(7, 1fr);
  }
  .header-default .box-nav-menu .item-link::after {
    width: calc(100% + 80px);
  }
  .header-default .style-space .box-nav-menu {
    gap: 36px;
  }
  .box-nav-menu .mega-menu {
    left: 100px;
    right: 100px;
    padding: 32px 104px 60px;
  }
  .box-nav-menu .mega-shop {
    left: 76px;
    right: 80px;
    padding: 32px 123px 60px;
  }
  .box-nav-menu .mega-home {
    padding: 36px 160px;
  }
  .box-nav-menu .mega-tab .wrapper-sub-menu-tab .tab-pane {
    gap: 60px;
  }
  .box-nav-menu.justify-content-start .mega-home {
    left: 0;
  }
  .flat-wrap-media-product .swiper-button-next {
    right: -20px;
  }
  .flat-wrap-media-product .swiper-button-prev {
    left: -20px;
  }
  .flat-wrap-iconbox .tf-swiper {
    padding: 0px 65px;
  }
}
@media (min-width: 1600px) {
  .header-default .box-nav-menu {
    gap: 40px;
  }
  .footer-style-2 .footer-col-block.s4 {
    padding: 0px 110px;
  }
  .s-banner-product .content-right {
    max-width: 791px;
    width: 100%;
  }
  .s-banner-product .content-banner {
    justify-content: unset;
    padding-left: 90px;
  }
  .banner-cls-baby .item {
    right: -69px;
  }
  .s2-banner-bundle .banner-bundle .item {
    left: -66px;
  }
  .tf-btn.btn-cls:hover .icon {
    margin-left: 16px;
  }
  .fl-control-sw2 .swiper-button-prev {
    left: -54px;
  }
  .fl-control-sw2 .swiper-button-next {
    right: -54px;
  }
}
@media (max-width: 1440px) {
  .section-cls-tabs {
    gap: 30px;
  }
  .section-cls-tabs .tab-content img {
    border-radius: 16px;
  }
  .section-cls-tabs .right {
    padding: 20px 20px;
    border-radius: 16px;
  }
  .section-cls-tabs .menu-tab-line .tab-link {
    padding: 15px 0;
    font-size: 20px;
    line-height: 30px;
  }
  .section-cls-tabs .menu-tab-line .tab-link .icon {
    font-size: 14px;
    width: 70px;
    height: 50px;
  }
  .section-cls-tabs .menu-tab-line .tab-link.active {
    padding: 30px 0;
  }
  .box-nav-menu .sub-menu-style-2 {
    left: -300px;
  }
  .slider-fashion-1 .slider-wrap {
    height: 700px;
  }
  .leave-comment-wrap .title {
    font-size: 30px;
    line-height: 42px;
    margin-bottom: 36px;
  }
}
@media (max-width: 1399px) {
  .tf-control-layout .sw-layout-5, .tf-control-layout .sw-layout-6 {
    display: none;
  }
}
@media (min-width: 767px) and (max-width: 1199px) {
  .row-footer .s3.border-0 {
    grid-column: unset;
  }
  .row-footer .s2.border-0 {
    grid-column: 1 / -1;
  }
  .row-footer .s2.border-0 .form-newsletter {
    max-width: unset;
  }
}
@media (max-width: 1199px) {
  .slider-jewelry {
    padding-left: 15px;
    padding-right: 15px;
  }
  .wrapper-thumbs-tes-3.type-1 .box-left {
    padding-right: 0;
    padding-left: 40px;
  }
  .pb_xl-0 {
    padding-bottom: 0 !important;
  }
  .footer-pb-2 {
    padding-bottom: 165px;
  }
  .footer-style-2 .s1 {
    margin-bottom: 30px;
  }
  .tf-sticky-btn-atc {
    bottom: 66px;
  }
  .title-success-order .icon {
    width: 100px;
    height: 100px;
  }
  .tf-page-cart-sidebar {
    margin-top: 60px;
  }
  .tf-toolbar-bottom {
    display: flex;
  }
  .xl-pb-70 {
    padding-bottom: 65px;
  }
  .popup-search.type-search-product .wrapper-shop {
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 30px;
  }
  .popup-search.type-search-product .top-title {
    margin-bottom: 20px;
  }
  .sidebar-filter {
    position: fixed;
    bottom: 0;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    background-clip: padding-box;
    outline: 0;
  }
  .sidebar-filter.left {
    top: 0;
    left: 0;
    transform: translateX(-100%);
  }
  .sidebar-filter.right {
    top: 0;
    right: 0;
    transform: translateX(100%);
  }
  .sidebar-filter.show {
    transform: none;
  }
  .banner-text-fashion .image-1 {
    width: 80%;
  }
  .banner-text-fashion .image-2 {
    left: 0%;
    bottom: 5%;
    top: 35%;
    width: 50%;
  }
  .logo-header-2, .logo-header {
    display: flex;
    justify-content: center;
  }
  .header-default .wrapper-header .nav-icon {
    gap: 10px;
  }
  .header-absolute-2 {
    margin-bottom: -64px;
  }
  .header-absolute-2:not(.header-bg) .logo-header .logo-white {
    display: block;
  }
  .header-absolute-2:not(.header-bg) .logo-header .logo-dark {
    display: none;
  }
  .header-absolute-2:not(.header-bg) .nav-icon .nav-icon-item {
    color: var(--white);
  }
  .header-absolute-2:not(.header-bg) .mobile-menu {
    color: var(--white);
  }
  .slider-scroll, .product-thumbs-slider {
    flex-direction: column;
  }
  .slider-scroll .flat-wrap-media-product, .product-thumbs-slider .flat-wrap-media-product {
    width: 100%;
  }
  .slider-scroll .tf-product-media-thumbs, .product-thumbs-slider .tf-product-media-thumbs {
    order: 1;
    width: 100%;
  }
  .tab-vertical-product-desc {
    display: block;
  }
  .tab-vertical-product-desc .menu-tab {
    display: flex;
    overflow: auto;
    gap: 20px;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }
  .tab-vertical-product-desc .tab-link {
    white-space: nowrap;
    padding: 12px 0px;
  }
  .tab-vertical-product-desc .tab-link::after {
    top: auto;
    bottom: 0;
    height: 1px;
    width: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .tab-vertical-product-desc .tab-link.active::after {
    width: 100%;
    height: 1px;
  }
  .tab-vertical-product-desc .tab-content {
    margin-top: 20px;
  }
  .tab-vertical-product-desc .wd-product-descriptions {
    padding: 30px;
  }
  .tf-control-layout .sw-layout-4 {
    display: none;
  }
  .card-product.card-product-size .countdown-box {
    bottom: 40px;
  }
  .mx_40 {
    margin-left: 24px;
    margin-right: 24px;
  }
  .flat-controltab-nav .box-nav-swiper {
    display: none;
  }
}
@media (max-width: 1024px) {
  .section-results .results-item {
    margin-bottom: 30px;
  }
  h1, .display-2xl {
    font-size: 52px;
    line-height: 70px;
  }
  .fs-84, .display-2xl-2 {
    font-size: 52px;
    line-height: 62px;
  }
  h2, .display-xl, .display-xl-2 {
    font-size: 40px;
    line-height: 52px;
  }
  h3, .display-lg, .display-lg-2, .display-lg-3 {
    font-size: 38px;
    line-height: 50px;
  }
  .display-lg-5, .display-lg-4 {
    font-size: 38px;
    line-height: 48px;
  }
  h4, .display-md, .display-md-2, .display-md-3 {
    font-size: 30px;
    line-height: 38px;
  }
  h5, .display-sm {
    font-size: 28px;
    line-height: 36px;
  }
  h6, .display-xs {
    font-size: 22px;
    line-height: 30px;
  }
  .flat-spacing-35, .flat-spacing-33, .flat-spacing-3 {
    padding-top: 75px;
    padding-bottom: 75px;
  }
  .flat-spacing-6, .flat-spacing {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .flat-spacing-11 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .flat-spacing-14 {
    padding-top: 73px;
    padding-bottom: 88px;
  }
  .flat-spacing-15 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .flat-spacing-16 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .flat-spacing-17 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .flat-spacing-19 {
    padding-top: 87px;
    padding-bottom: 100px;
  }
  .flat-spacing-21 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .flat-spacing-22 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .flat-spacing-23 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .flat-spacing-28, .flat-spacing-26 {
    padding-top: 100px;
    padding-bottom: 80px;
  }
  .flat-spacing-27 {
    padding-top: 125px;
    padding-bottom: 100px;
  }
  .flat-spacing-29 {
    padding-top: 73px;
    padding-bottom: 88px;
  }
  .flat-spacing-30 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .tf-product-info-wrap .tf-product-delivery-return {
    display: block;
  }
  .tf-product-info-wrap .tf-product-delivery-return .product-delivery:not(:last-child) {
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .banner-shop .box-title .title {
    font-size: 30px;
    line-height: 36px;
  }
}
@media (max-width: 991px) {
  .slider-jewelry {
    padding-left: 15px;
    padding-right: 15px;
  }
  .slider-jewelry .heading {
    font-size: 40px;
    line-height: 52px;
  }
  .tf-product-info-wrap .tf-product-total-quantity .group-btn.type-1 {
    flex-wrap: wrap;
  }
  .tf-product-info-wrap .tf-product-total-quantity .group-btn.type-1 .btn-add-to-cart {
    order: 1;
  }
  .banner-glasses .box-content {
    padding: 24px 30px;
  }
  .mt-lg-40 {
    margin-top: 40px !important;
  }
  .section-asked-questions .content {
    margin-bottom: 40px;
    gap: 24px;
  }
  .section-asked-questions .faq-wrap {
    padding: 24px 15px;
    border-radius: 8px;
  }
  .wd-customer-review {
    flex-direction: column;
  }
  .wg-cls-text {
    padding: 15px;
  }
  .flat-wrapper-testimonial > img {
    width: 150px;
  }
  .flat-wrapper-testimonial .img-item-2 {
    left: 0;
    bottom: 0;
  }
  .flat-wrapper-testimonial .img-item-1 {
    top: 0;
  }
  .grid-cls-suppermarket .s-cls {
    height: 400px;
  }
  @keyframes floating {
    0% {
      transform: translateY(0px);
    }
    100% {
      transform: translateY(10px);
    }
  }
  .banner-text-skincare .text-xl-2 {
    font-size: 18px;
    line-height: 22px;
  }
  .s-contact .content-left {
    margin-bottom: 42px;
  }
  .s-blog-single {
    padding-top: 80px;
    padding-bottom: 60px;
  }
  .popup-search.type-search-product .wrapper-shop {
    row-gap: 30px;
  }
  .banner-tagline-phonecase {
    flex-wrap: wrap;
    gap: 30px;
  }
  .banner-tagline-phonecase .image {
    width: 100%;
    height: 450px;
  }
  .banner-tagline-phonecase .content {
    gap: 5px;
  }
  .banner-tagline-phonecase .list-tagline li {
    padding-left: 0px;
  }
  .card-product.style-list .box-icon {
    width: 46px;
    height: 46px;
  }
  .wg-pagination {
    gap: 8px;
  }
  .wg-pagination .pagination-item {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
  .banner-lookbook {
    height: 500px;
  }
  .banner-container-wrap {
    margin-bottom: 60px;
  }
  .s-banner-cd-baby .banner-container {
    flex-wrap: wrap-reverse;
    justify-content: center;
    text-align: center;
    padding: 30px 15px;
  }
  .banner-cls-phonecase .banner-content {
    flex-wrap: wrap-reverse;
  }
  .s-banner-colection .box-content {
    gap: 20px;
  }
  .s-banner-colection .box-title-banner {
    gap: 5px;
  }
  .s-banner-colection br {
    display: none;
  }
  .slider-fashion-3 .image {
    margin-left: 100px;
  }
  .slider-default .box-title-slider, .slider-style-2 .box-title-slider {
    gap: 10px;
  }
  .slider-default .content-slider, .slider-style-2 .content-slider {
    gap: 20px;
  }
  .slider-default .slider-wrap {
    height: 500px;
  }
  .sb-contact {
    margin-bottom: 50px;
  }
  .sb-banner .image {
    max-height: 600px;
  }
  .flat-single-product {
    padding-bottom: 80px;
  }
  .nav-swiper {
    width: 40px;
    height: 40px;
  }
  .tf-btn {
    padding: 10px 24px;
    gap: 8px;
  }
  .tf-product-info-wrap .tf-product-extra-link {
    gap: 15px;
  }
  .tf-bundle-product-item {
    gap: 15px;
  }
  .tf-bundle-product-item .bundle-image {
    width: 100px;
    min-width: 100px;
  }
  .tf-product-fbt-wrap .fbt-image {
    width: 100px;
    min-width: 100px;
  }
  .tf-product-fbt-wrap .list-fbt {
    gap: 20px;
  }
  .wg-cls {
    gap: 12px;
  }
  .main-content-account {
    flex-wrap: wrap;
  }
  #goTop {
    right: 20px;
    width: 32px;
    height: 32px;
  }
  .sec-blog {
    padding-top: 80px;
    padding-bottom: 100px;
  }
  .mobile-logo, .mobile__logo {
    text-align: center;
  }
  .mobile-logo img, .mobile__logo img {
    max-width: 100px;
    height: auto;
  }
}
@media (max-width: 767px) {
  .wrapper-thumbs-tes.type-2 .box-right {
    padding-left: 0;
    padding-right: 0;
  }
  .wrapper-lookbook-1.type-1 .col-left {
    padding-top: 24px;
  }
  .wrapper-thumbs-tes-3.type-1 .box-left {
    padding-left: 0px;
  }
  .box-store .bot .tf-btn {
    font-size: 16px;
  }
  .md-px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .form-buyX-getY .item-product::before {
    top: 24px;
  }
  .form-buyX-getY .group-item-product .arrow {
    width: 42px;
    height: 42px;
  }
  .sec-blog {
    padding-top: 60px;
    padding-bottom: 80px;
  }
  .s-blog-single {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .section-results .tf-grid-layout {
    row-gap: 34px;
  }
  .section-results .results-item {
    margin-bottom: 20px;
  }
  .section-cls-tabs {
    flex-direction: column;
  }
  .section-cls-tabs .left, .section-cls-tabs .right {
    width: 100%;
  }
  .leave-comment-wrap .title {
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 32px;
  }
  .s-term-user .term-title {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 20px;
  }
  .modal-compare .title {
    margin-bottom: 24px;
  }
  .s-contact .wg-map {
    margin-bottom: 60px;
  }
  .sidebar-order-success .order-box {
    padding-bottom: 24px;
  }
  .logo-header img {
    width: 110px;
  }
  .form-default fieldset label {
    font-size: 14px;
    line-height: 22px;
  }
  .s-blog-single .group-image {
    margin-bottom: 30px;
    flex-wrap: wrap;
  }
  .tf-social-icon.style-1 a {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }
  .flat-wrapper-testimonial > img {
    width: 120px;
  }
  .flat-wrapper-iconbox {
    padding: 60px 24px 24px;
  }
  .footer-default {
    font-size: 14px;
    line-height: 22px;
  }
  .grid-cls-suppermarket .s-cls {
    height: 350px;
  }
  .grid-cls-suppermarket .s-cls .content {
    right: 100px;
  }
  .banner-lookbook .lookbook-item.position3 {
    left: 37%;
  }
  .grid-cls-v5 .item1, .grid-cls-v5 .item2, .grid-cls-v5 .item3, .grid-cls-v5 .item4 {
    height: 400px;
  }
  .footer-logo {
    max-width: 108px;
  }
  .s3-banner-with-text .content-with-text, .s2-banner-with-text .content-with-text {
    text-align: center;
    justify-items: center;
  }
  .flat-title.style-between {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    align-items: center !important;
  }
  .image-compare .icv__img-a {
    height: 300px;
    object-fit: cover;
  }
  .image-compare .icv__label {
    padding: 6px 20px;
    font-size: 14px;
    line-height: 22px;
    bottom: 12px;
  }
  .image-compare .icv__label-before {
    left: 12px;
  }
  .image-compare .icv__label-after {
    right: 12px;
  }
  .image-compare .icv__circle {
    width: 42px;
    height: 42px;
  }
  .image-compare .icv__circle::after {
    width: 32px;
    height: 32px;
  }
  .image-compare .icv__circle::before {
    font-size: 12px;
  }
  .tf-main-success .box-progress-order {
    gap: 12px;
    text-wrap: nowrap;
    overflow-x: auto;
  }
  .tf-main-success .box-progress-order .order-progress-item {
    border: 0 !important;
    padding: 0px 8px;
    gap: 8px;
  }
  .tf-main-success .box-timeline-order {
    margin: 42px auto 32px;
  }
  .title-success-order .icon {
    width: 80px;
    height: 80px;
  }
  .tf-checkout-cart-main .grid-2, .tf-checkout-cart-main .grid-3 {
    grid-template-columns: 1fr;
  }
  .table-page-cart thead {
    display: none;
  }
  .table-page-cart .tf-cart-item {
    margin-bottom: 15px;
    padding-inline-start: 94px;
    min-height: 140px;
    display: block;
    font-size: 12px;
    font-weight: 500;
    position: relative;
  }
  .table-page-cart .tf-cart-item .wg-quantity {
    padding: 2px 4px;
  }
  .table-page-cart .tf-cart-item .tf-cart-item_total {
    width: 100%;
  }
  .table-page-cart .tf-cart-item .img-box {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
    width: 80px;
    max-height: 110px;
  }
  .table-page-cart .tf-cart-item td {
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 10px 0;
    margin: 0;
  }
  .table-page-cart .tf-cart-item td:not(:last-child) {
    border-bottom: 1px solid var(--line);
  }
  .table-page-cart .tf-cart-item td[data-cart-title]:before {
    content: attr(data-cart-title);
    color: var(--dark);
    text-align: start;
    flex: 1 1 auto;
  }
  .table-page-cart .tf-cart-item_product .cart-info .variants {
    margin-bottom: 15px;
  }
  .tf-sticky-btn-atc .tf-sticky-atc-product {
    display: none !important;
  }
  .tf-sticky-btn-atc .tf-sticky-atc-infos {
    width: 100%;
  }
  .tf-sticky-btn-atc .tf-sticky-atc-infos form {
    flex-direction: column;
  }
  .wd-form-address {
    padding: 20px 15px;
  }
  .account-orders .account-no-orders-wrap img {
    margin-bottom: 30px;
  }
  .account-orders .account-no-orders-wrap .text {
    margin-bottom: 24px;
  }
  .modal-compare .modal-content {
    padding: 24px 15px;
  }
  .modal-order-detail .list-infor {
    gap: 15px;
    margin-bottom: 32px;
  }
  .modal-order-detail .list-infor li:not(:last-child) {
    padding-right: 15px;
  }
  .modal-order-detail .tb-order-detail [data-title]:before {
    content: attr(data-title);
    text-align: start;
    flex: 1 1 auto;
  }
  .modal-order-detail .tb-order-detail .item {
    font-size: 14px;
  }
  .modal-order-detail .tb-order-detail .order-detail-item:not(.subtotal) {
    padding: 15px;
    padding-left: 90px;
    position: relative;
    flex-direction: column;
    align-items: start;
    gap: 10px;
  }
  .modal-order-detail .tb-order-detail .order-detail-item:not(.subtotal) .image {
    position: absolute;
    top: 15px;
    left: 0;
    width: 80px;
    height: 111.7px;
  }
  .modal-order-detail .tb-order-detail .order-detail-item:not(.subtotal) .item {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .modal-order-detail .tb-order-detail .subtotal .item {
    width: max-content;
  }
  .modal-share-social .wrap-code {
    margin-bottom: 20px;
  }
  .popup-style-2 .modal-content {
    padding: 26px 20px;
  }
  .popup-style-2 .modal-header {
    margin-bottom: 20px;
  }
  .form-ask-question button {
    margin-top: 20px;
  }
  .popup-search.type-search-product .wrapper-shop {
    grid-template-columns: repeat(2, 1fr);
  }
  .wg-map .map {
    height: 350px;
  }
  .wg-map.style-absolute .box-store {
    position: unset;
    transform: unset;
    max-width: 100%;
    text-align: center;
  }
  .wg-map.style-absolute .box-store:not(.box-store-bg) {
    padding: 30px 0px 0px;
  }
  .wg-map.style-absolute .box-store.box-store-bg {
    margin-top: 24px;
  }
  .banner-account.banner-acc-countdown {
    padding: 15px;
  }
  .account-dashboard .box-check-list {
    gap: 15px;
  }
  .account-dashboard .banner-account .image img {
    height: 250px;
    object-fit: cover;
  }
  .popup-style-1 .popup-header {
    padding: 15px;
    padding-bottom: 10px;
  }
  .popup-style-1 .popup-header::after {
    left: 15px;
    right: 15px;
  }
  .popup-style-1 .popup-inner {
    padding: 15px;
  }
  .modal-before-you-leave .content {
    margin: 0 15px;
    padding: 20px 0;
    margin-bottom: 20px;
  }
  .modal-before-you-leave .content .heading {
    margin-bottom: 16px;
  }
  .modal-before-you-leave .tf-mini-cart-sroll {
    padding-left: 15px;
    padding-right: 15px;
  }
  .popup-shopping-cart .tf-minicart-recommendations, .popup-shopping-cart .tf-mini-cart-tool-content, .popup-shopping-cart .tf-mini-cart-bottom-wrap, .popup-shopping-cart .tf-mini-cart-tool, .popup-shopping-cart .tf-mini-cart-threshold, .popup-shopping-cart .tf-mini-cart-item {
    padding-left: 15px;
    padding-right: 15px;
  }
  .popup-shopping-cart .tf-mini-cart-tool-content .tf-cart-tool-btns .tf-btn {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 14px;
    height: 48px;
  }
  .popup-shopping-cart.style-2 .also-like-product .tf-mini-cart-item .tf-mini-cart-info {
    align-items: flex-start;
  }
  .popup-search .modal-content {
    padding: 50px 0;
  }
  .popup-search .looking-for-wrap {
    margin-bottom: 30px;
  }
  .popup-search .heading {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    margin-bottom: 24px;
  }
  .popup-search .form-search {
    margin-bottom: 24px;
  }
  .modal-newsletter.style-absolute .modal-content img {
    min-height: 500px;
  }
  .modal-newsletter.style-row .modal-top {
    width: 100%;
    height: 300px;
  }
  .modal-newsletter.style-row .modal-bottom {
    width: 100%;
  }
  .card-product .tooltip, .card-product .size-box {
    display: none !important;
  }
  .card-product .price-wrap {
    font-size: 14px;
    line-height: 20px;
  }
  .card-product .list-product-btn li.wishlist, .card-product .list-product-btn li.compare {
    display: none;
  }
  .card-product .list-product-btn .box-icon.wishlist, .card-product .list-product-btn .box-icon.compare {
    display: none;
  }
  .card-product.style-2 .list-product-btn {
    border-radius: 30px;
    overflow: hidden;
  }
  .card-product.style-2 .list-product-btn .box-icon {
    border: none;
  }
  .card-product.style-2 .list-product-btn li .quickview {
    border-radius: 0 30px 30px 0 !important;
  }
  .card-product.style-2 .list-product-btn li:first-child .box-icon {
    border-right: 1px solid var(--line);
  }
  .card-product.style-3 .product-btn-main .btn-main-product {
    padding: 6px;
  }
  .card-product.style-3 .product-btn-main .btn-main-product span {
    font-size: 12px;
    line-height: 20px;
  }
  .card-product.style-3 .product-btn-main .btn-main-product .icon {
    display: none;
  }
  .card-product.style-3 .product-btn-main .btn-main-product.quickview {
    display: flex;
  }
  .card-product.out-of-stock .card-product-wrapper::before {
    content: "Sold Out";
    width: 60px;
    height: 60px;
    font-size: 10px;
  }
  .card-product.style-list .add-to-cart {
    padding: 6px 24px;
    font-size: 14px;
  }
  .card-product.style-list .box-icon {
    width: 38px;
    height: 38px;
  }
  .card-product.style-list .list-product-btn {
    gap: 8px;
  }
  .grid-cls-v1 .wg-cls .image {
    height: 400px;
  }
  .banner-text-plant .image img {
    max-height: 500px;
  }
  .s-banner-with-text .content-banner {
    text-align: center;
    gap: 15px;
    margin-top: 30px;
  }
  .s-banner-with-text .banner-container-wrap {
    margin-bottom: 50px;
  }
  .s-banner-with-text .box-title-banner {
    gap: 5px;
  }
  .s-banner-product .image-wrap {
    width: 100%;
  }
  .s-banner-product .content-banner {
    gap: 20px;
    flex-wrap: wrap;
  }
  .s-banner-product .content-right {
    gap: 20px;
  }
  .s-banner-product .content-right .box-title {
    gap: 5px;
  }
  .s-banner-product .image {
    max-width: unset;
    height: 600px;
  }
  .wg-countdown-2 .countdown__item {
    gap: 0px;
    min-width: 40px;
  }
  .wg-countdown-2 .countdown__value {
    font-size: 30px;
    line-height: 40px;
  }
  .s-banner-countdown .banner-content {
    left: 15px;
    right: 15px;
    transform: translateY(-50%);
  }
  .s-banner-countdown .image img {
    min-height: 400px;
  }
  .s-banner-colection .tf-col-2 {
    grid-template-columns: repeat(1, 1fr);
  }
  .s-banner-colection .box-content {
    margin: 0px;
    text-align: center;
  }
  .s-banner-colection .image img {
    width: 100%;
    object-fit: cover;
  }
  .sw-dots .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
  }
  .sw-dots .swiper-pagination-bullet::after {
    width: 20px;
    height: 20px;
  }
  .slider-pod br {
    display: none;
  }
  .slider-style-2 .slider-wrap {
    flex-wrap: wrap-reverse;
  }
  .slider-style-2 .box-content-left {
    padding: 70px 0px 80px;
    position: unset;
    width: 100%;
  }
  .slider-style-2 .box-content-left br {
    display: none;
  }
  .slider-style-2 .image {
    width: 100%;
    height: 300px;
  }
  .slider-default .slider-wrap {
    height: 400px;
  }
  .slider-default .wrap-pagination {
    bottom: 20px;
  }
  .wg-coming-soon {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .s-faq .name-faq {
    margin-bottom: 20px;
  }
  .s-faq .faq-item:not(:last-child) {
    margin-bottom: 40px;
  }
  .sb-contact {
    padding: 30px 15px;
    margin-bottom: 30px;
  }
  .sb-contact .title {
    margin-bottom: 15px;
  }
  .sb-contact .sub {
    margin-bottom: 15px;
  }
  .s-blog-single .heading {
    gap: 10px;
    margin-bottom: 30px;
  }
  .s-blog-single .heading .entry-meta {
    gap: 5px 10px;
  }
  .s-blog-single .content .entry_image {
    margin-bottom: 30px;
  }
  .s-blog-single .content > .text {
    margin-bottom: 30px;
    font-size: 14px;
    line-height: 22px;
  }
  .s-blog-single .group-image {
    margin-bottom: 30px;
  }
  .s-blog-single .block-quote {
    margin-bottom: 20px;
  }
  .s-blog-single .block-quote p {
    font-size: 14px;
    line-height: 22px;
  }
  .s-blog-single .bot {
    margin-bottom: 30px;
  }
  .s-blog-single .bot .entry-tag {
    margin-bottom: 10px;
  }
  .s-blog-single .related-post {
    gap: 15px;
    padding: 30px 0px;
  }
  .s-blog-single .related-post p {
    margin-bottom: 5px;
    font-size: 12px;
  }
  .s-blog-single .related-post p.name-post {
    font-size: 14px;
  }
  .s-blog-single .related-post .post {
    gap: 10px;
  }
  .modal-before-you-leave .modal-content {
    max-width: 320px;
  }
  h1, .display-2xl {
    font-size: 42px;
    line-height: 60px;
  }
  .fs-84, .display-2xl-2 {
    font-size: 42px;
    line-height: 52px;
  }
  h2, .display-xl, .display-xl-2 {
    font-size: 30px;
    line-height: 42px;
  }
  h3, .display-lg, .display-lg-2, .display-lg-3 {
    font-size: 28px;
    line-height: 40px;
  }
  .display-lg-5, .display-lg-4 {
    font-size: 28px;
    line-height: 38px;
  }
  h4, .display-md, .display-md-2, .display-md-3 {
    font-size: 24px;
    line-height: 32px;
  }
  h5, .display-sm {
    font-size: 22px;
    line-height: 30px;
  }
  h6, .display-xs {
    font-size: 20px;
    line-height: 28px;
  }
  .text-xl {
    font-size: 18px;
    line-height: 28px;
  }
  .text-xl-2 {
    font-size: 18px;
    line-height: 22px;
  }
  .text-xl-3 {
    font-size: 18px;
    line-height: 30px;
  }
  .text-lg {
    font-size: 16px;
    line-height: 26px;
  }
  .text-md {
    font-size: 14px;
    line-height: 22px;
  }
  .body-text {
    font-size: 14px;
    line-height: 22.6px;
  }
  .body-text-2 {
    font-size: 14px;
    line-height: 16.2px;
  }
  .s-banner-bundle .bundle-wrap {
    margin-top: 32px;
  }
  .s2-banner-bundle .bundle-wrap {
    margin-top: 60px;
  }
  .banner-about {
    height: 300px;
  }
  #header .nav-icon .nav-account, #header .nav-icon .nav-wishlist, #header .nav-icon .nav-compare {
    display: none;
  }
  .footer .footer-heading-mobile {
    display: block;
    position: relative;
  }
  .footer .footer-heading-mobile::after {
    position: absolute;
    content: "";
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 1px;
    background-color: var(--dark);
    transition: 0.25s ease-in-out;
  }
  .footer .footer-heading-mobile::before {
    position: absolute;
    content: "";
    right: 15px;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 1px;
    height: 12px;
    background-color: var(--dark);
    transition: 0.25s ease-in-out;
  }
  .footer .footer-col-block.open .footer-heading-mobile::before {
    opacity: 0;
  }
  .footer .footer-col-block.open .footer-heading-mobile::after {
    transform: translate(0%, -50%) rotate(180deg);
  }
  .footer .footer-col-block .tf-collapse-content {
    display: none;
  }
  .footer .footer-menu {
    flex-direction: column;
    gap: 18px;
    margin-bottom: 18px;
  }
  .footer .footer-menu > div {
    width: 100%;
  }
  .flat-spacing-6, .flat-spacing-2, .flat-spacing {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .flat-spacing-35, .flat-spacing-33, .flat-spacing-3 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .flat-spacing-9, .flat-spacing-4 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .flat-spacing-5 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .flat-spacing-8 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .flat-spacing-10 {
    padding-top: 40px;
    padding-bottom: 50px;
  }
  .flat-spacing-11 {
    padding-top: 60px;
    padding-bottom: 80px;
  }
  .flat-spacing-12 {
    padding-top: 60px;
    padding-bottom: 44px;
  }
  .flat-spacing-13 {
    padding-top: 60px;
    padding-bottom: 80px;
  }
  .flat-spacing-14 {
    padding-top: 63px;
    padding-bottom: 78px;
  }
  .flat-spacing-15 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .flat-spacing-16 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .flat-spacing-17 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .flat-spacing-19 {
    padding-top: 67px;
    padding-bottom: 80px;
  }
  .flat-spacing-20 {
    padding-top: 66px;
    padding-bottom: 66px;
  }
  .flat-spacing-21 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .flat-spacing-22 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .flat-spacing-23 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .flat-spacing-25 {
    padding-top: 60px;
    padding-bottom: 80px;
  }
  .flat-spacing-26 {
    padding-top: 80px;
    padding-bottom: 60px;
  }
  .flat-spacing-28 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .flat-spacing-27 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .flat-spacing-29 {
    padding-top: 63px;
    padding-bottom: 78px;
  }
  .flat-single-product {
    padding-bottom: 60px;
  }
  .tf-product-info-wrap {
    margin-top: 40px;
  }
  .tf-product-fbt {
    padding: 15px;
  }
  .tf-product-fbt .bundle-total-submit {
    font-size: 16px;
    line-height: 26px;
  }
  .tf-bundle-product-item .bundle-image {
    width: 80px;
    min-width: 80px;
  }
  .tab-vertical-product-desc .wd-product-descriptions {
    padding: 30px 15px;
  }
  .tf-control-layout .sw-layout-3 {
    display: none;
  }
  .tf-group-filter {
    gap: 6px;
  }
  .brand-item {
    max-width: 200px;
  }
  .mx_40 {
    margin-left: 15px;
    margin-right: 15px;
  }
  .banner-shop {
    height: 500px;
  }
  .banner-shop .box-title .title {
    font-size: 26px;
    line-height: 28px;
  }
  .cls-video .img-product {
    max-width: 68px;
  }
  .cls-video .icon {
    width: 35px;
    height: 35px;
  }
  .menu-tab-fill .tab-link {
    min-width: 100px;
    padding: 5px 15px;
  }
  .slider-wrap-lb .card-product {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
  }
  .slider-wrap-lb .card-product .card-product-info {
    padding: 0;
    justify-items: flex-start;
  }
  .slider-wrap-lb .card-product .tf-btn {
    padding: 6px 14px;
    font-size: 14px;
    line-height: 22px;
  }
  .slider-wrap-lb .card-product .card-product-wrapper {
    max-width: 140px;
  }
  .slider-wrap-lb .card-product .box-icon {
    border-radius: 50% !important;
  }
  .footer-pb-2 {
    padding-bottom: 197px;
  }
  .tf-btn {
    font-size: 14px;
    line-height: 24px;
    padding: 8px 20px;
  }
  .s-contact.style-2 .content-left {
    width: 100%;
  }
  .popup-product .modal-header {
    margin-bottom: 32px;
    margin-top: 20px;
  }
}
@media (max-width: 575px) {
  .grid-cls-v2 {
    grid-template-columns: 1fr;
  }
  .grid-cls-v2 > * {
    height: 330px;
  }
  .tf-main-success .ship-address-item {
    margin-bottom: 24px;
  }
  .tf-main-success .ship-address-item .title {
    margin-bottom: 15px;
  }
  .text-xl {
    font-size: 16px;
    line-height: 26px;
  }
  .text-xl-2 {
    font-size: 16px;
    line-height: 20px;
  }
  .text-xl-3 {
    font-size: 16px;
    line-height: 28px;
  }
  .card-product.style-list .card-product-info .desc {
    display: none;
  }
  .card-product .on-sale-item {
    font-size: 12px;
    line-height: 24px;
    height: 24px;
  }
  .banner-lookbook .lookbook-item.position3 {
    left: 24%;
  }
  .wg-testimonial-2 .text {
    font-size: 20px;
  }
  .grid-cls-v5 .item1, .grid-cls-v5 .item2, .grid-cls-v5 .item3, .grid-cls-v5 .item4 {
    height: 300px;
  }
  .grid-cls-v5 .wg-cls .tf-btn {
    padding: 8px 15px;
  }
  .grid-cls-v5 .wg-cls .tf-btn .icon {
    display: none;
  }
  .slider-default .content-slider .sub {
    display: none;
  }
  .slider-electronic .reverse-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 630px;
    min-width: max(100%, 630px);
  }
  .image-compare .icv__img-a {
    height: 200px;
  }
  .form-login .button-wrap {
    flex-wrap: wrap;
  }
  .loobook-product {
    padding: 12px;
    gap: 10px;
  }
  .loobook-product .zero {
    display: none;
  }
  .loobook-product .btn-lookbook {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
  .loobook-product .content {
    gap: 8px;
  }
  .s-banner-product .image {
    height: 450px;
  }
  .s-banner-product .loobook-product {
    left: 15px;
    right: 15px;
    bottom: 15px;
  }
  .wg-countdown-2 {
    padding: 15px;
  }
  .wg-countdown-2 .countdown__timer {
    gap: 29px !important;
  }
  .wg-countdown .countdown__timer {
    gap: 10px;
  }
  .wg-countdown .countdown__item {
    width: 70px;
    height: 70px;
  }
  .wg-countdown .countdown__value {
    font-size: 24px;
    line-height: 32px;
  }
  .s-coming-soon br {
    display: none;
  }
  .s-coming-soon .sub {
    margin-bottom: 25px;
  }
  .s-coming-soon .wg-countdown {
    margin-bottom: 25px;
  }
  .s-coming-soon .form-email-wrap {
    margin-bottom: 25px;
  }
  .blog-item.style-2 {
    flex-wrap: wrap;
  }
  .blog-item.style-2 .entry_image {
    max-width: unset;
    min-height: 350px;
    max-height: 400px;
  }
  .s-blog-single .related-post .icon {
    display: none;
  }
  .s-blog-list-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .footer-default .footer-contact, .footer-default .s3 .footer-col-block:first-child .footer-menu-list, .footer-default .footer-newsletter {
    margin-bottom: 30px;
  }
  .footer-default .footer-heading {
    margin-bottom: 20px;
  }
  .footer-default .s3 .footer-col-block:last-child .footer-menu-list {
    margin-top: 20px;
  }
  .footer-default .s3 .footer-col-block:last-child .footer-heading {
    margin-bottom: 0px;
  }
  .footer-style-2 .footer-menu-list {
    margin-bottom: 20px;
  }
  .footer-style-2 .s4 .footer-heading {
    margin-bottom: 0;
  }
  .footer-style-2 .s4 .footer-newsletter {
    margin-top: 20px;
    margin-bottom: 0px;
  }
  .footer-heading-mobile {
    display: block;
    position: relative;
    padding-right: 20px;
    line-height: 24px;
  }
  .footer-heading-mobile::after {
    position: absolute;
    content: "";
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 2px;
    background-color: var(--dark);
    transition: 0.25s ease-in-out;
  }
  .footer-heading-mobile::before {
    position: absolute;
    content: "";
    right: 15px;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    height: 14px;
    background-color: var(--dark);
    transition: 0.25s ease-in-out;
  }
  .footer-col-block.open .footer-heading-mobile::before {
    opacity: 0;
  }
  .footer-col-block.open .footer-heading-mobile::after {
    transform: translate(0%, -50%) rotate(180deg);
  }
  .footer-col-block .tf-collapse-content {
    display: none;
  }
  .flat-single-grid .item {
    width: 350px;
    height: 450px;
    flex-shrink: 0;
  }
  .form-default .cols {
    flex-wrap: wrap;
  }
  .wg-testimonial.style-row {
    flex-direction: column-reverse;
  }
  .wg-testimonial.style-row .image {
    width: 60%;
    margin: 12px auto 0px;
  }
  .tf-sw-iconbox-row .tf-icon-box {
    justify-content: center;
  }
  .cls-bn-content .img-product {
    max-width: 62px;
    max-height: 75px;
  }
  .banner-shop {
    height: 400px;
  }
  .modal-order-detail .list-infor li:not(:last-child) {
    padding-right: 0;
  }
  .modal-order-detail .list-infor li:not(:last-child)::after {
    display: none;
  }
  .form-buyX-getY .group-item-product {
    flex-direction: column;
    align-items: unset;
  }
  .form-buyX-getY .group-item-product .arrow {
    margin-top: -12px;
    margin-left: auto;
    margin-right: auto;
    transform: rotate(90deg);
  }
  .form-review .group-2-ip {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 425px) {
  .js-countdown .countdown__timer {
    gap: 5px;
  }
}
/*-------------- RTL ----------------- */

/*********************************************************************************

	Template Name: Minimalin - Minimal eCommerce Bootstrap 5 HTML Template
    Author: Marino Themes
    Support: marino.themes@gmail.com
    Description: Minimalin - Minimal eCommerce Bootstrap 5 HTML Template
    Version: 1.0.0

**********************************************************************************/
/**************************************************************

	Start Style sheet Indexing
	|
	|___ Default Styles
	|	|
	|	|___ Variables
	|	|___ Mixins
	|	|___ Reset
	|	|___ Typography
	|	|___ Extend
	|	|___ Animations
	|	|___ Short Code
	|	|___ Spacing
	|
	|
	|___Header Styles
	|	|___ header
	|	|___ main_menu
    |	|___ mobile_menu
	|
	|
	|___Section Styles
	|	|___ Hero Banner 
	|	|___ Education 
	|	|___ Training
	|	|___ About
	|	|___ Popular
	|	|___ Grid
	|	|___ Event
	|	|___ Register
	|	|___ testimonial
	|	|___ Counter
	|	|___ Team
	|
	|___Page Styles
	|	|___ Instructor 
	|	|___ Blog 
	|	|___ Course 
	|	|___ Contact 
	|	|___ Error 
	|	|___ Breadcrumb 
	|
	|___Footer Styles
	|	|___ Footer 
	|	|___ Copyright
	|
	|___Light/Dark Styles
	|	|___ Light/Dark 
	|
	|___ End Style Sheet Indexing

***************************************************************/

:root {
  --bodyColor: #303030;
  --bodyBg: #fff;
  --whiteColor: #ffffff;
  --whiteColor2:#f6f6f6;
  --blackColor: #000000;
  --blackColor2: #333333;
  --contentColor: #303030;
  --headingColor: #1f1f25;
  --primaryColor: #0a85d1;
  --secondaryColor: #f34f3f;
  --borderColor: #eeeeee;
  --greyColor: #ebebeb;
  --greyColor2: #333333;
  --yellow:#eab73e;
  --yellow2: #c29958;
  --red:#d3122a;
  --greywhite: #f69679;
  --green:#0b9d8a;
  --borderColor2: #ccc;
  --greyColor1: #f6f6f6;
  --greyColor3: #717171;
  --greyColor4: #f5f5f5;
  --deepblue: #1e1345;
  --darkgrey: #f6f6f6;
  --darkgrey2: #f1f1f1;
  --darkgrey3:#5a5a5a;
  --pink:#ce126e;
  --borderRadius: 5px;
  --borderRadius2: 10px;
  --borderRadius3: 15px;
  --borderRadius4: 100px;
  --transition: .3s;
  --transition2: transform 0.65s cubic-bezier(0.05, 0.2, 0.1, 1) 0s, box-shadow 0.65s cubic-bezier(0.05, 0.2, 0.1, 1) 0s;
  --bodyFont: "Poppins", sans-serif;
  --headingFont: "Futura Std", sans-serif;
  --gradientColor: linear-gradient(90deg, rgba(255, 192, 41, 1) 9.5%, rgba(130, 99, 255, 1) 74.49%)
  --gradientColor2 : linear-gradient(3.98deg, rgba(0, 0, 0, 0) 3.24%, var(--blackColor) 93.62%);
}

.is_dark {
  --bodyColor: #ffffff;
  --bodyBg: #1a1a1a;
  --whiteColor: #1a1a1a;
  --whiteColor2:#1a1a1a;
  --blackColor2: #fff;
  --contentColor: #fff;
  --headingColor: #fff;
  --greyColor: #333333;
  --blackColor:#fff;
}


.layout__8 {
  --bodyFont: "Onest", sans-serif;
  --headingFont: "NotoSansDisplay", serif;
  --primaryColor: #b40000;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--bodyFont);
  background-color: var(--bodyBg);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  position: relative;
  color: var(--bodyColor);
}

p {
  font-size: 16px;
  margin-bottom: 15px;
  color: var(--contentColor);
}

a {
  text-decoration: none;
  transition: var(--transition);
}

p,
a,
.btn,
button,
p,
input,
select,
textarea,
li,
img {
  -webkit-transition: all var(--transition) ease-out 0s;
  -moz-transition: all var(--transition) ease-out 0s;
  -ms-transition: all var(--transition) ease-out 0s;
  -o-transition: all var(--transition) ease-out 0s;
  transition: all var(--transition) ease-out 0s;
}

svg {
  width: 25px;
  transition: var(--transition);
}

a {
  color: var(--contentColor);
}

a:hover {
  color: var(--primaryColor);
}

input:focus-visible {
  outline: none;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  color: var(--headingColor);
  font-family: var(--headingFont);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  margin-bottom: 15px;
}

.common__row {
  align-items: center;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
}

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

li {
  list-style: none;
  display: inline-block;
}

.row {
  --bs-gutter-x: 1.875rem;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  --bs-gutter-x: 1.875rem;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
}

@media (min-width: 1500px) and (max-width: 1920px) {
  .container {
    max-width: 1200px;
  }
}

.container-fluid.hero__fullwidth__spacing {
  padding-left: 195px;
  padding-right: 195px;
}
@media (min-width: 1366px) and (max-width: 1499px) {
  .container-fluid.hero__fullwidth__spacing {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 992px) and (max-width: 1365px) {
  .container-fluid.hero__fullwidth__spacing {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .container-fluid.hero__fullwidth__spacing {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 767px) {
  .container-fluid.hero__fullwidth__spacing {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (min-width: 1500px) and (max-width: 1920px) {
  .container__width .container {
    max-width: 1320px;
  }
}

@media (min-width: 1500px) and (max-width: 1920px) {
  .layout__7 .container {
    max-width: 1320px;
  }
}

.grid__coustom__wrapper {
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  padding-right: calc(var(--bs-gutter-x) * 0.5);
}

.column__custom__class {
  padding-left: 15px;
  padding-right: 15px;
}

.custom__col__padding {
  padding-left: 5px;
  padding-right: 5px;
}

.custom__row__margin {
  margin-left: -5px;
  margin-right: -5px;
}

.column__custom__class__2 {
  padding: 0 7px;
}

.row__custom__class {
  margin-left: -15px;
  margin-right: -15px;
  padding: 0;
}

.sp_100 {
  padding: 100px 0;
}

.sp_90 {
  padding: 90px 0;
}

.sp_80 {
  padding: 80px 0;
}

.sp_70 {
  padding: 70px 0;
}

.sp_60 {
  padding: 60px 0;
}

.sp_50 {
  padding: 50px 0;
}

.sp_40 {
  padding: 40px 0;
}

.sp_30 {
  padding: 30px 0;
}

.sp_20 {
  padding: 20px 0;
}

.sp_top_120 {
  padding-top: 120px;
}

.sp_top_100 {
  padding-top: 100px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .sp_top_100 {
    padding-top: 80px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .sp_top_100 {
    padding-top: 50px;
  }
}
@media (max-width: 767px) {
  .sp_top_100 {
    padding-top: 30px;
  }
}

.sp_top_90 {
  padding-top: 90px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .sp_top_90 {
    padding-top: 70px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .sp_top_90 {
    padding-top: 50px;
  }
}
@media (max-width: 767px) {
  .sp_top_90 {
    padding-top: 30px;
  }
}

.sp_top_80 {
  padding-top: 80px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .sp_top_80 {
    padding-top: 60px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .sp_top_80 {
    padding-top: 50px;
  }
}
@media (max-width: 767px) {
  .sp_top_80 {
    padding-top: 50px;
  }
}

.sp_top_70 {
  padding-top: 70px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .sp_top_70 {
    padding-top: 50px;
  }
}
@media (max-width: 767px) {
  .sp_top_70 {
    padding-top: 30px;
  }
}

.sp_top_60 {
  padding-top: 60px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .sp_top_60 {
    padding-top: 40px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .sp_top_60 {
    padding-top: 30px;
  }
}
@media (max-width: 767px) {
  .sp_top_60 {
    padding-top: 20px;
  }
}

.sp_top_50 {
  padding-top: 50px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .sp_top_50 {
    padding-top: 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .sp_top_50 {
    padding-top: 20px;
  }
}
@media (max-width: 767px) {
  .sp_top_50 {
    padding-top: 10px;
  }
}

.sp_top_40 {
  padding-top: 40px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .sp_top_40 {
    padding-top: 15px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .sp_top_40 {
    padding-top: 10px;
  }
}
@media (max-width: 767px) {
  .sp_top_40 {
    padding-top: 10px;
  }
}

.sp_top_30 {
  padding-top: 30px;
}

.sp_top_20 {
  padding-top: 20px;
}

.sp_bottom_110 {
  padding-bottom: 110px;
}

.sp_bottom_120 {
  padding-bottom: 120px;
}

.sp_bottom_100 {
  padding-bottom: 100px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .sp_bottom_100 {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .sp_bottom_100 {
    padding-bottom: 30px;
  }
}

.sp_bottom_90 {
  padding-bottom: 90px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .sp_bottom_90 {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .sp_bottom_90 {
    padding-bottom: 30px;
  }
}

.sp_bottom_80 {
  padding-bottom: 80px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .sp_bottom_80 {
    padding-bottom: 60px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .sp_bottom_80 {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .sp_bottom_80 {
    padding-bottom: 30px;
  }
}

.sp_bottom_70 {
  padding-bottom: 70px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .sp_bottom_70 {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .sp_bottom_70 {
    padding-bottom: 30px;
  }
}

.sp_bottom_60 {
  padding-bottom: 60px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .sp_bottom_60 {
    padding-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .sp_bottom_60 {
    padding-bottom: 30px;
  }
}

.sp_bottom_50 {
  padding-bottom: 50px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .sp_bottom_50 {
    padding-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .sp_bottom_50 {
    padding-bottom: 10px;
  }
}

.sp_bottom_40 {
  padding-bottom: 40px;
}

.sp_bottom_30 {
  padding-bottom: 30px;
}

.sp_bottom_20 {
  padding-bottom: 20px;
}

.col--30 {
  padding-left: 30px;
  padding-right: 30px;
}

#scrollUp {
  width: 50px;
  height: 50px;
  line-height: 50px;
  background-color: var(--whiteColor);
  color: var(--primaryColor);
  right: 20px;
  bottom: 60px;
  text-align: center;
  overflow: hidden;
  border-radius: 50px;
  z-index: 9811 !important;
  position: fixed;
  display: block;
  box-shadow: 0px 10px 50px rgba(13, 38, 59, 0.15);
}

#scrollUp i {
  display: block;
  line-height: 50px;
  font-size: 20px;
  transition: 0.5s;
}

#scrollUp:hover i {
  background: var(--primaryColor);
  color: var(--whiteColor);
}

@keyframes dot-anim {
  0% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes dot-anim-2 {
  0% {
    transform: translateX(20px);
  }
  100% {
    transform: translateX(0px);
  }
}
@keyframes up-do-anim {
  0%, 25%, 50%, 75%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
@keyframes cir-anim {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes move5 {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.dot__color {
  color: var(--primaryColor);
}

.overflow__hidden {
  overflow: hidden;
}

.default__button {
  background: var(--primaryColor);
  color: var(--whiteColor);
  border: 1px solid var(--primaryColor);
  border-radius: 5px;
  padding: 12px 30px;
  text-transform: unset;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  font-family: var(--headingFont);
  display: inline-block;
  position: relative;
  line-height: 1;
  z-index: 1;
  text-align: center;
}
@media (min-width: 1366px) and (max-width: 1499px) {
  .default__button {
    padding: 12px 30px;
  }
}
@media (min-width: 992px) and (max-width: 1365px) {
  .default__button {
    padding: 10px 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .default__button {
    padding: 7px 25px;
  }
}
@media (max-width: 767px) {
  .default__button {
    padding: 10px 15px;
    font-size: 15px;
  }
}
.default__button:hover {
  background-color: var(--whiteColor);
  color: var(--blackColor);
  border: 1px solid var(--blackColor);
}
.default__button__2 {
  padding: 15px 50px;
  border: 1px solid var(--borderColor);
  background: transparent;
  display: inline-block;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .default__button__2 {
    padding: 10px 40px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .default__button__2 {
    padding: 10px 40px;
  }
}
@media (max-width: 767px) {
  .default__button__2 {
    padding: 10px 40px;
  }
}
.default__button.btn__black {
  background: transparent;
  border: 1px solid var(--blackColor);
  color: var(--blackColor);
}
.default__button.btn__black:hover {
  background: var(--primaryColor);
  color: var(--blackColor);
  border-color: var(--blackColor);
}
.default__button.btn__yellow {
  background: var(--yellow);
  border: 1px solid var(--yellow);
  color: var(--whiteColor);
}
.default__button.btn__yellow:hover {
  background: var(--whiteColor);
  color: var(--yellow);
  border-color: var(--yellow);
}
.default__button.btn__pink {
  background: var(--greywhite);
  border: 1px solid var(--greywhite);
  color: var(--whiteColor);
}
.default__button.btn__pink:hover {
  background: var(--whiteColor);
  color: var(--greywhite);
  border-color: var(--greywhite);
}
.default__button.btn__yellow__2 {
  background: var(--yellow2);
  border: 1px solid var(--yellow2);
  color: var(--whiteColor);
}
.default__button.btn__yellow__2:hover {
  background: var(--whiteColor);
  color: var(--yellow2);
  border-color: var(--yellow2);
}
.default__button.green__button {
  background: var(--green);
  border: 1px solid var(--green);
  color: var(--whiteColor);
}
.default__button.green__button:hover {
  background: var(--whiteColor);
  color: var(--green);
  border-color: var(--green);
}
.default__button.red__button {
  background: var(--red);
  border: 1px solid var(--red);
  color: var(--whiteColor);
}
.default__button.red__button:hover {
  background: var(--whiteColor);
  color: var(--red);
  border-color: var(--red);
}
.default__button::after {
  content: "";
  position: absolute;
  z-index: -1;
  transition: all 0.3s;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--whiteColor);
  border-radius: 5px;
}

.default__button:hover::after {
  width: 100%;
}

.red__color {
  color: var(--red);
}

.primary__color {
  color: var(--primaryColor);
}

.section__padding {
  padding: 0 150px;
}

.custom__column__padding.row,
.custom__column__padding.row * {
  --bs-gutter-x: 5px;
}

@media (min-width: 1500px) and (max-width: 1920px) {
  .custom__column__5 {
    width: 20%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .paginationwrap {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .paginationwrap {
    margin-bottom: 30px;
  }
}
.paginationwrap__list li a {
  height: 50px;
  width: 50px;
  line-height: 50px;
  border: 1px solid var(--borderColor);
  display: inline-block;
  text-align: center;
  border-radius: 100%;
  font-size: 16px;
}
@media (max-width: 767px) {
  .paginationwrap__list li a {
    height: 40px;
    width: 40px;
    line-height: 40px;
    font-size: 14px;
  }
}
.paginationwrap__list li a:hover {
  background: var(--primaryColor);
  color: var(--whiteColor);
}
.paginationwrap__list li a.active {
  background: var(--primaryColor);
  color: var(--whiteColor);
}

.herobanner__slider__arrow .slick-arrow {
  color: var(--primaryColor);
  left: 30px;
  border: 1px solid var(--borderColor);
  position: absolute;
  text-align: center;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  background: var(--whiteColor);
  display: inline-block;
  margin-top: -15px;
  opacity: 1;
  visibility: visible;
  left: auto;
  height: 50px;
  width: 50px;
  line-height: 50px;
  border-radius: 100%;
  display: inline-block;
  z-index: 999;
  right: 20px;
  cursor: pointer;
}
.herobanner__slider__arrow .slick-arrow:hover {
  background: var(--primaryColor);
  color: var(--whiteColor);
}

.herobanner__slider__arrow .slick-arrow.next_class {
  left: auto;
  right: 20px;
  margin-top: 46px;
}

.slider__default__arrow .slick-arrow {
  position: absolute;
  left: 15px;
  border: 1px solid var(--borderColor);
  z-index: 99;
  height: 50px;
  width: 50px;
  border-radius: 5px;
  line-height: 50px;
  text-align: center;
  cursor: pointer;
  top: 50%;
  transform: translatey(-50%);
  margin-top: -15px;
  opacity: 0;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .slider__default__arrow .slick-arrow {
    top: 40%;
    height: 40px;
    width: 40px;
    line-height: 40px;
  }
}
.slider__default__arrow .slick-arrow:hover {
  background-color: var(--primaryColor);
  color: var(--whiteColor);
}
.slider__default__arrow .slick-arrow.next_class {
  left: auto;
  right: 20px;
}
.slider__default__arrow:hover .slick-arrow {
  left: -50px;
  visibility: visible;
  opacity: 1;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .slider__default__arrow:hover .slick-arrow {
    left: 0;
  }
}
@media (max-width: 767px) {
  .slider__default__arrow:hover .slick-arrow {
    left: 0px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .slider__default__arrow:hover .slick-arrow {
    left: 0px;
  }
}
.slider__default__arrow:hover .slick-arrow.next_class {
  left: auto;
  right: -50px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .slider__default__arrow:hover .slick-arrow.next_class {
    right: 0;
  }
}
@media (max-width: 767px) {
  .slider__default__arrow:hover .slick-arrow.next_class {
    right: 0px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .slider__default__arrow:hover .slick-arrow.next_class {
    right: 0px;
  }
}
.slider__default__arrow--2 .slick-arrow {
  background: var(--borderColor);
}
.slider__default__arrow--2:hover .slick-arrow {
  left: 70px;
}
.slider__default__arrow--2:hover .slick-arrow.next_class {
  left: auto;
  right: 70px;
}

.herobanner .slider__default__arrow .slick-arrow {
  left: -80px;
}
.herobanner .slider__default__arrow .slick-arrow.next_class {
  left: auto;
  right: -80px;
}
.herobanner .slider__default__arrow.herobanner__arrow .slick-arrow {
  left: 50px;
}
.herobanner .slider__default__arrow.herobanner__arrow .slick-arrow.next_class {
  left: auto;
  right: 40px;
}
.herobanner .slider__default__arrow:hover .slick-arrow {
  left: -95px;
}
@media (min-width: 1366px) and (max-width: 1499px) {
  .herobanner .slider__default__arrow:hover .slick-arrow {
    left: -50px;
  }
}
@media (min-width: 992px) and (max-width: 1365px) {
  .herobanner .slider__default__arrow:hover .slick-arrow {
    left: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .herobanner .slider__default__arrow:hover .slick-arrow {
    left: 0;
  }
}
.herobanner .slider__default__arrow:hover .slick-arrow.next_class {
  left: auto;
  right: -95px;
}
@media (min-width: 1366px) and (max-width: 1499px) {
  .herobanner .slider__default__arrow:hover .slick-arrow.next_class {
    right: -50px;
  }
}
@media (min-width: 992px) and (max-width: 1365px) {
  .herobanner .slider__default__arrow:hover .slick-arrow.next_class {
    right: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .herobanner .slider__default__arrow:hover .slick-arrow.next_class {
    right: 0;
  }
}
.herobanner .slider__default__arrow:hover.herobanner__arrow .slick-arrow {
  left: 60px;
}
.herobanner .slider__default__arrow:hover.herobanner__arrow .slick-arrow.next_class {
  left: auto;
  right: 60px;
}

.testimonial__2 .testimonial__slider__active.slider__default__arrow .slick-arrow {
  background: var(--whiteColor);
}
.testimonial__2 .testimonial__slider__active.slider__default__arrow .slick-arrow:hover {
  background: var(--yellow);
  color: var(--whiteColor);
}

.slider__default__dot .slick-dots {
  position: absolute;
  bottom: -50px;
  width: 100%;
  margin: 0;
  text-align: center;
  left: 0;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .slider__default__dot .slick-dots {
    bottom: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .slider__default__dot .slick-dots {
    bottom: -20px;
  }
}
@media (max-width: 767px) {
  .slider__default__dot .slick-dots {
    bottom: 0;
  }
}
.slider__default__dot .slick-dots li {
  list-style: none;
  display: inline-block;
  font-size: 0;
  height: 10px;
  width: 10px;
  border-radius: 100%;
  margin: 0 10px;
  background-color: var(--borderColor2);
  cursor: pointer;
  margin-top: 0;
}
.slider__default__dot .slick-dots li.slick-active {
  background-color: var(--primaryColor);
}
.slider__default__dot .slick-dots li button {
  display: none;
}
.slider__default__dot.herobanner__dot .slick-dots {
  bottom: 40px;
}
.slider__default__dot--2 .slick-dots {
  bottom: 20px;
}

.testimonial .slider__default__dot .slick-dots {
  bottom: inherit;
}

.testimonial .slider__default__dot--2 .slick-dots {
  bottom: 20px;
}

.small__product .slider__default__dot .slick-dots {
  bottom: -20px;
}

.section__title {
  padding-bottom: 40px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .section__title {
    padding-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .section__title {
    padding-bottom: 10px;
  }
}
.section__title h2 {
  font-size: 35px;
  margin-bottom: 0;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .section__title h2 {
    font-size: 24px;
    line-height: 35px;
  }
}
@media (min-width: 992px) and (max-width: 1365px) {
  .section__title h2 {
    font-size: 32px;
    line-height: 45px;
  }
}
.section__title p {
  margin-bottom: 0;
}

.layout__2 .section__title h2 {
  font-weight: 700;
}

.layout__4 .section__title h2 {
  font-weight: 700;
}

.herobanner__small__title__7 {
  color: var(--primaryColor);
}

.breadcrumb {
  background: var(--greyColor);
  padding-top: 25px;
  padding-bottom: 25px;
  margin: 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  .breadcrumb {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .breadcrumb {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.breadcrumb__title {
  text-align: center;
}
.breadcrumb__title h1 {
  font-size: 36px;
  margin: 0;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .breadcrumb__title h1 {
    font-size: 26px;
  }
}
.breadcrumb__title ul li {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  margin-right: 18px;
  position: relative;
}
.breadcrumb__title ul li.color__blue {
  color: var(--primaryColor);
}
.breadcrumb__title ul li::before {
  position: absolute;
  width: 18px;
  height: 1px;
  background-color: #1f2226;
  content: "";
  right: -21px;
  top: 12px;
  z-index: 99;
  -webkit-transform: rotate(115deg);
  -ms-transform: rotate(115deg);
  transform: rotate(115deg);
}
.breadcrumb__title ul li:last-child::before {
  display: none;
}

.pagination__wraper ul li a {
  height: 50px;
  width: 50px;
  line-height: 50px;
  border: 2px solid var(--greyColor);
  text-align: center;
  display: block;
  font-weight: 700;
  border-radius: 5px;
}
.pagination__wraper ul li a:hover {
  background: var(--primaryColor);
  color: var(--whiteColor);
}
.pagination__wraper ul li a.active {
  background: var(--primaryColor);
  color: var(--whiteColor);
}

.body__overlay {
  position: relative;
}
.body__overlay::after {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  content: "";
  background-color: var(--blackColor);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.body__overlay.opened::after {
  opacity: 0.5;
  visibility: visible;
}

.mode_switcher.my_switcher {
  position: fixed;
  right: -50px;
  top: 100px;
  z-index: 9999999;
  transition: 0.3s;
}

.mode_switcher.my_switcher:hover {
  right: 0;
}

@media (min-width: 1500px) and (max-width: 1920px) {
  .mode_switcher.my_switcher {
    top: 300px;
  }
}
.mode_switcher.my_switcher button {
  display: flex;
  font-size: 20px;
  color: var(--whiteColor);
  background: var(--primaryColor);
  padding: 10px;
  line-height: 20px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  width: 90px;
  box-shadow: 0px 6px 34px rgba(215, 216, 222, 0.15);
  border: none;
}

.mode_switcher.my_switcher button svg {
  width: 20px;
  margin-right: 10px;
}

.mode_switcher.my_switcher button span {
  font-size: 16px;
}

.light__mode {
  display: none;
}

.is_dark .light__mode {
  display: block;
}

.is_dark .dark__mode {
  display: none;
}

.headerarea.headerarea__2 {
  border-bottom: 1px solid var(--greyColor);
}
.headerarea.headerarea__2 {
  border-top: 1px solid rgba(31, 34, 38, 0.1);
}
@media (min-width: 768px) and (max-width: 991px) {
  .headerarea.headerarea__2 {
    display: none;
  }
}
@media (max-width: 767px) {
  .headerarea.headerarea__2 {
    display: none;
  }
}
.headerarea.headerarea__2 .headerarea__main__menu {
  text-align: start;
}
.headerarea.sticky {
  position: fixed;
  top: 0;
  background: var(--whiteColor);
  z-index: 9999;
  right: 0;
  left: 0;
  width: 100%;
  transition: 0.4s;
  -webkit-box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.07);
  -moz-box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.07);
  box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.07);
  animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
  margin-top: 0;
}
.headerarea__left {
  display: flex;
  height: 100%;
  align-items: center;
}
.headerarea__main__menu {
  text-align: start;
}
.headerarea__main__menu.headerarea__main__menu__3 nav ul li:first-child {
  margin-left: 0;
}
.headerarea__main__menu nav ul > li {
  position: relative;
}
.headerarea__main__menu nav ul > li > a {
  display: block;
  font-size: 16px;
  padding: 10px 20px;
  font-weight: 600;
  position: relative;
  color: var(--blackColor);
  line-height: 60px;
  font-family: var(--headingFont);
}
@media (min-width: 992px) and (max-width: 1365px) {
  .headerarea__main__menu nav ul > li > a {
    line-height: 50px;
    font-size: 15px;
    padding: 10px 15px;
  }
}
.headerarea__main__menu nav ul > li > a.headerarea__has__dropdown__2 {
  color: var(--blackColor);
}
.headerarea__main__menu nav ul > li:hover > a {
  color: var(--primaryColor);
}
.headerarea__main__menu nav ul > li .headerarea__submenu {
  position: absolute;
  clip: rect(0px, 200vw, 0, 0px);
  transition: opacity 0.4s linear, clip 0.6s linear, visibility 0s 0.4s;
  transform: translateZ(0);
  background-color: var(--whiteColor);
  min-width: 320px;
  transition: 0.3s;
  top: 100%;
  left: 0;
  padding: 14px 0;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  box-shadow: 0 5px 20px 0 rgba(23, 44, 82, 0.1);
  border-radius: 15px;
}
.headerarea__main__menu nav ul > li .headerarea__submenu li {
  display: block;
  margin: 0;
}
.headerarea__main__menu nav ul > li .headerarea__submenu li:hover > a {
  color: var(--primaryColor);
}
.headerarea__main__menu nav ul > li .headerarea__submenu li a {
  padding: 8px 25px;
  text-align: left;
  display: block;
  color: var(--blackColor);
  line-height: 1.4;
  font-family: var(--bodyFont);
  font-weight: normal;
}
.headerarea__main__menu nav ul > li .headerarea__submenu.headerarea__submenu__2 li a {
  color: var(--blackColor);
}
.headerarea__main__menu nav ul > li .headerarea__submenu.headerarea__megamenu {
  padding: 20px;
  padding-bottom: 30px;
}
.headerarea__main__menu nav ul > li .headerarea__submenu.headerarea__megamenu ul li a {
  padding: 8px 0;
  display: inline-block;
}
.headerarea__main__menu nav ul > li:hover .headerarea__submenu {
  visibility: visible;
  opacity: 1;
  clip: rect(0px, 100vw, 200vh, -30px);
  transition: clip 0.6s linear, opacity 0.4s linear;
}
.headerarea__megamenu {
  width: 100%;
  left: 0;
  background: var(--whiteColor);
  padding: 23px 30px 30px 0;
  box-shadow: 10px 25px 80px rgba(150, 150, 150, 0.15);
}
.headerarea__megamenu .mega__menu__li {
  display: inline-block;
  float: left;
  padding: 0 15px;
  width: 25%;
  text-align: left;
}
.headerarea__megamenu .mega__menu__li.mega__menu__image {
  padding: 15px 25px;
}
.headerarea__megamenu .mega__menu__li .menu__title {
  letter-spacing: 0.2px;
  display: block;
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 18px;
  font-weight: 600;
  padding: 8px 0;
}
.headerarea__megamenu .mega__menu__li ul {
  margin-top: 15px;
}
.headerarea__megamenu .mega__menu__li ul li {
  margin-bottom: 0;
  text-align: left;
  width: 100%;
}
.headerarea__megamenu .mega__menu__li ul li a {
  font-weight: 400;
}
.headerarea__right {
  text-align: right;
  display: flex;
  justify-content: flex-end;
  height: 100%;
  align-items: center;
}
.headerarea__right ul li {
  margin-right: 15px;
}
@media (min-width: 1366px) and (max-width: 1499px) {
  .headerarea__right ul li {
    margin-right: 10px;
  }
}
@media (min-width: 992px) and (max-width: 1365px) {
  .headerarea__right ul li {
    margin-right: 5px;
  }
}
.headerarea__right ul li:last-child {
  margin-right: 0;
}
.headerarea__contact__info a {
  display: flex;
  align-items: center;
  justify-content: end;
  height: 100%;
  font-size: 20px;
}
.headerarea__contact__info a:hover svg {
  fill: var(--primaryColor);
}
.headerarea__contact__info a svg {
  width: 30px;
  fill: var(--blackColor);
  transition: 0.3s;
  margin-right: 10px;
}

.sticky .headerarea__main__menu nav ul > li a {
  color: var(--blackColor);
}
.sticky .headerarea__main__menu nav ul > li:hover > a {
  color: var(--primaryColor);
}

.mega__menu__image li img {
  border-radius: 15px;
}

.header__label {
  position: absolute;
  right: 13px;
  font-size: 10px;
  background-color: var(--secondaryColor);
  display: inline-block;
  color: var(--whiteColor);
  line-height: 1;
  padding: 3px 10px;
  border-radius: 3px;
  top: 12px;
  font-weight: normal;
}
.header__label.hot__color {
  background: var(--primaryColor);
}

.headerarea__megamenu .header__label {
  top: -3px;
  right: 0;
}

.transparent__header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9;
}

.headerarea__8 {
  margin-top: 40px;
}

.minicart.info-opened {
  visibility: visible;
  opacity: 1;
}

.minicart.info-opened .minicart__inner {
  right: -20px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .minicart.info-opened .minicart__inner {
    right: 0px;
  }
}
@media (max-width: 767px) {
  .minicart.info-opened .minicart__inner {
    right: 0px;
  }
}

.header__feature__item {
  display: flex;
  align-items: center;
}
.header__feature__item .header__feature__icon {
  margin-right: 15px;
  font-size: 25px;
  line-height: 1;
}
.header__feature__item .header__feature__icon svg {
  width: 30px;
}
.header__feature__item .header__feature__info h6 {
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  margin: 0;
  margin-bottom: 10px;
}
.header__feature__item .header__feature__info p {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.headerarea__middle {
  padding: 20px 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  .headerarea__middle {
    padding-top: 0px;
    padding-bottom: 0px;
  }
}
@media (max-width: 767px) {
  .headerarea__middle {
    padding-top: 0px;
    padding-bottom: 0px;
  }
}
.headerarea__middle .headerarea__logo {
  text-align: center;
}

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

.minicart__inner {
  position: fixed;
  right: -604px;
  top: 0;
  padding: 20px;
  width: 400px;
  height: 100%;
  background: var(--whiteColor);
  overflow-y: scroll;
  -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -webkit-box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
  box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
  z-index: 99999999999;
  padding: 28px 30px 20px;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}
@media (max-width: 767px) {
  .minicart__inner {
    width: 90%;
    padding: 20px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .minicart__inner {
    width: 60%;
  }
}
.minicart__single {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--borderColor);
  padding-bottom: 20px;
}
.minicart__single:last-child {
  margin: 0;
  padding: 0;
  border: none;
}
.minicart__single .minicart__single__img {
  margin-right: 20px;
  position: relative;
}
.minicart__single .minicart__single__img img {
  width: 80px;
  border-radius: var(--borderRadius);
}
.minicart__single .minicart__single__img .minicart__single__close button {
  position: absolute;
  top: -5px;
  left: -5px;
  transition: 0.3s;
  border: none;
  background: var(--whiteColor);
  height: 20px;
  width: 20px;
  line-height: 1;
  font-size: 14px;
  border-radius: 20px;
  box-shadow: 0 1px 6px 0 rgba(32, 33, 36, 0.28);
}
.minicart__single .minicart__single__img .minicart__single__close button:hover {
  background-color: var(--primaryColor);
  color: var(--whiteColor);
}
.minicart__single .minicart__single__content h4 {
  font-size: 16px;
  margin: 0;
  font-weight: 300;
  letter-spacing: 0.2px;
  line-height: 22px;
}
.minicart__single .minicart__single__content h4 a {
  color: var(--blackColor);
  font-weight: 600;
}
.minicart__single .minicart__single__content h4 a:hover {
  color: var(--primaryColor);
}
.minicart__single .minicart__single__content span {
  font-size: 16px;
  letter-spacing: 0.2px;
}
.minicart__close__icon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--borderColor);
}
.minicart__close__btn {
  display: inline-block;
  font-size: 20px;
  border: none;
  background: none;
}
.minicart__close__btn:hover {
  color: var(--primaryColor);
}
.minicart__search {
  margin-bottom: 25px;
  position: relative;
}
.minicart__inner__wraper {
  text-align: center;
}
.minicart__subtotal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0 15px;
  margin: 30px 0 25px;
  border-top: 1px solid var(--borderColor);
  border-bottom: 1px solid var(--borderColor);
}
.minicart__subtotal span {
  font-size: 20px;
  font-family: var(--headingFont);
  font-weight: 600;
}
.minicart__subtotal .subtotal__amount {
  color: var(--primaryColor);
}
.minicart__button {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
.minicart__button .default__button {
  width: 100%;
}

.cart__note__text {
  margin-top: 20px;
}
.cart__note__text p {
  font-size: 14px;
}

.setting__wrap__list {
  padding: 20px;
  background: var(--whiteColor);
  box-shadow: 10px 25px 80px rgba(150, 150, 150, 0.2);
  width: 300px;
  opacity: 0;
  position: fixed;
  right: 200px;
  transition: 0.3s;
  z-index: 99;
  visibility: hidden;
}

.setting__wrap__list {
  right: 280px;
  top: 120px;
}
@media (min-width: 1366px) and (max-width: 1499px) {
  .setting__wrap__list {
    right: 90px;
  }
}
@media (min-width: 992px) and (max-width: 1365px) {
  .setting__wrap__list {
    right: 0px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .setting__wrap__list {
    right: 10px;
    top: 80px;
  }
}
@media (max-width: 767px) {
  .setting__wrap__list {
    right: 20px;
    top: 60px;
  }
}

.setting__wrap__list.show {
  visibility: visible;
  opacity: 1;
}

.header__layout__2 .setting__wrap__list.show {
  top: 80px;
}
@media (max-width: 767px) {
  .header__layout__2 .setting__wrap__list.show {
    top: 60px;
  }
}

.header__layout__8 .setting__wrap__list.show {
  top: 100px;
}
@media (max-width: 767px) {
  .header__layout__8 .setting__wrap__list.show {
    top: 60px;
  }
}

.header__layout__4 .setting__wrap__list.show {
  right: 50px;
  top: 100px;
}
@media (min-width: 1366px) and (max-width: 1499px) {
  .header__layout__4 .setting__wrap__list.show {
    right: 50px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .header__layout__4 .setting__wrap__list.show {
    right: 10px;
    top: 80px;
  }
}
@media (max-width: 767px) {
  .header__layout__4 .setting__wrap__list.show {
    right: 10px;
    top: 80px;
  }
}

.setting__wrap__close {
  border: none;
  background: none;
  position: absolute;
  top: 10px;
  right: 10px;
}

.setting__wrap__heading h6 {
  text-align: left;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
  font-size: 18px;
}
.setting__wrap__heading h6 a {
  color: var(--blackColor);
}

.setting__wrap__list__inner {
  margin-bottom: 10px;
}
.setting__wrap__list__inner ul li {
  display: block;
  padding-bottom: 10px;
}
.setting__wrap__list__inner ul li:last-child {
  padding-bottom: 0;
}
.setting__wrap__list__inner ul li a {
  letter-spacing: 0.2px;
  color: var(--blackColor);
}
.setting__wrap__list__inner ul li a:hover {
  color: var(--primaryColor);
}

.disclosure__button {
  position: relative;
  font-family: var(--headingFont);
}
.disclosure__button .disclosure__button__language {
  font-size: 14px;
}
.disclosure__button:hover .disclosure__button__language__inner {
  opacity: 1;
  visibility: visible;
  top: 40px;
}

.disclosure__button__language__inner {
  position: absolute;
  z-index: 999;
  background: var(--whiteColor);
  padding: 5px;
  left: -30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1019607843);
  transition: 0.3s;
  top: 50px;
  opacity: 0;
  visibility: hidden;
  text-align: left;
  padding-left: 10px;
  min-width: 200px;
  max-height: 300px;
  overflow-x: auto;
  border-top: 1px solid #ececec;
  top: 130%;
}
.disclosure__button__language__inner ul li {
  display: block;
  padding: 5px 10px;
}
.disclosure__button__language__inner ul li a {
  font-weight: 300;
}

.headersearch__active {
  background: rgba(0, 0, 0, 0.95) none repeat scroll 0 0;
  color: var(--blackColor);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 32px 46px 39px;
  position: fixed;
  -webkit-transform: translateX(110%);
  -ms-transform: translateX(110%);
  transform: translateX(110%);
  transition: transform 0.5s ease-in-out 0s, -webkit-transform 0.5s ease-in-out 0s;
  z-index: 9999;
  opacity: 0;
  right: auto;
  width: 70%;
  left: 50%;
  top: 50%;
  min-height: 50vh;
  border-radius: var(--borderRadius2);
}
.headersearch__active.inside {
  -webkit-transform: translateX(-50%) translatey(-50%);
  -ms-transform: translateX(-50%) translatey(-50%);
  transform: translateX(-50%) translatey(-50%);
  opacity: 1;
}
@media (max-width: 767px) {
  .headersearch__active {
    width: 90%;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .headersearch__active {
    width: 80%;
  }
}
.headersearch__active__icon {
  display: block;
  overflow: hidden;
  position: absolute;
  right: 50%;
  top: 50px;
  -webkit-transform: translateX(50%);
  -ms-transform: translateX(50%);
  transform: translateX(50%);
}
.headersearch__active__input {
  padding: 200px 0 100px;
}
.headersearch__active__input input {
  background-color: transparent;
  border-color: var(--borderColor);
  border-style: solid;
  border-width: 0 0 1px;
  color: var(--whiteColor);
  display: block;
  font-size: 20px;
  height: 50px;
  line-height: 62px;
  padding: 0;
  width: 770px;
  font-family: Poppins, sans-serif;
  letter-spacing: 2px;
  padding: 0 55px 0 0;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .headersearch__active__input input {
    width: 600px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .headersearch__active__input input {
    width: 400px;
  }
}
@media (max-width: 767px) {
  .headersearch__active__input input {
    width: 200px;
  }
}
.headersearch__active__input button {
  background-color: transparent;
  border: medium none;
  color: var(--whiteColor);
  cursor: pointer;
  font-size: 14px;
  padding: 0;
  position: absolute;
  right: 0;
  top: 20px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.headersearch__active__input button:hover {
  color: var(--primaryColor);
}
.headersearch__active__results {
  z-index: 8889;
  list-style-type: none;
  width: 190px;
  margin: 0;
  padding: 0;
  background: var(--whiteColor);
  border: 1px solid var(--borderColor);
  border-radius: 0px;
  -webkit-box-shadow: 0px 4px 7px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 7px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.headersearch__active__close {
  background: transparent none repeat scroll 0 0;
  border: medium none;
  color: var(--whiteColor);
  cursor: pointer;
  font-size: 35px;
  line-height: 1;
  padding: 0;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.headersearch__active__close:hover {
  color: var(--primaryColor);
}

.info__toggle__button__wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
}
.info__toggle__button__wrapper .info__toggle__img {
  height: 24px;
  width: 24px;
  position: relative;
  margin-right: 60px;
}
.info__toggle__button__wrapper .info__toggle__img:hover .language__dropdown {
  opacity: 1;
  visibility: visible;
  top: 100%;
}
.info__toggle__button__wrapper .info__toggle__img a {
  display: flex;
  color: var(--headingColor);
  align-items: center;
}
.info__toggle__button__wrapper .info__toggle__img a img {
  border-radius: 100%;
  width: 100%;
  margin-right: 5px;
}
.info__toggle__button__wrapper .info__toggle__img .language__dropdown {
  box-shadow: 0 0 37px rgba(0, 0, 0, 0.07);
  position: absolute;
  z-index: 99;
  top: 50px;
  left: 0;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
}
.info__toggle__button__wrapper .info__toggle__img .language__dropdown li {
  display: block;
}
.info__toggle__button__wrapper .info__toggle__img .language__dropdown li a {
  display: block;
  padding: 10px;
  color: var(--headingColor);
  font-size: 0.8125rem;
  background-color: var(--whiteColor);
  min-width: 200px;
}
.info__toggle__button__wrapper .info__toggle__img .language__dropdown li a:hover {
  background-color: var(--greyColor);
}
.info__toggle__button__wrapper .info__toggle__img .language__dropdown li a img {
  width: 18px;
  margin-right: 10px;
}

.header__modal .modal-dialog {
  max-width: 1150px;
}
.header__modal .modal-content {
  padding: 20px;
}

.header__modal__map iframe {
  width: 100%;
}

.header__topbar {
  background: var(--blackColor);
  padding-top: 4px;
  padding-bottom: 4px;
  border-bottom: 1px solid;
  border-color: rgba(0, 0, 0, 0);
}
.header__topbar__left ul li {
  color: var(--whiteColor);
  margin: 0 30px 0 0;
  font-size: 14px;
  font-weight: 400;
}
.header__topbar__left ul li i {
  margin-right: 3px;
}
.header__topbar__left ul li svg {
  width: 18px;
  margin-right: 5px;
}
.header__topbar__right {
  display: flex;
  align-items: center;
  justify-content: end;
}
.header__topbar__language {
  color: var(--whiteColor);
  cursor: pointer;
  font-size: 14px;
}
.header__topbar__language__wraper {
  margin-right: 30px;
  position: relative;
}
.header__topbar__language__wraper span {
  position: relative;
  font-size: 14px;
}
.header__topbar__language__wraper span i {
  font-size: 10px;
}
.header__topbar__language__wraper:hover .header__topbar__language__inner {
  opacity: 1;
  visibility: visible;
}
.header__topbar__language__inner {
  position: absolute;
  z-index: 999;
  background: var(--whiteColor);
  padding: 5px;
  min-width: 120px;
  left: -30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1019607843);
  transition: 0.3s;
  top: 30px;
  opacity: 0;
  visibility: hidden;
  text-align: left;
  padding-left: 10px;
}
.header__topbar__language__inner ul {
  min-width: 200px;
  max-height: 300px;
  overflow-x: auto;
}
.header__topbar__language__inner ul li {
  padding: 5px 15px;
  display: block;
  font-size: 15px;
}
.header__topbar__social__icon ul li {
  margin-right: 10px;
  font-size: 14px;
}
.header__topbar__social__icon ul li:last-child {
  margin-right: 0;
}
.header__topbar__social__icon ul li a {
  color: var(--whiteColor);
}
.header__topbar__social__icon ul li a:hover {
  color: var(--primaryColor);
}

.header__topbar__3 {
  background: var(--whiteColor);
  border-top: 1px solid var(--greyColor);
  border-bottom: 1px solid var(--greyColor);
}
.header__topbar__3 .header__topbar__left__3 ul li {
  color: var(--blackColor);
}
.header__topbar__3 .header__topbar__right__3 .header__topbar__language {
  color: var(--blackColor);
}
.header__topbar__3 .header__topbar__right__3 .header__topbar__social__icon ul li a {
  color: var(--blackColor);
}

.home__6__middle {
  display: flex;
}
.home__6__middle .header__feature__item {
  margin-right: 50px;
}

.home__6__middle__header {
  font-size: 15px;
  margin: 0;
}
.home__6__middle__header span {
  color: var(--green);
}

.headerarea__right__nav__6 {
  display: flex;
  align-items: center;
}

.header__search__6 input {
  padding-left: 20px;
  padding-right: 50px;
  height: 45px;
  border: 1px solid var(--borderColor);
  min-width: 500px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .header__search__6 input {
    min-width: 350px;
  }
}

.header__bottom__6 {
  background: var(--blackColor);
}
.header__bottom__6 .headerarea__has__dropdown__6 {
  color: var(--whiteColor);
}
.header__bottom__6 .headerarea__has__dropdown__6 i {
  color: var(--whiteColor);
}

.header__bottom__6 .headerarea__main__menu nav ul > li > a {
  color: var(--whiteColor);
}

.header__bottom__6 .headerarea__main__menu nav ul > li:hover > a {
  color: var(--primaryColor);
}

.header__bottom__4 {
  border-top: 1px solid var(--greyColor);
}

.headermiddle__account__img {
  position: relative;
}
.headermiddle__account__img:hover .bigcounter {
  background: var(--primaryColor);
}
.headermiddle__account__img .bigcounter {
  position: absolute;
  font-size: 10px;
  display: inline-block;
  width: 18px;
  height: 18px;
  line-height: 18px;
  border-radius: 100%;
  background: var(--blackColor);
  color: var(--whiteColor);
  text-align: center;
  right: -9px;
  top: -10px;
  transition: var(--transition);
}
.headermiddle__account__img .bigcounter:hover {
  background: var(--primaryColor);
}

.headerarea__main__menu__6 ul li a {
  color: var(--whiteColor);
}

.headerarea__has__dropdown::before {
  content: "\f107";
  font-size: 10px;
  position: absolute;
  top: 50%;
  right: 5px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.layout__2 .headerarea__main__menu nav ul > li > a {
  font-weight: 700;
}

.cursor__pointer {
  cursor: pointer;
}

/* mobail__menu__start */
/*Mobile menu*/
.mob_menu_wrapper {
  display: none;
  padding-top: 15px;
  padding-bottom: 15px;
}

.mobile-off-canvas .mobile-aside-button {
  font-size: 30px;
}

.mobile__logo {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--borderColor);
}

.mobile-off-canvas .mobile-aside-button:hover {
  color: var(--primaryColor);
}

.header-right-wrap {
  display: flex;
  justify-content: flex-end;
}

.mobile-aside-button {
  font-size: 20px;
}

.header_area .mob_menu_wrapper {
  display: none;
}

.wrapper .body-overlay {
  background: rgba(35, 35, 36, 0.7) none repeat scroll 0 0;
  height: 100%;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
  visibility: hidden;
  width: 100%;
  z-index: 9999;
}

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

.mobile-off-canvas-active .mobile-aside-close {
  width: 40px;
  height: 40px;
  display: inline-block;
  background: #343538;
  color: var(--whiteColor);
  line-height: 40px;
  text-align: center;
  top: 0;
  font-size: 18px;
  position: absolute;
  cursor: pointer;
  right: -40px;
}

.mobile-off-canvas-active .mobile-aside-close i {
  transition: 0.3s;
}

.mobile-off-canvas-active {
  position: fixed;
  top: 0;
  width: 330px;
  min-height: 100vh;
  bottom: 0;
  z-index: 111;
  left: -330px;
  visibility: hidden;
  opacity: 1;
  -webkit-transition: all 400ms ease-out;
  transition: all 400ms ease-out;
  background-color: var(--whiteColor);
  -webkit-box-shadow: 0 0 87px 0 rgba(0, 0, 0, 0.09);
  box-shadow: 0 0 87px 0 rgba(0, 0, 0, 0.09);
  z-index: 9999;
}

@media only screen and (max-width: 767px) {
  .mobile-off-canvas-active {
    width: 260px;
    left: -260px;
  }
}
.mobile-off-canvas-active.inside {
  visibility: visible;
  opacity: 1;
  left: 0px;
}

mobile-aside-close .mobile-off-canvas-active .mobile-aside-close i {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  color: var(--whiteColor);
}

.mobile-off-canvas-active .mobile-aside-close:hover i {
  color: var(--primaryColor);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.mobile-off-canvas-active .header-mobile-aside-wrap {
  padding: 40px 30px 50px;
  overflow: auto;
  height: 100%;
}

@media only screen and (max-width: 767px) {
  .mobile-off-canvas-active .header-mobile-aside-wrap {
    padding: 30px 20px 50px;
  }
}
.mobile-off-canvas-active .header-mobile-aside-wrap .mobile-search {
  border-bottom: 1px solid var(--borderColor);
  margin-bottom: 27px;
  padding-bottom: 40px;
}

.mobile-off-canvas-active .header-mobile-aside-wrap .mobile-search form {
  position: relative;
}

.mobile-off-canvas-active .header-mobile-aside-wrap .mobile-search form input {
  background-color: var(--greyColor1);
  border: none;
  border-radius: 0px;
  height: 50px;
  padding: 0 60px 0 15px;
  width: 100%;
  font-size: 14px;
}

.mobile-off-canvas-active .header-mobile-aside-wrap .mobile-search form button {
  background-color: transparent;
  border-color: var(--borderColor);
  -o-border-image: none;
  border-image: none;
  border-radius: 5px 0 0 5px;
  border-style: none none none solid;
  border-width: medium medium medium 1px;
  color: var(--blackColor);
  font-size: 18px;
  height: 100%;
  padding: 0 15px 0 14px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

@media only screen and (max-width: 767px) {
  .mobile-off-canvas-active .header-mobile-aside-wrap .mobile-search form button {
    font-size: 16px;
  }
}
.mobile-off-canvas-active .header-mobile-aside-wrap .mobile-search form button:hover {
  color: var(--primaryColor);
}

.mobile-off-canvas-active .header-mobile-aside-wrap .mobile-search form button i {
  margin-top: 5px;
  display: inline-block;
}

.mobile-off-canvas-active .header-mobile-aside-wrap .mobile-menu-wrap {
  border-bottom: 1px solid var(--borderColor);
  margin-bottom: 36px;
  padding-bottom: 27px;
}

.mobile-off-canvas-active .header-mobile-aside-wrap .mobile-menu-wrap .mobile-navigation nav {
  height: 100%;
}

.mobile-off-canvas-active .header-mobile-aside-wrap .mobile-menu-wrap .mobile-navigation nav .mobile-menu li {
  display: block;
  position: relative;
  font-family: var(--headingFont);
  padding: 5px 0;
}

.mobile-off-canvas-active .header-mobile-aside-wrap .mobile-menu-wrap .mobile-navigation nav .mobile-menu li.menu-item-has-children .menu-expand {
  line-height: 50;
  top: -5px;
  left: 95%;
  width: 30px;
  position: absolute;
  height: 50px;
  text-align: center;
  cursor: pointer;
}

.mobile-off-canvas-active .header-mobile-aside-wrap .mobile-menu-wrap .mobile-navigation nav .mobile-menu li.menu-item-has-children .menu-expand i {
  display: block;
  position: relative;
  width: 10px;
  margin-top: 25px;
  border-bottom: 1px solid var(--blackColor);
  -webkit-transition: all 250ms ease-out;
  transition: all 250ms ease-out;
}

.mobile-off-canvas-active .header-mobile-aside-wrap .mobile-menu-wrap .mobile-navigation nav .mobile-menu li.menu-item-has-children .menu-expand i::before {
  top: 0;
  width: 100%;
  content: "";
  display: block;
  position: absolute;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  border-bottom: 1px solid var(--blackColor);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.mobile-off-canvas-active .header-mobile-aside-wrap .mobile-menu-wrap .mobile-navigation nav .mobile-menu li.menu-item-has-children.active > .menu-expand i::before {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}

.mobile-off-canvas-active .header-mobile-aside-wrap .mobile-menu-wrap .mobile-navigation nav .mobile-menu li a {
  font-size: 16px;
  text-transform: capitalize;
  line-height: 18px;
  position: relative;
  display: inline-block;
  color: var(--blackColor);
}

.mobile-off-canvas-active .header-mobile-aside-wrap .mobile-menu-wrap .mobile-navigation nav .mobile-menu li a:hover {
  color: var(--primaryColor);
}

.mobile-off-canvas-active .header-mobile-aside-wrap .mobile-menu-wrap .mobile-navigation nav .mobile-menu li ul li a {
  padding: 0 15px;
  font-size: 14px;
  color: var(--blackColor);
}

.mobile-off-canvas-active .header-mobile-aside-wrap .mobile-menu-wrap .mobile-navigation nav .mobile-menu li ul li a:hover {
  color: var(--primaryColor);
}

.mobile-off-canvas-active .header-mobile-aside-wrap .mobile-menu-wrap .mobile-navigation nav .mobile-menu li ul li ul li a {
  padding: 0 30px;
  font-size: 14px;
  font-weight: 300;
}

.mobile-off-canvas-active .header-mobile-aside-wrap .mobile-curr-lang-wrap {
  border-bottom: 1px solid var(--borderColor);
  margin-bottom: 31px;
  padding-bottom: 37px;
}

@media only screen and (max-width: 767px) {
  .mobile-off-canvas-active .header-mobile-aside-wrap .mobile-curr-lang-wrap {
    display: block;
  }
}
.mobile-off-canvas-active .header-mobile-aside-wrap .mobile-curr-lang-wrap .single-mobile-curr-lang {
  position: relative;
  margin-bottom: 15px;
}

.mobile-off-canvas-active .header-mobile-aside-wrap .mobile-curr-lang-wrap .single-mobile-curr-lang:last-child {
  margin-bottom: 0;
}

.mobile-off-canvas-active .header-mobile-aside-wrap .mobile-curr-lang-wrap .single-mobile-curr-lang a {
  font-size: 16px;
  display: block;
  letter-spacing: 0.2px;
  color: var(--blackColor);
}

.mobile-off-canvas-active .header-mobile-aside-wrap .mobile-curr-lang-wrap .single-mobile-curr-lang a i {
  float: right;
  font-size: 15px;
  position: relative;
  top: 8px;
}

.mobile-off-canvas-active .header-mobile-aside-wrap .mobile-curr-lang-wrap .single-mobile-curr-lang .lang-curr-dropdown {
  margin-top: 5px;
  display: none;
  background-color: var(--whiteColor);
  -webkit-box-shadow: 0 0 20px 0.4px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px 0.4px rgba(0, 0, 0, 0.1);
  padding: 22px 30px 26px;
  width: 100%;
  z-index: 11;
}

.mobile-off-canvas-active .header-mobile-aside-wrap .mobile-curr-lang-wrap .single-mobile-curr-lang .lang-curr-dropdown ul li {
  padding-bottom: 10px;
  display: block;
}

.mobile-off-canvas-active .header-mobile-aside-wrap .mobile-curr-lang-wrap .single-mobile-curr-lang .lang-curr-dropdown ul li:last-child {
  padding-bottom: 0px;
}

.mobile-off-canvas-active .header-mobile-aside-wrap .mobile-curr-lang-wrap .single-mobile-curr-lang .lang-curr-dropdown ul li a {
  font-size: 14px;
  letter-spacing: 0.2px;
}

.mobile-off-canvas-active .header-mobile-aside-wrap .mobile-curr-lang-wrap .single-mobile-curr-lang .lang-curr-dropdown ul li a:hover {
  color: var(--primaryColor);
}

.mobile-off-canvas-active .header-mobile-aside-wrap .mobile-curr-lang-wrap .single-mobile-curr-lang:hover > a {
  color: var(--primaryColor);
}

@media only screen and (max-width: 767px) {
  .mobile-off-canvas-active .header-mobile-aside-wrap .mobile-curr-lang-wrap .single-mobile-curr-lang {
    margin-bottom: 5px;
  }
  .mobile-off-canvas-active .header-mobile-aside-wrap .mobile-curr-lang-wrap .single-mobile-curr-lang:last-child {
    margin-bottom: 0;
  }
}
.mobile-off-canvas-active .header-mobile-aside-wrap .mobile-social-wrap {
  margin-bottom: 20px;
}

.mobile-off-canvas-active .header-mobile-aside-wrap .mobile-social-wrap a {
  font-size: 16px;
  margin-right: 10px;
  background: var(--borderColor);
  width: 40px;
  height: 40px;
  display: inline-block;
  text-align: center;
  line-height: 40px;
  border-radius: 5px;
}
@media (max-width: 767px) {
  .mobile-off-canvas-active .header-mobile-aside-wrap .mobile-social-wrap a {
    margin-right: 0;
  }
}

.mobile-off-canvas-active .header-mobile-aside-wrap .mobile-social-wrap a:last-child {
  margin-right: 0;
}

.headerarea__right__mobail__menu li {
  margin-right: 10px;
}

@media only screen and (max-width: 991px) {
  .desktop__menu__wrapper {
    display: none;
  }
  .mob_menu_wrapper {
    display: block;
  }
  .header__topbar {
    display: none;
  }
}
.logo__mobile img {
  width: 100%;
}

.mob_menu_wrapper.header__sticky.sticky {
  padding: 5px 10px;
}

/* mobail__menu__end */
.herobanner__inner {
  height: 750px;
  background-color: #ebebeb;
  border-radius: 25px;
  display: flex;
  align-items: center;
}
@media (min-width: 1366px) and (max-width: 1499px) {
  .herobanner__inner {
    height: 650px;
  }
}
@media (min-width: 992px) and (max-width: 1365px) {
  .herobanner__inner {
    height: 470px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .herobanner__inner {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .herobanner__inner {
    height: 530px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .herobanner__inner {
    height: 730px;
  }
}
.herobanner__title {
  font-size: 50px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 15px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .herobanner__title {
    font-size: 40px;
    margin-bottom: 8px;
  }
}
@media (max-width: 767px) {
  .herobanner__title {
    font-size: 35px;
    margin-bottom: 8px;
  }
}
.herobanner__text {
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .herobanner__text {
    margin-bottom: 15px;
  }
}
.herobanner__text p {
  margin: 0;
}
@media (max-width: 767px) {
  .herobanner__text p {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .herobanner__text__wraper {
    margin-bottom: 20px;
    text-align: center;
  }
}

.herobanner__small__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
}

.herobanner__2 {
  background-image: url(https://minimalin-html.netlify.app/minimalin/img/herobanner/herobanner__2.png);
}

.herobanner__inner__2 {
  height: 745px;
  border-radius: 25px;
  display: flex;
  align-items: center;
}
@media (min-width: 1366px) and (max-width: 1499px) {
  .herobanner__inner__2 {
    height: 635px;
  }
}
@media (min-width: 992px) and (max-width: 1365px) {
  .herobanner__inner__2 {
    height: 470px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .herobanner__inner__2 {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .herobanner__inner__2 {
    height: 400px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .herobanner__inner__2 {
    height: 730px;
  }
}

.herobanner__4 {
  background-image: url(https://minimalin-html.netlify.app/minimalin/img/herobanner/herobanner__4.png);
}

.herobanner__5 {
  background-image: url(../img/herobanner/herobanner__5.png);
}

.herobanner__6 {
  background-image: url(https://minimalin-html.netlify.app/minimalin/img/herobanner/herobanner__6.png);
}

.herobanner__7 {
  background-image: url(../img/herobanner/herobanner__8.png);
}

.herobanner__small__title__6 {
  color: var(--primaryColor);
}

.herobanner__8 {
  background-color: #ebebeb;
}

.herobanner__img img {
  width: 100%;
}

@media (min-width: 992px) and (max-width: 1365px) {
  .herobanner__8 .herobanner__inner {
    height: 600px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .herobanner__8 .herobanner__inner {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .herobanner__8 .herobanner__inner {
    height: 600px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .herobanner__8 .herobanner__inner {
    height: 730px;
  }
}

.slick-current .ltn__slide-animation > * {
  opacity: 1;
  visibility: visible;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

.ltn__slide-animation > * {
  opacity: 0;
  visibility: hidden;
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

.ltn__slide-animation > *:nth-child(1) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}

.ltn__slide-animation > *:nth-child(2) {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}

.ltn__slide-animation > *:nth-child(3) {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
}

.ltn__slide-animation > *:nth-child(4) {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.ltn__slide-animation > *:nth-child(5) {
  -webkit-animation-delay: 2.5s;
  animation-delay: 2.5s;
  -webkit-animation-duration: 2.5s;
  animation-duration: 2.5s;
}

.ltn__slide-animation > *:nth-child(6) {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}

.ltn__slide-animation > *:nth-child(7) {
  -webkit-animation-delay: 3.5s;
  animation-delay: 3.5s;
  -webkit-animation-duration: 3.5s;
  animation-duration: 3.5s;
}

.ltn__slide-animation > *:nth-child(8) {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
  -webkit-animation-duration: 4s;
  animation-duration: 4s;
}

.ltn__slide-animation > *:nth-child(9) {
  -webkit-animation-delay: 4.5s;
  animation-delay: 4.5s;
  -webkit-animation-duration: 4.5s;
  animation-duration: 4.5s;
}

.ltn__slide-animation > *:nth-child(11) {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
  -webkit-animation-duration: 5s;
  animation-duration: 5s;
}

.herobanner__2 .herobanner__title {
  font-weight: 700;
}

.ltn__banner-item-full-width {
  position: relative;
}

.slide-item-info.full-width-banner-info {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.slide-item-info.full-width-banner-info {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.slide-item-info-inner .slide-title {
  font-size: 50px;
  color: var(--whiteColor);
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .slide-item-info-inner .slide-title {
    font-size: 26px;
  }
}

.ltn__banner-video video {
  width: 100%;
}

.for-mobile {
  display: none;
}

@media (min-width: 576px) {
  .slide-item-info.full-width-banner-info {
    max-width: 540px;
  }
}
@media (min-width: 767px) {
  .slide-item-info.full-width-banner-info {
    max-width: 720px;
  }
}
@media (min-width: 1200px) {
  .slide-item-info.full-width-banner-info {
    max-width: 1200px;
  }
}
@media (max-width: 767px) {
  .for-desktop {
    display: none;
  }
  .for-mobile {
    display: block;
  }
}
@media (max-width: 767px) {
  .herobanner__text__side {
    order: 1;
    margin-bottom: 30px;
  }
}

.herobanner__inner__3 {
  max-width: 1200px;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 767px) {
  .herobanner__inner__3 {
    position: unset;
    left: 0;
    top: 0;
    width: 100%;
    transform: none;
    margin-top: 20px;
  }
}
.herobanner__inner__3.herobanner__inner__1320 {
  max-width: 1320px;
}
.herobanner__inner__3 .herobanner__text__wraper--3 {
  left: 50%;
  width: 50%;
  position: relative;
  z-index: 9;
}
@media (max-width: 767px) {
  .herobanner__inner__3 .herobanner__text__wraper--3 {
    left: 0;
    width: 100%;
    margin-top: 20px;
  }
}

@media (max-width: 767px) {
  .herobanner .slider__default__dot.herobanner__dot .slick-dots {
    bottom: -20px;
  }
}

.banner__img {
  position: relative;
}
@media (max-width: 767px) {
  .banner__img {
    margin: 10px 0;
  }
}
.banner__img img {
  width: 100%;
  border-radius: var(--borderRadius2);
}
.banner__info {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
}
.banner__info h2 {
  font-size: 30px;
}
@media (max-width: 767px) {
  .banner__info h2 {
    font-size: 25px;
  }
}
.banner__button {
  margin-top: 25px;
}
@media (max-width: 767px) {
  .banner__button {
    margin-top: 10px;
  }
}

.banner__4 .banner__info h2 a:hover {
  color: var(--red);
}

.banner__info__4 {
  right: 30px;
  left: auto;
  text-align: right;
}

.banner__6 .banner__6__img img {
  width: 100%;
  border-radius: 15px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .banner__7__img {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .banner__7__img {
    margin-bottom: 20px;
  }
}
.banner__7__img img {
  width: 100%;
  border-radius: 15px;
}

.brand__single .brand__img img {
  margin: auto;
}

.small__banner__6__img {
  overflow: hidden;
  border-radius: 15px;
}
.small__banner__6__img:hover img {
  transform: scale(1.05);
}

.banner__6__img {
  overflow: hidden;
  border-radius: 15px;
}
.banner__6__img:hover img {
  transform: scale(1.05);
}

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

.instagram__img {
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: var(--borderRadius2);
}
.instagram__img img {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.instagram__img a {
  transition: all 0.5s ease 0s;
  position: relative;
  overflow: hidden;
}
.instagram__img a:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.instagram__img a::before {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  height: 100%;
  background-color: rgba(17, 17, 17, 0.5);
  content: "";
  z-index: 1;
  opacity: 0;
  transition: all 0.5s ease 0s;
}
.instagram__img a::after {
  position: absolute;
  content: "+";
  font-size: 50px;
  top: 50%;
  left: 50%;
  z-index: 3;
  margin-left: -15px;
  margin-top: -15px;
  color: var(--whiteColor);
  opacity: 0;
  line-height: 30px;
  transition: all 0.5s ease 0s;
}
.instagram__img:hover a::before {
  opacity: 1;
}
.instagram__img:hover a::after {
  opacity: 1;
}

@media (max-width: 767px) {
  .banner__4 .banner__img {
    margin-bottom: 10px;
  }
}

.banner__3__inner {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .banner__3__inner {
    margin-bottom: 10px;
  }
}
.banner__3__img {
  position: relative;
  width: 100%;
  border-radius: 15px;
}
.banner__3__img img {
  width: 100%;
  border-radius: 15px;
}
.banner__3__text {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
}
.banner__3__text h2 {
  font-weight: 700;
  line-height: 1.3;
  font-size: 30px;
  margin: 0;
}
@media (max-width: 767px) {
  .banner__3__text h2 {
    font-size: 20px;
  }
}
.banner__3__right {
  right: 30px;
  left: auto;
}

.small__banner__6__img img {
  width: 100%;
  border-radius: 15px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .banner__6__img {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .banner__6__img {
    margin-bottom: 30px;
  }
}

.grid__wraper {
  margin-bottom: 30px;
}
.grid__wraper:hover .grid__wraper__icon {
  opacity: 1;
  visibility: visible;
  top: 70%;
}
.grid__wraper:hover .secondary__image {
  opacity: 1;
  visibility: visible;
}
.grid__wraper:hover .grid__wraper__countdown {
  bottom: 0;
  opacity: 0;
}
.grid__wraper:hover .grid__wraper__quickview {
  opacity: 1;
  visibility: visible;
  top: 70%;
}
.grid__wraper__img {
  position: relative;
}
.grid__wraper__img img {
  width: 100%;
  border-radius: 15px;
}
.grid__wraper__img__inner {
  position: relative;
}
.grid__wraper__img__inner .secondary__image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  -moz-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out;
}
.grid__wraper__icon {
  position: absolute;
  top: 60%;
  left: 0;
  right: 0;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 99;
}
.grid__wraper__icon ul li a {
  height: 45px;
  width: 45px;
  line-height: 45px;
  font-size: 16px;
  display: inline-block;
  background: var(--whiteColor);
  box-shadow: 0 1px 6px 0 rgba(32, 33, 36, 0.28);
  text-align: center;
  border-radius: 5px;
}
@media (max-width: 767px) {
  .grid__wraper__icon ul li a {
    height: 30px;
    width: 30px;
    line-height: 30px;
    font-size: 12px;
  }
}
.grid__wraper__icon.grid__wraper__icon__list {
  opacity: 1;
  position: unset;
  visibility: visible;
  text-align: left;
}
.grid__wraper__badge {
  position: absolute;
  top: 10px;
  right: 12px;
  display: flex;
  gap: 5px;
}
.grid__wraper__badge span {
  font-size: 12px;
  background-color: var(--whiteColor);
  color: var(--blackColor);
  padding: 0 10px;
  text-transform: unset;
  box-shadow: 0 1px 6px 0 rgba(32, 33, 36, 0.28);
  display: block;
  border-radius: 5px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .grid__wraper__badge span {
    font-size: 10px;
  }
}
.grid__wraper__badge span.sold__out {
  background-color: var(--secondaryColor);
  color: var(--whiteColor);
}
.grid__wraper__info {
  padding: 15px 10px 0;
  text-align: center;
}
.grid__wraper__info h3 {
  font-size: 16px;
  margin-bottom: 0;
  font-weight: 600;
}
@media (max-width: 767px) {
  .grid__wraper__info h3 {
    font-size: 14px;
  }
}
.grid__wraper__info__list {
  padding: 0 25px 0 30px;
  position: relative;
  width: 70%;
}
@media (min-width: 768px) and (max-width: 991px) {
  .grid__wraper__info__list {
    width: 100%;
    margin-top: 20px;
    padding: 0;
  }
}
@media (max-width: 767px) {
  .grid__wraper__info__list {
    width: 100%;
    margin-top: 20px;
    padding: 0 10px;
  }
}
.grid__wraper__info__list h3 {
  font-size: 20px;
}
.grid__wraper__price {
  font-size: 16px;
  margin-top: 10px;
  margin-bottom: 0;
}
.grid__wraper__price del {
  font-size: 14px;
  margin-left: 0;
  margin-right: 5px;
  font-weight: 600;
  opacity: 0.6;
}
.grid__wraper__price span {
  color: var(--primaryColor);
  font-weight: 600;
  font-size: 16px;
}
.grid__wraper__color {
  margin-top: 10px;
}
.grid__wraper__color ul li {
  display: flex;
}
.grid__wraper__color ul li label, .grid__wraper__color ul li span {
  height: 20px;
  width: 20px;
  margin: 3px;
  border-radius: 50%;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  box-shadow: 0 1px 6px 0 rgba(32, 33, 36, 0.28);
  cursor: pointer;
  display: flex;
}
.grid__wraper__color ul li a {
  display: inline-block;
}
.grid__wraper__countdown {
  background: var(--whiteColor);
  box-shadow: 0 1px 6px rgba(32, 33, 36, 0.2784313725);
  display: flex;
  align-items: center;
  justify-content: space-around;
  position: absolute;
  bottom: 20px;
  left: 10px;
  right: auto;
  width: calc(100% - 20px);
  transition: all 0.3s ease 0s;
  padding: 10px 0;
  border-radius: var(--borderRadius);
}
@media (max-width: 767px) {
  .grid__wraper__countdown {
    padding: 5px 0;
  }
}
.grid__wraper__countdown p {
  line-height: 1;
  margin-bottom: 5px;
  font-weight: 600;
  width: 100%;
}
@media (max-width: 767px) {
  .grid__wraper__countdown p {
    font-size: 12px;
    margin-bottom: 3px;
  }
}
.grid__wraper__countdown span {
  line-height: 1;
  font-size: 14px;
}
@media (max-width: 767px) {
  .grid__wraper__countdown span {
    font-size: 12px;
  }
}
.grid__wraper__countdown .count {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.grid__wraper.grid__list__wraper {
  display: flex;
}
@media (min-width: 768px) and (max-width: 991px) {
  .grid__wraper.grid__list__wraper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .grid__wraper.grid__list__wraper {
    flex-wrap: wrap;
  }
}
.grid__wraper__img__list__swatch {
  width: 30%;
}
@media (min-width: 768px) and (max-width: 991px) {
  .grid__wraper__img__list__swatch {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .grid__wraper__img__list__swatch {
    width: 100%;
  }
}

.gird__list__description {
  margin-top: 10px;
}

.grid__wraper__quickview {
  position: absolute;
  top: 60%;
  left: 0;
  right: 0;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 99;
}
.grid__wraper__quickview a {
  padding: 5px 15px;
  background: var(--whiteColor);
  border-radius: 5px;
}
.grid__wraper__quickview a:hover {
  background: var(--primaryColor);
  color: var(--whiteColor);
}

.best__selling__tab__wrap {
  justify-content: end;
}
@media (max-width: 767px) {
  .best__selling__tab__wrap {
    justify-content: start;
    margin-bottom: 20px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .best__selling__tab__wrap {
    justify-content: end;
  }
}
.best__selling__tab__wrap li button {
  border: none;
  background: none;
  padding: 5px 0;
  margin: 0 15px;
  font-family: var(--headingFont);
  font-weight: 600;
}
@media (max-width: 767px) {
  .best__selling__tab__wrap li button:first-child {
    margin-left: 0;
  }
}
.best__selling__tab__wrap li button.active {
  color: var(--primaryColor);
  position: relative;
}
.best__selling__tab__wrap li button.active:after {
  position: absolute;
  content: "";
  bottom: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 2px;
  width: 100%;
  background-color: var(--primaryColor);
  left: 0;
}

.best__selling__button {
  text-align: center;
  margin-top: 20px;
}

.feture__section__button {
  margin-top: 20px;
}

.prodict__selling__tab ul {
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .prodict__selling__tab ul {
    margin-bottom: 30px;
  }
}
.prodict__selling__tab ul li button {
  padding: 20px 40px;
  margin-right: 5px;
  background: var(--greyColor);
  border: none;
  border-radius: var(--borderRadius);
  line-height: 1;
}
@media (max-width: 767px) {
  .prodict__selling__tab ul li button {
    padding: 10px 30px;
  }
}
.prodict__selling__tab ul li button.active {
  background: var(--blackColor);
  color: var(--whiteColor);
}

.small__grid__img {
  width: 90px;
  height: 90px;
  margin-right: 20px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .small__grid__img {
    margin-right: 10px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .small__grid__img {
    margin-right: 10px;
  }
}
.small__grid__img img {
  width: 100%;
  border-radius: 15px;
}
.small__grid__wraper {
  display: flex;
  padding: 20px;
  align-items: center;
  margin-bottom: 30px;
  border: 1px solid var(--greyColor);
  border-radius: 15px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .small__grid__wraper {
    padding: 10px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .small__grid__wraper {
    padding: 10px;
  }
}
@media (max-width: 767px) {
  .small__grid__wraper {
    padding: 10px;
    margin-bottom: 10px;
  }
}
.small__grid__content h2 {
  font-size: 18px;
  margin-bottom: 5px;
  font-weight: 700;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .small__grid__content h2 {
    font-size: 16px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .small__grid__content h2 {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .small__grid__content h2 {
    font-size: 14px;
  }
}
.small__grid__content .small__grid__price del {
  margin-right: 10px;
}
.small__grid__content .small__grid__price span {
  color: var(--yellow);
  font-weight: 600;
}

.small__product__title {
  margin-bottom: 50px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .small__product__title {
    margin-bottom: 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .small__product__title {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .small__product__title {
    margin-bottom: 20px;
  }
}
.small__product__title h2 {
  border-bottom: 1px solid #dee2e6 !important;
  font-size: 30px;
  font-weight: 700;
  padding-bottom: 5px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .small__product__title h2 {
    font-size: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .small__product__title h2 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .small__product__title h2 {
    font-size: 20px;
  }
}
.small__product__title h2 a:hover {
  color: var(--yellow2);
}

@media (max-width: 767px) {
  .small__product__grid__wrap {
    margin-bottom: 30px;
  }
  .small__product__grid__wrap:last-child {
    margin-bottom: 0;
  }
}

.modalarea .btn-close {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 9999999999999;
}

.modalarea.modal {
  top: 135px;
  z-index: 9999;
}
@media (max-width: 767px) {
  .modalarea.modal {
    top: 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .modalarea.modal {
    top: 50px;
  }
}

@media (max-width: 767px) {
  .grid__quick__view__modal .modal-body {
    padding: 0;
  }
}

.grid__quick__view__modal .modal-content {
  width: 1000px;
  border-radius: 20px;
  padding: 20px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .grid__quick__view__modal .modal-content {
    min-width: 90%;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .grid__quick__view__modal .modal-content {
    min-width: 90%;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .grid__quick__img {
    margin-bottom: 20px;
  }
}
.grid__quick__img img {
  width: 100%;
  border-radius: 10px;
}

.grid__quick__content h3 {
  font-size: 24px;
  margin-bottom: 10px;
  line-height: 1;
  font-weight: 600;
}
@media (max-width: 767px) {
  .grid__quick__content h3 {
    font-size: 20px;
  }
}
.grid__quick__content span {
  font-size: 24px;
  color: var(--primaryColor);
  margin-bottom: 15px;
  display: inline-block;
}
@media (max-width: 767px) {
  .grid__quick__content span {
    font-size: 20px;
  }
}

.grid__quick__view__modal .modal-dialog {
  min-width: 1000px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .grid__quick__view__modal .modal-dialog {
    min-width: 100%;
  }
}
@media (max-width: 767px) {
  .grid__quick__view__modal .modal-dialog {
    min-width: 100%;
  }
}

.selector__wrapper select {
  border: 1px solid rgba(31, 34, 38, 0.1);
  box-shadow: none;
  color: var(--darkgrey3);
  font-size: 14px;
  height: 50px;
  padding-left: 10px;
  position: relative;
  width: 100%;
  border-radius: 5px;
  margin-top: 25px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .selector__wrapper select {
    margin-top: 10px;
    margin-bottom: 15px;
  }
}

.featurearea__quantity {
  display: flex;
  align-items: center;
}

.qty-container {
  display: flex;
  margin-right: 20px;
  border-top: 1px solid rgba(31, 34, 38, 0.1);
  border-bottom: 1px solid rgba(31, 34, 38, 0.1);
  overflow: hidden;
  width: 130px;
  height: 60px;
  border-radius: 5px;
}
.qty-container button {
  border: none;
  border-left: 1px solid rgba(31, 34, 38, 0.1);
  background: none;
  font-size: 12px;
  padding: 0 10px;
  border-right: 1px solid rgba(31, 34, 38, 0.1);
}
.qty-container input {
  width: 100%;
  border: none;
  text-align: center;
}

.featurearea__quantity__button {
  background-color: rgba(31, 34, 38, 0.5019607843);
  border: medium none;
  color: var(--whiteColor);
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  height: 40px;
  line-height: 24px;
  margin-bottom: 0;
  padding: 8px 25px;
  border-radius: 0;
  text-align: center;
}
.featurearea__quantity__button:hover {
  background: var(--primaryColor);
  color: var(--whiteColor);
}

.featurearea__quantity .default__button {
  height: 60px;
  line-height: 60px;
  padding-top: 0;
  padding-bottom: 0;
}

.quick__price {
  font-size: 25px;
  font-family: var(--headingFont);
  font-weight: 600;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .quick__price {
    font-size: 20px;
    margin: 0;
  }
}
.quick__price del {
  opacity: 0.6;
}

.single__product__bottom__button {
  margin-top: 20px;
}

.layout__6 .grid__wraper__info h3 {
  font-weight: 700;
}
.layout__6 .grid__wraper__price span {
  font-weight: 700;
}
.layout__6 .grid__wraper__price del {
  font-weight: 700;
}

@media (max-width: 767px) {
  .row.grid__responsive {
    margin: 0 -5px;
  }
}

@media (max-width: 767px) {
  .grid__responsive [class*=col-] {
    padding-right: 5px;
    padding-left: 5px;
  }
}

.tab-content .tab-pane {
  display: block;
  overflow: hidden;
  height: 0;
  visibility: hidden;
  max-width: 100%;
  opacity: 0;
}

.tab-content .tab-pane.active {
  height: auto;
  visibility: visible;
  opacity: 1;
  overflow: visible;
}

.animate__content {
  padding-top: 40px;
  padding-bottom: 40px;
  background: var(--greyColor) no-repeat scroll center center/cover;
  margin-top: 0px;
}
@media (max-width: 767px) {
  .animate__content {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.animate__content__wrap {
  display: flex;
  width: fit-content;
  white-space: nowrap;
  position: relative;
  will-change: transform;
  animation: marquee 20s linear 0s infinite normal;
  animation-play-state: running;
}
.animate__content__wrap:hover {
  animation-play-state: paused;
}
.animate__content__single {
  display: block;
  width: 100%;
  min-width: max-content;
  padding-inline: 20px;
}
.animate__content__single span {
  font-size: 30px;
  line-height: 1;
  margin-bottom: 0;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 767px) {
  .animate__content__single span {
    font-size: 20px;
    padding-left: 15px;
  }
}
.animate__content__single span:before {
  position: absolute;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blackColor);
  content: "";
  top: 50%;
  transform: translate(-50%);
  margin-top: -5px;
}

.animate__content__2 {
  margin-bottom: 0;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.contactarea__single {
  padding: 50px 30px 25px;
  border: 1px solid var(--greyColor);
  border-radius: 15px;
  margin-bottom: 30px;
  text-align: center;
}
.contactarea__single h3 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 15px;
  font-size: 24px;
}

.contactarea__form__area {
  padding: 40px 50px 50px;
  background: var(--greyColor);
}
@media (max-width: 767px) {
  .contactarea__form__area {
    padding: 30px 20px 30px;
  }
}
.contactarea__form__title {
  margin-bottom: 30px;
  font-size: 26px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .contactarea__form__title {
    font-size: 20px;
  }
}
.contactarea__form__input input {
  background-color: var(--whiteColor);
  border: 2px solid;
  border-color: var(--whiteColor);
  height: 65px;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding-left: 20px;
  font-size: 16px;
  width: 100%;
  margin-bottom: 30px;
  border-radius: 0;
  padding-right: 40px;
}
@media (max-width: 767px) {
  .contactarea__form__input input {
    height: 55px;
  }
}
.contactarea__form__input textarea {
  width: 100%;
  padding: 15px 20px;
  min-height: 150px;
  border: none;
  margin-bottom: 30px;
}

.contact__map__inner iframe {
  width: 100%;
}

.coll__section .coll__color {
  background: var(--greyColor);
  padding-top: 45px;
  padding-bottom: 50px;
  margin-top: 0px;
  margin-bottom: 80px;
  border-radius: 15px;
}
.coll__section__inner {
  text-align: center;
}
.coll__section__inner h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 15px;
  font-size: 16px;
  color: var(--primaryColor);
}
.coll__section__inner h1 {
  font-size: 50px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1;
}
@media (max-width: 767px) {
  .coll__section__inner h1 {
    font-size: 30px;
  }
}
.coll__section__inner .button__wrapper {
  margin-top: 30px;
}
.coll__section__inner .button__1 {
  margin-right: 15px;
}

.size__table {
  width: 100%;
}
.size__table tbody tr td {
  padding: 5px 10px;
  font-size: 14px;
  border: 1px solid #e5e5e5;
}

.blog__single__wrap {
  margin-bottom: 30px;
  overflow: hidden;
}
.blog__single__wrap:hover .blog__img img {
  transform: scale(1.1);
}
.blog__img {
  overflow: hidden;
  transition: 0.3s;
  position: relative;
  border-radius: var(--borderRadius2);
}
.blog__img img {
  width: 100%;
}
.blog__meta {
  margin-top: 15px;
  margin-bottom: 15px;
}
.blog__meta ul li {
  font-size: 14px;
  margin-left: 25px;
}
.blog__meta ul li:first-child {
  margin-left: 0;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .blog__meta ul li {
    margin-left: 0px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .blog__meta ul li {
    margin-left: 0px;
  }
}
@media (max-width: 767px) {
  .blog__meta ul li {
    margin-left: 0px;
  }
}
.blog__meta ul li i {
  margin-right: 5px;
}
.blog__title {
  margin-bottom: 15px;
}
.blog__title h2 {
  font-size: 16px;
  margin: 0;
  font-weight: 600;
  line-height: 1.8;
}
.blog__button a {
  font-size: 14px;
  font-weight: 600;
  color: var(--primaryColor);
  font-family: var(--headingFont);
}

.blog__sidebar {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--greyColor);
}
.blog__sidebar .blog__sidebar__title {
  font-size: 20px;
  margin-bottom: 35px;
  font-weight: 600;
}
.blog__sidebar .blog__search {
  position: relative;
}
.blog__sidebar .blog__search input {
  border: 1px solid var(--greyColor);
  height: 65px;
  padding-left: 20px;
  font-size: 16px;
  width: 100%;
}
.blog__sidebar .blog__search button {
  height: 65px;
  border-radius: 0 5px 5px 0;
  position: absolute;
  right: 0;
  padding: 0 20px;
  border: 1px solid var(--primaryColor);
  background: var(--primaryColor);
  color: var(--whiteColor);
}

.blog__popular__img {
  margin-right: 20px;
}
.blog__popular__img img {
  width: 80px;
}

.blog__popular {
  display: flex;
}
.blog__popular .blog__small__text h6 {
  margin: 0;
}
.blog__popular .blog__small__text h6 a {
  font-weight: 16px;
  color: var(--blackColor);
  font-weight: 600;
}
.blog__popular .blog__small__text h6 a:hover {
  color: var(--primaryColor);
}

.blog__small__meta ul li {
  font-size: 14px;
  color: var(--primaryColor);
}
.blog__small__meta ul li i {
  margin-right: 5px;
}

.blog__sidebar__list {
  margin-bottom: 20px;
  border-bottom: 1px dashed var(--greyColor);
  padding-bottom: 20px;
  display: block;
}
.blog__sidebar__list:last-child {
  border-bottom: none;
  margin: 0;
  padding: 0;
}

.blog__tags ul {
  display: flex;
  flex-wrap: wrap;
}
.blog__tags ul li {
  display: inline-block;
  margin: 5px 3px;
}
.blog__tags ul li a {
  display: block;
  padding: 8px 24px 6px;
  font-size: 13px;
  text-transform: uppercase;
  background-color: var(--greyColor);
  font-weight: 700;
  border-radius: 5px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .blog__tags ul li a {
    padding: 8px 11px 6px;
    font-size: 12px;
  }
}
.blog__tags ul li a:hover {
  background: var(--primaryColor);
  color: var(--whiteColor);
}

.blog__social__icon ul {
  display: flex;
}
.blog__social__icon ul li {
  margin-right: 5px;
}
.blog__social__icon ul li a {
  background-color: var(--greyColor);
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 5px;
}
.blog__social__icon ul li a:hover {
  background: var(--primaryColor);
  color: var(--whiteColor);
}

.layout__6 .blog__title h2 {
  font-weight: 700;
}

/* ----------------------------------------------------
    Blog Details
---------------------------------------------------- */
.ltn__blog-title {
  font-size: 36px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .ltn__blog-title {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .ltn__blog-title {
    font-size: 20px;
  }
}

.ltn__page-details-inner img {
  border-radius: var(--borderRadius3);
  margin-bottom: 20px;
}

.ltn__page-details-inner p {
  margin-top: 1.5em;
}

.ltn__page-details-inner .ltn__blog-title {
  margin-top: 0;
  font-size: 36px;
}

.ltn__page-details-inner .ltn__blog-img {
  margin-bottom: 40px;
}

.ltn__page-details-inner .img-radius img {
  border-radius: 0px 0px 0px 35px;
}

.ltn__page-details-inner label {
  font-size: 14px;
}

.ltn__blog-meta li {
  font-family: var(--headingFont);
  font-size: 14px;
  margin-right: 25px;
}

.ltn__blog-meta li i {
  margin-right: 5px;
}

.ltn__blog-tags-social-media {
  border-bottom: 1px solid var(--borderColor);
}

.ltn__comment-area {
  border-bottom: 1px solid var(--borderColor);
}

.ltn__comment-area .title-2 {
  margin-bottom: 30px;
}

/* blog-details-wrap */
.ltn__blog-details-wrap {
  border: 2px solid var(--border-color-11);
  padding: 50px;
}

blockquote {
  font-size: 28px;
  font-family: var(--headingFont);
  line-height: 1.6;
  font-weight: 500;
  background-color: var(--greyColor);
  padding: 60px 50px 60px 60px;
  margin: 50px 0 50px 0px;
  font-style: normal;
  text-align: center;
  border-left: 0;
  position: relative;
  z-index: 1;
  border-radius: var(--borderRadius3);
  letter-spacing: 1px;
}
@media (min-width: 768px) and (max-width: 991px) {
  blockquote {
    font-size: 20px;
    padding: 40px 30px 40px 40px;
    margin: 30px 0 30px 0px;
  }
}
@media (max-width: 767px) {
  blockquote {
    font-size: 18px;
    padding: 30px 20px 30px 30px;
    margin: 30px 0 30px 0px;
  }
}

blockquote i {
  position: absolute;
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  font-size: 230px;
  right: 45px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: var(--whiteColor);
  z-index: -1;
}

.ltn__comment-item {
  position: relative;
}

.ltn__comment-item p {
  font-size: 14px;
}

.ltn__commenter-img {
  float: left;
  margin-right: 30px;
  max-width: 100px;
}
@media (max-width: 767px) {
  .ltn__commenter-img {
    margin-right: 15px;
    max-width: 70px;
  }
}

.ltn__commenter-img img {
  border-radius: 100%;
  width: 100%;
}

.ltn__commenter-comment {
  overflow: hidden;
}

.ltn__commenter-comment h6 {
  margin-bottom: 5px;
  font-size: 20px;
}

.ltn__commenter-comment .comment-date {
  margin-bottom: 10px;
  display: block;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--headingFont);
  color: var(--primaryColor);
}

.ltn__comment-inner ul {
  margin: 0;
  padding: 0;
}

.ltn__comment-inner li {
  list-style: none;
  border-top: 1px solid var(--borderColor);
  padding-top: 30px;
  margin-top: 8px;
}

.ltn__comment-inner > ul > li:first-child {
  border-top: 0;
  padding-top: 0;
  margin-top: 0;
}

.ltn__comment-inner ul ul {
  margin: 0 0 0 70px;
  padding: 0;
}

.ltn__comment-reply-btn {
  position: absolute;
  padding: 0 25px 0;
  border: 2px solid var --borderColor;
  display: inline-block;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 700;
  height: 40px;
  line-height: 36px;
  top: 0;
  right: 0;
}

.ltn__comment-reply-btn i {
  margin-right: 5px;
}

.ltn__comment-reply-btn:hover {
  border-color: var(--primaryColor);
}

.ltn__comment-reply-area form {
  padding: 50px;
  background-color: var(--white-5);
}

.ltn__comment-reply-area form input[type=text],
.ltn__comment-reply-area form input[type=email],
.ltn__comment-reply-area form input[type=password],
.ltn__comment-reply-area form input[type=submit],
.ltn__comment-reply-area form textarea {
  border-color: var(--white-5);
}

.ltn__comment-inner .product-ratting ul {
  padding: 0;
  margin: 0;
}

.ltn__comment-inner .product-ratting ul li {
  padding: 0;
  border: 0;
}

.ltn__first-letter {
  font-size: 70px;
  font-weight: 700;
  float: left;
  background-color: var(--se);
  color: var(--white);
  margin-right: 30px;
  line-height: 1;
  text-transform: uppercase;
  width: 100px;
  height: 100px;
  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;
}

.ltn__blog-tags-social-media .ltn__social-media ul li a {
  color: var(--darkgrey3);
  margin-left: 15px;
}

.contactarea__form__area__wrap .contactarea__form__area {
  border-radius: var(--borderRadius3);
}

.ltn__tagcloud-widget ul li a {
  display: block;
  padding: 8px 24px 6px;
  font-size: 14px;
  font-weight: 600;
  background-color: var(--greyColor);
  font-family: var(--headingFont);
  text-transform: capitalize;
  border-radius: var(--borderRadius);
}
@media (min-width: 992px) and (max-width: 1365px) {
  .ltn__tagcloud-widget ul li a {
    padding: 8px 20px 6px;
  }
}
@media (max-width: 767px) {
  .ltn__tagcloud-widget ul li a {
    margin-bottom: 5px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .ltn__social-media {
    margin-top: 20px;
  }
}
.ltn__social-media h4 {
  font-size: 20px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .about__text {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .about__text {
    margin-bottom: 20px;
  }
}
.about__text h4 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
  font-size: 20px;
}
.about__text h2 {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .about__text h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
.about__text h2 span {
  color: var(--primaryColor);
}

.about__7 {
  background: var(--greyColor);
}

.about__button {
  margin-top: 25px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .about__img {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .about__img {
    margin-bottom: 20px;
  }
}
.about__img img {
  width: 100%;
  border-radius: 15px;
}

.video__img {
  position: relative;
}
.video__img img {
  width: 100%;
  border-radius: 15px;
}
.video__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.video__icon a {
  height: 80px;
  width: 80px;
  background-color: var(--whiteColor);
  color: var(--primaryColor);
  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;
  z-index: 9;
  border-radius: 15px;
  outline-offset: 15px;
  outline: 4px solid var(--whiteColor);
  margin: 20px;
}
.video__icon a:hover {
  outline: 4px solid var(--primaryColor);
}
@media (max-width: 767px) {
  .video__icon a {
    height: 50px;
    width: 50px;
    font-size: 15px;
  }
}

.before__after__img img {
  width: 100%;
}

@media (max-width: 767px) {
  .about__4 {
    margin-top: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .about__4 h2 {
    font-size: 20px;
  }
}
.about__4 h2 span {
  color: var(--primaryColor);
}

.about__4__button {
  margin-top: 25px;
}

.about__4__list {
  padding-left: 20px;
  margin-left: 20px;
}
.about__4__list li {
  display: block;
  position: relative;
}
.about__4__list li::before {
  position: absolute;
  content: "";
  height: 5px;
  width: 5px;
  background: var(--blackColor);
  border-radius: 100%;
  top: 50%;
  left: -15px;
}

.before-after-wrap {
  overflow: hidden;
  position: relative;
  border-radius: var(--borderRadius3);
}

@media only screen and (min-width: 350px) {
  .before-after-wrap {
    height: 350px;
  }
}
@media only screen and (min-width: 768px) {
  .before-after-wrap {
    height: 450px;
  }
}
@media only screen and (min-width: 1366px) {
  .before-after-wrap {
    height: 700px;
  }
}
.before-after-wrap figure {
  background-size: cover;
  font-size: 0;
  height: 100%;
  margin: 0;
  position: relative;
  width: 100%;
}

.before-after-wrap #compare {
  background-size: cover;
  bottom: 0;
  border-right: 5px solid rgba(255, 255, 255, 0.7);
  box-shadow: 10px 0 15px -13px #000;
  height: 100%;
  max-width: 98.6%;
  min-width: 0.6%;
  overflow: visible;
  position: absolute;
  width: 50%;
  animation: first 2s 1 normal ease-in-out 0.1s;
  -webkit-animation: first 2s 1 normal ease-in-out 0.1s;
}

.before-after-wrap input#slider {
  -moz-appearance: none;
  -webkit-appearance: none;
  border: none;
  background: transparent;
  cursor: col-resize;
  height: 100vw;
  left: 0;
  margin: 0;
  outline: none;
  padding: 0;
  position: relative;
  top: -100vw;
  width: 100%;
}

.before-after-wrap input#slider::-moz-range-track {
  background: transparent;
}

.before-after-wrap input#slider::-ms-track {
  border: none;
  background-color: transparent;
  height: 100vw;
  left: 0;
  outline: none;
  position: relative;
  top: -100vw;
  width: 100%;
  margin: 0;
  padding: 0;
  cursor: col-resize;
  color: transparent;
}

.before-after-wrap input#slider::-ms-fill-lower {
  background-color: transparent;
}

.before-after-wrap input#slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 100vw;
  width: 0.5%;
  opacity: 0;
}

.before-after-wrap input#slider::-moz-range-thumb {
  -moz-appearance: none;
  height: 100vw;
  width: 0.5%;
  opacity: 0;
}

.before-after-wrap input#slider::-ms-thumb {
  height: 100vw;
  width: 0.5%;
  opacity: 0;
}

.before-after-wrap input#slider::-ms-tooltip {
  display: none;
}

.before-after-wrap #compare::before {
  background: url(https://webdevtrick.com/wp-content/uploads/comparision.png) no-repeat scroll 0 center transparent;
  background-size: contain;
  content: "";
  float: right;
  height: 100%;
  margin-right: -34px;
  position: relative;
  top: 0;
  width: 64px;
}

@keyframes first {
  0% {
    width: 0%;
  }
  50% {
    width: 80%;
  }
  100% {
    width: 50%;
  }
}
@-webkit-keyframes first {
  0% {
    width: 0%;
  }
  50% {
    width: 80%;
  }
  100% {
    width: 50%;
  }
}
.before-after-wrap .before__after__common {
  position: absolute;
  color: var(--whiteColor);
  z-index: 9;
  font-size: 18px;
  bottom: 20px;
  left: 20px;
  background: var(--primaryColor);
  padding: 3px 20px;
  border-radius: 5px;
}

.before-after-wrap .before__after__common.after__class {
  right: 20px;
  left: auto;
}

.feature__2__single {
  display: flex;
  align-items: center;
}
@media (min-width: 768px) and (max-width: 991px) {
  .feature__2__single {
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .feature__2__single {
    margin-bottom: 15px;
  }
}
.feature__2__icon {
  margin-right: 20px;
  font-size: 40px;
}
.feature__2__icon img {
  width: 50px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .feature__2__icon {
    margin-right: 10px;
  }
}
.feature__2__text h4 {
  margin: 0;
  font-size: 20px;
  margin-bottom: 5px;
  font-weight: 600;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .feature__2__text h4 {
    font-size: 17px;
  }
}
@media (max-width: 767px) {
  .feature__2__text h4 {
    font-size: 16px;
  }
}
.feature__2__text p {
  font-size: 15px;
  margin: 0;
}

.feature__7__color {
  background: var(--whiteColor);
}

.feature__border {
  border: 1px solid var(--greyColor);
  display: flex;
  align-items: center;
  border-radius: 15px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.feature__border .feature__3__single {
  padding: 40px 25px 40px;
  width: 25%;
}
@media (min-width: 1500px) and (max-width: 1920px) {
  .feature__border .feature__3__single {
    padding: 40px 15px 40px;
  }
}
@media (min-width: 992px) and (max-width: 1365px) {
  .feature__border .feature__3__single {
    padding: 30px 15px 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .feature__border .feature__3__single {
    padding: 20px 10px 20px;
    width: 50%;
  }
}
@media (max-width: 767px) {
  .feature__border .feature__3__single {
    padding: 10px 10px 10px;
    width: 100%;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .feature__border .feature__3__single {
    padding: 10px 10px 10px;
    width: 50%;
  }
}

.feture__8__wraper {
  padding: 35px 22px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  border: 2px solid var(--greyColor);
  border-radius: 15px;
  margin-bottom: 20px;
  position: relative;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .feture__8__wraper {
    padding: 25px 10px 15px;
  }
}
@media (max-width: 767px) {
  .feture__8__wraper {
    padding: 25px 10px 15px;
  }
}
.feture__8__wraper:before {
  position: absolute;
  content: "";
  right: 0;
  top: 50%;
  width: 4px;
  height: 0%;
  background-color: var(--primaryColor);
  transition: all 0.5s ease 0s;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-50%);
}
.feture__8__wraper:hover {
  box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.07);
}
.feture__8__wraper:hover::before {
  height: 80%;
  opacity: 1;
  visibility: visible;
}
.feture__8__wraper--left .feture__8__text {
  text-align: left;
}
.feture__8__wraper--left .feture__8__icon {
  margin: 0 15px 0 0;
}
.feture__8__wraper--left:before {
  right: auto;
  left: 0;
}

.feture__8__text {
  text-align: right;
}
.feture__8__text h2 {
  font-size: 25px;
  margin-bottom: 12px;
  font-weight: 700;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .feture__8__text h2 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .feture__8__text h2 {
    font-size: 20px;
  }
}
.feture__8__text p {
  font-size: 14px;
}

.feture__8__icon {
  margin: 0 0 0 15px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .feture__8__icon {
    margin: 0 0 0 10px;
  }
}
.feture__8__icon svg {
  width: 50px;
  fill: var(--primaryColor);
}

@media (min-width: 768px) and (max-width: 991px) {
  .feature__8__img {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .feature__8__img {
    margin-bottom: 20px;
  }
}
.feature__8__img img {
  width: 100%;
  border-radius: 15px;
}

.category__text {
  padding: 15px 20px 5px;
}
.category__text h5 {
  font-size: 14px;
}
.category__text h5 a {
  color: var(--blackColor);
  font-weight: 600;
}
.category__single {
  text-align: center;
}
.category__img img {
  width: 100%;
  border-radius: 15px;
}

.category__single:hover .category__text a {
  color: var(--primaryColor);
}

.category__single__2 {
  margin-bottom: 30px;
}
.category__single__2:hover a {
  color: var(--primaryColor);
}

.category__text__2 h5 {
  font-size: 18px;
}
.category__text__2 h6 {
  font-weight: 400;
}

.category__img__2 img {
  width: 100%;
  border-radius: 15px;
}

.collection__2 .collection__single__2 {
  text-align: center;
}
.collection__2 .collection__single__2:hover a {
  color: var(--primaryColor);
}
.collection__2 .collection__img__2 img {
  width: 100%;
  border-radius: 15px;
}
.collection__2 .collection__text__2 {
  padding: 15px 20px 5px;
}
.collection__2 .collection__text__2 h5 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
  font-size: 18px;
}
.collection__2 .collection__text__2 h6 {
  line-height: 1.3;
  margin-bottom: 15px;
  font-weight: 400;
}

.cowndown__banner__4 {
  position: relative;
}

.coundown__img__4 .coundown__img__1 {
  position: absolute;
  left: -80px;
  top: -150px;
}
@media (min-width: 1366px) and (max-width: 1499px) {
  .coundown__img__4 .coundown__img__1 {
    left: -180px;
    top: -180px;
  }
}
@media (min-width: 992px) and (max-width: 1365px) {
  .coundown__img__4 .coundown__img__1 {
    left: -170px;
    top: -60px;
    width: 60%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .coundown__img__4 .coundown__img__1 {
    left: -60px;
    top: 0;
    width: 30%;
  }
}
@media (max-width: 767px) {
  .coundown__img__4 .coundown__img__1 {
    left: -20px;
    top: -30px;
    width: 30%;
  }
}
.coundown__img__4 .coundown__img__2 {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 500px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .coundown__img__4 .coundown__img__2 {
    right: -150px;
    bottom: -40px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .coundown__img__4 .coundown__img__2 {
    max-width: 200px;
  }
}
@media (max-width: 767px) {
  .coundown__img__4 .coundown__img__2 {
    max-width: 100px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .coundown__img__4 .coundown__img__2 {
    max-width: 150px;
  }
}

.cowndown__banner__cowndown {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.cowndown__banner__cowndown .count {
  background: var(--whiteColor);
  margin-right: 10px;
  padding: 10px;
  border-radius: 5px;
  min-width: 80px;
}
@media (max-width: 767px) {
  .cowndown__banner__cowndown .count {
    min-width: 70px;
  }
}
.cowndown__banner__cowndown .count p {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
  font-family: var(--headingFont);
  font-weight: 600;
}
@media (max-width: 767px) {
  .cowndown__banner__cowndown .count p {
    margin-bottom: 2px;
  }
}
.cowndown__banner__cowndown .count span {
  margin: 0;
}

.cowndown__banner__button {
  margin-top: 30px;
}

.cowndown__banner {
  background-color: var(--greyColor);
}
@media (min-width: 768px) and (max-width: 991px) {
  .cowndown__banner {
    padding-top: 80px;
  }
}
@media (max-width: 767px) {
  .cowndown__banner {
    padding-top: 50px;
  }
}
.cowndown__banner__title h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--greywhite);
}
.cowndown__banner__title h2 {
  font-size: 50px;
  margin-bottom: 15px;
  line-height: 1;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .cowndown__banner__title h2 {
    font-size: 40px;
    margin-bottom: 10px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cowndown__banner__title h2 {
    font-size: 40px;
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .cowndown__banner__title h2 {
    font-size: 29px;
    margin-bottom: 10px;
  }
}
.cowndown__banner__title h2 span {
  color: var(--primaryColor);
}
.cowndown__banner__title h2 span.home__span__6 {
  color: var(--green);
}
.cowndown__banner__inner {
  text-align: center;
}
.cowndown__banner__inner h3 {
  color: var(--primaryColor);
}
.cowndown__banner__img img {
  width: 100%;
}

.newslatter__inner h2 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 15px;
  font-size: 30px;
}
.newslatter__inner p {
  margin-bottom: 15px;
}
.newslatter__inner__wrap {
  padding-top: 50px;
  padding-bottom: 60px;
  margin-top: 0px;
  background: var(--greyColor);
  border-radius: 15px;
}
.newslatter__input {
  position: relative;
}
.newslatter__input input {
  border: none;
  background: none;
  background-color: var(--whiteColor);
  border-color: var(--greyColor);
  height: 65px;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding-left: 20px;
  font-size: 16px;
  width: 100%;
  border-radius: 5px;
}
.newslatter button {
  height: 65px;
  border-radius: 0 5px 5px 0;
  position: absolute;
  right: 0;
}

.newslatter__2 {
  background: #fcf7eb;
  padding-top: 50px;
}

.newslatter__8 {
  background: var(--greyColor);
  padding-top: 60px;
  padding-bottom: 60px;
  border-radius: 15px;
}

.testimonial .testimonial__color {
  background: var(--greyColor);
  border-radius: 15px;
}
.testimonial__padding {
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  padding-top: 45px;
  padding-bottom: 55px;
}
.testimonial__info p {
  font-size: 28px;
  margin-bottom: 48px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .testimonial__info p {
    font-size: 21px;
    margin-bottom: 35px;
  }
}
@media (max-width: 767px) {
  .testimonial__info p {
    font-size: 17px;
    margin-bottom: 20px;
  }
}
.testimonial__info h4 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
  font-size: 20px;
}

.testimonial__img {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .testimonial__img {
    margin-bottom: 20px;
  }
}
.testimonial__img i {
  font-size: 30px;
  color: var(--primaryColor);
}

.testimonial__2 {
  background: var(--greyColor);
}

.featurearea__single__thumb__img img {
  cursor: pointer;
  border: 1px solid var(--borderColor);
  border-radius: var(--borderRadius);
  padding: 3px;
}

.featurearea__single__big__img img {
  width: 100%;
  border-radius: 10px;
}

.featurearea__details__img {
  position: sticky;
  margin-bottom: 0;
  top: 90px;
}
.featurearea__img img {
  width: 100%;
}
.featurearea__thumb__img {
  margin-top: 10px;
  margin-left: -5px;
  margin-right: -5px;
}
.featurearea__thumb__img.slider__default__arrow .slick-arrow {
  width: 35px;
  height: 35px;
  line-height: 35px;
  font-size: 13px;
  left: 5px;
  opacity: 1;
  bottom: -65px;
  top: auto;
}
.featurearea__thumb__img.slider__default__arrow .slick-arrow.next_class {
  left: 45px;
}
.featurearea__single__big__img img {
  width: 100%;
}
.featurearea__single__thumb__img {
  padding: 0 5px;
}
.featurearea__single__thumb__img img {
  width: 100%;
}

@media (min-width: 768px) and (max-width: 991px) {
  .single__product__wrap {
    margin-top: 70px;
  }
}
@media (max-width: 767px) {
  .single__product__wrap {
    margin-top: 70px;
  }
}

.single__product {
  margin-top: 30px;
}
.single__product .single__product__wrap__2 {
  text-align: center !important;
}
.single__product__heding h2 {
  font-size: 24px;
  margin: 0 0 0;
  line-height: 1;
  font-weight: 600;
}
.single__product__icon a {
  font-size: 18px;
  margin-right: 15px;
}
.single__product__price {
  margin: 15px 0;
}
.single__product__price span {
  font-size: 30px;
  color: var(--blackColor);
  font-weight: 700;
}
.single__product__price label {
  background: var(--borderColor);
  padding: 5px;
  line-height: 1;
  font-weight: 600;
  border-radius: var(--borderRadius);
  font-size: 14px;
}
.single__product__eye {
  padding: 20px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;
}
.single__product__eye img {
  height: 30px;
  margin-right: 10px;
  padding-bottom: 0px;
}
.single__product__eye span strong {
  font-weight: 700;
}
.single__product__description {
  margin-bottom: 30px;
}
.single__product__description p {
  margin: 0;
}
.single__product__size {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.single__product__size h6 {
  margin: 0;
  font-weight: 700;
}
.single__product__size ul {
  margin-left: 14px;
}
.single__product__size ul li {
  margin-right: 10px;
}
.single__product__size ul li a {
  background-color: #f1f2f6;
  color: #000;
  display: inline-block;
  font-size: 12px;
  line-height: 30px;
  text-transform: uppercase;
  height: 30px;
  width: 30px;
  text-align: center;
  border-radius: 5px;
}
.single__product__size ul li a:hover {
  background: var(--primaryColor);
  color: var(--whiteColor);
}
.single__product__swatch {
  margin-top: 20px;
}
.single__product__swatch .header {
  font-weight: 700;
  margin-right: 40px;
}
.single__product__swatch button {
  height: 30px !important;
  width: 30px !important;
  border-radius: 5px !important;
  margin-right: 10px;
  border: none;
}
.single__product__quantity {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.single__product__quantity .qty-container {
  display: flex;
  border: 1px solid rgba(31, 34, 38, 0.1);
  height: 60px;
  margin-right: 10px;
  width: 126px;
}
.single__product__quantity .qty-container button {
  border: none;
  background: none;
  font-size: 25px;
  padding: 0 10px;
}
.single__product__quantity .qty-container input {
  width: 100%;
  border: none;
  text-align: center;
}
.single__product__quantity .default__button {
  height: 60px;
  line-height: 60px;
  margin: 0 5px;
  padding: 0 50px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .single__product__quantity .default__button {
    padding: 0 30px;
  }
}
.single__product__quantity .default__button.black__button {
  background: var(--blackColor);
  border-color: var(--blackColor);
}
.single__product__button {
  color: var(--whiteColor);
  font-size: 14px;
  text-transform: uppercase;
  background-color: #1f2226;
  display: inline-block;
  line-height: 1;
  padding: 23px 38px;
  z-index: 99;
  box-shadow: 10px 25px 80px rgba(150, 150, 150, 0.1490196078);
}
.single__product__button:hover {
  background: var(--primaryColor);
  color: var(--whiteColor);
}
.single__product__icon {
  margin-left: 25px;
}
.single__product__icon i {
  font-size: 18px;
}
.single__product__icon i:hover {
  color: var(--primaryColor);
}
.single__product__bottom__button {
  padding: 23px 38px;
  border-radius: 0;
  background-color: #1f2226;
  font-size: 16px;
  box-shadow: 10px 25px 80px rgba(150, 150, 150, 0.15);
  line-height: 1;
  height: auto;
  max-width: 340px;
  margin-bottom: 20px;
  transition: 0.3s;
  text-align: center;
}
.single__product__bottom__button.slider__button {
  margin: 0 auto;
}
.single__product__bottom__button a {
  color: var(--whiteColor);
}
.single__product__bottom__button:hover {
  background: var(--primaryColor);
  color: var(--whiteColor);
}
.single__product__information {
  margin-bottom: 20px;
}
.single__product__information ul li {
  margin-right: 30px;
  margin-top: 10px;
}
.single__product__information ul li a {
  font-weight: 300;
}
.single__product__information ul li a i {
  margin-right: 8px;
}
.single__product__delivery__area {
  padding: 10px 0;
  border-top: 1px solid var(--borderColor);
  border-bottom: 1px solid var(--borderColor);
  margin-bottom: 10px;
}
.single__product__delivery__area p {
  font-size: 16px;
  margin: 0;
}
.single__product__delivery__area p img {
  height: 25px;
  float: left;
  margin-right: 10px;
  padding-bottom: 0px;
}
.single__product__delivery__area p strong {
  font-weight: 700;
}
.single__product__text {
  margin-top: 20px;
}
.single__product__text h5 {
  font-size: 20px;
}
.single__product__text h5 strong {
  font-weight: 700;
}
.single__product__text ul li {
  display: block;
  margin-top: 5px;
  position: relative;
  padding-left: 20px;
}
.single__product__text ul li:before {
  position: absolute;
  content: "";
  height: 5px;
  width: 5px;
  background: var(--blackColor);
  border-radius: 100%;
  top: 10px;
  left: 0;
}
.single__product__meta {
  display: flex;
  margin: 0;
  padding-top: 15px;
  align-items: center;
}
.single__product__meta span {
  font-size: 16px;
  margin-right: 5px;
  font-weight: 700;
}
.single__product__meta ul li {
  margin: 0 3px 0 0;
}
.single__product__payment__img ul li {
  margin-right: 2px;
}
.single__product__single__text p {
  margin-bottom: 5px;
}
.single__product__slider__active .small__grid__2 {
  border: 1px solid #eee;
  display: flex;
  align-items: center;
  box-shadow: none;
  margin-right: 30px;
}
.single__product__slider__active .small__grid__2 .small__grid__img {
  max-width: 30%;
}
.single__product__slider__active .small__grid__2 .small__grid__content {
  max-width: 70%;
}
.single__product__slider__active .small__grid__2 .small__grid__add__to__cart {
  margin-top: 10px;
}
.single__product__slider__active .small__grid__2 .small__grid__add__to__cart a {
  display: inline-block;
}
.single__product__complementary {
  margin-top: 15px;
  margin-bottom: 10px;
}

.single__product__bottom__menu {
  margin-top: 15px;
}
.single__product__bottom__menu ul li {
  list-style: none;
  display: inline-block;
  margin-right: 20px;
  font-size: 14px;
  font-weight: 600;
}

.single__product__car img {
  margin-right: 10px;
}

.single__return__menu h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 15px;
}
.single__return__menu ul {
  margin: 0 0 15px 20px;
}
.single__return__menu ul li {
  display: block;
  position: relative;
}
.single__return__menu ul li::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  background: var(--blackColor);
  border-radius: 50%;
  left: -15px;
  top: 11px;
}

.single__social__media ul li {
  margin-right: 15px;
}
.single__social__media ul li a i {
  margin-right: 3px;
}

.single__return__checkout h5 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 15px;
}

.single__product__pairs h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 15px;
  font-size: 16px;
}

.single__product__contact__text h2 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 15px;
  font-size: 30px;
}
.single__product__contact__text h3 {
  font-size: 24px;
  font-weight: 600;
}

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

.single__product__special__feature ul li {
  display: block;
  font-size: 14px;
  margin-top: 10px;
}
.single__product__special__feature ul li strong {
  margin-right: 5px;
  min-width: 100px;
  display: inline-block;
}

.single__product__modal {
  top: 135px;
}
.single__product__modal.single__product__modal__3 .modal-dialog {
  max-width: 500px;
}
.single__product__modal.single__product__modal__3 .modal-body input {
  width: 100%;
  margin-bottom: 40px;
  height: 45px;
  padding-left: 10px;
}
.single__product__modal.single__product__modal__3 .modal-body textarea {
  height: 100px;
  width: 100%;
  padding-left: 10px;
}
.single__product__modal.single__product__modal__3 .modal-body button {
  font-size: 14px;
  padding: 10px 45px;
  border: 1px solid var(--blackColor);
  background: var(--blackColor);
  color: var(--whiteColor);
}
.single__product__modal .modal-dialog {
  max-width: 960px;
}
.single__product__modal .modal-body {
  padding: 35px 15px;
}

.single__product__table table {
  width: 100%;
}
.single__product__table table tbody tr th {
  padding: 8px 10px;
  background: var(--blackColor);
  color: var(--whiteColor);
  font-weight: 600;
  border: 1px solid var(--borderColor);
}
.single__product__table table tbody tr td {
  padding: 8px 10px;
  border: 1px solid var(--borderColor);
}

.gallery__img {
  margin-bottom: 30px;
}
.gallery__img img {
  width: 100%;
  border: 1px solid var(--borderColor);
}

.descriptionarea__tab__wrapper {
  border: 1px solid var(--borderColor);
  padding: 30px 30px 37px;
}
.descriptionarea__link {
  font-size: 18px;
  text-transform: capitalize;
  line-height: 1;
  position: relative;
  padding: 0 0 10px;
  margin: 0 32px 15px 0;
  border: none;
  background: none;
  font-weight: 600;
}
.descriptionarea__link.active {
  color: var(--primaryColor);
}
.descriptionarea__link.active:after {
  width: 100%;
}
.descriptionarea__link:hover {
  color: var(--primaryColor);
}
.descriptionarea__link:hover:after {
  width: 100%;
}
.descriptionarea__link:after {
  content: "";
  height: 2px;
  left: 0;
  width: 0;
  position: absolute;
  -webkit-transition: width 0.3s ease-out;
  -o-transition: width 0.3s ease-out;
  transition: width 0.3s ease-out;
  background-color: var(--primaryColor);
  bottom: 0;
}

.faq__2__inner {
  background: #fffafa;
  padding: 90px 60px;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .faq__2__inner {
    padding: 20px 20px;
  }
}
.faq__2__left {
  margin-right: 100px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .faq__2__left {
    margin-right: 0px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .faq__2__left {
    margin-right: 0px;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .faq__2__left {
    margin-right: 0px;
    margin-bottom: 20px;
  }
}
.faq__2__left h3 {
  color: var(--primaryColor);
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 30px;
  margin: 0 0 15px;
}
@media (max-width: 767px) {
  .faq__2__left h3 {
    font-size: 20px;
  }
}
.faq__2__left h2 {
  color: var(--blackColor);
  font-style: normal;
  font-weight: 600;
  font-size: 55px;
  line-height: 60px;
  margin: 0 0 20px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .faq__2__left h2 {
    font-size: 50px;
    margin: 0 0 10px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .faq__2__left h2 {
    font-size: 50px;
    margin: 0 0 10px;
  }
}
@media (max-width: 767px) {
  .faq__2__left h2 {
    font-size: 40px;
    margin: 0 0 10px;
    line-height: 55px;
  }
}
.faq__2__left p {
  color: var(--darkgrey3);
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  margin: 0 0 15px;
  line-height: 28px;
}

.grid__single__produce__button a {
  border: 1px solid var(--borderColor);
  height: 45px;
  line-height: 43px;
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 0;
  background: var(--whiteColor);
  border-radius: 5px;
  margin-top: 10px;
}
.grid__single__produce__button a:hover {
  background: var(--primaryColor);
  color: var(--whiteColor);
}

@media (min-width: 992px) and (max-width: 1365px) {
  .single__product__grid .grid__wraper__tittle {
    font-size: 14px;
  }
  .single__product__grid .grid__wraper__info {
    padding: 10px 0 0;
  }
  .single__product__grid .grid__wraper {
    margin-bottom: 0;
  }
  .grid__wraper__quickview a {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .single__product__quantity .default__button {
    padding: 0 10px;
    height: 40px;
    line-height: 40px;
    margin: 0 3px;
  }
  .single__product__quantity .qty-container button {
    font-size: 20px;
    padding: 0 10px;
  }
  .single__product__quantity .qty-container {
    height: 40px;
    width: 90px;
    margin-right: 4px;
  }
  .single__product__quantity {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .descriptionarea__link {
    font-size: 16px;
    margin: 0 15px 15px 0;
  }
  .descriptionarea__tab__wrapper {
    padding: 20px 20px 27px;
  }
  .tab__content__wrapper p {
    font-size: 14px;
  }
}
.service__single {
  margin-bottom: 30px;
  padding: 40px 30px 35px;
  border: 1px solid var(--greyColor);
  border-radius: 15px;
  transition: 0.3s;
  text-align: center;
}
.service__single:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.service__text h3 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 15px;
  font-size: 24px;
}
.service__text p {
  font-size: 14px;
}
.service__img {
  margin-bottom: 20px;
}
.service__button {
  font-weight: 700;
  font-size: 14px;
}

.sidebar__widget {
  border-bottom: 1px solid var(--greyColor);
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.sidebar__widget.widget-collapse-show .sidebar__menu {
  display: block;
  visibility: visible;
}
.sidebar__widget.widget-collapse-show .sidebar__title i {
  transform: rotate(180deg);
}
.sidebar__title {
  position: relative;
}
.sidebar__title h4 {
  font-size: 20px;
  font-weight: 600;
}
.sidebar__title i {
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
}
.sidebar__menu {
  max-height: 350px;
  overflow-y: auto;
  display: none;
  visibility: hidden;
  transition: 0.3s;
}
.sidebar__menu ul li {
  display: block;
  margin-bottom: 15px;
}
.sidebar__menu ul li a {
  font-size: 14px;
}
.sidebar__menu ul li a span {
  opacity: 0.6;
}
.sidebar__box input {
  margin-right: 5px;
}

.shop__tab ul li button {
  font-size: 30px;
  margin-right: 20px;
  border: none;
  background: none;
}
@media (min-width: 768px) and (max-width: 991px) {
  .shop__tab ul li button {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .shop__tab ul li button {
    font-size: 20px;
  }
}
.shop__tab ul li button.active {
  color: var(--primaryColor);
}
.shop__right__wraper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.shop__selecte select {
  border-radius: 5px;
  border: 1px solid var(--greyColor);
  height: 50px;
  line-height: 46px;
  min-width: 190px;
  padding-left: 18px;
  padding-right: 30px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .shop__selecte select {
    min-width: 100px;
    max-width: 130px;
  }
}
@media (max-width: 767px) {
  .shop__selecte select {
    min-width: 100px;
    max-width: 130px;
  }
}
.shop__number {
  font-size: 20px;
  font-family: var(--headingFont);
}
@media (min-width: 768px) and (max-width: 991px) {
  .shop__number {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .shop__number {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .sidebar-collapse-hide {
    display: none;
    margin-top: 30px;
  }
}

.default__button.sidebar-collapse-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
.default__button.sidebar-collapse-btn svg {
  color: var(--whiteColor);
  fill: var(--whiteColor);
  margin-right: 5px;
}
.default__button.sidebar-collapse-btn:hover svg {
  color: var(--blackColor);
  fill: var(--blackColor);
}

@media (min-width: 1366px) and (max-width: 1499px) {
  .loginarea {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) and (max-width: 1365px) {
  .loginarea {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .loginarea {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .loginarea {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media (min-width: 992px) and (max-width: 1365px) {
  .loginarea__col {
    margin-left: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .loginarea__col {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .loginarea__col {
    margin-left: 0;
  }
}
.loginarea .tab__button__wrap li.nav-item {
  width: 50%;
}
.loginarea__wraper {
  padding: 31px 50px 50px;
  border-radius: 5px;
  box-shadow: 0px 30px 40px 0px rgba(1, 11, 60, 0.06);
}
@media (max-width: 767px) {
  .loginarea__wraper {
    padding: 10px 20px 40px;
  }
}
.loginarea__heading {
  text-align: center;
}
.loginarea__heading .login__title {
  font-size: 32px;
  line-height: 1.5;
  margin: 0 0 8px;
}
.loginarea__heading .login__description a {
  position: relative;
}
.loginarea__heading .login__description a:after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: var(--primaryColor);
  bottom: 0;
  left: 0;
  transition: var(--transition);
}
.loginarea__heading .login__description a:hover {
  color: var(--primaryColor);
}
.loginarea__heading .login__description a:hover:after {
  width: 100%;
}
.loginarea form .loginarea__form {
  margin-top: 25px;
}
.loginarea form .loginarea__form label {
  display: block;
  margin-bottom: 10px;
}
.loginarea form .loginarea__form .common__login__input {
  background-color: var(--borderColor);
  border: 1px solid var(--borderColor);
  font-size: 14px;
  font-weight: 400;
  height: 52px;
  padding: 3px 20px;
  width: 100%;
  border-radius: 5px;
}
.loginarea form .loginarea__form .form__check {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.loginarea form .loginarea__form .form__check label {
  margin: 0;
  padding-left: 5px;
}
.loginarea form .loginarea__form .login__form__link a {
  position: relative;
}
.loginarea form .loginarea__form .login__form__link a:after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: var(--primaryColor);
  bottom: 0;
  left: 0;
  transition: var(--transition);
}
.loginarea form .loginarea__form .login__form__link a:hover {
  color: var(--primaryColor);
}
.loginarea form .loginarea__form .login__form__link a:hover:after {
  width: 100%;
}
.loginarea__button {
  margin-top: 25px;
}
.loginarea__button a {
  width: 100%;
}
.loginarea__social__btn {
  margin-top: 25px;
  text-align: center;
}
.loginarea__social__btn .login__social__btn li a {
  padding: 10px 44px;
}
.loginarea__social__btn .login__social__btn li .login__button__1 {
  margin-right: 20px;
}
@media (max-width: 767px) {
  .loginarea__social__btn .login__social__btn li .login__button__1 {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.tab__button__wrap {
  margin-bottom: 50px;
}
.tab__button__wrap li {
  padding-right: 11px;
}
.tab__button__wrap li button {
  border: none;
  padding: 18px 0;
  background: #F3F4FD;
  margin-right: 11px;
  font-size: 22px;
  font-weight: 600;
  font-family: "Hind", sans-serif;
  color: #000000;
  width: 100%;
  border-radius: 4px;
  position: relative;
  transition: 0.3s;
}
.tab__button__wrap li button.active {
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.05);
  background: #ffffff;
}

.registerarea__form__container {
  background: var(--borderColor) none repeat scroll 0 0;
  padding: 37px 40px;
  text-align: left;
  overflow: hidden;
}
.registerarea__text {
  text-align: center;
  margin-bottom: 30px;
}
.registerarea__text h2 {
  color: var(--blackColor);
  font-size: 30px;
  margin-bottom: 5px;
}
.registerarea__text p {
  font-size: 15px;
}
.registerarea__form form label {
  color: var(--blackColor);
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 10px;
  padding-left: 5px;
}
.registerarea__form form input {
  background: var(--whiteColor) none repeat scroll 0 0;
  border: medium none transparent;
  border-radius: 0;
  box-shadow: none;
  color: var(--blackColor);
  font-size: 14px;
  height: 40px;
  margin-bottom: 20px;
  padding-left: 10px;
  width: 100%;
}
.registerarea__button button {
  background-color: #000;
  border: medium none;
  color: var(--whiteColor);
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  height: 40px;
  line-height: 24px;
  margin-bottom: 0;
  padding: 8px 25px;
  border-radius: 0;
  text-align: center;
  transition: 0.3s;
}
.registerarea__button button:hover {
  background: var(--primaryColor);
  color: var(--whiteColor);
}
.registerarea__account__optional__action {
  margin-top: 20px;
}

@media (min-width: 1366px) and (max-width: 1499px) {
  .checkoutarea {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) and (max-width: 1365px) {
  .checkoutarea {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .checkoutarea {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .checkoutarea {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.checkoutarea__billing__heading h2 {
  border-bottom: 1px solid var(--borderColor);
  color: var(--blackColor);
  font-size: 20px;
  margin-bottom: 20px;
  padding-bottom: 10px;
}
.checkoutarea__inputbox input {
  background: transparent;
  border: 1px solid var(--borderColor);
  color: var(--darkgrey2);
  font-size: 14px;
  height: 50px;
  line-height: 50px;
  vertical-align: middle;
  width: 100%;
  padding: 0 20px;
  margin-bottom: 20px;
}
.checkoutarea__payment__wraper {
  background: var(--greyColor) none repeat scroll 0 0;
  padding: 35px;
}
.checkoutarea__total h3 {
  font-size: 24px;
  margin-bottom: 15px;
  text-transform: capitalize;
}
.checkoutarea__table {
  width: 100%;
}
.checkoutarea__item {
  border-top: 1px solid var(--borderColor2);
}
.checkoutarea__item td {
  border-style: solid none none;
  border-width: 1px medium medium;
  padding: 15px;
  text-transform: uppercase;
}
.checkoutarea__payment__input__box {
  margin-top: 30px;
}
.checkoutarea__payment__input__box a {
  padding: 10px 40px;
}

.checkoutarea__shipp input {
  cursor: pointer;
}
.checkoutarea__shipp label {
  cursor: pointer;
}

.checkoutarea__payment__type input {
  cursor: pointer;
}
.checkoutarea__payment__type label {
  cursor: pointer;
}

.cartarea__table__content table {
  border: 1px solid var(--borderColor);
  width: 100%;
}
.cartarea__table__content table thead tr {
  background-color: var(--greyColor);
  border: 1px solid var(--borderColor);
}
.cartarea__table__content table thead tr th {
  border-top: medium none;
  font-size: 14px;
  font-weight: 600;
  padding: 21px 45px 22px;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}
@media (min-width: 768px) and (max-width: 991px) {
  .cartarea__table__content table thead tr th {
    padding: 21px 15px 22px;
  }
}
@media (max-width: 767px) {
  .cartarea__table__content table thead tr th {
    padding: 21px 5px 22px;
  }
}
.cartarea__table__content table tbody tr {
  border-bottom: 1px solid var(--borderColor);
}
.cartarea__table__content table tbody tr td {
  font-size: 16px;
  text-align: center;
  min-width: 150px;
  border: 1px solid var(--borderColor);
  padding: 15px;
}
@media (max-width: 767px) {
  .cartarea__table__content table tbody tr td {
    font-size: 14px;
  }
}
.cartarea__table__content table tbody tr td a svg {
  width: 25px;
}
.cartarea__product__name {
  width: 435px;
}
.cartarea__product__quantity {
  width: 435px;
}
.cartarea__plus__minus {
  display: inline-block;
  height: 40px;
  padding: 0;
  position: relative;
  width: 110px;
  border: 1px solid var(--borderColor2);
  overflow: hidden;
}
.cartarea__plus__minus .qtybutton {
  color: #333;
  cursor: pointer;
  float: inherit;
  font-size: 16px;
  margin: 0;
  position: absolute;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 20px;
  text-align: center;
}
.cartarea__plus__minus .qtybutton.dec {
  border-right: 1px solid var(--borderColor2);
  height: 40px;
  left: 0;
  padding-top: 8px;
  top: 0;
}
.cartarea__plus__minus .qtybutton.inc {
  border-left: 1px solid var(--borderColor2);
  height: 40px;
  padding-top: 9px;
  right: 0;
  top: 0;
}
.cartarea__plus__minus__box {
  color: #333;
  float: left;
  font-size: 14px;
  height: 40px;
  margin: 0;
  width: 110px;
  background: transparent none repeat scroll 0 0;
  border: 1px solid var(--borderColor2);
  padding: 0;
  text-align: center;
}
.cartarea__product__thumbnail a img {
  width: 100%;
  max-width: 100px;
}
.cartarea__shiping__update__wrapper {
  padding: 30px 0 55px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cartarea__shiping__update__wrapper {
    padding: 30px 0;
  }
}
@media (max-width: 767px) {
  .cartarea__shiping__update__wrapper > * {
    margin: 5px 0;
  }
}
.cartarea__tax {
  background-color: var(--greyColor);
  border: 1px solid var(--borderColor);
  border-radius: 5px;
  padding: 45px 30px 50px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .cartarea__tax {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .cartarea__tax {
    margin-bottom: 30px;
  }
}
.cartarea__title {
  position: relative;
}
.cartarea__title h4 {
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  padding-right: 18px;
  position: relative;
  z-index: 99;
}
.cartarea__text {
  margin-top: 22px;
}
.cartarea__tax__select {
  margin-bottom: 20px;
}
.cartarea__tax__select select {
  box-shadow: none;
  font-size: 12px;
  height: 40px;
  padding: 0 50px 0 15px;
  width: 100%;
  cursor: pointer;
}
.cartarea__code {
  margin-bottom: 20px;
}
.cartarea__code input {
  box-shadow: none;
  font-size: 12px;
  height: 40px;
  padding: 0 50px 0 15px;
  width: 100%;
  cursor: pointer;
  border: 1px solid var(--borderColor2);
}
.cartarea__discount__code {
  margin: 21px 0 0;
}
.cartarea__discount__code textarea {
  border: 1px solid var(--borderColor2);
  background: var(--whiteColor);
  width: 100%;
  height: 100px;
}
.cartarea__grand__totall h5 {
  font-size: 14px;
  margin: 36px 0 27px;
}
.cartarea__grand__totall h5 span {
  float: right;
  font-size: 18px;
  font-weight: 500;
}

.cartarea__product__quantity .featurearea__quantity {
  justify-content: center;
  margin: 0;
}
.cartarea__product__quantity .featurearea__quantity .qty-container {
  border: 1px solid var(--borderColor);
  margin-right: 0;
}

.featurearea__quantity .qty-container button {
  border: none;
}

.headertopbar__2 {
  background: var(--blackColor);
}

.headertopbar__7 {
  background: linear-gradient(310deg, rgb(17, 189, 251) 15%, rgb(33, 249, 150) 85%);
  padding: 2px 0;
}

.headertopbar__animate {
  display: flex;
  white-space: nowrap;
  position: relative;
  will-change: transform;
  animation: marquee 20s linear 0s infinite normal;
  animation-play-state: running;
  padding: 3px 0;
}
.headertopbar__animate .header__animate__item {
  padding: 0 15px;
}
.headertopbar__animate .header__animate__item p {
  color: var(--whiteColor);
  font-size: 14px;
  margin-bottom: 0;
  position: relative;
  padding-left: 20px;
  margin: 0;
}
.headertopbar__animate .header__animate__item p:before {
  position: absolute;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--whiteColor);
  content: "";
  top: 50%;
  transform: translate(-50%);
  margin-top: -5px;
}

.footer {
  background: var(--greyColor);
}
.footer__title {
  font-size: 20px;
  margin-bottom: 25px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .footer__title {
    margin-bottom: 15px;
    font-size: 18px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer__widget {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .footer__widget {
    margin-bottom: 30px;
  }
}
.footer__widget .footer__text p {
  width: 100%;
  margin-bottom: 25px;
}
.footer__content p {
  margin: 0;
  margin-bottom: 15px;
  max-width: 72%;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .footer__content p {
    max-width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer__content p {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .footer__content p {
    max-width: 100%;
  }
}
.footer__social__icon ul li {
  margin-right: 15px;
}
.footer__bottom {
  margin-top: 20px;
}
.footer__bottom h5 {
  line-height: 1.3;
  margin-bottom: 10px;
  font-size: 18px;
}
.footer__img ul li {
  padding: 2px;
}
.footer__menu ul li {
  display: block;
  margin-bottom: 5px;
}
.footer__menu ul li a {
  font-size: 14px;
}

.footer__input {
  position: relative;
  margin-bottom: 30px;
}
.footer__input input {
  height: 65px;
  background-color: var(--whiteColor);
  border: 1px solid var(--whiteColor);
  padding-left: 20px;
  font-size: 16px;
  width: 100%;
  border-radius: var(--borderRadius);
}
.footer__input button {
  height: 65px;
  padding: 0 18px;
  border-radius: 0 5px 5px 0;
  position: absolute;
  right: 0;
  top: 0;
  border: none;
  background: var(--primaryColor);
  color: var(--whiteColor);
}
.footer__input button:hover {
  background: var(--blackColor);
  color: var(--whiteColor);
}

.footer__input__4 button {
  background: var(--greywhite);
}

.footer__middle .footer__logo {
  display: flex;
  align-items: center;
  white-space: nowrap;
  justify-content: center;
  margin-bottom: 20px;
}

.footer__address ul li {
  display: block;
}

.footer__2 {
  background: #fcf7eb no-repeat scroll center center/cover;
}

.footer__input__5 button {
  background: var(--yellow2);
}

.footer__social__icon {
  margin-top: 15px;
}

.copyright {
  border-top: 1px solid #dcdcdc;
  border-bottom: 1px solid #dcdcdc;
  padding-top: 20px;
  padding-bottom: 20px;
}
.copyright__text p {
  margin: 0;
}

.copyright__menu {
  text-align: right;
}
@media (min-width: 768px) and (max-width: 991px) {
  .copyright__menu {
    text-align: start;
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  .copyright__menu {
    text-align: start;
    margin-top: 10px;
  }
}
.copyright__menu ul li {
  font-size: 16px;
  font-weight: 400;
  list-style: none;
  display: inline-block;
  margin-top: 0;
  margin-right: 20px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .copyright__menu ul li {
    font-size: 13px;
    margin-right: 10px;
  }
}
@media (max-width: 767px) {
  .copyright__menu ul li {
    font-size: 14px;
    margin-right: 10px;
  }
}
.copyright__menu ul li:last-child {
  margin-right: 0;
}

.layout__2 .footer__title {
  font-weight: 700;
}

.is_dark .headerarea__has__dropdown span {
  color: var(--blackColor);
}
.is_dark .header__topbar {
  background-color: var(--greyColor2);
}
.is_dark .header__topbar .header__topbar__left ul li {
  color: var(--blackColor);
}
.is_dark .header__topbar .header__topbar__language__wraper span {
  color: var(--blackColor);
}
.is_dark .header__topbar .header__topbar__language__inner ul li a i {
  color: var(--blackColor);
}
.is_dark .header__topbar .header__topbar__social__icon ul li a {
  color: var(--blackColor);
}
.is_dark .header__topbar__language {
  color: var(--blackColor);
}
.is_dark .minicart__close__btn {
  color: var(--blackColor);
}
.is_dark .minicart__single .minicart__single__img .minicart__single__close button {
  background: var(--blackColor);
}
.is_dark .setting__wrap__close {
  color: var(--blackColor);
}
.is_dark .headersearch__active__input button {
  color: var(--blackColor);
}
.is_dark .headersearch__active__close {
  color: var(--blackColor);
}
.is_dark .headersearch__active__input input {
  color: var(--blackColor);
}
.is_dark .herobanner__inner {
  background-color: var(--greyColor2);
}
.is_dark .mobile-off-canvas-active .header-mobile-aside-wrap .mobile-search form input {
  background-color: #332b2b;
  color: var(--blackColor);
}
.is_dark .mobile-off-canvas-active .header-mobile-aside-wrap .mobile-social-wrap a {
  background: #332b2b;
}
.is_dark .mobile-off-canvas-active .mobile-aside-close {
  color: var(--blackColor);
}
.is_dark .best__selling .best__selling__tab ul li button {
  color: var(--blackColor);
}
.is_dark .best__selling .best__selling__tab ul li button.active {
  color: var(--primaryColor);
}
.is_dark .footer__inner {
  background-color: var(--greyColor2);
}
.is_dark .herobanner__2 {
  background-color: var(--greyColor2);
}
.is_dark .feature__border {
  border: 1px solid #333333;
}
.is_dark .testimonial__2 {
  background-color: var(--greyColor2);
}
.is_dark .footer__2 {
  background-color: var(--greyColor2);
}
.is_dark .newslatter__2 {
  background-color: var(--whiteColor);
}
.is_dark .footer__inner {
  background-color: var(--greyColor2);
}
.is_dark .small__grid__wraper {
  border: 1px solid #333333;
}
.is_dark .copyright {
  background-color: #1a1a1a;
  border-color: #1a1a1a;
}
.is_dark .herobanner__8 {
  background: var(--whiteColor);
}
.is_dark .loginarea__wraper {
  background-color: var(--greyColor2);
}
.is_dark .blog__sidebar {
  border-bottom: 1px solid #333333;
}
.is_dark .registerarea__form__container {
  background-color: var(--greyColor2);
}
.is_dark .descriptionarea__tab__button li button {
  color: var(--blackColor);
}
.is_dark .single__product__button {
  background: var(--blackColor);
}
.is_dark .single__product__bottom__button {
  background: var(--blackColor);
}
.is_dark .herobanner__title {
  color: var(--whiteColor);
}
.is_dark .herobanner__text p {
  color: var(--whiteColor);
}
.is_dark .herobanner__title__color {
  color: var(--blackColor);
}
.is_dark .herobanner__text__color p {
  color: var(--blackColor);
}
.is_dark .default__button {
  color: var(--blackColor);
}
.is_dark .herobanner__small__title {
  color: var(--whiteColor);
}
.is_dark .modal-content {
  background-color: #333333;
}
.is_dark .featurearea__quantity .qty-container button {
  color: var(--blackColor);
}
.is_dark .qty-container input {
  background: #333333;
  color: var(--blackColor);
}
.is_dark .slider__default__arrow--2 .slick-arrow {
  background: var(--whiteColor);
}
.is_dark .slider__default__arrow--2 .slick-arrow:hover {
  color: var(--blackColor);
}/*# sourceMappingURL=style.css.map */
.nowrap {
  white-space: nowrap;
}
h3.line {
  font-size: 48px;
  text-align: center;
  margin-bottom: 50px;
}
h3.line:after {
  content: "";
  display: table;
  background: #b40000;
  height: 4px;
  width: 115px;
  margin: 0 auto;
  margin-top: 15px;
}
.hidden {
  display: none !important;
}
.text-right {
  text-align: right;
}
.float-right {
  float: right;
}
div.promo_box {
  background-color: #03356e;
  background-image: url("/catalog/view/theme/daudio/image/GPlay.svg");
  background-repeat: repeat-x;
  background-position: top;
  font-size: 20pt;
  border: 0 solid #ddd;
  padding: 10px;
  text-align: center;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #fff;
  font-weight: 300;
  margin-top: 20px;
}
div.promo_box a {
  font-size: 20pt;
  color: #7ff600;
}
div.promo_box b, span.promo_box-tel {
  font-weight: 400;
}
.android-presentation {
  margin-top: 20px;
  margin-bottom: 20px;
}
.android-presentation td {
  font-size: 12pt;
  padding-bottom: 10px;
  padding-top: 10px;
  position: relative;
  vertical-align: top;
}
.android-presentation td:after {
  border-bottom: 1px solid #ccc;
  content: "";
  position: absolute;
  width: 95%;
  left: 0;
  bottom: 1px;
}
.android-presentation td img {
  margin-right: 3px;
}
.android-presentation.icons td {
  padding-top: 20px;
}
.android-presentation.icons img {
  width: 32px;
  margin-top: -10px;
}
.width_small td {
  font-size: 10pt;
}
.width_small #menu > ul > li > a, .width_medium #menu > ul > li > a {
  font-size: 12px;
  padding: 0 20px;
}
.width_medium #menu > ul > li.sale-li a {
  padding-left: 40px;
}
.width_medium #menu > ul > li.service-li a {
  padding-left: 40px;
}
.android_space {
  background: #111 url("/catalog/view/theme/daudio/image/android_space.jpg") repeat-x center center;
  height: 240px;
  margin-left: -30px;
  margin-top: 20px;
  margin-bottom: 20px;
  width: 1200px;
}
.android_space.block-2 {
  height: inherit;
  padding: 40px 0;
  width: 100%;
  text-align: center;
  font-size: 18pt;
  color: #fff;
  text-shadow: 1px 1px 1px #000;
  margin-left: 0;
}
.android_space.block-2 a {
  font-size: 18pt;
}
.android_space_min {
  width: 100% !important;
  margin-left: 0;
  height: inherit;
}
.android_space_min .info {
  line-height: 1.6;
}
.android_space_min .info strong {
  color: #fc0;
}
.android_space .background {
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  text-align: center;
}
.android_space .cont {
  margin: 0 auto;
  width: 575px;
}
.android_space .info {
  color: #fff;
  font-size: 14pt;
  padding-top: 35px;
  margin-bottom: 20px;
  text-align: center;
}
.android_space .button {
  padding: 20px 40px;
  font-size: 14px;
}
.android_space .info span {
  color: #a3d3ff;
}
.android_space #timer > div {
  width: 440px;
  margin: 0 auto !important;
}
.android_space #timer span {
  color: #fff;
  font-weight: normal;
  font-size: 12px;
}
.android_space .appeal {
  margin-top: 20px;
  color: #fff;
  font-size: 14pt;
  text-align: center;
}
.android_space .phone, .android_space .phone a {
  color: #fc0;
}
.a8-title {
  text-align: center;
  padding: 20px 0;
  padding-top: 10px;
  border-bottom: 1px dotted #ccc;
  margin-bottom: 20px;
}
.a8-title h2 {
  color: #005769;
  font-size: 20pt;
  margin-bottom: 10px;
}
.a8-title a {
  display: inline-block;
  font-size: 12pt;
  background: #333 url("/catalog/view/theme/daudio/image/soty.jpg") repeat center center;
  color: #fff;
  font-weight: bold;
  border: 1px solid #000;
  padding: 15px 0;
  width: 100%;
  -webkit-box-shadow: 0 3px 5px #666;
  -moz-box-shadow: 0 3px 5px #666;
  box-shadow: 0 3px 5px #666;
  border-radius: 5px;
}
.a8-title a:hover {
  text-decoration: underline;
  color: #fc0;
  -webkit-box-shadow: 0 3px 5px #000;
  -moz-box-shadow: 0 3px 5px #000;
  box-shadow: 0 3px 5px #000;
}
.a8-appeal {
  text-align: center;
}
.a8-appeal h2 {
  color: #999;
}
.a8-appeal .button {
  margin-top: 10px;
  padding: 20px 50px;
  font-size: 14pt;
  font-weight: normal;
}
.book_shgu {
  width: 500px;
  margin: 0 auto;
}
.book_shgu td {
  color: #fff;
  padding: 5px 20px;
}
.book_shgu input {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  margin-left: -10px;
}
.book_shgu select {
  width: 105%;
  margin-left: -10px;
}
.book_shgu textarea {
  width: 100%;
  padding: 10px;
  margin-left: -10px;
}
.book_shgu .button {
  padding: 11px;
  width: 100%;
  margin-left: -10px;
}
.rus_interface {
  background: url("/catalog/view/theme/daudio/image/lines_gray_bg.jpg") repeat center;
  width: 100%;
  padding: 20px 0;
  margin-bottom: 20px;
}
.rus_interface .info {
  width: 90%;
  min-width: 640px;
  margin: 0 auto;
}
.rus_interface .info img {
  float: left;
  margin-right: 20px;
}
.rus_interface .info h2 {
  font-size: 14pt;
  padding-top: 4px;
  margin-bottom: 3px;
  margin-top: 0;
}
.rus_interface .info h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: normal;
  font-size: 12pt;
}
.map_wrap {
  position: relative;
  margin-bottom: 40px;
}
.map_wrap #menu_address {
  list-style: none;
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  margin: 0;
  padding: 20px;
  right: 5px;
  top: 5px;
  padding: 10px 20px;
  z-index: 100;
  width: 320px;
}
.map_wrap #menu_address > li > a {
  display: block;
  padding: 2px 0;
}
.map_wrap #menu_address > li > a.active {
  color: #000;
  text-decoration: none;
}
.map_wrap #menu_address > li:first-child h2 {
  margin-top: 5px;
}
.map_wrap #menu_address > li h2 {
  margin-bottom: 0;
  border-bottom: 1px dotted #ccc;
  font-size: 14px;
  margin-top: 10px;
}
div.strong-list-wrap {
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #fff;
}
div.strong-list-wrap h2 {
  font-size: 28pt;
  padding-bottom: 20px;
  text-align: center;
  line-height: 1.2;
  color: #2c3e50;
  font-weight: 300;
}
ul.strong-list {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  list-style: none;
  margin-bottom: 40px !important;
  margin-left: 0 !important;
}
ul.strong-list li {
  width: 29%;
  text-align: center;
  font-weight: 400;
  color: #000;
  flex-grow: 1;
  padding: 20px 2%;
}
ul.strong-list li span {
  background-color: #005769;
  display: inline-block;
  width: 160px;
  height: 160px;
  box-shadow: 0 0 0 0 #fff;
  border-radius: 100px;
  margin-bottom: 15px;
}
ul.strong-list li span:before {
  width: 160px;
  height: 160px;
  border-radius: 100px;
  content: "";
  position: absolute;
  background-position: center center;
  background-repeat: no-repeat;
  margin-left: -78px;
  background-color: #396285;
}
ul.strong-list li div {
  font-size: 16pt;
  line-height: 1.2;
  padding-bottom: 10px;
  text-transform: uppercase;
  color: #222;
  font-weight: 300;
}
ul.strong-list li p {
  line-height: 1.7;
  font-size: 10pt;
}
ul.strong-list li.strong-list-0 span:before {
  background-image: url("/catalog/view/theme/daudio/image/presicons/Windows-128.png");
}
ul.strong-list li.strong-list-1 span:before {
  background-image: url("/catalog/view/theme/daudio/image/presicons/Android-128.png");
}
ul.strong-list li.strong-list-2 span:before {
  background-image: url("/catalog/view/theme/daudio/image/presicons/CPU-01-128.png");
}
ul.strong-list li.strong-list-3 span:before {
  background-image: url("/catalog/view/theme/daudio/image/presicons/random1.png");
}
ul.strong-list li.strong-list-4 span:before {
  background-image: url("/catalog/view/theme/daudio/image/presicons/Disk-HDD-128.png");
}
ul.strong-list li.strong-list-5 span:before {
  background-image: url("/catalog/view/theme/daudio/image/presicons/Device-Touch-Screen-128.png");
}
ul.strong-list li.strong-list-6 span:before {
  background-image: url("/catalog/view/theme/daudio/image/presicons/Wifi-128.png");
}
ul.strong-list li.strong-list-7 span:before {
  background-image: url("/catalog/view/theme/daudio/image/presicons/orientation23.png");
}
ul.strong-list li.strong-list-8 span:before {
  background-image: url("/catalog/view/theme/daudio/image/presicons/Device-Radio-128.png");
}
ul.strong-list li.strong-list-9 span:before {
  background-image: url("/catalog/view/theme/daudio/image/presicons/tv31.png");
}
ul.strong-list li.strong-list-10 span:before {
  background-image: url("/catalog/view/theme/daudio/image/presicons/I-Phone-128.png");
}
ul.strong-list li.strong-list-11 span:before {
  background-image: url("/catalog/view/theme/daudio/image/presicons/Memory-Card-128.png");
}
ul.strong-list li.strong-list-12 span:before {
  background-image: url("/catalog/view/theme/daudio/image/presicons/projection8.png");
}
ul.strong-list li.strong-list-13 span:before {
  background-image: url("/catalog/view/theme/daudio/image/presicons/charging1.png");
}
ul.strong-list li.strong-list-14 span:before {
  background-image: url("/catalog/view/theme/daudio/image/presicons/cube4.png");
}
ul.strong-list li.strong-list-15 span:before {
  background-image: url("/catalog/view/theme/daudio/image/presicons/Bluetooth-128.png");
}
ul.strong-list li.strong-list-partner-1 span:before {
  background-image: url("/catalog/view/theme/daudio/image/presicons/Warning-Shield-128.png");
}
ul.strong-list li.strong-list-partner-2 span:before {
  background-image: url("/catalog/view/theme/daudio/image/presicons/Money-Credit-Card-128.png");
}
ul.strong-list li.strong-list-partner-3 span:before {
  background-image: url("/catalog/view/theme/daudio/image/presicons/Hand-Sign-06-128.png");
}
ul.strong-list li:hover {
  -webkit-box-shadow: 0 0 5px #999;
  -moz-box-shadow: 0 0 5px #999;
  box-shadow: 0 0 5px #999;
}
ul.strong-list li:hover span {
  background-color: #396285;
}
ul.strong-list li:hover span:before {
  -webkit-animation: spin 0.4s linear 1;
  -moz-animation: spin 0.4s linear 1;
  animation: spin 0.4s linear 1;
  -webkit-box-shadow: 0 0 10px #000;
  -moz-box-shadow: 0 0 10px #000;
  box-shadow: 0 0 10px #000;
}
@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
div.strong-marker_text {
  text-align: center;
}
div.strong-marker_text span {
  background-color: #ffe300;
  font-size: 14pt;
  display: inline-block;
  padding: 10px 15px;
}
@media (max-width: 991px) {
  ul.strong-list {
    margin: 0;
    padding: 0;
  }
  ul.strong-list li {
    width: 100%;
  }
  .a8-title {
    display: none;
  }
  .rus_interface .info {
    min-width: 100%;
    line-height: 1.6;
    text-align: center;
  }
  .rus_interface .info img {
    float: none !important;
    margin-bottom: 10px;
  }
  .rus_interface .info h3 {
    line-height: 1.6;
  }
  .android_space, .block-2 {
    line-height: 1.6;
    width: inherit;
    padding: 20px;
    font-size: 14px;
  }
  .android_space .phone {
    display: block;
  }
}
.dop_1 {
  background: #ccc url("/catalog/view/theme/daudio/image/background_main.jpg") no-repeat center top;
  padding: 40px;
  text-align: center;
  color: #fff;
  margin-bottom: 20px;
}
.dop_1 h3 {
  margin: 0;
  color: #fc0;
  font-size: 20pt;
  margin-bottom: 10px;
}
.dop_1 .info {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-weight: bold;
}
.dop_1 p {
  font-size: 14pt;
  color: #fff;
}
.headerarea__logo {
  max-width: 200px;
}
.headerarea__logo img {
  max-width: 100%;
}
.header__topbar__right {
  display: flex;
  align-items: center;
  justify-content: start;
}
.header__topbar__left {
  display: flex;
  align-items: center;
  justify-content: end;
}
.header__topbar__right .cfCity * {
  color: #fff;
}
.feture__8__icon img {
  max-width: 80px;
  height: auto;
}
#main-block-2 {
  padding: 30px 0 60px;
}
/*
#main-block-2 h3:after {
    content: '';
    display: table;
    background: #b40000;
    height: 4px;
    width: 115px;
    margin: 0 auto;
    margin-top: 15px
}
*/
#main-block-2 #brands {
  display: table;
  margin: 0 auto;
}
#main-block-2 #brands > div {
  display: inline-block;
  width: 11%;
  vertical-align: top;
  margin-top: 0px;
  position: relative;
}
#main-block-2 #brands > div a {
  color: #000;
}
#main-block-2 #brands > .one-brand {
  padding-top: 10px;
}
#main-block-2 #brands > .one-brand:hover {
  background: #fafafa;
  -webkit-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  overflow: hidden;
}
#main-block-2 #brands > .one-brand:hover:after {
  content: "";
  display: block;
  height: 2px;
  width: 100%;
  background: #b40000;
  margin: 0 auto;
  margin-top: 0px;
  position: absolute;
  top: 0;
  left: 0;
}
#main-block-2 #brands > div > .hover-one-brand .img-hover-brand {
  height: 90px;
  padding: 5px 0 20px;
  line-height: 1.2;
  width: 100%;
}
#main-block-2 #brands > div > .hover-one-brand .img-hover-brand img {
  max-height: 66px;
  top: 80px;
}
#main-block-2 #brands > div > .hover-one-brand ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 15px;
}
#main-block-2 #brands > div > .hover-one-brand ul li + li {
  margin-top: 10px;
}
#main-block-2 #brands > div > .hover-one-brand ul li a {
  color: #000;
  text-decoration: underline;
  font-size: 13px;
  line-height: 22px;
  font-family: FiraSans-Light;
}
#main-block-2 #brands > div > .hover-one-brand ul li a:hover {
  text-decoration: none;
}
#main-block-2 #brands > div .name-category span {
  display: table;
  margin: 0 auto;
  font-size: 13px;
  font-family: FiraSans-Light;
  opacity: 0.7;
}
#main-block-2 #brands > div .img-brand {
  display: table;
  text-align: center;
  height: 70px;
  width: 100%;
  position: relative;
}
#main-block-2 #brands > div .name-brand {
  display: table;
  text-align: center;
  padding: 5px 0 20px;
  line-height: 1.2;
  width: 100%;
  min-height: 60px;
}
/*#main-block-2 #brands > div img {
    max-height: 66px;
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translate(-50%,-50%);
    margin: 0 auto;
    max-width: 80px;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}*/
#main-block-5 {
  background: url(/catalog/view/theme/daudio/image/newdesign/counters.jpg) no-repeat center;
  background-size: cover;
}
#main-block-5 #counters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  padding: 90px 0 50px;
}
#main-block-5 #counters > div {
  display: inline-block;
  vertical-align: top;
  text-align: center;
  width: 20%;
  padding-bottom: 40px;
}
@media (max-width: 1000px) {
  #main-block-5 #counters > div {
    width: 33%;
  }
}
@media (max-width: 575px) {
  #main-block-5 #counters > div {
    width: 50%;
  }
}
#main-block-5 #counters .top-counter {
  font-size: 60px;
  color: #fff;
  line-height: 1;
}
@media (max-width: 425px) {
  #main-block-5 #counters .top-counter {
    font-size: 40px;
  }
}
#main-block-5 #counters .top-counter:after {
  content: "";
  display: table;
  background: #b40000;
  height: 4px;
  width: 115px;
  margin: 10px auto;
}
.bottom-counter {
  color: #ffffff;
  line-height: 1.4;
}
.grid__wraper.ms2_form {
  margin-bottom: 50px;
}
.grid__wraper__tittle {
  min-height: 55px;
  max-height: 55px;
  overflow: hidden;
}
.grid__wraper__price {
  min-height: 35px;
  max-height: 35px;
  overflow: hidden;
}
.brands-wrapper {
  display: flex;
}
.brands-wrapper .category__single .category__img__2 img {
  max-width: 150px;
}
@media (min-width: 1400px) {
  .brands-wrapper > .col-xl-2 {
    width: 12%;
  }
}
.brands-wrapper .category__text {
  padding: 10px 5px 5px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}
.category__model {
  height: 100%;
  overflow: hidden;
  border-radius: 15px;
}
.category__model:hover {
  box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
}
.category__model .category__img__2 img {
  border-radius: 15px 15px 0 0;
}
.category__model .category__text__2 {
  padding: 0;
  text-align: left;
  background: #f0f0f0;
  height: 100%;
}
.category__model .category__text__2 .model-title {
  font-weight: 600;
  padding: 15px 20px;
  margin-bottom: 0px;
}
.category__model .category__text__2 .model-title a {
  color: #000000;
}
.category__model .category__text__2 .list ul {
  padding: 0 20px 10px;
  display: flex;
  flex-direction: column;
}
.category__model .category__text__2 .list ul li {
  margin-bottom: 5px;
}
.category__model .category__text__2 .list ul li a {
  line-height: 1.2;
  font-size: 0.9em;
  display: block;
  position: relative;
}
.category__model .category__text__2 .list ul li.active a {
  font-weight: 600;
  color: var(--primaryColor);
}
.category__model.category__single:hover .category__text a {
  color: #000000;
}
.category__model.category__single:hover .category__text a:hover {
  color: var(--primaryColor);
}
.category__model.active {
  box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.4);
  background: #fff6f7;
}
.category__model.active .category__text__2 {
  text-align: left;
  background: #fff6f7;
}
.category__model.active .category__text__2 .model-title {
  font-weight: 700;
  background: transparent;
}
.category__model.active .category__text__2 .model-title a {
  color: var(--primaryColor);
}
.column-active .category__model .category__img__2 img {
  max-width: 200px;
  border-radius: 15px;
  margin: 15px;
}
.column-active .category__model.active {
  display: flex;
}
.column-active .category__model.active.bg-gray {
  background: #f0f0f0;
}
.column-active .category__model.active.bg-gray .category__text__2 {
  background: #f0f0f0;
}
.sidebar-row-item.sidebar__widget {
  border-bottom: 1px solid transparent;
  padding-bottom: 10px;
  margin-bottom: 0px;
}
.sidebar-row-item .sidebar__title {
  font-size: 1.2em;
  line-height: 1.2;
  font-weight: 600;
  margin-top: 20px;
}
.sidebar-row-item .sidebar__menu {
  overflow-x: hidden;
  margin-top: 10px;
  display: block;
  visibility: visible;
}
.sidebar-row-item .sidebar__menu li {
  margin-bottom: 0;
}
.background-filter a {
  display: block;
  position: relative;
}
.background-filter a:after {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  backdrop-filter: brightness(110%);
  -webkit-backdrop-filter: brightness(110%);
}
.grid__wraper__tittle {
  line-height: 1.4;
  font-size: 14px;
  text-align: left;
}
.headerarea__main__menu nav > ul {
  display: flex;
  flex-wrap: nowrap;
}
.headerarea__main__menu nav > ul > li {
  white-space: nowrap;
}
.ms2_form .form-group {
  margin-bottom: 10px;
}
.slider__default__arrow .slick-arrow {
  border: none !important;
}
#msCart .title {
  text-align: left;
  line-height: 1.4;
  margin-left: 20px;
}
#msCart .ms-remove {
  max-width: 60px !important;
  width: 60px !important;
  min-width: 60px !important;
}
#msCart table * {
  border-radius: 0;
}
.swal2-container {
  z-index: 10000 !important;
  position: relative;
}
.close_back {
  position: absolute;
  right: 10px;
  top: 10px;
}
.relative {
  position: relative;
}
.flat-spacing {
  padding-top: 100px;
  padding-bottom: 100px;
}
.flat-spacing-2 {
  padding-top: 80px;
  padding-bottom: 80px;
}
.flat-spacing-3 {
  padding-top: 120px;
  padding-bottom: 120px;
}
.flat-spacing-4 {
  padding-top: 60px;
  padding-bottom: 60px;
}
.flat-spacing-5 {
  padding-top: 43px;
  padding-bottom: 43px;
}
.flat-spacing-6 {
  padding-top: 90px;
  padding-bottom: 90px;
}
.flat-spacing-7 {
  padding-top: 30px;
  padding-bottom: 30px;
}
.flat-spacing-8 {
  padding-top: 80px;
  padding-bottom: 60px;
}
.flat-spacing-9 {
  padding-top: 68px;
  padding-bottom: 68px;
}
.flat-spacing-10 {
  padding-top: 60px;
  padding-bottom: 70px;
}
.flat-spacing-11 {
  padding-top: 80px;
  padding-bottom: 127px;
}
.flat-spacing-12 {
  padding-top: 80px;
  padding-bottom: 44px;
}
.flat-spacing-13 {
  padding-top: 64px;
  padding-bottom: 100px;
}
.flat-spacing-14 {
  padding-top: 83px;
  padding-bottom: 98px;
}
.flat-spacing-14 {
  padding-top: 83px;
  padding-bottom: 98px;
}
.flat-spacing-15 {
  padding-top: 176px;
  padding-bottom: 176px;
}
.flat-spacing-16 {
  padding-top: 120px;
  padding-bottom: 80px;
}
.flat-spacing-17 {
  padding-top: 80px;
  padding-bottom: 120px;
}
.flat-spacing-18 {
  padding-top: 52px;
  padding-bottom: 52px;
}
.flat-spacing-19 {
  padding-top: 87px;
  padding-bottom: 143px;
}
.flat-spacing-20 {
  padding-top: 86px;
  padding-bottom: 86px;
}
.flat-spacing-21 {
  padding-top: 116px;
  padding-bottom: 116px;
}
.flat-spacing-22 {
  padding-top: 182px;
  padding-bottom: 120px;
}
.flat-spacing-23 {
  padding-top: 136px;
  padding-bottom: 136px;
}
.flat-spacing-24 {
  padding-top: 64px;
  padding-bottom: 80px;
}
.flat-spacing-25 {
  padding-top: 80px;
  padding-bottom: 100px;
}
.flat-spacing-26 {
  padding-top: 126px;
  padding-bottom: 80px;
}
.flat-spacing-27 {
  padding-top: 145px;
  padding-bottom: 120px;
}
.flat-spacing-28 {
  padding-top: 120px;
  padding-bottom: 80px;
}
.flat-spacing-29 {
  padding-top: 80px;
  padding-bottom: 94px;
}
.flat-spacing-30 {
  padding-top: 100px;
  padding-bottom: 58px;
}
.flat-spacing-31 {
  padding-top: 70px;
  padding-bottom: 70px;
}
.flat-spacing-32 {
  padding-top: 32px;
  padding-bottom: 32px;
}
.flat-spacing-33 {
  padding-top: 120px;
  padding-bottom: 114px;
}
.flat-spacing-34 {
  padding-top: 40px;
  padding-bottom: 124px;
}
.flat-spacing-35 {
  padding-top: 120px;
  padding-bottom: 103px;
}
h4, .display-md {
  font-size: 36px;
  line-height: 44px;
  letter-spacing: -0.02em;
}
.display-md-2 {
  font-size: 32px;
  line-height: 38px;
}
.display-md-3 {
  font-size: 34px;
  line-height: 44px;
}
h5, .display-sm {
  font-size: 30px;
  line-height: 38px;
}
h6, .display-xs {
  font-size: 24px;
  line-height: 32px;
}
.text-xl {
  font-size: 20px;
  line-height: 30px;
}
.text-xl-2 {
  font-size: 20px;
  line-height: 24px;
}
.text-xl-3 {
  font-size: 20px;
  line-height: 32px;
}
.text-lg {
  font-size: 18px;
  line-height: 28px;
}
.pl-2 {
  padding-left: 1em;
}
.slick-track .ms2_product .ms2_form {
  padding: 15px;
}
.combo {
  background: rgba(255, 255, 255, 0.6);
  color: #b40000;
  font-size: 16px;
  position: absolute;
  bottom: 0;
  z-index: 100;
  width: 100%;
  text-align: center;
  padding: 10px 0;
}
.combo.combo-relative {
  position: relative;
  background: transparent;
  padding: inherit;
}
.characteristics .item-row {
  display: flex;
  flex-direction: row;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  max-width: 700px;
}
.characteristics .item-row .label-item {
  width: 330px;
  max-width: 330px;
  min-width: 330px;
  line-height: 1.2;
  font-weight: 400;
  margin-right: 20px;
}
@media (max-width: 425px) {
  .characteristics .item-row .label-item {
    width: 48%;
    max-width: 48%;
    min-width: 48%;
    font-size: 14px;
  }
}
.characteristics .item-row .value-item {
  flex-grow: 1;
  font-weight: 600;
  line-height: 1.2;
}
@media (max-width: 425px) {
  .characteristics .item-row .value-item {
    font-size: 14px;
  }
}
.slwrap {
  margin-top: 1em;
  border-top: 1px solid #eee;
  margin-bottom: 2em;
}
.prodline {
  border-bottom: 1px solid #eee;
}
.prodline a {
  padding: 0px 10px;
  display: flex;
}
.prodline a .pull-right {
  order: 1;
  white-space: nowrap;
}
.prodline a .btn {
  text-align: left;
  flex-grow: 1;
  border: none !important;
  padding-top: 10px;
}
.prodline.active a {
  background: #eaeaea;
  border-left: 4px solid var(--primaryColor);
  padding-left: 6px;
}
.prodline a:hover {
  background: #f2f2f2;
}
.prodline .label {
  font-size: 1.1em;
}
.prodline a:hover .label {
  background-color: #333 !important;
}
.prodline .pull-right {
  color: #000;
  white-space: nowrap;
}
.prodline .pull-right .pricesl {
  font-weight: bold;
  color: #000;
  font-size: 1.1em;
  padding-top: 5px;
  display: inline-block;
  white-space: nowrap;
}
.prodline img {
  max-width: 30px;
  max-height: 20px;
  position: relative;
  display: inline-block;
}
.workemail {
  display: none !important;
}
.contact-list li {
  display: block;
}
.one-contact-block {
  display: table;
  width: 100%;
  color: #000;
  margin: 5px 0;
}
.one-contact-block .icon-contact-block {
  display: table-cell;
  vertical-align: middle;
  width: 50px;
}
.one-contact-block .info-contact-block {
  display: table-cell;
  vertical-align: middle;
  padding-left: 20px;
}
.one-contact-block .info-contact-block .name-contact-block {
  font-size: 14px;
  padding-bottom: 5px;
  position: relative;
  margin-bottom: 5px;
}
.one-contact-block .info-contact-block .name-contact-block:after {
  content: "";
  position: absolute;
  height: 1px;
  width: 95px;
  background: #eee;
  bottom: 0;
  left: 0;
}
.one-contact-block .info-contact-block .content-contact-block {
  font-size: 18px;
}
.one-contact-block .info-contact-block .content-contact-block a {
  color: #000;
}
.one-contact-block .info-contact-block .delimiter-contact-block {
  margin: 0 15px;
  color: #eee;
}
.msCart table .ms-title .d-flex, .msCart table .ms-count .d-flex {
  align-items: center;
}
.msCart table .ms-count .d-flex {
  flex-direction: row;
  height: 100%;
}
.msCart table .ms-count .d-flex .input-group-text {
  height: 100%;
}
#modalform .windowpopup {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 860px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
  /*! class for windows popup image */
  /*! class for window popup button. */
  /*! class for window popup input. */
}
#modalform .windowpopup .row {
  margin: 0;
  padding: 0;
}
#modalform .windowpopup figure {
  padding: 0;
  min-height: 450px;
  margin: 0;
}
#modalform .windowpopup p {
  display: block;
  position: relative;
  line-height: 1.2;
}
#modalform .windowpopup .windowpopuptext {
  padding: 16px;
}
#modalform .windowpopup .windowpopuptext .maintext {
  width: 93%;
}
#modalform .windowpopup .windowpopupimage {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 10px 0px 0px 10px;
}
@media (max-width: 768px) {
  #modalform .windowpopup .windowpopupimage {
    border-radius: 10px;
  }
}
#modalform .windowpopup .windowpopupsend {
  width: 120px;
  height: 35px;
  color: white;
  background-color: #e91414;
  border: none;
  border-radius: 10px;
  transition: all 0.5s ease;
}
#modalform .windowpopup .windowpopupsenddisable {
  color: white;
  background-color: #141414;
  border: none;
}
#modalform .windowpopup .windowpopupsend:hover {
  color: #e91414;
  background-color: #f2b0b04f;
  border: 1px solid red;
  transition: all 0.5s ease;
}
#modalform .windowpopup .windowpopupsenddisable:hover {
  color: white;
  background-color: #141414;
  border: none;
  transition: all 0.5s ease;
}
#modalform .windowpopup .windowpopupinput {
  width: 100%;
  height: 4rem;
  border-radius: 10px;
  padding: 10px;
  border: 1px solid #cbcbcb;
  margin-bottom: 10px;
}
#modalform .windowpopup .windowpopupclose {
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 150%;
  line-height: normal;
  color: white;
  background-color: #e91414;
}
#modalform .windowpopup .ch {
  display: flex;
  padding-bottom: 30px;
}
#modalform .windowpopup .ch input[type=checkbox] {
  display: inline;
  position: relative;
}
#modalform .windowpopup .ch p {
  margin: auto 0 auto 10px;
}
