/*
Table of Contents

Name                 : Karier
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: #000000;
    --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;
}

/*

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 {
    line-height: 22px;
}

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

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

h1,
.h1 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.3;
}

h2,
.h2 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
}

h3,
.h3 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
}

h4,
.h4 {
    font-size: 1.125rem;
    line-height: 1.4;
    font-weight: 600;
}

h5,
.h5 {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

h6,
.h6 {
    font-size: 0.875rem;
    font-weight: 600;
    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-empty {
    color: transparent !important;
    border: none !important;
}
.text-secondary {
    color: #143FD8 !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: #143FD8;
}

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

#loading-area {
    position: relative;
    margin: auto;
    width: 94px;
    height: 94px;
    border-radius: 8px;
}

#loading-area .arrow {
    height: 94px;
    position: absolute;
    top: 0;
}

#loading-area .arrow svg,
#loading-area .arrow [fill],
#loading-area .arrow path {
    stroke: var(--f7-theme-color);
}

#loading-area .arrow:first-child {
    left: 22px;
    animation: movex 2s infinite;
}

#loading-area .arrow:first-child svg,
#loading-area .arrow:first-child [fill],
#loading-area .arrow:first-child path {
    fill: var(--f7-theme-color);
}

#loading-area .arrow:nth-child(2) {
    left: 37px;
    animation: movey 2s infinite;
}

@keyframes movex {
    50% {
        left: 37px;
    }
}

@keyframes movey {
    50% {
        left: 22px;
    }
}

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

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

.onboading-logo img {
    width: 70px;
}

.view-logo.text-center .logo-icon {
    margin: auto;
}

.view-logo .logo-icon {
    height: 93px;
    width: 93px;
    background-color: #fff;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    line-height: 93px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.view-logo .logo-icon:after {
    content: "";
    background-color: inherit;
    height: 25px;
    width: 25px;
    position: absolute;
    bottom: -1px;
    transform: rotate(83deg);
    left: 10px;
    z-index: 0;
}

.view-logo .logo-icon svg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.view-logo .logo-name {
    margin-top: 20px;
}

.view-logo .logo-text {
    font-size: 14px;
    margin: 0;
}

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

.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: 60px;
    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 25px;
    max-width: 300px;
    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;
    }
}

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

.get-started p {
    margin-bottom: 0;
    margin-top: 0;
}

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

@media (max-width: 361px) {
    .get-started .dz-title {
        margin-bottom: 15px;
    }
}

/* Login Register Account */
.account-area .page-content {
    padding-top: 35px;
}

.account-area .view-logo {
    padding: 40px 0;
}

.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-size: 16px;
    opacity: 0.5;
}

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

.account-area .form-text {
    font-size: 16px;
}

.account-area .dz-height {
    height: 60px;
    background-color: var(--f7-theme-color);
}

.account-area .fixed-content {
    margin-top: -30px;
}

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

.form-elements ul .item-content .item-inner .item-input-wrap {
    margin-bottom: 20px;
}

.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: #f8f8f8;
    height: 64px;
    padding: 15px 25px;
    border-radius: 8px;
    border: 1px solid;
    border-color: #e9e9e9;
    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: 1px solid 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: #acacad;
    margin: 20px 0 0;
}

.form-elements .form-text a {
    font-weight: 600;
    text-decoration: underline;
}

.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: 25px;
    top: 23px;
    display: flex;
}

.show-pass span {
    font-weight: 600;
    color: var(--f7-theme-color);
    font-size: 14px;
}

.show-pass .hide {
    display: none;
}

.show-pass.active .show {
    display: none;
}

.show-pass.active .hide {
    display: block;
}

.container {
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
    box-sizing: border-box;
}

.md .list .item-media {
    min-width: unset;
}

.light.page,
.light .page-content,
.light .navbar,
.light .toolbar {
    background: #fafafa;
}

.svg-primary [fill] {
    fill: var(--f7-theme-color);
    stroke: var(--f7-theme-color);
}

.dz-list>ul {
    background-color: transparent;
}

.sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 999;
}

.border-top {
    border-top: 1px solid;
    border-color: #F4F4F4;
}

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

.tag-swiper.demo-swiper-multiple {
    margin-right: -30px;
    height: auto;
}

.tag-swiper.demo-swiper-multiple .swiper-slide {
    width: auto;
    border: 0;
    background: transparent;
    height: auto;
    display: block;
}

.main-swiper {
    margin-left: -30px;
}

.main-swiper .swiper-slide:first-child {
    margin-left: 30px;
}

@media only screen and (max-width: 1199px) {
    .main-swiper {
        margin-right: -30px;
    }
}

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

.card-bx .card-media {
    overflow: hidden;
    border-radius: 8px;
}

.card-bx .card-media img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.card-bx .card-product img {
    height: 200px;
    width: auto;
    object-fit: cover;
    overflow: hidden;
    border-radius: 8px;
}

.card-featured {
    text-align: center;
    padding: 25px 20px 35px;
}

.card-featured .title {
    margin-top: 0;
    margin-bottom: 12px;
}

.card-featured p {
    margin: 0;
}

.card-featured .icon-bx {
    background-color: var(--f7-theme-color-light);
    border-radius: 18px;
    height: 80px;
    width: 80px;
    text-align: center;
    margin: 0 auto 25px;
    line-height: 80px;
}

.card-featured .icon-bx svg {
    height: 80px;
}

.card-featured .check {
    height: 30px;
    width: 30px;
    line-height: 30px;
    text-align: center;
    color: #fff;
    border-radius: 30px;
    background-color: #089d0e;
    position: absolute;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    opacity: 0;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
}

.card-chart {
    background-color: var(--f7-theme-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    box-sizing: border-box;
}

.card-chart .title {
    margin: 0;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
}

.card-chart .sub-title {
    color: #fff;
    margin: 5px 0 0;
    opacity: 0.5;
    font-weight: 500;
    font-size: 0.75rem;
}

.card-chart .chart-label {
    color: #fff;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.card-chart .chart-label i {
    font-size: 22px;
    color: var(--f7-theme-color);
    margin-right: 5px;
}

.card-chart.bg-secondary {
    background-color: #965eab;
}

.chart-swiper .swiper-slide {
    width: 260px;
    height: 105px;
}

.categories-bx {
    padding: 14px 20px;
    display: flex;
    align-items: center;
    background: #151515;
    border: 1px solid #151515;
    border-radius: 8px;
}

.categories-bx .icon-bx {
    position: relative;
    display: flex;
    margin-right: 12px;
}

.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.active {
    background: var(--f7-theme-color);
    
    
}
.categories-bx.active .img {
    background-color: var(--f7-theme-color);
    
}
.categories-bx.active .title,
.categories-bx.active i {
    color: #fff;
}

.categories-bx.active path[fill],
.categories-bx.active path {
    fill: #fff;
}

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

.job-card {
    display: flex;
    margin-bottom: 15px;
}

.job-card .card-media {
    height: 46px;
    width: 46px;
    min-width: 46px;
    border-radius: 8px;
    margin-right: 20px;
}

.job-card .card-info {
    width: 100%;
}

.job-card .item-title {
    margin: 0 15px 0 0;
    font-weight: 600;
    white-space: normal;
}

.job-card .item-price {
    margin: 0;
}

.job-card .item-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.job-card .list-info {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.job-card .list-info p {
    margin: 0 10px 0 0;
    font-size: 12px;
    font-weight: 500;
}

.job-card .bookmark-btn {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 18px;
    display: flex;
}

.item-tag {
    font-size: 12px;
    border-radius: 8px;
    background-color: var(--f7-theme-color-light);
    padding: 8px 14px;
    color: var(--f7-theme-color);
    font-weight: 600;
}

.bookmark-btn .fas {
    display: none;
}

.bookmark-btn .far {
    opacity: 0.3;
}

.bookmark-btn.active .fas {
    display: block;
}

.bookmark-btn.active .far {
    display: none;
}

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

.featured-card .card-media {
    height: 72px;
    width: 72px;
    margin: 0 auto 15px;
    overflow: hidden;
    border-radius: 8px;
}

.featured-card .title {
    margin: 0;
}

.featured-card .location {
    font-size: 12px;
    margin: 0;
    color: #000;
    font-weight: 500;
}

.featured-card .vacancy {
    margin: 15px 0 0;
}

.featured-swiper .swiper-slide {
    width: 205px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.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 {
    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: -30px;
    margin-right: -30px;
}

.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: "\f078";
    position: absolute;
    font-family: "Font Awesome 5 Free";
    color: var(--f7-theme-color);
    right: 0;
    top: 3px;
    font-weight: 900;
    line-height: 14px;
    font-size: 16px;
}

.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;
    color: var(--f7-theme-color);
    font-size: 18px;
    line-height: 18px;
    position: relative;
    padding-right: 15px;
}

.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:after {
    content: "";
    background-color: #C4C4C4;
    border-radius: 50%;
    height: 5px;
    width: 5px;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    position: absolute;
}

.dz-meta ul li:last-child {
    margin-right: 0;
    padding-right: 0;
}

.dz-meta ul li:last-child:after {
    content: none;
}

.tag-list {
    padding: 0;
    margin-top: 0;
}

.tag-list li {
    display: inline-block;
    position: relative;
    margin-right: 2px;
}

.tag-list li a {
    font-size: 14px;
}

.tag-list li:after {
    content: ",";
    right: 0;
    bottom: 0;
    color: inharit;
}

.tag-list li:last-child:after {
    content: none;
}

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

.erroe-page .title {
    font-size: 36px;
    margin: 0;
}

.author-bx {
    display: flex;
    align-items: center;
}

.author-bx .dz-media {
    height: 100px;
    width: 100px;
    min-width: 100px;
    position: relative;
    box-sizing: border-box;
    border-radius: 20px;
    overflow: hidden;
    margin-right: 20px;
}

.author-bx .dz-media img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.author-bx .name {
    margin: 0 0 5px;
}

.author-bx p {
    margin: 0;
}

.social-list {
    padding: 0;
    margin: 10px -5px 0;
    display: flex;
}

.social-list li {
    display: inline-block;
    padding: 0 5px;
}

.download-cv {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    justify-content: space-between;
    margin: 0 0 30px;
    box-shadow: unset;
}

.download-cv .info {
    color: #fff;
}

.download-cv .info .item-title {
    margin: 0 0 5px;
    color: #fff;
}

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

.skill-bar .title {
    margin: 15px 0 0;
}

.skill-bar .gauge-value-text {
    font-weight: 700;
}

.skill-bar .gauge-front-circle {
    stroke: var(--f7-theme-color);
}

.skill-bar text[fill],
.skill-bar text {
    fill: var(--f7-theme-color);
}

.dz-timeline {
    padding: 0;
    margin: 0;
}

.dz-timeline .timeline-item {
    padding-bottom: 30px;
}

.dz-timeline .timeline-item .timeline-item-divider {
    width: 16px;
    height: 16px;
    border: 2px solid;
    border-color: var(--f7-theme-color);
    background: var(--f7-theme-color-white);
    margin-left: 0;
    margin-right: 25px;
}

.dz-timeline .timeline-item .timeline-item-divider:after,
.dz-timeline .timeline-item .timeline-item-divider:before {
    left: 8px;
    transform: unset;
    background: var(--f7-theme-color);
}

.dz-timeline .timeline-item .timeline-item-content {
    margin: 0;
}

.dz-timeline .timeline-item .item-date {
    font-weight: 500;
}

.dz-timeline .timeline-item .title {
    margin: 10px 0 0;
}

.dz-timeline .timeline-item p {
    margin: 15px 0 0;
}

.dz-timeline .timeline-item:first-child .timeline-item-divider {
    background: var(--f7-theme-color);
}

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

.skill-swiper .swiper-slide {
    width: 100px;
}

.skill-swiper .swiper-pagination-bullets {
    bottom: 0;
}

.skill-swiper .swiper-pagination-bullet {
    width: 16px;
    height: 5px;
    border-radius: 10px;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
}

.skill-swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 30px;
}

.main-logo {
    position: relative;
    display: flex;
    align-items: center;
    text-align: left;
}

.main-logo .logo-icon {
    background: var(--f7-theme-color);
    height: 70px;
    width: 70px;
    border-radius: 8px;
    text-align: center;
    line-height: 70px;
}

.main-logo .logo-icon svg {
    height: 70px;
}

.main-logo .logo-text {
    margin-left: 16px;
}

.main-logo .logo-text .text {
    font-size: 40px;
    margin: 0 0 5px;
    line-height: 40px;
}

.main-logo .logo-text p {
    margin: 0;
}

.welcome-screen .main-logo {
    justify-content: center;
    margin-bottom: 100px;
}

.welcome-swiper .swiper-slide {
    max-width: 210px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.welcome-swiper .swiper-slide.swiper-slide-active .check {
    opacity: 1;
}

.welcome-swiper .swiper-slide .card-featured {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.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: 8px;
    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: #000000;
}

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

.fab-btn {
    right: 30px;
    bottom: 30px;
}

.fab-btn .btn {
    height: 64px;
    width: 64px;
    border-radius: 50%;
}

.fab-btn .btn .md-only path[fill].icon,
.fab-btn .btn .md-only path.icon {
    fill: var(--f7-theme-color);
}

.fab-btn .btn .md-only i {
    color: var(--f7-theme-color);
}

.fab-btn .fab-label {
    padding: 8px 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: #fff;
    background-color: var(--f7-theme-color);
}
.accordion-item {
    -webkit-box-shadow: 10px 10px 10px 0px #000000;
    -moz-box-shadow: 10px 10px 10px 0px #000000;
    box-shadow: 0px 5px 10px 0px #000000;
    background: -webkit-linear-gradient(43deg, #151515 0%, #000000 90%);
    background: -o-linear-gradient(43deg, #151515 0%, #000000 90%);
    background: -moz-linear-gradient(43deg, #151515 0%, #000000 90%);
    background: linear-gradient(43deg, #151515 0%, #000000 90%);
padding: 5px;
    border: 2px solid #151515;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    padding: 10px;
    margin-bottom: 5px;
    border-radius: 6px;
font-size:1em;
  font-weight: bold;

}
.active, .accordion-item-toggle:hover {
         box-shadow: 10px 10px 10px 10px 0 #fff;
color: #ffbc00;

}

.fab-btn .fab-buttons a {
    font-size: 20px;
}

.bottom-layer {
    width: 100%;
    height: 100px;
    background: -moz-linear-gradient(top, rgba(30, 87, 153, 0) 0%, rgba(32, 89, 154, 0) 1%, var(--f7-theme-color-white) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(30, 87, 153, 0) 0%, rgba(32, 89, 154, 0) 1%, var(--f7-theme-color-white) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(30, 87, 153, 0) 0%, rgba(32, 89, 154, 0) 1%, var(--f7-theme-color-white) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    position: fixed;
    z-index: 1;
    left: 0;
    bottom: 0;
}

.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: 8px;
    padding: 10px;
    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 8px;
}

.messagebar .toolbar-inner .messagebar-attachments {
    border-bottom: 0;
}

.messagebar .messagebar-area {
    margin: 0 0 0 20px;
}

.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: 15px 0 0 !important;
    max-width: 100%;
}

.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: var(--f7-theme-color-light);
    color: #0f1631;
    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;
}

.inner-details .navbar {
    height: 80px;
}

.inner-details .head-details {
    text-align: center;
    position: relative;
    padding: 20px 20px 30px;
    z-index: 1;
}

.inner-details .head-details .dz-media {
    height: 92px;
    width: 92px;
    border-radius: 8px;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
}

.inner-details .head-details:after {
    content: "";
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--f7-theme-color);
    z-index: -1;
}

.job-details .head-details .title {
    margin: 20px 0 0;
}

.job-details .head-details:after {
    height: 80px;
}

.job-details .tabbar.tab-style-1 {
    height: 45px;
}

.job-details .tabbar.tab-style-1 .toolbar-inner {
    overflow: unset;
    padding: 0;
}

.job-details .bottom-layer {
    height: 200px;
}

.job-details .footer-button {
    background-color: transparent;
}

.info-list {
    padding: 0;
    margin-left: -5px;
    display: flex;
    margin-right: -5px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.info-list li {
    display: inline-block;
    padding: 0 5px;
}

.info-list li .title {
    font-size: 12px;
    font-weight: 500;
    color: #424242;
    margin: 0 0 8px;
    line-height: 12px;
}

.check-list {
    margin: 0;
    padding: 0;
}

.check-list li {
    padding: 5px 0 5px 25px;
    font-size: 14px;
    display: block;
    position: relative;
}

.check-list li:after {
    content: "\f058";
    font-family: "Font Awesome 5 Free";
    color: var(--f7-theme-color);
    font-weight: 900;
    left: 0;
    position: absolute;
}

.photo-browser-popup .navbar-photo-browser a.link.popup-close:after {
    content: "\f057";
    font-family: "Font Awesome 5 Free";
    font-weight: 400;
}

.photo-browser-popup .navbar-photo-browser a.link.popup-close span {
    display: none;
}

.company-details .head-details {
    padding: 20px 0 0;
    margin-bottom: 35px;
}

.company-details .head-details .title {
    margin: 20px 0 0;
    color: #fff;
    font-weight: 500;
}

.company-details .head-details:after {
    height: calc(100% - 30px);
}

.company-details .head-details .block-btn {
    padding: 24px 30px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}

.company-details .head-details .block-btn .title {
    margin: 0;
    color: #000;
}

.company-details .head-details .block-btn i {
    font-size: 20px;
}

.company-details .head-details .location {
    color: #fff;
    margin: 10px 0;
}

.rating {
    color: #fff;
    font-size: 16px;
}

.rating i {
    color: #ff7d05;
    margin-right: 5px;
    font-size: 18px;
}

.content-info {
    padding: 0;
    margin-left: -10px;
    display: flex;
    margin-right: -10px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.content-info li {
    display: inline-block;
    padding: 0 10px;
    text-align: center;
}

.content-info li .title {
    font-size: 12px;
    font-weight: 500;
    color: #424242;
    margin: 0 0 8px;
    line-height: 12px;
}

.content-info li p {
    font-size: 12px;
    font-weight: 500;
    margin: 0;
}

.content-info li i {
    font-size: 20px;
    margin-bottom: 10px;
}

.gallery-swiper .dz-media {
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    margin-bottom: 21px;
}

.gallery-swiper .dz-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-swiper .swiper-slide {
    width: 206px;
}

.apply-form:before {
    z-index: 9999;
}

.modal-popup {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 99999;
    background-color: var(--f7-theme-color-white);
    transform: translate(-50%, -50%);
    padding: 25px;
    border-radius: 18px;
    max-width: 400px;
    width: 400px;
    box-sizing: border-box;
}

.modal-popup .modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 25px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin: -25px -25px 20px;
}

.modal-popup .modal-header .modal-title {
    margin: 0;
}

@media only screen and (max-width: 575px) {
    .modal-popup {
        max-width: 315px;
        width: 315px;
    }
}

.custom-file {
    background-color: var(--f7-theme-color-light);
    border-radius: 8px;
    padding: 25px;
    position: relative;
}

.custom-file .custom-file-input {
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

.custom-file .custom-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.custom-file .custom-text .custom-file-label {
    margin: 0;
}

/* 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: flex-end;
    margin-bottom: 30px;
}

.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: 15px;
    border: 2px solid #fff;
    position: absolute;
    right: -8px;
    top: -7px;
    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-logo {
    padding: 30px;
    position: relative;
    display: flex;
    align-items: center;
}

.sidebar-logo .logo-icon {
    background: var(--f7-theme-color);
    height: 54px;
    width: 54px;
    border-radius: 8px;
    text-align: center;
    line-height: 54px;
}

.sidebar-logo .logo-icon svg {
    height: 54px;
}

.sidebar-logo .text {
    margin: 0 0 0 12px;
    font-size: 34px;
    font-weight: 700;
}

.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: 42px;
    height: 30px;
    line-height: 1;
    width: 30px;
}

.sidebar-left .nav-bar {
    padding: 20px 20px 20px 0;
    margin: 30px 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 30px;
    position: relative;
    border-radius: 0 8px 8px 0 !important;
    margin: 0;
}

.sidebar-left .nav-bar ul li .item-link svg,
.sidebar-left .nav-bar ul li .item-link img {
    margin-right: 20px;
}

.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 {
    background: var(--f7-theme-color);
    background: var(--bg-green);
}

.sidebar-left .nav-bar ul li .item-link.item-selected path[fill],
.sidebar-left .nav-bar ul li .item-link.item-selected path {
    fill: #fff;
}

.sidebar-left .nav-bar ul li .item-link.item-selected i,
.sidebar-left .nav-bar ul li .item-link.item-selected span {
    color: #fff;
}

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

/* 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 {
    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 .navbar.navbar-style-1.navbar-transparent.navbar-transparent-visible a.link {
    border-color: #333333;
}

.theme-dark .navbar.navbar-style-1.navbar-transparent a.link {
    border-color: #fff;
}

.theme-dark .modal-popup .modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Background Color */
.theme-dark .tab-style-1,
.theme-dark .footer-button,
.theme-dark .page-onboading .page-content,
.theme-dark .card-featured .icon-bx,
.theme-dark .light .navbar,
.theme-dark .light .toolbar,
.theme-dark .photo-browser-swiper-container,
.theme-dark .photo-browser-page .navbar-bg,
.theme-dark .navbar-photo-browser .navbar-bg,
.theme-dark .photo-browser-page .toolbar,
.theme-dark .photo-browser-captions-light .photo-browser-caption {
    background: #151515;
}
.theme-dark body,
.theme-dark .page,
.theme-dark .light.page,
.theme-dark .page-content, 
.theme-dark .light .page-content {
    background-color: #060f01;
    background-image: url("/img/pwa/bg.webp");
    background-repeat: repeat;
}
.admin-panel.theme-dark body,
.admin-panel.theme-dark .page,
.admin-panel.theme-dark .light.page,
.admin-panel.theme-dark .page-content, 
.admin-panel.theme-dark .light .page-content {
    background-color: #120606;
    background-image: url("/img/pwa/bg-red-fill.png");
    background-repeat: repeat;
}
.driver-panel.theme-dark body,
.driver-panel.theme-dark .page,
.driver-panel.theme-dark .light.page,
.driver-panel.theme-dark .page-content, 
.driver-panel.theme-dark .light .page-content {
    background-color: #0b040c;
    background-image: url("/img/pwa/bg-purple-fill.png");
    background-repeat: repeat;
}
.bg-greeny {
    background-color: #060f01;
    background-image: url("/img/pwa/bg.webp") !important;
    background-repeat: repeat;
}
.bg-greeny-red {
    background-color: #060f01;
    background-image: url("/img/pwa/bg-red-fill.png") !important;
    background-repeat: repeat;
}
.bg-greeny-purple {
    background-color: #060f01;
    background-image: url("/img/pwa/bg-purple-fill.png") !important;
    background-repeat: repeat;
}
.no-bg {
    background: #151515 !important;
}
.theme-dark .navbar .navbar-bg {
    background: #151515 !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 .form-elements ul .item-content .item-inner .item-input-wrap .form-control,
.theme-dark .company-details .head-details .block-btn,
.theme-dark .card-bx:not([class*='card-chart']) {
    background-color: #000;
}

.theme-dark .skill-bar .gauge-back-circle {
    stroke: #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 .messages .message.message-received .message-content .message-bubble,
.theme-dark .photo-browser-captions-light .photo-browser-caption {
    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] {
    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;
}

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

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

.theme-dark.md:not([class*='color-theme']) {
    --f7-theme-color: #31cb2f;
    --f7-theme-color-rgb: 17, 111, 8;
    --f7-theme-color-shade: #31cb2f;
    --f7-theme-color-tint: #2d3b71;
}

.theme-dark.md.color-theme-black {
    --f7-theme-color: #989898;
    --f7-theme-color-light: #313131;
}

/* Theme Color */
:root,
.md:not([class*='color-theme']) {
    --f7-theme-color: #106F07;
    --f7-theme-color-rgb: 17, 111, 8;
    --f7-theme-color-shade: #31cb2f;
    --f7-theme-color-tint: #D5DAEF;
    --f7-theme-color-light: #eff2ff;
}

.color-theme-red {
    --f7-theme-color: #a21418;
    --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-gold {
    --f7-theme-color: #ffbc00;
}
.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 {
    --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;
}

.color-theme-orange .rating i {
    color: #ffffff;
}

.navbar {
    background: var(--f7-theme-color-white);
    height: 70px;
}

.navbar a.link {
    padding: 0 10px !important;
    justify-content: center;
    color: #000000;
}

.navbar a.link i {
    font-size: 32px;
}

.navbar a.link [fill],
.navbar a.link path {
    fill: var(--f7-theme-color);
}

.navbar .right i {
    font-size: 32px;
}

.navbar .title-large-text {
    padding-left: 30px;
    padding-right: 30px;
    box-sizing: border-box;
}

.navbar .navbar-inner {
    max-width: 1024px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0 30px;
}

.navbar .navbar-inner .left {
    width: 50px;
    justify-content: center;
}

.navbar .navbar-inner .title {
    color: #000000;
    font-weight: 600;
    width: 100%;
    margin-left: 5px;
    margin-right: 5px;
}

.navbar .navbar-inner .right {
    justify-content: center;
}

.navbar .navbar-bg {
    background: #fff !important;
}

.navbar .navbar-bg:after,
.navbar .navbar-bg:before {
    content: none;
}

.navbar.navbar-transparent {
    background-color: transparent;
    border-color: transparent;
}

.navbar.navbar-transparent a.link [fill],
.navbar.navbar-transparent a.link path {
    fill: #fff;
}

.navbar.navbar-transparent a.link .title,
.navbar.navbar-transparent a.link a,
.navbar.navbar-transparent a.link i {
    color: #fff;
}

.navbar.navbar-transparent.navbar-transparent-visible {
    background: var(--f7-theme-color-white);
    border-color: 1px solid #F4F4F4;
}

.navbar.navbar-transparent.navbar-transparent-visible a.link .title,
.navbar.navbar-transparent.navbar-transparent-visible a.link a,
.navbar.navbar-transparent.navbar-transparent-visible a.link i {
    color: var(--f7-theme-color);
}

.navbar.navbar-transparent.navbar-transparent-visible a.link [fill],
.navbar.navbar-transparent.navbar-transparent-visible a.link path {
    fill: var(--f7-theme-color);
}

.navbar.navbar-style-1 .navbar-inner .title {
    text-align: center;
    opacity: 1;
    font-size: 24px;
}

.navbar.navbar-style-1 a.link {
    height: 42px;
    width: 42px;
    min-width: 42px;
    border-radius: 8px;
    border: 1px solid #e8e8e8;
    padding: 0 !important;
}

.navbar.navbar-style-1 a.link:before {
    content: none;
}

.navbar.navbar-style-1.navbar-transparent .title {
    opacity: 1 !important;
}

.navbar.navbar-style-1 .left,
.navbar.navbar-style-1 .right {
    width: auto;
    overflow: hidden;
}

.navbar-list-1 ul {
    padding: 0;
}

.navbar-list-1 ul li {
    display: block;
    margin-bottom: 15px;
}

.navbar-list-1 ul li a {
    display: flex;
    justify-content: start;
}

.navbar-list-1 ul li a .icons {
    width: 24px;
    margin-right: 15px;
}

.tabbar.tab-style-1 {
    height: 64px;
    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;
    text-transform: capitalize;
    letter-spacing: unset;
    font-weight: 600;
    width: auto;
    padding: 12px 36px;
    border-radius: 8px;
    height: 46px;
    background-color: transparent;
    width: 100%;
}

.tabbar.tab-style-1 .tab-link.tab-link-active {
    color: var(--f7-theme-color);
    background-color: var(--f7-theme-color-white);
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.1);
}

.tabbar.tab-style-2 {
    background-color: transparent;
    margin-left: -30px;
}

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

.tabbar.tab-style-2 .tab-link {
    font-size: 18px;
    letter-spacing: unset;
    text-transform: capitalize;
    opacity: 0.5;
}

.tabbar.tab-style-2 .tab-link:after {
    content: "\f111";
    font-size: 10px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    opacity: 0;
    color: #143FD8;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
}

.tabbar.tab-style-2 .tab-link.tab-link-active {
    opacity: 1;
}

.tabbar.tab-style-2 .tab-link.tab-link-active:after {
    opacity: 0.8;
}

@media only screen and (max-width: 991px) {
    .tabbar.tab-style-2 {
        margin-right: -30px;
    }
}

.button {
    letter-spacing: unset;
}

.button.button-large {
    font-size: 16px;
    padding: 20px 30px;
    height: auto;
    line-height: 1.3;
    font-weight: 600;
    border-radius: 8px;
}

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

.button.button-secondary {
    background-color: #143FD8;
    color: var(--f7-theme-color);
}

.button.button-gray {
    background-color: #E5E5E5;
    color: #646464;
}

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

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

.searchbar input[type=search],
.searchbar input[type=text] {
    font-size: 16px;
}

.page-content .searchbar.search-box {
    height: 50px;
    box-shadow: unset;
    margin: 0 0 20px;
    border-radius: 8px;
    width: 100%;
}

.page-content .searchbar.search-box .searchbar-input-wrap input {
    border: 1px solid #e9e9e9;
    height: 50px;
    background-color: var(--f7-theme-color-white);
    font-size: 14px;
    padding: 12px 50px 12px 20px;
    border-radius: 8px;
    font-weight: 400;
    color: #585858;
}

.page-content .searchbar.search-box .searchbar-input-wrap .searchbar-icon {
    right: 20px;
    margin: 0;
    top: 16px;
    left: auto;
}

.page-content .searchbar.search-box .searchbar-input-wrap .searchbar-icon:after {
    content: none;
}
.product-swiper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.scrollable-dialog {
  height: auto;
  max-height: 90vh;
  overflow: overlay;
}
.scrollable-dialog .dialog-text {
  height: auto;
  max-height: 60vh;
  overflow-y: auto;
}
#notifications-container-previous .text-primary {
    color: gray !important;
}
.margin-bottom-notification {
    margin-bottom: 24px !important;
}