/*
Table of Contents

Name                 : Ombe - Coffee Shop
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: #04764E;
  --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: #F3F3F3;
}

/*

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: #f9f9f9;
}

h1,
h2,
h3,
h4,
h5,
h6,
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: #1b1b1b;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #1b1b1b;
}

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: #37b7af !important;
}

.text-info {
  color: #6798ff !important;
}

.text-warning {
  color: #ff9838 !important;
}

.text-secondary {
  color: #F6DBB3 !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: #F6DBB3;
}

.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: #F3F3F3;
}
.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;
}

.page-content {
  scrollbar-width: none;
  padding-bottom: 60px;
}

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

#loading-area {
  position: relative;
  margin: auto;
  padding: 15px;
  height: 100%;
}
#loading-area .load-icon {
  margin: 0 0 0 10px;
}
#loading-area .load-text {
  font-size: 38px;
  line-height: 38px;
  color: #fff;
  display: flex;
  margin: 10px 0 0;
  justify-content: center;
}
#loading-area .load-text span {
  margin: 0 1px;
  animation: flip 2.6s infinite linear;
  transform-origin: 0 70%;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
}
#loading-area .load-text span:nth-child(2) {
  animation-delay: 0.3s;
}
#loading-area .load-text span:nth-child(3) {
  animation-delay: 0.6s;
}
#loading-area .load-text span:nth-child(4) {
  animation-delay: 0.9s;
}
#loading-area .load-text span:nth-child(5) {
  animation-delay: 1.2s;
}
#loading-area .load-text span:nth-child(6) {
  animation-delay: 1.5s;
}
#loading-area .load-text span:nth-child(7) {
  animation-delay: 1.8s;
}

@keyframes flip {
  35% {
    transform: rotateX(360deg);
  }
  100% {
    transform: rotatex(360deg);
  }
}
/* On Boading */
.footer-button {
  height: 100px;
  background-color: #fff;
  padding: 15px 30px !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: #f9f9f9 !important;
}

.onboading-logo {
  margin: 25px auto;
  text-align: center;
}
.onboading-logo img {
  width: 70px;
}

/* Get Started */
.get-started {
  text-align: center;
  height: 100%;
}
.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: 10px;
  border-radius: 5px;
  height: 10px;
  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: 23px;
}
@media (max-width: 361px) {
  .get-started .dz-title {
    margin-bottom: 15px;
  }
}

.swiper-slide {
  margin-right: 20px;
}

.started-swiper-box {
  height: 100%;
  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: 40px;
  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 {
  display: flex;
  flex-direction: column;
  padding: 70px 0 110px;
  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 {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  z-index: 1;
}
.view-main .page-onboading .dz-media {
  margin: auto;
  width: 235px;
}
.view-main .page-onboading .dz-media img {
  width: 100%;
}
@media (max-width: 361px) {
  .view-main .page-onboading .page-content {
    padding: 50px 0 100px;
  }
  .view-main .page-onboading .dz-media {
    width: 200px;
    margin: 0 auto 15px;
  }
  .view-main .page-onboading .dz-media img {
    width: 100%;
  }
}

/* Login Register Account */
.account-area .page-content {
  padding-top: 35px;
}
.account-area .main-logo {
  justify-content: center;
  margin-bottom: 50px;
}
.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;
}
.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;
  opacity: 0.4;
}
.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;
  border: 2px solid;
  border-color: #e9e9e9;
  border-width: 0 0 2px;
  font-size: 16px;
  color: #000000;
  font-weight: 400;
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}
.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;
  text-decoration: underline;
  overflow: hidden;
  padding: 2px;
}

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

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

.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);
  height: 60px;
}
.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: 30px;
  padding-right: 30px;
}
.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: #adadad;
}
.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:after {
  content: "";
  background-color: var(--f7-theme-color);
  height: 10px;
  width: 10px;
  border-radius: 10px 10px 0 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  bottom: -2px;
}
.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: 20px;
}
.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;
}

.categories-bx {
  padding: 15px 45px 15px 25px;
  display: flex;
  background-color: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 1px rgba(0, 0, 0, 0.1);
  margin: 5px 0;
  border: 1px solid #efefef;
}
.categories-bx .icon-bx {
  position: relative;
  display: flex;
  margin-right: 20px;
}
.categories-bx .icon-bx i {
  color: var(--f7-theme-color);
}
.categories-bx .icon-bx path[fill],
.categories-bx .icon-bx path {
  fill: var(--f7-theme-color);
}
.categories-bx .title {
  color: var(--f7-theme-color);
  margin: 0;
}
.categories-bx .menus {
  margin-top: 5px;
  display: block;
  font-weight: 500;
}

.categories-swiper .swiper-slide {
  width: auto;
}

.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: 450px;
  margin-top: -50px;
}
.dz-banner-heading .bnr-img {
  width: 100%;
  height: 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: 35px;
}
.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;
}
.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 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;
}

.card-overlay .dz-media {
  display: flex;
  align-items: center;
}
.card-overlay .dz-media img {
  width: 100%;
}
.card-overlay.style-1 {
  border-radius: 30px;
  padding: 15px 15px 20px;
  margin-top: 50px;
  cursor: pointer;
}
.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 .title {
  margin: 0 0 15px;
}
.card-overlay.style-1 .title a {
  color: #fff;
}
.card-overlay.style-1 .dz-info {
  padding: 20px 5px 5px;
}
.card-overlay.style-1 .dz-meta li {
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  line-height: 24px;
}
.card-overlay.style-1 .dz-meta li sup {
  margin-top: -10px;
  font-size: 14px;
  margin-right: 5px;
}
.card-overlay.style-1 .dz-meta li del {
  font-size: 16px;
  opacity: 0.5;
  margin-left: 10px;
}
.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 .swiper-slide {
  width: 205px;
}

.overlay-swiper2 .swiper-slide {
  width: 265px;
}

.tag-list {
  padding: 0;
  margin-bottom: 15px;
}
.tag-list li {
  display: inline-block;
  position: relative;
  margin-right: 2px;
}
.tag-list li a {
  color: #777777;
  font-size: 14px;
}
.tag-list li:after {
  content: ",";
  right: 0;
  bottom: 0;
  color: inharit;
}
.tag-list li:last-child:after {
  content: none;
}

.item-list ul {
  background-color: var(--f7-theme-color-white);
}

.item-bx {
  position: relative;
}
.item-bx .dz-media {
  position: relative;
}
.item-bx .dz-media img {
  border-radius: 18px;
  width: 100%;
  height: 100%;
  display: flex;
}
.item-bx ul li.hidden-by-searchbar {
  display: inline-block !important;
}
.item-bx .item-title {
  font-weight: 600;
  margin: 0 0 15px;
  white-space: normal;
}
.item-bx .dz-meta ul li:last-child {
  margin-right: 0;
}
.item-bx .price {
  font-weight: 600;
  font-size: 18px;
  color: #000;
}
.item-bx .price del {
  font-size: 16px;
  font-weight: 500;
  color: #929292;
  margin-left: 12px;
}
.item-bx .pts {
  font-weight: 500;
}
.item-bx .btn-buy {
  text-transform: capitalize;
  background-color: var(--f7-theme-color-light);
  padding: 12px 24px;
  height: auto;
  box-sizing: border-box;
  font-size: 16px;
  line-height: 16px;
  border-radius: 50px;
  font-weight: 500;
}
.item-bx .btn-buy:hover, .item-bx .btn-buy.active-state {
  background-color: var(--f7-theme-color);
  color: #fff;
}
.item-bx .btn-buy:hover path[fill],
.item-bx .btn-buy:hover path, .item-bx .btn-buy.active-state path[fill],
.item-bx .btn-buy.active-state path {
  fill: #fff;
}
.item-bx .rating {
  padding: 4px 15px;
  background-color: #ff8730;
  border-radius: 20px;
  color: #fff;
  align-items: center;
  position: absolute;
  box-sizing: border-box;
  bottom: -15px;
  left: 16px;
}
.item-bx .rating i {
  color: #fff;
  font-size: 13px;
  margin-right: 5px;
}
.item-bx .dz-head {
  margin-bottom: 15px;
}
.item-bx .tag-list {
  padding: 0;
}
.item-bx.item-list {
  display: flex;
  margin-bottom: 35px;
}
.item-bx.item-list .dz-media {
  margin-right: 20px;
  max-width: 112px;
  min-width: 112px;
}
.item-bx.item-list .item-title {
  margin-bottom: 5px;
}
.item-bx.item-list .dz-meta ul {
  justify-content: space-between;
  align-items: center;
}
.item-bx.item-list .dz-info {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.icon-bx-left {
  display: flex;
  align-items: center;
}
.icon-bx-left .icon-bx {
  margin-right: 10px;
}
.icon-bx-left .icon-bx path[fill],
.icon-bx-left .icon-bx path,
.icon-bx-left .icon-bx circle {
  fill: #04764E;
}
.icon-bx-left .icon-bx i {
  color: #04764E;
}
.icon-bx-left p {
  margin: 0;
}
.icon-bx-left .title {
  margin: 0;
}

.color-sheet {
  display: block;
  border-radius: 5px;
  background-color: #fff;
  padding: 0;
  margin-bottom: 0;
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 40px;
}
.color-sheet i {
  font-size: 16px;
  color: #000;
}

.dark-light {
  width: 35px;
  height: 35px;
  position: relative;
  margin: 0 0 0 10px;
  padding: 0;
  display: block;
}
.dark-light li {
  position: relative;
}
.dark-light li.demo-theme-picker {
  position: absolute;
  display: inline-block;
  padding: 0;
  border: 0;
  box-shadow: unset;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 15px;
  color: #000;
}
.dark-light li.demo-theme-picker:after {
  font-weight: 700;
  font-family: "Font Awesome 5 Free";
}
.dark-light li.demo-theme-picker.light:after {
  content: "\f185";
}
.dark-light li.demo-theme-picker.dark:after {
  content: "\f186";
}
.dark-light li.demo-theme-picker.active {
  display: none;
}

.setting-area {
  display: flex;
  align-items: center;
}

.sub-title {
  color: #252525;
  margin-bottom: 12px;
}

.blog-list ul {
  margin: 0;
  padding: 0;
}
.blog-list ul li {
  list-style: none;
  margin-bottom: 20px;
}

.blog-box {
  width: 100%;
  height: 120px;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.blog-box:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(37, 37, 37, 0.54);
  backdrop-filter: blur(1.5px);
}
.blog-box .title {
  margin: 0;
  font-weight: 500;
  font-size: 24px;
  color: #fff;
}
.blog-box .detail {
  z-index: 1;
  color: #fff;
}

.blog-tag {
  clear: both;
  display: table;
  margin-bottom: 10px;
}
.blog-tag a {
  position: relative;
  padding: 6px 15px;
  display: inline-block;
  margin: 0 8px 8px 0;
  font-size: 14px;
  color: #fff;
  border-radius: 20px !important;
  line-height: 1.4;
  border: 0;
  background: #04764E;
  border-radius: 0;
}

.blog-detail img {
  width: 100%;
  object-fit: cover;
}

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

.main-logo.center {
  text-align: center;
}
.main-logo.center .logo-name {
  font-size: 38px;
  margin: 10px 0 0;
}
.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;
}
.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;
  }
}

.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: 22px;
  position: relative;
}
.map-dir:after {
  content: "";
  background-color: inherit;
  height: 20px;
  width: 20px;
  position: absolute;
  left: 18px;
  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: -185px;
}
.location-tracking .bottom-wraper {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
}

.delivery-man {
  padding: 20px 28px 50px;
  background-color: var(--f7-theme-color-white);
  border-radius: 22px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  z-index: 1;
  position: relative;
  margin: 0 auto -30px;
}
.delivery-man .inner-content {
  display: flex;
  align-items: center;
}
.delivery-man .icon-area {
  display: flex;
  margin-left: auto;
}
.delivery-man .dz-media {
  height: 50px;
  max-width: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 20px;
}
.delivery-man .dz-media img {
  width: 100%;
}
.delivery-man .title {
  margin: 0;
  font-weight: 500;
}
.delivery-man p {
  margin: 0;
}
.delivery-man .icon-cell {
  margin-left: 10px;
  height: 50px;
  width: 50px;
  background-color: rgba(255, 255, 255, 0.2);
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
}
.delivery-man .icon-cell svg {
  height: 50px;
}

.track-list {
  padding: 0;
  margin: 0;
  position: relative;
}
.track-list li {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.track-list li .icon-bx {
  height: 58px;
  width: 58px;
  text-align: center;
  line-height: 58px;
  border-radius: 50px;
  border: 1px solid;
  border-color: var(--f7-theme-color);
  margin-right: 20px;
  background-color: var(--f7-theme-color-white);
}
.track-list li .icon-bx svg {
  height: 58px;
}
.track-list li .icon-bx.location {
  background-color: var(--f7-theme-color-light);
  border-color: var(--f7-theme-color-light);
}
.track-list li .icon-bx path[fill],
.track-list li .icon-bx path {
  fill: var(--f7-theme-color);
}
.track-list li .icon-bx i {
  color: var(--f7-theme-color);
}
.track-list li .title {
  margin: 0;
}
.track-list li p {
  margin: 0;
  font-size: 12px;
}
.track-list li:last-child {
  margin-bottom: 0;
}
.track-list li .button {
  text-transform: capitalize;
  font-weight: 700;
  margin-left: auto;
}
.track-list:after {
  content: "";
  height: calc(100% - 10px);
  left: 30px;
  top: 5px;
  width: 1px;
  border-left: 2px dashed rgba(0, 0, 0, 0.3);
  position: absolute;
  z-index: -1;
}

/* 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: #1b1b1b;
}
.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;
}

.messagebar {
  left: 50%;
  transform: translateX(-50%);
}
.messagebar:before, .messagebar:after {
  content: none;
}
.messagebar .toolbar-inner {
  border: 1px solid #dadada;
  border-radius: 18px;
  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: 52px;
  width: 52px;
  line-height: 52px;
  border-radius: 18px;
  font-size: 18px;
  color: #fff;
  background-color: #fff;
  box-shadow: 0px 0px 10px 0 rgba(0, 0, 0, 0.2);
  text-align: center;
  opacity: 1 !important;
}
.messagebar .toolbar-inner textarea {
  height: 45px;
  padding: 10px 15px;
}
.messagebar .toolbar-inner .messagebar-attachments {
  border-bottom: 0;
}
.messagebar .messagebar-area {
  margin: 0;
}
.messagebar .messagebar-sheet {
  background-color: var(--f7-theme-color-white);
}

.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 {
  width: 100%;
  height: 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: #F6DBB3;
  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;
}

.add-wishlist-btn {
  display: flex;
}
.add-wishlist-btn .fas {
  display: none;
}
.add-wishlist-btn.active .far {
  display: none;
}
.add-wishlist-btn.active .fas {
  display: block;
}

.navbar .add-wishlist-btn i {
  font-size: 24px;
  margin: 0;
  color: #fff;
}

.item-details .button span {
  opacity: 0.5;
  margin-left: 10px;
}
.item-details .stepper {
  border: 1px solid #c4c4c4;
  height: 42px;
}
.item-details .stepper .stepper-button-minus,
.item-details .stepper .stepper-button-plus,
.item-details .stepper .stepper-input-wrap {
  border: 0;
}
.item-details .stepper input {
  font-size: 18px;
  color: #000;
}
.item-details .price-bx {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}
.item-details .price-bx .price {
  margin: 0;
}
.item-details .price-bx .price i {
  font-size: 30px;
  margin-right: 8px;
}
.item-details .price-bx .price sup {
  line-height: 14px;
  font-size: 14px;
  margin-right: 3px;
}
.item-details .price-bx .price del {
  color: #000;
  opacity: 0.5;
  font-weight: 600;
  font-size: 16px;
  margin-left: 5px;
}

.dz-range {
  margin: 35px 0;
}
.dz-range .range-slider .range-bar {
  height: 12px;
  border-radius: 50px;
  background-color: #ececec;
}
.dz-range .range-slider .range-knob-wrap {
  width: 25px;
  height: 25px;
  top: 8px;
}
.dz-range .range-slider .range-knob-wrap .range-knob:after {
  background-color: var(--f7-theme-color);
  opacity: 0.2;
  border-radius: 50%;
}
.dz-range .range-slider .range-knob-wrap.range-knob-active-state .range-knob {
  transform: scale(1);
}
.dz-range .label-list {
  padding: 0;
  display: flex;
  justify-content: space-between;
  margin: 25px 0 0;
}
.dz-range .label-list li {
  display: inline-block;
  font-size: 16px;
  padding: 0 5px;
}

.item-rating {
  height: 64px;
  width: 64px;
  text-align: center;
  line-height: 64px;
  background-color: #ff9838;
  border-radius: 50%;
  font-size: 24px;
  color: #fff;
  font-weight: 600;
  position: absolute;
  right: 30px;
  top: -30px;
  box-shadow: 0 0 20px rgba(255, 152, 56, 0.5);
}

/* 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;
}
.notification-list ul li .time i {
  font-size: 16px;
  margin-right: 3px;
}
.notification-list ul li .mark {
  font-weight: 500;
}

.notification-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  width: 100%;
}
.notification-bar .title {
  margin: 0;
}
.notification-bar span {
  display: block;
  margin-bottom: 5px;
  color: #000;
}
.notification-bar .media {
  position: relative;
}
.notification-bar .media img {
  height: 46px;
  width: 46px;
  border-radius: 8px;
}
.notification-bar .media .active {
  color: var(--f7-theme-color);
  font-size: 13px;
  border: 2px solid #fff;
  position: absolute;
  right: -5px;
  top: -5px;
  border-radius: 50%;
}

.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-menu .main-logo {
  padding: 40px 30px 30px;
  align-items: center;
}

.sidebar-left:after {
  content: none;
}
.sidebar-left .title {
  margin-top: 0;
  margin-bottom: 0;
  padding: 30px;
}
.sidebar-left .panel-close {
  display: block;
  color: #000;
  font-size: 30px;
  position: absolute;
  right: 0;
  top: 50px;
  height: 30px;
  line-height: 1;
  width: 30px;
}
.sidebar-left .nav-bar {
  padding: 20px 20px 20px 0;
  margin: 0;
}
.sidebar-left .nav-bar ul {
  margin: 0;
  padding: 0;
}
.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;
  padding: 0 !important;
}
.sidebar-left .nav-bar ul li .item-link {
  display: flex;
  align-items: center;
  color: #b0acb3;
  font-size: 16px;
  padding: 15px 25px;
  position: relative;
  border-radius: 0 8px 8px 0 !important;
  margin: 0;
  background-color: transparent;
}
.sidebar-left .nav-bar ul li .item-link svg,
.sidebar-left .nav-bar ul li .item-link img {
  margin-right: 15px;
}
.sidebar-left .nav-bar ul li .item-link 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: 20px;
}
.sidebar-left .nav-bar ul li .item-link path[fill],
.sidebar-left .nav-bar ul li .item-link path {
  fill: #adadad;
}
.sidebar-left .nav-bar ul li .item-link i {
  color: #adadad;
}
.sidebar-left .nav-bar ul li .item-link.item-selected path[fill],
.sidebar-left .nav-bar ul li .item-link.item-selected path {
  fill: var(--f7-theme-color);
}
.sidebar-left .nav-bar ul li .item-link.item-selected i,
.sidebar-left .nav-bar ul li .item-link.item-selected span {
  color: var(--f7-theme-color);
}
.sidebar-left .nav-bar ul li .item-link.logout-link {
  margin-top: 30px;
}
.sidebar-left .nav-bar ul li .item-link.logout-link path[fill],
.sidebar-left .nav-bar ul li .item-link.logout-link path {
  fill: #FF8484;
}

.sidebar-footer {
  padding: 20px 30px;
}
.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;
}

.sidebar-left + .view-main {
  -webkit-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
  height: 100%;
  top: 0;
  border-radius: 0;
  box-shadow: none;
  transition-property: inherit !important;
  -moz-transition-property: inherit !important;
  -webkit-transition-property: inherit !important;
  -o-transition-property: inherit !important;
  transition-duration: 0.5s !important;
  -moz-transition-duration: 0.5s !important;
  -webkit-transition-duration: 0.5s !important;
  -o-transition-duration: 0.5s !important;
}

.sidebar-left.panel-in + .view-main {
  height: calc(100% - 130px);
  top: 90px;
  border-radius: 24px;
  box-shadow: -5px 5px 30px 0 var(--f7-theme-color-light);
}

.write-reviews-box {
  padding-top: 30px;
  padding-bottom: 30px;
}
.write-reviews-box .form-elements ul .item-content .item-inner .item-input-wrap textarea.form-control {
  height: 110px;
  border-width: 2px;
  padding: 20px;
  border-radius: 18px;
}
.write-reviews-box .form-elements .list {
  margin-bottom: 0;
}

.rating-info {
  margin: 40px 0 30px;
  text-align: center;
}
.rating-info .rating-text {
  margin: 0 0 20px;
  font-size: 50px;
  line-height: 50px;
}
.rating-info .rating-list {
  padding: 0;
  display: flex;
  justify-content: center;
}
.rating-info .rating-list li {
  display: inline-block;
  font-size: 24px;
  background-color: #b6b6b6;
  height: 50px;
  width: 50px;
  border-radius: 50px;
  line-height: 50px;
  color: #fff;
  margin: 0 3px;
}
.rating-info .rating-list li.rating-star {
  background-color: #FF8730;
}

.review-product {
  border-bottom: 1px solid var(--border-color);
  padding: 28px 0;
  background-color: var(--f7-theme-color-white);
}
.review-product .inner-content {
  display: flex;
  align-items: center;
}
.review-product .dz-media {
  height: 105px;
  max-width: 105px;
  min-width: 105px;
  border-radius: 12px;
  overflow: hidden;
  margin-right: 22px;
}
.review-product .dz-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.review-product .title {
  margin: 0 0 10px;
  font-weight: 500;
}
.review-product p {
  margin: 0;
  font-size: 16px;
}

.rewards-box {
  padding: 25px 30px;
  border-radius: 18px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.rewards-box .sub-title {
  margin: 0 0 10px;
  color: #fff;
  font-weight: 500;
}
.rewards-box .title {
  color: #fff;
  font-size: 34px;
  margin: 0;
}
.rewards-box .badge {
  background-color: rgba(255, 255, 255, 0.3);
  padding: 12px 18px;
  border-radius: 8px;
  height: auto;
  font-size: 14px;
  line-height: 14px;
  margin-top: 25px;
}
.rewards-box:before, .rewards-box:after {
  content: "";
  position: absolute;
  width: 270px;
  height: 270px;
  z-index: -1;
  border-radius: 50%;
}
.rewards-box:before {
  left: -140px;
  bottom: -125px;
  background: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.01) 0%, rgb(0, 0, 0) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.01) 0%, rgb(0, 0, 0) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to top, rgba(0, 0, 0, 0.01) 0%, rgb(0, 0, 0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  opacity: 0.1;
}
.rewards-box:after {
  right: -140px;
  top: -125px;
  background: rgb(0, 120, 98); /* Old browsers */
  background: -moz-linear-gradient(top, rgb(0, 120, 98) 20%, rgb(29, 207, 143) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgb(0, 120, 98) 20%, rgb(29, 207, 143) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgb(0, 120, 98) 20%, rgb(29, 207, 143) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  opacity: 0.9;
  transform: rotate(130deg);
}
.rewards-box .bg-icon {
  position: absolute;
  right: -20px;
  bottom: -20px;
}
.rewards-box .icon-bx {
  float: right;
}

.rewards-list {
  padding: 0;
}
.rewards-list > ul {
  padding: 0;
  margin: 0;
}
.rewards-list > ul > li {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  justify-content: space-between;
  padding: 15px 28px;
}
.rewards-list > ul > li .title {
  margin: 0 0 15px;
  font-weight: 500;
}
.rewards-list > ul > li .pts-bx {
  text-align: right;
  margin-left: 30px;
}
.rewards-list > ul > li .pts-bx .points {
  margin: 0 0 10px;
}
.rewards-list > ul > li .pts-bx p {
  margin: 0;
}
.rewards-list .dz-meta ul {
  padding: 0;
  margin: 0;
}
.rewards-list .dz-meta ul li {
  display: inline-block;
  font-size: 12px;
  color: #7e7e7e;
  padding-right: 10px;
  margin-right: 10px;
  font-weight: 500;
}
.rewards-list .dz-meta ul li:after {
  content: "|";
  right: 0;
  position: absolute;
  color: inherit;
}
.rewards-list .dz-meta ul li:last-child {
  padding-right: 0;
  margin-right: 0;
}
.rewards-list .dz-meta ul li:last-child:after {
  content: none;
}

/* Cart Item */
.cart-list-area {
  padding-left: 0;
  padding-right: 0;
}

.cart-list {
  overflow: hidden;
  margin: 0;
}
.cart-list ul:before, .cart-list ul:after {
  content: none;
}
.cart-list .cart-item {
  background-color: #ff0000;
  overflow: unset;
  margin: 6px 0;
}
.cart-list .cart-item.swipeout.swipeout-opened {
  z-index: 1;
}
.cart-list .cart-item .item-content {
  padding-left: 0;
  transition: all 0.5s;
}
.cart-list .cart-item .item-inner {
  background-color: var(--f7-theme-color-white);
  padding: 12px 20px;
}
.cart-list .cart-item .item-inner:after {
  content: none;
}
.cart-list .cart-item .item-title {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  white-space: normal;
}
.cart-list .cart-item .item-media {
  min-width: 92px !important;
  width: 103px;
  position: relative;
  padding: 0;
  border-radius: 16px;
  overflow: hidden;
  margin-right: 22px;
  height: 115px;
}
.cart-list .cart-item .item-media a {
  height: 100%;
}
.cart-list .cart-item .item-media img {
  width: 100%;
}
.cart-list .cart-item .item-info {
  width: 100%;
  justify-content: space-between;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 5px 0;
  box-sizing: border-box;
}
.cart-list .cart-item .item-foot ul {
  padding: 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 0 -10px;
}
.cart-list .cart-item .item-foot ul li {
  display: inline-block !important;
  font-size: 18px;
  font-weight: 600;
  margin: 0 10px;
  min-width: 10%;
}
.cart-list .cart-item .swipeout-delete {
  background-color: #ff0000;
  font-size: 28px;
}
.cart-list .cart-item.swipeout-opened .item-content {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.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, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 54%, rgb(255, 255, 255) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(left, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 54%, rgb(255, 255, 255) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 54%, rgb(255, 255, 255) 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: #1b1b1b;
  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;
}

.order-details .location {
  display: flex;
  margin-bottom: 15px;
  justify-content: space-between;
  align-items: center;
}
.order-details .location .button {
  border-radius: 12px;
  padding: 15px 20px;
  text-transform: capitalize;
}
.order-details .location p {
  opacity: 0.6;
  margin: 0;
}
.order-details .author-bx {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  text-align: left;
  padding: 0;
}
.order-details .author-bx .thumb {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 20px;
}
.order-details .author-bx .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.order-details .author-bx .info {
  margin-right: 20px;
}
.order-details .author-bx .info p {
  margin: 0;
}
.order-details .author-bx .author-name {
  margin: 0;
}
.order-details .author-bx .phone {
  height: 52px;
  width: 52px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  text-align: center;
  line-height: 52px;
  margin-left: auto;
}
.order-details .author-bx .phone svg {
  height: 52px;
}
.order-details .author-bx .phone path[fill],
.order-details .author-bx .phone path {
  fill: var(--f7-theme-color);
}
.order-details .author-bx .phone i {
  color: var(--f7-theme-color);
}

.location-wraper .fixed-toolbar {
  background-color: var(--f7-theme-color-white);
  padding-top: 20px;
  padding-bottom: 20px;
}
.location-wraper .filter-text {
  color: #4e4e4e;
  font-weight: 500;
}

.store-card {
  border-radius: 18px;
  overflow: hidden;
  background-color: var(--f7-theme-color-white);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.001);
}
.store-card .card-media img {
  width: 100%;
  height: 100%;
  display: flex;
  object-fit: cover;
}
.store-card .title {
  margin: 0 0 10px;
}
.store-card .time {
  margin: 0;
}
.store-card .info-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.store-card .card-info {
  padding: 30px 20px 20px;
  position: relative;
}
.store-card .btn-dir {
  background-color: #1d3eb1;
  color: #fff;
  text-transform: capitalize;
  border-radius: 30px;
  position: absolute;
  top: -18px;
  right: 20px;
  padding: 0 16px;
}
.store-card .location {
  display: flex;
  align-items: center;
  font-weight: 500;
}
.store-card .location svg,
.store-card .location i {
  margin-right: 5px;
}

.wishlist-bx {
  position: relative;
  background-color: var(--f7-theme-color-white);
  overflow: hidden;
  border-radius: 18px;
  display: flex;
  padding: 12px 25px 12px 12px;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  /* Bookmark */
}
.wishlist-bx p {
  font-size: 12px;
  margin: 0;
  font-weight: 500;
  line-height: 12px;
}
.wishlist-bx .dz-info {
  padding: 0 0 0 15px;
  width: 100%;
}
.wishlist-bx .item-title {
  font-weight: 600;
  margin: 0 0 15px;
  white-space: normal;
}
.wishlist-bx .dz-head {
  margin-bottom: 15px;
}
.wishlist-bx .dz-media {
  width: 93px;
  min-width: 93px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}
.wishlist-bx .dz-media img {
  width: 100%;
  height: 100%;
  display: flex;
}
.wishlist-bx .dz-meta ul {
  justify-content: space-between;
  background-color: transparent;
}
.wishlist-bx .price {
  font-weight: 600;
  font-size: 18px;
  color: #000;
}
.wishlist-bx .price del {
  font-size: 12px;
  font-weight: 500;
  color: #929292;
  margin-left: 8px;
}
.wishlist-bx .qty {
  font-size: 16px;
  line-height: 16px;
  margin-left: auto;
}
.wishlist-bx .qty strong {
  font-weight: 600;
  margin-right: 5px;
}
.wishlist-bx .rating {
  display: flex;
  font-size: 12px;
  align-items: center;
}
.wishlist-bx .rating i {
  color: #FFA800;
  margin-right: 5px;
}
.wishlist-bx .dz-footer {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wishlist-bx.item-list {
  display: flex;
}
.wishlist-bx.item-list .dz-media {
  width: 120px;
  min-width: 120px;
}
.wishlist-bx.item-list .dz-media img {
  object-fit: cover;
}
.wishlist-bx .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";
}
.wishlist-bx .bookmark-btn input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
  display: none;
}
.wishlist-bx .bookmark-btn input:checked ~ .checkmark:before {
  color: var(--f7-theme-color);
}
.wishlist-bx .bookmark-btn .checkmark {
  font-weight: 900;
  line-height: 1;
}
.wishlist-bx .bookmark-btn .checkmark:after {
  content: "\f004";
  position: absolute;
  display: none;
}
.wishlist-bx .bookmark-btn .checkmark:before {
  content: "\f004";
  font-size: 20px;
  color: #B9BCD3;
}

/* Theme Dark */
.dark h1, .dark h2, .dark h3, .dark h4, .dark h5, .dark h6,
.dark h1 a, .dark h2 a, .dark h3 a, .dark h4 a, .dark h5 a, .dark h6 a,
.dark .navbar .navbar-inner .title {
  color: #fff;
}
.dark body {
  color: #cecece;
}

/* Border Color */
.dark .navbar,
.dark .menubar-area,
.dark .border-top,
.dark .searchbar.search-box .searchbar-input-wrap input,
.dark .form-elements ul .item-content .item-inner .item-input-wrap .form-control,
.dark .messagebar .toolbar-inner,
.dark .page-content .searchbar.search-box .searchbar-input-wrap input,
.dark .form-elements ul .item-content .item-inner .item-input-wrap .number-select,
.dark .search-list-bar ul li,
.dark .button-social.google,
.dark .navbar.navbar-style-1 a.link,
.dark .categories-bx,
.dark .item-details .stepper {
  border-color: #333333;
}
.dark input {
  color: rgba(255, 255, 255, 0.9) !important;
}
.dark input::placeholder {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* Background Color */
.dark body,
.dark .page,
.dark .page-content,
.dark .tab-style-1,
.dark .footer-button,
.dark .page-onboading .page-content,
.dark .card-featured .icon-bx,
.dark .light.page,
.dark .light .page-content,
.dark .light .navbar,
.dark .light .toolbar,
.dark .toolbar.messagebar,
.dark .nav-wizard,
.dark .dz-accordion .accordion-item .item-link.item-content .item-title:before {
  background: #151515;
}
.dark .navbar .navbar-bg {
  background: #151515 !important;
}
.dark .page.bg-gray, .dark .page-content.bg-gray {
  background: #080808 !important;
}
.dark .nav-wizard:after {
  background: -moz-linear-gradient(left, #151515 0%, rgba(255, 255, 255, 0) 54%, #151515 100%);
  background: -webkit-linear-gradient(left, #151515 0%, rgba(255, 255, 255, 0) 54%, #151515 100%);
  background: linear-gradient(to right, #151515 0%, rgba(255, 255, 255, 0) 54%, #151515 100%);
}

/* Background Color Dark 2 */
.dark .view-logo .logo-icon,
.dark .page-content .searchbar.search-box .searchbar-input-wrap input,
.dark .tabbar.tab-style-1 .toolbar-inner,
.dark .button.button-gray,
.dark .categories-bx,
.dark .dz-range .range-slider .range-bar,
.dark .messagebar .toolbar-inner .demo-send-message-link,
.dark .navbar.navbar-style-1 .navbar-inner .link.back,
.dark .store-card,
.dark .notification-list .card,
.dark .widget_getintuch ul li .icon-bx,
.dark .wishlist-bx {
  background-color: #000;
}

/* Theme Color White */
.dark .text-black,
.dark .form-elements ul .item-content .item-inner .item-input-wrap .form-control,
.dark .navbar.navbar-transparent.navbar-transparent-visible .title,
.dark .navbar.navbar-transparent.navbar-transparent-visible a,
.dark .navbar.navbar-transparent.navbar-transparent-visible i,
.dark .navbar a.link,
.dark .tab-style-1 .tab-link.tab-link-active,
.dark .search-list-bar .item-content .item-inner .item-title-row .item-title,
.dark .tabbar.tab-style-1 .tab-link.tab-link-active,
.dark .tabbar.tab-style-2 .tab-link,
.dark .panel-close i,
.dark .notification-bar span,
.dark .featured-card .location,
.dark .company-details .head-details .block-btn .title,
.dark .get-started p,
.dark .item-bx .price,
.dark .item-details .price-bx .price del,
.dark .item-details .stepper input {
  color: #cecece;
}

/* Theme Dark Color Fill White */
.dark .navbar a.link path[fill],
.dark .navbar a.link path,
.dark .navbar a.link rect,
.dark .navbar a.link rect[fill],
.dark .navbar a.link [fill],
.dark .navbar.navbar-style-1 .navbar-inner .link.back [fill],
.dark .navbar.navbar-style-1 .navbar-inner .link.back path {
  fill: #fff;
}

/* Theme Color Second */
.dark .search-list-bar .item-content .item-inner .item-text,
.dark .form-elements ul .item-content .item-inner .item-input-wrap .form-control::placeholder,
.dark .account-area p,
.dark .account-area .form-text {
  color: #969696;
}

.dark .navbar.navbar-style-1.navbar-transparent .link.back {
  background-color: rgba(255, 255, 255, 0.2);
}
.dark .navbar.navbar-style-1.navbar-transparent.navbar-transparent-visible .title,
.dark .dz-accordion .accordion-item .item-link.item-content .item-title,
.dark .checkbox-form-control .checkbox-text,
.dark .nav-wizard li .nav-link span,
.dark .wishlist-bx .price {
  color: #fff;
}

/* Background Color White */
.dark .swiper-pagination-bullet {
  background: #fff;
}

/* Theme Color Dark Variable */
.ios .dark,
.ios.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 .dark,
:root.dark,
:root.md.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: #04764E;
  --f7-theme-color-rgb: 18,34,97;
  --f7-theme-color-shade: #00613f;
  --f7-theme-color-tint: #07ac72;
  --f7-theme-color-light: #D9EDE6;
}

.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: #1b1b1b;
  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 20px;
}
.navbar .navbar-inner .title {
  color: #1b1b1b;
  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;
  background-color: #F6F6F6;
  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 {
  background-color: rgba(255, 255, 255, 0.2);
}
.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 {
  background-color: #F6F6F6;
}
.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: #1b1b1b;
}

.tabbar.tab-style-1 {
  height: 56px;
  background-color: transparent;
  z-index: 9;
}
.tabbar.tab-style-1 .toolbar-inner {
  margin-left: -4px;
  margin-right: -4px;
}
.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);
  margin-left: 4px;
  margin-right: 4px;
}
.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;
  }
}

.button {
  letter-spacing: unset;
}
.button.button-large {
  font-size: 16px;
  padding: 18px 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: #F6DBB3;
  color: #313131;
}
.button.button-gray {
  background-color: #E5E5E5;
  color: #646464;
}

.rounded-sm {
  border-radius: 8px;
}
.rounded-md {
  border-radius: 12px;
}
.rounded-lg {
  border-radius: 20px;
}
.rounded-xl {
  border-radius: 50px;
}

.button-order {
  position: fixed;
  bottom: 21px;
  width: 50%;
  z-index: 999;
}
@media (max-width: 430px) {
  .button-order.big {
    width: 80% !important;
  }
}
@media (max-width: 430px) {
  .button-order.small {
    font-size: 80% !important;
    width: 80% !important;
  }
}

.button-outline {
  border-width: 1px;
}

.button-social {
  text-transform: capitalize;
}
.button-social img {
  width: 24px;
  margin-right: auto;
}
.button-social span {
  width: 100%;
}
.button-social.facebook {
  background-color: #376aed;
}
.button-social.google {
  border: 1px solid #d1d1d1;
}

.button-light {
  background-color: #E8FFE0;
  color: var(--f7-theme-color);
}

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

.dz-accordion {
  margin: 0 -28px;
}
.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;
}

.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: 8px;
  width: 100%;
  background-color: transparent;
}
.page-content .searchbar.search-box .searchbar-input-wrap input {
  border: 1px solid #e9e9e9;
  height: 60px;
  background-color: #f9f9f9;
  font-size: 16px;
  padding: 12px 50px 12px 25px;
  border-radius: 50px;
  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;
}

/*# sourceMappingURL=main.css.map */
