/*
Table of Contents

Name                 : Gaya - Fashion Store Mobile App Template
Author               : DexignZone
Author Portfolio     : https://themeforest.net/user/dexignzone/portfolio

Table of Sass Contents

1. Abstracts

2. Global/Base	

3. Components

4. Layout

5. Pages

6. Preloader

*/
:root {
  --f7-theme-color: #2b39b9;
  --f7-theme-color-rgb: 74, 55, 73;
  --f7-theme-color-shade: #0936c3;
  --f7-theme-color-tint: #a44ef1;
  --f7-theme-color-light: #ebf6f0;
  --f7-theme-color-white: #fff;
  --border-color: #e5e5e5;
}

/*

0 - 600: Phone
600 - 900: Tablet portrait
900 - 1200: Tablet landscape
1200 - 1800: Normal styles
1800+ : Big Desktop
1em = 16px
The smaller device rules always should write below the bigger device rules
Fixing Order => Base + Typography >> General Layout + Grid >> Page Layout + Component

*/
/* Reset */
::selection {
  color: #fff;
  background: var(--f7-theme-color);
}

body {
  overflow-x: hidden;
  height: 100%;
  position: relative;
  color: #777777;
  max-width: 100%;
  font-size: 14px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

p {
  font-size: 14px;
  line-height: 24px;
}

.bg-gray {
  background-color: #efefef;
}

h1,
h2,
h3,
h4,
h5,
h6,
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: #000;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #000;
}

h1,
.h1 {
  font-size: 2rem;
  line-height: 1.3;
}

h2,
.h2 {
  font-size: 1.5rem;
  line-height: 1.3;
}

h3,
.h3 {
  font-size: 1.25rem;
  line-height: 1.3;
}

h4,
.h4 {
  font-size: 1.125rem;
  line-height: 1.4;
}

h5,
.h5 {
  font-size: 1rem;
  line-height: 1.4;
}

h6,
.h6 {
  font-size: 0.875rem;
  line-height: 1.4;
}

.radius {
  border-radius: 8px;
}

.bg-primary {
  background: var(--f7-theme-color) !important;
}

.text-primary {
  color: var(--f7-theme-color) !important;
}

.text-success {
  color: #1eb840 !important;
}

.text-info {
  color: #6798ff !important;
}

.text-warning {
  color: #ff9838 !important;
}

.text-secondary {
  color: #5b5b5b !important;
}

.text-black {
  color: #000;
}

.text-white {
  color: #fff;
}

.bg-info {
  background: #6798ff !important;
}

.ml-auto {
  margin-left: auto;
}

.mr-auto {
  margin-right: auto;
}

/* Opacity */
.op1 {
  opacity: 0.1;
}

.op2 {
  opacity: 0.2;
}

.op3 {
  opacity: 0.3;
}

.op4 {
  opacity: 0.4;
}

.op5 {
  opacity: 0.5;
}

.op6 {
  opacity: 0.6;
}

.op7 {
  opacity: 0.7;
}

.op8 {
  opacity: 0.8;
}

.op9 {
  opacity: 0.9;
}

/* Font Size */
.fs-12 {
  font-size: 12px !important;
  line-height: 1.3;
}

.fs-13 {
  font-size: 13px !important;
  line-height: 1.4;
}

.fs-14 {
  font-size: 14px !important;
  line-height: 1.5;
}

.fs-15 {
  font-size: 14px !important;
  line-height: 1.5;
}

.fs-16 {
  font-size: 16px !important;
  line-height: 1.5;
}

.fs-18 {
  font-size: 18px !important;
  line-height: 1.5;
}

.fs-20 {
  font-size: 20px !important;
  line-height: 1.5;
}

.fs-22 {
  font-size: 22px !important;
  line-height: 1.5;
}

.fs-24 {
  font-size: 24px !important;
  line-height: 1.4;
}

.fs-26 {
  font-size: 26px !important;
  line-height: 1.4;
}

.fs-28 {
  font-size: 28px !important;
  line-height: 1.4;
}

.fs-30 {
  font-size: 30px !important;
  line-height: 1.4;
}

.fs-32 {
  font-size: 32px !important;
  line-height: 1.25;
}

.fs-35 {
  font-size: 35px !important;
  line-height: 1.25;
}

.fs-36 {
  font-size: 36px !important;
  line-height: 1.25;
}

.fs-46 {
  font-size: 46px !important;
  line-height: 1.25;
}

.fw1 {
  font-weight: 100;
}

.fw2 {
  font-weight: 200;
}

.fw3 {
  font-weight: 300;
}

.fw4 {
  font-weight: 400;
}

.fw5 {
  font-weight: 500;
}

.fw6 {
  font-weight: 600;
}

.fw7 {
  font-weight: 700;
}

.fw8 {
  font-weight: 800;
}

.fw9 {
  font-weight: 900;
}

/* Spacing */
/* Padding Around */
.pa-0 {
  padding: 0;
}

.pa-5 {
  padding: 5px;
}

.pa-10 {
  padding: 10px;
}

.pa-15 {
  padding: 15px;
}

.pa-20 {
  padding: 20px;
}

.pa-25 {
  padding: 25px;
}

.pa-30 {
  padding: 30px;
}

.pa-40 {
  padding: 40px;
}

.pa-50 {
  padding: 50px;
}

.pa-60 {
  padding: 60px;
}

.pa-70 {
  padding: 70px;
}

.pa-80 {
  padding: 80px;
}

.pa-90 {
  padding: 90px;
}

.pa-100 {
  padding: 100px;
}

/* Padding Top */
.pt-0 {
  padding-top: 0;
}

.pt-5 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-100 {
  padding-top: 100px;
}

/* Padding Bottom */
.pb-0 {
  padding-bottom: 0;
}

.pb-5 {
  padding-bottom: 5px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-100 {
  padding-bottom: 100px;
}

/* Padding Left */
.pl-0 {
  padding-left: 0;
}

.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-40 {
  padding-left: 40px;
}

.pl-50 {
  padding-left: 50px;
}

.pl-60 {
  padding-left: 60px;
}

.pl-70 {
  padding-left: 70px;
}

.pl-80 {
  padding-left: 80px;
}

.pl-90 {
  padding-left: 90px;
}

.pl-100 {
  padding-left: 100px;
}

/* Padding Right */
.pr-0 {
  padding-right: 0;
}

.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-30 {
  padding-right: 30px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-50 {
  padding-right: 50px;
}

.pr-60 {
  padding-right: 60px;
}

.pr-70 {
  padding-right: 70px;
}

.pr-80 {
  padding-right: 80px;
}

.pr-90 {
  padding-right: 90px;
}

.pr-100 {
  padding-right: 100px;
}

/* Padding left Right */
.px-0 {
  padding-left: 0;
  padding-right: 0;
}

.px-5 {
  padding-left: 5px;
  padding-right: 5px;
}

.px-10 {
  padding-left: 10px;
  padding-right: 10px;
}

.px-15 {
  padding-left: 15px;
  padding-right: 15px;
}

.px-20 {
  padding-left: 20px;
  padding-right: 20px;
}

.px-30 {
  padding-left: 30px;
  padding-right: 30px;
}

.px-40 {
  padding-left: 40px;
  padding-right: 40px;
}

.px-50 {
  padding-left: 50px;
  padding-right: 50px;
}

.px-60 {
  padding-left: 60px;
  padding-right: 60px;
}

.px-70 {
  padding-left: 70px;
  padding-right: 70px;
}

.px-80 {
  padding-left: 80px;
  padding-right: 80px;
}

.px-90 {
  padding-left: 90px;
  padding-right: 90px;
}

.px-100 {
  padding-left: 100px;
  padding-right: 100px;
}

/* Padding Top Bottom */
.py-0 {
  padding-bottom: 0;
  padding-top: 0;
}

.py-5 {
  padding-bottom: 5px;
  padding-top: 5px;
}

.py-10 {
  padding-bottom: 10px;
  padding-top: 10px;
}

.py-15 {
  padding-bottom: 15px;
  padding-top: 15px;
}

.py-20 {
  padding-bottom: 20px;
  padding-top: 20px;
}

.py-30 {
  padding-bottom: 30px;
  padding-top: 30px;
}

.py-40 {
  padding-bottom: 40px;
  padding-top: 40px;
}

.py-50 {
  padding-bottom: 50px;
  padding-top: 50px;
}

.py-60 {
  padding-bottom: 60px;
  padding-top: 60px;
}

.py-70 {
  padding-bottom: 70px;
  padding-top: 70px;
}

.py-80 {
  padding-bottom: 80px;
  padding-top: 80px;
}

.py-90 {
  padding-bottom: 90px;
  padding-top: 90px;
}

.py-100 {
  padding-bottom: 100px;
  padding-top: 100px;
}

/* Margin Around */
.m-auto {
  margin: auto;
}

.ma-0 {
  margin: 0;
}

.ma-5 {
  margin: 5px;
}

.ma-10 {
  margin: 10px;
}

.ma-15 {
  margin: 15px;
}

.ma-20 {
  margin: 20px;
}

.ma-30 {
  margin: 30px;
}

.ma-40 {
  margin: 40px;
}

.ma-50 {
  margin: 50px;
}

.ma-60 {
  margin: 60px;
}

.ma-70 {
  margin: 70px;
}

.ma-80 {
  margin: 80px;
}

.ma-90 {
  margin: 90px;
}

.ma-100 {
  margin: 100px;
}

/* Margin Top */
.mt-auto {
  margin-top: auto;
}

.mt-0 {
  margin-top: 0;
}

.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-100 {
  margin-top: 100px;
}

/* Margin Bottom */
.mb-auto {
  margin-bottom: auto;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-100 {
  margin-bottom: 100px;
}

/* Margin left */
.ml-auto {
  margin-left: auto;
}

.ml-0 {
  margin-left: 0;
}

.ml-5 {
  margin-left: 5px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-15 {
  margin-left: 15px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-50 {
  margin-left: 50px;
}

.ml-60 {
  margin-left: 60px;
}

.ml-70 {
  margin-left: 70px;
}

.ml-80 {
  margin-left: 80px;
}

.ml-90 {
  margin-left: 90px;
}

.ml-100 {
  margin-left: 100px;
}

/* Margin Right */
.mr-auto {
  margin-right: auto;
}

.mr-0 {
  margin-right: 0;
}

.mr-5 {
  margin-right: 5px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-15 {
  margin-right: 15px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-50 {
  margin-right: 50px;
}

.mr-60 {
  margin-right: 60px;
}

.mr-70 {
  margin-right: 70px;
}

.mr-80 {
  margin-right: 80px;
}

.mr-90 {
  margin-right: 90px;
}

.mr-100 {
  margin-right: 100px;
}

/* Margin Left Right */
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mx-0 {
  margin-left: 0;
  margin-right: 0;
}

.mx-5 {
  margin-left: 5px;
  margin-right: 5px;
}

.mx-10 {
  margin-left: 10px;
  margin-right: 10px;
}

.mx-15 {
  margin-left: 15px;
  margin-right: 15px;
}

.mx-20 {
  margin-left: 20px;
  margin-right: 20px;
}

.mx-30 {
  margin-left: 30px;
  margin-right: 30px;
}

.mx-40 {
  margin-left: 40px;
  margin-right: 40px;
}

.mx-50 {
  margin-left: 50px;
  margin-right: 50px;
}

.mx-60 {
  margin-left: 60px;
  margin-right: 60px;
}

.mx-70 {
  margin-left: 70px;
  margin-right: 70px;
}

.mx-80 {
  margin-left: 80px;
  margin-right: 80px;
}

.mx-90 {
  margin-left: 90px;
  margin-right: 90px;
}

.mx-100 {
  margin-left: 100px;
  margin-right: 100px;
}

/* Margin Top Bottom */
.my-auto {
  margin-bottom: auto;
  margin-top: auto;
}

.my-0 {
  margin-bottom: 0;
  margin-top: 0;
}

.my-5 {
  margin-bottom: 5px;
  margin-top: 5px;
}

.my-10 {
  margin-bottom: 10px;
  margin-top: 10px;
}

.my-15 {
  margin-bottom: 15px;
  margin-top: 15px;
}

.my-20 {
  margin-bottom: 20px;
  margin-top: 20px;
}

.my-30 {
  margin-bottom: 30px;
  margin-top: 30px;
}

.my-40 {
  margin-bottom: 40px;
  margin-top: 40px;
}

.my-50 {
  margin-bottom: 50px;
  margin-top: 50px;
}

.my-60 {
  margin-bottom: 60px;
  margin-top: 60px;
}

.my-70 {
  margin-bottom: 70px;
  margin-top: 70px;
}

.my-80 {
  margin-bottom: 80px;
  margin-top: 80px;
}

.my-90 {
  margin-bottom: 90px;
  margin-top: 90px;
}

.my-100 {
  margin-bottom: 100px;
  margin-top: 100px;
}

/* Content Bottom Space */
.bottom-sp100:after {
  height: 100px;
  content: "";
  display: block;
}
.bottom-sp90:after {
  height: 90px;
  content: "";
  display: block;
}
.bottom-sp80:after {
  height: 80px;
  content: "";
  display: block;
}
.bottom-sp70:after {
  height: 70px;
  content: "";
  display: block;
}
.bottom-sp60:after {
  height: 60px;
  content: "";
  display: block;
}
.bottom-sp50:after {
  height: 50px;
  content: "";
  display: block;
}
.bottom-sp40:after {
  height: 40px;
  content: "";
  display: block;
}

.radius-md {
  border-radius: 12px;
}

.text-capitalize {
  text-transform: capitalize;
}

.bg-secondary {
  background-color: #5b5b5b;
}

.container {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

.border-top,
.border-bottom,
.border-left,
.border-right {
  border: 1px solid;
  border-color: #e5e5e5;
}
.border-top {
  border-width: 1px 0 0;
}
.border-bottom {
  border-width: 0 0 1px;
}
.border-left {
  border-width: 0 0 0 1px;
}
.border-right {
  border-width: 0 1px 0 0;
}

.md .list .item-media {
  min-width: unset;
}

.light.page,
.light .page-content,
.light .navbar,
.light .toolbar {
  background: #fafafa;
}

.svg-primary {
  fill: var(--f7-theme-color);
}
.svg-primary [fill] {
  fill: var(--f7-theme-color);
}

.dz-list > ul {
  background-color: transparent;
}

.tabs-height-auto {
  height: auto;
}

.sticky-top {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 999;
}

.border-top {
  border-top: 1px solid;
  border-color: #f4f4f4;
}

/* Framework */
.block-title-medium {
  font-size: 18px;
  font-weight: 600;
}

/* button loader */
.loader-screen {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 9999;
  background-color: var(--f7-theme-color);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.loader-screen .loader-footer {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  padding-bottom: 30px;
}
.loader-screen .loader-footer .logo-text {
  color: #fff;
  margin: 0 0 8px;
}
.loader-screen .loader-footer p {
  opacity: 0.5;
  margin: 3px 0 0px;
}

#loading-area {
  position: relative;
  margin: 0 auto 50px;
  padding: 15px;
  height: 100%;
  display: flex;
  justify-content: center;
}
#loading-area .logo-icon {
  height: 94px;
  width: 94px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  border-radius: 18px;
}
#loading-area .logo-svg {
  box-shadow: 0 0px 80px rgba(255, 255, 255, 0.15);
}

.logo-svg {
  border-radius: 18px;
}
.logo-svg .bg-color {
  fill: var(--f7-theme-color);
}

/* On Boading */
.footer-button {
  height: 90px;
  background-color: #fff;
  padding: 15px 20px !important;
  right: 0;
  left: 0;
}
.footer-button:after,
.footer-button:before {
  content: none;
}

.page,
.page-content {
  background: #fff;
}
.page.bg-gray,
.page-content.bg-gray {
  background: #efefef !important;
}

.onboading-logo {
  margin: 25px auto;
  text-align: center;
}
.onboading-logo img {
  width: 70px;
}

/* Get Started */
.get-started {
  text-align: center;
  height: auto;
}
.get-started .swiper-wrapper {
  margin-bottom: 15px;
}
.get-started .dz-title {
  margin-top: 0;
  margin-bottom: 25px;
}
.get-started p {
  margin-bottom: 0;
  margin-top: 0;
  color: #1b1b1b;
}
.get-started .swiper-pagination {
  bottom: 0;
  opacity: 1;
}
.get-started .swiper-pagination .swiper-pagination-bullet {
  margin: 0 4px;
  width: 12px;
  border-radius: 5px;
  height: 8px;
  background: #d2d2d2;
  opacity: 1;
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}
.get-started .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--f7-theme-color);
  width: 24px;
}
@media (max-width: 361px) {
  .get-started .dz-title {
    margin-bottom: 15px;
  }
}

.started-swiper-box {
  height: auto;
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.started-swiper-box .swiper-slide {
  height: 100%;
  position: relative;
}
.started-swiper-box .slide-info {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  padding-bottom: 15px;
  background-repeat: no-repeat;
  background-position: top left;
  background-size: 100%;
  z-index: 1;
  position: relative;
}
.started-swiper-box .view-logo {
  margin: auto;
}
.started-swiper-box .view-logo + .slide-content {
  margin-top: 0;
}
.started-swiper-box .slide-content {
  z-index: 1;
  position: relative;
  padding: 0 15px;
  max-width: 320px;
  margin: auto auto 0;
}
.started-swiper-box .bg-icon {
  position: absolute;
  left: 0;
  top: 50%;
  opacity: 0.1;
  transform: translateY(-50%);
}
@media (max-width: 361px) {
  .started-swiper-box .slide-info {
    padding-bottom: 40px;
  }
  .started-swiper-box .view-logo {
    margin: 20px auto;
  }
}

.view-main .page-onboading .page-content {
  text-align: center;
  background-color: var(--f7-theme-color-white);
}
.view-main .page-onboading .footer-button {
  background: transparent;
}
.view-main .page-onboading .footer-button .login-btn {
  background-color: var(--f7-theme-color-tint);
  margin-top: 18px;
}
.view-main .page-onboading .view-logo .logo-text {
  color: #fff;
}
.view-main .page-onboading .start-btn {
  padding: 10px;
}
.view-main .page-onboading .dz-media {
  width: 100%;
  border-radius: 0 0 18px 18px;
  overflow: hidden;
  display: flex;
}
.view-main .page-onboading .dz-media img {
  width: 100%;
}

.start-btn {
  margin: auto;
  width: 105px;
  height: 105px;
  position: relative;
  text-align: center;
  overflow: hidden;
  display: block;
}
.start-btn .circle1,
.start-btn .circle2 {
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.start-btn .circle1 [stop-color],
.start-btn .circle2 [stop-color] {
  stop-color: var(--f7-theme-color);
}
.start-btn .circle1 {
  animation: movex 5s infinite;
}
.start-btn .circle2 {
  animation: movey 5s infinite;
}
.start-btn .icon-bx {
  width: 60px;
  height: 60px;
  line-height: 60px;
  background-color: var(--f7-theme-color);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.start-btn .icon-bx path[fill],
.start-btn .icon-bx path,
.start-btn .icon-bx circle {
  fill: var(--f7-theme-color);
}
.start-btn .icon-bx i {
  color: #fff;
  font-size: 36px;
  line-height: 60px;
  margin-left: 5px;
}

@keyframes movex {
  50% {
    transform: translate(-50%, -50%) rotate(180deg);
  }
}
@keyframes movey {
  50% {
    transform: translate(-50%, -50%) rotate(-180deg);
  }
}
@keyframes scalediv {
  50% {
    transform: translate(-50%, -50%) scale(1.1);
  }
}
/* Login Register Account */
.account-area .page-content {
  padding-top: 35px;
}
.account-area .main-logo {
  justify-content: center;
  margin-bottom: 30px;
}
.account-area .block {
  padding: 0 30px;
  margin: 25px 0;
}
.account-area .swiper-slide,
.account-area .swiper-wrapper,
.account-area .tabs-swipeable-wrap {
  height: auto;
}
.account-area p {
  color: #000000;
}
.account-area .tabbar {
  margin-bottom: 30px;
}
.account-area .title-head {
  margin-bottom: 30px;
  text-align: center;
}
.account-area .title-head p {
  margin: 0;
}
.account-area .title-head .title {
  margin-top: 0;
  margin-bottom: 10px;
}
.account-area .account-footer {
  margin: 40px 0 0;
}
.account-area .account-footer p {
  font-weight: 500;
}
.account-area .account-footer .form-text {
  font-size: 14px;
  margin: 0 0 10px;
  opacity: 1;
}
.account-area .account-footer .form-text a {
  font-weight: 600;
}

.social-account {
  margin-top: 30px;
  text-align: center;
}
.social-account p {
  margin: 5px 0;
}
.social-account a {
  width: 36px;
  display: inline-block;
  margin-left: 20px;
}
.social-account a img {
  width: 100%;
}

.form-elements .list {
  margin-top: 0;
  margin-bottom: 10px;
}
.form-elements ul {
  background: transparent;
}
.form-elements ul:before,
.form-elements ul:after {
  content: none;
}
.form-elements ul .item-content {
  padding: 0;
}
.form-elements ul .item-content .item-media {
  position: absolute;
  left: 24px;
  min-width: auto;
  top: 10px;
  z-index: 1;
}
.form-elements ul .item-content .item-media + .item-inner {
  margin-left: 0;
}
.form-elements
  ul
  .item-content
  .item-media
  + .item-inner
  .item-input-wrap
  .form-control {
  padding: 15px 25px 15px 64px;
}
.form-elements ul .item-content .item-inner {
  padding: 0;
}
.form-elements ul .item-content .item-inner .item-label {
  font-size: 14px;
  color: #8a8a8a;
  margin-bottom: 10px;
}
.form-elements ul .item-content .item-inner .item-input-wrap {
  margin-bottom: 25px;
}
.form-elements ul .item-content .item-inner .item-input-wrap.mb-0 {
  margin-bottom: 0;
}
.form-elements ul .item-content .item-inner .item-input-wrap:after {
  content: none !important;
}
.form-elements ul .item-content .item-inner .item-input-wrap .form-control {
  background: transparent;
  height: 60px;
  padding: 15px 20px;
  border: 2px solid;
  border-color: #ebebeb;
  font-size: 16px;
  color: #000000;
  font-weight: 400;
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  border-radius: 18px;
}
.form-elements
  ul
  .item-content
  .item-inner
  .item-input-wrap
  .form-control::placeholder {
  color: #8b8b8b;
}
.form-elements
  ul
  .item-content
  .item-inner
  .item-input-wrap
  .form-control:active,
.form-elements
  ul
  .item-content
  .item-inner
  .item-input-wrap
  .form-control:focus {
  border-color: var(--f7-theme-color);
}
.form-elements ul .item-content .item-inner .item-input-wrap.item-input-group {
  display: flex;
}
.form-elements
  ul
  .item-content
  .item-inner
  .item-input-wrap.input-dropdown-wrap:before {
  content: "\f078";
  position: absolute;
  right: 20px;
  top: 21px;
  font-size: 12px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.form-elements
  ul
  .item-content
  .item-inner
  .item-input-wrap.input-dropdown-wrap.dropdown-left:before {
  right: auto;
  left: 16px;
}
.form-elements .form-text {
  color: #656565;
  margin: 20px 0 0;
}
.form-elements .form-text a {
  font-weight: 600;
  overflow: hidden;
}

.input-dropdown-wrap:before {
  content: "\f0d7";
  right: 40px;
  top: 18px;
  position: absolute;
  z-index: 99;
  border: 0;
  font-family: "FontAwesome";
  font-weight: 900;
  font-size: 18px;
  margin: 0;
  color: var(--f7-theme-color);
}

.checkbox-form-control {
  width: 100%;
  display: flex;
  align-items: center;
}
.checkbox-form-control .checkbox {
  float: left;
  margin-right: 10px;
}
.checkbox-form-control .checkbox-text {
  font-weight: 500;
  color: #000;
  font-size: 16px;
  margin: 0;
}

.show-pass {
  position: absolute;
  right: 20px;
  top: 18px;
}
.show-pass:after {
  content: "";
  background-color: var(--f7-theme-color);
  width: 2px;
  height: 20px;
  position: absolute;
  top: 2px;
  left: 11px;
  transform: rotate(40deg);
  display: block;
}
.show-pass.active:after {
  display: none;
}
.show-pass [fill] {
  fill: var(--f7-theme-color);
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-bar .link.panel-open {
  margin: 0 0 30px 20px;
}

.menubar-area {
  background-color: var(--f7-theme-color-white);
  border-top: 1px solid #dbdbdb;
  height: 70px;
}
.menubar-area:before,
.menubar-area:after {
  content: none;
}
.menubar-area .toolbar-inner {
  max-width: 1024px;
  left: 50%;
  transform: translatex(-50%);
  z-index: 1;
  box-sizing: border-box;
  padding-left: 20px;
  padding-right: 20px;
}
.menubar-area .toolbar-inner .tab-link {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: unset;
  color: #adadad;
  letter-spacing: unset;
  position: relative;
}
.menubar-area .toolbar-inner .tab-link path[fill],
.menubar-area .toolbar-inner .tab-link path {
  fill: #b9bcd3;
}
.menubar-area .toolbar-inner .tab-link i {
  color: #adadad;
}
.menubar-area .toolbar-inner .tab-link span {
  font-size: 12px;
  text-transform: capitalize;
  display: block;
  margin-top: 5px;
}
.menubar-area .toolbar-inner .tab-link.active path,
.menubar-area .toolbar-inner .tab-link.active path[fill] {
  fill: var(--f7-theme-color);
}
.menubar-area .toolbar-inner .tab-link.active i {
  color: #adadad;
}
.menubar-area .toolbar-inner .tab-link.active span {
  color: var(--f7-theme-color);
}
.menubar-area .toolbar-inner .tab-link.active:after {
  opacity: 1;
}
.menubar-area .tab-link-highlight {
  display: none;
}

.main-swiper {
  margin-left: -20px;
}
.main-swiper .swiper-slide:first-child {
  margin-left: 20px;
}
@media only screen and (max-width: 1199px) {
  .main-swiper {
    margin-right: -20px;
  }
}

.title-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 15px;
}
.title-bar .dz-title,
.title-bar a {
  font-weight: 600;
  margin: 0;
}
.title-bar path[fill],
.title-bar path {
  fill: var(--f7-theme-color);
}
.title-bar i {
  font-size: 24px;
  color: var(--f7-theme-color);
}

.avatar-group {
  display: flex;
}
.avatar-group img {
  width: 32px;
  border: 2px solid #fff;
  border-radius: 50px;
  margin-left: -12px;
}
.avatar-group img:first-child {
  margin: 0;
}

.search-list ul:before,
.search-list ul:after {
  content: none;
}

.card-bx {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin: 0;
  border-radius: 8px;
}
.card-bx .card-media {
  overflow: hidden;
  border-radius: 8px;
}
.card-bx .card-media img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.bookmark-btn .fas {
  display: none;
}
.bookmark-btn .far {
  opacity: 0.3;
}
.bookmark-btn.active .fas {
  display: block;
}
.bookmark-btn.active .far {
  display: none;
}

.input-select select {
  font-weight: 600;
  color: var(--f7-theme-color);
}
.input-select:after {
  content: "\f0dd";
  position: absolute;
  font-family: "Font Awesome 5 Free";
  color: var(--f7-theme-color);
  right: 0;
  top: 0;
  font-weight: 900;
  line-height: 14px;
}

.dz-banner-heading {
  box-sizing: border-box;
  position: fixed;
  width: 100%;
  height: 300px;
  overflow: hidden;
}
.dz-banner-heading iframe {
  border: 0;
  width: 100%;
  height: 250px;
}
.dz-banner-heading .bnr-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.fixed-content {
  background-color: var(--f7-theme-color-white);
  border-radius: 20px 20px 0 0;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  padding-top: 30px;
  padding-bottom: 20px;
}
.fixed-content .cart-list-area {
  margin-left: -20px;
  margin-right: -20px;
}

.dz-banner {
  height: 250px;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background-position: bottom;
}

.dz-banner-height {
  height: 280px;
  width: 100%;
  display: block;
}

.input-select {
  position: relative;
  padding-right: 20px;
}
.input-select:after {
  content: "\f0dd";
  position: absolute;
  font-family: "Font Awesome 5 Free";
  color: var(--f7-theme-color);
  right: 0;
  top: 0;
  font-weight: 900;
  line-height: 14px;
  font-size: 18px;
}
.input-select select {
  font-size: 14px;
  color: var(--f7-theme-color);
  font-weight: 500;
}

.dz-meta ul {
  padding: 0 !important;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  background-color: transparent;
}
.dz-meta ul li {
  display: inline-flex !important;
  align-items: center;
  margin-right: 12px;
  font-size: 18px;
  line-height: 18px;
  position: relative;
}
.dz-meta ul li.hidden-by-searchbar {
  display: inline-block !important;
}
.dz-meta ul li path[fill],
.dz-meta ul li path {
  fill: var(--f7-theme-color);
}
.dz-meta ul li svg {
  margin-right: 10px;
}
.dz-meta ul li i {
  color: var(--f7-theme-color);
  margin-right: 10px;
}
.dz-meta ul li:last-child {
  margin-right: 0;
}

.bg-overlay1 {
  background-color: #ffb3b3;
}
.bg-overlay1:before {
  background-color: inherit;
}

.bg-overlay2 {
  background-color: #c8beb5;
}
.bg-overlay2:before {
  background-color: inherit;
}

.bg-overlay3 {
  background-color: #0b7275;
}
.bg-overlay3:before {
  background-color: inherit;
}

.bg-overlay4 {
  background-color: #c38784;
}
.bg-overlay4:before {
  background-color: inherit;
}

.card-overlay {
  position: relative;
}
.card-overlay .dz-media {
  display: flex;
  align-items: center;
}
.card-overlay .dz-media img {
  width: 100%;
}
.card-overlay.style-1 {
  border-radius: 18px;
  padding: 30px 20px 35px 120px;
  overflow: hidden;
  width: 315px;
  box-sizing: border-box;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top 15px left;
  z-index: 1;
}
.card-overlay.style-1:before,
.card-overlay.style-1:after {
  content: "";
  position: absolute;
  border-radius: 50%;
}
.card-overlay.style-1:after {
  height: 160px;
  width: 160px;
  right: -30px;
  top: -50px;
  background-color: rgba(0, 0, 0, 0.08);
  z-index: -1;
}
.card-overlay.style-1 .dz-media {
  margin: -70px auto -20px;
  height: 200px;
}
.card-overlay.style-1 .dz-media img {
  height: 200px;
  object-fit: cover;
  width: auto;
}
.card-overlay.style-1 .offer {
  font-size: 40px;
  margin: 0 0 10px;
  color: #fff;
  display: flex;
  align-items: flex-start;
  line-height: 40px;
  text-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.card-overlay.style-1 .offer span {
  font-size: 16px;
  line-height: 20px;
  margin-left: 10px;
}
.card-overlay.style-1 .title {
  color: #fff;
  font-weight: 500;
  margin: 0 0 25px;
}
.card-overlay.style-1 .button {
  display: inline-block;
  padding: 12px 18px;
  height: auto;
  box-sizing: border-box;
  font-size: 12px;
  line-height: 12px;
  border-radius: 8px;
}
.card-overlay.style-2 {
  background-color: var(--f7-theme-color);
  padding: 15px 25px 15px 15px;
  border-radius: 18px;
  display: flex;
  align-items: center;
}
.card-overlay.style-2 .dz-media {
  min-width: 96px;
  max-width: 96px;
  margin-right: 12px;
}
.card-overlay.style-2 .title {
  font-weight: 500;
  margin: 0 0 5px;
}
.card-overlay.style-2 .title a {
  color: #fff;
}
.card-overlay.style-2 .dz-meta ul {
  justify-content: space-between;
}
.card-overlay.style-2 .dz-meta ul li {
  font-size: 12px;
  opacity: 0.5;
  color: #fff;
}
.card-overlay.style-2 .dz-meta ul li svg {
  margin: 0;
}
.card-overlay.style-2 .dz-meta ul li path[fill],
.card-overlay.style-2 .dz-meta ul li path {
  fill: #fff;
}
.card-overlay.style-2 .dz-meta ul li:last-child {
  padidng-right: 0;
}

.overlay-swiper1 {
  padding-bottom: 30px;
}
.overlay-swiper1 .swiper-slide {
  width: auto;
}

.overlay-swiper2 .swiper-slide {
  width: 265px;
}

.promo-bnr {
  background-color: var(--f7-theme-color);
  display: flex;
  border-radius: 18px;
  align-items: center;
  margin-top: 25px;
}
.promo-bnr .dz-media {
  width: 100px;
  min-width: 100px;
  margin: -20px 0 -7px -12px;
}
.promo-bnr .dz-media img {
  width: 100%;
}
.promo-bnr .dz-info {
  width: 100%;
  padding: 15px 25px 15px 20px;
}
.promo-bnr .dz-info .sub-title {
  color: #fff;
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  opacity: 0.7;
}
.promo-bnr .dz-info .title {
  color: #fff;
  margin: 0 0 5px;
}
.promo-bnr .dz-info .offer-bx {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.promo-bnr .dz-info .offer-bx .offer {
  color: #fff;
  margin: 0;
  display: flex;
  align-items: center;
}
.promo-bnr .dz-info .offer-bx .offer span {
  font-size: 10px;
  margin-left: 8px;
}

.main-logo.center {
  text-align: center;
}
.main-logo.center .logo-name {
  font-size: 42px;
  margin: 0;
  color: #272727;
}
.main-logo.center p {
  margin: 10px 0 0;
}
.main-logo.left {
  position: relative;
  display: flex;
  align-items: center;
  text-align: left;
}
.main-logo.left .logo-icon {
  margin-right: 10px;
  display: flex;
}
.main-logo.left .logo-name {
  font-size: 28px;
  margin: 0;
  line-height: 30px;
}
.main-logo.left p {
  margin: 0;
}

.welcome-screen .welcome-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  padding-top: 80px;
  padding-bottom: 40px;
}
@media (max-width: 328px) {
  .welcome-screen .welcome-inner {
    height: auto;
  }
}

.main-logo-area {
  position: relative;
}
.main-logo-area .extra-items img {
  position: absolute;
}
.main-logo-area .extra-items img:nth-child(1) {
  left: 30px;
  top: -30px;
}
.main-logo-area .extra-items img:nth-child(2) {
  right: 20px;
  top: -20px;
}
.main-logo-area .extra-items img:nth-child(3) {
  bottom: 0;
  left: 10px;
}
.main-logo-area .extra-items img:nth-child(4) {
  right: 10px;
  bottom: -10px;
}

.error-page {
  display: block;
  text-align: center;
}
.error-page .icon-bx {
  margin: 0 0 10px;
}
.error-page .title {
  font-size: 36px;
  line-height: 36px;
  margin: 0 0 12px;
}
.error-page p {
  margin: 0;
  font-size: 15px;
}

.map-dir {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  padding: 15px 25px;
  background-color: var(--f7-theme-color-white);
  display: inline-block;
  border-radius: 18px;
  position: relative;
}
.map-dir:after {
  content: "";
  background-color: inherit;
  height: 20px;
  width: 20px;
  position: absolute;
  right: 30px;
  top: -6px;
  transform: rotate(45deg);
  box-shadow: -5px -3px 10px rgba(0, 0, 0, 0.1);
}

.track-content {
  position: relative;
}

.location-tracking iframe {
  height: 100%;
  width: 100%;
  border: 0;
  margin-bottom: -60px;
}
.location-tracking .fixed-content {
  bottom: 0;
  left: 0;
  right: 0;
}
.location-tracking .map-dir {
  position: absolute;
  left: 115px;
  top: -160px;
}
.location-tracking .bottom-wraper {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
}
.location-tracking .navbar .title small {
  font-size: 14px;
  color: #777777;
  display: block;
  font-weight: 500;
  margin-top: 5px;
}

.delivery-man .inner-content {
  display: flex;
  align-items: center;
}
.delivery-man .icon-area {
  display: flex;
  margin-left: auto;
}
.delivery-man .dz-media {
  height: 42px;
  max-width: 42px;
  border-radius: 8px;
  overflow: hidden;
  margin-right: 12px;
}
.delivery-man .dz-media img {
  width: 100%;
}
.delivery-man .title {
  margin: 0;
}
.delivery-man p {
  margin: 0;
  font-size: 12px;
  color: #000;
  font-weight: 500;
}
.delivery-man .icon-cell {
  margin-left: 10px;
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
}
.delivery-man .icon-cell svg {
  height: 40px;
}

.track-list {
  padding: 0;
  margin: 0;
  position: relative;
}
.track-list .title {
  margin: 0;
}
.track-list p {
  margin: 0;
  font-size: 12px;
}
.track-list .button {
  text-transform: capitalize;
  font-weight: 700;
  margin-left: auto;
}

.dz-timeline .timeline-item-divider {
  width: 18px;
  height: 18px;
  background: var(--f7-theme-color);
  margin-left: 0;
  margin-right: 30px;
}
.dz-timeline .timeline-item-divider:after,
.dz-timeline .timeline-item-divider:before {
  border-left: 2px dashed #c4c4c4;
  background-color: transparent;
}
.dz-timeline .timeline-item-content {
  width: 100%;
  margin: 0;
}
.dz-timeline .timeline-item {
  padding-bottom: 30px;
}
.dz-timeline .timeline-item:last-child {
  padding-bottom: 0;
}

/* Message List */
.search-list-bar {
  margin-top: 20px;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.search-list-bar ul {
  background: transparent;
}
.search-list-bar ul:after,
.search-list-bar ul:before {
  content: none;
}
.search-list-bar ul li {
  padding: 0;
}
.search-list-bar .item-content {
  padding: 10px 30px;
}
.search-list-bar .item-content .item-media {
  width: 58px;
  height: 58px;
  padding: 0;
  margin: 0;
  position: relative;
}
.search-list-bar .item-content .item-media img {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
}
.search-list-bar .item-content .online {
  height: 12px;
  width: 12px;
  border-radius: 15px;
  border: 4px solid var(--f7-theme-color-light);
  background-color: #009600;
  position: absolute;
  left: -8px;
  bottom: -7px;
}
.search-list-bar .item-content .item-inner {
  padding: 0;
  margin-left: 15px;
}
.search-list-bar .item-content .item-inner:after,
.search-list-bar .item-content .item-inner:before {
  content: none;
}
.search-list-bar .item-content .item-inner .item-text {
  font-size: 12px;
  margin-bottom: 0;
  margin-top: 0;
  color: #000;
  font-weight: 500;
}
.search-list-bar .item-content .item-inner .item-title-row {
  padding-right: 0;
}
.search-list-bar .item-content .item-inner .item-title-row:after,
.search-list-bar .item-content .item-inner .item-title-row:before {
  content: none;
}
.search-list-bar .item-content .item-inner .item-title-row .item-title {
  font-size: 16px;
  margin: 0 0 2px;
  font-weight: 600;
  color: #000;
}
.search-list-bar .item-content .item-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}
.search-list-bar .item-content .item-footer span {
  font-size: 12px;
  align-items: center;
  color: #898a8d;
  font-weight: 500;
}
.search-list-bar .item-content .item-footer span i {
  margin-left: 5px;
}

.messages-navbar.navbar .title .name {
  margin: 0;
}
.messages-navbar.navbar .title p {
  font-size: 14px;
  margin: 0;
  opacity: 0.5;
  font-weight: 500;
}

.messages-content {
  background-size: 120px !important;
  background-color: #f1f1f1;
}

.messagebar {
  left: 50%;
  transform: translateX(-50%);
}
.messagebar:before,
.messagebar:after {
  content: none;
}
.messagebar .toolbar-inner {
  border: 1px solid #dadada;
  border-radius: 8px;
  padding: 6px;
  background-color: var(--f7-theme-color-white);
}
.messagebar .toolbar-inner .emoji-icon {
  left: 10px;
  margin: 0;
  padding: 0;
}
.messagebar .toolbar-inner .demo-send-message-link {
  height: 46px;
  width: 46px;
  line-height: 46px;
  border-radius: 8px;
  font-size: 18px;
  color: #fff;
  background-color: var(--f7-theme-color);
  text-align: center;
  opacity: 1 !important;
}
.messagebar .toolbar-inner textarea {
  height: 45px;
  padding: 10px 25px;
}
.messagebar .toolbar-inner .messagebar-attachments {
  border-bottom: 0;
}
.messagebar .messagebar-area {
  margin: 0;
}
.messagebar .messagebar-sheet {
  background-color: var(--f7-theme-color-white);
}
.messagebar .messagebar-sheet .messagebar-sheet-image {
  width: 100px;
  height: 100px;
}

.messages {
  margin: 0 0 20px !important;
  background: transparent;
}
.messages .messages-title {
  font-weight: 600;
  position: relative;
  margin: 20px 0;
}
.messages .messages-title:before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  top: 6px;
  background-color: #ebebeb;
  left: 0;
  z-index: -1;
}
.messages .messages-title span {
  background-color: var(--f7-theme-color-white);
  padding: 2px 8px;
}
.messages .message {
  margin: 20px 0 0 !important;
  max-width: 80%;
}
.messages .message .message-avatar {
  height: 42px;
  width: 42px;
  border-radius: 8px;
  overflow: hidden;
}
.messages .message .message-avatar img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.messages .message .message-content .message-bubble {
  font-size: 16px;
  padding: 18px;
  line-height: 22px;
}
.messages .message .message-content .message-bubble:before {
  content: none;
}
.messages .message .message-content .message-name {
  display: none;
}
.messages .message.message-received .message-content .message-bubble {
  background: #ffffff;
  color: #262626;
  border-radius: 18px 18px 18px 0;
}
.messages .message.message-received .message-avatar + .message-content {
  margin-left: 15px;
}
.messages .message.message-sent .message-content .message-bubble {
  color: #fff;
  border-radius: 18px 0 18px 18px;
}

.dz-banner-height {
  height: 300px;
  width: 100%;
  display: block;
}

.swiper-container.swiper-slider-wrapper {
  position: absolute;
  top: 0;
  height: 420px;
}
.swiper-container.swiper-slider-wrapper .swiper-slide img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.swiper-container.swiper-slider-wrapper .swiper-pagination {
  bottom: 60px;
}

.navbar-items .navbar-inner {
  background: -moz-linear-gradient(
    top,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(125, 185, 232, 0) 100%
  );
  /* FF3.6-15 */
  background: -webkit-linear-gradient(
    top,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(125, 185, 232, 0) 100%
  );
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(125, 185, 232, 0) 100%
  );
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.navbar-items.navbar-transparent-visible .navbar-inner {
  background: unset;
}

.button.button-large.cart-btn {
  height: 60px;
  padding: 10px 15px;
}

.details-list {
  padding: 0;
  margin: 0;
}
.details-list li {
  display: block;
  color: #000;
  font-size: 14px;
  padding: 5px 0;
  font-weight: 400;
}
.details-list li span {
  color: #777777;
  float: right;
}

.item-details .item-info {
  border-top: 1px solid var(--border-color);
  padding: 25px 0;
}
.item-details .item-info .title {
  color: #4e4e4e;
}
.item-details .main-info .item-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.item-details .main-info .item-inner .item-title {
  margin: 0;
}
.item-details .main-info .price {
  font-weight: 600;
  font-size: 20px;
  color: #000;
}
.item-details .main-info .price del {
  font-size: 14px;
  font-weight: 500;
  color: #929292;
  margin-left: 8px;
}
.item-details .main-info .dz-badge {
  line-height: 14px;
  font-size: 14px;
}
.item-details .reviews-info {
  display: flex;
  align-items: center;
  justify-content: center;
}
.item-details .reviews-info i {
  color: #ffa800;
  font-size: 20px;
  margin-right: 10px;
}
.item-details .reviews-info .reviews {
  margin: 0;
}
.item-details .details-meta ul {
  margin: 0;
  padding: 0;
}
.item-details .details-meta ul svg,
.item-details .details-meta ul i {
  margin-right: 10px;
}
.item-details .details-meta ul li {
  display: inline-flex;
  align-items: center;
  color: #000;
  margin-right: 15px;
}

.tags-swiper .swiper-slide {
  width: auto;
}

.bookmark-btn.bookmark-bx {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  text-align: center;
  background-color: #fff;
  border-radius: 12px;
  height: 58px;
  padding: 0;
  min-width: 58px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Notification List */
.notification-list {
  padding: 0;
}
.notification-list ul {
  padding: 0;
  margin: 0;
}
.notification-list ul li {
  margin: 0 0 15px 0;
  display: block;
}
.notification-list ul li .card {
  padding: 20px 20px;
  border-radius: 8px;
  margin: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.notification-list ul li .item-title {
  margin: 0 0 12px;
}
.notification-list ul li .item-title i {
  font-size: 14px;
  margin-right: 5px;
}
.notification-list ul li .item-text {
  font-size: 14px;
  margin-bottom: 15px;
  line-height: 22px;
}
.notification-list ul li .item-time {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #787878;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 12px 20px 0;
  margin: 0 -20px -5px;
}
.notification-list ul li .time i {
  font-size: 16px;
  margin-right: 3px;
}
.notification-list ul li .mark {
  font-weight: 500;
}

.notification-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  width: 100%;
}
.notification-bar .title {
  margin: 0;
}
.notification-bar span {
  display: block;
  margin-bottom: 5px;
  color: #000;
}
.notification-bar .iconbar {
  display: flex;
  align-items: center;
}
.notification-bar .icon-bx {
  position: relative;
  height: 48px;
  width: 48px;
  /* border-radius: 12px;
    border: 1px solid var(--border-color); */
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
}
.notification-bar .icon-bx .badge {
  font-size: 12px;
  border: 2px solid #fff;
  position: absolute;
  right: 0;
  top: -3px;
  border-radius: 50%;
  background-color: var(--f7-theme-color);
  color: #fff;
  height: 20px;
  width: 20px;
  display: block;
  box-sizing: unset;
  padding: 0;
  line-height: 20px;
}

.active-badge {
  position: relative;
  display: flex;
}
.active-badge .active {
  font-size: 6px;
  border: 2px solid var(--f7-theme-color-white);
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: 0;
}

/* Sidebar Menu */
.sidebar-logo {
  padding: 30px;
  position: relative;
}
.sidebar-logo a {
  display: block;
}
.sidebar-logo a img {
  width: 165px;
}

.sidebar-left:after {
  content: none;
}
.sidebar-left .title {
  margin: 0;
  padding: 30px;
}
.sidebar-left .panel-close {
  display: block;
  color: #000;
  font-size: 28px;
  position: absolute;
  right: 25px;
  top: 32px;
  line-height: 1;
}
.sidebar-left .nav-bar {
  margin: 0;
}
.sidebar-left .nav-bar ul {
  margin: 0;
  padding: 0;
  background-color: var(--f7-theme-color-white);
}
.sidebar-left .nav-bar ul:before,
.sidebar-left .nav-bar ul:after {
  content: none;
}
.sidebar-left .nav-bar ul li {
  list-style: none;
  display: block;
  margin: 0;
  padding: 0 !important;
}
.sidebar-left .nav-bar ul li a {
  display: flex;
  align-items: center;
  color: #b0acb3;
  font-size: 15px;
  padding: 8px 20px;
  position: relative;
  margin: 0;
  border-radius: 0 !important;
}
.sidebar-left .nav-bar ul li a .icon-bx {
  height: 35px;
  width: 35px;
  background-color: var(--f7-theme-color);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 10px var(--f7-theme-color-rgb);
  margin-right: 15px;
}
.sidebar-left .nav-bar ul li a svg {
  width: 16px;
}
.sidebar-left .nav-bar ul li a i {
  transform: scale(1.4);
  -moz-transform: scale(1.4);
  -webkit-transform: scale(1.4);
  -ms-transform: scale(1.4);
  -o-transform: scale(1.4);
  margin-right: 15px;
}
.sidebar-left .nav-bar ul li a path[fill],
.sidebar-left .nav-bar ul li a path {
  fill: #fff;
}
.sidebar-left .nav-bar ul li a i {
  color: #fff;
}
.sidebar-left .nav-bar ul li a.item-selected {
  background: var(--f7-theme-color-light);
  /* path[fill],
          path{
          	fill: var(--f7-theme-color);
          }
          i,
          span{
          	color: #fff;	
          } */
}
.sidebar-left .page-content {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.sidebar-footer {
  padding: 20px 25px;
}
.sidebar-footer .name {
  color: #b1b1c3;
  font-weight: 500;
  font-size: 15px;
  margin-top: 0;
  margin-bottom: 5px;
}
.sidebar-footer p {
  color: #b1b1c3;
  font-weight: 400;
  font-size: 12px;
  margin-top: 0;
  margin-bottom: 0;
}

.main-profile {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 20px;
}
.main-profile .dz-media {
  width: 50px;
  height: 50px;
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  margin-right: 15px;
}
.main-profile .title {
  padding: 0;
}

.cart-item {
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.05);
  padding: 0 20px;
}
.cart-item .item-head {
  padding: 15px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-item .item-head .item-num {
  font-size: 16px;
  margin: 0;
}
.cart-item .item-head .status {
  margin: 0;
}
.cart-item .item-body {
  display: flex;
  padding-bottom: 20px;
}
.cart-item .item-body .dz-media {
  width: 60px;
  min-width: 60px;
  border-radius: 12px;
  overflow: hidden;
  height: 90px;
}
.cart-item .item-body .dz-media img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cart-item .item-body .dz-info {
  width: 100%;
  padding: 0 0 0 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cart-item .item-body .dz-info .item-title {
  margin: 0;
}
.cart-item .item-body .dz-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-item .item-body .price {
  color: #777777;
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}
.cart-item .item-body .price del {
  font-size: 14px;
  margin-right: 8px;
}
.cart-item .item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-color);
  padding: 15px 0;
}
.cart-item .item-footer .total {
  margin: 0;
}
.cart-item .item-footer .total-price {
  margin: 0;
  font-weight: 500;
}

.container.pa-0 {
  padding-left: 0;
  padding-right: 0;
}

.nav-wizard {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  background-color: #fff;
  padding: 25px 0 15px;
  position: relative;
  margin: 0 auto;
  overflow: hidden;
}
.nav-wizard:before,
.nav-wizard:after {
  content: "";
  height: 2px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 24px;
}
.nav-wizard:before {
  background-color: var(--f7-theme-color);
}
.nav-wizard:after {
  background: -moz-linear-gradient(
    left,
    white 0%,
    rgba(255, 255, 255, 0) 54%,
    white 100%
  );
  /* FF3.6-15 */
  background: -webkit-linear-gradient(
    left,
    white 0%,
    rgba(255, 255, 255, 0) 54%,
    white 100%
  );
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(
    to right,
    white 0%,
    rgba(255, 255, 255, 0) 54%,
    white 100%
  );
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  z-index: 1;
}
.nav-wizard li {
  display: inline-block;
}
.nav-wizard li .nav-link {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}
.nav-wizard li .nav-link span {
  margin-bottom: 40px;
  display: block;
  font-weight: 500;
  font-size: 16px;
  opacity: 0.4;
  color: #000;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100px;
  overflow: hidden;
  justify-content: center;
  text-align: center;
}
.nav-wizard li .nav-link.active:before,
.nav-wizard li .nav-link.active:after {
  content: "";
  position: absolute;
  transform: translateX(-50%);
  border-radius: 50%;
  left: 50%;
}
.nav-wizard li .nav-link.active:before {
  bottom: 0;
  height: 20px;
  width: 20px;
  border: 6px solid var(--f7-theme-color);
  background-color: #fff;
  box-sizing: border-box;
  z-index: 1;
}
.nav-wizard li .nav-link.active:after {
  bottom: -6px;
  height: 30px;
  border: 1px solid var(--f7-theme-color);
  width: 30px;
  opacity: 0.2;
}
.nav-wizard li .nav-link.active span {
  opacity: 1;
  font-weight: 600;
  font-size: 18px;
  max-width: 180px;
  width: 180px;
}
.nav-wizard li:first-child .nav-link:after {
  left: auto;
  right: 0;
}

.btn-icon {
  justify-content: space-between;
}
.btn-icon i {
  font-size: 22px;
}

.payment-swiper .swiper-slide {
  width: auto;
}

.payment-card {
  width: 285px;
  height: 170px;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}
.payment-card .card-media {
  display: flex;
  width: 100%;
  height: 100%;
}
.payment-card .card-info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  padding: 25px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: 100%;
}
.payment-card .card-name {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  margin: 0 0 15px;
}
.payment-card .card-number {
  color: #fff;
  font-size: 16px;
  margin: 0;
  font-weight: 300;
  letter-spacing: 2px;
}
.payment-card .bottom-info {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.payment-card .bottom-info p {
  font-weight: 300;
  margin: 0;
  font-size: 16px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.4);
}

.checkout-details .checkout-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}
.checkout-details .checkout-total .title {
  margin: 0;
  font-size: 16px;
}
.checkout-details .checkout-total .checkout-total {
  margin: 0;
}

.author-bx {
  text-align: center;
  padding: 30px 0;
}
.author-bx .dz-media {
  height: 105px;
  width: 105px;
  min-width: 105px;
  position: relative;
  box-sizing: border-box;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 25px;
}
.author-bx .dz-media img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.author-bx .name {
  margin: 0 0 10px;
  font-size: 28px;
}
.author-bx p {
  margin: 0;
  font-size: 16px;
}

.widget_getintuch ul {
  padding: 0;
  margin: 0;
}
.widget_getintuch ul li {
  display: flex;
  width: 100%;
  margin-bottom: 25px;
}
.widget_getintuch ul li .icon-bx {
  height: 54px;
  min-width: 54px;
  text-align: center;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  margin-right: 15px;
}
.widget_getintuch ul li .icon-bx svg {
  height: 54px;
}
.widget_getintuch ul li .sub-title {
  font-size: 12px;
  margin: 0 0 10px;
  font-weight: 500;
}
.widget_getintuch ul li .title {
  margin: 0;
}

/* Theme Dark */
.theme-dark h1,
.theme-dark h2,
.theme-dark h3,
.theme-dark h4,
.theme-dark h5,
.theme-dark h6,
.theme-dark h1 a,
.theme-dark h2 a,
.theme-dark h3 a,
.theme-dark h4 a,
.theme-dark h5 a,
.theme-dark h6 a,
.theme-dark .navbar .navbar-inner .title,
.theme-dark .main-logo.center .logo-name,
.theme-dark .button-social,
.theme-dark .delivery-man p,
.theme-dark .categories-swiper .swiper-slide-active .categories-bx2 .title,
.theme-dark
  .messages
  .message.message-received
  .message-content
  .message-bubble,
.theme-dark .dz-accordion .accordion-item .item-link.item-content .item-title,
.theme-dark .nav-wizard li .nav-link span,
.theme-dark .item-details .details-meta ul li,
.theme-dark .details-list li,
.theme-dark .item-details .main-info .price {
  color: #fff;
}
.theme-dark body {
  color: #cecece;
}

/* Border Color */
.theme-dark .navbar,
.theme-dark .menubar-area,
.theme-dark .border-top,
.theme-dark .searchbar.search-box .searchbar-input-wrap input,
.theme-dark
  .form-elements
  ul
  .item-content
  .item-inner
  .item-input-wrap
  .form-control,
.theme-dark .messagebar .toolbar-inner,
.theme-dark .page-content .searchbar.search-box .searchbar-input-wrap input,
.theme-dark
  .form-elements
  ul
  .item-content
  .item-inner
  .item-input-wrap
  .number-select,
.theme-dark .search-list-bar ul li,
.theme-dark .button-social.google,
.theme-dark .navbar.navbar-style-1 a.link,
.theme-dark .item-details .stepper,
.theme-dark .notification-list ul li .item-time {
  border-color: #333333;
}

/* Background Color */
.theme-dark body,
.theme-dark .page,
.theme-dark .page-content,
.theme-dark .tab-style-1,
.theme-dark .footer-button,
.theme-dark .page-onboading .page-content,
.theme-dark .card-featured .icon-bx,
.theme-dark .light.page,
.theme-dark .light .page-content,
.theme-dark .light .navbar,
.theme-dark .light .toolbar,
.theme-dark .toolbar.messagebar,
.theme-dark .notification-list .card,
.theme-dark .nav-wizard,
.theme-dark
  .dz-accordion
  .accordion-item
  .item-link.item-content
  .item-title:before {
  background: #151515;
}
.theme-dark .navbar .navbar-bg {
  background: #151515 !important;
}
.theme-dark .page.bg-gray,
.theme-dark .page-content.bg-gray {
  background: #080808 !important;
}

/* Background Color Dark 2 */
.theme-dark .view-logo .logo-icon,
.theme-dark .page-content .searchbar.search-box .searchbar-input-wrap input,
.theme-dark .tabbar.tab-style-1 .toolbar-inner,
.theme-dark .button.button-gray,
.theme-dark .dz-range .range-slider .range-bar,
.theme-dark .messagebar .toolbar-inner .demo-send-message-link,
.theme-dark .store-card,
.theme-dark .widget_getintuch ul li .icon-bx,
.theme-dark .item-bx,
.theme-dark
  .messages
  .message.message-received
  .message-content
  .message-bubble,
.theme-dark .bookmark-btn.bookmark-bx {
  background-color: #000;
}

/* Theme Color White */
.theme-dark .text-black,
.theme-dark
  .form-elements
  ul
  .item-content
  .item-inner
  .item-input-wrap
  .form-control,
.theme-dark .navbar.navbar-transparent.navbar-transparent-visible .title,
.theme-dark .navbar.navbar-transparent.navbar-transparent-visible a,
.theme-dark .navbar.navbar-transparent.navbar-transparent-visible i,
.theme-dark .navbar a.link,
.theme-dark .tab-style-1 .tab-link.tab-link-active,
.theme-dark
  .search-list-bar
  .item-content
  .item-inner
  .item-title-row
  .item-title,
.theme-dark .tabbar.tab-style-1 .tab-link.tab-link-active,
.theme-dark .tabbar.tab-style-2 .tab-link,
.theme-dark .panel-close i,
.theme-dark .notification-bar span,
.theme-dark .featured-card .location,
.theme-dark .company-details .head-details .block-btn .title,
.theme-dark .get-started p,
.theme-dark .item-bx .price,
.theme-dark .item-details .price-bx .price del,
.theme-dark .item-details .stepper input {
  color: #cecece;
}

/* Theme Dark Color Fill White */
.theme-dark .navbar a.link path[fill],
.theme-dark .navbar a.link path,
.theme-dark .navbar a.link rect,
.theme-dark .navbar a.link rect[fill],
.theme-dark .navbar a.link [fill],
.theme-dark .navbar.navbar-style-1 .navbar-inner .link.back [fill],
.theme-dark .navbar.navbar-style-1 .navbar-inner .link.back path {
  fill: #fff;
}

/* Theme Color Second */
.theme-dark .search-list-bar .item-content .item-inner .item-text,
.theme-dark
  .form-elements
  ul
  .item-content
  .item-inner
  .item-input-wrap
  .form-control::placeholder,
.theme-dark .account-area p,
.theme-dark .account-area .form-text {
  color: #969696;
}

.theme-dark
  .navbar.navbar-style-1.navbar-transparent.navbar-transparent-visible
  .title {
  color: #fff;
}

/* Background Color White */
.theme-dark .swiper-pagination-bullet {
  background: #fff;
}

.theme-dark .nav-wizard:after {
  background: -moz-linear-gradient(
    left,
    #151515 0%,
    rgba(0, 0, 0, 0) 54%,
    #151515 100%
  );
  background: -webkit-linear-gradient(
    left,
    #151515 0%,
    rgba(0, 0, 0, 0) 54%,
    #151515 100%
  );
  background: linear-gradient(
    to right,
    #151515 0%,
    rgba(0, 0, 0, 0) 54%,
    #151515 100%
  );
}

/* Theme Color Dark Variable */
.ios .theme-dark,
.ios.theme-dark {
  --f7-text-color: #fff;
  --f7-bars-bg-color: #121212;
  --f7-bars-bg-color-rgb: 22, 22, 22;
  --f7-bars-border-color: rgba(255, 255, 255, 0.16);
  --f7-page-bg-color: #040e01;
}

:root .theme-dark,
:root.theme-dark,
:root.md.theme-dark {
  --f7-bars-text-color: #fff;
  --f7-block-title-text-color: #fff;
  --f7-block-strong-border-color: rgba(255, 255, 255, 0.15);
  --f7-block-title-medium-text-color: #fff;
  --f7-block-title-large-text-color: #fff;
  --f7-block-strong-bg-color: #030b00;
  --f7-list-button-border-color: rgba(255, 255, 255, 0.15);
  --f7-list-bg-color: #030b00;
  --f7-list-border-color: rgba(255, 255, 255, 0.15);
  --f7-list-item-border-color: rgba(255, 255, 255, 0.15);
  --f7-list-item-divider-border-color: rgba(255, 255, 255, 0.15);
  --f7-list-item-divider-bg-color: #232323;
  --f7-list-group-title-bg-color: #232323;
  --f7-list-chevron-icon-color: rgba(255, 255, 255, 0.3);
  --f7-card-bg-color: #030b00;
  --f7-bars-bg-color: #030b00;
  --f7-theme-color-light: #040e01;
  --f7-theme-color-white: #151515;
  --border-color: #333333;
}

/* Theme Color */
:root,
.md:not([class*="color-theme"]) {
  --f7-theme-color: #2b39b9;
  --f7-theme-color-rgb: 43, 57, 185;
  --f7-theme-color-shade: #0b1bb3;
  --f7-theme-color-tint: #07ac72;
  --f7-theme-color-light: #dde0ff;
}

.color-theme-red {
  --f7-theme-color: #ff3b30;
  --f7-theme-color-rgb: 255, 59, 48;
  --f7-theme-color-shade: #ff1407;
  --f7-theme-color-tint: #ff6259;
  --f7-theme-color-light: #fbe6e4;
}

.color-theme-green {
  --f7-theme-color: #09c36a;
  --f7-theme-color-rgb: 76, 217, 100;
  --f7-theme-color-shade: #2cd048;
  --f7-theme-color-tint: #6ee081;
  --f7-theme-color-light: #e7f7e9;
}

.color-theme-blue {
  --f7-theme-color: #2196f3;
  --f7-theme-color-rgb: 33, 150, 243;
  --f7-theme-color-shade: #0c82df;
  --f7-theme-color-tint: #48a8f5;
  --f7-theme-color-light: #e7eff6;
}

.color-theme-pink {
  --f7-theme-color: #ff2d55;
  --f7-theme-color-rgb: 255, 45, 85;
  --f7-theme-color-shade: #ff0434;
  --f7-theme-color-tint: #ff5676;
  --f7-theme-color-light: #f6e0e4;
}

.color-theme-yellow {
  --f7-theme-color: #ffcc00;
  --f7-theme-color-rgb: 255, 204, 0;
  --f7-theme-color-shade: #d6ab00;
  --f7-theme-color-tint: #ffd429;
  --f7-theme-color-light: #f2efe4;
}

.color-theme-orange {
  --f7-theme-color: #ff8900;
  --f7-theme-color-rgb: 255, 149, 0;
  --f7-theme-color-shade: #d67d00;
  --f7-theme-color-tint: #ffa629;
  --f7-theme-color-light: #f9f2e8;
}

.color-theme-purple {
  --f7-theme-color: #ad00ff;
  --f7-theme-color-rgb: 156, 39, 176;
  --f7-theme-color-shade: #7e208f;
  --f7-theme-color-tint: #b92fd1;
  --f7-theme-color-light: #f2dbf6;
}

.color-theme-deeppurple {
  --f7-theme-color: #673ab7;
  --f7-theme-color-rgb: 103, 58, 183;
  --f7-theme-color-shade: #563098;
  --f7-theme-color-tint: #7c52c8;
  --f7-theme-color-light: #f0eaf9;
}

.color-theme-lightblue {
  --f7-theme-color: #5ac8fa;
  --f7-theme-color-rgb: 90, 200, 250;
  --f7-theme-color-shade: #32bbf9;
  --f7-theme-color-tint: #82d5fb;
  --f7-theme-color-light: #e2eff5;
}

.color-theme-teal {
  --f7-theme-color: #009688;
  --f7-theme-color-rgb: 0, 150, 136;
  --f7-theme-color-shade: #006d63;
  --f7-theme-color-tint: #00bfad;
  --f7-theme-color-light: #e3f5f3;
}

.color-theme-lime {
  --f7-theme-color: #cddc39;
  --f7-theme-color-rgb: 205, 220, 57;
  --f7-theme-color-shade: #bac923;
  --f7-theme-color-tint: #d6e25c;
  --f7-theme-color-light: #f0f1e5;
}

.color-theme-deeporange {
  --f7-theme-color: #ff6b22;
  --f7-theme-color-rgb: 255, 107, 34;
  --f7-theme-color-shade: #f85200;
  --f7-theme-color-tint: #ff864b;
  --f7-theme-color-light: #fcf2ed;
}

.color-theme-gray {
  --f7-theme-color: #8e8e93;
  --f7-theme-color-rgb: 142, 142, 147;
  --f7-theme-color-shade: #79797f;
  --f7-theme-color-tint: #a3a3a7;
  --f7-theme-color-light: #f5f5f5;
}

.color-theme-white {
  --f7-theme-color: #ffffff;
  --f7-theme-color-rgb: 255, 255, 255;
  --f7-theme-color-shade: #ebebeb;
  --f7-theme-color-tint: #ffffff;
  --f7-theme-color-light: #f5f5f5;
}

.color-theme-black:not(.theme-dark) {
  --f7-theme-color: #000000;
  --f7-theme-color-rgb: 0, 0, 0;
  --f7-theme-color-shade: #000000;
  --f7-theme-color-tint: #141414;
  --f7-theme-color-light: #f5f5f5;
}

.color-red {
  --f7-theme-color: #ff3b30;
  --f7-theme-color-rgb: 255, 59, 48;
  --f7-theme-color-shade: #ff1407;
  --f7-theme-color-tint: #ff6259;
  --f7-theme-color-light: #f4e9e9;
}

.navbar {
  background: var(--f7-theme-color-white);
}
.navbar a.link {
  padding: 0 10px !important;
  justify-content: center;
  color: #000;
  min-width: 46px;
}
.navbar a.link i {
  font-size: 32px;
  fill: #000000;
}
.navbar a.link [fill],
.navbar a.link path {
  fill: #000000;
}
.navbar .navbar-inner {
  max-width: 1024px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 28px;
}
.navbar .navbar-inner .title {
  color: #000;
  font-weight: 600;
  width: 100%;
  margin-left: 10px;
  margin-right: 10px;
}
.navbar.navbar-style-1 {
  height: 70px;
}
.navbar.navbar-style-1 .navbar-inner .link.back {
  min-height: 46px;
  min-width: 46px;
  border-radius: 50px;
  padding: 0;
  text-align: center;
  justify-content: center;
}
.navbar.navbar-style-1 .navbar-inner .link.back [fill],
.navbar.navbar-style-1 .navbar-inner .link.back path {
  fill: #373737;
}
.navbar.navbar-style-1 .navbar-inner .title {
  text-align: center;
}
.navbar.navbar-style-1 .navbar-inner .link.panel-open {
  padding: 0 0 0 10px !important;
  min-width: 40px;
}
.navbar.navbar-style-1.navbar-transparent {
  background-color: transparent;
  border-color: transparent;
}
.navbar.navbar-style-1.navbar-transparent a.link [fill],
.navbar.navbar-style-1.navbar-transparent a.link path {
  fill: #fff;
}
.navbar.navbar-style-1.navbar-transparent a.link .title,
.navbar.navbar-style-1.navbar-transparent a.link a,
.navbar.navbar-style-1.navbar-transparent a.link i {
  color: #fff;
}
.navbar.navbar-style-1.navbar-transparent .title {
  opacity: 1 !important;
  color: #fff;
}
.navbar.navbar-style-1.navbar-transparent .link.back [fill],
.navbar.navbar-style-1.navbar-transparent .link.back path {
  fill: #fff;
}
.navbar.navbar-style-1.navbar-transparent.navbar-transparent-visible {
  background: var(--f7-theme-color-white);
  border-color: 1px solid #f4f4f4;
}
.navbar.navbar-style-1.navbar-transparent.navbar-transparent-visible
  a.link
  .title,
.navbar.navbar-style-1.navbar-transparent.navbar-transparent-visible a.link a,
.navbar.navbar-style-1.navbar-transparent.navbar-transparent-visible a.link i {
  color: var(--f7-theme-color);
}
.navbar.navbar-style-1.navbar-transparent.navbar-transparent-visible
  a.link
  [fill],
.navbar.navbar-style-1.navbar-transparent.navbar-transparent-visible
  a.link
  path {
  fill: var(--f7-theme-color);
}
.navbar.navbar-style-1.navbar-transparent.navbar-transparent-visible
  .add-wishlist-btn
  i {
  color: var(--f7-theme-color);
}
.navbar.navbar-style-1.navbar-transparent.navbar-transparent-visible
  .link.back
  [fill],
.navbar.navbar-style-1.navbar-transparent.navbar-transparent-visible
  .link.back
  path {
  fill: #373737;
}
.navbar.navbar-style-1.navbar-transparent.navbar-transparent-visible .title {
  color: #000;
}

.tabbar.tab-style-1 {
  height: auto;
  background-color: transparent;
  z-index: 9;
}
.tabbar.tab-style-1 .toolbar-inner {
  padding: 10px;
  background-color: #ededed;
  border-radius: 8px;
}
.tabbar.tab-style-1:before,
.tabbar.tab-style-1:after {
  content: none;
}
.tabbar.tab-style-1 .tab-link-highlight {
  display: none;
}
.tabbar.tab-style-1 .tab-link {
  font-size: 16px;
  line-height: 16px;
  text-transform: capitalize;
  letter-spacing: unset;
  font-weight: 500;
  width: auto;
  padding: 14px 24px;
  height: 46px;
  background-color: transparent;
  border-radius: 30px;
  border: 1px solid var(--f7-theme-color);
  color: var(--f7-theme-color);
}
.tabbar.tab-style-1 .tab-link.tab-link-active {
  color: #fff;
  background-color: var(--f7-theme-color);
}
.tabbar.tab-style-1 .swiper-slide {
  width: auto;
}
.tabbar.tab-style-2 {
  background-color: transparent;
  margin-left: -20px;
  border-bottom: 1px solid var(--border-color);
}
.tabbar.tab-style-2:before,
.tabbar.tab-style-2:after {
  content: none;
}
.tabbar.tab-style-2 .tab-link-highlight {
  display: none;
}
.tabbar.tab-style-2 .swiper-slide {
  width: auto;
}
.tabbar.tab-style-2 .swiper-slide:first-child {
  margin-left: 20px;
}
.tabbar.tab-style-2 .tab-link {
  font-size: 18px;
  letter-spacing: unset;
  text-transform: capitalize;
  border-bottom: 3px solid;
  border-color: transparent;
  opacity: 0.7;
  height: 50px;
  padding: 10px 15px;
}
.tabbar.tab-style-2 .tab-link.tab-link-active {
  border-color: var(--f7-theme-color);
  opacity: 1;
}
@media only screen and (max-width: 991px) {
  .tabbar.tab-style-2 {
    margin-right: -20px;
  }
}
.tabbar.tab-style-3 {
  background-color: transparent;
  width: 105px;
}
.tabbar.tab-style-3:before,
.tabbar.tab-style-3:after {
  content: none;
}
.tabbar.tab-style-3 .tab-link-highlight {
  display: none;
}
.tabbar.tab-style-3 .tab-link {
  max-width: 48px;
  height: 48px;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tabbar.tab-style-3 .tab-link i {
  color: #cacaca;
}
.tabbar.tab-style-3 .tab-link path[fill],
.tabbar.tab-style-3 .tab-link path {
  fill: #cacaca;
}
.tabbar.tab-style-3 .tab-link.tab-link-active i {
  color: var(--f7-theme-color);
}
.tabbar.tab-style-3 .tab-link.tab-link-active path[fill],
.tabbar.tab-style-3 .tab-link.tab-link-active path {
  fill: var(--f7-theme-color);
}

.button {
  letter-spacing: unset;
}
.button.button-large {
  font-size: 16px;
  padding: 20px 25px;
  height: auto;
  line-height: 1.3;
  font-weight: 600;
}
.button.color-light {
  background-color: var(--f7-theme-color-light);
  color: var(--f7-theme-color);
}
.button.button-secondary {
  background-color: #5b5b5b;
  color: #313131;
}
.button.button-gray {
  background-color: #e5e5e5;
  color: #646464;
}

.rounded-sm {
  border-radius: 8px;
}
.rounded-md {
  border-radius: 12px;
}
.rounded-lg {
  border-radius: 18px;
}
.rounded-xl {
  border-radius: 50px;
}

.button-outline {
  border-width: 1px;
}

.button-social {
  text-transform: capitalize;
  color: #242424;
}
.button-social img {
  width: 24px;
  margin-right: auto;
}
.button-social span {
  width: 100%;
}
.button-social.facebook {
  border: 1px solid #376aed;
}
.button-social.google {
  border: 1px solid #d1d1d1;
}

.button-light {
  background-color: #e8ffe0;
  color: var(--f7-theme-color);
}

.button-primary-light {
  background-color: var(--f7-theme-color-light);
  color: var(--f7-theme-color);
}

.button-yellow-dark {
  background-color: #e59f60;
}
.button-yellow-dark.shadow {
  box-shadow: 0 0 10px rgba(229, 159, 96, 0.1);
}

.overlay-black-light,
.overlay-black-middle,
.overlay-black-dark,
.overlay-gradient-light,
.overlay-gradient-middle,
.overlay-gradient-dark,
.overlay-white-light,
.overlay-white-middle,
.overlay-white-dark,
.overlay-primary-light,
.overlay-primary-middle,
.overlay-primary-dark,
.overlay-primary {
  position: relative;
}
.overlay-black-light:before,
.overlay-black-middle:before,
.overlay-black-dark:before,
.overlay-gradient-light:before,
.overlay-gradient-middle:before,
.overlay-gradient-dark:before,
.overlay-white-light:before,
.overlay-white-middle:before,
.overlay-white-dark:before,
.overlay-primary-light:before,
.overlay-primary-middle:before,
.overlay-primary-dark:before,
.overlay-primary:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.overlay-black-light .container,
.overlay-black-light .container-fluid,
.overlay-black-middle .container,
.overlay-black-middle .container-fluid,
.overlay-black-dark .container,
.overlay-black-dark .container-fluid,
.overlay-gradient-light .container,
.overlay-gradient-light .container-fluid,
.overlay-gradient-middle .container,
.overlay-gradient-middle .container-fluid,
.overlay-gradient-dark .container,
.overlay-gradient-dark .container-fluid,
.overlay-white-light .container,
.overlay-white-light .container-fluid,
.overlay-white-middle .container,
.overlay-white-middle .container-fluid,
.overlay-white-dark .container,
.overlay-white-dark .container-fluid,
.overlay-primary-light .container,
.overlay-primary-light .container-fluid,
.overlay-primary-middle .container,
.overlay-primary-middle .container-fluid,
.overlay-primary-dark .container,
.overlay-primary-dark .container-fluid,
.overlay-primary .container,
.overlay-primary .container-fluid {
  position: relative;
  z-index: 1;
}

.overlay-black-light:before,
.overlay-black-middle:before,
.overlay-black-dark:before {
  background: #000;
}

.overlay-gradient-light:before,
.overlay-gradient-middle:before,
.overlay-gradient-dark:before {
  background: var(--gradient);
  background-size: 200%;
}

.overlay-white-light:before,
.overlay-white-middle:before,
.overlay-white-dark:before {
  background: #fff;
}

.overlay-primary-light:before,
.overlay-primary-middle:before,
.overlay-primary-dark:before,
.overlay-primary:before {
  background: var(--f7-theme-color);
}

.overlay-primary-light:before,
.overlay-white-light:before,
.overlay-gradient-light:before,
.overlay-black-light:before {
  opacity: 0.3;
}

.overlay-primary-middle:before,
.overlay-white-middle:before,
.overlay-gradient-middl:before,
.overlay-black-middle:before {
  opacity: 0.5;
}

.overlay-primary-dark:before,
.overlay-white-dark:before,
.overlay-gradient-dark:before,
.overlay-black-dark:before {
  opacity: 0.8;
}

.badge-lg {
  height: auto;
  padding: 10px 20px;
  border-radius: 30px;
  color: #fff;
  font-size: 18px;
  line-height: 18px;
  background-color: var(--f7-theme-color);
  display: inline-flex;
}
.badge-lg strong {
  margin-right: 5px;
  font-weight: 600;
}

.badge-md {
  background-color: var(--f7-theme-color-light);
  border: 1px solid var(--f7-theme-color);
  color: var(--f7-theme-color);
  font-size: 14px;
  border-radius: 8px;
  padding: 10px 18px;
  line-height: 14px;
  font-weight: 500;
  display: inline-block;
}

.dz-badge {
  border-radius: 4px;
  padding: 5px 8px;
  height: auto;
  line-height: 12px;
  font-size: 12px;
  color: #fff;
}

.badge-primary {
  background-color: var(--f7-theme-color);
}

.badge-success {
  background-color: #1eb840;
}

.badge-info {
  background-color: #6798ff;
}

.badge-warning {
  background-color: #ff9838;
}

.badge-danger {
  background-color: #e93737;
}

.searchbar input[type="search"],
.searchbar input[type="text"] {
  font-size: 16px;
}

.page-content .searchbar.search-box {
  height: 60px;
  box-shadow: unset;
  margin: 0 0 20px;
  border-radius: 18px;
  width: 100%;
  background-color: transparent;
}
.page-content .searchbar.search-box .searchbar-input-wrap input {
  height: 60px;
  background-color: #efefef;
  font-size: 16px;
  padding: 12px 50px 12px 25px;
  border-radius: 18px;
  font-weight: 400;
  color: #585858;
}
.page-content .searchbar.search-box .searchbar-input-wrap .searchbar-icon {
  right: 25px;
  margin: 0;
  top: 18px;
  left: auto;
}
.page-content
  .searchbar.search-box
  .searchbar-input-wrap
  .searchbar-icon:after {
  content: none;
}

.swiper-pagination1 .swiper-pagination-bullets {
  bottom: 0;
}
.swiper-pagination1 .swiper-pagination-bullet {
  width: 16px;
  height: 5px;
  border-radius: 10px;
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}
.swiper-pagination1 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 30px;
}

.item-bx {
  position: relative;
  background-color: var(--f7-theme-color-white);
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}
.item-bx .dz-media {
  position: relative;
}
.item-bx .dz-media img {
  width: 100%;
  height: 100%;
  display: flex;
}
.item-bx .dz-info {
  padding: 20px 15px 15px;
}
.item-bx .item-title {
  font-weight: 600;
  margin: 0 0 15px;
  white-space: normal;
}
.item-bx .price {
  font-weight: 600;
  font-size: 18px;
  color: #000;
}
.item-bx .price del {
  font-size: 12px;
  font-weight: 500;
  color: #929292;
  margin-left: 8px;
}
.item-bx .qty {
  font-size: 16px;
  line-height: 16px;
  margin-left: auto;
}
.item-bx .qty strong {
  font-weight: 600;
  margin-right: 5px;
}
.item-bx .rating {
  display: flex;
  font-size: 12px;
  align-items: center;
}
.item-bx .rating i {
  color: #ffa800;
  margin-right: 5px;
}
.item-bx .dz-footer {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.item-bx.item-list {
  display: flex;
}
.item-bx.item-list .dz-media {
  width: 120px;
  min-width: 120px;
}
.item-bx.item-list .dz-media img {
  object-fit: cover;
}
.item-bx.style-1 .item-title {
  font-size: 14px;
  margin-bottom: 10px;
}
.item-bx.style-1 .dz-info {
  padding: 18px 12px 15px;
}
.item-bx.style-1 .price {
  font-size: 16px;
  font-weight: 700;
}
.item-bx.style-1.item-list .dz-info {
  padding: 18px 20px 15px 12px;
  width: 100%;
}
.item-bx.style-2 {
  display: flex;
  padding: 12px 25px 12px 12px;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.item-bx.style-2 p {
  font-size: 12px;
  margin: 0;
  font-weight: 500;
  line-height: 12px;
}
.item-bx.style-2 .dz-info {
  padding: 0 0 0 15px;
  width: 100%;
}
.item-bx.style-2 .item-title {
  margin: 0 0 5px;
}
.item-bx.style-2 .dz-head {
  margin-bottom: 15px;
}
.item-bx.style-2 .dz-media {
  width: 93px;
  min-width: 93px;
  border-radius: 18px;
  overflow: hidden;
}
.item-bx.style-2 .dz-media img {
  object-fit: cover;
}
.item-bx.style-2 .dz-meta ul {
  justify-content: space-between;
}
.item-bx.style-3 {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
  border-radius: 18px;
  overflow: hidden;
}
.item-bx.style-3:after {
  content: "";
  background: -moz-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.9) 100%,
    black 100%
  );
  /* FF3.6-15 */
  background: -webkit-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.9) 100%,
    black 100%
  );
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.9) 100%,
    black 100%
  );
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  position: absolute;
}
.item-bx.style-3 .dz-media {
  padding: 0;
  margin: 0;
  height: 100%;
}
.item-bx.style-3 .dz-media img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.item-bx.style-3 .dz-info {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 18px 15px;
  box-sizing: border-box;
  color: #fff;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.item-bx.style-3 .item-title {
  margin: 0 0 5px;
  font-weight: 400;
  color: #fff;
  font-size: 14px;
}
.item-bx.style-3 .item-title a {
  color: #fff;
}
.item-bx.style-3 .price {
  margin: 0;
  font-weight: 600;
  color: #fff;
}
.item-bx.style-3.center .dz-info {
  justify-content: center;
  text-align: center;
}

.items-swiper {
  margin-left: -20px;
}
.items-swiper .swiper-slide {
  width: 205px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.items-swiper .swiper-slide:first-child {
  margin-left: 20px;
}
@media only screen and (max-width: 991px) {
  .items-swiper {
    margin-right: -20px;
  }
}

/* Bookmark */
.bookmark-btn {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-family: "Font Awesome 5 Free";
}
.bookmark-btn input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
  display: none;
}
.bookmark-btn input:checked ~ .checkmark:before {
  color: var(--f7-theme-color);
}
.bookmark-btn .checkmark {
  font-weight: 900;
  line-height: 1;
}
.bookmark-btn .checkmark:after {
  content: "\f004";
  position: absolute;
  display: none;
}
.bookmark-btn .checkmark:before {
  content: "\f004";
  font-size: 20px;
  color: #b9bcd3;
}

.categories-wraper {
  align-items: unset;
}

.categories-bx {
  padding: 15px;
  background-color: var(--f7-theme-color);
  border-radius: 18px;
  position: relative;
  z-index: 1;
  height: 100%;
  box-sizing: border-box;
}
.categories-bx .icon-bx {
  position: relative;
  display: flex;
  margin-bottom: 10px;
}
.categories-bx .icon-bx i {
  color: #fff;
}
.categories-bx .icon-bx path[fill],
.categories-bx .icon-bx path {
  fill: #fff;
}
.categories-bx .sub-title {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 500;
}
.categories-bx .title {
  color: #fff;
  margin: 0;
}
.categories-bx .title a {
  color: #fff;
}
.categories-bx .bg-icon {
  position: absolute;
  opacity: 0.2;
  right: 0px;
  top: 30px;
  width: 80px;
  z-index: -1;
  height: auto;
}
.categories-bx .menus {
  margin: 5px 0;
  display: block;
  font-weight: 500;
  color: #fff;
  font-size: 12px;
}
.categories-bx .menus a {
  color: #fff;
}

.categories-bx2 {
  background-color: var(--f7-theme-color);
  text-align: center;
  color: #fff;
}
.categories-bx2 .icon-bx {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  box-sizing: border-box;
  height: 64px;
  width: 64px;
  border: 2px solid;
  border-color: var(--f7-theme-color-light);
  border-radius: 18px;
  background-color: var(--f7-theme-color-light);
}
.categories-bx2 .icon-bx i {
  color: var(--f7-theme-color);
}
.categories-bx2 .icon-bx path[fill],
.categories-bx2 .icon-bx path {
  fill: var(--f7-theme-color);
}
.categories-bx2 .title {
  font-size: 12px;
  margin: 0;
  color: #606060;
}

.categories-swiper .swiper-slide {
  width: auto;
}
.categories-swiper .swiper-slide-active .categories-bx2 .icon-bx {
  border-color: var(--f7-theme-color);
}
.categories-swiper .swiper-slide-active .categories-bx2 .title {
  color: #000;
}

.dz-accordion {
  margin: 0 -20px;
}
.dz-accordion > ul:before,
.dz-accordion > ul:after {
  content: none;
}
.dz-accordion .accordion-item {
  border-bottom: 1px solid var(--border-color);
}
.dz-accordion .accordion-item .item-link.item-content {
  padding-left: 0;
}
.dz-accordion .accordion-item .item-link.item-content .item-inner {
  padding: 20px;
}
.dz-accordion .accordion-item .item-link.item-content .item-inner:before {
  right: 25px;
}
.dz-accordion .accordion-item .item-link.item-content .item-title {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  padding-left: 40px;
}
.dz-accordion .accordion-item .item-link.item-content .item-title:before,
.dz-accordion .accordion-item .item-link.item-content .item-title:after {
  content: "";
  position: absolute;
  border-radius: 50%;
}
.dz-accordion .accordion-item .item-link.item-content .item-title:before {
  height: 20px;
  width: 20px;
  background-color: #fff;
  left: 0;
  top: 0;
  border: 2px solid;
  border-color: #8e8e8f;
}
.dz-accordion .accordion-item .item-link.item-content .item-title:after {
  left: 7px;
  top: 7px;
  height: 10px;
  width: 10px;
  background-color: #fff;
}
.dz-accordion
  .accordion-item.accordion-item-opened
  .item-link.item-content
  .item-title:before {
  border-color: var(--f7-theme-color);
}
.dz-accordion
  .accordion-item.accordion-item-opened
  .item-link.item-content
  .item-title:after {
  background-color: var(--f7-theme-color);
}
.dz-accordion .accordion-item .accordion-item-content .item-content-inner {
  padding: 10px 20px 0;
}

/*# sourceMappingURL=style.css.map */
