/*
 GoMobileUX customize css starts here 
 * GoMobileUX v2 (https://maxartkiller.com/)
 * Copyright 2021 Maxartkiller 

==================================
Table of content 
==================================

1. variables
2. body
3. avatar
4. fonts and texts
5. sidebar
6. utility
7. navbar
8. form
9. Chart and Graph
10. darkmode
11. footer
12. carousel
13. loader
14. lists
15. calendar



*/
/* 0. Grid */
/*!
 * Bootstrap Grid v5.3.3 (https://getbootstrap.com/)
 * Copyright 2011-2024 The Bootstrap Authors
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
  box-sizing: border-box;
}

@media (min-width: 576px) {
  .container, .container-sm {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container, .container-md, .container-sm {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container, .container-lg, .container-md, .container-sm {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1320px;
  }
}
:root {
  --bs-breakpoint-xs: 0;
  --bs-breakpoint-sm: 576px;
  --bs-breakpoint-md: 768px;
  --bs-breakpoint-lg: 992px;
  --bs-breakpoint-xl: 1200px;
  --bs-breakpoint-xxl: 1400px ;
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
  box-sizing: border-box;
}

.row > * {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
  box-sizing: border-box;
}

.col {
  flex: 1 0 0%;
}

.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}

.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

.g-0, .gx-0 {
  --bs-gutter-x: 0 ;
}

.g-0, .gy-0 {
  --bs-gutter-y: 0 ;
}

.g-1, .gx-1 {
  --bs-gutter-x: 0.25rem ;
}

.g-1, .gy-1 {
  --bs-gutter-y: 0.25rem ;
}

.g-2, .gx-2 {
  --bs-gutter-x: 0.5rem ;
}

.g-2, .gy-2 {
  --bs-gutter-y: 0.5rem ;
}

.g-3, .gx-3 {
  --bs-gutter-x: 1rem ;
}

.g-3, .gy-3 {
  --bs-gutter-y: 1rem ;
}

.g-4, .gx-4 {
  --bs-gutter-x: 1.5rem ;
}

.g-4, .gy-4 {
  --bs-gutter-y: 1.5rem ;
}

.g-5, .gx-5 {
  --bs-gutter-x: 3rem ;
}

.g-5, .gy-5 {
  --bs-gutter-y: 3rem ;
}

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }
  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
  .g-sm-0, .gx-sm-0 {
    --bs-gutter-x: 0 ;
  }
  .g-sm-0, .gy-sm-0 {
    --bs-gutter-y: 0 ;
  }
  .g-sm-1, .gx-sm-1 {
    --bs-gutter-x: 0.25rem ;
  }
  .g-sm-1, .gy-sm-1 {
    --bs-gutter-y: 0.25rem ;
  }
  .g-sm-2, .gx-sm-2 {
    --bs-gutter-x: 0.5rem ;
  }
  .g-sm-2, .gy-sm-2 {
    --bs-gutter-y: 0.5rem ;
  }
  .g-sm-3, .gx-sm-3 {
    --bs-gutter-x: 1rem ;
  }
  .g-sm-3, .gy-sm-3 {
    --bs-gutter-y: 1rem ;
  }
  .g-sm-4, .gx-sm-4 {
    --bs-gutter-x: 1.5rem ;
  }
  .g-sm-4, .gy-sm-4 {
    --bs-gutter-y: 1.5rem ;
  }
  .g-sm-5, .gx-sm-5 {
    --bs-gutter-x: 3rem ;
  }
  .g-sm-5, .gy-sm-5 {
    --bs-gutter-y: 3rem ;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }
  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
  .g-md-0, .gx-md-0 {
    --bs-gutter-x: 0 ;
  }
  .g-md-0, .gy-md-0 {
    --bs-gutter-y: 0 ;
  }
  .g-md-1, .gx-md-1 {
    --bs-gutter-x: 0.25rem ;
  }
  .g-md-1, .gy-md-1 {
    --bs-gutter-y: 0.25rem ;
  }
  .g-md-2, .gx-md-2 {
    --bs-gutter-x: 0.5rem ;
  }
  .g-md-2, .gy-md-2 {
    --bs-gutter-y: 0.5rem ;
  }
  .g-md-3, .gx-md-3 {
    --bs-gutter-x: 1rem ;
  }
  .g-md-3, .gy-md-3 {
    --bs-gutter-y: 1rem ;
  }
  .g-md-4, .gx-md-4 {
    --bs-gutter-x: 1.5rem ;
  }
  .g-md-4, .gy-md-4 {
    --bs-gutter-y: 1.5rem ;
  }
  .g-md-5, .gx-md-5 {
    --bs-gutter-x: 3rem ;
  }
  .g-md-5, .gy-md-5 {
    --bs-gutter-y: 3rem ;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }
  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
  .g-lg-0, .gx-lg-0 {
    --bs-gutter-x: 0 ;
  }
  .g-lg-0, .gy-lg-0 {
    --bs-gutter-y: 0 ;
  }
  .g-lg-1, .gx-lg-1 {
    --bs-gutter-x: 0.25rem ;
  }
  .g-lg-1, .gy-lg-1 {
    --bs-gutter-y: 0.25rem ;
  }
  .g-lg-2, .gx-lg-2 {
    --bs-gutter-x: 0.5rem ;
  }
  .g-lg-2, .gy-lg-2 {
    --bs-gutter-y: 0.5rem ;
  }
  .g-lg-3, .gx-lg-3 {
    --bs-gutter-x: 1rem ;
  }
  .g-lg-3, .gy-lg-3 {
    --bs-gutter-y: 1rem ;
  }
  .g-lg-4, .gx-lg-4 {
    --bs-gutter-x: 1.5rem ;
  }
  .g-lg-4, .gy-lg-4 {
    --bs-gutter-y: 1.5rem ;
  }
  .g-lg-5, .gx-lg-5 {
    --bs-gutter-x: 3rem ;
  }
  .g-lg-5, .gy-lg-5 {
    --bs-gutter-y: 3rem ;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }
  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
  .g-xl-0, .gx-xl-0 {
    --bs-gutter-x: 0 ;
  }
  .g-xl-0, .gy-xl-0 {
    --bs-gutter-y: 0 ;
  }
  .g-xl-1, .gx-xl-1 {
    --bs-gutter-x: 0.25rem ;
  }
  .g-xl-1, .gy-xl-1 {
    --bs-gutter-y: 0.25rem ;
  }
  .g-xl-2, .gx-xl-2 {
    --bs-gutter-x: 0.5rem ;
  }
  .g-xl-2, .gy-xl-2 {
    --bs-gutter-y: 0.5rem ;
  }
  .g-xl-3, .gx-xl-3 {
    --bs-gutter-x: 1rem ;
  }
  .g-xl-3, .gy-xl-3 {
    --bs-gutter-y: 1rem ;
  }
  .g-xl-4, .gx-xl-4 {
    --bs-gutter-x: 1.5rem ;
  }
  .g-xl-4, .gy-xl-4 {
    --bs-gutter-y: 1.5rem ;
  }
  .g-xl-5, .gx-xl-5 {
    --bs-gutter-x: 3rem ;
  }
  .g-xl-5, .gy-xl-5 {
    --bs-gutter-y: 3rem ;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0%;
  }
  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }
  .g-xxl-0, .gx-xxl-0 {
    --bs-gutter-x: 0 ;
  }
  .g-xxl-0, .gy-xxl-0 {
    --bs-gutter-y: 0 ;
  }
  .g-xxl-1, .gx-xxl-1 {
    --bs-gutter-x: 0.25rem ;
  }
  .g-xxl-1, .gy-xxl-1 {
    --bs-gutter-y: 0.25rem ;
  }
  .g-xxl-2, .gx-xxl-2 {
    --bs-gutter-x: 0.5rem ;
  }
  .g-xxl-2, .gy-xxl-2 {
    --bs-gutter-y: 0.5rem ;
  }
  .g-xxl-3, .gx-xxl-3 {
    --bs-gutter-x: 1rem ;
  }
  .g-xxl-3, .gy-xxl-3 {
    --bs-gutter-y: 1rem ;
  }
  .g-xxl-4, .gx-xxl-4 {
    --bs-gutter-x: 1.5rem ;
  }
  .g-xxl-4, .gy-xxl-4 {
    --bs-gutter-y: 1.5rem ;
  }
  .g-xxl-5, .gx-xxl-5 {
    --bs-gutter-x: 3rem ;
  }
  .g-xxl-5, .gy-xxl-5 {
    --bs-gutter-y: 3rem ;
  }
}
.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-grid {
  display: grid !important;
}

.d-inline-grid {
  display: inline-grid !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.d-none {
  display: none !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.justify-content-evenly {
  justify-content: space-evenly !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

.order-first {
  order: -1 !important;
}

.order-0 {
  order: 0 !important;
}

.order-1 {
  order: 1 !important;
}

.order-2 {
  order: 2 !important;
}

.order-3 {
  order: 3 !important;
}

.order-4 {
  order: 4 !important;
}

.order-5 {
  order: 5 !important;
}

.order-last {
  order: 6 !important;
}

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}

.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}

.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}

.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mt-auto {
  margin-top: auto !important;
}

.me-0 {
  margin-right: 0 !important;
}

.me-1 {
  margin-right: 0.25rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.me-4 {
  margin-right: 1.5rem !important;
}

.me-5 {
  margin-right: 3rem !important;
}

.me-auto {
  margin-right: auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ms-0 {
  margin-left: 0 !important;
}

.ms-1 {
  margin-left: 0.25rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.ms-3 {
  margin-left: 1rem !important;
}

.ms-4 {
  margin-left: 1.5rem !important;
}

.ms-5 {
  margin-left: 3rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}

.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}

.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.pe-1 {
  padding-right: 0.25rem !important;
}

.pe-2 {
  padding-right: 0.5rem !important;
}

.pe-3 {
  padding-right: 1rem !important;
}

.pe-4 {
  padding-right: 1.5rem !important;
}

.pe-5 {
  padding-right: 3rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.ps-1 {
  padding-left: 0.25rem !important;
}

.ps-2 {
  padding-left: 0.5rem !important;
}

.ps-3 {
  padding-left: 1rem !important;
}

.ps-4 {
  padding-left: 1.5rem !important;
}

.ps-5 {
  padding-left: 3rem !important;
}

@media (min-width: 576px) {
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-grid {
    display: grid !important;
  }
  .d-sm-inline-grid {
    display: inline-grid !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
  .order-sm-first {
    order: -1 !important;
  }
  .order-sm-0 {
    order: 0 !important;
  }
  .order-sm-1 {
    order: 1 !important;
  }
  .order-sm-2 {
    order: 2 !important;
  }
  .order-sm-3 {
    order: 3 !important;
  }
  .order-sm-4 {
    order: 4 !important;
  }
  .order-sm-5 {
    order: 5 !important;
  }
  .order-sm-last {
    order: 6 !important;
  }
  .m-sm-0 {
    margin: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mt-sm-3 {
    margin-top: 1rem !important;
  }
  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mt-sm-5 {
    margin-top: 3rem !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .me-sm-0 {
    margin-right: 0 !important;
  }
  .me-sm-1 {
    margin-right: 0.25rem !important;
  }
  .me-sm-2 {
    margin-right: 0.5rem !important;
  }
  .me-sm-3 {
    margin-right: 1rem !important;
  }
  .me-sm-4 {
    margin-right: 1.5rem !important;
  }
  .me-sm-5 {
    margin-right: 3rem !important;
  }
  .me-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .ms-sm-0 {
    margin-left: 0 !important;
  }
  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }
  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }
  .ms-sm-3 {
    margin-left: 1rem !important;
  }
  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }
  .ms-sm-5 {
    margin-left: 3rem !important;
  }
  .ms-sm-auto {
    margin-left: auto !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pt-sm-3 {
    padding-top: 1rem !important;
  }
  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pt-sm-5 {
    padding-top: 3rem !important;
  }
  .pe-sm-0 {
    padding-right: 0 !important;
  }
  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pe-sm-3 {
    padding-right: 1rem !important;
  }
  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pe-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }
  .ps-sm-0 {
    padding-left: 0 !important;
  }
  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }
  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }
  .ps-sm-3 {
    padding-left: 1rem !important;
  }
  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }
  .ps-sm-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 768px) {
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-grid {
    display: grid !important;
  }
  .d-md-inline-grid {
    display: inline-grid !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
  .d-md-none {
    display: none !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
  .order-md-first {
    order: -1 !important;
  }
  .order-md-0 {
    order: 0 !important;
  }
  .order-md-1 {
    order: 1 !important;
  }
  .order-md-2 {
    order: 2 !important;
  }
  .order-md-3 {
    order: 3 !important;
  }
  .order-md-4 {
    order: 4 !important;
  }
  .order-md-5 {
    order: 5 !important;
  }
  .order-md-last {
    order: 6 !important;
  }
  .m-md-0 {
    margin: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mt-md-1 {
    margin-top: 0.25rem !important;
  }
  .mt-md-2 {
    margin-top: 0.5rem !important;
  }
  .mt-md-3 {
    margin-top: 1rem !important;
  }
  .mt-md-4 {
    margin-top: 1.5rem !important;
  }
  .mt-md-5 {
    margin-top: 3rem !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .me-md-0 {
    margin-right: 0 !important;
  }
  .me-md-1 {
    margin-right: 0.25rem !important;
  }
  .me-md-2 {
    margin-right: 0.5rem !important;
  }
  .me-md-3 {
    margin-right: 1rem !important;
  }
  .me-md-4 {
    margin-right: 1.5rem !important;
  }
  .me-md-5 {
    margin-right: 3rem !important;
  }
  .me-md-auto {
    margin-right: auto !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-md-3 {
    margin-bottom: 1rem !important;
  }
  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-md-5 {
    margin-bottom: 3rem !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .ms-md-0 {
    margin-left: 0 !important;
  }
  .ms-md-1 {
    margin-left: 0.25rem !important;
  }
  .ms-md-2 {
    margin-left: 0.5rem !important;
  }
  .ms-md-3 {
    margin-left: 1rem !important;
  }
  .ms-md-4 {
    margin-left: 1.5rem !important;
  }
  .ms-md-5 {
    margin-left: 3rem !important;
  }
  .ms-md-auto {
    margin-left: auto !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pt-md-1 {
    padding-top: 0.25rem !important;
  }
  .pt-md-2 {
    padding-top: 0.5rem !important;
  }
  .pt-md-3 {
    padding-top: 1rem !important;
  }
  .pt-md-4 {
    padding-top: 1.5rem !important;
  }
  .pt-md-5 {
    padding-top: 3rem !important;
  }
  .pe-md-0 {
    padding-right: 0 !important;
  }
  .pe-md-1 {
    padding-right: 0.25rem !important;
  }
  .pe-md-2 {
    padding-right: 0.5rem !important;
  }
  .pe-md-3 {
    padding-right: 1rem !important;
  }
  .pe-md-4 {
    padding-right: 1.5rem !important;
  }
  .pe-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-md-3 {
    padding-bottom: 1rem !important;
  }
  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-md-5 {
    padding-bottom: 3rem !important;
  }
  .ps-md-0 {
    padding-left: 0 !important;
  }
  .ps-md-1 {
    padding-left: 0.25rem !important;
  }
  .ps-md-2 {
    padding-left: 0.5rem !important;
  }
  .ps-md-3 {
    padding-left: 1rem !important;
  }
  .ps-md-4 {
    padding-left: 1.5rem !important;
  }
  .ps-md-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 992px) {
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
  .d-lg-inline-grid {
    display: inline-grid !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
  .order-lg-first {
    order: -1 !important;
  }
  .order-lg-0 {
    order: 0 !important;
  }
  .order-lg-1 {
    order: 1 !important;
  }
  .order-lg-2 {
    order: 2 !important;
  }
  .order-lg-3 {
    order: 3 !important;
  }
  .order-lg-4 {
    order: 4 !important;
  }
  .order-lg-5 {
    order: 5 !important;
  }
  .order-lg-last {
    order: 6 !important;
  }
  .m-lg-0 {
    margin: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mt-lg-3 {
    margin-top: 1rem !important;
  }
  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mt-lg-5 {
    margin-top: 3rem !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .me-lg-0 {
    margin-right: 0 !important;
  }
  .me-lg-1 {
    margin-right: 0.25rem !important;
  }
  .me-lg-2 {
    margin-right: 0.5rem !important;
  }
  .me-lg-3 {
    margin-right: 1rem !important;
  }
  .me-lg-4 {
    margin-right: 1.5rem !important;
  }
  .me-lg-5 {
    margin-right: 3rem !important;
  }
  .me-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .ms-lg-0 {
    margin-left: 0 !important;
  }
  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }
  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }
  .ms-lg-3 {
    margin-left: 1rem !important;
  }
  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }
  .ms-lg-5 {
    margin-left: 3rem !important;
  }
  .ms-lg-auto {
    margin-left: auto !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pt-lg-3 {
    padding-top: 1rem !important;
  }
  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pt-lg-5 {
    padding-top: 3rem !important;
  }
  .pe-lg-0 {
    padding-right: 0 !important;
  }
  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pe-lg-3 {
    padding-right: 1rem !important;
  }
  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pe-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }
  .ps-lg-0 {
    padding-left: 0 !important;
  }
  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }
  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }
  .ps-lg-3 {
    padding-left: 1rem !important;
  }
  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }
  .ps-lg-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-grid {
    display: grid !important;
  }
  .d-xl-inline-grid {
    display: inline-grid !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
  .d-xl-none {
    display: none !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
  .order-xl-first {
    order: -1 !important;
  }
  .order-xl-0 {
    order: 0 !important;
  }
  .order-xl-1 {
    order: 1 !important;
  }
  .order-xl-2 {
    order: 2 !important;
  }
  .order-xl-3 {
    order: 3 !important;
  }
  .order-xl-4 {
    order: 4 !important;
  }
  .order-xl-5 {
    order: 5 !important;
  }
  .order-xl-last {
    order: 6 !important;
  }
  .m-xl-0 {
    margin: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xl-3 {
    margin-top: 1rem !important;
  }
  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xl-5 {
    margin-top: 3rem !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .me-xl-0 {
    margin-right: 0 !important;
  }
  .me-xl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xl-3 {
    margin-right: 1rem !important;
  }
  .me-xl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xl-5 {
    margin-right: 3rem !important;
  }
  .me-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .ms-xl-0 {
    margin-left: 0 !important;
  }
  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xl-3 {
    margin-left: 1rem !important;
  }
  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xl-5 {
    margin-left: 3rem !important;
  }
  .ms-xl-auto {
    margin-left: auto !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xl-3 {
    padding-top: 1rem !important;
  }
  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xl-5 {
    padding-top: 3rem !important;
  }
  .pe-xl-0 {
    padding-right: 0 !important;
  }
  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xl-3 {
    padding-right: 1rem !important;
  }
  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xl-0 {
    padding-left: 0 !important;
  }
  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xl-3 {
    padding-left: 1rem !important;
  }
  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xl-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 1400px) {
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-grid {
    display: grid !important;
  }
  .d-xxl-inline-grid {
    display: inline-grid !important;
  }
  .d-xxl-table {
    display: table !important;
  }
  .d-xxl-table-row {
    display: table-row !important;
  }
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
  .d-xxl-none {
    display: none !important;
  }
  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xxl-row {
    flex-direction: row !important;
  }
  .flex-xxl-column {
    flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    justify-content: center !important;
  }
  .justify-content-xxl-between {
    justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    justify-content: space-around !important;
  }
  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xxl-start {
    align-items: flex-start !important;
  }
  .align-items-xxl-end {
    align-items: flex-end !important;
  }
  .align-items-xxl-center {
    align-items: center !important;
  }
  .align-items-xxl-baseline {
    align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    align-items: stretch !important;
  }
  .align-content-xxl-start {
    align-content: flex-start !important;
  }
  .align-content-xxl-end {
    align-content: flex-end !important;
  }
  .align-content-xxl-center {
    align-content: center !important;
  }
  .align-content-xxl-between {
    align-content: space-between !important;
  }
  .align-content-xxl-around {
    align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    align-content: stretch !important;
  }
  .align-self-xxl-auto {
    align-self: auto !important;
  }
  .align-self-xxl-start {
    align-self: flex-start !important;
  }
  .align-self-xxl-end {
    align-self: flex-end !important;
  }
  .align-self-xxl-center {
    align-self: center !important;
  }
  .align-self-xxl-baseline {
    align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    align-self: stretch !important;
  }
  .order-xxl-first {
    order: -1 !important;
  }
  .order-xxl-0 {
    order: 0 !important;
  }
  .order-xxl-1 {
    order: 1 !important;
  }
  .order-xxl-2 {
    order: 2 !important;
  }
  .order-xxl-3 {
    order: 3 !important;
  }
  .order-xxl-4 {
    order: 4 !important;
  }
  .order-xxl-5 {
    order: 5 !important;
  }
  .order-xxl-last {
    order: 6 !important;
  }
  .m-xxl-0 {
    margin: 0 !important;
  }
  .m-xxl-1 {
    margin: 0.25rem !important;
  }
  .m-xxl-2 {
    margin: 0.5rem !important;
  }
  .m-xxl-3 {
    margin: 1rem !important;
  }
  .m-xxl-4 {
    margin: 1.5rem !important;
  }
  .m-xxl-5 {
    margin: 3rem !important;
  }
  .m-xxl-auto {
    margin: auto !important;
  }
  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xxl-0 {
    margin-top: 0 !important;
  }
  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xxl-3 {
    margin-top: 1rem !important;
  }
  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xxl-5 {
    margin-top: 3rem !important;
  }
  .mt-xxl-auto {
    margin-top: auto !important;
  }
  .me-xxl-0 {
    margin-right: 0 !important;
  }
  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xxl-3 {
    margin-right: 1rem !important;
  }
  .me-xxl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xxl-5 {
    margin-right: 3rem !important;
  }
  .me-xxl-auto {
    margin-right: auto !important;
  }
  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xxl-auto {
    margin-bottom: auto !important;
  }
  .ms-xxl-0 {
    margin-left: 0 !important;
  }
  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xxl-3 {
    margin-left: 1rem !important;
  }
  .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xxl-5 {
    margin-left: 3rem !important;
  }
  .ms-xxl-auto {
    margin-left: auto !important;
  }
  .p-xxl-0 {
    padding: 0 !important;
  }
  .p-xxl-1 {
    padding: 0.25rem !important;
  }
  .p-xxl-2 {
    padding: 0.5rem !important;
  }
  .p-xxl-3 {
    padding: 1rem !important;
  }
  .p-xxl-4 {
    padding: 1.5rem !important;
  }
  .p-xxl-5 {
    padding: 3rem !important;
  }
  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xxl-0 {
    padding-top: 0 !important;
  }
  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xxl-3 {
    padding-top: 1rem !important;
  }
  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xxl-5 {
    padding-top: 3rem !important;
  }
  .pe-xxl-0 {
    padding-right: 0 !important;
  }
  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xxl-3 {
    padding-right: 1rem !important;
  }
  .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xxl-5 {
    padding-right: 3rem !important;
  }
  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xxl-0 {
    padding-left: 0 !important;
  }
  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xxl-3 {
    padding-left: 1rem !important;
  }
  .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xxl-5 {
    padding-left: 3rem !important;
  }
}
@media print {
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-grid {
    display: grid !important;
  }
  .d-print-inline-grid {
    display: inline-grid !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: flex !important;
  }
  .d-print-inline-flex {
    display: inline-flex !important;
  }
  .d-print-none {
    display: none !important;
  }
}

/* 1. variables */
:root {
  --f7-grid-gap: 30px;
  --f7-fab-extended-size: 40px;
  --f7-button-large-font-size: 15px;
  --f7-button-large-height: 58px;
  --f7-list-font-size: 16px;
  --f7-input-font-size: 15px;
  --f7-messagebar-height: 44px;
  --f7-message-bubble-font-size: 15px;
  --f7-card-header-border-color: darken($color-secondary, 5%);
  --f7-card-footer-border-color: darken($color-secondary, 5%);
  --f7-list-item-border-color: darken($color-secondary, 5%);
  --f7-list-chevron-icon-color: darken($color-secondary, 8%);
  --f7-list-item-padding-vertical: 10px;
  --f7-elevation-2: 0px 3px 1px -2px rgba(0, 0, 0, 0.05),
    0px 2px 2px 0px rgba(0, 0, 0, 0.05), 0px 1px 5px 0px rgba(0, 0, 0, 0.05);
  --f7-elevation-3: 0px 3px 3px -2px rgba(0, 0, 0, 0.08),
    0px 3px 4px 0px rgba(0, 0, 0, 0.08), 0px 1px 8px 0px rgba(0, 0, 0, 0.08);
}

.color-theme-pink {
  --f7-theme-color: #FF1C52;
  --f7-theme-dark-text-color: #ffffff;
  --f7-theme-color-0: #ff7db1;
  --f7-theme-color-2: #8900aa;
  --page-bg-color: #F8EBEE;
  --page-bg-path1: url("../img/bgshapes.png");
  --page-bg-path2: url("../img/bgshapes2.png");
}
.color-theme-pink .dark-bg {
  --f7-theme-text-color: #ffffff;
  --f7-label-text-color: #000000;
}

.color-theme-red {
  --f7-theme-dark-text-color: #ffffff;
  --f7-theme-color-0: #e91e63;
  --f7-theme-color-2: #ab1826;
  --page-bg-color: #F8EBEE;
  --page-bg-path1: url("../img/bgshapes.png");
  --page-bg-path2: url("../img/bgshapes2.png");
}
.color-theme-red .dark-bg {
  --f7-theme-text-color: #ffffff;
  --f7-label-text-color: #000000;
}

.color-theme-green {
  --f7-theme-color: #27b764;
  --f7-theme-dark-text-color: #ffffff;
  --f7-theme-color-0: #cddc39;
  --f7-theme-color-2: #00796d;
  --page-bg-color: #ebf7f1;
  --page-bg-path1: url("../img/bgshapes-green-1.png");
  --page-bg-path2: url("../img/bgshapes-green-2.png");
}
.color-theme-green .dark-bg {
  --f7-theme-text-color: #ffffff;
  --f7-label-text-color: #000000;
}

.color-theme-blue {
  --f7-theme-dark-text-color: #ffffff;
  --f7-theme-color-0: #39dcbe;
  --f7-theme-color-2: #3f51b5;
  --page-bg-color: #ebf4f8;
  --page-bg-path1: url("../img/bgshapes-blue-1.png");
  --page-bg-path2: url("../img/bgshapes-blue-2.png");
}
.color-theme-blue .dark-bg {
  --f7-theme-text-color: #ffffff;
  --f7-label-text-color: #000000;
}

.color-theme-yellow {
  --f7-theme-dark-text-color: #ffffff;
  --f7-theme-color-0: #cddc39;
  --f7-theme-color-2: #ff5722;
  --page-bg-color: #f8f5eb;
  --page-bg-path1: url("../img/bgshapes-yellow-1.png");
  --page-bg-path2: url("../img/bgshapes-yellow-2.png");
}
.color-theme-yellow .dark-bg {
  --f7-theme-text-color: #ffffff;
  --f7-label-text-color: #000000;
}

.color-theme-orange {
  --f7-theme-dark-text-color: #ffffff;
  --f7-theme-color-0: #86d9ff;
  --f7-theme-color-2: #e21700;
  --page-bg-color: #f8f5eb;
  --page-bg-path1: url("../img/bgshapes-yellow-1.png");
  --page-bg-path2: url("../img/bgshapes-yellow-2.png");
}
.color-theme-orange .dark-bg {
  --f7-theme-text-color: #ffffff;
  --f7-label-text-color: #000000;
}

.color-theme-purple {
  --f7-theme-dark-text-color: #ffffff;
  --f7-theme-color-0: #e91e63;
  --f7-theme-color-2: #511fab;
  --page-bg-color: #f2ebf8;
  --page-bg-path1: url("../img/bgshapes.png");
  --page-bg-path2: url("../img/bgshapes2.png");
}
.color-theme-purple .dark-bg {
  --f7-theme-text-color: #ffffff;
  --f7-label-text-color: #000000;
}

.color-theme-deeppurple {
  --f7-theme-dark-text-color: #ffffff;
  --f7-theme-color-0: #d11ee9;
  --f7-theme-color-2: #01017b;
  --page-bg-color: #f2ebf8;
  --page-bg-path1: url("../img/bgshapes.png");
  --page-bg-path2: url("../img/bgshapes2.png");
}
.color-theme-deeppurple .dark-bg {
  --f7-theme-text-color: #ffffff;
  --f7-label-text-color: #000000;
}

.color-theme-lightblue {
  --f7-theme-dark-text-color: #ffffff;
  --f7-theme-color-0: #39dcbe;
  --f7-theme-color-2: #3f51b5;
  --page-bg-color: #ebf6f8;
  --page-bg-path1: url("../img/bgshapes-blue-1.png");
  --page-bg-path2: url("../img/bgshapes-blue-2.png");
}
.color-theme-lightblue .dark-bg {
  --f7-theme-text-color: #ffffff;
  --f7-label-text-color: #000000;
}

.color-theme-teal {
  --f7-theme-dark-text-color: #ffffff;
  --f7-theme-color-0: #6ddade;
  --f7-theme-color-2: #005296;
  --page-bg-color: #ebf8f3;
  --page-bg-path1: url("../img/bgshapes-green-1.png");
  --page-bg-path2: url("../img/bgshapes-green-2.png");
}
.color-theme-teal .dark-bg {
  --f7-theme-text-color: #ffffff;
  --f7-label-text-color: #000000;
}

.color-theme-lime {
  --f7-theme-dark-text-color: #ffffff;
  --f7-theme-color-0: #ffc107;
  --f7-theme-color-2: #009688;
  --page-bg-color: #eff1dd;
  --page-bg-path1: url("../img/bgshapes-green-1.png");
  --page-bg-path2: url("../img/bgshapes-green-2.png");
}
.color-theme-lime .dark-bg {
  --f7-theme-text-color: #ffffff;
  --f7-label-text-color: #000000;
}

.color-theme-deeporange {
  --f7-theme-dark-text-color: #ffffff;
  --f7-theme-color-0: #ffc107;
  --f7-theme-color-2: #8e0707;
  --page-bg-color: #f8f5eb;
  --page-bg-path1: url("../img/bgshapes.png");
  --page-bg-path2: url("../img/bgshapes2.png");
}
.color-theme-deeporange .dark-bg {
  --f7-theme-text-color: #ffffff;
  --f7-label-text-color: #000000;
}

.color-theme-gray {
  --f7-theme-dark-text-color: #ffffff;
  --f7-theme-color-0: #bfd3da;
  --f7-theme-color-2: #3a6882;
  --page-bg-color: #efefef;
  --page-bg-path1: url("../img/bgshapes-blue-1.png");
  --page-bg-path2: url("../img/bgshapes-blue-2.png");
}
.color-theme-gray .dark-bg {
  --f7-theme-text-color: #ffffff;
  --f7-label-text-color: #000000;
}

.color-theme-black {
  --f7-theme-color: #222222;
  --f7-theme-dark-text-color: #ffffff;
  --f7-theme-color-0: #415a65;
  --f7-theme-color-2: #000000;
  --page-bg-color: #efefef;
  --page-bg-path1: url("../img/bgshapes-blue-1.png");
  --page-bg-path2: url("../img/bgshapes-blue-2.png");
}
.color-theme-black .dark-bg {
  --f7-theme-text-color: #ffffff;
  --f7-label-text-color: #000000;
}

/* 2. body */
.view .page {
  background-color: var(--page-bg-color);
  background-image: var(--page-bg-path1), var(--page-bg-path2);
  background-repeat: repeat-x, repeat-x;
  background-position: center top, center bottom;
  background-attachment: fixed, fixed;
}
.view .page .page-content {
  padding-top: 84px;
  display: flex;
  flex-direction: column;
}
.view .page.page-with-navbar-large .page-content {
  padding-top: 120px;
}
.view .page .messages-content {
  background: transparent;
}
.view .page .messages-content .messages {
  padding-bottom: 10px;
  overflow-y: auto;
  background: transparent;
}
.view .page .messages-content .messages .message + .message:not(.message-first) {
  margin-top: 10px;
}
.view .page .messages-content .messages .message-bubble {
  line-height: 22px;
  padding: 5px 15px;
}
.view .page .messages-content .messages .message-received .message-bubble {
  background-color: rgba(255, 255, 255, 0.8);
}

body {
  background: #eef0f8;
  font-size: 16px;
}

.view .dark-bg,
.dark-bg {
  background: var(--f7-theme-color) url("../img/background1@2x.png") repeat-x top left;
  color: var(--f7-theme-text-color);
  background: url("../img/background1@2x.png"), linear-gradient(to bottom, var(--f7-theme-color-0) 0%, var(--f7-theme-color) 50%, var(--f7-theme-color-2) 100%);
  background-attachment: fixed;
  background-size: 100%;
  background-position: bottom center;
  background-repeat: repeat-x;
}
.view .dark-bg.bg2,
.dark-bg.bg2 {
  background: var(--f7-theme-color) url("../img/background2@2x.png") repeat-x top left;
  color: var(--f7-theme-text-color);
  background: url("../img/background2@2x.png"), linear-gradient(to bottom, var(--f7-theme-color-0) 0%, var(--f7-theme-color) 50%, var(--f7-theme-color-2) 100%);
}
.view .dark-bg.bg3,
.dark-bg.bg3 {
  background: var(--f7-theme-color) url("../img/background3@2x.png") repeat-x top left;
  color: var(--f7-theme-text-color);
  background: url("../img/background3@2x.png"), linear-gradient(to bottom, var(--f7-theme-color-0) 0%, var(--f7-theme-color) 50%, var(--f7-theme-color-2) 100%);
}
.view .dark-bg a,
.dark-bg a {
  color: var(--f7-theme-text-color);
}

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

.bg-blue-light,
.alert-blue {
  background: rgb(245.1871621622, 247.7621621622, 254.5128378378) !important;
  border-color: #7297f8 !important;
}

.bg-red-light,
.alert-red {
  background: rgb(254.5416666667, 238.9583333333, 239.9895833333) !important;
  border-color: #fb737c !important;
}

.bg-green-light,
.alert-green {
  background: rgb(231.9, 251.1, 240.9) !important;
  border-color: #65e5a1 !important;
}

.bg-yellow-light,
.alert-yellow {
  background: rgb(255, 250.035971223, 243.5) !important;
  border-color: #ffc374 !important;
}

.bg-white-opac {
  background-color: rgba(255, 255, 255, 0.25);
}

.bg-whiter {
  background-color: #ffffff;
}

.block {
  margin: 0;
  z-index: auto;
}

.dvh-100 {
  height: calc(100vh - 84px);
  height: calc(100dvh - 84px);
}

.card {
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.75);
}
.card .card-header,
.card .card-footer {
  display: block;
  color: inherit;
}
.card .card-img-top {
  width: 100%;
  display: block;
  text-align: center;
}
.card .card-img-top img {
  max-width: 100%;
  border: 0;
}
.card.card-light {
  background-color: rgba(255, 255, 255, 0.4);
}
.card .card-content-padding .form-list ul {
  background: #ffffff;
}
.card.card-theme {
  background-color: var(--f7-theme-color);
  color: var(--f7-theme-dark-text-color);
}

.actions-modal .card {
  background-color: white;
}

figure {
  margin: 0;
}

.alert {
  padding: 15px;
  border-radius: 10px;
  display: block;
  border: 1px solid transparent;
}

.overlay {
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  display: block;
  position: absolute;
  background: linear-gradient(to bottom, transparent 0%, transparent 42%, rgba(0, 0, 0, 0.65) 100%);
}

.overlay-image {
  position: absolute;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  z-index: 0;
  overflow: hidden;
}
.overlay-image img {
  vertical-align: middle;
  max-width: 470px;
  margin-left: auto;
  margin-top: 15%;
}

.orange-slice {
  float: right;
  margin-right: -150px;
}

figure {
  vertical-align: middle;
}
figure img {
  vertical-align: middle;
}

iframe {
  border: 0;
}

.button {
  border-radius: 8px;
}
.button i,
.button .icons {
  vertical-align: middle;
}

.button-gradient {
  background: var(--f7-theme-color) repeat-x top left;
  color: var(--f7-theme-color-text-color);
  background: linear-gradient(to bottom, var(--f7-theme-color-0) 0%, var(--f7-theme-color) 50%, var(--f7-theme-color-2) 100%);
  color: #ffffff;
}

.badge-new {
  padding: 7px 15px;
  line-height: 30px;
  font-size: 16px;
  display: inline-block;
  border-radius: 25px;
  color: var(--theme-text-color);
  background-color: rgba(255, 255, 255, 0.8);
}
.badge-new:hover {
  color: #ffffff;
  background-color: var(--f7-theme-color);
}
.badge-new.active {
  color: #ffffff;
  background-color: var(--f7-theme-color);
}

.stepper .stepper-input-wrap input,
.stepper-value {
  width: 30px;
}

.product figure {
  border-radius: 10px;
  background-color: var(--page-bg-color);
  z-index: 1;
  margin-bottom: 10px;
}
.product figure:last-child {
  margin-bottom: 0;
}
.product figure.bg-light-yellow {
  background-color: rgba(255, 195, 116, 0.05);
}
.product p {
  line-height: 1.2rem;
}

.p-1 {
  padding: 5px;
}

.tag {
  padding: 5px 15px;
  display: inline-block;
  border-radius: 10px;
  line-height: 20px;
  background-color: rgba(255, 255, 255, 0.25);
}

.counter-number {
  border: 1px solid var(--page-bg-color);
  background: white;
  border-radius: 20px;
  padding: 1px;
  display: inline-block;
}
.counter-number > span {
  min-width: 18px;
  display: inline-block;
  text-align: center;
}
.counter-number > .btn {
  border: 1px solid var(--page-bg-color);
  background-color: var(--page-bg-color);
  color: var(--f7-theme-color);
}
.counter-number > .btn i {
  font-size: 16px;
}

::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, 0.65);
  border-radius: 10px;
}

/* 3. avatar */
.avatar {
  position: relative;
  display: inline-block;
  overflow: hidden;
  margin: 0;
  text-align: center;
  vertical-align: middle;
}
.avatar > i {
  display: inline-block;
  vertical-align: middle;
  margin-top: -3px;
}
.avatar > img {
  width: 100%;
  vertical-align: top;
}
.avatar.avatar-6 {
  line-height: 6px;
  height: 6px;
  width: 6px;
}
.avatar.avatar-10 {
  line-height: 10px;
  height: 10px;
  width: 10px;
}
.avatar.avatar-20 {
  line-height: 20px;
  height: 20px;
  width: 20px;
}
.avatar.avatar-30 {
  line-height: 30px;
  height: 30px;
  width: 30px;
}
.avatar.avatar-36 {
  line-height: 36px;
  height: 36px;
  width: 36px;
}
.avatar.avatar-40 {
  line-height: 40px;
  height: 40px;
  width: 40px;
}
.avatar.avatar-44 {
  line-height: 44px;
  height: 44px;
  width: 44px;
}
.avatar.avatar-50 {
  line-height: 50px;
  height: 50px;
  width: 50px;
}
.avatar.avatar-60 {
  line-height: 60px;
  height: 60px;
  width: 60px;
}
.avatar.avatar-70 {
  line-height: 70px;
  height: 70px;
  width: 70px;
}
.avatar.avatar-80 {
  line-height: 80px;
  height: 80px;
  width: 80px;
}
.avatar.avatar-90 {
  line-height: 90px;
  height: 90px;
  width: 90px;
}
.avatar.avatar-100 {
  line-height: 100px;
  height: 100px;
  width: 100px;
}
.avatar.avatar-110 {
  line-height: 110px;
  height: 110px;
  width: 110px;
}
.avatar.avatar-120 {
  line-height: 120px;
  height: 120px;
  width: 120px;
}
.avatar.avatar-130 {
  line-height: 130px;
  height: 130px;
  width: 130px;
}
.avatar.avatar-140 {
  line-height: 140px;
  height: 140px;
  width: 140px;
}
.avatar.avatar-150 {
  line-height: 150px;
  height: 150px;
  width: 150px;
}
.avatar.avatar-160 {
  line-height: 160px;
  height: 160px;
  width: 160px;
}

.avatar-group {
  z-index: 1;
  display: flex;
}
.avatar-group .avatar {
  z-index: 1;
  margin-left: -20px;
}
.avatar-group .avatar:nth-child(1) {
  z-index: 9;
}
.avatar-group .avatar:nth-child(2) {
  z-index: 8;
}
.avatar-group .avatar:nth-child(3) {
  z-index: 7;
}
.avatar-group .avatar:nth-child(4) {
  z-index: 6;
}
.avatar-group .avatar:nth-child(5) {
  z-index: 5;
}
.avatar-group .avatar:nth-child(6) {
  z-index: 4;
}
.avatar-group .avatar:nth-child(7) {
  z-index: 3;
}
.avatar-group .avatar:nth-child(8) {
  z-index: 2;
}
.avatar-group .avatar:nth-child(9) {
  z-index: 1;
}
.avatar-group .avatar:nth-child(10) {
  z-index: 0;
}
.avatar-group .avatar:nth-child(1) {
  margin-left: 0;
}

/* 4. fonts and texts*/
.f7-icons {
  font-size: 22px;
}

.text-muted {
  opacity: 0.65;
  color: inherit !important;
}

.text-opac {
  opacity: 0.65;
}

.text-success,
.alert-success {
  color: rgb(66.0933333333, 223.1066666667, 139.6933333333) !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.block-title {
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 15px;
  line-height: 1.2;
}
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
.h1:last-child,
.h2:last-child,
.h3:last-child,
.h4:last-child,
.h5:last-child,
.h6:last-child,
.block-title:last-child {
  margin-bottom: 0;
}

.navbar .title {
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 20px;
}

h1,
.h1 {
  font-size: 40px;
}

h2,
.h2 {
  font-size: 32px;
}

h3,
.h3 {
  font-size: 24px;
}

h4,
.h4 {
  font-size: 21px;
}

h5,
.h5 {
  font-size: 19px;
}

h6,
.h6, .block-title {
  font-size: 16px;
}

.block-title {
  overflow: visible;
  display: block;
}

.font-weight-bold {
  font-weight: 600;
}

.underline-0 {
  text-decoration: none;
}

p {
  font-size: 15px;
  margin-top: 0;
  margin-bottom: 10px;
}
p:last-child {
  margin-bottom: 0;
}

small,
.small {
  font-size: 13px;
}
small i, small .f7-icons, small .icon,
.small i,
.small .f7-icons,
.small .icon {
  font-size: 14px;
  margin-top: -3px;
}

a.card-content {
  color: #000000;
  text-decoration: none;
}

.text-normal {
  color: inherit;
  text-decoration: none;
}

@media screen and (max-width: 400px) {
  h1,
  .h1 {
    font-size: 36px;
  }
  h3,
  .h3 {
    font-size: 20px;
  }
}
.text-primary {
  color: #7297f8 !important;
}

.text-color-theme {
  color: var(--f7-theme-color) !important;
}

.size-16 {
  font-size: 16px;
}

.size-18 {
  font-size: 18px;
}

.size-20 {
  font-size: 20px;
}

.size-22 {
  font-size: 22px;
}

.size-24 {
  font-size: 24px;
}

.size-26 {
  font-size: 26px;
}

.size-28 {
  font-size: 28px;
}

.size-30 {
  font-size: 30px;
}

.size-32 {
  font-size: 32px;
}

.size-34 {
  font-size: 34px;
}

.size-36 {
  font-size: 36px;
}

.size-38 {
  font-size: 38px;
}

/* 5. sidebar*/
.panel-left {
  --f7-theme-color-text-color: #ffffff;
  border-radius: 0 10px 10px 0;
}
.panel-left .page {
  background: var(--f7-theme-color) repeat-x top left;
  color: var(--f7-theme-color-text-color);
  background: linear-gradient(to bottom, var(--f7-theme-color-0) 0%, var(--f7-theme-color) 50%, var(--f7-theme-color-2) 100%);
  border-radius: 0 10px 10px 0;
}
.panel-left .page .block-title {
  color: var(--f7-theme-color-text-color);
}
.panel-left .page .list,
.panel-left .page .links-list,
.panel-left .page .accordion-list {
  background-color: transparent;
  padding: 0 15px;
}
.panel-left .page .list ul,
.panel-left .page .links-list ul,
.panel-left .page .accordion-list ul {
  background-color: transparent;
}
.panel-left .page .list ul:before,
.panel-left .page .links-list ul:before,
.panel-left .page .accordion-list ul:before {
  display: none;
}
.panel-left .page .list ul:after,
.panel-left .page .links-list ul:after,
.panel-left .page .accordion-list ul:after {
  display: none;
}
.panel-left .page .list ul li,
.panel-left .page .links-list ul li,
.panel-left .page .accordion-list ul li {
  margin-bottom: 5px;
  font-size: 16px;
}
.panel-left .page .list ul li a,
.panel-left .page .links-list ul li a,
.panel-left .page .accordion-list ul li a {
  justify-content: start;
  padding-left: 0;
  color: var(--f7-theme-color-text-color);
}
.panel-left .page .list ul li a:after,
.panel-left .page .links-list ul li a:after,
.panel-left .page .accordion-list ul li a:after {
  display: none;
}
.panel-left .page .list ul li a:before,
.panel-left .page .links-list ul li a:before,
.panel-left .page .accordion-list ul li a:before {
  color: rgba(255, 255, 255, 0.25);
}
.panel-left .page .list ul li a > i,
.panel-left .page .links-list ul li a > i,
.panel-left .page .accordion-list ul li a > i {
  height: 40px;
  width: 40px;
  line-height: 40px;
  margin-right: 15px;
  border-radius: 6px;
  position: relative;
  color: var(--f7-theme-color-text-color);
}
.panel-left .page .list ul li a.active > i,
.panel-left .page .links-list ul li a.active > i,
.panel-left .page .accordion-list ul li a.active > i {
  color: var(--f7-theme-color-text-color);
}
.panel-left .page .list ul li a.active > i:after,
.panel-left .page .links-list ul li a.active > i:after,
.panel-left .page .accordion-list ul li a.active > i:after {
  content: "";
  background-color: var(--f7-theme-color-text-color);
  border-radius: 6px;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  opacity: 0.15;
}
.panel-left .page .list .accordion-item,
.panel-left .page .links-list .accordion-item,
.panel-left .page .accordion-list .accordion-item {
  border-radius: 6px;
}
.panel-left .page .list .accordion-item.accordion-item-opened,
.panel-left .page .links-list .accordion-item.accordion-item-opened,
.panel-left .page .accordion-list .accordion-item.accordion-item-opened {
  position: relative;
}
.panel-left .page .list .accordion-item.accordion-item-opened:after,
.panel-left .page .links-list .accordion-item.accordion-item-opened:after,
.panel-left .page .accordion-list .accordion-item.accordion-item-opened:after {
  content: "";
  background-color: var(--f7-theme-color-text-color);
  border-radius: 6px;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  opacity: 0.15;
  transform: none;
  z-index: 0;
}
.panel-left .page .list .accordion-item.accordion-item-opened .item-content,
.panel-left .page .links-list .accordion-item.accordion-item-opened .item-content,
.panel-left .page .accordion-list .accordion-item.accordion-item-opened .item-content {
  z-index: 1;
  position: relative;
}
.panel-left .page .list .accordion-item.accordion-item-opened .item-content:after,
.panel-left .page .links-list .accordion-item.accordion-item-opened .item-content:after,
.panel-left .page .accordion-list .accordion-item.accordion-item-opened .item-content:after {
  content: "";
  background-color: var(--f7-theme-color-text-color);
  border-radius: 6px;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  opacity: 0.15;
  transform: none;
}
.panel-left .page .list .accordion-item .accordion-item-content .list,
.panel-left .page .links-list .accordion-item .accordion-item-content .list,
.panel-left .page .accordion-list .accordion-item .accordion-item-content .list {
  padding: 10px;
}

.panel-backdrop {
  background-color: var(--f7-theme-color);
  opacity: 0.5;
  -webkit-backdrop-filter: saturate(180%) blur(3px);
  -moz-backdrop-filter: saturate(180%) blur(3px);
  backdrop-filter: saturate(180%) blur(3px);
}

.with-panel-left-cover .panel-left:after {
  display: none;
}

.with-panel-left-cover .panel-backdrop-in,
.with-panel-right-cover .panel-backdrop-in {
  opacity: 0.3;
}

.panel-right {
  background: transparent;
}
.panel-right .page {
  background-color: rgba(255, 255, 255, 0.75);
}

/* 6. utility*/
.rounded-circle {
  border-radius: 50%;
  overflow: hidden;
}

.overflow-visible {
  overflow: visible !important;
}

.overflow-x-auto {
  overflow-x: auto !important;
}

.overflow-hidden {
  overflow: hidden;
}

.no-padding-left {
  padding-left: 0 !important;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mw-100 {
  max-width: 100%;
}

.margin-bottom {
  margin-bottom: 25px !important;
}

.margin-bottom-auto {
  margin-bottom: auto;
}

.margin-bottom-half {
  margin-bottom: 12px !important;
}

.margin-top {
  margin-top: 25px !important;
}

.margin-top-half {
  margin-top: 12px !important;
}

.margin-h-auto {
  margin-left: auto;
  margin-right: auto;
}

.margin-top-auto {
  margin-top: auto;
}

.mb-50px {
  margin-bottom: 50px;
}

.mb-100px {
  margin-bottom: 100px;
}

.mb-150px {
  margin-bottom: 150px;
}

.top-20 {
  margin-top: -20px !important;
}

.position-relative {
  position: relative;
}

.tick {
  height: 8px;
  width: 8px;
  position: absolute;
  top: 5px;
  right: 0px;
  border-radius: 50%;
  overflow: hidden;
  z-index: 1;
}

.navbars ~ * .fab-center-top,
.navbars ~ * .fab-left-top,
.navbars ~ * .fab-right-top,
.navbars ~ .fab-center-top,
.navbars ~ .fab-left-top,
.navbars ~ .fab-right-top,
.navbar ~ * .fab-center-top,
.navbar ~ * .fab-left-top,
.navbar ~ * .fab-right-top,
.navbar ~ .fab-center-top,
.navbar ~ .fab-left-top,
.navbar ~ .fab-right-top {
  margin-top: auto;
}

.h-5 {
  height: 5px;
}

.h-6 {
  height: 6px;
}

.h-190 {
  height: 190px;
}

.h-150 {
  height: 150px;
}

.h-100 {
  height: 100%;
}

.h-50px {
  height: 50px;
}

.h-100px {
  height: 100px;
}

.height-auto {
  height: auto;
}

.max-width-100 {
  max-width: 100%;
}

.coverimg {
  background-size: cover;
  background-position: center top;
}
.coverimg.position-absolute {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  z-index: 0;
}
.coverimg img {
  display: none;
}
.coverimg + div {
  z-index: 1;
}
.coverimg + div + div {
  z-index: 1;
}

.rounded {
  border-radius: 10px;
}

.no-rounded {
  border-radius: 0;
}

.visible {
  visibility: visible;
}

.invisible {
  visibility: hidden;
}

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

.z-index-0 {
  z-index: 0;
}

.z-index-1 {
  z-index: 1;
}

.z-index-5 {
  z-index: 5;
}

.opacity-04 {
  opacity: 0.4;
}

.opacity-05 {
  opacity: 0.5;
}

.blur, .footer, .wizard-wrapper, .navbar .navbar-bg, .card, .card.card-light, .badge-new, .panel-right .page {
  -moz-backdrop-filter: saturate(120%) blur(15px);
  -webkit-backdrop-filter: saturate(120%) blur(15px);
  backdrop-filter: saturate(120%) blur(15px);
}

.shadow-none {
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
}

.no-background {
  background-color: transparent !important;
}
.no-background li {
  background-color: transparent !important;
}

.border-left-5 {
  border-left: 5px solid transparent;
}

.color-inherit {
  color: inherit;
}

.progressstimer {
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  vertical-align: middle;
  display: inline-block;
  margin: 0 auto 10px auto;
  position: relative;
}
.progressstimer img {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 0;
  animation: rotating 1s linear infinite;
}
.progressstimer .timer {
  font-size: 12px;
  display: inline-block;
  vertical-align: middle;
  margin-top: -2px;
}

.rounded {
  border-radius: 10px !important;
}

.dashed-line {
  border-top: 1px dashed rgba(0, 0, 0, 0.25);
  min-height: 1px;
}
@keyframes rotating {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@media screen and (min-width: 768px) {
  .h-190 {
    height: 322px;
  }
}
/* 7. navbar*/
:root {
  --f7-bars-bg-color: rgba($header-color, 0.75);
}

.navbar {
  padding: 10px 15px;
  height: 64px;
}
.navbar .navbar-bg {
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  -webkt-box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  background-color: var(--f7-bars-bg-color);
}
.navbar .navbar-bg:after {
  display: none;
}
.navbar .navbar-bg:before {
  display: none;
}
.navbar .navbar-inner {
  padding: 10px 15px 10px 5px;
}
.navbar .title {
  width: 100%;
}
.navbar .logo-small img {
  vertical-align: middle;
  width: 58px;
}
.navbar .logo-small h6 {
  font-size: 30px;
  line-height: 15px;
  text-align: left;
  display: inline-block;
  vertical-align: middle;
  margin: 10px 0 0 -5px;
  vertical-align: middle;
  text-shadow: none;
  -webkit-text-shadow: none;
  -moz-text-shadow: none;
}
.navbar .logo-small h6 span,
.navbar .logo-small h6 small,
.navbar .logo-small h6 .small {
  font-size: 10px;
  font-weight: 400;
}
.navbar a.link,
.navbar .button {
  height: 44px;
  width: 44px;
  display: block;
  text-align: center;
}
.navbar a.link .navbar a,
.navbar .button .navbar a {
  color: var(--f7-navbar-link-color, var(--f7-bars-link-color, var(--f7-theme-color)));
}

.menu-item {
  background-color: transparent;
  color: var(--f7-theme-color);
}
.menu-item .menu-dropdown {
  background-color: transparent;
  color: inherit;
}
.menu-item .menu-dropdown .menu-dropdown-content {
  background-color: rgba(245.225, 246.375, 250.975, 0.75);
  -moz-backdrop-filter: saturate(180%) blur(var(--f7-bars-translucent-blur));
  -webkit-backdrop-filter: saturate(180%) blur(var(--f7-bars-translucent-blur));
  backdrop-filter: saturate(180%) blur(var(--f7-bars-translucent-blur));
  color: #000000;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
}
.menu-item .menu-dropdown .menu-dropdown-content a {
  color: #000000;
}
.menu-item .menu-dropdown .menu-dropdown-content a.active-state {
  color: var(--f7-theme-dark-text-color);
}
.menu-item .menu-dropdown:before {
  display: none;
}

/* 8. navbar*/
label.small {
  display: block;
}

.item-input-wrap,
.ios .item-input-wrap,
.md .item-input-wrap {
  --f7-input-height: 32px;
}

.progressbar {
  background-color: rgba(238, 240, 248, 0.35);
}

.card .progressbar {
  background-color: rgba(0, 0, 0, 0.08);
}

/* range picker slider */
.noUi-target {
  background: none;
  box-shadow: none;
  -webkit-box-shadow: none;
  background-color: rgb(227.1625, 230.4375, 243.5375);
  border: 1px solid rgb(219.9375, 224.0625, 240.5625);
}
.noUi-target.noUi-horizontal {
  height: 10px;
}
.noUi-target .noUi-origin .noUi-handle {
  height: 30px;
  width: 30px;
  top: -11px;
  border: 0 none;
  box-shadow: 0 5px 7px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 5px 7px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 5px 7px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 5px 7px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  border: 1px solid #eef0f8;
}
.noUi-target .noUi-origin .noUi-handle:before {
  display: none;
}
.noUi-target .noUi-origin .noUi-handle:after {
  display: none;
}
.noUi-target .noUi-connect {
  background: var(--f7-theme-color);
}

.stepper-button,
.stepper-button-minus,
.stepper-button-plus {
  width: 30px;
}

.button-44 {
  height: 44px;
}

input.calendar-daterange {
  background: transparent;
}

.wizard-wrapper {
  padding-top: 15px;
  padding-bottom: 12px;
  background-color: rgba(255, 255, 255, 0.625);
  background-repeat: repeat;
}
.wizard-wrapper .wizard-link {
  display: block;
  text-align: center;
  text-decoration: none;
}
.wizard-wrapper .wizard-link i {
  background-color: rgba(255, 255, 255, 0.75);
  height: 54px;
  width: 54px;
  border-radius: 10px;
  line-height: 54px;
  display: inline-block;
  font-size: 26px;
  color: var(--f7-theme-text-color);
  margin-bottom: 5px;
}
.wizard-wrapper .wizard-link .wizard-text {
  text-align: center;
  display: block;
  margin: 0 auto;
  color: var(--f7-theme-text-color);
  font-size: 10px;
  line-height: 20px;
  position: relative;
}
.wizard-wrapper .wizard-link .wizard-text::after {
  content: "";
  width: 16px;
  height: 2px;
  border-radius: 2px;
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: block;
}
.wizard-wrapper .wizard-link.active i {
  background-color: var(--f7-theme-color);
  color: var(--f7-theme-dark-text-color);
}
.wizard-wrapper .wizard-link.active .wizard-text {
  color: var(--f7-theme-color);
}
.wizard-wrapper .wizard-link.active .wizard-text::after {
  background-color: var(--f7-theme-color);
}
.wizard-wrapper .wizard-link.filled i {
  background-color: #65e5a1;
  color: var(--f7-theme-dark-text-color);
}
.wizard-wrapper .wizard-link.filled .wizard-text {
  color: #65e5a1;
}

.amountfield {
  background: transparent;
  padding: 5px 15px;
  line-height: 50px;
  font-size: 50px;
  text-align: center;
  border: 0;
  width: 100%;
  outline: none;
  box-shadow: none;
}

/* 9. Chart and Graph*/
.progressCircle {
  height: 80px;
  width: 80px;
  display: block;
  margin: 0 auto;
  position: relative;
}

.small-circle {
  height: 28px;
  width: 28px;
  position: relative;
}
.small-circle .progressbar-text {
  font-size: 12px !important;
}

/* 10. dark mode*/
.theme-dark .bg-blue-light,
.theme-dark .alert-blue {
  background: rgba(114, 151, 248, 0.4) !important;
  border-color: #7297f8 !important;
}
.theme-dark .bg-red-light,
.theme-dark .alert-red {
  background: rgba(251, 115, 124, 0.4) !important;
  border-color: #fb737c !important;
}
.theme-dark .bg-green-light,
.theme-dark .alert-green {
  background: rgba(101, 229, 161, 0.4) !important;
  border-color: #65e5a1 !important;
}
.theme-dark .bg-yellow-light,
.theme-dark .alert-yellow {
  background: rgba(255, 195, 116, 0.4) !important;
  border-color: #ffc374 !important;
}
.theme-dark.ios, .theme-dark .ios {
  --f7-block-title-text-color: #ffffff;
}
.theme-dark input[type=date],
.theme-dark input[type=datetime-local],
.theme-dark input[type=email],
.theme-dark input[type=month],
.theme-dark input[type=number],
.theme-dark input[type=password],
.theme-dark input[type=search],
.theme-dark input[type=tel],
.theme-dark input[type=text],
.theme-dark input[type=time],
.theme-dark input[type=url],
.theme-dark select,
.theme-dark textarea {
  background-color: rgba(0, 0, 0, 0.5);
  color: #ffffff;
}
.theme-dark .form-list ul .item-content.item-input-focused .item-floating-label,
.theme-dark .form-list ul .item-content.item-input-with-value .item-floating-label {
  color: #ffffff;
}
.theme-dark .list input[type=date],
.theme-dark .list input[type=datetime-local],
.theme-dark .list input[type=email],
.theme-dark .list input[type=month],
.theme-dark .list input[type=number],
.theme-dark .list input[type=password],
.theme-dark .list input[type=search],
.theme-dark .list input[type=tel],
.theme-dark .list input[type=text],
.theme-dark .list input[type=time],
.theme-dark .list input[type=url],
.theme-dark .list select,
.theme-dark .list textarea {
  background-color: transparent;
}
.theme-dark body,
.theme-dark .page {
  background-color: #111111;
  color: #ffffff;
}
.theme-dark body.dark-bg,
.theme-dark .page.dark-bg {
  background-color: var(--f7-theme-color);
}
.theme-dark .card:not(.card-light):not(.card-theme),
.theme-dark .bg-whiter,
.theme-dark .navbar-bg,
.theme-dark .footer {
  background-color: rgba(90, 90, 90, 0.5);
}
.theme-dark .list ul,
.theme-dark .product figure,
.theme-dark .navbar.active .navbar-bg,
.theme-dark .counter-number,
.theme-dark .card .progressbar {
  background-color: rgba(90, 90, 90, 0.65);
}
.theme-dark .card .list ul {
  background-color: transparent;
}
.theme-dark .counter-number {
  border-color: rgba(90, 90, 90, 0.75);
}
.theme-dark .menu-item,
.theme-dark .menu-item .menu-dropdown,
.theme-dark .menu-item .menu-dropdown .menu-dropdown-content {
  background-color: #555555;
}
.theme-dark .menu-item .menu-dropdown:before {
  background-image: radial-gradient(ellipse at 0% 0%, transparent 0%, transparent 70%, #555555 72%);
}
.theme-dark .menu-item,
.theme-dark .menu-item .menu-dropdown,
.theme-dark .menu-item .menu-dropdown .menu-dropdown-content,
.theme-dark .menu-item .menu-dropdown .menu-dropdown-content a,
.theme-dark .footer ul li a.active,
.theme-dark .footer ul li a.active i,
.theme-dark .footer ul li a.active span,
.theme-dark a.card-content,
.theme-dark .counter-number {
  color: #ffffff;
}
.theme-dark .footer ul li a.active::after {
  background-color: #ffffff;
}
.theme-dark .elevation-2 {
  box-shadow: 0 0.125rem 0.25rem rgba(17, 17, 17, 0.5) !important;
}
.theme-dark .card,
.theme-dark .list.links-list a:after,
.theme-dark .list .item-inner:after,
.theme-dark .simple-list li:after {
  --f7-card-header-border-color: rgba(darken($color-secondary, 2%), 0.3);
  --f7-card-footer-border-color: rgba(darken($color-secondary, 2%), 0.3);
  --f7-list-item-border-color: rgba(darken($color-secondary, 2%), 0.3);
}
.theme-dark .view .page .messages-content .messages .message-received .message-bubble {
  background-color: rgba(255, 255, 255, 0.2);
}
.theme-dark .navbar {
  --f7-navbar-text-color: #ffffff;
  --f7-bars-text-color: #ffffff;
}
.theme-dark .navbar-bg {
  background-color: var(--f7-bars-bg-color);
}

/* 11. footer */
.has-footer {
  padding-bottom: 66px;
}

.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  background-color: rgba(255, 255, 255, 0.75);
  box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.1);
  -webkt-box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.1);
}
.footer ul {
  align-items: center;
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.footer ul li {
  height: 66px;
  list-style: none;
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}
.footer ul li a {
  text-align: center;
  background: transparent;
  align-self: center;
  -webkit-align-self: center;
  -moz-align-self: center;
  line-height: 40px;
  position: relative;
  padding: 11px 15px;
  display: block;
}
.footer ul li a span {
  line-height: 20px;
  display: inline-block;
  vertical-align: middle;
  color: #999999;
}
.footer ul li a span i, .footer ul li a span .icons {
  font-size: 16px;
  height: 24px;
  line-height: 24px;
  width: 24px;
  display: inline-block;
  margin: 0 auto;
}
.footer ul li a span .nav-text {
  font-size: 10px;
  line-height: 18px;
  vertical-align: middle;
  display: none;
}
.footer ul li a:after {
  content: "";
  position: absolute;
  width: 90%;
  left: 5%;
  bottom: 0px;
  height: 4px;
  border-radius: 3px;
  display: block;
  margin: 0 auto;
  background: var(--f7-theme-color);
  display: none;
}
.footer ul li a.active {
  color: var(--f7-theme-color);
}
.footer ul li a.active span i, .footer ul li a.active span .icons {
  color: var(--f7-theme-color);
}
.footer ul li a.active:after {
  display: block;
}
.footer ul li.center-item a > span {
  height: 60px;
  width: 60px;
  line-height: 60px;
  border-radius: 30px;
  padding: 0;
  display: inline-block;
  margin: -30px auto 0 auto;
  text-align: center;
  background: var(--f7-theme-color) repeat-x top left;
  color: var(--page-bg-color);
  background: linear-gradient(to bottom, var(--f7-theme-color-0) 0%, var(--f7-theme-color) 50%, var(--f7-theme-color-2) 100%);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.25);
  -webkt-box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.25);
  vertical-align: middle;
  position: relative;
}
.footer ul li.center-item a > span i, .footer ul li.center-item a > span .icons {
  font-size: 24px;
  margin-top: -3px;
  color: var(--f7-theme-text-color);
}
.footer ul li.center-item a > span .countercart {
  height: 20px;
  width: 20px;
  line-height: 20px;
  border-radius: 15px;
  background-color: #fb737c;
  color: var(--f7-theme-text-color);
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  margin: 0 auto;
  font-size: 10px;
}

.page .messagebar {
  padding: 8px 10px;
  background-color: var(--f7-bars-bg-color);
  -moz-backdrop-filter: saturate(180%) blur(var(--f7-bars-translucent-blur));
  -webkit-backdrop-filter: saturate(180%) blur(var(--f7-bars-translucent-blur));
  backdrop-filter: saturate(180%) blur(var(--f7-bars-translucent-blur));
  box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.1);
  -webkt-box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.1);
}

/* 12. carousel */
.swiper-container {
  z-index: 0;
  overflow: hidden;
}
.swiper-container .swiper-pagination-bullet {
  background-color: var(--f7-theme-color);
  opacity: 0.3;
}
.swiper-container .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--f7-theme-color);
  opacity: 1;
}

.dark-bg .swiper-pagination-bullet {
  background-color: #ffffff;
  opacity: 0.3;
}
.dark-bg .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #ffffff;
  opacity: 1;
}

.swiper-pagination-bullet {
  background-color: var(--f7-theme-color);
  opacity: 1;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--f7-theme-text-color);
}

.card .swiper-container .swiper-pagination-bullet {
  background-color: var(--f7-theme-color);
  opacity: 0.3;
}
.card .swiper-container .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  background-color: var(--f7-theme-color);
}

.swiperhighlight .swiper-wrapper .swiper-slide {
  width: 132px;
  padding: 2px 0 5px 12px;
}

.pagination-intro {
  width: auto !important;
  display: inline-block;
  margin-top: 7px;
}
.pagination-intro .swiper-pagination-bullet {
  height: 6px;
  width: 14px;
  border-radius: 3px;
}

.categoriesswiper .swiper-wrapper .swiper-slide {
  width: 70px;
  padding: 0;
  text-align: center;
}
.categoriesswiper .swiper-wrapper .swiper-slide img {
  max-width: 100%;
  margin: 0 auto;
  max-height: 40px;
}
.categoriesswiper .swiper-wrapper .swiper-slide .categoryname {
  font-size: 12px;
  line-height: 30px;
}

.offerslides,
.imageswiper {
  padding-bottom: 30px !important;
}
.offerslides .swiper-wrapper .swiper-slide,
.imageswiper .swiper-wrapper .swiper-slide {
  padding: 0;
  text-align: center;
}
.offerslides .swiper-pagination,
.imageswiper .swiper-pagination {
  bottom: 0 !important;
}

.trendingslides .swiper-wrapper .swiper-slide {
  width: 200px;
}

.shopslides .swiper-wrapper .swiper-slide {
  width: 290px;
  padding-bottom: 5px;
  padding-left: 14px;
  padding-right: 14px;
}

/* 13. loader */
.loader-wrap {
  color: var(--f7-navbar-link-color, var(--f7-bars-link-color, var(--f7-theme-color)));
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
}
.loader-wrap:after {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  z-index: 0;
  background-color: var(--f7-theme-color);
  opacity: 0.85;
}
.loader-wrap strong {
  font-weight: 600;
}

.loader-cube-wrap {
  margin: 20px auto;
  width: 40px;
  height: 40px;
  position: relative;
  transform: rotateZ(45deg);
}
.loader-cube-wrap .loader-cube {
  float: left;
  width: 50%;
  height: 50%;
  position: relative;
  transform: scale(1.1);
}
.loader-cube-wrap .loader-cube:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  animation: loaderangle 2.4s infinite linear both;
  transform-origin: 100% 100%;
}
.loader-cube-wrap .loader-cube2 {
  transform: scale(1.1) rotateZ(90deg);
}
.loader-cube-wrap .loader-cube2:before {
  animation-delay: 0.3s;
}
.loader-cube-wrap .loader-cube3 {
  transform: scale(1.1) rotateZ(180deg);
}
.loader-cube-wrap .loader-cube3:before {
  animation-delay: 0.6s;
}
.loader-cube-wrap .loader-cube4 {
  transform: scale(1.1) rotateZ(270deg);
}
.loader-cube-wrap .loader-cube4:before {
  animation-delay: 0.9s;
}
@keyframes loaderangle {
  0%, 10% {
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }
  25%, 75% {
    transform: perspective(140px) rotateX(0deg);
    opacity: 1;
  }
  90%, 100% {
    transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}
/* 14. list */
.list ul {
  background: var(--f7-list-strong-bg-color);
}
.list ul input[type=file] {
  width: 100%;
  height: var(--f7-input-height);
  color: var(--f7-input-text-color);
  font-size: var(--f7-input-font-size);
  background-color: var(--f7-input-bg-color, transparent);
  padding-left: var(--f7-input-padding-left);
  padding-right: var(--f7-input-padding-right);
}

.date-list {
  padding: 0 5px;
}
.date-list li,
.date-list .date {
  float: left;
  list-style: none;
  padding: 10px 15px;
  border-radius: 5px;
  text-align: center;
}
.date-list li.active,
.date-list .date.active {
  background-color: var(--f7-theme-color);
  color: #ffffff;
}

.accordion-list .accordion-toggle.active {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
}
.accordion-list .accordion-content {
  position: relative;
  overflow: hidden;
  height: 0;
  font-size: 14px;
  transition-duration: 0.3s;
  min-height: 0;
  padding: 0;
}
.accordion-list .accordion-content.show {
  height: auto;
  padding: var(--f7-card-footer-padding-vertical) var(--f7-card-footer-padding-horizontal);
}

.form-list ul {
  border-radius: 8px;
}
.form-list ul::before, .form-list ul::after {
  display: none;
}
.form-list ul .item-content .item-floating-label {
  transition: ease all 0.2s;
  transform: scale(var(--f7-floating-label-scale)) translateY(calc(var(--f7-label-height) - 40%));
}
/* 15. calendar */
.calendar .toolbar {
  background-color: var(--f7-calendar-selected-bg-color, var(--f7-theme-color));
  color: var(--f7-calendar-selected-text-color);
  height: 54px;
}
.calendar .toolbar .toolbar-inner {
  padding: 10px 0;
  background-color: rgba(255, 255, 255, 0.15);
}
.calendar .toolbar .toolbar-inner a,
.calendar .toolbar .toolbar-inner button {
  color: var(--f7-calendar-selected-text-color);
}
.calendar .calendar-week-header {
  background-color: var(--f7-calendar-selected-bg-color, var(--f7-theme-color));
  color: var(--f7-calendar-selected-text-color);
  height: auto;
}
.calendar .calendar-week-header .calendar-week-day {
  padding: 10px 0;
}

/* 16. logo */
.logo {
  max-width: 236px;
}

.logo-text {
  font-size: 60px;
  line-height: 30px;
  text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.5);
  -webkit-text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.5);
  -moz-text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.5);
}
.logo-text span,
.logo-text small,
.logo-text .small {
  font-size: 20px;
  font-weight: 400;
}

.logo-small {
  display: inline-block;
}
.logo-small img,
.logo-small .img {
  vertical-align: middle;
  width: 58px;
}
.logo-small h6 {
  font-size: 30px;
  line-height: 15px;
  text-align: left;
  display: inline-block;
  vertical-align: middle;
  margin: 10px 0 0 -5px;
  text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.5);
  -webkit-text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.5);
  -moz-text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.5);
}
.logo-small h6 span,
.logo-small h6 small,
.logo-small h6 .small {
  font-size: 10px;
  font-weight: 400;
}/*# sourceMappingURL=style.css.map */